/* ════════════════════════════════════════════════════════════════════════
   Marivant — marketing subpages (product · pricing · trust · faq)
   Loads AFTER site.css and composes with its tokens/atoms. No WebGL here:
   subpages ride a static atmospheric wash on the same warm canvas, so the
   cinematic hero stays unique to "/" while the type + instrument language
   stays identical.
   ════════════════════════════════════════════════════════════════════════ */

/* ── page shell ─────────────────────────────────────────────────────────── */
body.subpage { background: var(--canvas); }
/* label-contrast lift (subpages carry real content in mono micro-labels;
   the marketing-hero page keeps its original tuning) */
body.subpage { --tertiary: #6E6B63; --faint: #787569; }
:root[data-theme="dark"] body.subpage { --tertiary: #8D897E; --faint: #7E7A6F; }
/* faint accent atmosphere (mirrors the app's dual radial wash) */
body.subpage::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(90% 60% at 85% -10%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 60%),
    radial-gradient(70% 50% at -10% 108%, color-mix(in srgb, var(--accent) 5%, transparent), transparent 60%);
}
body.subpage main, body.subpage .foot { position: relative; z-index: 1; }
/* the nav must stack ABOVE main: grouped at z-1 with main, the later-in-DOM
   main painted over the open Product menu — visible but unclickable (clicks
   landed on HEADER.phero; round-5.5 bug). Matches site.css's nav z-100. */
body.subpage .nav { position: relative; z-index: 100; }
/* bands sit on the flat canvas — no sea, no scrim gradient */
body.subpage .band::before, body.subpage .foot::before { display: none; }
body.subpage .band { padding: 96px 0; border-top: 1px solid color-mix(in srgb, var(--border) 62%, transparent); }
body.subpage .band.first { border-top: 0; padding-top: 40px; }
/* the fixed nav needs real ink once content scrolls beneath it */
body.subpage .nav.scrolled {
  background: color-mix(in srgb, var(--canvas) 86%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
/* focus visibility — subpages are content pages; keep keyboard travel obvious */
body.subpage :where(a, button, summary, input, select):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px;
}
.skip {
  position: fixed; left: 18px; top: -60px; z-index: 300; padding: 10px 16px;
  background: var(--surface); color: var(--foreground); border: 1px solid var(--border-strong);
  border-radius: 999px; box-shadow: var(--elev-2); font-size: 13px; transition: top .2s var(--ease);
}
.skip:focus-visible { top: 14px; }

/* ── page hero ──────────────────────────────────────────────────────────── */
.phero { padding: 168px 0 34px; }
.phero .crumb {
  display: flex; align-items: center; gap: 12px; margin-bottom: 26px;
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); font-weight: 500;
}
.phero .crumb .tick { width: 26px; height: 1px; background: var(--accent); opacity: .6; flex: none; }
.phero .crumb a { color: var(--tertiary); transition: color .16s; }
.phero .crumb a:hover { color: var(--accent); }
.phero .crumb .sep { color: var(--faint); }
.phero h1 { font-size: clamp(36px, 5.4vw, 66px); line-height: 1.02; letter-spacing: -.035em; max-width: 20ch; }
.phero h1 em { font-style: normal; color: var(--accent); }
.phero .sub {
  margin-top: 24px; font-size: clamp(16.5px, 1.4vw, 19.5px); line-height: 1.6;
  color: var(--muted); max-width: 62ch; font-weight: 300;
}
.phero .cta-row { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── pillar switcher (the product-section spine) ────────────────────────── */
.pillnav { margin: 44px 0 8px; display: flex; flex-wrap: wrap; gap: 8px; }
.pillnav a {
  display: inline-flex; align-items: center; gap: 9px; height: 42px; padding: 0 17px;
  border-radius: 999px; border: 1px solid var(--border); background: var(--card-glass);
  box-shadow: var(--elev-1); font-size: 13.5px; font-weight: 500; color: var(--muted);
  transition: color .18s, border-color .18s, background .18s;
}
.pillnav a .pn { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--faint); letter-spacing: .08em; }
.pillnav a:hover { color: var(--foreground); border-color: var(--border-strong); }
.pillnav a[aria-current="page"] { background: var(--accent); border-color: transparent; color: var(--on-accent); }
.pillnav a[aria-current="page"] .pn { color: color-mix(in srgb, var(--on-accent) 72%, transparent); }

/* ── pain strip ("the problem today") ───────────────────────────────────── */
.pain {
  border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--card-glass);
  box-shadow: var(--elev-1); padding: 30px 32px; margin-top: 54px;
}
.pain .eyebrow { color: var(--tertiary); display: block; margin-bottom: 20px; }
.pain ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 34px; }
.pain li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.55; color: var(--muted); font-weight: 300; }
.pain li .x {
  flex: none; width: 20px; height: 20px; border-radius: 999px; margin-top: 1px;
  display: grid; place-items: center; font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--tertiary); background: color-mix(in srgb, var(--surface-3) 80%, transparent);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .pain ul { grid-template-columns: 1fr; gap: 14px; } }

