/* ===== Leap Media — "Loud Light" =================================
   True white + one committed electric-cobalt accent (owns ~40% of the
   surface). Heavy grotesque display, oversized scale, zero eyebrows,
   zero serifs. Built to read as a confident creative house, not a
   template. */

:root {
  --bg: #FFFFFF;            /* true white, chroma 0 — not cream */
  --ink: #0E0E10;           /* near-black text */
  --ink-2: #26282E;         /* secondary ink */
  --muted: #565A63;         /* body-muted ~6.3:1 on white (passes AA) */
  --accent: #1F35FF;        /* electric cobalt — the brand */
  --accent-press: #1726D6;
  --on-accent: #FFFFFF;
  --on-accent-muted: #C9CEFF;
  --surface: #F2F3F7;       /* cool light band (chroma ~0) */
  --line: #E4E6EC;          /* hairlines */

  --display: "Clash Display", "Hanken Grotesk", system-ui, sans-serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --surface-2: #EAECF3;     /* one step deeper than --surface */

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-y: clamp(80px, 11vw, 168px);

  /* Exponential ease-out (no bounce, no elastic). */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layered, cobalt-tinted shadows (never a flat generic shadow-md). */
  --shadow-sm: 0 1px 2px rgba(14, 14, 16, 0.05), 0 4px 12px -4px rgba(31, 53, 255, 0.10);
  --shadow-md: 0 6px 18px -8px rgba(31, 53, 255, 0.18), 0 18px 44px -18px rgba(14, 14, 16, 0.16);
  --shadow-lg: 0 12px 32px -12px rgba(31, 53, 255, 0.24), 0 44px 90px -34px rgba(14, 14, 16, 0.30);
  --shadow-cobalt: 0 16px 38px -14px rgba(31, 53, 255, 0.55);

  /* Semantic z-scale (never arbitrary 9999). */
  --z-sticky: 100;
  --z-overlay: 300;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-kerning: normal;
}
h1, h2, h3 {
  font-family: var(--display); font-weight: 600; line-height: 0.98;
  letter-spacing: -0.03em; margin: 0 0 0.35em; text-wrap: balance;
}
h1 {
  font-size: clamp(3rem, 9.5vw, 6rem); font-weight: 700;
  letter-spacing: -0.035em; text-transform: uppercase; line-height: 0.92;
}
h2 { font-size: clamp(2.1rem, 5.5vw, 3.7rem); letter-spacing: -0.022em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -0.02em; }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
strong { font-weight: 700; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--on-accent); }

/* ===== Layout utilities ===== */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-y); }
.section--surface { background: var(--surface); }
.lead { font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.5; color: var(--ink-2); max-width: 46ch; }
.muted { color: var(--muted); }
.kicker { font-family: var(--display); font-weight: 600; font-size: clamp(1.1rem, 1.5vw, 1.35rem); color: var(--accent); letter-spacing: -0.01em; margin: 0 0 0.75rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 1.02rem; line-height: 1;
  padding: 1em 1.6em; border: 2px solid var(--ink); border-radius: 3px;
  background: var(--ink); color: var(--bg); cursor: pointer; white-space: nowrap;
  transition: transform 140ms var(--ease), background 140ms var(--ease), color 140ms var(--ease), border-color 140ms var(--ease);
}
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-cobalt); transition: transform 140ms var(--ease), background 140ms var(--ease), box-shadow 200ms var(--ease); }
.btn-primary:hover { background: var(--accent-press); border-color: var(--accent-press); color: var(--on-accent); text-decoration: none; box-shadow: 0 22px 52px -16px rgba(31, 53, 255, 0.62); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); text-decoration: none; }
.btn--lg { padding: 1.15em 2em; font-size: 1.1rem; }
.btn--sm { padding: 0.6em 1.05em; font-size: 0.92rem; border-width: 1.5px; }
@media (hover: hover) and (pointer: fine) { .btn:hover { transform: translateY(-2px); } }
.btn:active { transform: scale(0.97); }
/* On a cobalt surface, the primary button inverts to white. */
.on-accent .btn-primary { background: var(--bg); border-color: var(--bg); color: var(--accent); box-shadow: 0 12px 30px -14px rgba(14, 14, 16, 0.45); }
.on-accent .btn-primary:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); box-shadow: 0 18px 40px -16px rgba(14, 14, 16, 0.6); }

