/* ==========================================================================
   Verdictly — marketing site.
   Spacing is on an 8px grid throughout: section 112, block 56, card 32,
   gap 24/16, inline 8. Container 1300 with 32 gutters.
   ========================================================================== */

:root {
  --paper: #fbf9f6; --card: #ffffff; --soft: #f5f1ea;
  --line: #e7e1d8; --line-soft: #f0ece5;
  --ink: #1e1b17; --ink-2: #57514a; --ink-3: #8a8279;
  --accent: #4a3f8f; --accent-ink: #362d6e; --accent-bg: #eeecf8;
  --gold: #a8791f; --gold-deep: #7d5a14; --gold-bg: #fcf4e3; --gold-line: #e9d9b4;
  --good: #2f7a52; --good-bg: #e8f4ed; --warn: #a8691f; --warn-bg: #fcf1e2;
  --bad: #a8394a; --bad-bg: #fbecee; --rose-bg: #fbeef1; --rose-line: #efc9d2;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1300px;
  --sh-1: 0 1px 2px rgba(30,27,23,.04), 0 6px 20px rgba(30,27,23,.06);
  --sh-2: 0 4px 10px rgba(30,27,23,.05), 0 24px 56px rgba(30,27,23,.11);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink);
       font: 400 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
[hidden] { display: none !important; }
.mono { font-family: var(--mono); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 32px; min-width: 0; }

/* ---------- type scale ---------- */

h2 { font: 400 44px/1.1 var(--serif); letter-spacing: -.022em; }
h2 em { font-style: italic; font-weight: 300; color: var(--gold-deep); }
h3 { font: 400 22px/1.3 var(--serif); letter-spacing: -.01em; }
.lead { font-size: 18px; line-height: 1.65; color: var(--ink-2); max-width: 54ch; }
.lead + .lead { margin-top: 16px; }
.lede { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 46ch; }
.eyebrow { font: 500 12.5px var(--sans); color: var(--gold); text-transform: uppercase;
           letter-spacing: .17em; }

/* Section signature: three dots, a title, one italic gold phrase. */
.sig .dots { display: flex; gap: 8px; margin-bottom: 20px; }
.sig .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.sig .dots i:nth-child(2) { opacity: .65; } .sig .dots i:nth-child(3) { opacity: .35; }
.sig--center { text-align: center; }
.sig--center .dots { justify-content: center; }
.sig--center .lede { margin: 16px auto 0; }

/* ---------- brand mark ---------- */

