/* ═══════════════════════════════════════════════════════════════
   SmartHire AI — marketing site
   Design language borrowed from the product: "editorial clarity for
   operational software." One teal decision colour, hairline rules,
   a confident display face, quiet everything else.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper: #f5f6f8;
  --surface: #ffffff;
  --sunken: #edeff3;
  --line: #e3e6ec;
  --line-strong: #cdd3dd;

  --ink: #161a22;
  --ink-2: #3f4653;
  --ink-3: #6a7280;
  --ink-4: #9aa1ac;

  --teal: #0e7c66;
  --teal-hover: #0b6252;
  --teal-wash: #e1f1ec;
  --teal-fg: #ffffff;

  --maybe: #b07817;
  --maybe-wash: #f6ecd8;
  --no: #a24b3c;
  --no-wash: #f3e3df;

  --pitch: #0d1016;
  --pitch-2: #151a22;
  --pitch-line: #262c37;
  --pitch-fg: #f4f6f8;
  --pitch-fg-2: #a7afbd;

  --r-sm: 4px;
  --r: 6px;
  --r-lg: 10px;
  --r-xl: 16px;

  --shadow: 0 1px 2px rgba(22, 26, 34, 0.06), 0 14px 40px -18px rgba(22, 26, 34, 0.28);
  --shadow-sm: 0 1px 2px rgba(22, 26, 34, 0.05), 0 6px 18px -10px rgba(22, 26, 34, 0.18);

  --ff-display: "Bricolage Grotesque", ui-sans-serif, "Segoe UI", system-ui, sans-serif;
  --ff-sans: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;

  --wrap: 1160px;
  --gutter: clamp(1.1rem, 5vw, 3rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0e1116;
    --surface: #161a21;
    --sunken: #10131a;
    --line: #262b34;
    --line-strong: #383f4b;
    --ink: #e6e8ec;
    --ink-2: #b2b8c3;
    --ink-3: #89909e;
    --ink-4: #5d6573;
    --teal: #2fd0ac;
    --teal-hover: #4fdcbd;
    --teal-wash: #0f302a;
    --teal-fg: #08110f;
    --maybe: #d7a344;
    --maybe-wash: #2c2413;
    --no: #d98570;
    --no-wash: #2e1c18;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 18px 44px -20px rgba(0, 0, 0, 0.7);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35), 0 8px 22px -12px rgba(0, 0, 0, 0.6);
  }
}
:root[data-theme="dark"] {
  --paper: #0e1116;
  --surface: #161a21;
  --sunken: #10131a;
  --line: #262b34;
  --line-strong: #383f4b;
  --ink: #e6e8ec;
  --ink-2: #b2b8c3;
  --ink-3: #89909e;
  --ink-4: #5d6573;
  --teal: #2fd0ac;
  --teal-hover: #4fdcbd;
  --teal-wash: #0f302a;
  --teal-fg: #08110f;
  --maybe: #d7a344;
  --maybe-wash: #2c2413;
  --no: #d98570;
  --no-wash: #2e1c18;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 18px 44px -20px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35), 0 8px 22px -12px rgba(0, 0, 0, 0.6);
}

/* ── reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv05" 1, "ss01" 1;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: var(--r-sm); }
::selection { background: var(--teal); color: var(--teal-fg); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* ── layout ────────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.rule { border: 0; border-top: 1px solid var(--line); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-2); max-width: 54ch; }
.muted { color: var(--ink-3); }

.h-sec { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.h-hero { font-size: clamp(2.6rem, 6.2vw, 4.35rem); line-height: 1.02; }

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  --_bg: var(--surface); --_fg: var(--ink); --_bd: var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.72rem 1.15rem;
  font-size: 0.92rem; font-weight: 600;
  border: 1px solid var(--_bd); border-radius: var(--r);
  background: var(--_bg); color: var(--_fg);
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { --_bg: var(--teal); --_fg: var(--teal-fg); --_bd: var(--teal); }
.btn--primary:hover { --_bg: var(--teal-hover); --_bd: var(--teal-hover); }
.btn--ghost { --_bg: transparent; --_bd: transparent; }
.btn--ghost:hover { --_bg: var(--sunken); }
.btn--lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 0.8rem; font-size: 0.82rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500;
  border-radius: 999px; border: 1px solid var(--line-strong);
  color: var(--ink-2); background: var(--surface);
}
.pill--strong { color: var(--teal); border-color: color-mix(in srgb, var(--teal) 40%, transparent); background: var(--teal-wash); }
.pill--maybe { color: var(--maybe); border-color: color-mix(in srgb, var(--maybe) 40%, transparent); background: var(--maybe-wash); }
.pill--no { color: var(--no); border-color: color-mix(in srgb, var(--no) 40%, transparent); background: var(--no-wash); }
.dot { width: 7px; height: 7px; border-radius: 999px; background: currentColor; }

/* ── wordmark ──────────────────────────────────────────────── */
.brand {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.15rem;
  letter-spacing: -0.02em; color: var(--ink);
}
.brand .ai {
  align-self: center;
  font-family: var(--ff-sans); font-size: 0.6em; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; line-height: 1;
  padding: 0.28em 0.4em; border-radius: var(--r-sm);
  background: var(--teal); color: var(--teal-fg);
}

