:root {
  color-scheme: light;
  --ink: #14201f;
  --ink-soft: #4a5d59;
  --paper: #f7f4ee;
  --white: #fffdf8;
  --mist: #e7f0eb;
  --line: rgba(20, 32, 31, 0.14);
  --teal: #047c76;
  --teal-dark: #035e5c;
  --coral: #da6b4a;
  --gold: #d8a640;
  --violet: #5a5f9f;
  --shadow: 0 24px 70px rgba(20, 32, 31, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

input,
select,
textarea,
button {
  font: inherit;
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6.1vw, 5.8rem);
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.24;
}

p {
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 16px;
  color: #90efe6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

.muted {
  background: var(--mist);
}

.section {
  padding: clamp(76px, 10vw, 136px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

@keyframes scan {
  from { transform: translateX(-30px); }
  to { transform: translateX(30px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}