/* ============================================================================
   POOOL — Marketing Landing Kit
   Long-form site: nav · hero (3 variants) · stats · how it works · assets ·
   value props · calculator · testimonials · press · FAQ · pricing · CTA · footer
   Scroll-reveal + desktop/phone animations. Tokens from ../../colors_and_type.css
   ============================================================================ */

/* Project token additions/overrides (card decision 2026-06-11: ONE card
   recipe = current language — bg-surface, 20px radius, borderless,
   --shadow-property depth, −6px lift to --shadow-property-hover; card
   headers are title + sub, no icon tile). 16px (--radius-card-lg) stays
   the scale for compact tiles inside cards/sections. */
:root {
  --radius-card-xl: 20px;                                /* canonical card surface radius */
  --shadow-property-hover: 0 18px 48px rgba(0,0,0,.12);  /* de-facto hover depth, unified */
  --radius-pill: var(--radius-card-lg);                  /* alias: one 16px source of truth */
  --shadow-control: 0 1px 4px rgba(10,13,18,.08);        /* control rest depth (chips, selects, icon buttons, shell actions) */
  --shadow-control-hover: 0 8px 20px rgba(10,13,18,.12); /* control hover depth */
}

/* Contrast fallback: cards stay borderless for everyone else, but users who
   ask for more contrast get a hairline ring on every card — done once at the
   token, so every surface using --shadow-property inherits it. */
