
/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #F4F7F2;
  --bg2:         #EAEFE7;
  --card:        #FFFFFF;
  --ink:         #0C1A08;
  --ink2:        #2D4427;
  --ink3:        #5A7552;
  --ink4:        #8FAB86;
  --go:          #00FF87;
  --go-dim:      #00C968;
  --go-light:    rgba(0,255,135,0.08);
  --go-subtle:   rgba(0,255,135,0.035);
  --amber:       #D97706;
  --rose:        #DC2626;
  --violet:      #7C3AED;
  --sans:        'DM Sans', sans-serif;
  --mono:        'DM Mono', monospace;
  --line-soft:   rgba(196,214,188,0.55);
  --line-softer: rgba(196,214,188,0.35);
  --line-hair:   rgba(196,214,188,0.22);
  --shadow-sm:   0 4px 12px rgba(12,26,8,0.04);
  --shadow-md:   0 8px 24px rgba(12,26,8,0.05), 0 2px 6px rgba(12,26,8,0.035);
  --shadow-lg:   0 14px 36px rgba(12,26,8,0.07), 0 4px 10px rgba(12,26,8,0.04);
  --shadow-xl:   0 24px 60px rgba(12,26,8,0.10);
  --ease-soft:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --tr-fast:     transform .10s ease, opacity .10s ease;
  --focus-ring:  0 0 0 2px var(--bg), 0 0 0 4px rgba(0,201,104,.22);
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   22px;
  --radius-pill: 999px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  background: linear-gradient(180deg,#F4F7F2 0%,#F1F6EE 100%);
  color: var(--ink); line-height: 1.6; overflow-x: hidden;
}
body::before {
  content:''; position:fixed; inset:0; z-index:0; opacity:0.015;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events:none;
}

/* ─── 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:64px;
  background:rgba(244,247,242,0.78); backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line-softer);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.45), var(--shadow-sm);
}
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; cursor:pointer; }
.nav-logo-dot { width:8px; height:8px; background:var(--go); border-radius:50%; box-shadow:0 0 8px rgba(0,255,135,0.5); animation:pulse 2.5s ease-in-out infinite; flex-shrink:0; }
@keyframes pulse { 0%,100%{opacity:1;box-shadow:0 0 8px rgba(0,255,135,0.5);}50%{opacity:0.5;box-shadow:0 0 16px rgba(0,255,135,0.35);} }
.nav-logo-text { display:flex; flex-direction:column; gap:1px; }
.nav-logo-wordmark { font-family:var(--mono); font-weight:500; font-size:17px; color:var(--ink); letter-spacing:-0.03em; line-height:1; }
.nav-logo-claim { font-family:var(--mono); font-size:10px; color:var(--ink4); letter-spacing:0.08em; text-transform:uppercase; line-height:1; }
.nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-links a {
  font-size:13px; font-weight:500; color:var(--ink3); text-decoration:none;
  letter-spacing:0.02em; cursor:pointer;
  transition:color 0.24s var(--ease-soft);
}
.nav-links a:hover { color:var(--ink); }
.nav-links a.active { color:var(--go-dim); text-decoration:underline; text-underline-offset:4px; text-decoration-color:var(--go-dim); }
.nav-cta {
  background:var(--ink)!important; color:var(--bg)!important;
  padding:8px 20px; border-radius:var(--radius-md);
  font-size:13px!important; font-weight:600!important;
  box-shadow:var(--shadow-sm);
  transition:background 0.24s var(--ease-soft), transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft)!important;
}
.nav-cta:hover { background:var(--ink2)!important; transform:translateY(-1px); box-shadow:var(--shadow-md)!important; }
.nav-cta:active { transform:translateY(0) scale(.97)!important; box-shadow:var(--shadow-sm)!important; transition-duration:.08s!important; }

/* ─── PAGE ROUTER ─────────────────────────────────────────── */



/* ─── SHARED LAYOUT ───────────────────────────────────────── */
.full-w { position:relative; z-index:1; }
.full-w > .inner { padding:104px 48px; max-width:1200px; margin:0 auto; }
.alt-bg {
  background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%);
  border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.6);
}
.alt { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); box-shadow:inset 0 1px 0 rgba(255,255,255,0.6); }

