*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: var(--container-width);
  margin-inline: auto;
  padding-inline: 0;
}

.section {
  padding-block: var(--section-padding);
  position: relative;
}

.section--compact {
  padding-block: var(--section-padding-compact);
}

.section--compact .section-header {
  margin-bottom: var(--space-7);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--light {
  background: var(--color-white);
  color: var(--color-dark);
}

.section--surface {
  background: var(--color-light);
  color: var(--color-dark);
}

/* Typography */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title--xl {
  font-size: clamp(30px, 3.5vw, 44px);
}

.section-title--lg {
  font-size: clamp(28px, 3vw, 38px);
}

.section-title--md {
  font-size: clamp(24px, 2.5vw, 32px);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 600px;
}

.section--dark .section-desc {
  color: rgba(148, 163, 184, 0.9);
}

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

.section-header .section-desc {
  margin-inline: auto;
  margin-top: var(--space-5);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