/* ── solution duos (text beside a real capture) ─────────────────────────── */
.duo { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 4.5vw, 64px); align-items: center; }
.duo.rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.duo.rev .duo-txt { order: 2; }
.duo.rev .shotcard { order: 1; }
.duo + .duo { margin-top: 92px; }
.duo-txt .eyebrow { display: block; margin-bottom: 16px; }
.duo-txt h2 { font-size: clamp(24px, 2.8vw, 34px); line-height: 1.1; letter-spacing: -.025em; }
.duo-txt p { margin-top: 16px; font-size: 15.5px; line-height: 1.65; color: var(--muted); font-weight: 300; max-width: 52ch; }
.duo-txt .pts { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.duo-txt .pts li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.duo-txt .pts li svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 2px; }
@media (max-width: 940px) {
  .duo, .duo.rev { grid-template-columns: 1fr; }
  .duo.rev .duo-txt { order: 1; }
  .duo.rev .shotcard { order: 2; }
  .duo + .duo { margin-top: 64px; }
}

/* ── shotcard: real product captures in a window frame ──────────────────── */
.shotcard {
  border: 1px solid var(--border-strong); border-radius: var(--r-lg); overflow: hidden;
  background: var(--card-glass); box-shadow: var(--elev-3);
}
.shotcard .chrome { height: 38px; background: var(--surface-2); display: flex; align-items: center; gap: 8px; padding: 0 15px; border-bottom: 1px solid var(--border); }
.shotcard .chrome i { width: 10px; height: 10px; border-radius: 999px; background: var(--border-strong); }
.shotcard .chrome .tag { margin-left: 9px; font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: .1em; color: var(--tertiary); text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shotcard img { display: block; width: 100%; height: auto; }
.shotcap {
  margin-top: 12px; font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .05em;
  color: var(--tertiary); display: flex; align-items: center; gap: 8px;
}
.shotcap::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); flex: none; }

/* ── walkthrough (one concrete moment) ──────────────────────────────────── */
.walk {
  border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--card-glass);
  box-shadow: var(--elev-2); padding: 40px 42px; position: relative; overflow: hidden;
}
.walk::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 55% at 12% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 65%);
}
.walk .eyebrow { display: block; margin-bottom: 8px; position: relative; }
.walk h2 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.025em; position: relative; }
.walk ol { list-style: none; margin: 30px 0 0; padding: 0; position: relative; }
.walk ol li { display: flex; gap: 18px; padding: 15px 0; border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent); }
.walk ol li:first-child { border-top: 0; padding-top: 0; }
.walk .wn {
  flex: none; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--accent);
  width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center;
  background: var(--accent-wash); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.walk .wt { font-size: 15px; line-height: 1.6; color: var(--muted); font-weight: 300; padding-top: 4px; }
.walk .wt b { color: var(--foreground); font-weight: 600; }
@media (max-width: 560px) { .walk { padding: 28px 22px; } }

/* ── closing CTA band ───────────────────────────────────────────────────── */
.ctaband {
  border: 1px solid var(--border-strong); border-radius: var(--r-xl); background: var(--card-glass);
  box-shadow: var(--elev-3); padding: 58px 48px; text-align: center; position: relative; overflow: hidden;
}
.ctaband::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 90% at 50% -20%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 70%);
}
.ctaband .eyebrow { display: block; margin-bottom: 14px; position: relative; }
.ctaband h2 { font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -.03em; position: relative; max-width: 24ch; margin: 0 auto; }
.ctaband p { margin: 16px auto 0; max-width: 52ch; color: var(--muted); font-size: 15.5px; line-height: 1.6; font-weight: 300; position: relative; }
.ctaband .cta-row { margin-top: 30px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
@media (max-width: 560px) { .ctaband { padding: 40px 24px; } }

/* ── pricing ────────────────────────────────────────────────────────────── */
.founding {
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--border)); border-radius: var(--r-md);
  background: color-mix(in srgb, var(--accent-wash) 62%, transparent); padding: 16px 20px; margin-top: 46px;
}
/* the dot rides the FIRST text line — without flex:1 on the paragraph its
   max-content width wrapped the whole block under the dot (round-5.5 flag) */
