/* ==========================================================================
   Brainerd Web Design - design system
   Deliberately distinct from swansonx.com (cream + navy + Instrument Serif).
   This site: pine + lake aqua + sand, Bricolage Grotesque + Public Sans,
   topographic contour motif.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* palette */
  --pine-900:  #08180F;
  --pine-800:  #0D2419;
  --pine-700:  #123424;
  --pine-600:  #1A4D34;
  --pine-500:  #226A46;
  --pine-400:  #2F8A5C;

  --aqua-600:  #0B7F73;
  --aqua-500:  #12A594;
  --aqua-400:  #2EC4B6;
  --aqua-200:  #9FE3DB;
  --aqua-100:  #D9F4F0;

  --sand-300:  #DCCFB2;
  --sand-200:  #EADFC7;
  --sand-100:  #F3EBDA;

  --paper:     #F6F8F3;
  --paper-2:   #EEF2E9;
  --paper-3:   #E4EADC;
  --white:     #FFFFFF;

  /* semantic - light */
  --bg:            var(--paper);
  --bg-alt:        var(--paper-2);
  --bg-sunken:     var(--paper-3);
  --surface:       var(--white);
  --surface-2:     var(--paper-2);
  --surface-glass: rgba(246, 248, 243, .86);

  --text:          var(--pine-900);
  --text-soft:     #3C4F44;
  --text-mute:     #64786C;
  --rule:          #D3DDCF;
  --rule-strong:   #B6C4B1;

  --accent:        var(--pine-600);
  --accent-hover:  var(--pine-500);
  --accent-ink:    var(--white);
  --accent-soft:   #E2EDE6;
  --accent-ring:   rgba(26, 77, 52, .18);

  --pop:           var(--aqua-600);
  --pop-soft:      var(--aqua-100);

  --contour:       rgba(26, 77, 52, .10);
  --shadow-sm:     0 1px 2px rgba(8, 24, 15, .06), 0 2px 8px rgba(8, 24, 15, .04);
  --shadow-md:     0 4px 12px rgba(8, 24, 15, .08), 0 12px 32px rgba(8, 24, 15, .06);
  --shadow-lg:     0 8px 24px rgba(8, 24, 15, .10), 0 24px 64px rgba(8, 24, 15, .10);

  /* type */
  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body:    "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    ui-monospace, "SFMono-Regular", "Cascadia Code", monospace;

  /* scale */
  --step--1: clamp(.82rem, .79rem + .14vw, .9rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.12rem + .38vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + .72vw, 1.95rem);
  --step-3:  clamp(1.8rem, 1.5rem + 1.4vw, 2.7rem);
  --step-4:  clamp(2.2rem, 1.6rem + 2.8vw, 3.9rem);
  --step-5:  clamp(2.6rem, 1.6rem + 4.6vw, 5.4rem);

  /* space */
  --gap:      clamp(1rem, .8rem + .9vw, 1.6rem);
  --section:  clamp(3.5rem, 2.4rem + 5vw, 7rem);
  --shell:    min(1180px, 100% - 2.5rem);
  --radius:   14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* dark: system default, unless explicitly set to light */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:            var(--pine-900);
    --bg-alt:        var(--pine-800);
    --bg-sunken:     #050F09;
    --surface:       var(--pine-800);
    --surface-2:     var(--pine-700);
    --surface-glass: rgba(8, 24, 15, .86);

    --text:          #E8F1EA;
    --text-soft:     #B4C7BA;
    --text-mute:     #8AA394;
    --rule:          #1E3A2B;
    --rule-strong:   #2C5240;

    --accent:        var(--aqua-400);
    --accent-hover:  var(--aqua-200);
    --accent-ink:    var(--pine-900);
    --accent-soft:   #10312A;
    --accent-ring:   rgba(46, 196, 182, .22);

    --pop:           var(--aqua-400);
    --pop-soft:      #0E2C28;

    --contour:       rgba(46, 196, 182, .10);
    --shadow-sm:     0 1px 2px rgba(0, 0, 0, .4);
    --shadow-md:     0 4px 12px rgba(0, 0, 0, .45);
    --shadow-lg:     0 8px 24px rgba(0, 0, 0, .5);
  }
}

/* dark: explicit toggle */
:root[data-theme="dark"] {
  --bg:            var(--pine-900);
  --bg-alt:        var(--pine-800);
  --bg-sunken:     #050F09;
  --surface:       var(--pine-800);
  --surface-2:     var(--pine-700);
  --surface-glass: rgba(8, 24, 15, .86);

  --text:          #E8F1EA;
  --text-soft:     #B4C7BA;
  --text-mute:     #8AA394;
  --rule:          #1E3A2B;
  --rule-strong:   #2C5240;

  --accent:        var(--aqua-400);
  --accent-hover:  var(--aqua-200);
  --accent-ink:    var(--pine-900);
  --accent-soft:   #10312A;
  --accent-ring:   rgba(46, 196, 182, .22);

  --pop:           var(--aqua-400);
  --pop-soft:      #0E2C28;

  --contour:       rgba(46, 196, 182, .10);
  --shadow-sm:     0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md:     0 4px 12px rgba(0, 0, 0, .45);
  --shadow-lg:     0 8px 24px rgba(0, 0, 0, .5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--pop); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.022em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--accent-ink);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--radius) 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- Eyebrow / label ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pop);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem; font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: currentColor; flex: none; border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--step-0);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease),
              border-color .22s var(--ease), box-shadow .22s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: var(--rule-strong); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: var(--step-1); }