@media (prefers-contrast: more) {
  :root {
    --shadow-property: 0 0 0 1px var(--border-strong), 0 4px 20px rgba(0,0,0,.06);
    --shadow-property-hover: 0 0 0 1px var(--border-strong), 0 18px 48px rgba(0,0,0,.12);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Brand selection (decision 2026-06-12): selecting text is a brand moment —
   mint highlight, navy text, on every page by construction. */
::selection { background: var(--brand-green-mint); color: var(--brand-dark-blue); }
body { margin: 0; font-family: var(--font-family); color: var(--fg-body); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; padding: 0 20px; border-radius: 8px; border: 0; font-family: var(--font-family); font-size: 14.5px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform .12s ease, background .15s ease, box-shadow .15s ease; white-space: nowrap; }
.btn::after { content: ''; position: absolute; inset: -2px 0; } /* 44px touch target (overridden by .shine's sheen on ≥44px CTAs) */
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .35; cursor: default; transform: none; }
/* Brand focus ring — same family as the input ring and the card focus ring
   (decision 2026-06-12; before this, buttons fell back to the browser
   default outline). The .sg-* co-selectors here and below exist ONLY for
   the styleguide's static state matrix — never put them on pages. */
.btn:focus-visible, .btn.sg-focus { outline: 0; box-shadow: 0 0 0 4px rgba(0,0,255,.25); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: #0000FF; color: #98FB96; }
.btn--primary:hover, .btn--primary.sg-hover { background: #0000CC; box-shadow: 0 8px 24px rgba(0,0,255,.28); }
.btn--secondary { background: #98FB96; color: #0000FF; }
.btn--secondary:hover, .btn--secondary.sg-hover { background: #7BE079; }
.btn--ghost { background: transparent; color: #344054; }
.btn--ghost:hover, .btn--ghost.sg-hover { background: #F2F4F7; }
.btn--white { background: #fff; color: #0000FF; }
.btn--xl { height: var(--size-xl); padding: 0 30px; font-size: 17px; }
.btn--lg { height: 48px; padding: 0 24px; font-size: 15.5px; }
/* Smaller sizes ride the DS control-height scale (--size-*): sm = in-card
   actions and table rows, xs = dense rows and chips-with-action. Contextual
   compaction (app surfaces 36px in components.css) comes on top. Sub-44px
   sizes keep a 44px touch target via an invisible hit area (::after) —
   same pattern as .set-toggle / .cline__rm. */
.btn--sm { height: var(--size-sm); padding: 0 14px; font-size: 13.5px; }
.btn--sm svg { width: 15px; height: 15px; }
.btn--xs { height: var(--size-xs); padding: 0 10px; font-size: 12.5px; gap: 5px; }
.btn--xs svg { width: 13px; height: 13px; }
.btn--sm, .btn--xs { position: relative; }
.btn--sm::after { content: ''; position: absolute; inset: -6px 0; }
.btn--xs::after { content: ''; position: absolute; inset: -8px 0; }
/* Destructive actions — same primitive, danger tokens (pairs with the
   set-danger card grammar in components.css) */
.btn--danger { background: var(--danger); color: #fff; }
.btn--danger:hover { background: var(--danger-hover); box-shadow: 0 8px 24px rgba(217,45,32,.25); }
.btn--block { width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; letter-spacing: .02em; color: #0000FF; background: #EEF4FF; padding: 6px 14px; border-radius: 20px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #03C76A; }
.s-title { font-size: 40px; font-weight: 800; letter-spacing: -.025em; color: #101828; margin: 0; line-height: 1.1; }
.s-sub { font-size: 18px; color: #475467; line-height: 1.6; margin: 14px 0 0; }
.s-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section { padding: 88px 0; }

/* ── Scroll reveal ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Hero is above the fold — never gate it on JS. Always visible, CSS entrance. */
.hero .reveal { opacity: 1; transform: none; }
.hero__grid, .hero__inner { animation: heroFade .8s cubic-bezier(.2,.7,.2,1) both; }
@keyframes heroFade { from { opacity: 0; transform: translateY(16px); } }
@media (prefers-reduced-motion: reduce) { .hero__grid, .hero__inner { animation: none; } }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.nav.scrolled { border-color: #E9EAEB; box-shadow: 0 1px 20px rgba(10,13,18,.04); }
.nav__in { display: flex; align-items: center; gap: 28px; height: 72px; }
.nav__logo { height: 28px; }
.nav__links { display: flex; gap: 26px; flex: 1; }
.nav__links a { font-size: 15px; font-weight: 600; color: #344054; text-decoration: none; }
.nav__links a:hover { color: #0000FF; }
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav .btn { height: 40px; font-size: 14.5px; padding: 0 16px; }
.burger { display: none; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 72px 0 88px; }
.hero h1 { font-size: 60px; font-weight: 800; letter-spacing: -.035em; line-height: 1.02; color: #101828; margin: 20px 0 20px; }
.hero h1 .hl { color: #0000FF; }
.hero__p { font-size: 20px; color: #475467; line-height: 1.55; margin: 0 0 30px; max-width: 30ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 12px; margin-top: 28px; font-size: 14px; color: #667085; }
.avstack { display: flex; }
.avstack span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; background: #0000FF; }
.avstack span:first-child { margin-left: 0; }
.stars { color: #F5A623; letter-spacing: 2px; }

/* Hero media: video-style poster with play + ken-burns */
.hero__media { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,40,.22); aspect-ratio: 4/3.4; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.1) translate(-2%, -2%); } }
.hero__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.hero__play span { width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.hero__play span::after { content: ''; width: 0; height: 0; border-left: 20px solid #0000FF; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 5px; }
.hero__play .ring { position: absolute; width: 78px; height: 78px; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); animation: pulsering 2.4s ease-out infinite; }
@keyframes pulsering { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.hero__chip { position: absolute; background: #fff; border-radius: 14px; box-shadow: 0 14px 34px rgba(10,13,18,.16); padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.hero__chip--tl { top: 18px; left: -22px; animation: floaty 5s ease-in-out infinite; }
.hero__chip--br { bottom: 22px; right: -18px; animation: floaty 6s ease-in-out infinite .5s; }
.hero__chip .ic { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.hero__chip .k { font-size: 11px; color: #667085; }
.hero__chip .v { font-size: 15px; font-weight: 800; color: #101828; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Hero variant B: centered on brand */
.hero--b { background: radial-gradient(120% 120% at 50% 0%, #0A0AE0, #0000FF 40%, #00009E); color: #fff; text-align: center; }
.hero--b .hero__inner { padding: 96px 0 110px; max-width: 880px; margin: 0 auto; }
.hero--b h1 { font-size: 64px; color: #fff; margin: 22px auto 20px; }
.hero--b h1 .hl { color: #98FB96; }
.hero--b .hero__p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto 30px; font-size: 21px; }
.hero--b .hero__cta { justify-content: center; }
.hero--b .eyebrow { background: rgba(255,255,255,.12); color: #98FB96; }
.hero--b .eyebrow .dot { background: #03FF88; }
.hero--b .hero__strip { display: flex; gap: 44px; justify-content: center; margin-top: 56px; }
.hero--b .hero__strip .v { font-size: 30px; font-weight: 800; color: #98FB96; }
.hero--b .hero__strip .k { font-size: 13px; color: rgba(255,255,255,.72); }

/* Hero variant C: split with phone mockup */
.hero--c .hero__grid { grid-template-columns: 1fr 1fr; }
.phone { position: relative; width: 300px; margin: 0 auto; border-radius: 42px; background: #101828; padding: 12px; box-shadow: 0 40px 80px rgba(0,0,40,.3); animation: floaty 6s ease-in-out infinite; }
.phone__screen { border-radius: 32px; overflow: hidden; background: #FAFAFA; aspect-ratio: 300/620; }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #101828; border-radius: 0 0 16px 16px; z-index: 2; }
.phone__bar { height: 58px; background: #0000FF; display: flex; align-items: flex-end; padding: 0 16px 10px; }
.phone__bar img { height: 18px; filter: brightness(0) invert(1); }
.phone__body { padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.phone__val { background: #fff; border-radius: 14px; padding: 14px; box-shadow: 0 1px 3px rgba(10,13,18,.06); }
.phone__val .k { font-size: 11px; color: #667085; }
.phone__val .v { font-size: 26px; font-weight: 800; color: #101828; }
.phone__val .up { font-size: 12px; font-weight: 700; color: #17B26A; }
.phone__card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(10,13,18,.06); }
.phone__card img { height: 86px; width: 100%; object-fit: cover; }
.phone__card .b { padding: 10px 12px; }
.phone__card .t { font-size: 13px; font-weight: 700; color: #101828; }
.phone__card .p { font-size: 12px; color: #0000FF; font-weight: 700; }
.phone__spark { height: 40px; }

/* ── Stats strip ───────────────────────────────────────────────────────── */
.stats { background: #0000FF; }
.stats__in { display: flex; justify-content: space-around; gap: 32px; padding: 40px 0; flex-wrap: wrap; }
.stats__item { text-align: center; }
.stats__v { font-size: 38px; font-weight: 800; color: #98FB96; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stats__k { font-size: 14px; color: rgba(255,255,255,.78); margin-top: 2px; }

/* ── How it works ──────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: s; }
.step { position: relative; padding: 28px; border: 1px solid #E9EAEB; border-radius: 18px; background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,13,18,.08); border-color: #C7D2FE; }
.step__n { width: 44px; height: 44px; border-radius: 12px; background: #0000FF; color: #98FB96; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 20px; font-weight: 700; color: #101828; margin: 0 0 8px; }
.step p { font-size: 15px; color: #475467; line-height: 1.6; margin: 0; }
.step__line { position: absolute; top: 50px; right: -18px; width: 36px; height: 2px; background: #D7E0FF; }
.step:last-child .step__line { display: none; }

/* ── Assets showcase ───────────────────────────────────────────────────── */
.asset-tabs { display: inline-flex; background: #F2F4F7; border-radius: 10px; padding: 4px; gap: 2px; margin: 0 auto 32px; }
.asset-tab { border: 0; background: transparent; padding: 9px 20px; border-radius: 7px; font-size: 15px; font-weight: 700; color: #475467; cursor: pointer; }
.asset-tab.is-active { background: #fff; color: #0000FF; box-shadow: 0 1px 3px rgba(10,13,18,.1); }
.asset-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.acard { background: var(--bg-surface); border-radius: var(--radius-card-xl); overflow: hidden; box-shadow: var(--shadow-property); cursor: pointer; transition: transform .3s, box-shadow .3s; }
.acard:hover { transform: translateY(-6px); box-shadow: var(--shadow-property-hover); }
.acard__media { position: relative; height: 200px; background: var(--bg-hover); }
.acard__media img { width: 100%; height: 100%; object-fit: cover; }
.acard__badge { position: absolute; top: 14px; left: 14px; padding: 4px 10px; border-radius: 16px; font-size: 12px; font-weight: 700; backdrop-filter: blur(4px); }
.acard__badge--prop { background: #0000FF; color: #98FB96; }
.acard__badge--comm { background: #98FB96; color: #0000FF; }
.acard__body { padding: 18px 20px 20px; }
.acard__meta { font-size: 13px; color: #667085; font-weight: 500; }
/* Keep marketplace card titles to one stable row; card.js supplies compact labels. */
.acard__title { display: block; min-width: 0; min-height: 1.3em; overflow: hidden; text-overflow: clip; white-space: nowrap; font-size: 19px; font-weight: 700; color: #101828; margin: 4px 0 14px; line-height: 1.3; }
.acard__row { display: flex; align-items: baseline; justify-content: space-between; }
.acard__price { font-size: 24px; font-weight: 800; color: #0000FF; }
.acard__funded { font-size: 12px; color: #667085; }
.acard__track { height: 5px; border-radius: 99px; background: var(--info-bg); margin: 10px 0 16px; }
.acard__fill { position: relative; height: 100%; border-radius: 99px; background: #98FB96; }
/* Waterline (see components.css): the neon swimmer at the water's edge */
.acard__fill::after { content: ""; position: absolute; top: 50%; right: -4px; transform: translateY(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--brand-green-neon); box-shadow: 0 0 0 3px rgba(3,255,136,.16); }
/* Stacked one stat per row (label left, value right, dotted separators) — the
   key/value list reads clearer than the old side-by-side trio. */
.acard__stats { display: flex; flex-direction: column; border-top: 1px dotted #E5E7EB; margin-top: 2px; }
.acard__stat { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dotted #E5E7EB; }
.acard__stat:last-child { border-bottom: 0; }
.acard__stat .k { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--fg-muted-2); font-weight: 600; } /* contrast audit 2026-06-12: #9CA3AF was 2.5:1 */
.acard__stat .v { font-size: 15px; font-weight: 800; color: #0000FF; }

/* ── Value props ───────────────────────────────────────────────────────── */
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.value { display: flex; gap: 16px; padding: 26px; border-radius: 18px; background: #FAFBFF; border: 1px solid #EEF1F9; }
.value__ic { width: 50px; height: 50px; border-radius: 13px; background: #0000FF; flex: none; display: flex; align-items: center; justify-content: center; }
.value__ic svg { width: 25px; height: 25px; color: #98FB96; }
.value h3 { font-size: 19px; font-weight: 700; color: #101828; margin: 2px 0 6px; }
.value p { font-size: 15px; color: #475467; line-height: 1.6; margin: 0; }

/* ── Calculator ────────────────────────────────────────────────────────── */
.calc { background: linear-gradient(150deg, #0000FF, #1B2559); border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.calc__left { padding: 48px; color: #fff; }
.calc__left h2 { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 12px; }
.calc__left p { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.6; margin: 0 0 28px; }
.calc__ctrl { margin-bottom: 26px; }
.calc__ctrl label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 10px; }
.calc__ctrl label b { color: #98FB96; font-size: 18px; font-weight: 800; }
/* Inline-editable calc values: a number input styled like the bold green value,
   with a green underline exactly as wide as the number (field-sizing) and a
   blinking caret right after the digits hinting editability. The slider and this
   input share the same Alpine model, so both stay in sync. */
.calc__editval { display: inline-flex; align-items: baseline; gap: 0; flex: none; white-space: nowrap; color: var(--brand-green-mint); }
.calc__editin { appearance: textfield; -moz-appearance: textfield; field-sizing: content; width: auto; min-width: 1ch; max-width: 9ch; box-sizing: content-box; border: 0; border-bottom: 2px solid var(--brand-green-mint); background: transparent; color: var(--brand-green-mint); font-family: var(--font-family); font-size: 18px; font-weight: 800; text-align: left; padding: 0 0 1px; line-height: 1.15; font-variant-numeric: tabular-nums; cursor: text; }
.calc__editin::-webkit-outer-spin-button, .calc__editin::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc__editin:focus { outline: 0; }
.calc__editpre { font-size: 18px; font-weight: 800; margin-right: 1px; }
.calc__editsuf { font-size: 18px; font-weight: 800; margin-left: 5px; }
.calc__caret::after { content: "|"; margin-left: 1px; color: var(--brand-green-mint); font-weight: 700; animation: calcBlink 2.8s ease-in-out infinite; }
.calc__editval:focus-within .calc__caret { display: none; }
@keyframes calcBlink { 0%, 55%, 100% { opacity: 1; } 78% { opacity: .12; } }
@media (prefers-reduced-motion: reduce) { .calc__caret::after { animation: none; } }
.calc__range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 30px; outline: 0; background: rgba(255,255,255,.22); }
.calc__range::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #98FB96; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.calc__range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: #98FB96; border: 0; cursor: pointer; }
.calc__chips { display: flex; gap: 8px; }
.calc__chip { border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; border-radius: 8px; padding: 8px 14px; font-size: 14px; font-weight: 700; cursor: pointer; }
.calc__chip.on { background: #98FB96; color: #0000FF; border-color: #98FB96; }
.calc__right { background: rgba(255,255,255,.07); padding: 48px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.calc__result { text-align: center; }
.calc__result .k { font-size: 14px; color: rgba(255,255,255,.75); }
.calc__big { font-size: 56px; font-weight: 800; color: #98FB96; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; margin: 6px 0; }
.calc__rows { background: rgba(0,0,0,.18); border-radius: 14px; padding: 18px; }
.calc__r { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: rgba(255,255,255,.85); }
.calc__r b { color: #fff; font-weight: 700; }
.calc__note { font-size: 12px; color: rgba(255,255,255,.78); text-align: center; }

/* ── Testimonials ──────────────────────────────────────────────────────── */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { padding: 26px; border-radius: 18px; border: 1px solid #E9EAEB; background: #fff; display: flex; flex-direction: column; gap: 14px; }
.tcard__stars { color: #F5A623; letter-spacing: 2px; }
.tcard__q { font-size: 16px; line-height: 1.6; color: #344054; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 12px; }
.tcard__av { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.tcard__n { font-size: 14px; font-weight: 700; color: #101828; }
.tcard__r { font-size: 13px; color: #667085; }

/* ── Press ─────────────────────────────────────────────────────────────── */
.press { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: .65; }
.press span { font-size: 22px; font-weight: 800; color: #475467; letter-spacing: -.02em; }
.press .serif { font-family: Georgia, 'Times New Roman', serif; font-style: italic; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faqs { max-width: 760px; margin: 0 auto; }
.faqq { border-bottom: 1px solid #E9EAEB; }
.faqq__q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 4px; font-size: 18px; font-weight: 700; color: #101828; cursor: pointer; }
.faqq__q svg { width: 22px; height: 22px; color: #667085; flex: none; transition: transform .25s; }
.faqq.open .faqq__q svg { transform: rotate(45deg); }
.faqq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faqq.open .faqq__a { max-height: 220px; padding: 0 4px 22px; }
.faqq__a p { font-size: 16px; color: #475467; line-height: 1.7; margin: 0; }

/* ── Pricing ───────────────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.plan { border: 1px solid #E9EAEB; border-radius: 20px; padding: 32px; background: #fff; display: flex; flex-direction: column; }
.plan--hot { border: 2px solid #0000FF; box-shadow: 0 18px 50px rgba(0,0,255,.12); position: relative; }
.plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #0000FF; color: #98FB96; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 16px; }
.plan h3 { font-size: 18px; font-weight: 700; color: #101828; margin: 0 0 6px; }
.plan__price { font-size: 44px; font-weight: 800; color: #101828; letter-spacing: -.02em; }
.plan__price span { font-size: 16px; font-weight: 600; color: #667085; }
.plan__desc { font-size: 14px; color: #667085; margin: 6px 0 20px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 15px; color: #344054; }
.plan li svg { width: 20px; height: 20px; color: #03A770; flex: none; }

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.finalcta { background: radial-gradient(120% 140% at 50% 0%, #0A0AE0, #0000FF 45%, #00009E); border-radius: 28px; text-align: center; padding: 72px 32px; color: #fff; }
.finalcta h2 { font-size: 44px; font-weight: 800; letter-spacing: -.025em; margin: 0 0 14px; }
.finalcta p { font-size: 18px; color: rgba(255,255,255,.85); margin: 0 0 28px; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.foot { background: #0B0D12; color: #98A2B3; padding: 64px 0 32px; }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid #232734; }
.foot__logo { height: 26px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.foot__bl { font-size: 14px; line-height: 1.6; max-width: 30ch; }
.foot__social { display: flex; gap: 10px; margin-top: 16px; }
.foot__social a { width: 36px; height: 36px; border-radius: 9px; background: #14171F; display: flex; align-items: center; justify-content: center; }
.foot__social svg { width: 18px; height: 18px; color: #98A2B3; }
.foot__col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 14px; }
.foot__col a { display: block; font-size: 14px; color: #98A2B3; text-decoration: none; margin-bottom: 10px; }
.foot__col a:hover { color: #98FB96; }
/* Unbuilt pages render as inert labels (never dead "#" links) */
.foot__col span { display: block; font-size: 14px; color: #98A2B3; opacity: .8; margin-bottom: 10px; } /* contrast audit 2026-06-12: .55 fell under 4.5:1 on the dark foot */
/* "Coming soon" footer items: inert labels for unbuilt pages, but clearly
   flagged as upcoming (not broken links). Text keeps the same contrast as
   other footer rows (per the 2026-06-12 audit — do NOT dim below 4.5:1); the
   chip + default cursor carry the "not clickable yet" signal. */
.foot__col .foot__soon { cursor: default; }
.foot__col .foot__soon .foot__soon-tag {
  display: inline-block; margin-left: 7px; font-style: normal;
  font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: #98A2B3; border: 1px solid rgba(152,162,179,.45); border-radius: 999px;
  padding: 0 6px; vertical-align: 1px; opacity: .9;
}
.foot__bot { display: flex; justify-content: space-between; padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ── Hero switcher (kit control) ───────────────────────────────────────── */
.heroswitch { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 100; background: #101828; border-radius: 12px; padding: 6px; display: flex; gap: 4px; box-shadow: 0 12px 34px rgba(0,0,0,.3); }
.heroswitch span { font-size: 12px; color: #98A2B3; padding: 8px 10px 8px 14px; align-self: center; }
.heroswitch button { border: 0; background: transparent; color: #C7CDD6; font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 8px; cursor: pointer; }
.heroswitch button.on { background: #0000FF; color: #98FB96; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero__grid, .hero--c .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; }
  .calc { grid-template-columns: 1fr; }
  .steps, .asset-grid, .tgrid, .plans { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav__links { display: none; }
  .burger { display: inline-flex; }
  .hero h1, .hero--b h1 { font-size: 40px; }
  .s-title { font-size: 30px; }
  .section { padding: 60px 0; }
  .hero__chip--tl { left: 8px; } .hero__chip--br { right: 8px; }
  .stats__in { gap: 20px; } .stats__v { font-size: 28px; }
  .finalcta h2 { font-size: 32px; }
  .foot__top { grid-template-columns: 1fr 1fr; }
}