.founding .fdot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent); animation: ctaPulse 2.6s ease-in-out infinite; flex: none; margin-top: 7px; }
.founding p { flex: 1; min-width: 0; font-size: 14.5px; color: var(--foreground); line-height: 1.55; }
.founding p b { font-weight: 600; }

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; align-items: stretch; }
@media (max-width: 940px) { .pgrid { grid-template-columns: 1fr; } }
.pcard {
  border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--card-glass);
  box-shadow: var(--elev-1); padding: 30px 28px; display: flex; flex-direction: column; position: relative;
}
.pcard.feat { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); box-shadow: var(--elev-2); }
.pcard .pflag {
  position: absolute; top: -11px; left: 26px; font-family: 'Geist Mono', monospace; font-size: 9.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--on-accent); background: var(--accent);
  padding: 4px 10px; border-radius: 999px;
}
.pcard h3 { font-size: 22px; letter-spacing: -.02em; }
.pcard .psize { margin-top: 6px; font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--tertiary); letter-spacing: .05em; }
.pcard .pnum { margin-top: 24px; display: flex; align-items: baseline; gap: 7px; min-height: 56px; }
.pcard .pnum[hidden], .pcard .ptbd[hidden] { display: none; }
.pcard .pnum .cur { font-family: 'Geist Mono', monospace; font-size: 19px; color: var(--muted); }
.pcard .pnum .val { font-family: 'Geist Mono', monospace; font-variant-numeric: tabular-nums; font-size: 46px; font-weight: 500; letter-spacing: -.03em; line-height: 1; }
.pcard .pnum .per { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--tertiary); }
.pcard .ptbd { margin-top: 24px; min-height: 56px; display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.pcard .ptbd .chipline {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-wash); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding: 7px 13px; border-radius: 999px;
}
.pcard .ptbd .note { font-size: 12.5px; color: var(--tertiary); line-height: 1.5; }
.pcard .pfound { margin-top: 10px; font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--accent); letter-spacing: .04em; min-height: 18px; }
.pcard .plist { list-style: none; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pcard .plist li { display: flex; gap: 10px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.pcard .plist li svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 2px; }
.pcard .btn { margin-top: 26px; justify-content: center; }

.entline {
  margin-top: 22px; border: 1px dashed var(--border-strong); border-radius: var(--r-md);
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.entline p { font-size: 14.5px; color: var(--muted); }
.entline p b { color: var(--foreground); font-weight: 600; }

.nometer { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .nometer { grid-template-columns: 1fr; } }
.nometer .nm {
  border: 1px solid var(--border); border-radius: var(--r-md); background: var(--card-glass);
  box-shadow: var(--elev-1); padding: 24px 24px;
}
.nometer .nm .eyebrow { display: block; margin-bottom: 12px; }
.nometer .nm p { font-size: 14px; line-height: 1.6; color: var(--muted); font-weight: 300; }
.nometer .nm p b { color: var(--foreground); font-weight: 600; }

/* included-everywhere table */
.ptable { margin-top: 40px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--card-glass); box-shadow: var(--elev-1); }
.ptable table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.ptable th, .ptable td { padding: 12px 18px; text-align: left; border-bottom: 1px solid color-mix(in srgb, var(--border) 62%, transparent); }
.ptable tr:last-child th, .ptable tr:last-child td { border-bottom: 0; }
.ptable thead th { background: var(--surface-2); font-family: 'Geist Mono', monospace; font-size: 9.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--faint); font-weight: 500; }
.ptable thead th.c, .ptable td.c { text-align: center; width: 92px; }
.ptable tbody th { font-weight: 500; color: var(--foreground); font-size: 13.5px; }
.ptable tbody th small { display: block; font-weight: 300; color: var(--tertiary); font-size: 12px; margin-top: 2px; }
.ptable td.c svg { width: 16px; height: 16px; color: var(--accent); vertical-align: middle; }
.ptable .grp th { background: color-mix(in srgb, var(--surface-2) 55%, transparent); font-family: 'Geist Mono', monospace; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 500; padding-top: 14px; padding-bottom: 10px; }
@media (max-width: 680px) { .ptable { overflow-x: auto; } .ptable table { min-width: 560px; } }

