*{margin:0;padding:0;box-sizing:border-box}
:root{
  /* lifted off pure black, a soft slate-navy that keeps the dark vibe */
  --bg:#12171f;
  --panel:#19212c;
  --panel2:#202938;
  --line:#2c3747;
  --fg:#dde5f0;
  --dim:#8492a3;
  --dim2:#647386;
  --faint:#4a586b;
  --ink:#0c1119;          /* dark text used on top of the amber accent */
  --accent:#ffb454;
  --accent2:#56b6ff;
  --up:#3fe0a0;
  --down:#ff6b78;
  --purple:#c084fc;
  /* finance font system: grotesk display · clean sans copy · mono data */
  --disp:'Space Grotesk','IBM Plex Sans',sans-serif;
  --sans:'IBM Plex Sans',-apple-system,'Segoe UI',sans-serif;
  --mono:'IBM Plex Mono',ui-monospace,monospace;
}
html{scroll-behavior:smooth}
body{
  color:var(--fg);font-family:var(--sans);font-size:14px;line-height:1.6;overflow-x:hidden;
  /* faint twin glows over the lifted base keep it from reading as flat black */
  background:
    radial-gradient(1100px 680px at 72% -12%, rgba(86,182,255,.05), transparent 60%),
    radial-gradient(900px 600px at 6% 4%, rgba(255,180,84,.035), transparent 55%),
    var(--bg);
  background-attachment:fixed;
}

/* ── FONT ROLES ── headlines in grotesk, data/labels stay mono ── */
.nav-logo,.f-logo,.hero h1,.section-title,.final-cta h2,.compare-kicker .ck-big,.path-step .ps-num,.price-tag{font-family:var(--disp)}
.ticker-item,.hero-tag,.section-label,.chip,.fp-title,.fp-row,.fp-price,.fp-cell,.fp-delta,
.coach-bubble .cb-tag,.e-num,.e-status,.p-num,.cf-key,.rule,.verdict,.tg-title,.of-name,
.chat-head,.msg .m-who,.ps-where,.metric-head,.metric .m-row,.metric .m-val,.nox-badge,
.compare-head,.compare-cell,.price-bad,.price-mid,.price-good,.live-dot{font-family:var(--mono)}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:0 48px;height:60px;background:rgba(18,23,31,0.82);backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.nav-logo{font-size:16px;font-weight:600;letter-spacing:2px;color:var(--fg)}
.nav-logo span{color:var(--accent)}
.nav-links{display:flex;gap:28px}
.nav-links a{color:var(--dim2);text-decoration:none;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;transition:color .2s}
.nav-links a:hover{color:var(--fg)}
.nav-cta{background:var(--accent);color:var(--ink);border:none;padding:8px 20px;font-family:var(--mono);font-size:11px;font-weight:600;letter-spacing:1.5px;cursor:pointer;text-decoration:none;transition:opacity .2s}
.nav-cta:hover{opacity:0.85}
@media(max-width:860px){.nav-links{display:none}nav{padding:0 24px}}

/* ── BUTTONS ── */
.btn-primary{background:var(--accent);color:var(--ink);border:none;padding:16px 38px;font-family:var(--mono);font-size:13.5px;font-weight:600;letter-spacing:1.5px;cursor:pointer;text-decoration:none;transition:opacity .2s;display:inline-block}
.btn-primary:hover{opacity:0.85}
.btn-outline{background:transparent;color:var(--fg);border:1px solid rgba(255,255,255,0.15);padding:16px 38px;font-family:var(--mono);font-size:13.5px;letter-spacing:1.5px;cursor:pointer;text-decoration:none;transition:border-color .2s,color .2s;display:inline-block}
.btn-outline:hover{border-color:var(--dim2);color:var(--fg)}

/* ── TICKER ── */
.ticker-bar{background:var(--panel);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:10px 0;overflow:hidden;white-space:nowrap}
.ticker-inner{display:inline-flex;gap:64px;animation:ticker 32s linear infinite}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.ticker-item{font-size:11px;letter-spacing:1px;color:var(--dim2)}
.ticker-item .sym{color:var(--fg);font-weight:600;margin-right:10px}
.ticker-item .up{color:var(--up)}
.ticker-item .dn{color:var(--down)}

/* ── HERO ── */
.hero{min-height:92vh;display:flex;align-items:center;padding:130px 48px 80px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 55% at 30% 40%,rgba(255,180,84,0.05) 0%,transparent 70%),radial-gradient(ellipse 50% 45% at 85% 60%,rgba(86,182,255,0.04) 0%,transparent 70%);pointer-events:none}
.hero-inner{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1.15fr 0.85fr;gap:64px;align-items:center;width:100%}
@media(max-width:960px){.hero-inner{grid-template-columns:1fr}.hero{padding:120px 24px 64px}}
.hero-tag{display:inline-block;border:1px solid rgba(255,180,84,0.3);color:var(--accent);font-size:10px;letter-spacing:2px;padding:4px 12px;margin-bottom:28px;text-transform:uppercase}
.hero h1{font-size:clamp(40px,5.4vw,76px);font-weight:700;letter-spacing:-1.6px;line-height:1.08;margin-bottom:26px}
.hero h1 .accent{color:var(--accent)}
.hero-sub{font-size:clamp(15px,1.85vw,18px);color:var(--dim2);max-width:560px;line-height:1.8;margin-bottom:38px}
.hero-sub strong{color:var(--fg);font-weight:500}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.hero-chips{display:flex;gap:10px;margin-top:44px;flex-wrap:wrap}
.chip{font-size:10px;letter-spacing:1px;color:var(--dim);border:1px solid var(--line);padding:6px 12px;background:var(--panel)}
.chip b{color:var(--fg);font-weight:600}
.chip.hot b{color:var(--accent)}

/* hero footprint mock */
.fp-mock{background:var(--panel);border:1px solid var(--line);padding:22px;position:relative;max-width:420px;justify-self:end;width:100%}
@media(max-width:960px){.fp-mock{justify-self:start}}
.fp-title{font-size:9px;letter-spacing:2px;color:var(--dim);text-transform:uppercase;margin-bottom:14px;display:flex;justify-content:space-between}
.fp-title .live-dot{color:var(--up)}
.fp-grid{display:flex;flex-direction:column;gap:2px}
.fp-row{display:grid;grid-template-columns:64px 1fr 1fr;gap:2px;font-size:11px;line-height:1}
.fp-price{color:var(--dim);text-align:right;padding:7px 8px 7px 0;font-size:10px}
.fp-cell{padding:7px 10px;background:var(--panel2);color:var(--dim2);text-align:center;position:relative}
.fp-cell.bid{text-align:right}
.fp-cell.b-hl{background:rgba(63,224,160,0.16);color:var(--up);font-weight:600}
.fp-cell.a-hl{background:rgba(255,107,120,0.16);color:var(--down);font-weight:600}
.fp-cell.absorb{outline:1px dashed rgba(255,180,84,0.7);outline-offset:-1px;color:var(--accent);font-weight:600}
.fp-delta{display:flex;justify-content:space-between;border-top:1px solid var(--line);margin-top:12px;padding-top:12px;font-size:10px;color:var(--dim)}
.fp-delta b{color:var(--down);font-weight:600}
.fp-delta .vol b{color:var(--fg)}
.coach-bubble{position:absolute;right:-14px;top:-46px;background:#1e2836;border:1px solid rgba(255,180,84,0.45);padding:12px 16px;font-size:10px;line-height:1.7;color:var(--fg);max-width:280px;box-shadow:0 16px 48px rgba(0,0,0,0.5)}
.coach-bubble .cb-tag{color:var(--accent);font-weight:600;letter-spacing:1.5px;font-size:9px;display:block;margin-bottom:4px}
.coach-bubble::after{content:'';position:absolute;left:32px;bottom:-7px;width:12px;height:12px;background:#1e2836;border-right:1px solid rgba(255,180,84,0.45);border-bottom:1px solid rgba(255,180,84,0.45);transform:rotate(45deg)}
@media(max-width:960px){.coach-bubble{position:static;margin-bottom:16px;max-width:none}.coach-bubble::after{display:none}}

/* ── SECTIONS ── */
section{padding:96px 24px}
.section-inner{max-width:1140px;margin:0 auto}
.section-label{font-size:10px;letter-spacing:2.5px;text-transform:uppercase;color:var(--accent);margin-bottom:16px}
.section-label.blue{color:var(--accent2)}
.section-label.purple{color:var(--purple)}
.section-title{font-size:clamp(28px,4.1vw,46px);font-weight:700;line-height:1.18;margin-bottom:22px;letter-spacing:-0.8px}
.section-sub{color:var(--dim2);max-width:660px;line-height:1.8;font-size:15px}
.section-sub strong{color:var(--fg);font-weight:500}
.divider{border:none;border-top:1px solid var(--line);margin:0}
.mt-56{margin-top:56px}
.mt-64{margin-top:64px}
.text-center{text-align:center}
.mx-auto{margin-left:auto;margin-right:auto}

/* reveal animation */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:none}

/* ── THREE QUESTIONS STRIP ── */
.tq-strip{background:var(--panel);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:44px 24px}
.tq-inner{max-width:1140px;margin:0 auto;text-align:center}
.tq-qs{display:flex;justify-content:center;align-items:flex-start;gap:clamp(18px,4vw,56px);flex-wrap:wrap;margin-bottom:18px}
.tq-q{display:flex;flex-direction:column;align-items:center;gap:14px}
.tq-qt{font-size:clamp(12px,1.7vw,16px);font-weight:600;color:var(--fg);letter-spacing:0.5px}
.tq-q span{color:var(--accent);margin-right:10px}
.tq-line{font-size:11px;color:var(--dim);letter-spacing:0.5px}

/* ── PROBLEM ── */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:56px}
@media(max-width:860px){.prob-grid{grid-template-columns:1fr}}
.prob-card{background:var(--panel);border:1px solid var(--line);padding:28px;position:relative}
.prob-card .p-num{font-size:10px;color:var(--down);letter-spacing:2px;margin-bottom:14px}
.prob-card .p-title{font-size:14px;font-weight:600;color:var(--fg);margin-bottom:12px;line-height:1.5}
.prob-card .p-desc{font-size:12px;color:var(--dim2);line-height:1.8}
.prob-punch{margin-top:32px;font-size:13px;color:var(--fg);border-left:2px solid var(--accent);padding:4px 0 4px 20px;line-height:1.8;max-width:680px}
.prob-punch span{color:var(--accent)}

