/* =============================================================
   WP Rescue — site design system
   Design language: Stripe-inspired (see DESIGN.md at project root)
   Sohne -> Inter @300 w/ negative tracking, indigo CTA, navy ink,
   gradient-mesh hero, pill buttons, 12px cards, 1200px container.
   ============================================================= */

/* ---------- 1. tokens ---------- */
:root {
  /* brand */
  --indigo:          #533afd;
  --indigo-deep:     #4434d4;
  --indigo-press:    #2e2b8c;
  --indigo-soft:     #665efd;
  --indigo-subdued:  #e5e3ff;
  --navy-900:        #1c1e54;
  --ruby:            #ea2261;

  /* ink */
  --ink:             #0d253d;
  --ink-2:           #273951;
  --ink-mute:        #64748d;
  --on-primary:      #ffffff;

  /* surface */
  --canvas:          #ffffff;
  --canvas-soft:     #f6f9fc;
  --cream:           #f5e9d4;
  --hairline:        #e3e8ee;
  --hairline-input:  #a8c3de;

  /* mesh stops */
  --mesh-1: rgba(245,233,212,.85);
  --mesh-2: rgba(185,185,249,.70);
  --mesh-3: rgba(83, 58,253,.28);
  --mesh-4: rgba(234, 34, 97,.16);

  /* elevation */
  --lift-1: 0 1px 3px rgba(0,55,112,.08);
  --lift-2: 0 8px 24px rgba(0,55,112,.08), 0 2px 6px rgba(0,55,112,.04);
  --lift-3: 0 18px 48px rgba(0,55,112,.12), 0 4px 10px rgba(0,55,112,.05);

  /* type */
  --font: "Inter", "Sohne", "SF Pro Display", system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-xxl: clamp(2.2rem,  1.1rem + 4.6vw, 3.5rem);
  --t-xl:  clamp(1.85rem, 1.1rem + 3.1vw, 3rem);
  --t-lg:  clamp(1.5rem,  1.1rem + 1.7vw, 2rem);
  --t-md:  clamp(1.25rem, 1.05rem + .9vw, 1.5rem);
  --t-sm:  1.125rem;
  --t-body-lg: 1.0625rem;
  --t-body: 1rem;
  --t-cap: .8125rem;
  --t-micro: .6875rem;

  /* spacing */
  --sp-xs: .25rem;
  --sp-sm: .5rem;
  --sp-md: .75rem;
  --sp-lg: 1rem;
  --sp-xl: 1.5rem;
  --sp-2xl: 2rem;
  --sp-3xl: 3rem;
  --sp-huge: 4rem;

  /* radii */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 9999px;

  /* layout */
  --container: 71.25rem;   /* 1140px content inside 1200 gutter */
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --indigo:         #8b7bff;
    --indigo-deep:    #a094ff;
    --indigo-press:   #6a58f0;
    --indigo-soft:    #a094ff;
    --indigo-subdued: #23214d;
    --navy-900:       #171c3f;
    --ruby:           #ff5c8a;

    --ink:            #e9edf8;
    --ink-2:          #c4cce1;
    --ink-mute:       #8d99b8;
    --on-primary:     #0a0d1c;

    --canvas:         #0a0e1e;
    --canvas-soft:    #10152c;
    --cream:          #241f16;
    --hairline:       #232a4c;
    --hairline-input: #333d68;

    --mesh-1: rgba(120, 96, 48,.30);
    --mesh-2: rgba(120,116,220,.26);
    --mesh-3: rgba( 83, 58,253,.30);
    --mesh-4: rgba(234, 34, 97,.14);

    --lift-1: 0 1px 3px rgba(0,0,0,.5);
    --lift-2: 0 8px 24px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.35);
    --lift-3: 0 18px 48px rgba(0,0,0,.6), 0 4px 10px rgba(0,0,0,.4);
  }
}
:root[data-theme="dark"] {
  --indigo:#8b7bff; --indigo-deep:#a094ff; --indigo-press:#6a58f0;
  --indigo-subdued:#23214d; --navy-900:#171c3f; --ruby:#ff5c8a;
  --ink:#e9edf8; --ink-2:#c4cce1; --ink-mute:#8d99b8; --on-primary:#0a0d1c;
  --canvas:#0a0e1e; --canvas-soft:#10152c; --cream:#241f16;
  --hairline:#232a4c; --hairline-input:#333d68;
  --mesh-1:rgba(120,96,48,.30); --mesh-2:rgba(120,116,220,.26);
  --mesh-3:rgba(83,58,253,.30); --mesh-4:rgba(234,34,97,.14);
  --lift-1:0 1px 3px rgba(0,0,0,.5);
  --lift-2:0 8px 24px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.35);
  --lift-3:0 18px 48px rgba(0,0,0,.6), 0 4px 10px rgba(0,0,0,.4);
}

