body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  background-image: var(--gradient-bg);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: var(--text-hero); font-weight: 900; }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

a {
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent);
}

::selection {
  background: rgba(215, 210, 203, 0.3);
  color: var(--color-text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent-dark);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Utility */
.accent-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-section) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: var(--text-lg);
}
