/* ============================================================
   RaveHQ — Direction A Global Stylesheet
   Warm ivory canvas #FAF7F1 | Amber-gold #B8892A
   Sentient (display) + Switzer (body) via Fontshare
   ============================================================ */

:root {
  --canvas:   #FAF7F1;
  --surface:  #FFFFFF;
  --surf-w:   #F3EEE5;
  --ink:      #121217;
  --ink-m:    #4A4A5A;
  --ink-l:    #7A7A8A;
  --line:     #E4DECE;
  --gold:     #B8892A;
  --gold-l:   #E8C96A;
  --gold-bg:  #FDF3DC;
  --loss:     #C03020;
  --win:      #117A4A;
  --loss-bg:  #FDF2F2;
  --win-bg:   #F0FAF5;
  --rule:     4px;
  --r:        6px;
  --max-w:    1160px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Switzer', system-ui, sans-serif;
  background:var(--canvas);
  color:var(--ink);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ─── TOP RULE ─────────────────────────────────────────────── */
.rule-gold { height:var(--rule); background:var(--gold); }

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position:sticky; top:0; z-index:300;
  background:var(--canvas);
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 clamp(20px, 4vw, 48px);
  height:62px;
}
.logo {
  font-family:'Sentient', serif;
  font-size:20px; font-weight:900;
  color:var(--ink);
  display:flex; align-items:center; gap:8px;
  text-decoration:none;
}
.logo-badge {
  font-family:'Switzer', sans-serif;
  font-size:9px; font-weight:800;
  letter-spacing:.12em; text-transform:uppercase;
  background:var(--gold); color:#fff;
  padding:2px 7px; border-radius:3px;
}
/* RaveHQ wordmark — "HQ" in amber-gold, flush with "Rave" */
.logo-hq {
  color:var(--gold);
  font-family:'Sentient', serif;
  font-size:20px; font-weight:900;
  margin-left:-6px; /* collapse the flex gap so Rave·HQ reads as one word */
}
.footer-hq {
  color:var(--gold);
}
.nav-links {
  display:flex; align-items:center; gap:32px;
}
.nav-links a {
  font-size:14px; font-weight:500;
  color:var(--ink-m); text-decoration:none;
  transition:color .2s;
}
.nav-links a:hover,
.nav-links a.active { color:var(--gold); }
.nav-cta {
  background:var(--gold); color:#fff !important;
  padding:8px 18px; border-radius:var(--r);
  font-size:14px; font-weight:700; text-decoration:none;
  transition:background .2s;
}
.nav-cta:hover { background:var(--gold-l); color:var(--ink) !important; }

/* Hamburger */
.hamburger {
  display:none;
  flex-direction:column; gap:5px;
  cursor:pointer; padding:6px;
  background:none; border:none;
}
.hamburger span {
  display:block; width:22px; height:2px;
  background:var(--ink); border-radius:2px;
  transition:all .3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display:none;
  position:fixed; top:62px; left:0; right:0;
  background:var(--canvas);
  border-bottom:1px solid var(--line);
  padding:16px clamp(20px,4vw,48px) 24px;
  z-index:299;
  flex-direction:column; gap:0;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.nav-drawer.open { display:flex; }
.nav-drawer a {
  font-size:15px; font-weight:500;
  color:var(--ink-m); text-decoration:none;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  display:block;
}
.nav-drawer a:last-child { border-bottom:none; }
.nav-drawer a.active { color:var(--gold); }
.nav-drawer .nav-cta {
  margin-top:12px;
  text-align:center;
  display:block;
  padding:13px 18px;
}

@media(max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
}

/* ─── SECTION LABELS ────────────────────────────────────────── */
.sec-label {
  font-size:11px; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px;
  display:flex; align-items:center; gap:10px;
}
.sec-label-light {
  font-size:11px; font-weight:800;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold-l); margin-bottom:20px;
  display:flex; align-items:center; gap:10px;
}
.sec-label-light::after {
  content:''; flex:1; height:1px;
  background:rgba(184,137,42,.3);
}
.sec-label-gold {
  font-size:11px; font-weight:800;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold); margin-bottom:12px;
  display:flex; align-items:center; gap:10px;
}
.sec-label-gold::after {
  content:''; flex:1; height:1px;
  background:var(--gold-l);
}
.live-pip {
  width:7px; height:7px; border-radius:50%;
  background:var(--win);
  animation:pip .9s infinite alternate;
  flex-shrink:0;
}
@keyframes pip {
  from { opacity:.3; transform:scale(.7); }
  to   { opacity:1; transform:scale(1); }
}