/* add-ons */
.addons { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px) { .addons { grid-template-columns: 1fr; } }
.addon {
  border: 1px dashed var(--border-strong); border-radius: var(--r-lg); padding: 26px 26px;
  background: color-mix(in srgb, var(--surface-2) 40%, transparent);
}
.addon .arow { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.addon h3 { font-size: 17.5px; letter-spacing: -.015em; }
.addon .soon {
  flex: none; font-family: 'Geist Mono', monospace; font-size: 9.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--warning); background: color-mix(in srgb, var(--warning) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--warning) 30%, transparent); padding: 4px 10px; border-radius: 999px;
}
.addon p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--muted); font-weight: 300; }
.addon .amet { margin-top: 14px; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--tertiary); letter-spacing: .05em; }

/* ── FAQ (details/summary — native, keyboard-first) ─────────────────────── */
.faqlist { margin-top: 34px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--card-glass); box-shadow: var(--elev-1); overflow: hidden; }
.faqlist details { border-top: 1px solid color-mix(in srgb, var(--border) 62%, transparent); }
.faqlist details:first-child { border-top: 0; }
.faqlist summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 19px 24px; font-size: 15.5px; font-weight: 500; color: var(--foreground);
  transition: background .16s;
}
.faqlist summary::-webkit-details-marker { display: none; }
.faqlist summary:hover { background: color-mix(in srgb, var(--surface-2) 55%, transparent); }
.faqlist summary .ind {
  flex: none; width: 22px; height: 22px; border-radius: 999px; border: 1px solid var(--border-strong);
  display: grid; place-items: center; color: var(--tertiary); position: relative;
}
.faqlist summary .ind::before, .faqlist summary .ind::after {
  content: ""; position: absolute; background: currentColor; transition: transform .2s var(--ease);
}
.faqlist summary .ind::before { width: 9px; height: 1.5px; }
.faqlist summary .ind::after { width: 1.5px; height: 9px; }
.faqlist details[open] summary .ind { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.faqlist details[open] summary .ind::after { transform: rotate(90deg); }
.faqlist .ans { padding: 2px 28px 22px 62px; }
/* answers share the summary's full measure — a narrower column reads truncated */
.faqlist .ans p { font-size: 14.5px; line-height: 1.7; color: var(--muted); font-weight: 300; }
.faqlist .ans p + p { margin-top: 10px; }
.faqlist .ans a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.faqlist .ans b, .faqlist .ans strong { color: var(--foreground); font-weight: 600; }
@media (max-width: 560px) { .faqlist .ans { padding-left: 24px; } }

/* ── trust ──────────────────────────────────────────────────────────────── */
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 46px; }
@media (max-width: 880px) { .tgrid { grid-template-columns: 1fr; } }
.tcard {
  border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--card-glass);
  box-shadow: var(--elev-1); padding: 30px 30px;
}
.tcard .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-wash); color: var(--accent); display: grid; place-items: center; margin-bottom: 20px; }
.tcard .ic svg { width: 20px; height: 20px; }
.tcard h2 { font-size: 20px; letter-spacing: -.02em; }
.tcard p { margin-top: 12px; font-size: 14.5px; line-height: 1.65; color: var(--muted); font-weight: 300; }
.tcard p b { color: var(--foreground); font-weight: 600; }
.tcard .tfact {
  margin-top: 16px; padding: 12px 15px; border-radius: 10px; border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  font-family: 'Geist Mono', monospace; font-size: 11.5px; line-height: 1.6; color: var(--tertiary); letter-spacing: .02em;
}
.tcard .tfact b { color: var(--accent); font-weight: 500; }
/* ── generic prose block (short intros on pricing/trust/faq) ────────────── */
/* centered closing note — left-pinned it reads orphaned under a full-width grid */
.lede-block { max-width: 74ch; margin-inline: auto; text-align: center; }
.lede-block p { font-size: 15.5px; line-height: 1.7; color: var(--muted); font-weight: 300; }
.lede-block p + p { margin-top: 12px; }
.lede-block b { color: var(--foreground); font-weight: 600; }