.vd-lockup { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.vd-word { font: 600 22px/1 var(--serif); letter-spacing: -.015em; }
.vd-mark { overflow: visible; }
.vd-mark-sm { width: 36px; height: 36px; }
.vd-hair { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: .85; }
.vd-spokes line { stroke: var(--gold); stroke-width: 1; opacity: .7; }
.vd-glyphs text { fill: #6b5a2e; font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols", "DejaVu Sans", var(--sans); }
.vd-star, .vd-dot, .vd-moon, .vd-sparkle { fill: var(--gold); }
.vd-orbit, .vd-ring { transform-origin: 100px 100px; }
.vd-orbit.spin { animation: vd-spin 48s linear infinite; }
.vd-ring.spin-slow { animation: vd-spin 200s linear infinite reverse; }
@keyframes vd-spin { to { transform: rotate(360deg); } }

/* ---------- buttons ---------- */

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
       font: 600 15px var(--sans); border-radius: 12px; padding: 0 26px; height: 50px;
       transition: transform .15s var(--ease), box-shadow .2s, background .2s, border-color .2s; }
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.2), 0 8px 22px rgba(30,27,23,.22); }
.btn--primary:hover { background: #000; transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0,0,0,.2), 0 14px 30px rgba(30,27,23,.28); }
.btn--ghost { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: var(--ink-3); background: var(--card); }
.btn--lg { height: 56px; padding: 0 32px; font-size: 16px; border-radius: 14px; }
.btn--sm { height: 42px; padding: 0 20px; font-size: 14px; border-radius: 10px; }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- nav ---------- */

.nav { position: sticky; top: 0; z-index: 30; background: rgba(251,249,246,.8);
       backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.nav.scrolled { border-bottom-color: var(--line-soft); }
.nav__inner { max-width: var(--container); margin-inline: auto; padding-inline: 32px;
              height: 76px; display: flex; align-items: center; gap: 40px; }
.nav__menu { display: none; gap: 32px; margin-left: 56px; }
.nav__menu a { font-size: 15px; font-weight: 500; color: var(--ink-2); padding: 4px 0;
               border-bottom: 1px solid transparent; transition: color .15s, border-color .15s; }
.nav__menu a:hover { color: var(--ink); border-bottom-color: var(--gold-line); }
.nav__actions { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__link { display: none; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav__link:hover { color: var(--ink); }
@media (min-width: 960px) { .nav__menu, .nav__link { display: flex; } }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(20px);
          transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- hero ---------- */

.hero { position: relative; isolation: isolate; padding: 88px 0 0; overflow: clip; }
.hero__ground { position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(900px 520px at 50% 0%, rgba(168,121,31,.12), transparent 65%),
              radial-gradient(700px 420px at 12% 70%, rgba(74,63,143,.06), transparent 60%); }
/* Their grid-with-radial-mask trick, in gold. */
.hero__grid { position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(to right, rgba(168,121,31,.09) 0 1px, transparent 1px 48px),
                    repeating-linear-gradient(to bottom, rgba(168,121,31,.09) 0 1px, transparent 1px 48px);
  -webkit-mask-image: radial-gradient(64% 58% at 50% 42%, #000 20%, transparent 100%);
          mask-image: radial-gradient(64% 58% at 50% 42%, #000 20%, transparent 100%); }

.hero__content { max-width: var(--container); margin-inline: auto; padding-inline: 32px; text-align: center; }
.badge { display: inline-flex; align-items: center; gap: 9px; height: 42px; padding: 0 20px;
         background: var(--card); border: 1px solid var(--gold-line); border-radius: 999px;
         font: 500 13.5px var(--sans); color: var(--gold-deep); letter-spacing: .04em; box-shadow: var(--sh-1); }
.badge__spark { width: 14px; height: 14px; background: var(--gold);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%); }

.hero__title { margin: 32px auto 0; max-width: 18ch;
               font: 400 clamp(40px, 5.6vw, 68px)/1.06 var(--serif); letter-spacing: -.025em; }
.hero__title .w { display: inline-block; opacity: 0; transform: translateY(.5em);
                  animation: word .9s var(--ease) forwards; animation-delay: calc(.07s * var(--i)); }
.hero__title .em { font-style: italic; font-weight: 300; color: var(--gold-deep); }
@keyframes word { to { opacity: 1; transform: none; } }
.hero__sub { margin: 24px auto 0; max-width: 54ch; font-size: 19px; line-height: 1.6; color: var(--ink-2); }
.hero__cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* The stage: a fixed-aspect canvas with elements placed in %, so it scales as one drawing. */
.stage { position: relative; width: min(1200px, 100% - 64px); aspect-ratio: 1200 / 520;
         margin: 72px auto 0; }
.rails { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.rail { fill: none; stroke: var(--gold); stroke-width: 1.5; opacity: .55;
        stroke-dasharray: 4 8; animation: rail-flow 1.1s linear infinite; }
@keyframes rail-flow { to { stroke-dashoffset: -12; } }
.node { fill: var(--gold); }

.stage__label { position: absolute; top: -2%; margin: 0; font: 600 12px var(--sans); color: var(--ink-3);
                text-transform: uppercase; letter-spacing: .12em; display: flex; align-items: center; gap: 8px; }
.stage__label b { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-bg); color: var(--gold-deep);
                  display: grid; place-items: center; font-size: 11px; }
.stage__label--1 { left: 0; } .stage__label--2 { left: 33.33%; } .stage__label--3 { left: 83.33%; }

.tile { position: absolute; width: 16.67%; background: var(--card); border: 1px solid var(--line);
        border-radius: 14px; padding: 12px 16px; box-shadow: var(--sh-1); min-width: 0; }
.tile small { display: block; font: 500 10.5px var(--sans); color: var(--gold); text-transform: uppercase;
              letter-spacing: .12em; margin-bottom: 4px; }
.tile b { display: block; font-weight: 500; font-size: 14px; line-height: 1.35; }
.tile b.mono { font-family: var(--mono); font-size: 12.5px; }
.tile--l1 { left: 0; top: 10%; } .tile--l2 { left: 0; top: 42.5%; } .tile--l3 { left: 0; top: 75%; }
.tile--r1 { left: 83.33%; top: 7%; } .tile--r2 { left: 83.33%; top: 44%; } .tile--r3 { left: 83.33%; top: 77%; }
.tile--out { border-color: #ddd6e8; }
.tile--out small { color: var(--accent); }
.tile--l1, .tile--l2, .tile--l3 { transform: translateY(-50%); }
.tile--r1, .tile--r2, .tile--r3 { transform: translateY(-50%); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: 1px; }
.dot--good { background: var(--good); }

.stage__chart { position: absolute; left: 33.33%; top: 11.5%; width: 33.33%; aspect-ratio: 1;
                background: var(--card); border: 1px solid var(--gold-line); border-radius: 18px;
                padding: 14px; box-shadow: var(--sh-2); }
.stage__chart .kundli { width: 100%; height: 100%; }

.hero__notes { max-width: var(--container); margin: 64px auto 0; padding: 40px 32px 0;
               border-top: 1px solid var(--line-soft); display: grid; gap: 32px;
               grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.note { font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.note b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
.note em { font-style: italic; }

/* ---------- kundli svg (mirrors the app) ---------- */

.kundli { width: 100%; height: auto; }
.kundli .board { fill: #fffdf9; }
.kundli .frame { fill: none; stroke: var(--gold); stroke-width: 1.6; opacity: .55; }
.kundli .rule { stroke: var(--line); stroke-width: 1.2; fill: none; }
.kundli .cell { fill: #fffdf9; }
.kundli .cell-edge { fill: none; stroke: var(--line); stroke-width: 1.2; }
.kundli .cell.lagna { fill: var(--gold-bg); }
.kundli .sign-num, .kundli .sign-name { fill: var(--ink-3); font-size: 11px; font-family: var(--mono); }
.kundli .planet-label { fill: var(--accent-ink); font-size: 13px; font-weight: 600; font-family: var(--sans); }
.kundli .planet-label .retro { fill: var(--warn); }
.kundli .lagna-mark { stroke: var(--gold); stroke-width: 1.8; }

/* ---------- questions marquee ---------- */

.asks { padding: 80px 0 0; overflow: hidden; }
.asks .sig { margin-bottom: 40px; padding-inline: 32px; }
.marquee { display: flex; width: max-content;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.marquee--a { margin-left: -120px; }
.marquee--b { margin-top: 16px; margin-left: -40px; }
.marquee__track { display: flex; gap: 16px; padding-right: 16px; flex: none; animation: marquee 58s linear infinite; }
.marquee--b .marquee__track { animation-direction: reverse; animation-duration: 66s; }
@keyframes marquee { to { transform: translateX(-100%); } }
.pill { display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 22px;
        border: 1px solid; border-radius: 999px; font: 500 15.5px/1 var(--sans); color: var(--ink); white-space: nowrap; }
.pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: .55; }
.pill--gold   { background: var(--gold-bg);   border-color: var(--gold-line); }
.pill--violet { background: var(--accent-bg); border-color: #cfc8ea; }
.pill--green  { background: var(--good-bg);   border-color: #bfdccb; }
.pill--rose   { background: var(--rose-bg);   border-color: var(--rose-line); }
.pill--sand   { background: var(--soft);      border-color: var(--line); }

/* ---------- problem ---------- */

.problem { padding: 72px 0 80px; }
.problem__grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 900px) { .problem__grid { grid-template-columns: 1fr 1.15fr; gap: 80px; } }

/* ---------- product posters ---------- */

.product { padding: 72px 0 80px; background: #f7f3ec;
           border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.product__head { display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.product__head .lede { max-width: 40ch; padding-bottom: 6px; }

.posters { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .posters { grid-template-columns: 1fr 1fr; } .poster--wide { grid-column: 1 / -1; } }
.poster { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 24px 24px 32px;
          box-shadow: var(--sh-1); min-width: 0; display: flex; flex-direction: column;
          transition: transform .3s var(--ease), box-shadow .3s; }
.poster:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.poster__art { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px;
               padding: 28px; margin-bottom: 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.poster__title { font-size: 24px; margin-bottom: 8px; }
.poster__desc { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); max-width: 52ch; }
.poster__row { display: grid; gap: 32px; align-items: center; }
.poster__row > * { min-width: 0; }
@media (min-width: 900px) { .poster__row { grid-template-columns: .8fr 1.2fr; gap: 56px; } }
.poster--wide .poster__art { margin: 0; min-height: 0; }

/* answer art */
.ans__asked { font: 600 10.5px var(--sans); color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.ans__asked span { display: block; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 13px; color: var(--ink-3); margin-top: 3px; }
.ans__h { font: 400 20px/1.35 var(--serif); letter-spacing: -.01em; margin-bottom: 14px; }
.ans__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.chip { font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.chip--mono { background: var(--accent-bg); color: var(--accent-ink); font-family: var(--mono); font-weight: 500; }
.chip--warn { background: var(--warn-bg); color: var(--warn); }
.ans__cols { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.ans__cols h4 { font: 600 10.5px var(--sans); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.ans__cols h4.good { color: var(--good); } .ans__cols h4.warn { color: var(--warn); }
.ans__cols li { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; padding-left: 14px; position: relative; margin-bottom: 8px; }
.ans__cols li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--good); }
.ans__cols h4.warn + ul li::before { background: var(--warn); }
.ans__cols li b { display: block; color: var(--ink); font-weight: 600; }

/* chart art */
.poster__art--chart { align-items: center; padding: 20px; }
#poster-chart { width: min(100%, 360px); }
.chart-legend { display: flex; gap: 20px; margin-top: 14px; font-size: 12px; color: var(--ink-3); }
.chart-legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; background: var(--gold-bg);
                  border: 1px solid var(--gold-line); vertical-align: -2px; margin-right: 6px; }
.chart-legend i.r { background: var(--warn); border-color: var(--warn); }

/* strength art */
.art-summary { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); background: var(--accent-bg);
               border-radius: 10px; padding: 12px 14px; margin-bottom: 20px; }
.art-summary b { color: var(--ink); font-weight: 600; }
.bars { display: grid; gap: 12px; }
.bars li { display: grid; grid-template-columns: 116px 1fr 30px; gap: 12px; align-items: center; font-size: 13.5px; }
.bars li small { display: block; font-size: 11px; color: var(--ink-3); }
.bars i { display: block; height: 7px; border-radius: 999px; background: var(--soft); position: relative; overflow: hidden; }
.bars i::after { content: ""; position: absolute; inset: 0; width: 0; border-radius: inherit; background: var(--good);
                 transition: width 1s var(--ease) var(--d, 0s); }
.in .bars i::after { width: var(--w); }
.bars i.mid::after { background: var(--warn); } .bars i.low::after { background: var(--bad); }
.bars em { font-style: normal; font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); text-align: right; }

/* match art */
.poster__art--match { gap: 22px; }
.match__top { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.doshas { display: grid; gap: 8px; border-top: 1px solid var(--line-soft); padding-top: 18px; }
.doshas li { display: grid; grid-template-columns: 118px 1fr; gap: 12px; align-items: baseline; font-size: 13px; padding-left: 16px; position: relative; }
.doshas li::before { content: ""; position: absolute; left: 0; top: 6px; width: 7px; height: 7px; border-radius: 50%; }
.doshas .is-present::before { background: var(--bad); } .doshas .is-cancelled::before { background: var(--warn); } .doshas .is-none::before { background: var(--good); }
.doshas b { font-weight: 600; } .doshas span { color: var(--ink-2); }
.ring { width: 116px; height: 116px; flex: none; border-radius: 50%; display: flex; flex-direction: column; align-items: center;
        justify-content: center; background: var(--accent-bg); box-shadow: inset 0 0 0 2px rgba(74,63,143,.16); }
.ring b { font: 300 40px/1 var(--serif); color: var(--accent-ink); }
.ring small { font-size: 11.5px; color: var(--ink-3); margin-top: 3px; }
.kootas { flex: 1; min-width: 200px; display: grid; gap: 10px; }
.kootas li { display: grid; grid-template-columns: 92px 1fr 42px; gap: 10px; align-items: center; font-size: 13px; }
.kootas i { display: block; height: 7px; border-radius: 999px; background: var(--soft); position: relative; overflow: hidden; }
.kootas i::after { content: ""; position: absolute; inset: 0; width: 0; border-radius: inherit; background: var(--good); transition: width 1.1s var(--ease); }
.in .kootas i::after { width: var(--w); }
.kootas i.mid::after { background: var(--warn); } .kootas i.low::after { background: var(--bad); }
.kootas em { font-style: normal; font-family: var(--mono); font-size: 12px; color: var(--ink-3); text-align: right; }

/* dasha art */
.timeline { display: flex; height: 46px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); margin-bottom: 18px; }
.seg { display: flex; align-items: center; justify-content: center; min-width: 0; overflow: hidden;
       background: var(--soft); border-right: 1px solid var(--line); font-size: 12px; color: var(--ink-3); }
.seg:last-child { border-right: 0; }
.seg span { padding: 0 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.seg.now { background: var(--accent); color: #fff; font-weight: 600; }
.period-now { border-left: 3px solid var(--accent); padding: 2px 0 2px 16px; }
.period-now b { display: block; font-weight: 500; font-size: 15px; margin-bottom: 4px; }
.period-now span { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ---------- trust ---------- */

.trust { padding: 72px 0 0; }
.trust .sig { margin-bottom: 48px; }
.tgrid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px; min-width: 0;
         transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--gold-line); }
.tnum { display: block; font: 300 30px/1 var(--serif); color: var(--gold); margin-bottom: 20px; }
.tcard h3 { font-size: 20px; margin-bottom: 10px; }
.tcard p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }

/* ---------- faq ---------- */

.faq { padding: 80px 0; }
.faq__grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .faq__grid { grid-template-columns: 1fr 1.4fr; gap: 80px; } .faq .sig { position: sticky; top: 100px; } }
.faq__list { display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 0 24px; transition: border-color .2s; }
.faq details[open] { border-color: var(--gold-line); }
.faq summary { cursor: pointer; list-style: none; font: 500 16.5px var(--sans); padding: 20px 0;
               display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 9px; height: 9px; flex: none; border-right: 1.6px solid var(--ink-3);
  border-bottom: 1.6px solid var(--ink-3); transform: rotate(45deg); transition: transform .25s var(--ease); margin-bottom: 4px; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-bottom: -4px; }
.faq details p { color: var(--ink-2); font-size: 15px; line-height: 1.65; padding-bottom: 22px; }

/* ---------- final ---------- */

.final { padding: 80px 0 96px; text-align: center; background: #f7f3ec;
         border-top: 1px solid var(--line-soft); }
.final__inner { display: flex; flex-direction: column; align-items: center; }
#final-mark .vd-mark { width: 128px; height: 128px; margin-bottom: 28px; }
.final .eyebrow { margin-bottom: 16px; }
.final h2 { max-width: 16ch; margin-bottom: 36px; }
.final__fine { margin-top: 18px; font-size: 13px; color: var(--ink-3); }

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--line-soft); background: var(--paper); }
.foot__top { display: grid; gap: 40px; padding-top: 56px; padding-bottom: 48px; }
@media (min-width: 900px) { .foot__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; } }
.foot__tag { color: var(--gold); font-size: 13px; margin-top: 12px; letter-spacing: .04em; }
.foot__blurb { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--ink-2); max-width: 34ch; }
.foot__col { display: flex; flex-direction: column; gap: 10px; }
.foot__col h4 { font: 600 12px var(--sans); color: var(--ink-3); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
/* Plain links only; the Try-now button keeps its own white. */
.foot__col a:not(.btn) { font-size: 14.5px; color: var(--ink-2); width: fit-content; }
.foot__col a:not(.btn):hover { color: var(--ink); }
.foot__cta .btn { width: fit-content; margin-top: 2px; }
.foot__cta p { font-size: 13px; color: var(--ink-3); }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
                padding-top: 24px; padding-bottom: 40px; border-top: 1px solid var(--line-soft); }
.foot__fine { font-size: 12.5px; color: var(--ink-3); max-width: 64ch; }
.foot__credit { font-size: 13px; color: var(--ink-2); }
@media (min-width: 600px) { .foot__credit { white-space: nowrap; } }
.foot__credit a { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--gold-line); transition: border-color .15s; }
.foot__credit a:hover { border-bottom-color: var(--gold); }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  h2 { font-size: 34px; }
  .stage { aspect-ratio: auto; width: 100%; margin-top: 56px; padding-inline: 20px;
           display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
  .rails, .stage__label { display: none; }
  .tile { position: static; width: auto; transform: none; }
  .stage__chart { position: static; width: 100%; grid-column: 1 / -1; order: 2; max-width: 420px; margin-inline: auto; }
  .tile--in { order: 1; } .tile--out { order: 3; }
  .tile--l3, .tile--r3 { grid-column: 1 / -1; }
  .hero__notes { margin-top: 48px; }
  /* Nine labels across a phone-width bar cannot be read; keep the shape only. */
  .timeline { height: 30px; }
  .seg span { display: none; }
  .asks { padding-top: 72px; }
  .problem { padding: 64px 0 72px; }
  .product { padding: 64px 0 72px; }
  .trust { padding-top: 64px; }
  .faq { padding: 72px 0; }
  .final { padding: 72px 0 80px; }
  .foot__top { padding-top: 40px; padding-bottom: 32px; }
  .ans__cols { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container, .nav__inner, .hero__content, .hero__notes, .asks .sig { padding-inline: 20px; }
  .stage { padding-inline: 20px; grid-template-columns: 1fr; }
  .tile--l3, .tile--r3 { grid-column: auto; }
  .poster { padding: 16px 16px 24px; } .poster__art { padding: 18px; min-height: 0; }
  .bars li { grid-template-columns: 80px 1fr 28px; }
  .pill { height: 46px; padding: 0 16px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .hero__title .w { opacity: 1; transform: none; }
  .in .bars i::after, .in .kootas i::after { width: var(--w); }
}