/* ─── HEADINGS ──────────────────────────────────────────────── */
.h1 {
  font-family:'Sentient', serif;
  font-size:clamp(36px, 5vw, 60px);
  font-weight:900; line-height:1.06;
  margin-bottom:28px;
}
.h2-dark {
  font-family:'Sentient', serif;
  font-weight:900;
  font-size:clamp(28px, 4vw, 48px);
  color:#FAF7F1;
  margin-bottom:8px; line-height:1.1;
}
.h2-ink {
  font-family:'Sentient', serif;
  font-weight:900;
  font-size:clamp(26px, 3.5vw, 42px);
  color:var(--ink);
  margin-bottom:8px; line-height:1.1;
}
.h1-accent  { color:var(--gold); }
.h1-loss    { color:var(--loss); text-decoration:line-through; text-decoration-thickness:3px; }
.h1-auto    { color:var(--ink-m); font-size:.85em; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-gold {
  background:var(--gold); color:#fff;
  padding:14px 28px; border-radius:var(--r);
  font-size:15px; font-weight:800;
  border:none; cursor:pointer; font-family:inherit;
  transition:background .2s, transform .15s;
  display:inline-flex; align-items:center; gap:8px;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(184,137,42,.3);
}
.btn-gold:hover { background:var(--gold-l); color:var(--ink); transform:translateY(-2px); }
.btn-line {
  background:transparent; color:var(--ink);
  padding:14px 24px; border-radius:var(--r);
  font-size:15px; font-weight:600;
  border:2px solid var(--line); cursor:pointer; font-family:inherit;
  transition:border-color .2s, color .2s;
  display:inline-flex; align-items:center; gap:8px;
  text-decoration:none;
}
.btn-line:hover { border-color:var(--gold); color:var(--gold); }

/* ─── ANNOTATION CARDS (Direction A signature) ──────────────── */
.card-loss {
  border-left:var(--rule) solid var(--loss);
  background:var(--loss-bg);
  padding:18px 20px 18px 24px;
  border-radius:0 var(--r) var(--r) 0;
}
.card-win {
  border-left:var(--rule) solid var(--win);
  background:var(--win-bg);
  padding:18px 20px 18px 24px;
  border-radius:0 var(--r) var(--r) 0;
}
.card-gold {
  border-left:var(--rule) solid var(--gold);
  background:var(--gold-bg);
  padding:18px 20px 18px 24px;
  border-radius:0 var(--r) var(--r) 0;
}
.card-ink {
  border-left:var(--rule) solid var(--ink);
  background:var(--surf-w);
  padding:18px 20px 18px 24px;
  border-radius:0 var(--r) var(--r) 0;
}
.card-label {
  font-size:10px; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase;
  margin-bottom:6px;
}
.card-label-loss { color:var(--loss); }
.card-label-win  { color:var(--win); }
.card-label-gold { color:var(--gold); }

/* ─── TRUST ROW ──────────────────────────────────────────────── */
.trust-row {
  margin-top:20px; font-size:13px; color:var(--ink-l);
  display:flex; gap:16px; flex-wrap:wrap;
}
.trust-ok { color:var(--win); font-weight:700; }

/* ─── LAYERS SECTION ─────────────────────────────────────────── */
.layers-section {
  background:var(--ink);
  padding:clamp(56px, 8vw, 96px) clamp(20px, 4vw, 48px);
}
.layers-inner { max-width:var(--max-w); margin:0 auto; }
.layers-sub   { font-size:16px; color:#6A6A7A; margin-bottom:56px; }
.layers-grid  {
  display:grid; grid-template-columns:repeat(2, 1fr);
  gap:1px; background:rgba(255,255,255,.06);
  border-radius:8px; overflow:hidden;
}
.layer-cell {
  background:#181818; padding:40px 36px;
  position:relative;
  transition:background .2s;
}
.layer-cell:hover { background:#202020; }
.layer-num-bg {
  font-family:'Sentient', serif; font-size:80px; font-weight:900;
  color:var(--gold); opacity:1;
  position:absolute; top:12px; right:24px;
  line-height:1; pointer-events:none;
  text-shadow:0 2px 8px rgba(0,0,0,.5);
}
.layer-tag  { font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.layer-title{ font-size:20px; font-weight:700; color:#FAF7F1; margin-bottom:10px; }
.layer-desc { font-size:14px; color:#6A6A7A; line-height:1.65; }

/* ─── ROI STRIP ─────────────────────────────────────────────── */
.roi-strip {
  background:var(--ink);
  border-top:1px solid rgba(255,255,255,.06);
  padding:clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
}
.roi-inner  { max-width:860px; margin:0 auto; text-align:center; }
.roi-h2     { font-family:'Sentient',serif; font-weight:900; font-size:clamp(24px,3.5vw,40px); color:#FAF7F1; margin-bottom:8px; }
.roi-sub    { font-size:15px; color:#6A6A7A; margin-bottom:40px; }
.roi-grid   {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:1px; background:rgba(255,255,255,.06);
  border-radius:6px; overflow:hidden;
}
.roi-cell   { background:#181818; padding:32px 20px; }
.roi-num    { font-family:'Sentient',serif; font-size:44px; font-weight:900; color:var(--gold); line-height:1; margin-bottom:6px; }
.roi-label  { font-size:12px; color:#6A6A7A; line-height:1.5; }

/* ─── PROOF SECTION ─────────────────────────────────────────── */
.proof-section {
  padding:clamp(56px,8vw,96px) clamp(20px,4vw,48px);
  background:var(--surf-w);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.proof-inner { max-width:var(--max-w); margin:0 auto; }
.proof-grid  {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:20px; margin-top:48px;
}
.proof-card {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:24px 28px 28px;
}
.proof-result {
  display:inline-block;
  margin-bottom:16px;
  background:var(--gold-bg);
  border:1px solid var(--gold-l);
  border-radius:3px; padding:4px 10px;
  font-size:11px; font-weight:800; color:var(--gold);
  white-space:normal;
  line-height:1.35;
}
.proof-q    { font-size:14px; color:var(--ink-m); line-height:1.7; margin-bottom:20px; }
.proof-who  { display:flex; align-items:center; gap:12px; }
.proof-illus {
  font-size:10px; color:var(--ink-l);
  font-style:italic;
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid var(--line);
}
.av {
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:14px; color:#fff; flex-shrink:0;
}
.av-b { background:#1A73E8; }
.av-g { background:var(--win); }
.av-r { background:var(--loss); }
.av-o { background:#E07020; }
.who-n { font-size:14px; font-weight:700; }
.who-b { font-size:12px; color:var(--ink-l); }

/* ─── PRICING ───────────────────────────────────────────────── */
.pricing-section {
  max-width:var(--max-w); margin:0 auto;
  padding:clamp(56px,8vw,96px) clamp(20px,4vw,48px);
}
.pricing-grid {
  display:grid; grid-template-columns:1fr 1.1fr 1fr;
  gap:20px; margin-top:48px;
}
.price-card {
  background:var(--surface);
  border:1.5px solid var(--line);
  border-radius:var(--r); padding:36px 28px;
  position:relative;
  transition:transform .2s, box-shadow .2s;
}
.price-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.1); }
.price-card.feat  { border-color:var(--gold); box-shadow:0 0 0 3px rgba(184,137,42,.12); }
.feat-badge {
  position:absolute; top:-13px; left:50%;
  transform:translateX(-50%);
  background:var(--gold); color:#fff;
  font-size:10px; font-weight:800;
  padding:3px 14px; border-radius:3px;
  letter-spacing:.06em; text-transform:uppercase;
  white-space:nowrap;
}
.plan-tier        { font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-l); margin-bottom:8px; }
.plan-price-big   { font-family:'Sentient',serif; font-size:52px; font-weight:900; color:var(--ink); line-height:1; }
.plan-price-big sup { font-size:22px; vertical-align:top; margin-top:10px; }
.plan-price-big sub { font-size:15px; color:var(--ink-l); font-weight:400; }
.plan-desc        { font-size:14px; color:var(--ink-m); margin:14px 0 22px; line-height:1.6; }
.feat-list        { list-style:none; margin-bottom:26px; }
.feat-list li     { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--ink-m); padding:6px 0; border-bottom:1px solid var(--line); }
.feat-list li:last-child { border-bottom:none; }
.feat-ck          { color:var(--win); font-weight:700; flex-shrink:0; margin-top:1px; }
.plan-btn {
  display:block; text-align:center; padding:13px;
  border-radius:var(--r); font-size:14px; font-weight:800;
  border:2px solid var(--line); color:var(--ink);
  cursor:pointer; font-family:inherit;
  background:transparent; width:100%;
  transition:all .2s; text-decoration:none;
}
.plan-btn:hover { border-color:var(--gold); color:var(--gold); }
.plan-btn.gold   { background:var(--gold); border-color:var(--gold); color:#fff; }
.plan-btn.gold:hover { background:var(--gold-l); border-color:var(--gold-l); color:var(--ink); }
.guarantee {
  margin-top:36px; padding:20px 28px;
  border-left:var(--rule) solid var(--gold);
  background:var(--gold-bg);
  border-radius:0 var(--r) var(--r) 0;
  display:flex; align-items:center; gap:14px;
  font-size:15px; font-weight:600;
}
.g-icon { font-size:26px; flex-shrink:0; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background:var(--ink);
  border-top:var(--rule) solid var(--gold);
  padding:clamp(32px,5vw,48px) clamp(20px,4vw,48px);
}
.footer-inner {
  max-width:var(--max-w); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
}
.footer-logo  { font-family:'Sentient',serif; font-size:18px; font-weight:900; color:#FAF7F1; }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { font-size:13px; color:#6A6A7A; text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--gold); }
.footer-copy  { font-size:12px; color:#4A4A5A; }

/* ─── AUDIT WIDGET ───────────────────────────────────────────── */
.widget {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:0 8px 32px rgba(0,0,0,.08);
}
.widget-bar {
  height:var(--rule);
  background:linear-gradient(90deg,var(--gold) 0%,var(--gold-l) 60%,var(--gold) 100%);
  background-size:200% 100%;
  animation:shimbar 2.4s linear infinite;
}
@keyframes shimbar {
  0%   { background-position:200% 0; }
  100% { background-position:-200% 0; }
}
.widget-head {
  padding:18px 24px 14px;
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
}
.widget-title {
  font-size:11px; font-weight:800;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold);
  display:flex; align-items:center; gap:8px;
}
.widget-body  { padding:24px; }
.widget-prompt{ font-size:14px; color:var(--ink-m); line-height:1.6; margin-bottom:18px; }
.input-row    { display:flex; gap:8px; }
.audit-input  {
  flex:1; padding:13px 14px;
  border:1.5px solid var(--line); border-radius:var(--r);
  font-size:14px; color:var(--ink);
  background:var(--canvas); font-family:inherit;
  outline:none; transition:border-color .2s;
}
.audit-input:focus { border-color:var(--gold); background:var(--surface); }
.input-hint   { font-size:11px; color:var(--ink-l); text-align:center; margin-top:8px; }
.scan-btn {
  background:var(--gold); color:#fff;
  border:none; padding:13px 18px;
  border-radius:var(--r); font-size:14px; font-weight:800;
  cursor:pointer; font-family:inherit;
  transition:background .2s; white-space:nowrap;
}
.scan-btn:hover { background:var(--gold-l); color:var(--ink); }
.scan-biz-line { font-size:13px; color:var(--ink-m); margin-bottom:16px; }
.steps { list-style:none; }
.step {
  display:flex; align-items:center; gap:12px;
  padding:10px 0; border-bottom:1px solid var(--line);
  font-size:14px; color:var(--ink-m);
  opacity:.3; transition:opacity .4s, color .4s;
}
.step:last-child { border-bottom:none; }
.step.active { opacity:1; color:var(--ink); }
.step.done   { opacity:1; color:var(--win); }
.step-icon   { width:22px; text-align:center; font-size:15px; flex-shrink:0; }
.spin        { animation:spin .7s linear infinite; display:inline-block; }
@keyframes spin { 100% { transform:rotate(360deg); } }

/* Score ring */
.score-row   { display:flex; align-items:center; gap:20px; margin-bottom:20px; }
.ring        { position:relative; width:96px; height:96px; flex-shrink:0; }
.ring svg    { transform:rotate(-90deg); }
.r-bg        { fill:none; stroke:var(--line); stroke-width:8; }
.r-fill      { fill:none; stroke:var(--loss); stroke-width:8; stroke-linecap:round; stroke-dasharray:264; stroke-dashoffset:264; transition:stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1); }
.ring-center { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.ring-num    { font-family:'Sentient',serif; font-size:26px; font-weight:900; color:var(--ink); line-height:1; }
.ring-sub    { font-size:10px; color:var(--ink-l); font-weight:600; }
.score-meta h3 { font-family:'Sentient',serif; font-size:18px; font-weight:900; margin-bottom:4px; }
.score-meta p  { font-size:12px; color:var(--ink-l); }
.score-tag   {
  margin-top:6px; display:inline-block;
  background:var(--loss-bg); color:var(--loss);
  font-size:10px; font-weight:800;
  letter-spacing:.06em; text-transform:uppercase;
  padding:3px 8px; border-radius:3px;
  border:1px solid #F0C0B8;
}
.leak-card   {
  border-left:var(--rule) solid var(--loss);
  background:var(--loss-bg);
  padding:14px 16px 14px 18px;
  border-radius:0 var(--r) var(--r) 0;
  margin-bottom:16px;
}
.leak-label  { font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--loss); margin-bottom:6px; }
.leak-text   { font-size:13px; color:var(--ink); line-height:1.55; }
.pack-card   {
  border-left:var(--rule) solid var(--win);
  background:var(--win-bg);
  padding:14px 16px 14px 18px;
  border-radius:0 var(--r) var(--r) 0;
  margin-bottom:20px;
}
.pack-label  { font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--win); margin-bottom:10px; }
.pack-list   { list-style:none; }
.pack-li     { display:flex; align-items:center; gap:8px; padding:5px 0; border-bottom:1px solid rgba(0,0,0,.06); font-size:12px; transition:all .5s; }
.pack-li:last-child { border-bottom:none; }
.rk          { width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:900; color:#fff; flex-shrink:0; }
.r1  { background:#1A73E8; }
.r2  { background:#555; }
.r3  { background:#888; }
.ry  { background:var(--loss); }
.ry2 { background:var(--gold); }
.pack-biz    { flex:1; font-weight:600; }
.pack-stars  { color:#E8A000; font-size:10px; }
.pack-rev    { font-size:10px; color:var(--ink-l); }
.result-cta  {
  width:100%; background:var(--gold); color:#fff;
  border:none; padding:15px; border-radius:var(--r);
  font-size:14px; font-weight:800;
  cursor:pointer; font-family:inherit;
  transition:background .2s;
  display:flex; align-items:center; justify-content:center; gap:6px;
  text-decoration:none;
}
.result-cta:hover { background:var(--gold-l); color:var(--ink); }

/* ─── REAL-DATA AUDIT PANEL ──────────────────────────────────── */
.real-header {
  display:flex; align-items:center; gap:8px;
  margin-bottom:14px;
}
.real-biz-name {
  font-family:'Sentient',serif; font-size:17px; font-weight:900;
  flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.real-live-tag {
  font-size:9px; font-weight:800; letter-spacing:.08em;
  text-transform:uppercase; color:var(--win);
  background:var(--win-bg); padding:3px 7px; border-radius:3px;
  flex-shrink:0;
}
.real-stats-row {
  display:flex; align-items:stretch; gap:0;
  border:1px solid rgba(0,0,0,.1); border-radius:var(--r);
  overflow:hidden; margin-bottom:14px;
}
.real-stat {
  flex:1; padding:12px 8px; text-align:center;
}
.real-stat-div {
  width:1px; background:rgba(0,0,0,.1); flex-shrink:0;
}
.real-stat-val {
  font-family:'Sentient',serif; font-size:22px; font-weight:900;
  color:var(--ink); line-height:1;
}
.real-stat-label {
  font-size:10px; color:var(--ink-l); margin-top:4px;
  font-weight:600; letter-spacing:.04em;
}
.est-tag {
  font-size:8px; font-style:italic;
  color:var(--ink-l); font-weight:400;
}

/* ─── PAGE HERO GENERIC ─────────────────────────────────────── */
.page-hero {
  background:var(--ink);
  padding:clamp(56px,8vw,96px) clamp(20px,4vw,48px);
  text-align:center;
}
.page-hero-inner { max-width:760px; margin:0 auto; }
.page-hero p    { font-size:16px; color:#6A6A7A; margin-top:16px; line-height:1.7; }

/* ─── CONTENT SECTION WRAPPER ───────────────────────────────── */
.content-section {
  padding:clamp(56px,8vw,96px) clamp(20px,4vw,48px);
}
.content-inner { max-width:var(--max-w); margin:0 auto; }

/* ─── STEP TIMELINE (how-it-works) ──────────────────────────── */
.timeline { display:flex; flex-direction:column; gap:0; margin-top:48px; }
.timeline-step {
  display:grid; grid-template-columns:64px 1fr;
  gap:0 28px; position:relative;
}
.timeline-step::before {
  content:'';
  position:absolute; left:31px; top:64px; bottom:-1px;
  width:2px; background:var(--line);
}
.timeline-step:last-child::before { display:none; }
.t-num {
  width:64px; height:64px; border-radius:50%;
  background:var(--gold-bg);
  border:2px solid var(--gold-l);
  display:flex; align-items:center; justify-content:center;
  font-family:'Sentient',serif;
  font-size:22px; font-weight:900;
  color:var(--gold);
  flex-shrink:0; z-index:1;
}
.t-body { padding-bottom:40px; }
.t-title { font-family:'Sentient',serif; font-size:22px; font-weight:900; margin-bottom:8px; }
.t-desc  { font-size:14px; color:var(--ink-m); line-height:1.7; max-width:560px; }
.t-card  { margin-top:16px; }

/* ─── DASHBOARD PREVIEW ─────────────────────────────────────── */
.dash-preview {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.1);
  margin-top:48px;
}
.dash-bar {
  background:var(--ink); padding:14px 20px;
  display:flex; align-items:center; gap:8px;
}
.dash-dot { width:10px; height:10px; border-radius:50%; }
.dash-dot.red  { background:#FF5F57; }
.dash-dot.yel  { background:#FEBC2E; }
.dash-dot.grn  { background:#28C840; }
.dash-title    { flex:1; text-align:center; font-size:12px; color:#6A6A7A; }
.dash-content  { padding:28px; display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; }
.dash-metric   {
  background:var(--canvas);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:20px 16px; text-align:center;
}
.dash-metric-num { font-family:'Sentient',serif; font-size:36px; font-weight:900; color:var(--ink); }
.dash-metric-label { font-size:11px; color:var(--ink-l); margin-top:4px; }
.dash-metric-delta { font-size:12px; font-weight:700; margin-top:8px; }
.delta-up   { color:var(--win); }
.delta-down { color:var(--loss); }

/* ─── VIDEO BLOCK ────────────────────────────────────────────── */
.video-block {
  background:var(--ink);
  border-radius:8px;
  aspect-ratio:16/9;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:16px; cursor:pointer;
  position:relative; overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  margin-top:48px;
}
.video-block::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 50%, rgba(184,137,42,.12) 0%, transparent 70%);
}
.play-btn {
  width:72px; height:72px; border-radius:50%;
  background:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size:28px;
  box-shadow:0 8px 32px rgba(184,137,42,.4);
  position:relative; z-index:1;
  transition:transform .2s, background .2s;
}
.video-block:hover .play-btn { transform:scale(1.08); background:var(--gold-l); }
.video-label { font-size:16px; font-weight:700; color:#FAF7F1; position:relative; z-index:1; }
.video-sub   { font-size:13px; color:#6A6A7A; position:relative; z-index:1; }

/* ─── APPROVE LOOP ───────────────────────────────────────────── */
.loop-strip {
  background:var(--surf-w);
  border:1px solid var(--line);
  border-radius:8px; padding:36px 32px;
  margin-top:48px;
  display:grid; grid-template-columns:1fr 1fr;
  gap:32px; align-items:center;
}
.loop-steps { list-style:none; }
.loop-step {
  display:flex; gap:14px;
  padding:12px 0; border-bottom:1px solid var(--line);
  font-size:14px; color:var(--ink-m);
}
.loop-step:last-child { border-bottom:none; }
.loop-icon { font-size:18px; flex-shrink:0; margin-top:1px; }
.loop-text strong { display:block; font-weight:700; color:var(--ink); margin-bottom:2px; font-size:14px; }

/* ─── FORM ───────────────────────────────────────────────────── */
.form-card {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:8px;
  padding:clamp(28px,4vw,48px);
  max-width:560px; margin:0 auto;
  box-shadow:0 8px 32px rgba(0,0,0,.06);
}
.form-label  { font-size:13px; font-weight:700; color:var(--ink); margin-bottom:6px; display:block; }
.form-input  {
  width:100%; padding:13px 14px;
  border:1.5px solid var(--line);
  border-radius:var(--r);
  font-size:14px; color:var(--ink);
  background:var(--canvas); font-family:inherit;
  outline:none; transition:border-color .2s;
  margin-bottom:16px;
}
.form-input:focus { border-color:var(--gold); background:var(--surface); }
.form-select {
  width:100%; padding:13px 14px;
  border:1.5px solid var(--line);
  border-radius:var(--r);
  font-size:14px; color:var(--ink);
  background:var(--canvas); font-family:inherit;
  outline:none; cursor:pointer;
  margin-bottom:16px;
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
}
.form-select:focus { border-color:var(--gold); }
.form-submit {
  width:100%; background:var(--gold); color:#fff;
  border:none; padding:15px; border-radius:var(--r);
  font-size:15px; font-weight:800;
  cursor:pointer; font-family:inherit;
  transition:background .2s;
}
.form-submit:hover { background:var(--gold-l); color:var(--ink); }
.form-note { font-size:12px; color:var(--ink-l); text-align:center; margin-top:12px; }

/* ─── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background:var(--gold);
  padding:clamp(40px,6vw,64px) clamp(20px,4vw,48px);
  text-align:center;
}
.cta-band h2 { font-family:'Sentient',serif; font-size:clamp(28px,4vw,48px); font-weight:900; color:#fff; margin-bottom:12px; }
.cta-band p  { font-size:16px; color:rgba(255,255,255,.8); margin-bottom:32px; }
.cta-band .btn-white {
  background:#fff; color:var(--gold);
  padding:15px 36px; border-radius:var(--r);
  font-size:15px; font-weight:800;
  text-decoration:none; display:inline-flex;
  align-items:center; gap:8px;
  transition:background .2s;
}
.cta-band .btn-white:hover { background:var(--gold-bg); }
.cta-band .trust-row { justify-content:center; }
.cta-band .trust-row span { color:rgba(255,255,255,.75); }
.cta-band .trust-ok { color:#fff; }

/* ─── COMPARE TABLE ─────────────────────────────────────────── */
.compare-table { width:100%; border-collapse:collapse; margin-top:32px; }
.compare-table th, .compare-table td { padding:12px 16px; text-align:left; border-bottom:1px solid var(--line); font-size:13px; }
.compare-table th { font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-l); background:var(--surf-w); }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align:center; }
.compare-table td:first-child { color:var(--ink-m); }
.compare-table tr:hover td { background:var(--gold-bg); }
.check-yes { color:var(--win); font-weight:800; font-size:16px; }
.check-no  { color:var(--ink-l); font-size:16px; }
.th-feat   { background:var(--gold) !important; color:#fff !important; border-radius:var(--r) var(--r) 0 0; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { margin-top:40px; }
.faq-item {
  border-bottom:1px solid var(--line);
  padding:0;
}
.faq-q {
  width:100%; text-align:left; padding:18px 0;
  background:none; border:none;
  font-family:inherit; font-size:15px; font-weight:700;
  color:var(--ink); cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.faq-q:hover { color:var(--gold); }
.faq-arrow { font-size:18px; color:var(--gold); transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a {
  font-size:14px; color:var(--ink-m);
  line-height:1.7; max-height:0;
  overflow:hidden; transition:max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height:400px; padding-bottom:18px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:900px) {
  .layers-grid    { grid-template-columns:1fr; }
  .proof-grid     { grid-template-columns:1fr; }
  .pricing-grid   { grid-template-columns:1fr; max-width:440px; margin-left:auto; margin-right:auto; }
  .roi-grid       { grid-template-columns:1fr; }
  .footer-inner   { flex-direction:column; align-items:flex-start; }
  .dash-content   { grid-template-columns:1fr; }
  .loop-strip     { grid-template-columns:1fr; }
  .compare-table  { font-size:12px; }
  .compare-table th, .compare-table td { padding:10px 10px; }
}
@media(max-width:600px) {
  .input-row      { flex-direction:column; }
  .cta-row        { flex-direction:column; align-items:stretch; }
  .guarantee      { flex-direction:column; gap:10px; }
  .proof-grid     { grid-template-columns:1fr; }
  .score-row      { flex-direction:column; align-items:flex-start; }
}

/* ─── HERO LAYOUT ───────────────────────────────────────────── */
.hero-wrap {
  max-width:var(--max-w); margin:0 auto;
  padding:clamp(48px,7vw,88px) clamp(20px,4vw,48px) clamp(56px,8vw,96px);
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:start;
}
.hero-left .loss-card {
  border-left:var(--rule) solid var(--loss);
  background:var(--loss-bg);
  padding:20px 20px 20px 24px;
  border-radius:0 var(--r) var(--r) 0;
  margin-bottom:28px;
  display:flex; gap:20px; align-items:center;
}
.loss-big { font-family:'Sentient',serif; font-size:52px; font-weight:900; color:var(--loss); line-height:1; white-space:nowrap; }
.loss-copy { font-size:14px; color:var(--ink); line-height:1.6; }
.loss-copy strong { display:block; font-size:15px; font-weight:700; margin-bottom:4px; }
.hero-subhead { font-size:17px; color:var(--ink-m); line-height:1.65; margin-bottom:24px; max-width:500px; }
.hero-body { font-size:16px; color:var(--ink-m); line-height:1.7; margin-bottom:32px; }
.cta-row   { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }

@media(max-width:900px) {
  .hero-wrap { grid-template-columns:1fr; gap:40px; }
  .loss-big  { font-size:36px; }
  .hero-left .loss-card { flex-direction:column; gap:12px; }
}

/* ─── MESSAGING PILLARS ─────────────────────────────────────── */
.pillars-section {
  padding:clamp(48px,7vw,80px) clamp(20px,4vw,48px);
  background:var(--surface);
}
.pillars-inner { max-width:var(--max-w); margin:0 auto; }
.pillars-grid  {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:24px; margin-top:40px;
}
.pillar-card {
  padding:32px 28px;
  background:var(--canvas);
  border:1px solid var(--line);
  border-radius:var(--r);
}
.pillar-icon  { font-size:32px; margin-bottom:16px; }
.pillar-title { font-family:'Sentient',serif; font-size:20px; font-weight:900; margin-bottom:10px; }
.pillar-desc  { font-size:14px; color:var(--ink-m); line-height:1.7; }
@media(max-width:700px) {
  .pillars-grid { grid-template-columns:1fr; }
}

/* ─── HOW IT WORKS TEASER (homepage) ───────────────────────── */
.how-teaser {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--r); overflow:hidden;
  margin-top:40px;
}
.teaser-step {
  background:var(--surface);
  padding:24px 20px; text-align:center;
}
.teaser-num  { font-family:'Sentient',serif; font-size:36px; font-weight:900; color:var(--gold); line-height:1; margin-bottom:8px; }
.teaser-name { font-size:13px; font-weight:800; color:var(--ink); margin-bottom:6px; }
.teaser-desc { font-size:12px; color:var(--ink-l); line-height:1.5; }
@media(max-width:700px) {
  .how-teaser { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:400px) {
  .how-teaser { grid-template-columns:1fr; }
}

/* ─── ONBOARDING STEPS (get-started) ───────────────────────── */
.onboard-steps {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; margin-top:40px;
}
.onboard-step {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:28px 24px;
}
.onboard-num  { font-family:'Sentient',serif; font-size:44px; font-weight:900; color:var(--gold); line-height:1; margin-bottom:12px; }
.onboard-title{ font-size:16px; font-weight:800; margin-bottom:8px; }
.onboard-desc { font-size:13px; color:var(--ink-m); line-height:1.65; }
@media(max-width:700px) {
  .onboard-steps { grid-template-columns:1fr; }
}