/* ---------- 2. base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.55;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* the page itself must never scroll sideways */
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 300;
  color: var(--ink);
  text-wrap: balance;
}
/* On the narrowest phones, balancing costs more than it buys: it shortens the
   line box and stacks headings into 3-4 ragged lines. Below 26rem, let headings
   use the full column width and only fix orphans. */
@media (max-width: 26rem) {
  h1, h2, h3, h4 { text-wrap: pretty; }
}
h1 { font-size: var(--t-xxl); line-height: 1.04; letter-spacing: -.03em; }
h2 { font-size: var(--t-xl);  line-height: 1.1;  letter-spacing: -.025em; }
h3 { font-size: var(--t-md);  line-height: 1.2;  letter-spacing: -.015em; }
h4 { font-size: var(--t-sm);  line-height: 1.3;  letter-spacing: -.01em; font-weight: 400; }

p  { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: .2em; }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

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

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--indigo); color: #fff;
  padding: var(--sp-md) var(--sp-lg); border-radius: 0 0 var(--r-md) 0;
}
.skip:focus { left: 0; }

/* Honeypot. Positioned off-screen rather than display:none — some bots skip
   display:none fields, and this stays out of the tab order and the a11y tree
   via tabindex="-1" + aria-hidden on the wrapper. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

.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;
}

/* ---------- 3. layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: var(--section-y); }
section + section { border-top: 1px solid var(--hairline); }

.band-soft { background: var(--canvas-soft); }
.band-soft + section { border-top: 0; }

/* stack: vertical rhythm inside a column */
.stack   { display: flex; flex-direction: column; gap: var(--sp-lg); }
.stack-s { display: flex; flex-direction: column; gap: var(--sp-sm); }
.stack-l { display: flex; flex-direction: column; gap: var(--sp-xl); }

/* section header — capped so long lines never run edge to edge */
.sec-head { max-width: 46rem; display: flex; flex-direction: column; gap: var(--sp-md); }
.sec-head p { color: var(--ink-mute); font-size: var(--t-body-lg); max-width: 60ch; }

/* auto-fit grids. minmax(min(100%,X),1fr) is what stops narrow-screen overflow */
.grid   { display: grid; gap: var(--sp-xl); }
.grid > * { min-width: 0; }          /* the classic grid-blowout guard */
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

/* exactly two side-by-side columns — for pairs where auto-fit's extra track
   would break the pairing (prose beside a figure, intro beside a list) */
.g-split { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 60rem) {
  .g-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-3xl); align-items: start; }
  .g-split-wide { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
}