.eyebrow { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.14em; color:var(--go-dim); margin-bottom:16px; font-weight:500; }
h2 { font-size:clamp(26px,3.2vw,44px); font-weight:700; letter-spacing:-0.035em; line-height:1.1; color:var(--ink); margin-bottom:18px; }
h2 em { font-style:normal; color:var(--go-dim); }
h3 { font-size:20px; font-weight:700; letter-spacing:-0.025em; color:var(--ink); margin-bottom:10px; }
.lead { font-size:16px; color:var(--ink3); max-width:560px; line-height:1.72; margin-bottom:52px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);} }
@keyframes shimmer { 0%{background-position:200% center} 100%{background-position:-200% center} }
.fade-in { animation:fadeUp 0.45s var(--ease-soft) both; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display:inline-flex; align-items:center;
  background:var(--ink); color:var(--bg);
  padding:15px 30px; border-radius:var(--radius-md);
  font-weight:600; font-size:15px; text-decoration:none; cursor:pointer;
  box-shadow:var(--shadow-md);
  transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft), background 0.24s var(--ease-soft);
}
.btn-primary:hover { transform:translateY(-1px); box-shadow:var(--shadow-lg); background:var(--ink2); }
.btn-primary:active { transform:translateY(0) scale(.98); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.btn-secondary {
  display:inline-flex; align-items:center; color:var(--ink2);
  padding:15px 30px; border:1px solid var(--line-soft); border-radius:var(--radius-md);
  font-weight:500; font-size:15px; text-decoration:none; cursor:pointer;
  background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); box-shadow:var(--shadow-sm);
  transition:border-color 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft), transform 0.24s var(--ease-soft);
}
.btn-secondary:hover { border-color:var(--go-dim); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn-secondary:active { transform:translateY(0) scale(.98); box-shadow:none; transition-duration:.08s; }

/* ─── CARDS ───────────────────────────────────────────────── */
.grid3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:0; border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.5); }
.grid5 { display:grid; grid-template-columns:repeat(5,1fr); gap:0; border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.5); }
.card { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:32px 28px; border-right:1px solid var(--line-softer); transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.card:last-child { border-right:none; }
.card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.card:active { transform:translateY(0) scale(.99); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.card-eye   { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.10em; color:var(--ink4); margin-bottom:12px; }
.card-title { font-size:16px; font-weight:700; color:var(--ink); margin-bottom:10px; letter-spacing:-0.02em; line-height:1.25; }
.card-text  { font-size:13px; color:var(--ink3); line-height:1.68; }
.card-big   { font-family:var(--mono); font-size:22px; font-weight:500; letter-spacing:-0.02em; margin-bottom:12px; }
.tag { display:inline-block; margin-top:16px; font-family:var(--mono); font-size:10px; letter-spacing:0.07em; padding:4px 10px; border-radius:var(--radius-xs); font-weight:500; }
.tag-green  { color:var(--go-dim);   background:var(--go-light); }
.tag-amber  { color:var(--amber);    background:rgba(217,119,6,0.07); }
.tag-rose   { color:var(--rose);     background:rgba(220,38,38,0.06); }
.tag-violet { color:var(--violet);   background:rgba(124,58,237,0.06); }

/* ─── POSITION BARS ───────────────────────────────────────── */
.pos-bars { display:flex; flex-direction:column; gap:8px; margin:16px 0; }
.pos-row  { display:flex; align-items:center; gap:10px; }
.pos-lbl  { font-family:var(--mono); font-size:10px; color:var(--ink4); width:46px; flex-shrink:0; }
.pos-track { flex:1; height:4px; background:var(--bg2); border-radius:var(--radius-pill); overflow:hidden; }
.pos-fill  { height:100%; border-radius:var(--radius-pill); }
.pos-mult  { font-family:var(--mono); font-size:11px; font-weight:500; width:30px; text-align:right; }

/* ─── FORMULA ─────────────────────────────────────────────── */
.formula { background:var(--ink); border-radius:var(--radius-lg); padding:28px 32px; font-family:var(--mono); color:#C8DCF0; font-size:12px; line-height:1.9; margin-top:32px; box-shadow:var(--shadow-lg); border:1px solid rgba(255,255,255,0.04); }
.formula .fn { color:var(--go); font-weight:500; }
.formula .w  { color:#F0F4F8; }
.formula .c  { opacity:0.3; font-size:11px; }

/* ─── SOV ─────────────────────────────────────────────────── */
.sov-layout { display:grid; grid-template-columns:1fr 400px; gap:60px; align-items:start; }
.sov-points { display:flex; flex-direction:column; gap:0; }
.sov-pt { padding:24px 0; border-bottom:1px solid var(--line-softer); }
.sov-pt:first-child { padding-top:0; }
.sov-pt:last-child { border-bottom:none; }
.sov-pt-title { font-size:15px; font-weight:700; color:var(--ink); margin-bottom:6px; letter-spacing:-0.02em; }
.sov-pt-text  { font-size:13px; color:var(--ink3); line-height:1.65; }
.sov-mock { background:var(--ink); border-radius:var(--radius-xl); padding:32px; font-family:var(--mono); color:#C8DCF0; font-size:12px; position:sticky; top:88px; box-shadow:var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.04); }
.sov-mock-eye  { font-size:10px; text-transform:uppercase; letter-spacing:0.10em; opacity:0.3; margin-bottom:16px; }
.sov-mock-brand{ font-size:13px; color:var(--go); font-weight:500; margin-bottom:4px; }
.sov-mock-pct  { font-size:36px; font-weight:500; color:var(--go); letter-spacing:-0.04em; line-height:1; margin-bottom:14px; }
.sov-mock-bar  { height:4px; background:var(--go); border-radius:var(--radius-pill); opacity:0.65; margin-bottom:20px; }
.sov-div { height:1px; background:rgba(255,255,255,0.05); margin:14px 0; }
.sov-row { display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.sov-row-lbl   { width:80px; font-size:10px; opacity:0.45; }
.sov-row-track { flex:1; height:3px; background:rgba(255,255,255,0.05); border-radius:var(--radius-pill); overflow:hidden; }
.sov-row-fill  { height:100%; border-radius:var(--radius-pill); }
.sov-row-val   { font-size:10px; opacity:0.45; width:24px; text-align:right; }

/* ─── REC CARDS ───────────────────────────────────────────── */
.rec-card { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:32px 28px; border-right:1px solid var(--line-softer); border-left:3px solid transparent; transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.rec-card:last-child { border-right:none; }
.rec-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.rec-card:active { transform:translateY(0) scale(.99); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.rec-card.urgent   { border-left-color:var(--rose); }
.rec-card.consider { border-left-color:var(--amber); }
.rec-card.working  { border-left-color:var(--go-dim); }
.rec-eye { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.10em; margin-bottom:10px; font-weight:500; }
.rec-card.urgent   .rec-eye { color:var(--rose); }
.rec-card.consider .rec-eye { color:var(--amber); }
.rec-card.working  .rec-eye { color:var(--go-dim); }

/* ─── NUMBERS ─────────────────────────────────────────────── */
.numbers-grid   { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--line-soft); border-radius:var(--radius-xl) var(--radius-xl) 0 0; overflow:hidden; box-shadow:var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.55); }
.numbers-grid-2 { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--line-soft); border-top:none; border-radius:0 0 var(--radius-xl) var(--radius-xl); overflow:hidden; }
.num-card { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:32px 28px; border-right:1px solid var(--line-softer); transition:background 0.24s var(--ease-soft); }
.num-card:last-child { border-right:none; }
.num-card:hover { background:#FFFFFF; }
.num-val { font-family:var(--mono); font-size:32px; font-weight:500; letter-spacing:-0.04em; color:var(--ink); line-height:1; margin-bottom:8px; }
.num-val span { font-size:16px; font-weight:400; color:var(--ink3); }
.num-lbl { font-size:13px; color:var(--ink3); line-height:1.45; }

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:0; border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.5); }
.price-card { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:36px 32px; border-right:1px solid var(--line-softer); transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.price-card:last-child { border-right:none; }
.price-card:not(.featured):hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.price-card:not(.featured):active { transform:translateY(0) scale(.99); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.price-card.featured { background:var(--ink); color:#F0F4F8; position:relative; box-shadow:inset 0 1px 0 rgba(255,255,255,0.06); }
.price-badge { position:absolute; top:16px; right:16px; font-family:var(--mono); font-size:10px; letter-spacing:0.10em; text-transform:uppercase; background:var(--go); color:var(--ink); padding:4px 10px; border-radius:var(--radius-pill); font-weight:600; }
.price-plan { font-family:var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:0.12em; color:var(--ink4); margin-bottom:12px; }
.price-card.featured .price-plan { color:rgba(200,220,240,0.4); }
.price-amount { font-size:36px; font-weight:700; letter-spacing:-0.04em; color:var(--ink); margin-bottom:4px; }
.price-card.featured .price-amount { color:#FFFFFF; }
.price-period { font-size:13px; color:var(--ink3); margin-bottom:24px; }
.price-card.featured .price-period { color:rgba(200,220,240,0.45); }
.price-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.price-features li { font-size:13px; color:var(--ink2); display:flex; align-items:flex-start; gap:8px; }
.price-card.featured .price-features li { color:rgba(200,220,240,0.78); }
.price-features .chk { color:var(--go-dim); margin-top:1px; flex-shrink:0; font-size:13px; }
.price-card.featured .price-features .chk { color:var(--go); }
.btn-plan { display:block; text-align:center; padding:13px 20px; border-radius:var(--radius-md); font-weight:600; font-size:14px; text-decoration:none; cursor:pointer; transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft), background 0.24s var(--ease-soft), border-color 0.24s var(--ease-soft); }
.btn-outline { border:1px solid var(--line-soft); color:var(--ink2); background:transparent; }
.btn-outline:hover { border-color:var(--ink); background:var(--bg2); transform:translateY(-1px); box-shadow:var(--shadow-sm); }
.btn-outline:active { transform:translateY(0) scale(.98); box-shadow:none; transition-duration:.08s; }
.btn-filled { background:var(--go-dim); color:var(--ink); box-shadow:0 2px 0 rgba(0,168,90,.40), 0 0 20px rgba(0,201,104,0.18); }
.btn-filled:hover { background:#00C968; transform:translateY(-1px); box-shadow:0 4px 0 rgba(0,168,90,.30), 0 4px 20px rgba(0,255,135,0.25); }
.btn-filled:active { transform:translateY(0) scale(.98); box-shadow:0 1px 0 rgba(0,168,90,.40); transition-duration:.08s; }

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-wrap { background:var(--ink); padding:96px 48px; text-align:center; position:relative; overflow:hidden; }
.cta-wrap::before { content:''; position:absolute; top:-220px; left:50%; transform:translateX(-50%); width:700px; height:700px; background:radial-gradient(circle,rgba(0,255,135,0.055) 0%,transparent 68%); pointer-events:none; }
.cta-inner { position:relative; z-index:1; }
.cta-wrap h2 { color:#F0F4F8; margin-bottom:18px; }
.cta-wrap h2 em { color:var(--go); }
.cta-sub { font-size:16px; color:rgba(200,220,240,0.55); max-width:420px; margin:0 auto 44px; line-height:1.7; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-cta-go { background:var(--go-dim); color:var(--ink); padding:16px 34px; border-radius:var(--radius-md); font-weight:700; font-size:15px; text-decoration:none; cursor:pointer; box-shadow:0 2px 0 rgba(0,168,90,.40), 0 0 32px rgba(0,201,104,0.18); transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.btn-cta-go:hover { transform:translateY(-2px); box-shadow:0 4px 0 rgba(0,168,90,.30), 0 8px 40px rgba(0,255,135,0.26); }
.btn-cta-go:active { transform:translateY(0) scale(.98); box-shadow:0 1px 0 rgba(0,168,90,.40); transition-duration:.08s; }
.btn-cta-ghost { border:1px solid rgba(200,220,240,0.18); color:rgba(200,220,240,0.7); padding:16px 34px; border-radius:var(--radius-md); font-weight:500; font-size:15px; text-decoration:none; cursor:pointer; transition:border-color 0.24s var(--ease-soft), color 0.24s var(--ease-soft), transform 0.24s var(--ease-soft); }
.btn-cta-ghost:hover { border-color:rgba(200,220,240,0.4); color:#F0F4F8; transform:translateY(-1px); }
.btn-cta-ghost:active { transform:translateY(0) scale(.98); transition-duration:.08s; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { background:var(--bg2); border-top:1px solid var(--line-soft); padding:44px 48px; display:flex; justify-content:space-between; align-items:center; position:relative; z-index:1; }
.footer-logo { font-family:var(--mono); font-size:13px; font-weight:500; color:var(--ink3); display:flex; align-items:center; gap:8px; }
.footer-links { display:flex; gap:28px; list-style:none; }
.footer-links a { font-size:13px; color:var(--ink4); text-decoration:none; cursor:pointer; transition:color 0.24s var(--ease-soft); }
.footer-links a:hover { color:var(--ink2); }
.footer-copy { font-family:var(--mono); font-size:11px; color:var(--ink4); }

/* ─── PRODUCT PAGE ────────────────────────────────────────── */
.page-header { position:relative; z-index:1; padding:140px 48px 80px; max-width:1200px; margin:0 auto; }
.page-eyebrow { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.14em; color:var(--go-dim); margin-bottom:16px; font-weight:500; }
.page-header h1 { font-size:clamp(32px,4vw,58px); font-weight:700; letter-spacing:-0.04em; line-height:1.08; color:var(--ink); max-width:720px; margin-bottom:20px; }
.page-header h1 em { font-style:normal; color:var(--go-dim); }
.page-header .sub { font-size:17px; color:var(--ink3); max-width:560px; line-height:1.7; }
.steps { display:grid; grid-template-columns:1fr 1fr; gap:2px; border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-sm); }
.step { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:36px 32px; border-right:1px solid var(--line-softer); border-bottom:1px solid var(--line-softer); transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.step:nth-child(2n) { border-right:none; }
.step:nth-child(n+3) { border-bottom:none; }
.step:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.step:active { transform:translateY(0) scale(.99); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.step-num   { font-family:var(--mono); font-size:11px; font-weight:500; color:var(--go-dim); letter-spacing:0.08em; margin-bottom:12px; }
.step-title { font-size:17px; font-weight:700; color:var(--ink); letter-spacing:-0.02em; margin-bottom:8px; }
.step-time  { display:inline-block; font-family:var(--mono); font-size:10px; color:var(--ink4); letter-spacing:0.06em; margin-bottom:12px; }
.step-text  { font-size:13px; color:var(--ink3); line-height:1.68; }
.usecase-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:2px; border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-sm); }
.usecase { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:36px 32px; border-right:1px solid var(--line-softer); transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.usecase:last-child { border-right:none; }
.usecase:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.usecase:active { transform:translateY(0) scale(.99); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.usecase-role { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.10em; color:var(--ink4); margin-bottom:12px; }
.usecase-title { font-size:17px; font-weight:700; color:var(--ink); letter-spacing:-0.02em; margin-bottom:12px; line-height:1.25; }
.usecase-text  { font-size:13px; color:var(--ink3); line-height:1.68; margin-bottom:20px; }
.usecase-outputs { border-top:1px solid var(--line-softer); padding-top:16px; }
.usecase-outputs-label { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.10em; color:var(--ink4); margin-bottom:8px; }
.output-tag { display:inline-block; font-family:var(--mono); font-size:10px; color:var(--go-dim); background:var(--go-light); padding:3px 8px; border-radius:var(--radius-xs); margin:2px 3px 2px 0; }
.attention-layout { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.attention-points { display:flex; flex-direction:column; gap:0; }
.att-pt { padding:24px 0; border-bottom:1px solid var(--line-softer); }
.att-pt:first-child { padding-top:0; }
.att-pt:last-child { border-bottom:none; }
.att-pt-eye   { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.10em; color:var(--go-dim); margin-bottom:6px; }
.att-pt-title { font-size:15px; font-weight:700; color:var(--ink); margin-bottom:5px; letter-spacing:-0.02em; }
.att-pt-text  { font-size:13px; color:var(--ink3); line-height:1.65; }
.dark-panel { background:var(--ink); border-radius:var(--radius-xl); padding:32px; font-family:var(--mono); color:rgba(200,220,240,0.85); font-size:12px; box-shadow:var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.04); position:sticky; top:88px; }
.dp-eye { font-size:10px; text-transform:uppercase; letter-spacing:0.12em; opacity:0.3; margin-bottom:20px; }
.dp-metric { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:14px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,0.05); }
.dp-metric:last-of-type { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.dp-metric-label { font-size:10px; opacity:0.45; }
.dp-metric-val   { font-size:18px; font-weight:500; letter-spacing:-0.02em; }
.dp-metric-val.green { color:var(--go); }
.dp-metric-val.amber { color:#FBBF24; }
.dp-divider { height:1px; background:rgba(255,255,255,0.05); margin:16px 0; }
.dp-bar-row { display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.dp-bar-lbl   { font-size:10px; opacity:0.4; width:80px; flex-shrink:0; }
.dp-bar-track { flex:1; height:3px; background:rgba(255,255,255,0.05); border-radius:var(--radius-pill); overflow:hidden; }
.dp-bar-fill  { height:100%; border-radius:var(--radius-pill); }
.dp-bar-val   { font-size:10px; opacity:0.4; width:24px; text-align:right; }
.signal-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-sm); }
.signal-card { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:28px 24px; border-right:1px solid var(--line-softer); border-bottom:1px solid var(--line-softer); }
.signal-card:nth-child(2n) { border-right:none; }
.signal-card:nth-child(n+3) { border-bottom:none; }
.rec-levels { display:flex; flex-direction:column; gap:2px; border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-sm); }
.rec-level { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:28px; border-bottom:1px solid var(--line-softer); border-left:3px solid transparent; transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.rec-level:last-child { border-bottom:none; }
.rec-level:hover { transform:translateY(-1px); box-shadow:var(--shadow-md); }
.rec-level:active { transform:scale(.98); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.rec-level.urgent   { border-left-color:var(--rose); }
.rec-level.consider { border-left-color:var(--amber); }
.rec-level.working  { border-left-color:var(--go-dim); }
.rec-level-eye   { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.10em; margin-bottom:8px; font-weight:500; }
.rec-level.urgent   .rec-level-eye { color:var(--rose); }
.rec-level.consider .rec-level-eye { color:var(--amber); }
.rec-level.working  .rec-level-eye { color:var(--go-dim); }
.rec-level-title { font-size:15px; font-weight:700; color:var(--ink); margin-bottom:6px; letter-spacing:-0.02em; }
.rec-level-text  { font-size:13px; color:var(--ink3); line-height:1.65; }
.narrative-layout { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.attr-cloud { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }
.attr-pill { font-family:var(--mono); font-size:11px; padding:6px 14px; border-radius:var(--radius-pill); border:1px solid var(--line-soft); background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); color:var(--ink2); transition:border-color 0.24s var(--ease-soft), background 0.24s var(--ease-soft); cursor:default; }
.attr-pill:hover { border-color:var(--go-dim); background:var(--go-subtle); }
.attr-pill.strong { border-color:rgba(0,201,104,0.35); color:var(--go-dim); background:var(--go-light); }
.quote-cards { display:flex; flex-direction:column; gap:2px; }
.quote-card { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); border:1px solid var(--line-soft); padding:24px; box-shadow:var(--shadow-sm); }
.quote-card:first-child { border-radius:var(--radius-lg) var(--radius-lg) 0 0; }
.quote-card:last-child  { border-radius:0 0 var(--radius-lg) var(--radius-lg); border-top:none; }
.quote-card:not(:first-child):not(:last-child) { border-radius:0; border-top:none; }
.quote-text { font-size:13px; color:var(--ink2); line-height:1.65; font-style:italic; font-weight:300; margin-bottom:12px; }
.quote-meta { display:flex; gap:6px; flex-wrap:wrap; }
.quote-tag   { font-family:var(--mono); font-size:10px; letter-spacing:0.07em; padding:3px 7px; border-radius:var(--radius-xs); }
.qt-platform { background:var(--bg2); color:var(--ink3); }
.qt-positive { background:var(--go-light); color:var(--go-dim); }
.qt-neutral  { background:rgba(217,119,6,0.07); color:var(--amber); }
.qt-first    { background:rgba(3,105,161,0.07); color:#0369A1; }
.comp-wrap { border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-sm); }
.comp-head { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; background:var(--bg2); border-bottom:1px solid var(--line-softer); }
.comp-cell { padding:14px 20px; font-size:11px; font-weight:600; letter-spacing:0.03em; color:var(--ink3); border-right:1px solid var(--line-softer); text-align:center; font-family:var(--mono); text-transform:uppercase; }
.comp-cell:first-child { text-align:left; color:var(--ink); font-family:var(--sans); text-transform:none; font-size:13px; }
.comp-cell:last-child  { border-right:none; }
.comp-cell.bax { background:var(--go-light); color:var(--go-dim); }
.comp-row { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; border-bottom:1px solid var(--line-softer); transition:background 0.2s; }
.comp-row:last-child { border-bottom:none; }
.comp-row:hover { background:#FAFCF9; }
.comp-row-cell { padding:13px 20px; font-size:13px; color:var(--ink3); border-right:1px solid var(--line-softer); display:flex; align-items:center; justify-content:center; transition:color .14s ease; }
.comp-row:hover .comp-row-cell { color:var(--ink2); }
.comp-row-cell:first-child { justify-content:flex-start; font-weight:500; color:var(--ink); }
.comp-row-cell:last-child  { border-right:none; }
.comp-row-cell.bax { background:var(--go-subtle); }
.chk { color:var(--go-dim); font-size:14px; }
.crs { color:var(--rose); font-size:14px; }
.prt { color:var(--amber); font-size:12px; }
.platforms-wrap { display:flex; flex-wrap:wrap; gap:8px; }
.plt-pill { display:inline-flex; align-items:center; gap:7px; background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); border:1px solid var(--line-soft); border-radius:var(--radius-pill); padding:8px 16px; font-size:13px; font-weight:500; color:var(--ink2); cursor:default; box-shadow:var(--shadow-sm); transition:border-color 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft), transform 0.24s var(--ease-soft); }
.plt-pill:hover { border-color:var(--go-dim); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.plt-pill:active { transform:translateY(0) scale(.97); box-shadow:none; transition-duration:.08s; }
.plt-dot { width:6px; height:6px; background:var(--go); border-radius:50%; opacity:0.7; }
.testi-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:2px; border:1px solid var(--line-soft); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-sm); }
.testi { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); padding:32px 28px; border-right:1px solid var(--line-softer); transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.testi:last-child { border-right:none; }
.testi:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.testi:active { transform:translateY(0) scale(.99); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.testi-quote  { font-size:14px; color:var(--ink2); line-height:1.7; margin-bottom:24px; font-style:italic; font-weight:300; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:34px; height:34px; background:var(--go-light); border:1px solid var(--line-soft); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-size:11px; font-weight:500; color:var(--go-dim); flex-shrink:0; }
.testi-name { font-size:13px; font-weight:600; color:var(--ink); }
.testi-role { font-size:11px; color:var(--ink4); font-family:var(--mono); }

/* ─── FAQ PAGE ────────────────────────────────────────────── */
.faq-wrap { position:relative; z-index:1; max-width:900px; margin:0 auto; padding:0 48px 120px; }
.faq-category { margin-bottom:64px; }
.faq-category-label { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.14em; color:var(--go-dim); font-weight:500; margin-bottom:24px; padding-bottom:12px; border-bottom:1px solid var(--line-softer); }
.faq-item { border:1px solid var(--line-soft); border-radius:var(--radius-lg); background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); margin-bottom:6px; overflow:hidden; box-shadow:var(--shadow-sm); transition:box-shadow 0.24s var(--ease-soft); }
.faq-item:hover { box-shadow:var(--shadow-md); }
.faq-q { display:flex; justify-content:space-between; align-items:flex-start; gap:20px; padding:22px 24px; cursor:pointer; user-select:none; }
.faq-q-text { font-size:15px; font-weight:600; color:var(--ink); letter-spacing:-0.015em; line-height:1.35; }
.faq-q-icon { font-family:var(--mono); font-size:16px; color:var(--ink4); flex-shrink:0; margin-top:2px; transition:transform 0.24s var(--ease-soft), color 0.24s var(--ease-soft); }
.faq-item.open .faq-q-icon { transform:rotate(45deg); color:var(--go-dim); }
.faq-item.open .faq-q-text { color:var(--go-dim); }
.faq-a { display:none; padding:0 24px 22px; }
.faq-item.open .faq-a { display:block; }
.faq-a p { font-size:14px; color:var(--ink3); line-height:1.72; margin-bottom:12px; }
.faq-a p:last-child { margin-bottom:0; }
.faq-a strong { color:var(--ink2); font-weight:600; }
.faq-a .note { font-family:var(--mono); font-size:11px; color:var(--ink4); background:var(--bg2); border-radius:var(--radius-xs); padding:8px 12px; margin-top:12px; border:1px solid var(--line-softer); }
.faq-cta { background:var(--ink); border-radius:var(--radius-xl); padding:48px; text-align:center; position:relative; overflow:hidden; box-shadow:var(--shadow-xl); }
.faq-cta::before { content:''; position:absolute; top:-120px; left:50%; transform:translateX(-50%); width:500px; height:500px; background:radial-gradient(circle,rgba(0,255,135,0.055) 0%,transparent 68%); pointer-events:none; }
.faq-cta-inner { position:relative; z-index:1; }
.faq-cta h2 { font-size:28px; font-weight:700; letter-spacing:-0.03em; color:#F0F4F8; margin-bottom:12px; }
.faq-cta h2 em { font-style:normal; color:var(--go); }
.faq-cta p { font-size:15px; color:rgba(200,220,240,0.55); margin-bottom:28px; line-height:1.65; }
.faq-cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn-go    { background:var(--go-dim); color:var(--ink); padding:13px 28px; border-radius:var(--radius-md); font-weight:700; font-size:14px; text-decoration:none; cursor:pointer; box-shadow:0 2px 0 rgba(0,168,90,.40), 0 0 24px rgba(0,201,104,0.18); transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.btn-go:hover { transform:translateY(-1px); box-shadow:0 3px 0 rgba(0,168,90,.30), 0 6px 30px rgba(0,255,135,0.25); }
.btn-go:active { transform:translateY(0) scale(.98); box-shadow:0 1px 0 rgba(0,168,90,.40); transition-duration:.08s; }
.btn-ghost { border:1px solid rgba(200,220,240,0.18); color:rgba(200,220,240,0.7); padding:13px 28px; border-radius:var(--radius-md); font-weight:500; font-size:14px; text-decoration:none; cursor:pointer; transition:border-color 0.24s var(--ease-soft), color 0.24s var(--ease-soft), transform 0.24s var(--ease-soft); }
.btn-ghost:hover { border-color:rgba(200,220,240,0.4); color:#F0F4F8; }
.btn-ghost:active { transform:scale(.98); transition-duration:.08s; }

/* ─── PRIVACY PAGE ────────────────────────────────────────── */
.summary-grid { position:relative; z-index:1; max-width:800px; margin:0 auto; padding:0 48px 64px; display:grid; grid-template-columns:1fr 1fr 1fr; gap:12px; }
.sum-card { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); border:1px solid var(--line-soft); border-radius:var(--radius-lg); padding:24px 20px; box-shadow:var(--shadow-sm); transition:transform 0.24s var(--ease-soft), box-shadow 0.24s var(--ease-soft); }
.sum-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.sum-card:active { transform:translateY(0) scale(.99); box-shadow:var(--shadow-sm); transition-duration:.08s; }
.sum-card-icon  { font-family:var(--mono); font-size:18px; font-weight:500; color:var(--go-dim); margin-bottom:10px; }
.sum-card-title { font-size:13px; font-weight:700; color:var(--ink); margin-bottom:5px; letter-spacing:-0.01em; }
.sum-card-text  { font-size:12px; color:var(--ink3); line-height:1.6; }
.policy-body { position:relative; z-index:1; max-width:800px; margin:0 auto; padding:0 48px 120px; }
.policy-section { margin-bottom:56px; }
.policy-section h2 { font-size:20px; font-weight:700; color:var(--ink); letter-spacing:-0.025em; margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid var(--line-softer); }
.policy-section p { font-size:14px; color:var(--ink3); line-height:1.75; margin-bottom:14px; }
.policy-section p:last-child { margin-bottom:0; }
.policy-section strong { color:var(--ink2); font-weight:600; }
.policy-section ul { margin:12px 0; padding:0; list-style:none; }
.policy-section ul li { font-size:14px; color:var(--ink3); line-height:1.7; padding:6px 0 6px 20px; position:relative; border-bottom:1px solid var(--line-hair); }
.policy-section ul li:last-child { border-bottom:none; }
.policy-section ul li::before { content:'-'; position:absolute; left:0; color:var(--go-dim); font-family:var(--mono); font-size:12px; top:8px; }
.callout { background:var(--ink); border-radius:var(--radius-lg); padding:28px; margin:28px 0; box-shadow:var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.04); }
.callout p { color:rgba(200,220,240,0.8); font-size:14px; line-height:1.72; margin:0; }
.callout strong { color:var(--go); }
.info-box { background:var(--go-subtle); border:1px solid var(--go-light); border-radius:var(--radius-md); padding:18px 20px; margin:20px 0; }
.info-box p { font-size:13px; color:var(--ink2); line-height:1.68; margin:0; }
.contact-block { background:linear-gradient(180deg,#FFFFFF 0%,#FBFDF9 100%); border:1px solid var(--line-soft); border-radius:var(--radius-xl); padding:36px; box-shadow:var(--shadow-sm); text-align:center; }
.contact-block p { font-size:14px; color:var(--ink3); line-height:1.7; margin-bottom:16px; }
.contact-block a { color:var(--go-dim); text-decoration:none; font-weight:600; font-size:14px; }
.contact-block a:hover { color:var(--ink2); }

/* ─── HERO (homepage) ─────────────────────────────────────── */
.hero { position:relative; z-index:1; padding:164px 48px 120px; max-width:1200px; margin:0 auto; }
.hero-logo-lockup { display:flex; align-items:center; gap:16px; margin-bottom:52px; animation:fadeUp 0.6s var(--ease-soft) both; }
.hero-logo-mark { display:flex; align-items:center; gap:12px; }
.hero-logo-dot { width:12px; height:12px; background:var(--go); border-radius:50%; box-shadow:0 0 14px rgba(0,255,135,0.45); animation:pulse 2.5s ease-in-out infinite; flex-shrink:0; }
.hero-logo-wordmark { font-family:var(--mono); font-weight:500; font-size:28px; color:var(--ink); letter-spacing:-0.04em; line-height:1; }
.hero-logo-sep   { width:1px; height:28px; background:var(--line-softer); }
.hero-logo-claim { font-family:var(--mono); font-size:11px; color:var(--ink4); letter-spacing:0.10em; text-transform:uppercase; line-height:1.4; max-width:140px; }
h1 { font-size:clamp(40px,5.5vw,76px); font-weight:700; line-height:1.05; letter-spacing:-0.04em; color:var(--ink); max-width:860px; margin-bottom:28px; animation:fadeUp 0.6s 0.1s var(--ease-soft) both; }
h1 .accent { color:var(--go-dim); position:relative; }
h1 .accent::after { content:''; position:absolute; bottom:4px; left:0; right:0; height:2px; background:var(--go); opacity:0.28; border-radius:2px; }
.hero-sub { font-size:19px; font-weight:400; color:var(--ink3); max-width:600px; line-height:1.7; margin-bottom:52px; animation:fadeUp 0.6s 0.2s var(--ease-soft) both; }
.hero-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; animation:fadeUp 0.6s 0.3s var(--ease-soft) both; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:900px){
  nav { padding:0 24px; }
  .nav-links { display:none; }
  .hero { padding:116px 24px 80px; }
  .full-w > .inner { padding:72px 24px; }
  .page-header, .faq-wrap, .policy-body, .summary-grid { padding-left:24px; padding-right:24px; }
  .grid3, .grid5, .pricing-grid, .usecase-grid, .testi-grid, .steps, .signal-grid { grid-template-columns:1fr; }
  .numbers-grid, .numbers-grid-2 { grid-template-columns:1fr 1fr; }
  .sov-layout, .attention-layout, .narrative-layout { grid-template-columns:1fr; }
  .summary-grid { grid-template-columns:1fr; }
  .comp-head, .comp-row { grid-template-columns:1.5fr 1fr 1fr; }
  .comp-head .comp-cell:nth-child(4), .comp-row .comp-row-cell:nth-child(4) { display:none; }
  footer { flex-direction:column; gap:20px; text-align:center; }
  .cta-wrap { padding:72px 24px; }
  .faq-cta { padding:36px 24px; }
}

/* ─── HAMBURGER BUTTON ────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 8px 9px;
  transition: border-color 0.2s var(--ease-soft), background 0.2s var(--ease-soft);
}
.nav-burger:hover { border-color: var(--ink3); background: var(--bg2); }
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-soft), opacity 0.25s var(--ease-soft);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE DRAWER ───────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(244,247,242,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.28s var(--ease-soft), opacity 0.28s var(--ease-soft);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink2);
  padding: 13px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.18s var(--ease-soft), color 0.18s var(--ease-soft);
}
.mobile-link:hover { background: var(--bg2); color: var(--ink); }
.mobile-cta {
  display: block;
  margin-top: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: background 0.2s var(--ease-soft);
}
.mobile-cta:hover { background: var(--ink2); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 98;
  background: rgba(12,26,8,0.18);
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

@media(max-width:900px){
  .nav-burger { display: flex; }
  .mobile-menu { display: block; }
}


/* ── INDEX PAGE ADDITIONS ──────────────────────── */

/* ── HERO ─────────────────────────────────────────── */
.hero-section { position:relative; padding:100px 24px 80px; overflow:hidden; }
.hero-inner { max-width:860px; margin:0 auto; text-align:center; position:relative; z-index:1; }
.hero-kicker { display:inline-flex; align-items:center; gap:8px; font-family:var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:0.12em; color:var(--go-dim); background:var(--go-light); border:1px solid rgba(0,201,104,0.2); padding:5px 14px; border-radius:var(--radius-pill); margin-bottom:28px; }
.kicker-dot { width:6px; height:6px; background:var(--go); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.hero-h1 { font-size:clamp(32px,5.5vw,60px); font-weight:700; letter-spacing:-0.035em; line-height:1.1; color:var(--ink); margin-bottom:22px; }
.hero-accent { color:var(--go-dim); }
.hero-sub { font-size:clamp(16px,2vw,19px); color:var(--ink3); line-height:1.65; max-width:600px; margin:0 auto 24px; }
.hero-sub-em { color:var(--go); font-weight:600; font-style:normal; }
.hero-differentiator { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:8px 6px; margin-bottom:36px; font-family:var(--mono); font-size:11.5px; letter-spacing:0.04em; color:var(--ink4); }
.hdiff-item { display:flex; align-items:center; gap:5px; }
.hdiff-highlight { color:var(--go); font-weight:600; }
.hdiff-dot { width:5px; height:5px; border-radius:50%; background:var(--ink4); flex-shrink:0; }
.hdiff-dot.accent { background:var(--go); box-shadow:0 0 6px rgba(0,255,135,.5); animation:pulse-dot 2s infinite; }
.hdiff-sep { color:var(--line-soft); font-size:14px; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(0.7)} }
.hero-cta-row { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:16px; }
.btn-hero-primary { background:var(--ink); color:var(--bg); padding:16px 32px; border-radius:var(--radius-md); font-weight:700; font-size:16px; text-decoration:none; box-shadow:var(--shadow-lg); transition:transform 0.22s var(--ease-soft), box-shadow 0.22s var(--ease-soft); }
.btn-hero-primary:hover { transform:translateY(-2px); box-shadow:var(--shadow-xl); }
.btn-hero-ghost { color:var(--ink3); font-size:15px; font-weight:500; text-decoration:none; padding:16px 8px; transition:color 0.2s; }
.btn-hero-ghost:hover { color:var(--ink); }
.hero-proof { font-family:var(--mono); font-size:11px; color:var(--ink4); letter-spacing:0.04em; margin-bottom:52px; }
/* Hero card */
.hero-card { background:#FFFFFF; border:1px solid var(--line-soft); border-radius:var(--radius-xl); padding:28px 28px 22px; max-width:480px; margin:0 auto; box-shadow:var(--shadow-xl); text-align:left; }
.hero-card-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.hero-card-brand { display:flex; align-items:center; gap:8px; }
.hero-card-dot { width:8px; height:8px; background:var(--go); border-radius:50%; box-shadow:0 0 8px rgba(0,255,135,0.4); }
.hero-card-name { font-size:13px; font-weight:600; color:var(--ink); }
.hero-card-badge { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.10em; color:var(--ink4); }
.hero-score-row { display:flex; align-items:baseline; gap:12px; margin-bottom:18px; }
.hero-score-big { font-family:var(--mono); font-size:48px; font-weight:500; letter-spacing:-0.04em; color:var(--ink); line-height:1; }
.hero-score-tier { font-family:var(--mono); font-size:12px; font-weight:500; padding:4px 10px; border-radius:var(--radius-pill); }
.hero-score-delta { font-family:var(--mono); font-size:11px; color:var(--rose); margin-left:auto; }
.hero-bar-row { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.hero-bar-label { font-size:11px; color:var(--ink3); width:160px; flex-shrink:0; }
.hero-bar-track { flex:1; height:5px; background:var(--bg2); border-radius:3px; overflow:hidden; }
.hero-bar-fill { height:100%; background:var(--go-dim); border-radius:3px; transition:width 1s var(--ease-soft); }
.hero-bar-fill.warning { background:var(--amber); }
.hero-bar-fill.shimmer { background:linear-gradient(90deg,var(--go-dim) 25%,var(--go) 50%,var(--go-dim) 75%); background-size:200% auto; animation:shimmer 1.8s linear infinite; }
.hero-bar-val { font-family:var(--mono); font-size:11px; color:var(--ink3); width:28px; text-align:right; }
.hero-bar-val.warning { color:var(--amber); }
.hero-platform-row { display:flex; align-items:center; gap:6px; flex-wrap:wrap; margin-top:14px; padding-top:14px; border-top:1px solid var(--line-softer); }
.hero-plat { font-family:var(--mono); font-size:10px; color:var(--ink3); }
.hero-plat.strong { color:var(--ink); font-weight:500; }
.hero-plat.muted { color:var(--ink4); }
.hero-plat-more { font-family:var(--mono); font-size:10px; color:var(--go-dim); margin-left:auto; }

/* ── PROOF STRIP ──────────────────────────────────── */
.proof-strip { background:var(--ink); padding:14px 24px; }
.proof-inner { max-width:860px; margin:0 auto; display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; }
.proof-label { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.12em; color:rgba(244,247,242,0.35); }
.proof-platform { font-family:var(--mono); font-size:11px; color:rgba(244,247,242,0.7); font-weight:500; }
.proof-sep { color:rgba(244,247,242,0.2); }
.proof-platform-more { font-family:var(--mono); font-size:11px; color:var(--go-dim); }

/* ── PROBLEM / SOLUTION ───────────────────────────── */
.problem-section { padding:80px 24px; }
.problem-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-lg); max-width:820px; margin:0 auto; }
.problem-col { padding:40px 36px; }
.problem-col.before { background:rgba(220,38,38,0.04); border:1px solid rgba(220,38,38,0.1); border-right:none; border-radius:var(--radius-xl) 0 0 var(--radius-xl); }
.problem-col.after  { background:var(--go-light); border:1px solid rgba(0,201,104,0.15); border-left:none; border-radius:0 var(--radius-xl) var(--radius-xl) 0; }
.problem-col-label { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.12em; margin-bottom:20px; font-weight:500; }
.problem-col-label.before { color:var(--rose); }
.problem-col-label.after  { color:var(--go-dim); }
.problem-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px; }
.problem-list li { font-size:14px; line-height:1.6; color:var(--ink2); padding-left:16px; position:relative; }
.problem-col.before .problem-list li::before { content:"✕"; position:absolute; left:0; color:var(--rose); font-size:10px; top:3px; }
.problem-col.after  .problem-list li::before { content:"+"; position:absolute; left:0; color:var(--go-dim); font-weight:700; top:1px; }

/* ── STEPS ────────────────────────────────────────── */
.steps-section { padding:80px 24px; }
.steps-row { display:flex; align-items:flex-start; gap:12px; max-width:820px; margin:0 auto 40px; }
.step-card { flex:1; background:#FFFFFF; border:1px solid var(--line-soft); border-radius:var(--radius-lg); padding:28px 24px; box-shadow:var(--shadow-sm); }
.step-num { font-family:var(--mono); font-size:11px; font-weight:500; color:var(--go-dim); background:var(--go-light); padding:3px 8px; border-radius:var(--radius-xs); display:inline-block; margin-bottom:14px; }
.step-title { font-size:15px; font-weight:700; color:var(--ink); margin-bottom:4px; line-height:1.3; }
.step-time { font-family:var(--mono); font-size:10px; color:var(--ink4); margin-bottom:10px; }
.step-desc { font-size:13px; color:var(--ink3); line-height:1.6; }
.step-arrow { font-size:20px; color:var(--line-soft); margin-top:40px; flex-shrink:0; }
.steps-cta { text-align:center; }
.steps-cta .btn-primary { display:inline-flex; background:var(--ink); color:var(--bg); padding:15px 32px; border-radius:var(--radius-md); font-weight:700; font-size:15px; text-decoration:none; box-shadow:var(--shadow-md); transition:transform 0.22s var(--ease-soft); }
.steps-cta .btn-primary:hover { transform:translateY(-2px); }

/* ── METRIC SECTION ───────────────────────────────── */
.metric-section { padding:80px 24px; }
.metric-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; max-width:860px; margin:0 auto; }
.metric-dims { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:24px; }
.metric-dim { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--ink2); }
.dim-dot { width:5px; height:5px; background:var(--go); border-radius:50%; flex-shrink:0; }
.score-dial-card { background:#FFFFFF; border:1px solid var(--line-soft); border-radius:var(--radius-xl); padding:36px 32px; text-align:center; box-shadow:var(--shadow-lg); }
.score-dial-label { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.12em; color:var(--ink4); margin-bottom:12px; }
.score-dial-number { font-family:var(--mono); font-size:80px; font-weight:500; letter-spacing:-0.04em; color:var(--ink); line-height:1; margin-bottom:10px; }
.score-dial-tier { display:inline-block; font-family:var(--mono); font-size:13px; font-weight:500; padding:5px 16px; border-radius:var(--radius-pill); margin-bottom:8px; }
.score-dial-sub { font-size:12px; color:var(--ink4); margin-bottom:20px; }
.score-tiers-mini { display:flex; gap:6px; justify-content:center; }
.tier-mini { font-family:var(--mono); font-size:11px; font-weight:500; width:28px; height:28px; display:flex; align-items:center; justify-content:center; border-radius:var(--radius-xs); background:var(--bg2); color:var(--ink4); }
.tier-mini.active { background:var(--go-light); color:var(--go-dim); }

/* ── SOV CHART ────────────────────────────────────── */
.sov-section { padding:80px 24px; }
.sov-chart { max-width:600px; margin:0 auto; background:#FFFFFF; border:1px solid var(--line-soft); border-radius:var(--radius-xl); padding:32px; box-shadow:var(--shadow-md); }
.sov-row { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.sov-row:last-of-type { margin-bottom:20px; }
.sov-name { font-size:13px; color:var(--ink2); width:110px; flex-shrink:0; }
.sov-row.your-brand .sov-name { color:var(--ink); font-weight:600; }
.sov-bar-wrap { flex:1; height:8px; background:var(--bg2); border-radius:4px; overflow:hidden; transition:height .2s var(--ease-soft); }
.sov-row:hover .sov-bar-wrap { height:10px; }
.sov-bar { height:100%; background:var(--go-dim); border-radius:4px; transition:width 1s var(--ease-soft); }
.sov-bar.comp { background:var(--line-soft); }
.sov-bar.shimmer { background:linear-gradient(90deg,var(--go-dim) 25%,var(--go) 50%,var(--go-dim) 75%); background-size:200% auto; animation:shimmer 1.8s linear infinite; }
.sov-val { font-family:var(--mono); font-size:12px; color:var(--ink); width:32px; text-align:right; }
.sov-val.muted { color:var(--ink4); }
/* sov-row stagger */
.sov-row { animation:fadeUp .35s var(--ease-soft) both; }
.sov-row:nth-child(1) { animation-delay:0ms; }
.sov-row:nth-child(2) { animation-delay:70ms; }
.sov-row:nth-child(3) { animation-delay:140ms; }
.sov-row:nth-child(4) { animation-delay:210ms; }
.sov-row:nth-child(n+5) { animation-delay:280ms; }
.sov-meta { font-family:var(--mono); font-size:10px; color:var(--ink4); text-align:center; padding-top:16px; border-top:1px solid var(--line-softer); }

/* ── RECOMMENDATION SPECTRUM ──────────────────────── */
.rec-section { padding:80px 24px; }
.rec-spectrum { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:820px; margin:0 auto; }
.rec-item { background:#FFFFFF; border:1px solid var(--line-soft); border-radius:var(--radius-xl); padding:28px 24px; }
.rec-icon { font-size:24px; margin-bottom:12px; }
.rec-active .rec-icon { color:var(--go-dim); }
.rec-mention .rec-icon { color:var(--ink4); }
.rec-absent .rec-icon { color:var(--rose); }
.rec-title { font-size:15px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.rec-desc { font-size:13px; color:var(--ink3); line-height:1.6; margin-bottom:16px; }
.rec-badge { font-family:var(--mono); font-size:10px; font-weight:500; text-transform:uppercase; letter-spacing:0.1em; padding:4px 10px; border-radius:var(--radius-pill); display:inline-block; }
.rec-badge.highest { background:var(--go-light); color:var(--go-dim); border:1px solid rgba(0,201,104,0.2); }
.rec-badge.neutral  { background:var(--bg2); color:var(--ink3); border:1px solid var(--line-soft); }
.rec-badge.danger   { background:rgba(220,38,38,0.06); color:var(--rose); border:1px solid rgba(220,38,38,0.15); }

/* ── NUMBERS ──────────────────────────────────────── */
.numbers-section { padding:60px 24px; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.numbers-grid { display:flex; justify-content:center; gap:0; max-width:860px; margin:0 auto; flex-wrap:wrap; }
.number-item { text-align:center; padding:20px 36px; border-right:1px solid var(--line-soft); }
.number-item:last-child { border-right:none; }
.number-val { font-family:var(--mono); font-size:40px; font-weight:500; letter-spacing:-0.04em; color:var(--ink); line-height:1; margin-bottom:6px; }
.number-label { font-size:12px; color:var(--ink4); line-height:1.4; max-width:100px; margin:0 auto; }

/* ── PRICING ──────────────────────────────────────── */
.pricing-section { padding:80px 24px; }
.plans-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:900px; margin:0 auto 32px; }
.plan-card { background:#FFFFFF; border:1px solid var(--line-soft); border-radius:var(--radius-xl); padding:32px 28px; position:relative; }
.plan-card.plan-featured { border-color:var(--go-dim); box-shadow:0 0 0 1px var(--go-dim), var(--shadow-xl); }
.plan-popular-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--go); color:var(--ink); font-family:var(--mono); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; padding:4px 14px; border-radius:var(--radius-pill); white-space:nowrap; }
.plan-header { margin-bottom:20px; }
.plan-name { font-family:var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:0.12em; color:var(--ink4); margin-bottom:10px; }
.plan-price-row { display:flex; align-items:baseline; gap:6px; margin-bottom:4px; }
.plan-price { font-family:var(--mono); font-size:38px; font-weight:500; letter-spacing:-0.04em; color:var(--ink); line-height:1; }
.plan-period { font-size:14px; color:var(--ink4); }
.plan-saving { font-family:var(--mono); font-size:10px; color:var(--go-dim); margin-bottom:8px; }
.plan-tagline { font-size:13px; color:var(--ink3); line-height:1.55; }
.plan-features { list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:8px; border-top:1px solid var(--line-softer); padding-top:20px; }
.plan-features li { font-size:13px; color:var(--ink2); padding-left:18px; position:relative; }
.plan-features li::before { content:"+"; position:absolute; left:0; color:var(--go-dim); font-weight:700; }
.btn-plan { display:block; text-align:center; padding:13px 20px; border-radius:var(--radius-md); font-weight:600; font-size:14px; text-decoration:none; transition:transform 0.2s, box-shadow 0.2s; }
.btn-plan.btn-outline { border:1px solid var(--line-soft); color:var(--ink2); }
.btn-plan.btn-outline:hover { border-color:var(--ink3); transform:translateY(-1px); }
.btn-plan.btn-filled { background:var(--ink); color:var(--bg); box-shadow:var(--shadow-md); }
.btn-plan.btn-filled:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.plan-fine { font-size:11px; color:var(--ink4); text-align:center; margin-top:8px; font-family:var(--mono); }
.pricing-guarantee { text-align:center; font-size:14px; color:var(--ink3); display:flex; align-items:center; justify-content:center; gap:8px; max-width:400px; margin:0 auto; }
.guarantee-icon { color:var(--go-dim); font-size:18px; }

/* ── FINAL CTA ────────────────────────────────────── */
.final-cta-section { padding:100px 24px; text-align:center; background:var(--ink); }
.final-cta-inner { max-width:600px; margin:0 auto; }
.final-cta-kicker { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.12em; color:var(--go-dim); margin-bottom:20px; }
.final-cta-h2 { font-size:clamp(28px,4vw,44px); font-weight:700; letter-spacing:-0.035em; color:var(--bg); line-height:1.15; margin-bottom:16px; }
.final-cta-sub { font-size:16px; color:rgba(244,247,242,0.55); line-height:1.65; margin-bottom:36px; }
.btn-cta-go { display:inline-block; background:var(--go-dim); color:var(--ink); padding:18px 40px; border-radius:var(--radius-md); font-weight:700; font-size:16px; text-decoration:none; box-shadow:0 2px 0 rgba(0,168,90,.40), 0 0 32px rgba(0,201,104,0.2); transition:transform 0.22s var(--ease-soft), box-shadow 0.22s; }
.btn-cta-go:hover { transform:translateY(-2px); box-shadow:0 4px 0 rgba(0,168,90,.30), 0 0 48px rgba(0,255,135,0.3); }
.btn-cta-go:active { transform:translateY(0) scale(.98); box-shadow:0 1px 0 rgba(0,168,90,.40); transition-duration:.08s; }
.final-cta-links { margin-top:24px; display:flex; align-items:center; justify-content:center; gap:12px; }
.final-cta-links a { font-size:13px; color:rgba(244,247,242,0.4); text-decoration:none; transition:color 0.2s; }
.final-cta-links a:hover { color:rgba(244,247,242,0.8); }
.final-cta-links span { color:rgba(244,247,242,0.2); }

/* ── SECTION SHARED ───────────────────────────────── */
.section-inner { max-width:860px; margin:0 auto; }
.alt-bg { background:linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }
.section-kicker { font-family:var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.14em; color:var(--go-dim); margin-bottom:14px; }
.section-h2 { font-size:clamp(24px,3.5vw,40px); font-weight:700; letter-spacing:-0.035em; color:var(--ink); line-height:1.15; margin-bottom:14px; }
.section-sub { font-size:16px; color:var(--ink3); line-height:1.65; margin-bottom:48px; max-width:560px; }

/* ── MOBILE ───────────────────────────────────────── */
@media(max-width:760px) {
  .problem-grid { grid-template-columns:1fr; }
  .problem-col.before { border-right:1px solid rgba(220,38,38,0.1); border-bottom:none; border-radius:var(--radius-xl) var(--radius-xl) 0 0; }
  .problem-col.after  { border-left:1px solid rgba(0,201,104,0.15); border-top:none; border-radius:0 0 var(--radius-xl) var(--radius-xl); }
  .steps-row { flex-direction:column; }
  .step-arrow { display:none; }
  .metric-inner { grid-template-columns:1fr; }
  .rec-spectrum { grid-template-columns:1fr; }
  .plans-grid { grid-template-columns:1fr; }
  .numbers-grid { flex-direction:column; }
  .number-item { border-right:none; border-bottom:1px solid var(--line-soft); }
  .number-item:last-child { border-bottom:none; }
  .hero-bar-label { width:120px; font-size:10px; }
}

/* ── PRICING v2 — 5-plan grid ────────────────────────────────────────────── */
.plans-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}
@media (max-width: 1100px) {
  .plans-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .plans-grid-5 { grid-template-columns: 1fr; }
}
.plan-free { opacity: .85; }

/* Feature list states */
.feat-yes { color: var(--ink1, #eee); }
.feat-yes::before { content: "✓ "; color: var(--go, #00ff87); font-weight: 700; }
.feat-no  { color: var(--ink4, #555); }
.feat-no::before  { content: "— "; color: var(--ink4, #555); }
.feat-note {
  font-size: 10px;
  color: var(--ink4, #666);
  font-family: var(--mono, monospace);
  margin-left: 4px;
}
.feat-lock {
  font-size: 10px;
  color: var(--go, #00ff87);
  opacity: .6;
  margin-left: 4px;
  font-family: var(--mono, monospace);
}

/* Ghost button (free plan) */
.btn-ghost {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid var(--ink5, #333);
  border-radius: 8px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink3, #999);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--ink3,#999); color: var(--ink1,#eee); }
.btn-ghost:active { transform:scale(.98); transition-duration:.08s; }

/* Enterprise strip */
.enterprise-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid var(--ink5, #333);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink2, #bbb);
}
.enterprise-strip strong { color: var(--ink1, #eee); }
.btn-enterprise {
  flex-shrink: 0;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--go, #00ff87);
  color: var(--go, #00ff87);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.btn-enterprise:hover { background: var(--go,#00ff87); color: #000; }

/* Credit calculator hint */
.credit-calc-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(0,255,135,.04);
  border: 1px solid rgba(0,255,135,.12);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink3, #999);
  line-height: 1.5;
}
.credit-calc-hint strong { color: var(--ink1, #eee); }
.calc-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Locked platform label in popup */
.plat-locked { opacity: .45; cursor: not-allowed; }
.plat-locked input { pointer-events: none; }

/* ── REDUCED MOTION ──────────────────────────────────────── */
/* ─── TOOLTIP GLASS ───────────────────────────────────────── */
[data-tip] { position: relative; }
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(.94);
  background: rgba(8,14,20,.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #D8E8F4;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  white-space: nowrap;
  padding: 5px 11px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
  pointer-events: none;
  opacity: 0;
  transition: opacity .16s ease, transform .16s ease;
  z-index: 200;
}
[data-tip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
[data-tip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(255,255,255,.09);
  pointer-events: none;
  opacity: 0;
  transition: opacity .16s ease;
  z-index: 201;
}
[data-tip]:hover::before { opacity: 1; }

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--ease-soft), transform 0.45s var(--ease-soft);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .sov-bar.shimmer, .hero-bar-fill.shimmer { animation: none; }
  [data-tip]::after, [data-tip]::before { transition: none; }
  .sov-row, .reveal { animation: none; opacity: 1; transform: none; }
}