/* index-parity helpers occasionally reused on subpages */
.subpage .shead { margin-bottom: 44px; }
.subpage .shead h2 { font-size: clamp(26px, 3.6vw, 42px); }

/* ── comparison vignette (stylized demo in the site's mock language) ────── */
.cmpviz {
  border: 1px solid var(--border-strong); border-radius: var(--r-lg); overflow: hidden;
  background: var(--card-glass); box-shadow: var(--elev-3);
}
.cmpviz .cmp-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 20px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.cmpviz .cmp-head .eyebrow { color: var(--tertiary); }
.cmpviz .cmp-grid { padding: 8px 20px 6px; }
.cmpviz .cmp-row { display: grid; grid-template-columns: 96px repeat(3, 1fr); gap: 10px; align-items: center; padding: 12px 0; border-top: 1px solid color-mix(in srgb, var(--border) 62%, transparent); }
.cmpviz .cmp-row:first-child { border-top: 0; }
.cmpviz .cmp-row.lab { padding: 14px 0 10px; }
.cmpviz .cmp-row.lab span { font-size: 13px; font-weight: 600; color: var(--foreground); line-height: 1.3; }
.cmpviz .cmp-row.lab span i { display: block; font-style: normal; font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--tertiary); font-weight: 400; margin-top: 3px; }
.cmpviz .cmp-key { font-family: 'Geist Mono', monospace; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.cmpviz .cmp-val { font-family: 'Geist Mono', monospace; font-variant-numeric: tabular-nums; font-size: 13.5px; color: var(--muted); }
.cmpviz .cmp-val.win { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.cmpviz .cmp-val.win::before { content: "✓"; font-size: 11px; }
.cmpviz .cmp-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 20px 16px; }
.cmpviz .cmp-foot .note { font-family: 'Geist Mono', monospace; font-size: 10.5px; letter-spacing: .05em; color: var(--tertiary); }
.cmpviz .cmp-foot .chips { display: flex; gap: 8px; }
.cmpviz .cmp-foot .chip { font-size: 12px; padding: 6px 12px; }
@media (max-width: 560px) {
  .cmpviz .cmp-row { grid-template-columns: 72px repeat(3, 1fr); gap: 6px; }
  .cmpviz .cmp-val { font-size: 12px; }
  .cmpviz .cmp-foot { flex-direction: column; align-items: flex-start; }
}

/* ── mobile header: Pricing stays reachable when the link pill collapses ── */
@media (max-width: 860px) {
  .navlinks { display: flex; padding: 0 5px; }
  .navlinks a { display: none; }
  .navlinks a.nav-keep { display: inline-flex; }
  .navlinks .navdiv, .navlinks a.loginlink { display: none; }
}
@media (max-width: 420px) { .navlinks { display: none; } }

/* homepage hooks (index.html links this sheet for the shared pillnav) */
.explore { margin-top: 46px; }
.explore .eyebrow { display: block; margin-bottom: 4px; }
.explore .pillnav { margin: 14px 0 0; }
.explore .trustline { margin-top: 26px; font-size: 14.5px; line-height: 1.6; color: var(--muted); font-weight: 300; }
.explore .trustline a { color: var(--accent); }
.explore .trustline a:hover { text-decoration: underline; text-underline-offset: 3px; }
.shead .morelink {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-size: 14.5px; font-weight: 500; color: var(--accent);
}
.shead .morelink .arrow { transition: transform .25s var(--ease); }
.shead .morelink:hover .arrow { transform: translateX(3px); }
/* beta card: promoted h2 keeps the old h3 scale; founder credibility line */
.betacard .left h2.bh { font-size: 30px; letter-spacing: -.03em; line-height: 1.1; }
.betacard .left .founderline {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 13px; line-height: 1.6; color: var(--tertiary); font-weight: 300; max-width: 42ch;
}
/* pricing: the one under-grid placeholder note; featured band dominance */
.pnote {
  margin-top: 18px; font-family: 'Geist Mono', monospace; font-size: 11.5px;
  letter-spacing: .05em; color: var(--tertiary);
}
@media (min-width: 941px) {
  .pcard.feat { transform: translateY(-6px); box-shadow: var(--elev-3); }
}
/* real captures: below tablet width, crop to the content region so the
   product stays legible instead of shrinking to a thumbnail */
@media (max-width: 720px) {
  .shotcard img { aspect-ratio: 4 / 3; object-fit: cover; object-position: 62% 22%; }
}