/* ── ENVIRONMENTS ── */
.env-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:56px}
@media(max-width:860px){.env-grid{grid-template-columns:1fr}}
.env-card{background:var(--panel);border:1px solid var(--line);padding:32px 28px;position:relative;transition:border-color .25s}
.env-card:hover{border-color:rgba(255,180,84,0.3)}
.env-card .e-num{font-size:11px;color:var(--dim);letter-spacing:2px;margin-bottom:18px}
.env-card .e-status{position:absolute;top:24px;right:24px;font-size:8px;letter-spacing:1.5px;padding:3px 8px}
.env-card .e-status.live{color:var(--up);border:1px solid rgba(63,224,160,0.3)}
.env-card .e-status.dev{color:var(--accent);border:1px solid rgba(255,180,84,0.3)}
.env-card .e-title{font-size:16px;font-weight:600;color:var(--fg);margin-bottom:14px}
.env-card .e-desc{font-size:12px;color:var(--dim2);line-height:1.85}
.env-card .e-desc strong{color:var(--fg);font-weight:500}

/* ── TRUTH ── */
.truth-wrap{display:grid;grid-template-columns:1.05fr 0.95fr;gap:56px;margin-top:56px;align-items:start}
@media(max-width:900px){.truth-wrap{grid-template-columns:1fr}}
.truth-text p{color:var(--dim2);line-height:1.9;font-size:13px;margin-bottom:18px}
.truth-text p strong{color:var(--fg);font-weight:500}
.truth-text p .hl{color:var(--accent)}
.agent-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media(max-width:480px){.agent-grid{grid-template-columns:1fr}}
.agent{background:var(--panel);border:1px solid var(--line);padding:14px 16px}
.agent .a-name{font-size:11px;font-weight:600;color:var(--fg);margin-bottom:4px}
.agent .a-desc{font-size:10px;color:var(--dim);line-height:1.6}
.truth-facts{margin-top:24px;display:flex;flex-direction:column;gap:10px}
.t-fact{display:flex;gap:12px;align-items:flex-start;font-size:11px;color:var(--dim2);line-height:1.7}
.t-fact::before{content:'▸';color:var(--accent);flex-shrink:0}
.t-fact b{color:var(--fg);font-weight:500}

/* ── COACH ── */
.coach-wrap{display:grid;grid-template-columns:0.92fr 1.08fr;gap:56px;margin-top:56px;align-items:start}
@media(max-width:940px){.coach-wrap{grid-template-columns:1fr}}
.coach-feats{display:flex;flex-direction:column;gap:14px}
.cf{background:var(--panel);border:1px solid var(--line);padding:20px 24px;display:flex;gap:18px;align-items:flex-start}
.cf .cf-key{font-size:10px;font-weight:600;letter-spacing:1.5px;color:var(--accent2);padding-top:2px;min-width:78px}
.cf .cf-body{font-size:12px;color:var(--dim2);line-height:1.75}
.cf .cf-body b{color:var(--fg);font-weight:500}
.coach-rules{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
.rule{font-size:9px;letter-spacing:1.5px;color:var(--up);border:1px solid rgba(63,224,160,0.3);padding:5px 10px;text-transform:uppercase}
/* chat mock */
.chat{background:var(--panel);border:1px solid var(--line);overflow:hidden}
.chat-head{background:var(--panel2);border-bottom:1px solid var(--line);padding:12px 20px;font-size:9px;letter-spacing:2px;color:var(--dim);text-transform:uppercase;display:flex;justify-content:space-between}
.chat-head span{color:var(--up)}
.chat-body{padding:24px 20px;display:flex;flex-direction:column;gap:18px}
.msg{max-width:88%;font-size:11px;line-height:1.8}
.msg .m-who{font-size:9px;letter-spacing:1.5px;color:var(--dim);margin-bottom:6px;text-transform:uppercase}
.msg.user{align-self:flex-end;text-align:right}
.msg.user .m-bubble{background:rgba(86,182,255,0.08);border:1px solid rgba(86,182,255,0.25);padding:12px 16px;color:var(--fg);text-align:left}
.msg.coach .m-bubble{background:var(--panel2);border:1px solid var(--line);padding:14px 16px;color:var(--dim2)}
.msg.coach .m-bubble b{color:var(--fg);font-weight:500}
.msg.coach .m-bubble .neg{color:var(--down)}
.msg.coach .m-bubble .pos{color:var(--up)}
.msg.coach .m-bubble .amb{color:var(--accent)}
.verdicts{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap}
.verdict{font-size:9px;letter-spacing:1px;padding:4px 9px;font-weight:600}
.verdict.bad{color:var(--down);border:1px solid rgba(255,107,120,0.35)}
.verdict.good{color:var(--up);border:1px solid rgba(63,224,160,0.35)}
.verdict.warn{color:var(--accent);border:1px solid rgba(255,180,84,0.35)}

/* ── PROGRESS ── */
.prog-wrap{display:grid;grid-template-columns:1fr 1fr;gap:56px;margin-top:56px;align-items:center}
@media(max-width:900px){.prog-wrap{grid-template-columns:1fr}}
.prog-text p{color:var(--dim2);line-height:1.9;font-size:13px;margin-bottom:18px}
.prog-text p strong{color:var(--fg);font-weight:500}
.metric-panel{background:var(--panel);border:1px solid var(--line);padding:28px}
.metric-head{font-size:9px;letter-spacing:2px;color:var(--dim);text-transform:uppercase;margin-bottom:22px;display:flex;justify-content:space-between}
.metric-head span{color:var(--accent2)}
.metric{margin-bottom:20px}
.metric .m-row{display:flex;justify-content:space-between;font-size:11px;margin-bottom:7px}
.metric .m-name{color:var(--fg)}
.metric .m-val{color:var(--up);font-weight:600}
.metric .m-val.down-good{color:var(--up)}
.metric .m-val .from{color:var(--dim);font-weight:400;font-size:10px}
.m-bar{height:5px;background:var(--panel2);position:relative;overflow:hidden}
.m-bar i{position:absolute;left:0;top:0;bottom:0;background:linear-gradient(90deg,rgba(63,224,160,0.5),var(--up))}
.m-bar i.amber{background:linear-gradient(90deg,rgba(255,180,84,0.5),var(--accent))}
.metric-note{font-size:10px;color:var(--dim);line-height:1.7;border-top:1px solid var(--line);padding-top:16px;margin-top:4px}
.metric-note b{color:var(--accent)}

/* ── TOOLS ── */
.tool-group{margin-top:64px}
.tg-head{display:flex;align-items:center;gap:16px;margin-bottom:24px}
.tg-title{font-size:13px;font-weight:600;letter-spacing:2px;text-transform:uppercase}
.tg-title.live{color:var(--up)}
.tg-title.dev{color:var(--accent)}
.tg-title.next{color:var(--purple)}
.tg-line{flex:1;height:1px;background:var(--line)}
.tg-sub{font-size:11px;color:var(--dim);margin-bottom:24px;max-width:640px;line-height:1.7;margin-top:-12px}
.tools-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:14px}
.tool-card{background:var(--panel);border:1px solid var(--line);padding:22px;position:relative;transition:border-color .2s}
.tool-card:hover{border-color:rgba(86,182,255,0.25)}
.tool-card .tc-name{font-size:12px;font-weight:600;color:var(--fg);margin-bottom:8px;letter-spacing:0.5px;padding-right:48px}
.tool-card .tc-desc{font-size:11px;color:var(--dim2);line-height:1.7}
.tool-card.live::after{content:'LIVE';position:absolute;top:16px;right:16px;font-size:8px;letter-spacing:1.5px;color:var(--up);border:1px solid rgba(63,224,160,0.3);padding:2px 6px}
.tool-card.soon::after{content:'SOON';position:absolute;top:16px;right:16px;font-size:8px;letter-spacing:1.5px;color:var(--accent);border:1px solid rgba(255,180,84,0.3);padding:2px 6px}
.tool-card.next{border-color:rgba(192,132,252,0.18)}
.tool-card.next:hover{border-color:rgba(192,132,252,0.4)}
.tool-card.next::after{content:'FIRST ANYWHERE';position:absolute;top:16px;right:16px;font-size:8px;letter-spacing:1.5px;color:var(--purple);border:1px solid rgba(192,132,252,0.35);padding:2px 6px}
.tool-card.next .tc-name{color:var(--purple)}
.tool-card.next .tc-name{padding-right:96px}