.btn:active { transform: translateY(0); }

/* ---------- Header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface-glass);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.masthead-in {
  display: flex; align-items: center; gap: var(--gap);
  padding-block: .85rem;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: var(--step-1); letter-spacing: -.03em;
  text-decoration: none; color: var(--text); flex: none;
}
.brand-mark {
  width: 34px; height: 34px; flex: none;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.05); }
.brand small { display: block; font-family: var(--font-mono); font-size: .58em;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); font-weight: 500; }

.nav { margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .5rem .85rem; border-radius: 999px;
  text-decoration: none; color: var(--text-soft);
  font-weight: 600; font-size: var(--step--1);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); background: var(--accent-soft); }
.nav .btn { margin-left: .5rem; padding: .6rem 1.15rem; font-size: var(--step--1); }

.icon-btn {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--rule);
  background: transparent; cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); transform: rotate(-12deg); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; margin-left: auto; }
  .nav {
    position: fixed; inset: 64px 0 auto; margin: 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--surface); border-bottom: 1px solid var(--rule);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%); transition: transform .32s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .8rem 1rem; font-size: var(--step-0); }
  .nav .btn { margin: .5rem 0 0; padding: .85rem 1.2rem; font-size: var(--step-0); }
}

/* ---------- Contour motif ---------- */
.contour-field {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.contour-field svg { position: absolute; width: 160%; left: -30%; }
.contour-field path { fill: none; stroke: var(--contour); stroke-width: 1.4; }
.contour-drift { animation: drift 34s ease-in-out infinite alternate; }
.contour-drift-2 { animation: drift 46s ease-in-out infinite alternate-reverse; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-3.5%, 1.4%, 0) scale(1.05); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-alt); }
.hero-in { position: relative; z-index: 1; padding-block: clamp(3.5rem, 2rem + 7vw, 8rem); }
.hero-grid { display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.15fr .85fr; } }

.hero h1 { font-size: var(--step-5); margin-bottom: 1.2rem; }
.hero h1 .accent {
  color: var(--accent); position: relative; white-space: nowrap;
}
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em;
  background: var(--pop); opacity: .32; border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  animation: swipe 1s var(--ease) .5s forwards;
}
@keyframes swipe { to { transform: scaleX(1); } }

.hero-lede { font-size: var(--step-1); color: var(--text-soft); max-width: 48ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: var(--step--1); color: var(--text-mute); }
.hero-trust span { display: flex; align-items: center; gap: .45rem; font-weight: 600; }
.hero-trust svg { color: var(--pop); flex: none; }

/* price card */
.price-card {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.3rem);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 5px;
  background: linear-gradient(90deg, var(--pine-600), var(--aqua-500), var(--sand-300));
}
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-block: .95rem; border-bottom: 1px dashed var(--rule); }
.price-row:last-of-type { border-bottom: 0; }
.price-row dt { font-weight: 600; color: var(--text-soft); font-size: var(--step--1); }
.price-row dd { font-family: var(--font-display); font-weight: 800; font-size: var(--step-2);
  color: var(--text); letter-spacing: -.03em; }
.price-note { font-size: var(--step--1); color: var(--text-mute); margin-top: 1rem; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--rule); background: var(--surface);
  overflow: hidden; padding-block: .85rem;
}
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-mono); font-size: var(--step--1);
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute);
  display: flex; align-items: center; gap: 2.5rem; white-space: nowrap;
}
.marquee span::after { content: "◆"; color: var(--pop); font-size: .7em; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.2rem); }
.sec-head h2 { font-size: var(--step-4); margin-bottom: .9rem; }
.sec-head p { font-size: var(--step-1); color: var(--text-soft); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--pop));
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--rule-strong); }
.card:hover::after { transform: scaleY(1); }
.card h3 { font-size: var(--step-2); margin-bottom: .6rem; }
.card p { color: var(--text-soft); }
.card-num {
  font-family: var(--font-mono); font-size: var(--step--1); font-weight: 700;
  color: var(--pop); letter-spacing: .1em; display: block; margin-bottom: .8rem;
}

/* ---------- Stats ---------- */
.stats { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
.stat { text-align: center; padding: 1.6rem 1rem; background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--radius); }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: var(--step-4); line-height: 1; color: var(--accent);
  letter-spacing: -.04em; margin-bottom: .45rem;
}
.stat span { font-size: var(--step--1); color: var(--text-mute); font-weight: 600; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  padding-block: 1.7rem; border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: 0; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-weight: 700; font-size: var(--step-1);
  color: var(--accent-ink); background: var(--accent);
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; flex: none;
}
.step h3 { font-size: var(--step-2); margin-bottom: .4rem; }
.step p { color: var(--text-soft); }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--surface); }
table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: var(--step--1); }
th, td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; }
thead th { background: var(--bg-sunken); font-family: var(--font-display); font-size: var(--step-0);
  letter-spacing: -.01em; position: sticky; top: 0; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--accent-soft); }