/* ── site header ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; height: 64px; }
.site-nav { display: flex; gap: 1.4rem; margin-left: 1rem; }
.site-nav a { font-size: 0.9rem; color: var(--ink-2); font-weight: 500; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.site-header .spacer { flex: 1; }
.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.icon-btn {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: var(--r); color: var(--ink-2);
}
.icon-btn:hover { background: var(--sunken); color: var(--ink); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .site-nav, .header-cta .btn--primary { display: none; }
  .nav-toggle { display: grid; }
  .mobile-nav {
    display: none; flex-direction: column; gap: 0.25rem;
    padding: 0.75rem var(--gutter) 1.25rem;
    border-bottom: 1px solid var(--line); background: var(--paper);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 0.6rem 0; font-weight: 500; color: var(--ink-2); }
  .mobile-nav .btn { margin-top: 0.5rem; }
}
@media (min-width: 861px) { .mobile-nav { display: none; } }

/* ── hero ──────────────────────────────────────────────────── */
.hero { padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: 0; overflow: hidden; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.05fr 1fr; } }
.hero h1 { margin-bottom: 1.1rem; }
.hero .lede { margin-bottom: 1.6rem; }
.hero__note { margin-top: 1rem; font-size: 0.82rem; color: var(--ink-3); }
.hero__visual { position: relative; }
.hero__visual::after {
  content: ""; position: absolute; inset: auto -40% -60% -10%; height: 70%;
  background: radial-gradient(60% 60% at 50% 50%, color-mix(in srgb, var(--teal) 16%, transparent), transparent 70%);
  z-index: -1;
}

/* ── credibility strip ─────────────────────────────────────── */
.strip { border-block: 1px solid var(--line); background: var(--surface); }
.strip .wrap { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; padding-block: 1.25rem; }
.strip p { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); }
.strip ul { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; list-style: none; padding: 0; }
.strip li { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; color: var(--ink-3); letter-spacing: -0.01em; }

/* ── feature rows ──────────────────────────────────────────── */
.feature { display: grid; gap: clamp(1.75rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature__text { order: 2; }
}
.feature + .feature { margin-top: clamp(3.5rem, 8vw, 6rem); }
.feature__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.7rem 0 0.9rem; }
.feature__text p { color: var(--ink-2); max-width: 46ch; }
.feature__list { list-style: none; padding: 0; margin-top: 1.1rem; display: grid; gap: 0.55rem; }
.feature__list li { position: relative; padding-left: 1.5rem; font-size: 0.95rem; color: var(--ink-2); }
.feature__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px;
  border-radius: 2px; background: var(--teal);
}

.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head h2 { margin: 0.7rem 0 0.6rem; }

/* ── how it works ──────────────────────────────────────────── */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: 1.5rem 1.4rem; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--ff-mono); font-size: 0.8rem; color: var(--teal); font-weight: 500;
}
.step h3 { font-size: 1.1rem; margin: 0.5rem 0 0.4rem; }
.step p { font-size: 0.9rem; color: var(--ink-3); }

/* ── pitch band (dark) ─────────────────────────────────────── */
.pitch { background: var(--pitch); color: var(--pitch-fg); }
.pitch h2 { color: var(--pitch-fg); }
.pitch .eyebrow { color: var(--teal); }
.metrics { display: grid; gap: 2rem 1.5rem; margin-top: 2.5rem; }
@media (min-width: 720px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric .n { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); letter-spacing: -0.03em; }
.metric .l { color: var(--pitch-fg-2); font-size: 0.88rem; margin-top: 0.35rem; }
.pitch .rule { border-top-color: var(--pitch-line); }