/* ── 3D TOOL BOARDS ── desktop-only progressive enhancement. `html.tiles3d` is set in JS
   only for fine-pointer + motion-ok clients; touch / reduced-motion / no-JS keep the plain
   full-text cards untouched. Each grid becomes a tilted 3D board that sways and leans
   toward the cursor. Tiles are extruded slabs showing only the title + a faux price tick
   (the toolkit reads as one long ladder); a wave of light scans across the board; hovering
   a tile billboards it flat to the screen and unfolds its description brief in 3D. */
@property --brx{syntax:'<angle>';initial-value:15deg;inherits:true}
@property --bry{syntax:'<angle>';initial-value:-7deg;inherits:true}
.tiles3d .tool-group{position:relative;z-index:1;perspective:1500px;perspective-origin:50% 20%;
  --gc:rgba(63,224,160,.55);--gGlow:rgba(63,224,160,.15)}
.tiles3d .tool-group:has(.tool-card.soon){--gc:rgba(255,180,84,.55);--gGlow:rgba(255,180,84,.15)}
.tiles3d .tool-group:has(.tool-card.next){--gc:rgba(192,132,252,.6);--gGlow:rgba(192,132,252,.17)}
.tiles3d .tool-group:has(.tool-card:hover),.tiles3d .tool-group:has(.tool-card:focus-within),
.tiles3d .tool-group:has(.ng-node:hover),.tiles3d .tool-group:has(.ng-node:focus){z-index:80}
.tiles3d .tg-head::after{content:'HOVER A TILE';font-family:var(--mono);font-size:8px;font-weight:600;letter-spacing:2px;color:var(--faint)}
.tiles3d .tools-grid{grid-template-columns:repeat(auto-fill,minmax(196px,1fr));gap:16px;transform-style:preserve-3d;
  transform:rotateX(var(--brx)) rotateY(var(--bry));transition:--brx .4s ease,--bry .4s ease;
  animation:boardSway 12s ease-in-out infinite}
@keyframes boardSway{0%,100%{transform:rotateX(var(--brx)) rotateY(var(--bry)) translateZ(0)}
  50%{transform:rotateX(calc(var(--brx) + 2deg)) rotateY(calc(var(--bry) + 2.5deg)) translateZ(12px)}}