/* ===== Accessibility ===== */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.on-accent :focus-visible { outline-color: var(--bg); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn:active { transition: none; transform: none; }
}

/* ===== Header — cobalt bar so the multicolor LMD logo reads against it ===== */
.site-header { position: sticky; top: 0; z-index: var(--z-sticky); background: var(--accent); transition: box-shadow 200ms var(--ease); }
.site-header.is-scrolled { box-shadow: 0 12px 30px -20px rgba(14, 14, 16, 0.6); }
/* Header content shares the same centered container as every section, so the
   logo, hero, and section content all align to one consistent left edge. */
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 12px; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.logo-link { display: inline-flex; align-items: center; gap: 0.65rem; }
.logo-link:hover { text-decoration: none; }
.logo { height: 34px; width: auto; display: block; }
.logo-word { color: var(--on-accent); font-family: var(--display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.02em; white-space: nowrap; }
.site-header__right { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.25rem); }
.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2rem); }
.site-nav a { color: var(--on-accent); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em; transition: opacity 140ms var(--ease); }
.site-nav a:hover { color: var(--on-accent); text-decoration: none; opacity: 0.72; }
@media (max-width: 760px) { .site-nav { display: none; } .logo { height: 30px; } }
@media (max-width: 520px) { .site-header .logo-word { display: none; } }
/* Anchored sections clear the sticky header. */
:where(#top, #how, #pricing, #faq, #teardown) { scroll-margin-top: 80px; }
/* Wordmark — footer only now (text on the dark footer). */
.wordmark { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.03em; display: inline-flex; align-items: center; }
.wordmark::after { content: ""; width: 0.42em; height: 0.42em; background: var(--accent); border-radius: 50%; display: inline-block; margin-left: 0.18em; }
.wordmark:hover { text-decoration: none; }

/* ===== Hero — full-bleed photo with a left white gradient for legibility ===== */
.hero { position: relative; min-height: clamp(540px, 78vh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; display: block; }
/* White text bed fading into the photo (keeps the container-aligned text crisp). */
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, #fff 0%, #fff 40%, rgba(255,255,255,0.86) 54%, rgba(255,255,255,0.32) 70%, rgba(255,255,255,0) 84%); }
/* Content rides the shared container so it aligns with every section below. */
.hero__wrap { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.hero__content { max-width: 34rem; }
.hero__title { font-size: clamp(2.8rem, 6.8vw, 5.5rem); margin-bottom: 0.32em; max-width: 12ch; }
.hero__sub { font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.45; color: var(--ink-2); max-width: 38ch; margin-bottom: 2.25rem; }
.hero__cta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
@media (max-width: 760px) {
  /* Mobile: content at the top over clean white, photo revealed clearly below —
     no muddy full-photo wash. */
  .hero { min-height: 84vh; align-items: flex-start; }
  .hero__title { max-width: 16ch; }
  .hero__scrim { background: linear-gradient(to bottom, #fff 0%, #fff 34%, rgba(255,255,255,0.5) 66%, rgba(255,255,255,0) 100%); }
  .hero__bg img { object-position: 60% 22%; }
  .hero__content { padding-top: clamp(36px, 9vw, 64px); }
}
/* The proof figure — a committed cobalt block, the hero's anchor. */
.proof { display: inline-flex; flex-direction: column; gap: 0.1rem; background: var(--accent); color: var(--on-accent); padding: 1.1rem 1.4rem; border-radius: 8px; box-shadow: var(--shadow-cobalt); }
.proof__num { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.03em; line-height: 1; }
.proof__label { font-size: 0.82rem; font-weight: 500; color: var(--on-accent-muted); letter-spacing: 0.01em; }

/* ===== Generic section heading block ===== */
/* Constrain the HEADING by ch at its own (heading) size — not the wrapper at body
   size, which produced a ~270px column and crammed 1-2 words per line. */
.block { max-width: 62rem; }
.block h2 { max-width: 17ch; }
.block .lead { margin-top: 1.25rem; }

/* ===== Funnel flow (a real sequence — numbers earn their place) ===== */
.funnel { list-style: none; padding: 0; margin: clamp(2.5rem, 5vw, 4rem) 0 0; display: grid; gap: 0; grid-template-columns: repeat(3, 1fr); }
.funnel li { padding: 1.75rem 1.5rem 1.75rem 0; border-top: 2px solid var(--ink); }
.funnel__n { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--accent); letter-spacing: -0.04em; line-height: 1; display: block; margin-bottom: 0.6rem; }
.funnel strong { display: block; font-size: 1.15rem; font-weight: 700; }
.funnel em { font-style: normal; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 720px) { .funnel { grid-template-columns: 1fr; } .funnel li { padding-right: 0; } }
/* Centered 'complete funnel vs one-off' illustration in the What-we-do section. */
.funnel-art { display: block; width: 100%; max-width: 880px; height: auto; margin: clamp(1rem, 2vw, 1.75rem) auto 0; }

/* ===== The system — borderless typographic columns (not cards) ===== */
.frameworks { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.framework { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.framework__tag { display: inline-block; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--accent); margin-bottom: 0.6rem; }
.framework h3 { margin-bottom: 0.45em; }
.framework p { margin: 0; color: var(--muted); font-size: 1rem; }
@media (max-width: 760px) { .frameworks { grid-template-columns: 1fr; } }

/* ===== Why different — big numbered claims ===== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(2rem, 4vw, 3rem); }
.pillar__icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); border-radius: 13px; margin-bottom: 1.1rem; }
.pillar__icon svg { width: 27px; height: 27px; display: block; }
.pillar h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 0.3em; }
.pillar p { margin: 0; color: var(--muted); }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ===== How it works — bold steps ===== */
.steps { list-style: none; padding: 0; margin: clamp(2.5rem, 5vw, 4rem) 0 0; display: grid; gap: 1.5rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; padding-bottom: 0; }
.step__n { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 3.4vw, 3rem); color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.step h3 { margin-bottom: 0.2em; }
.step p { margin: 0; color: var(--muted); }

/* ===== Offer — two plans, the featured one drenched in cobalt ===== */
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.plan { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.75rem, 3vw, 2.75rem); display: flex; flex-direction: column; box-shadow: var(--shadow-md); transition: transform 200ms var(--ease), box-shadow 200ms var(--ease); }
.plan--feature { background: var(--accent); border-color: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-cobalt); }
@media (hover: hover) and (pointer: fine) {
  .plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .plan--feature:hover { box-shadow: 0 24px 60px -18px rgba(31, 53, 255, 0.62); }
}
.plan__anchor { font-family: var(--sans); font-weight: 600; font-size: 1rem; margin: 0.6rem 0 0.1rem; text-decoration: line-through; text-decoration-thickness: 2px; }
.plan--feature .plan__anchor { color: var(--on-accent-muted); }
.plan__price { font-family: var(--display); font-weight: 700; font-size: clamp(3rem, 5vw, 4.2rem); letter-spacing: -0.04em; line-height: 1; margin: 0.5rem 0 0.6rem; }
.plan--feature .plan__price { margin-top: 0.05rem; }
.plan__price span { font-size: 1.2rem; font-weight: 500; color: var(--muted); }
.plan--feature .plan__price span { color: var(--on-accent-muted); }
.plan p { color: var(--muted); margin: 0; }
.plan--feature p { color: var(--on-accent-muted); }
.plan__tag { font-weight: 700; font-size: 0.85rem; color: var(--accent); margin-bottom: 0.4rem; }
.plan--feature .plan__tag { color: var(--on-accent); }
.offer-note { margin-top: 1.5rem; color: var(--muted); }
@media (max-width: 680px) { .offer { grid-template-columns: 1fr; } }

/* ===== CTA — drenched cobalt with a subtle radial depth + floating form card ===== */
.cta { background: var(--accent); color: var(--on-accent); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(110% 90% at 12% -10%, rgba(255,255,255,0.16), transparent 55%),
              radial-gradient(80% 70% at 100% 110%, rgba(13, 22, 150, 0.45), transparent 60%); }
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: var(--on-accent); }
.cta .lead { color: var(--on-accent-muted); max-width: 46ch; }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.cta__benefits { list-style: none; padding: 0; margin: 1.9rem 0 0; display: grid; gap: 0.9rem; }
.cta__benefits li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--on-accent); font-weight: 500; }
.cta__check { flex: none; width: 22px; height: 22px; margin-top: 1px; background: rgba(255,255,255,0.16); border-radius: 50%; display: grid; place-items: center; color: var(--on-accent); }
@media (max-width: 820px) { .cta__grid { grid-template-columns: 1fr; gap: 2.5rem; align-items: start; } }