/* ── testimonial ───────────────────────────────────────────── */
.quotes { display: grid; gap: 1.25rem; }
@media (min-width: 820px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: 1.75rem 1.6rem; display: flex; flex-direction: column; gap: 1.1rem;
}
.quote blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--ink); }
.quote figcaption { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.quote img { width: 40px; height: 40px; border-radius: 999px; background: var(--sunken); }
.quote .who { font-weight: 600; font-size: 0.9rem; }
.quote .role { font-size: 0.8rem; color: var(--ink-3); }

/* ── trust row ─────────────────────────────────────────────── */
.trust { display: grid; gap: 1rem; }
@media (min-width: 760px) { .trust { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .trust { grid-template-columns: repeat(4, 1fr); } }
.trust li {
  list-style: none; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.15rem 1.2rem; background: var(--surface);
}
.trust h3 { font-size: 0.98rem; margin-bottom: 0.3rem; }
.trust p { font-size: 0.85rem; color: var(--ink-3); }

/* ── CTA band ──────────────────────────────────────────────── */
.cta-band { border: 1px solid var(--line-strong); border-radius: var(--r-xl); background: var(--surface); padding: clamp(2rem, 5vw, 3.25rem); box-shadow: var(--shadow-sm); }
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.6rem; }
.cta-band p { color: var(--ink-2); margin-bottom: 1.4rem; }

/* ── footer ────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.site-footer .wrap { padding-block: 3.5rem 2.5rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-grid h4 { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); font-weight: 500; margin-bottom: 0.8rem; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.footer-grid a { font-size: 0.88rem; color: var(--ink-2); }
.footer-grid a:hover { color: var(--ink); }
.footer-grid p { font-size: 0.85rem; color: var(--ink-3); max-width: 30ch; margin-top: 0.75rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--ink-4); }

/* ═══ product mockups (pure CSS "screenshots") ═══════════════ */
.mock {
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--shadow); overflow: hidden;
  font-size: 0.8rem;
}
.mock__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line); background: var(--sunken); }
.mock__bar .brand { font-size: 0.85rem; }
.mock__dots { display: flex; gap: 5px; margin-left: auto; }
.mock__dots i { width: 8px; height: 8px; border-radius: 999px; background: var(--line-strong); display: block; }
.mock__body { padding: 1rem; display: grid; gap: 0.75rem; }
.mock__row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.6rem 0.7rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.mock__row .name { font-weight: 600; }
.mock__row .sub { color: var(--ink-4); font-size: 0.72rem; }
.mock__score { font-family: var(--ff-mono); font-weight: 600; }

/* dashboard mock */
.mock-dash { display: grid; grid-template-columns: 56px 1fr; }
.mock-dash__rail { border-right: 1px solid var(--line); background: var(--sunken); display: grid; gap: 0.55rem; padding: 0.8rem 0; justify-items: center; align-content: start; }
.mock-dash__rail span { width: 22px; height: 22px; border-radius: var(--r-sm); background: var(--line-strong); }
.mock-dash__rail span:first-child { background: var(--teal); }
.mock-dash__main { padding: 0.9rem; display: grid; gap: 0.8rem; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.kpi { border: 1px solid var(--line); border-radius: var(--r); padding: 0.55rem 0.6rem; background: var(--surface); }
.kpi .n { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; }
.kpi .l { color: var(--ink-4); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; }
.funnel { display: grid; gap: 0.4rem; border: 1px solid var(--line); border-radius: var(--r); padding: 0.7rem; }
.funnel .cap { font-size: 0.7rem; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.funnel .bar { display: flex; align-items: center; gap: 0.5rem; }
.funnel .bar span:first-child { width: 68px; font-size: 0.72rem; color: var(--ink-3); flex: none; }
.funnel .track { flex: 1; height: 14px; background: var(--sunken); border-radius: 3px; overflow: hidden; }
.funnel .fill { height: 100%; background: color-mix(in srgb, var(--teal) 55%, var(--surface)); border-radius: 3px; }
.funnel .bar span:last-child { width: 26px; text-align: right; font-family: var(--ff-mono); font-size: 0.72rem; color: var(--ink-3); flex: none; }

/* scorecard mock */
.mock-kit__q { border: 1px solid var(--line); border-radius: var(--r); padding: 0.6rem 0.7rem; }
.mock-kit__q p { font-weight: 500; }
.mock-kit__q .why { color: var(--ink-4); font-size: 0.72rem; margin-top: 0.2rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.rating { display: flex; gap: 4px; }
.rating i { width: 9px; height: 9px; border-radius: 999px; background: var(--line-strong); display: block; }
.rating i.on { background: var(--teal); }

/* automation mock */
.flowcard { border: 1px dashed var(--line-strong); border-radius: var(--r); padding: 0.7rem 0.8rem; display: grid; gap: 0.5rem; }
.flowcard .when { font-family: var(--ff-mono); font-size: 0.72rem; color: var(--ink-3); }
.flowcard .act { display: flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.6rem; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); font-size: 0.78rem; }
.flowcard .act::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--teal); flex: none; }