.tiles3d .tool-card{position:relative;z-index:1;min-height:58px;padding:0;display:flex;align-items:center;overflow:visible;cursor:default;
  background:linear-gradient(165deg,#1d2634 0%,#171f2b 55%,#141b26 100%);border:1px solid var(--line);transform-style:preserve-3d;
  box-shadow:3px 4px 0 #0a0f16,6px 8px 0 rgba(6,10,16,.55),14px 22px 34px rgba(0,0,0,.45);
  transition:transform .38s cubic-bezier(.2,.8,.25,1),box-shadow .38s ease,border-color .3s ease,background .3s ease}
.tiles3d .tool-card:focus{outline:none}
.tiles3d .tool-card:hover,.tiles3d .tool-card:focus-within{z-index:40;border-color:var(--gc);
  background:linear-gradient(165deg,#232e40,#1a2331);
  transform:rotateY(calc(var(--bry)*-1)) rotateX(calc(var(--brx)*-1)) translateZ(54px);
  box-shadow:0 30px 60px rgba(0,0,0,.6),0 0 0 1px var(--gc),0 0 36px var(--gGlow)}
/* faux price tick, top-right (set from JS) */
.tiles3d .tool-card::before{content:attr(data-px);position:absolute;top:5px;right:7px;font-family:var(--mono);font-size:8px;letter-spacing:.5px;color:var(--faint);pointer-events:none}
/* the scan-wave: a pulse of light travelling tile to tile (replaces the status pills —
   the group header + the popover kicker already carry the status) */
.tiles3d .tool-card::after{content:'';position:absolute;inset:-1px;border:1px solid var(--gc);
  box-shadow:inset 0 0 20px var(--gGlow),0 0 18px var(--gGlow);opacity:0;pointer-events:none;
  animation:tileWave 9s linear infinite;animation-delay:calc(var(--i,0)*.13s)}
@keyframes tileWave{0%,6%,100%{opacity:0}2.6%{opacity:1}}
.tiles3d .tool-card .tc-name{margin:0;width:100%;padding:16px 15px;display:flex;align-items:center;gap:10px;
  font-family:var(--disp);font-size:13px;font-weight:600;letter-spacing:.2px;line-height:1.3;color:var(--fg)}
.tiles3d .tool-card .tc-name::before{content:'';flex:0 0 7px;height:7px;border-radius:50%;background:var(--up);box-shadow:0 0 10px rgba(63,224,160,.7)}
.tiles3d .tool-card.soon .tc-name::before{background:var(--accent);box-shadow:0 0 10px rgba(255,180,84,.7)}
.tiles3d .tool-card.next .tc-name::before{background:var(--purple);box-shadow:0 0 10px rgba(192,132,252,.7)}
.tiles3d .tool-card.next .tc-name{color:#d8c3fa;padding-right:15px}
/* description = a 3D fold-out brief hanging beneath the billboarded tile */
.tiles3d .tool-card .tc-desc{position:absolute;left:50%;top:calc(100% + 14px);width:292px;z-index:5;
  background:linear-gradient(170deg,#202a3a,#161e2a);border:1px solid var(--gc);padding:13px 15px 14px;
  font-size:11.5px;line-height:1.66;color:#b9c4d4;box-shadow:0 34px 70px rgba(0,0,0,.65),0 0 26px var(--gGlow);
  opacity:0;pointer-events:none;transform-origin:top center;transform:translateX(-50%) rotateX(-102deg);
  transition:transform .5s cubic-bezier(.19,.86,.26,1),opacity .3s ease}
.tiles3d .tool-card:hover .tc-desc,.tiles3d .tool-card:focus-within .tc-desc{opacity:1;transform:translateX(-50%) rotateX(0deg)}
.tiles3d .tool-card .tc-desc::after{content:'';position:absolute;top:-5px;left:50%;width:8px;height:8px;background:#202a3a;border-left:1px solid var(--gc);border-top:1px solid var(--gc);transform:translateX(-50%) rotate(45deg)}
.tiles3d .tool-card .tc-desc::before{content:'● LIVE NOW';display:block;font-family:var(--mono);font-size:8px;font-weight:600;letter-spacing:2px;color:var(--up);margin-bottom:7px}
.tiles3d .tool-card.soon .tc-desc::before{content:'◆ IN DEVELOPMENT';color:var(--accent)}
.tiles3d .tool-card.next .tc-desc::before{content:'◈ FIRST ANYWHERE';color:var(--purple)}

/* ── CONCEPTS STRIP → SIGNAL LADDER ── the 13 reads become an order book: asks stacked
   over bids around a labelled spread. Each level: price · signal · breathing depth bar;
   hovering a level fills it and slides the read's description in over the bar. */
.tiles3d .of-lhead{display:flex;align-items:center;gap:16px;margin:72px auto 0;max-width:920px;
  font-family:var(--mono);font-size:13px;font-weight:600;letter-spacing:2px;color:var(--accent2);text-transform:uppercase}
.tiles3d .of-lhead span{font-family:var(--sans);font-size:10.5px;font-weight:400;letter-spacing:.3px;color:var(--dim);text-transform:none}
.tiles3d .of-lhead::after{content:'';flex:1;height:1px;background:var(--line)}
.tiles3d .of-list{display:block;max-width:920px;margin:22px auto 0;border:1px solid var(--line);background:rgba(20,26,36,.55);
  transform:perspective(1300px) rotateX(7deg);transform-origin:50% 0;transform-style:preserve-3d}
.tiles3d .of-item{position:relative;display:flex;align-items:center;gap:12px;margin:0;padding:9px 16px;background:transparent;
  border:1px solid transparent;border-bottom:1px solid rgba(44,55,71,.45);cursor:default;
  transition:background .25s ease,transform .3s ease,border-color .25s ease}
.tiles3d .of-item:last-child{border-bottom-color:transparent}
.tiles3d .of-item:focus{outline:none}
.tiles3d .of-item::before{content:attr(data-px);flex:0 0 56px;font-family:var(--mono);font-size:10px;letter-spacing:.5px;color:var(--dim2)}
.tiles3d .of-item.ask::before{color:rgba(255,107,120,.8)}
.tiles3d .of-item.bid::before{color:rgba(63,224,160,.8)}
.tiles3d .of-item .of-dot{margin-top:0}
.tiles3d .of-item.ask .of-dot{background:var(--down);animation:none;box-shadow:0 0 8px rgba(255,107,120,.5)}
.tiles3d .of-item.bid .of-dot{box-shadow:0 0 8px rgba(63,224,160,.5)}
.tiles3d .of-text{flex:0 0 auto;max-width:300px}
.tiles3d .of-text .of-name{font-family:var(--mono);font-size:11px;letter-spacing:.3px;margin:0}
.tiles3d .of-text .of-desc{position:absolute;right:16px;top:50%;transform:translateY(-50%);max-width:44%;text-align:right;
  font-size:10.5px;line-height:1.5;color:var(--dim);opacity:0;pointer-events:none;transition:opacity .28s ease .04s}
/* breathing depth bar */
.tiles3d .of-item::after{content:'';position:absolute;right:16px;top:50%;height:8px;width:var(--w,110px);
  background:linear-gradient(270deg,rgba(63,224,160,.5),rgba(63,224,160,.05));transform-origin:right center;
  transform:translateY(-50%);animation:ladderPulse 5.5s ease-in-out infinite;animation-delay:calc(var(--i,0)*-.65s);transition:opacity .25s ease}
.tiles3d .of-item.ask::after{background:linear-gradient(270deg,rgba(255,107,120,.5),rgba(255,107,120,.05))}
@keyframes ladderPulse{0%,100%{transform:translateY(-50%) scaleX(.5)}50%{transform:translateY(-50%) scaleX(1)}}
.tiles3d .of-item:hover,.tiles3d .of-item:focus-within{transform:translateZ(24px);z-index:5}
.tiles3d .of-item.ask:hover,.tiles3d .of-item.ask:focus-within{background:rgba(255,107,120,.06);border-color:rgba(255,107,120,.35)}
.tiles3d .of-item.bid:hover,.tiles3d .of-item.bid:focus-within{background:rgba(63,224,160,.06);border-color:rgba(63,224,160,.35)}
.tiles3d .of-item:hover::after,.tiles3d .of-item:focus-within::after{opacity:.12}
.tiles3d .of-item:hover .of-desc,.tiles3d .of-item:focus-within .of-desc{opacity:1}
.tiles3d .of-spread{display:flex;align-items:center;gap:14px;padding:8px 16px;font-family:var(--mono);font-size:9px;letter-spacing:2.5px;color:var(--accent);text-transform:uppercase}
.tiles3d .of-spread::before,.tiles3d .of-spread::after{content:'';flex:1;height:1px;background:linear-gradient(90deg,transparent,rgba(255,180,84,.55),transparent)}

/* ── LIVE TODAY → MIRRORED VOLUME PROFILE ── the 26 live tools become a two-sided volume
   profile around a center price axis: bid bars grow left, ask bars grow right, widths form
   a bell with a real POC / VAH / VAL. JS classes the group .g-live. Hovering a bar surges
   it to full width and unfolds its brief beside the axis. */
.tiles3d .g-live .tg-head::after{content:'HOVER A BAR'}
.tiles3d .g-live .tools-grid{grid-template-columns:1fr 76px 1fr;gap:4px 0;grid-auto-rows:34px;animation:none;
  transform:perspective(1400px) rotateX(calc(var(--brx) * .35)) rotateY(calc(var(--bry) * .6));
  background:linear-gradient(90deg,transparent calc(50% - 1px),rgba(86,182,255,.28) calc(50% - 1px),rgba(86,182,255,.28) calc(50% + 1px),transparent calc(50% + 1px))}
.tiles3d .g-live .prof-head{font-family:var(--mono);font-size:8px;letter-spacing:2px;color:var(--dim2);text-transform:uppercase;align-self:end;padding-bottom:4px}
.tiles3d .g-live .prof-head.l{grid-column:1;text-align:right;padding-right:14px}
.tiles3d .g-live .prof-head.r{grid-column:3;text-align:left;padding-left:14px}
.tiles3d .g-live .tool-card{height:100%;min-height:0;padding:0;display:flex;align-items:center;background:transparent;border:0;box-shadow:none;
  transition:transform .3s ease,background .25s ease}
.tiles3d .g-live .tool-card:nth-child(odd){grid-column:1;justify-content:flex-end}
.tiles3d .g-live .tool-card:nth-child(even){grid-column:3;justify-content:flex-start}
.tiles3d .g-live .tool-card.vah,.tiles3d .g-live .tool-card.val{border-top:1px dashed rgba(86,182,255,.3)}
/* the volume bar (repurposes the scan-wave layer): anchored at the axis, length --w from JS */
.tiles3d .g-live .tool-card::after{inset:3px 0;border:0;box-shadow:none;opacity:1;animation:heatFlicker 5s ease-in-out infinite;animation-delay:calc(var(--i,0)*-.45s);
  background:linear-gradient(270deg,rgba(63,224,160,.4),rgba(63,224,160,.04));background-repeat:no-repeat;background-position:right center;background-size:var(--w,60%) 100%;
  transition:background-size .35s ease,filter .3s ease}
.tiles3d .g-live .tool-card:nth-child(even)::after{background-image:linear-gradient(90deg,rgba(255,107,120,.4),rgba(255,107,120,.04));background-position:left center}
.tiles3d .g-live .tool-card.poc::after{background-image:linear-gradient(270deg,rgba(63,224,160,.62),rgba(63,224,160,.07))}
.tiles3d .g-live .tool-card.poc:nth-child(even)::after{background-image:linear-gradient(90deg,rgba(255,107,120,.62),rgba(255,107,120,.07))}
@keyframes heatFlicker{0%,100%{filter:brightness(.85)}50%{filter:brightness(1.25)}}
/* axis price on the left tile of each row; the slab price tick is retired here */
.tiles3d .g-live .tool-card:nth-child(odd)::before{top:50%;right:-76px;width:76px;transform:translateY(-50%);text-align:center;font-size:9px;color:var(--dim2)}
.tiles3d .g-live .tool-card:nth-child(even)::before{display:none}
.tiles3d .g-live .tool-card .tc-name{display:block;width:auto;padding:0 14px;font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.3px;color:var(--fg);position:relative;z-index:2}
.tiles3d .g-live .tool-card .tc-name::before{display:none}
.tiles3d .g-live .tool-card.poc:nth-child(odd) .tc-name::after,
.tiles3d .g-live .tool-card.vah:nth-child(odd) .tc-name::after,
.tiles3d .g-live .tool-card.val:nth-child(odd) .tc-name::after{font-family:var(--mono);font-size:8px;letter-spacing:1px;padding:1px 5px;border:1px solid;margin-left:8px;vertical-align:1px}
.tiles3d .g-live .tool-card.poc:nth-child(odd) .tc-name::after{content:'POC';color:var(--accent);border-color:rgba(255,180,84,.45)}
.tiles3d .g-live .tool-card.vah:nth-child(odd) .tc-name::after{content:'VAH';color:var(--accent2);border-color:rgba(86,182,255,.4)}
.tiles3d .g-live .tool-card.val:nth-child(odd) .tc-name::after{content:'VAL';color:var(--accent2);border-color:rgba(86,182,255,.4)}
.tiles3d .g-live .tool-card:hover,.tiles3d .g-live .tool-card:focus-within{z-index:40;border-color:transparent;box-shadow:none;transform:translateZ(30px)}
.tiles3d .g-live .tool-card:nth-child(odd):hover,.tiles3d .g-live .tool-card:nth-child(odd):focus-within{background:rgba(63,224,160,.05)}
.tiles3d .g-live .tool-card:nth-child(even):hover,.tiles3d .g-live .tool-card:nth-child(even):focus-within{background:rgba(255,107,120,.05)}
.tiles3d .g-live .tool-card:hover::after,.tiles3d .g-live .tool-card:focus-within::after{animation:none;background-size:100% 100%;filter:brightness(1.35)}
.tiles3d .g-live .tool-card:hover .tc-name,.tiles3d .g-live .tool-card:focus-within .tc-name{color:#fff}
.tiles3d .g-live .tool-card .tc-desc{left:auto;right:6px;width:330px;top:calc(100% + 6px);transform:rotateX(-102deg)}
.tiles3d .g-live .tool-card:nth-child(even) .tc-desc{right:auto;left:6px;border-color:rgba(255,107,120,.5)}
.tiles3d .g-live .tool-card:hover .tc-desc,.tiles3d .g-live .tool-card:focus-within .tc-desc{transform:rotateX(0)}
.tiles3d .g-live .tool-card .tc-desc::after{left:auto;right:26px;transform:rotate(45deg)}
.tiles3d .g-live .tool-card:nth-child(even) .tc-desc::after{right:auto;left:26px;border-color:rgba(255,107,120,.5)}

/* ── THE NEW GENERATION → PRICE DISCOVERY ── the 8 next-gen reads print as a rally in
   uncharted territory: a dashed TODAY line marks the last price any platform has traded
   (4394.50, where the live profile's axis ends); these candles climb above it, purple and
   glowing, the last one still forming. Hover a candle to pop it forward and unfold its
   brief. The flat grid stays in the DOM for SR / non-3D clients. */
.tiles3d .g-next .tg-head::after{content:'HOVER A CANDLE'}
.tiles3d .g-next .tools-grid{display:none}
.tiles3d .ngc-scene{position:relative;height:500px;margin-top:10px;perspective:1400px}
.tiles3d .ngc-tilt{position:absolute;inset:0;transform-style:preserve-3d;
  transform:rotateX(calc(var(--brx) * .3)) rotateY(calc(var(--bry) * .55))}
.tiles3d .ngc-panel{position:absolute;inset:0;border:1px solid var(--line);background:
  linear-gradient(180deg,rgba(192,132,252,.05),transparent 40%),
  repeating-linear-gradient(180deg,rgba(255,255,255,.03) 0 1px,transparent 1px 62px),
  rgba(20,26,36,.5)}
.tiles3d .ngc-cap{position:absolute;top:12px;left:16px;font-family:var(--mono);font-size:9px;letter-spacing:2px;color:var(--purple);text-transform:uppercase}
.tiles3d .ngc-cap span{color:var(--dim2);letter-spacing:.5px;text-transform:none;margin-left:10px}
.tiles3d .ngc-ax{position:absolute;right:10px;transform:translateY(50%);font-family:var(--mono);font-size:9px;color:var(--faint)}
.tiles3d .ngc-today{position:absolute;left:0;right:0;height:0;border-top:1px dashed rgba(255,180,84,.45)}
.tiles3d .ngc-today i{position:absolute;right:10px;top:-16px;font-style:normal;font-family:var(--mono);font-size:8px;letter-spacing:1.5px;color:var(--accent)}
.tiles3d .ngc-vol{position:absolute;bottom:8px;width:26px;transform:translateX(-50%);
  background:linear-gradient(180deg,rgba(192,132,252,.45),rgba(192,132,252,.1))}
.tiles3d .ng-node{position:absolute;width:132px;transform:translateX(-50%);cursor:default;perspective:600px;
  display:flex;flex-direction:column;align-items:center;transition:transform .3s ease}
.tiles3d .ngc-tag{font-family:var(--mono);font-size:8px;letter-spacing:1.5px;color:var(--purple);margin-bottom:6px;animation:blink 1.6s ease-in-out infinite}
.tiles3d .ngc-cw{position:relative}
.tiles3d .ngc-wick{position:absolute;left:50%;top:-14px;bottom:-12px;width:2px;transform:translateX(-50%);
  background:linear-gradient(180deg,rgba(216,195,250,.8),rgba(192,132,252,.2));box-shadow:0 0 8px rgba(192,132,252,.4)}
.tiles3d .ngc-body{position:relative;width:18px;border:1px solid rgba(216,195,250,.5);
  background:linear-gradient(180deg,#d8c3fa,#8b5cf6 45%,#4c2a80);
  box-shadow:0 0 16px rgba(192,132,252,.35),inset 0 0 6px rgba(255,255,255,.18);
  animation:ngcFlicker 4s ease-in-out infinite;animation-delay:calc(var(--i,0)*-.55s)}
@keyframes ngcFlicker{0%,100%{filter:brightness(.88)}50%{filter:brightness(1.2)}}
.tiles3d .ng-node.ngc-last .ngc-body{transform-origin:bottom center;
  animation:ngcFlicker 4s ease-in-out infinite,ngcForm 2.6s ease-in-out infinite}
@keyframes ngcForm{0%,100%{transform:scaleY(.78)}55%{transform:scaleY(1)}}
.tiles3d .ngc-lbl{margin-top:8px;text-align:center;font-family:var(--disp);font-size:11.5px;font-weight:600;letter-spacing:.2px;color:#d8c3fa;line-height:1.25}
.tiles3d .ng-node:hover,.tiles3d .ng-node:focus{outline:none;transform:translateX(-50%) translateZ(44px)}
.tiles3d .ng-node:hover .ngc-body,.tiles3d .ng-node:focus .ngc-body{animation:none;filter:brightness(1.4);border-color:rgba(230,214,255,.85);
  box-shadow:0 0 26px rgba(192,132,252,.55),inset 0 0 8px rgba(255,255,255,.3)}
.tiles3d .ng-node:hover .ngc-lbl,.tiles3d .ng-node:focus .ngc-lbl{color:#efe6ff}
.tiles3d .ng-brief{position:absolute;left:50%;top:calc(100% + 12px);width:264px;white-space:normal;transform:translateX(-50%) rotateX(-102deg);transform-origin:top center;
  opacity:0;pointer-events:none;background:linear-gradient(170deg,#241b38,#171226);border:1px solid rgba(192,132,252,.55);
  padding:12px 14px 13px;font-family:var(--sans);font-size:11.5px;font-weight:400;line-height:1.6;letter-spacing:0;color:#c9c3da;
  box-shadow:0 30px 60px rgba(0,0,0,.65),0 0 26px rgba(192,132,252,.18);transition:transform .45s cubic-bezier(.19,.86,.26,1),opacity .3s ease}
.tiles3d .ng-node:hover .ng-brief,.tiles3d .ng-node:focus .ng-brief{opacity:1;transform:translateX(-50%) rotateX(0)}
.tiles3d .ng-brief::before{content:'◈ FIRST ANYWHERE';display:block;font-family:var(--mono);font-size:8px;font-weight:600;letter-spacing:2px;color:var(--purple);margin-bottom:6px}

/* ── MOBILE TOOL LADDERS ── the complement of tiles3d: clients that didn't get the 3D
   boards (touch, reduced-motion) collapse the toolkit to the same "titles first" idea as
   tap-to-expand ladder rows — html.tilesm is set in JS, so no-JS keeps the full cards. */
.tilesm .tool-group{--gc:var(--up);--gTint:rgba(63,224,160,.05);--gGlow:rgba(63,224,160,.55)}
.tilesm .tool-group.g-soon{--gc:var(--accent);--gTint:rgba(255,180,84,.05);--gGlow:rgba(255,180,84,.55)}
.tilesm .tool-group.g-next{--gc:var(--purple);--gTint:rgba(192,132,252,.06);--gGlow:rgba(192,132,252,.55)}
.tilesm .tg-head::after{content:'TAP A TOOL';font-family:var(--mono);font-size:8px;font-weight:600;letter-spacing:2px;color:var(--faint)}
.tilesm .tools-grid{display:block;border:1px solid var(--line);background:rgba(20,26,36,.55)}
.tilesm .tool-card{padding:0;border:none;border-bottom:1px solid rgba(44,55,71,.65);background:transparent;cursor:pointer;-webkit-tap-highlight-color:transparent}
.tilesm .tool-card:last-child{border-bottom:none}
.tilesm .tool-card:hover{transform:none;box-shadow:none;border-color:rgba(44,55,71,.65)}
.tilesm .tool-card:focus{outline:none}
.tilesm .tool-card:focus-visible{outline:1px solid var(--gc);outline-offset:-1px}
.tilesm .tool-card::after{display:none}  /* per-row LIVE/SOON badges: the group header already says it */
.tilesm .tool-card .tc-name,.tilesm .tool-card.next .tc-name{display:flex;align-items:center;gap:10px;margin:0;padding:13px 40px 13px 14px;position:relative;font-size:12px;letter-spacing:.4px}
.tilesm .tool-card .tc-name::before{content:'';flex:0 0 7px;height:7px;border-radius:50%;background:var(--gc);box-shadow:0 0 9px var(--gGlow)}
.tilesm .tool-card .tc-name::after{content:'+';position:absolute;right:14px;top:50%;margin-top:-9px;width:18px;height:18px;line-height:18px;text-align:center;font-family:var(--mono);font-size:14px;color:var(--faint);transition:transform .25s ease,color .25s ease}
.tilesm .tool-card.open .tc-name::after{transform:rotate(45deg);color:var(--gc)}
.tilesm .tool-card .tc-desc{max-height:0;opacity:0;overflow:hidden;padding:0 16px 0 31px;transition:max-height .35s ease,opacity .28s ease,padding-bottom .35s ease}
.tilesm .tool-card.open{background:var(--gTint);box-shadow:inset 2px 0 0 var(--gc)}
.tilesm .tool-card.open .tc-desc{max-height:400px;opacity:1;padding-bottom:15px}
.tilesm .of-list{display:block;margin-top:48px;border:1px solid var(--line);background:rgba(20,26,36,.55)}
.tilesm .of-mhead{margin-top:64px;margin-bottom:0}
.tilesm .of-mhead::after{content:'TAP A SIGNAL'}
.tilesm .of-mhead+.of-list{margin-top:22px}
.tilesm .of-item{padding:12px 40px 12px 14px;border:none;border-bottom:1px solid rgba(44,55,71,.65);background:transparent;position:relative;cursor:pointer;-webkit-tap-highlight-color:transparent}
.tilesm .of-item:last-child{border-bottom:none}
.tilesm .of-item:hover{transform:none;box-shadow:none}
.tilesm .of-item:focus{outline:none}
.tilesm .of-item:focus-visible{outline:1px solid var(--up);outline-offset:-1px}
.tilesm .of-dot{margin-top:4px;box-shadow:0 0 8px rgba(63,224,160,.5)}
.tilesm .of-item::after{content:'+';position:absolute;right:14px;top:50%;margin-top:-9px;width:18px;height:18px;line-height:18px;text-align:center;font-family:var(--mono);font-size:14px;color:var(--faint);transition:transform .25s ease,color .25s ease}
.tilesm .of-item.open{background:rgba(63,224,160,.04);box-shadow:inset 2px 0 0 var(--up)}
.tilesm .of-item.open::after{transform:rotate(45deg);color:var(--up)}
.tilesm .of-text .of-desc{max-height:0;opacity:0;overflow:hidden;transition:max-height .3s ease,opacity .25s ease,margin-top .3s ease}
.tilesm .of-item.open .of-desc{max-height:120px;opacity:1;margin-top:5px}
/* small screens: tighter section chrome + nav that fits a phone */
@media(max-width:600px){
  section{padding:72px 18px}
  .compare-kicker{padding:34px 22px}
  .pricing-card{padding:36px 24px}
  nav{padding:0 16px}
  .nav-logo{font-size:13px;letter-spacing:1.5px}
  .nav-cta{padding:7px 14px;font-size:10px;letter-spacing:1px}
}

/* ── MULTI-CHART WORKSPACE MOCK (3D) ── */
.ws-stage{max-width:960px;margin:0 auto 8px;perspective:1600px;perspective-origin:50% 38%;animation:wsFloat 9s ease-in-out infinite}
@keyframes wsFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}
.ws-mock{background:var(--panel);border:1px solid var(--line);box-shadow:-14px 26px 60px rgba(0,0,0,.5);overflow:hidden;transform-style:preserve-3d;transform:rotateX(var(--wrx,5deg)) rotateY(var(--wry,-6deg));transition:transform .3s ease;will-change:transform}
.ws-bar{display:flex;align-items:center;gap:14px;padding:11px 16px;background:var(--panel2);border-bottom:1px solid var(--line)}
.ws-dots{display:flex;gap:6px}
.ws-dots span{width:9px;height:9px;border-radius:50%;background:var(--line)}
.ws-dots span:nth-child(1){background:rgba(255,107,120,.6)}
.ws-dots span:nth-child(2){background:rgba(255,180,84,.6)}
.ws-dots span:nth-child(3){background:rgba(63,224,160,.6)}
.ws-title{font-family:var(--mono);font-size:10px;letter-spacing:1.5px;color:var(--dim);text-transform:uppercase}
.ws-title b{color:var(--fg);font-weight:600}
.ws-bar-right{margin-left:auto;display:flex;align-items:center;gap:9px}
.ws-tag{font-family:var(--mono);font-size:8px;letter-spacing:1.5px;color:var(--accent);border:1px solid rgba(255,180,84,.3);padding:2px 7px}
.ws-save{font-family:var(--mono);font-size:8px;letter-spacing:1.5px;color:var(--up);border:1px solid rgba(63,224,160,.3);padding:2px 7px}
.ws-body{display:flex;height:340px}
.ws-col{flex:1;display:flex;flex-direction:column;min-width:0}
.ws-col.wide{flex:1.35}
.ws-pane{flex:1;display:flex;flex-direction:column;min-height:0}
.ws-phead{display:flex;align-items:center;gap:8px;padding:6px 10px;font-family:var(--mono);font-size:9px;letter-spacing:1px;border-bottom:1px solid var(--line);background:rgba(255,255,255,.015)}
.ws-sym{color:var(--fg);font-weight:600}
.ws-tf{color:var(--ink);background:var(--accent);padding:1px 6px;font-weight:600;font-size:8px}
.ws-tool{margin-left:auto;font-family:var(--mono);font-size:8px;letter-spacing:1px;color:var(--accent2);border:1px solid rgba(86,182,255,.28);padding:1px 6px}
.ws-chart{flex:1;display:flex;min-height:0;background:var(--bg)}
.ws-main{flex:1;position:relative;min-width:0}
.ws-cv{position:absolute;inset:0;width:100%;height:100%}
.ws-cob{flex:0 0 38px;position:relative;border-left:1px solid var(--line);background:var(--panel)}
.ws-cob-cv{position:absolute;inset:0;width:100%;height:100%}
.ws-div{background:var(--line);position:relative;flex:0 0 4px;transition:background .15s}
.ws-div::after{content:'';position:absolute;background:var(--dim2);border-radius:2px}
.ws-div-h{cursor:row-resize}
.ws-div-h::after{left:50%;top:50%;transform:translate(-50%,-50%);width:24px;height:2px}
.ws-div-v{cursor:col-resize}
.ws-div-v::after{left:50%;top:50%;transform:translate(-50%,-50%);width:2px;height:24px}
.ws-div:hover{background:var(--accent)}
.ws-cap{padding:14px 18px;font-size:11px;color:var(--dim);line-height:1.7;border-top:1px solid var(--line);background:var(--panel)}
.ws-cap b{color:var(--fg);font-weight:500}
@media(max-width:760px){
  .ws-stage{perspective:none;animation:none}
  .ws-mock{transform:none}
  .ws-body{height:auto;flex-direction:column}
  .ws-col,.ws-col.wide{flex:1}
  .ws-pane{height:148px}
  .ws-div-v{display:none}
  .ws-body>.ws-col:first-child{border-bottom:4px solid var(--line)}
}

/* ── CONCEPTS STRIP ── */
.of-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:12px;margin-top:48px}
.of-item{background:var(--panel);border:1px solid var(--line);padding:16px 20px;display:flex;align-items:flex-start;gap:12px}
.of-dot{width:6px;height:6px;border-radius:50%;background:var(--up);margin-top:5px;flex-shrink:0}
.of-item.soon .of-dot{background:var(--accent)}
.of-text .of-name{font-size:11px;font-weight:600;color:var(--fg);margin-bottom:2px}
.of-text .of-desc{font-size:10px;color:var(--dim);line-height:1.5}

/* ── PATH ── */
.path-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:64px;position:relative}
@media(max-width:860px){.path-grid{grid-template-columns:1fr}}
.path-step{background:var(--panel);border:1px solid var(--line);padding:32px 28px;position:relative}
.path-step .ps-num{font-size:36px;font-weight:600;color:var(--line);line-height:1;margin-bottom:18px}
.path-step .ps-title{font-size:15px;font-weight:600;color:var(--fg);margin-bottom:6px;letter-spacing:1px}
.path-step .ps-where{font-size:9px;letter-spacing:1.5px;color:var(--accent2);text-transform:uppercase;margin-bottom:16px}
.path-step .ps-desc{font-size:12px;color:var(--dim2);line-height:1.8}
.path-step .ps-desc b{color:var(--fg);font-weight:500}
.path-quote{margin-top:40px;text-align:center;font-size:clamp(13px,1.8vw,16px);color:var(--fg);line-height:1.8;max-width:760px;margin-left:auto;margin-right:auto}
.path-quote span{color:var(--accent)}

/* ── COMPARE ── */
.compare-wrap{margin-top:48px}
.compare-table{border:1px solid var(--line);overflow:hidden}
.compare-row{display:grid;grid-template-columns:1.7fr 1fr 1fr 1.1fr 0.8fr;border-bottom:1px solid var(--line)}
.compare-row:last-child{border-bottom:none}
.compare-head-row{background:var(--panel2)}
.compare-head{padding:12px 16px;font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:var(--dim)}
.compare-head:not(:first-child){border-left:1px solid var(--line)}
.compare-cell{padding:15px 16px;font-size:12px;color:var(--fg);border-left:1px solid var(--line);display:flex;align-items:center}
.compare-cell:first-child{border-left:none;font-weight:500}
.compare-row.nox-row{background:rgba(255,180,84,0.04);outline:1px solid rgba(255,180,84,0.25);outline-offset:-1px}
.compare-row.nox-row .compare-cell:first-child{display:flex;align-items:center;gap:10px;font-weight:600}
.nox-badge{font-size:8px;letter-spacing:1.5px;padding:2px 6px;background:rgba(255,180,84,0.12);color:var(--accent);border:1px solid rgba(255,180,84,0.3);white-space:nowrap}
.price-bad{color:var(--down)}
.price-mid{color:var(--accent)}
.price-good{color:var(--up);font-weight:600}
.x-mark{color:var(--down);font-weight:600}
.check-mark{color:var(--up);font-weight:600}
.compare-note{font-size:10px;color:var(--dim);margin-top:12px;line-height:1.7}
@media(max-width:760px){
  .compare-row{grid-template-columns:1.4fr 0.9fr 1fr 0.7fr}
  .compare-row .compare-cell:nth-child(2),.compare-row .compare-head:nth-child(2){display:none}
  .compare-cell,.compare-head{padding:12px 10px;font-size:10px}
}
.compare-kicker{margin-top:48px;padding:44px 48px;background:var(--panel);border:1px solid var(--line);text-align:center}
.compare-kicker .ck-big{font-size:clamp(15px,2.2vw,20px);color:var(--fg);line-height:1.7;max-width:720px;margin:0 auto 10px}
.compare-kicker .ck-big span{color:var(--accent)}
.compare-kicker .ck-sub{font-size:12px;color:var(--dim2);max-width:560px;margin:0 auto;line-height:1.8}

/* ── PRICING ── */
.pricing-card{max-width:520px;margin:48px auto 0;background:var(--panel);border:1px solid rgba(255,180,84,0.25);padding:44px;text-align:center;position:relative}
.price-tag{font-size:clamp(44px,8vw,60px);font-weight:700;color:var(--fg);letter-spacing:-2.4px;margin:16px 0 4px}
.price-tag span{font-size:20px;color:var(--dim2)}
.price-sub{font-size:11px;color:var(--dim);margin-bottom:32px}
.price-features{list-style:none;text-align:left;margin-bottom:32px;display:flex;flex-direction:column;gap:11px}
.price-features li{font-size:12px;color:var(--dim2);display:flex;align-items:flex-start;gap:10px;line-height:1.6}
.price-features li::before{content:'✓';color:var(--accent);font-weight:600;flex-shrink:0}
.price-features li b{color:var(--fg);font-weight:500}
.price-features li.soon-feat::before{content:'◇';color:var(--accent2)}
.price-note{font-size:10px;color:var(--dim);margin-top:16px;letter-spacing:0.5px;line-height:1.8}

/* ── FAQ ── */
.faq-list{max-width:780px;margin:48px auto 0;display:flex;flex-direction:column;gap:10px}
.faq-item{background:var(--panel);border:1px solid var(--line)}
.faq-item summary{padding:20px 24px;font-size:13px;font-weight:500;color:var(--fg);cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';color:var(--accent);font-size:18px;flex-shrink:0;transition:transform .2s}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item .faq-body{padding:0 24px 22px;font-size:12px;color:var(--dim2);line-height:1.85}
.faq-item .faq-body b{color:var(--fg);font-weight:500}
.faq-item .faq-body .hl{color:var(--accent)}

/* ── FINAL CTA ── */
.final-cta{padding:110px 24px;text-align:center;position:relative;overflow:hidden}
.final-cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 70% at 50% 50%,rgba(255,180,84,0.06) 0%,transparent 70%);pointer-events:none}
.final-cta h2{font-size:clamp(30px,4.6vw,54px);font-weight:700;line-height:1.16;margin-bottom:20px;letter-spacing:-0.8px}
.final-cta h2 span{color:var(--accent)}
.final-cta p{font-size:15px;color:var(--dim2);margin-bottom:38px;line-height:1.8}

/* ── FOOTER ── */
footer{padding:48px 24px;border-top:1px solid var(--line);text-align:center}
footer p{font-size:11px;color:var(--dim);letter-spacing:1px}
footer .f-logo{font-size:16px;font-weight:600;letter-spacing:2px;margin-bottom:12px;color:var(--fg)}
footer .f-logo span{color:var(--accent)}

/* ════════════════ MOTION ════════════════ */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes glowDrift{0%{transform:translate(0,0) scale(1);opacity:.85}50%{transform:translate(2.5%,2%) scale(1.1);opacity:1}100%{transform:translate(0,0) scale(1);opacity:.85}}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.32}}
@keyframes pulseDot{0%{box-shadow:0 0 0 0 rgba(63,224,160,.45)}70%{box-shadow:0 0 0 7px rgba(63,224,160,0)}100%{box-shadow:0 0 0 0 rgba(63,224,160,0)}}
@keyframes coachGlow{0%,100%{box-shadow:0 16px 48px rgba(0,0,0,.5),0 0 0 0 rgba(255,180,84,0)}50%{box-shadow:0 16px 48px rgba(0,0,0,.5),0 0 24px 0 rgba(255,180,84,.2)}}
@keyframes shimmer{0%{transform:translateX(-130%)}100%{transform:translateX(240%)}}
@keyframes barGrow{from{transform:scaleX(0)}to{transform:scaleX(1)}}

/* hero entrance, staggered fade-up */
.hero-tag{animation:fadeUp .7s ease both .05s}
.hero h1{animation:fadeUp .7s ease both .16s}
.hero-sub{animation:fadeUp .7s ease both .3s}
.hero-actions{animation:fadeUp .7s ease both .44s}
.hero-chips{animation:fadeUp .7s ease both .56s}
/* drifting background glow in the hero + final CTA (subtle, no bright colour) */
.hero::before{animation:glowDrift 18s ease-in-out infinite}
.final-cta::before{animation:glowDrift 20s ease-in-out infinite}
/* ── 3D HERO ── the footprint card sits in space, gently floats, tilts to cursor ── */
.hero-inner{position:relative;z-index:2}
.hero-visual{justify-self:end;width:100%;max-width:420px;perspective:1100px;animation:float3d 8s ease-in-out 1.4s infinite}
.fp-mock{transform-style:preserve-3d;transform:rotateY(var(--ry,-10deg)) rotateX(var(--rx,6deg));transition:transform .3s ease;animation:fadeIn 1s ease both .35s;box-shadow:-22px 26px 60px rgba(0,0,0,.5)}
.coach-bubble{transform:translateZ(48px);animation:coachGlow 4.5s ease-in-out infinite}
@keyframes float3d{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@media(max-width:960px){.hero-visual{justify-self:start;perspective:none;animation:none}.fp-mock{transform:none}.coach-bubble{transform:none}}
/* receding grid floor, adds depth under the hero */
.hero::after{content:'';position:absolute;left:-10%;right:-10%;bottom:0;height:46%;z-index:0;pointer-events:none;
  background-image:linear-gradient(rgba(86,182,255,.10) 1px,transparent 1px),linear-gradient(90deg,rgba(86,182,255,.09) 1px,transparent 1px);
  background-size:46px 46px;transform:perspective(440px) rotateX(60deg);transform-origin:bottom center;
  -webkit-mask-image:linear-gradient(to top,#000,transparent 80%);mask-image:linear-gradient(to top,#000,transparent 80%);
  animation:gridScroll 5.5s linear infinite}
@keyframes gridScroll{from{background-position:0 0}to{background-position:0 46px}}
/* feature cards get true 3D depth on hover (tilt wired in JS) */
.tool-card,.env-card,.prob-card,.path-step{transform-style:preserve-3d;will-change:transform}
/* live indicators */
.live-dot{display:inline-block;animation:blink 1.6s ease-in-out infinite}
.of-dot{animation:pulseDot 2.6s ease-in-out infinite}

/* card hover lift (adds to existing border-colour hovers) */
.env-card,.tool-card,.prob-card,.path-step,.agent,.cf,.of-item,.metric-panel,.pricing-card{transition:border-color .25s ease,transform .25s ease,box-shadow .25s ease}
.env-card:hover,.tool-card:hover,.prob-card:hover,.path-step:hover,.agent:hover,.cf:hover,.of-item:hover{transform:translateY(-3px);box-shadow:0 16px 38px rgba(0,0,0,.38)}
/* button hover lift + glow */
.btn-primary,.nav-cta{transition:opacity .2s ease,transform .2s ease,box-shadow .2s ease}
.btn-primary:hover,.nav-cta:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(255,180,84,.24)}
.btn-outline{transition:border-color .2s ease,color .2s ease,transform .2s ease}
.btn-outline:hover{transform:translateY(-2px)}
/* animated nav underline */
.nav-links a{position:relative}
.nav-links a::after{content:'';position:absolute;left:0;right:100%;bottom:-6px;height:1px;background:var(--accent);transition:right .25s ease}
.nav-links a:hover::after{right:0}

/* metric bars grow + shimmer once their section reveals */
.m-bar i{transform-origin:left center;transform:scaleX(0)}
.reveal.in .m-bar i{animation:barGrow 1.1s cubic-bezier(.2,.8,.2,1) forwards .15s}
.m-bar::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(255,255,255,.09),transparent);transform:translateX(-130%)}
.reveal.in .m-bar::after{animation:shimmer 2.4s ease-in-out 1.1s infinite}

/* stagger cards inside a section as it reveals */
.reveal :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*{opacity:0}
.reveal.in :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*{animation:fadeUp .55s ease both}
.reveal.in :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*:nth-child(2){animation-delay:.06s}
.reveal.in :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*:nth-child(3){animation-delay:.12s}
.reveal.in :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*:nth-child(4){animation-delay:.18s}
.reveal.in :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*:nth-child(5){animation-delay:.24s}
.reveal.in :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*:nth-child(6){animation-delay:.3s}
.reveal.in :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*:nth-child(n+7){animation-delay:.36s}

/* ── order-flow 3D mini-visuals (one per reading question) ── */
.ofw{width:84px;height:58px;perspective:340px;flex-shrink:0}
.ofw-stage{width:100%;height:100%;display:flex;align-items:center;justify-content:center;gap:4px;
  transform-style:preserve-3d;transform:rotateX(14deg) rotateY(-22deg);animation:ofwSwing 7s ease-in-out infinite}
@keyframes ofwSwing{0%,100%{transform:rotateX(14deg) rotateY(-22deg)}50%{transform:rotateX(14deg) rotateY(-4deg)}}
.ofw i{box-shadow:1.5px 1.5px 0 rgba(0,0,0,.5),3px 3px 0 rgba(0,0,0,.32)} /* faux extrusion */
/* liquidity → a refilling DOM ladder (asks red on top, bids green below) */
.ofw-dom .ofw-stage{flex-direction:column;align-items:flex-end;gap:4px;padding-right:8px}
.ofw-dom i{height:6px;border-radius:1px;transform-origin:right center;animation:ofwRefill 3s ease-in-out infinite}
.ofw-dom i.a{background:var(--down)} .ofw-dom i.b{background:var(--up)}
.ofw-dom i:nth-child(1){width:42px;animation-delay:0s}
.ofw-dom i:nth-child(2){width:58px;animation-delay:.5s}
.ofw-dom i:nth-child(3){width:64px;animation-delay:.2s}
.ofw-dom i:nth-child(4){width:50px;animation-delay:.8s}
.ofw-dom i:nth-child(5){width:36px;animation-delay:.35s}
@keyframes ofwRefill{0%,100%{transform:scaleX(.55)}50%{transform:scaleX(1)}}
/* aggression → a buy/sell delta histogram */
.ofw-delta i{width:8px;height:34px;border-radius:1px;transform-origin:center bottom;animation:ofwPump 2.4s ease-in-out infinite}
.ofw-delta i.u{background:var(--up)} .ofw-delta i.d{background:var(--down)}
.ofw-delta i:nth-child(2){animation-delay:.3s}
.ofw-delta i:nth-child(3){animation-delay:.6s}
.ofw-delta i:nth-child(4){animation-delay:.15s}
.ofw-delta i:nth-child(5){animation-delay:.45s}
@keyframes ofwPump{0%,100%{transform:scaleY(.4)}50%{transform:scaleY(1)}}
/* accept/reject → a forming candle */
.ofw-candle .ofw-stage{gap:0;position:relative}
.ofw-candle .wick{width:2px;height:48px;background:var(--up);opacity:.5;box-shadow:none}
.ofw-candle .body{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:16px;height:24px;background:var(--up);border-radius:1px;animation:ofwForm 3.4s ease-in-out infinite}
@keyframes ofwForm{0%,100%{height:12px}50%{height:30px}}

/* hero ambient: faint scrolling-candle backdrop (matches the app entry gate) */
#heroFx{position:absolute;inset:0;z-index:0;pointer-events:none;opacity:.4}
.hero-inner{position:relative;z-index:2}
.hero::before{z-index:1}
/* footprint mock, gentle "live" flicker on cells/figures */
.fp-cell{transition:background .5s ease,color .5s ease}
.fp-cell.flash{background:rgba(255,180,84,.22)!important;color:var(--accent)!important}
.fp-delta b{transition:color .4s ease}
.fp-delta b.flash{color:var(--accent)!important}

/* respect reduced-motion preference */
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  #heroFx{display:none}
  .reveal,.reveal.in :is(.prob-grid,.env-grid,.tools-grid,.path-grid,.of-list,.agent-grid)>*,
  .hero-tag,.hero h1,.hero-sub,.hero-actions,.hero-chips,.fp-mock{opacity:1!important;transform:none!important}
  .m-bar i{transform:scaleX(1)!important}
}

/* ══════════════ MULTI-PAGE ADDITIONS ══════════════ */
/* nav active state: current page's link stays lit with its underline shown */
.nav-links a.active{color:var(--fg)}
.nav-links a.active::after{right:0}
/* home 3-pillar teaser: env-cards become clickable links to the deep pages */
a.env-card{display:block;text-decoration:none;color:inherit}
.env-card .e-more{display:inline-block;margin-top:18px;font-family:var(--mono);font-size:10px;letter-spacing:1.5px;color:var(--accent2);text-transform:uppercase;transition:color .2s}
a.env-card:hover .e-more{color:var(--accent)}
/* interior-page section titles get scroll-margin so cross-page #anchors clear the fixed nav */
[id]{scroll-margin-top:80px}

/* ── MOBILE NAV (hamburger) ── the nav links are injected into a dropdown on ≤860px; the
   burger button is added by shared.js so no-JS clients are unchanged (logo + CTA only). */
.nav-burger{display:none;width:26px;height:18px;flex-direction:column;justify-content:space-between;background:none;border:none;padding:0;cursor:pointer;margin-left:16px}
.nav-burger span{display:block;height:2px;width:100%;background:var(--fg);border-radius:2px;transition:transform .25s ease,opacity .2s ease}
nav.nav-open .nav-burger span:nth-child(1){transform:translateY(8px) rotate(45deg)}
nav.nav-open .nav-burger span:nth-child(2){opacity:0}
nav.nav-open .nav-burger span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
@media(max-width:860px){
  .nav-burger{display:flex}
  .nav-cta{margin-left:auto}
  /* links become a full-width dropdown under the bar, collapsed until nav.nav-open */
  .nav-links{display:flex;flex-direction:column;gap:0;position:fixed;top:60px;left:0;right:0;
    background:rgba(18,23,31,.97);backdrop-filter:blur(14px);border-bottom:1px solid var(--line);
    padding:6px 0;transform:translateY(-10px);opacity:0;pointer-events:none;
    transition:opacity .22s ease,transform .22s ease}
  nav.nav-open .nav-links{transform:none;opacity:1;pointer-events:auto}
  .nav-links a{padding:15px 24px;font-size:12px;letter-spacing:1.5px;border-top:1px solid rgba(44,55,71,.5)}
  .nav-links a:first-child{border-top:none}
  .nav-links a::after{display:none}            /* no animated underline in the dropdown */
  .nav-links a.active{color:var(--accent)}      /* active page reads in accent instead */
}