td.win { color: var(--accent); font-weight: 700; }

/* ---------- Quote ---------- */
.quote {
  background: var(--pine-800); color: #E8F1EA;
  border-radius: var(--radius-lg); padding: clamp(2rem, 1.4rem + 3vw, 3.6rem);
  position: relative; overflow: hidden;
}
.quote::before {
  content: "\201C"; position: absolute; top: -.15em; right: .08em;
  font-family: var(--font-display); font-size: 14rem; line-height: 1;
  color: var(--aqua-400); opacity: .13;
}
.quote blockquote { font-family: var(--font-display); font-size: var(--step-2);
  line-height: 1.35; letter-spacing: -.02em; margin-bottom: 1.4rem; position: relative; }
.quote cite { font-style: normal; font-size: var(--step--1); color: var(--aqua-200); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 700;
  position: relative; letter-spacing: -.015em;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: "+"; position: absolute; right: .4rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--pop);
  transition: transform .3s var(--ease); font-family: var(--font-mono);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding-bottom: 1.4rem; color: var(--text-soft); max-width: 68ch; }
.faq details p + p { margin-top: .8rem; }

/* ---------- Towns ---------- */
.towns { display: flex; flex-wrap: wrap; gap: .55rem; }
.towns li { list-style: none; }
.towns a, .towns span {
  display: inline-block; padding: .45rem .95rem;
  border: 1px solid var(--rule); border-radius: 999px;
  font-size: var(--step--1); font-weight: 600; color: var(--text-soft);
  text-decoration: none; background: var(--surface);
  transition: all .2s var(--ease);
}
.towns a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Callout band ---------- */
.band {
  background: var(--pine-700); color: #E8F1EA;
  position: relative; overflow: hidden;
}
.band h2 { font-size: var(--step-4); margin-bottom: .9rem; color: #fff; }
.band p { color: var(--aqua-200); font-size: var(--step-1); max-width: 54ch; margin-bottom: 1.8rem; }
.band .btn-primary { background: var(--aqua-400); color: var(--pine-900); }
.band .btn-primary:hover { background: var(--aqua-200); }
.band .btn-ghost { border-color: rgba(232, 241, 234, .35); color: #E8F1EA; }
.band .btn-ghost:hover { border-color: var(--aqua-400); color: var(--aqua-400); }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-weight: 700; font-size: var(--step--1); }
.field .hint { font-size: var(--step--1); color: var(--text-mute); font-weight: 400; }
.field input, .field select, .field textarea {
  padding: .85rem 1rem; border: 1px solid var(--rule-strong);
  border-radius: 10px; background: var(--surface); color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-ring);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: var(--step--1); color: var(--text-mute); }
.form-status { padding: .9rem 1.1rem; border-radius: 10px; font-weight: 600; font-size: var(--step--1); }
.form-status[data-state="ok"]  { background: var(--accent-soft); color: var(--accent); }
.form-status[data-state="err"] { background: #FBE9E7; color: #B3261E; }
:root[data-theme="dark"] .form-status[data-state="err"] { background: #3A1A17; color: #FFB4AB; }

/* ---------- Footer ---------- */
.foot { background: var(--pine-900); color: #C3D5C9; padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem; }
.foot a { color: #C3D5C9; text-decoration: none; transition: color .2s var(--ease); }
.foot a:hover { color: var(--aqua-400); }
.foot-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.foot h4 { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .12em;
  font-family: var(--font-mono); color: var(--aqua-400); margin-bottom: 1rem; font-weight: 600; }
.foot ul { list-style: none; padding: 0; display: grid; gap: .55rem; font-size: var(--step--1); }
.foot-brand p { font-size: var(--step--1); color: #8AA394; max-width: 34ch; margin-top: .9rem; }
.foot-base {
  margin-top: 2.8rem; padding-top: 1.5rem; border-top: 1px solid #1E3A2B;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: var(--step--1); color: #7C9486;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in[data-delay="1"] { transition-delay: .09s; }
.reveal.in[data-delay="2"] { transition-delay: .18s; }
.reveal.in[data-delay="3"] { transition-delay: .27s; }
.reveal.in[data-delay="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .contour-drift, .contour-drift-2, .marquee-track { animation: none; }
  .hero h1 .accent::after { animation: none; transform: scaleX(1); }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-3); margin: 2.4rem 0 .9rem; }
.prose h3 { font-size: var(--step-2); margin: 1.9rem 0 .7rem; }
.prose p { margin-bottom: 1.1rem; color: var(--text-soft); }
.prose ul { margin: 0 0 1.3rem 1.1rem; color: var(--text-soft); display: grid; gap: .5rem; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.lead { font-size: var(--step-1); color: var(--text-soft); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