/* packet mock */
.packet { display: grid; gap: 0.75rem; }
.packet .cand { display: flex; gap: 0.7rem; align-items: center; }
.packet .cand img { width: 38px; height: 38px; border-radius: 999px; background: var(--sunken); }
.packet .decide { display: flex; gap: 0.5rem; }

/* ═══ pricing ═══════════════════════════════════════════════ */
.pricing-hero { padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 2.5rem); }
.billing-toggle { display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; font-size: 0.88rem; color: var(--ink-3); }
.switch { position: relative; width: 46px; height: 26px; border-radius: 999px; background: var(--line-strong); border: 0; transition: background 0.15s; flex: none; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 999px; background: var(--surface); transition: transform 0.15s; box-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.switch[aria-checked="true"] { background: var(--teal); }
.switch[aria-checked="true"]::after { transform: translateX(20px); }
.save-note { color: var(--teal); font-weight: 600; }

.plans { display: grid; gap: 1rem; align-items: start; }
@media (min-width: 720px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .plans { grid-template-columns: repeat(4, 1fr); } }
.plan {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: 1.5rem 1.35rem; display: flex; flex-direction: column; gap: 1rem;
}
.plan--featured { border-color: var(--teal); box-shadow: var(--shadow); position: relative; }
.plan__tag { position: absolute; top: -0.7rem; left: 1.35rem; font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; background: var(--teal); color: var(--teal-fg); padding: 0.25rem 0.5rem; border-radius: 999px; }
.plan__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.25rem; }
.plan__blurb { font-size: 0.85rem; color: var(--ink-3); min-height: 2.6em; }
.plan__price { display: flex; align-items: baseline; gap: 0.3rem; }
.plan__price .amt { font-family: var(--ff-display); font-weight: 700; font-size: 2.1rem; letter-spacing: -0.03em; }
.plan__price .per { font-size: 0.8rem; color: var(--ink-4); }
.plan__ctas { display: grid; gap: 0.5rem; }
.plan__ctas .btn--ghost { border-color: var(--line); }
.plan__ctas .btn--ghost:hover { border-color: var(--line-strong); }
.plan__feats { list-style: none; padding: 0; display: grid; gap: 0.5rem; font-size: 0.85rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.plan__feats li { position: relative; padding-left: 1.4rem; color: var(--ink-2); }
.plan__feats li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.plan__feats li.off { color: var(--ink-4); }
.plan__feats li.off::before { content: "–"; color: var(--ink-4); }

.compare-toggle { display: flex; justify-content: center; margin-top: 2.5rem; }
.compare { margin-top: 2rem; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); }
.compare[hidden] { display: none; }
table.cmp { border-collapse: collapse; width: 100%; min-width: 720px; font-size: 0.86rem; }
table.cmp th, table.cmp td { padding: 0.7rem 0.9rem; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th { position: sticky; top: 0; background: var(--sunken); font-family: var(--ff-display); font-weight: 600; }
table.cmp tbody th { font-weight: 500; color: var(--ink-2); }
table.cmp td { text-align: center; color: var(--ink-2); }
table.cmp td:first-of-type, table.cmp th:first-child { text-align: left; }
table.cmp .grp td { background: color-mix(in srgb, var(--teal) 8%, var(--surface)); font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); text-align: left; }
table.cmp .yes { color: var(--teal); font-weight: 700; }
table.cmp .no { color: var(--ink-4); }
table.cmp tbody tr:hover td, table.cmp tbody tr:hover th { background: color-mix(in srgb, var(--teal) 5%, transparent); }

/* FAQ */
.faq { display: grid; gap: 0.75rem; max-width: 46rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 0 1.1rem; }
.faq summary { list-style: none; cursor: pointer; padding: 1.05rem 0; font-family: var(--ff-display); font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--ff-mono); color: var(--ink-3); font-size: 1.1rem; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq p { padding: 0.9rem 0 1.1rem; color: var(--ink-2); font-size: 0.92rem; }

/* photo band */
.photoband { position: relative; color: var(--pitch-fg); border-radius: var(--r-xl); overflow: hidden; isolation: isolate; }
.photoband::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(120deg, #0d2b25, #0d1016);
}
.photoband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; opacity: 0.3; }
.photoband::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(6,10,9,0.82) 0%, rgba(6,10,9,0.5) 45%, rgba(6,10,9,0.12) 100%);
}
.photoband .inner { position: relative; z-index: 1; padding: clamp(2.5rem, 6vw, 4.5rem); }
.photoband h2 { color: var(--pitch-fg); }
.photoband .eyebrow { color: #6fe3c6; }
.photoband p { color: #d6dde3; }

/* ── motion / a11y ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--teal); color: var(--teal-fg); padding: 0.6rem 1rem; z-index: 100; border-radius: 0 0 var(--r) 0; }
.skip-link:focus { left: 0; }