.eyebrow {
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.lede {
  font-size: var(--t-body-lg);
  color: var(--ink-2);
  max-width: 54ch;
}
.muted { color: var(--ink-mute); }
.fine  { font-size: var(--t-cap); color: var(--ink-mute); line-height: 1.5; }
.num   { font-feature-settings: "tnum"; letter-spacing: -.02em; }

/* ---------- 4. mesh backdrop ---------- */
.mesh { position: relative; isolation: isolate; }
.mesh::before {
  content: "";
  position: absolute;
  /* inset:0 exactly — a bleeding pseudo-element would add scroll width to the
     section, and clipping it with overflow:hidden only hides the symptom. The
     gradients below already fade to transparent, so no bleed is needed. */
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(42% 55% at 12% 8%,  var(--mesh-1) 0%, transparent 70%),
    radial-gradient(38% 50% at 78% 2%,  var(--mesh-2) 0%, transparent 72%),
    radial-gradient(46% 62% at 52% -8%, var(--mesh-3) 0%, transparent 68%),
    radial-gradient(30% 42% at 92% 30%, var(--mesh-4) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

/* ---------- 5. nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--canvas) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-in {
  display: flex; align-items: center; gap: var(--sp-xl);
  min-height: 4rem;
  padding-block: var(--sp-md);
}
.brand {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: 1rem; letter-spacing: -.02em;
  color: var(--ink); flex: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 1.65rem; height: 1.65rem; border-radius: var(--r-sm);
  background: var(--indigo); color: #fff;
  display: grid; place-items: center;
  font-size: .8125rem; font-weight: 700; flex: none;
}
.nav-links { display: none; gap: var(--sp-xl); margin-left: auto; list-style: none; }
.nav-links a { color: var(--ink-mute); font-size: .9375rem; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta { margin-left: auto; flex: none; }
@media (min-width: 56rem) {
  .nav-links { display: flex; }
  .nav-cta { margin-left: 0; }
}

/* ---------- 6. buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: inherit; font-size: var(--t-body); font-weight: 500;
  line-height: 1; text-align: center;
  padding: .8rem 1.35rem;
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: var(--lift-1); }
:root[data-theme="dark"] .btn-primary { color: #0a0d1c; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .btn-primary { color: #0a0d1c; } }
.btn-primary:hover { background: var(--indigo-deep); transform: translateY(-1px); box-shadow: var(--lift-2); }
.btn-primary:active { background: var(--indigo-press); transform: none; }
.btn-secondary { background: var(--canvas); color: var(--indigo); border-color: var(--indigo); }
.btn-secondary:hover { background: var(--indigo-subdued); }
.btn-block { width: 100%; }
.btn-lg { font-size: 1.0625rem; padding: .95rem 1.6rem; min-height: 3rem; }

/* ---------- 7. hero ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem); border-top: 0; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.hero-grid > * { min-width: 0; }
@media (min-width: 62rem) {
  .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 4rem; }
}
.hero-copy { display: flex; flex-direction: column; gap: var(--sp-xl); }
.hero h1 { max-width: 16ch; }

.tag {
  display: inline-flex; align-items: center; gap: .45rem;
  align-self: flex-start;
  background: var(--indigo-subdued); color: var(--indigo-deep);
  font-size: var(--t-micro); font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  padding: .4rem .7rem; border-radius: var(--r-pill);
}
.pulse { width: .45rem; height: .45rem; border-radius: 50%; background: currentColor; flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: pulse 2.2s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
}

.assure { display: flex; flex-wrap: wrap; gap: var(--sp-md) var(--sp-xl); list-style: none; }
.assure li {
  display: flex; align-items: center; gap: .45rem;
  font-size: .9375rem; color: var(--ink-2);
}
.assure li::before {
  content: ""; flex: none;
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--indigo-subdued);
  box-shadow: inset 0 0 0 1.5px var(--indigo);
}

/* ---------- 8. form panel ---------- */
.panel {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-3);
  padding: clamp(1.35rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: var(--sp-lg);
  min-width: 0;
}
.panel-head { display: flex; flex-direction: column; gap: .3rem; }
.panel-head h2 { font-size: var(--t-md); }
.field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.field label { font-size: .875rem; font-weight: 500; color: var(--ink); }
.field .hint { font-weight: 400; color: var(--ink-mute); }
input, textarea {
  font-family: inherit; font-size: 1rem; font-weight: 400;
  color: var(--ink); background: var(--canvas);
  border: 1px solid var(--hairline-input);
  border-radius: var(--r-sm);
  padding: .7rem .8rem;
  width: 100%; min-width: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
  overflow-wrap: anywhere;   /* long URLs must not blow out the field */
}
input::placeholder, textarea::placeholder { color: var(--ink-mute); opacity: .75; }
textarea { resize: vertical; min-height: 5rem; line-height: 1.5; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--indigo) 18%, transparent);
}

/* ---------- 9. cards ---------- */
.card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  display: flex; flex-direction: column; gap: var(--sp-md);
  min-width: 0;
  height: 100%;
}
.card h3, .card h4 { margin: 0; }
.card p { color: var(--ink-mute); font-size: .9375rem; }

.card-sym { border-left: 3px solid var(--ruby); }
.card-sym h4 { color: var(--ink); }

.icon {
  width: 2.25rem; height: 2.25rem; flex: none;
  border-radius: var(--r-md);
  background: var(--indigo-subdued); color: var(--indigo-deep);
  display: grid; place-items: center;
  font-size: 1rem; font-weight: 600;
}

/* checklist.
   Marker is absolutely positioned rather than a grid/flex track: a grid track
   would capture any bare text node that follows an inline child (e.g. <strong>)
   and squeeze it into the narrow marker column. */
.checks { list-style: none; display: grid; gap: var(--sp-md); }
.checks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .9375rem; color: var(--ink-2);
  min-width: 0;
}
.checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 1.1rem; text-align: center;
  color: var(--indigo); font-weight: 700; line-height: 1.55;
}

/* ---------- 10. report mockup ---------- */
.report {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-2);
  overflow: hidden;
  min-width: 0;
}
.report-bar {
  display: flex; align-items: center; gap: .6rem;
  padding: var(--sp-md) var(--sp-lg);
  background: var(--canvas-soft);
  border-bottom: 1px solid var(--hairline);
  font-size: var(--t-cap); color: var(--ink-mute);
}
.report-dots { display: flex; gap: .3rem; flex: none; }
.report-dots i { width: .5rem; height: .5rem; border-radius: 50%; background: var(--hairline-input); display: block; }
.report-body { padding: var(--sp-lg); display: flex; flex-direction: column; gap: .6rem; }
.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--sp-md); align-items: center;
  padding: .55rem .7rem;
  border-radius: var(--r-sm);
  background: var(--canvas-soft);
  font-size: .875rem;
}
.row span { min-width: 0; overflow-wrap: anywhere; color: var(--ink-2); }
.badge {
  flex: none; font-size: var(--t-micro); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .5rem; border-radius: var(--r-pill);
  white-space: nowrap;
}
.badge-bad  { background: color-mix(in srgb, var(--ruby) 14%, transparent); color: var(--ruby); }
.badge-warn { background: var(--cream); color: #8a6321; }
:root[data-theme="dark"] .badge-warn { color: #e0b163; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .badge-warn { color: #e0b163; } }
.badge-ok   { background: var(--indigo-subdued); color: var(--indigo-deep); }

/* ---------- 11. steps ---------- */
.steps { list-style: none; counter-reset: st; display: grid; gap: var(--sp-xl); }
.steps > li { min-width: 0; counter-increment: st; display: flex; flex-direction: column; gap: var(--sp-sm); }
.steps > li::before {
  content: counter(st);
  width: 2.1rem; height: 2.1rem; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--indigo); color: #fff;
  font-size: .875rem; font-weight: 600;
}
:root[data-theme="dark"] .steps > li::before { color: #0a0d1c; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .steps > li::before { color: #0a0d1c; } }
.steps h4 { font-weight: 500; }
.steps p { font-size: .9375rem; color: var(--ink-mute); }

/* ---------- 12. pricing ---------- */
.price-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  display: flex; flex-direction: column; gap: var(--sp-md);
  min-width: 0; height: 100%;
}
.price-card.feat { background: var(--navy-900); border-color: var(--navy-900); }
.price-card.feat h3, .price-card.feat .amount { color: #fff; }
.price-card.feat p, .price-card.feat li { color: #b9c0dd; }
.price-card.feat .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.price-card.feat .btn-secondary:hover { background: rgba(255,255,255,.1); }
.price-card h3 { font-size: var(--t-sm); font-weight: 500; }
.amount {
  font-size: var(--t-lg); font-weight: 300; letter-spacing: -.03em;
  font-feature-settings: "tnum"; color: var(--ink);
  line-height: 1.1;
}
.amount small { font-size: .875rem; font-weight: 400; color: var(--ink-mute); letter-spacing: 0; }
.price-card ul { list-style: none; display: grid; gap: .45rem; font-size: .875rem; color: var(--ink-mute); }
.price-card ul li { position: relative; padding-left: 1rem; min-width: 0; }
.price-card ul li::before {
  content: "·"; position: absolute; left: 0; top: 0;
  width: .7rem; text-align: center;
  font-weight: 700; color: var(--indigo);
}
.price-card .btn { margin-top: auto; }

/* ---------- 13. honesty + faq ---------- */
.honest-list { list-style: none; display: grid; gap: var(--sp-lg); }
.honest-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: .9375rem; color: var(--ink-mute);
  min-width: 0;
}
.honest-list li::before {
  content: "✕";
  position: absolute; left: 0; top: 0;
  width: 1.1rem; text-align: center;
  color: var(--ruby); font-weight: 700; font-size: .8125rem; line-height: 1.9;
}
.honest-list strong { display: block; color: var(--ink); font-weight: 500; margin-bottom: .15rem; }

.faq-item { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.faq-item h3 { font-size: var(--t-sm); font-weight: 500; }
.faq-item p { font-size: .9375rem; color: var(--ink-mute); max-width: 58ch; }

/* ---------- 14. tables ---------- */
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 32rem; font-size: .9375rem; }
th, td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--hairline); }
th { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: .09em; color: var(--ink-mute); font-weight: 600; }
td.amt { font-feature-settings: "tnum"; font-weight: 500; white-space: nowrap; color: var(--ink); }