/* ===== Pattern-interrupt CTA bands (keep the scroll converting) ===== */
.interrupt { background: var(--accent); color: var(--on-accent); position: relative; overflow: hidden; }
.interrupt::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 130% at 100% 0%, rgba(255,255,255,0.14), transparent 55%); }
.interrupt .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 3rem); padding-block: clamp(2.4rem, 4.5vw, 3.6rem); flex-wrap: wrap; }
.interrupt__text { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3.1vw, 2.5rem); letter-spacing: -0.02em; line-height: 1.04; max-width: 20ch; margin: 0; color: var(--on-accent); }
.interrupt .btn { flex: none; }
@media (max-width: 600px) { .interrupt .container { flex-direction: column; align-items: flex-start; } .interrupt .btn { width: 100%; justify-content: center; } }

/* ===== Statement (the problem section) — left-aligned like the hero ===== */
.statement { max-width: 62rem; }
.statement h2 { max-width: 16ch; font-size: clamp(2.5rem, 6.5vw, 4.6rem); line-height: 0.98; }
.statement .hl { color: var(--accent); }
.statement .lead { margin-top: 1.6rem; max-width: 48ch; }
/* Problem section: statement left, on-brand fatigue illustration right. */
.problem-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.problem-grid .statement { max-width: none; }
.problem-art { width: 100%; height: auto; }
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; gap: 2rem; } .problem-art { max-width: 520px; } }