/* ---------- 15. cta band + footer ---------- */
.cta-band { background: var(--navy-900); border-top: 0; }
.cta-band h2, .cta-band .lede { color: #fff; }
.cta-band .lede { color: #b9c0dd; }
.cta-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.cta-grid > * { min-width: 0; }
@media (min-width: 58rem) { .cta-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 26rem); } }

.site-foot { background: var(--canvas); border-top: 1px solid var(--hairline); padding-block: var(--sp-3xl); }
.foot-grid { display: grid; gap: var(--sp-xl); }
.foot-grid > * { min-width: 0; }
@media (min-width: 48rem) { .foot-grid { grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr)); gap: var(--sp-3xl); } }
.site-foot h4 { font-size: var(--t-cap); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); }
.site-foot ul { list-style: none; display: grid; gap: .5rem; font-size: .9375rem; }
.site-foot a { color: var(--ink-2); }
.foot-legal {
  margin-top: var(--sp-2xl); padding-top: var(--sp-lg);
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: var(--sp-md) var(--sp-xl);
  justify-content: space-between;
}

/* ---------- 16. motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *, .hero-form { animation: rise .55s cubic-bezier(.2,.7,.3,1) backwards; }
  .hero-copy > *:nth-child(2) { animation-delay: .05s; }
  .hero-copy > *:nth-child(3) { animation-delay: .1s; }
  .hero-copy > *:nth-child(4) { animation-delay: .15s; }
  .hero-form { animation-delay: .12s; }
  @keyframes rise { from { opacity: 0; transform: translateY(.6rem); } }
}