/* ===== Centered heading block ===== */
.block--center { margin-inline: auto; text-align: center; }
.block--center h2 { max-width: 20ch; margin-inline: auto; }
.block--center .lead { margin-inline: auto; text-align: center; }
.kicker--center { text-align: center; }

/* ===== The system — two columns (text + vector art) ===== */
.system-top { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.system-art { width: 100%; height: auto; }
@media (max-width: 860px) { .system-top { grid-template-columns: 1fr; gap: 2.5rem; } .system-art { max-width: 440px; margin-inline: auto; } }

/* ===== Lead form inside the floating white card ===== */
.form-card { position: relative; background: var(--bg); border-radius: 20px; padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); }
.form-card__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.35rem, 2vw, 1.6rem); letter-spacing: -0.02em; color: var(--ink); margin: 0 0 0.3rem; }
.form-card__hint { color: var(--muted); font-size: 0.96rem; margin: 0 0 1.4rem; }
.form-card .field label { color: var(--ink); }
.form-card .field label .muted { color: var(--muted); }
.form-card .field input, .form-card .field textarea { background: var(--surface); border-color: transparent; color: var(--ink); }
.form-card .field input::placeholder, .form-card .field textarea::placeholder { color: #8A8E96; }
.form-card .field input:focus, .form-card .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(31, 53, 255, 0.16); }
.form-card .field--invalid input, .form-card .field--invalid textarea { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.14); }
.form-card .field__error { color: #C0392B; }
.form-card .lead-form__submit { background: var(--accent); border-color: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-cobalt); }
.form-card .lead-form__submit:hover { background: var(--accent-press); border-color: var(--accent-press); color: var(--on-accent); }
.form-card .lead-form__status { color: var(--ink); }
.form-card .lead-form__status--ok { color: #1B7A3D; }
.form-card .lead-form__status--err { color: #C0392B; }

/* ===== Lead form ===== */
.lead-form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.92rem; font-weight: 600; color: var(--on-accent); }
.field label .muted { color: var(--on-accent-muted); font-weight: 400; }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem; padding: 0.85em 0.95em;
  background: var(--bg); color: var(--ink); border: 2px solid transparent; border-radius: 4px; width: 100%;
  transition: border-color 140ms var(--ease), box-shadow 140ms var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #8A8E96; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(14, 14, 16, 0.18); }
.field--invalid input, .field--invalid textarea { border-color: #2A0A06; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); }
.field__error { font-size: 0.84rem; color: var(--on-accent); font-weight: 600; min-height: 1em; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form__submit { margin-top: 0.5rem; background: var(--bg); border-color: var(--bg); color: var(--accent); justify-content: center; }
.lead-form__submit:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.lead-form__submit[disabled] { opacity: 0.85; cursor: not-allowed; transform: none; }
.lead-form__submit .btn-label { display: inline-block; transition: filter 200ms ease, opacity 200ms ease; }
.lead-form__submit.is-busy .btn-label { filter: blur(2px); opacity: 0.55; }
.lead-form__status { margin: 0.5rem 0 0; font-size: 0.96rem; font-weight: 500; min-height: 1.2em; color: var(--on-accent); }
.lead-form__status--ok { color: var(--bg); }
.lead-form__status--err { color: var(--bg); }

/* ===== FAQ ===== */
.faq { margin-top: clamp(2rem, 4vw, 3rem); border-top: 2px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: -0.02em; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--accent); font-family: var(--sans); font-weight: 400; font-size: 1.7rem; line-height: 1; transition: transform 220ms var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 0 0 1.4rem; color: var(--muted); max-width: 60ch; }
@media (prefers-reduced-motion: no-preference) {
  .faq__item[open] > :not(summary) { animation: faqReveal 260ms var(--ease); }
}
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--bg); padding-block: clamp(56px, 8vw, 96px) 32px; }
.site-footer a { color: var(--bg); }
.site-footer .wordmark { color: var(--bg); }
.site-footer__inner { display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; align-items: flex-end; }
.site-footer__cta h2 { color: var(--bg); max-width: 16ch; margin-bottom: 1.25rem; }
.site-footer__right { display: grid; gap: 0.75rem; align-content: end; }
.site-footer__right p { margin: 0; color: #B7B9C0; }
.site-footer__right a:hover { color: var(--accent); }
.site-footer__legal { margin: clamp(2.5rem, 5vw, 4rem) 0 0; font-size: 0.85rem; color: #7E818A; }
@media (hover: hover) and (pointer: fine) { .site-footer .on-accent { } }

/* ===== Hero entrance — CSS-only, fires once on load, content visible by
   default (no JS gating, so it never ships blank on a headless render). ===== */
@media (prefers-reduced-motion: no-preference) {
  .enter { transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
  @starting-style {
    .enter { opacity: 0; transform: translateY(20px); }
  }
  .enter--1 { transition-delay: 60ms; }
  .enter--2 { transition-delay: 140ms; }
  .enter--3 { transition-delay: 220ms; }
}

/* ===== Sentinel for header elevation ===== */
#scroll-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }
