/* ═══════════════════════════════════════════════════
   MARVELOUS PRO — site.css  (dark quant aesthetic)
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:    #05070a;
  --bg2:   #0a0e14;
  --bg3:   #0f1620;
  --bg4:   #141e2a;
  --border:    #1a2840;
  --border-hi: #2a4060;
  --text1: #f0f4f8;
  --text2: #c8d8e8;
  --text3: #7a9bb8;
  --text4: #3d5870;
  --gold:  #f0c040;
  --gold2: #ffde80;
  --gold-glow: rgba(240,192,64,0.22);
  --gold-dim:  rgba(240,192,64,0.08);
  --btc:   #f7931a;
  --go:    #00ff9d;
  --go-dim: rgba(0,255,157,0.12);
  --stop:  #ff3b4e;
  --blue:  #38bdf8;
  --purple:#a78bfa;
  --font-mono: 'DM Mono', ui-monospace, monospace;
  --font-cond: 'Barlow Condensed', system-ui, sans-serif;
  --r: 10px;
  --r2: 16px;
  --max: 1160px;
  --glow-gold: 0 0 40px rgba(240,192,64,0.3), 0 0 80px rgba(240,192,64,0.1);
  --glow-go:   0 0 30px rgba(0,255,157,0.3), 0 0 60px rgba(0,255,157,0.1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text2);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: var(--gold2); opacity: 1; }
img { max-width: 100%; display: block; }
code { font-family: var(--font-mono); background: var(--bg3); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; color: var(--gold2); }

.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }

/* ── GLOBAL GRID BACKGROUND ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(240,192,64,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,192,64,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(240,192,64,0.04) 0%, transparent 70%);
}

/* ── SCANLINES ── */
.scanlines {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
}

/* ──────────────────────────────────
   NAVIGATION
────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,7,10,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.site-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.4), transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text1);
  line-height: 1;
}
.logo::before {
  content: '';
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: url('../assets/lion-icon.png?v=20260516-1430') center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(240,192,64,0.25), 0 0 22px rgba(240,192,64,0.18);
}
.logo span { display: inline; color: var(--gold); }
.logo:hover { color: var(--text1); }
.nav-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--text3); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: center; transition: transform 0.2s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #c8960a);
  color: #050701 !important; font-weight: 700;
  padding: 10px 20px; border-radius: var(--r);
  letter-spacing: 0.06em; opacity: 1 !important;
  box-shadow: 0 4px 20px rgba(240,192,64,0.25);
  transition: transform 0.15s, box-shadow 0.15s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(240,192,64,0.4) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text1); padding: 8px 12px; border-radius: var(--r); cursor: pointer; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--bg2); padding: 16px;
    border-bottom: 1px solid var(--border); gap: 12px;
  }
  .nav-links.open { display: flex; }
}

/* ──────────────────────────────────
   HERO
────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
}
#hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero > .container { position: relative; z-index: 2; }

/* vignette bottom on hero */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* HUD corners */
.hud-corner {
  position: absolute; z-index: 3;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em;
  color: rgba(240,192,64,0.4); line-height: 1.8; pointer-events: none;
  transition: color 0.5s;
}
.hud-tl { top: 24px; left: 24px; }
.hud-tr { top: 24px; right: 24px; text-align: right; }
.hud-bl { bottom: 40px; left: 24px; }
.hud-br { bottom: 40px; right: 24px; text-align: right; }
@media (max-width: 768px) { .hud-corner { display: none; } }

/* Cross-hair center lines */
.hero-line-h, .hero-line-v {
  position: absolute; z-index: 1; pointer-events: none; opacity: 0.08;
}
.hero-line-h { top: 50%; left: 0; right: 0; height: 1px; background: var(--gold); transform: translateY(-50%); }
.hero-line-v { left: 50%; top: 0; bottom: 0; width: 1px; background: var(--gold); transform: translateX(-50%); }

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold); opacity: 0.6;
}

h1, h2, h3 {
  font-family: var(--font-cond); color: var(--text1);
  line-height: 1.05; letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 4.4rem); font-weight: 900; margin-bottom: 20px; }
h1 em { font-style: normal; color: var(--gold); text-shadow: var(--glow-gold); }
h1 .hl { color: var(--go); text-shadow: var(--glow-go); }
.lead { font-size: 15px; color: var(--text3); max-width: 50ch; margin-bottom: 32px; line-height: 1.8; }
.lead strong { color: var(--text2); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
  font-family: var(--font-mono);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c08000);
  color: #050300; box-shadow: 0 6px 28px var(--gold-glow);
}
.btn-primary:hover { box-shadow: 0 10px 40px rgba(240,192,64,0.45); color: #050300; }
.btn-ghost {
  border-color: var(--border-hi); color: var(--text2); background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.btn-go {
  border-color: rgba(0,255,157,0.35); color: var(--go); background: var(--go-dim);
}
.btn-go:hover { box-shadow: var(--glow-go); }

.trust-row { display: flex; flex-wrap: wrap; gap: 20px; font-size: 10px; color: var(--text4); letter-spacing: 0.06em; }
.trust-row strong { color: var(--text3); }
.trust-sep { color: var(--border-hi); }

/* ── HERO METRICS ── */
.hero-stats,
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(72,93,118,0.55);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12,18,29,0.92), rgba(8,12,19,0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 20px 45px rgba(0,0,0,0.28);
}
.hero-stats::-webkit-scrollbar,
.hero-metrics::-webkit-scrollbar { display: none; }
.hero-stats .hero-metric,
.hero-metric {
  min-width: 0;
  text-align: center;
  padding: 19px 10px 18px;
  border-right: 1px solid rgba(72,93,118,0.55);
  background: transparent;
  box-shadow: none;
}
.hero-stats .hero-metric:last-child,
.hero-metric:last-child {
  border-right: 0;
}
.hero-stats .stat-val,
.hero-metric .stat-val {
  font-family: var(--font-cond); font-size: clamp(1.55rem, 2.6vw, 2.35rem); font-weight: 900;
  color: var(--gold); line-height: 1;
  text-shadow: 0 0 18px rgba(240,192,64,0.18);
}
.hero-stats .stat-lbl,
.hero-metric .stat-lbl { font-size: clamp(6px, 0.9vw, 9px); color: var(--text4); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 10px; white-space: nowrap; }
@media (max-width: 500px) {
  .logo { font-size: 18px; gap: 8px; }
  .logo::before { width: 34px; height: 34px; flex-basis: 34px; border-radius: 10px; }
  .hero-stats,
  .hero-metrics { margin-top: 14px; border-radius: 14px; }
  .hero-stats .hero-metric,
  .hero-metric { padding: 12px 4px; text-align: center; }
  .hero-stats .stat-val,
  .hero-metric .stat-val { font-size: 1.15rem; }
  .hero-stats .stat-lbl,
  .hero-metric .stat-lbl { font-size: 5px; letter-spacing: 0.01em; margin-top: 7px; }
}

/* ── DASHBOARD MOCK ── */
.mock-panel {
  background: rgba(10,14,20,0.8);
  border: 1px solid var(--border-hi);
  border-radius: var(--r2); padding: 24px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(240,192,64,0.08);
  backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.mock-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.mock-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.mock-header-title { font-family: var(--font-cond); font-size: 0.75rem; color: var(--text4); letter-spacing: 0.12em; }
.mock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--go); box-shadow: 0 0 8px var(--go); animation: pulse-go 2s ease infinite; }
.mock-verdict {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-radius: var(--r); margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(0,255,157,0.06), rgba(0,255,157,0.02));
  border: 1px solid rgba(0,255,157,0.3);
  box-shadow: inset 0 0 30px rgba(0,255,157,0.04);
}
.mock-verdict .v {
  font-family: var(--font-cond); font-size: 2rem; font-weight: 900; color: var(--go);
  text-shadow: var(--glow-go); letter-spacing: 0.04em;
}
.mock-verdict-meta { text-align: right; }
.mock-verdict-meta .rr { font-family: var(--font-cond); font-size: 1.2rem; color: var(--gold); }
.mock-verdict-meta .sess { font-size: 9px; color: var(--go); letter-spacing: 0.1em; }
.mock-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.mock-cell {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 8px; text-align: center;
}
.mock-cell .lbl { font-size: 8px; color: var(--text4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.mock-cell .val { font-family: var(--font-cond); font-size: 1rem; color: var(--text1); }
.mock-cell.active { border-color: rgba(240,192,64,0.35); }
.mock-cell.active .val { color: var(--gold); }
.mock-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mock-tag {
  font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px; border: 1px solid;
}
.mock-tag.go { color: var(--go); border-color: rgba(0,255,157,0.3); background: rgba(0,255,157,0.05); }
.mock-tag.gold { color: var(--gold); border-color: rgba(240,192,64,0.3); background: rgba(240,192,64,0.05); }
.mock-tag.blue { color: var(--blue); border-color: rgba(56,189,248,0.3); background: rgba(56,189,248,0.05); }

/* ──────────────────────────────────
   SIGNAL TICKER
────────────────────────────────── */
.signal-ticker {
  border-block: 1px solid var(--border);
  background: rgba(0,0,0,0.5); overflow: hidden; padding: 11px 0;
  position: relative;
}
.signal-ticker::before, .signal-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.signal-ticker::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.signal-ticker::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.signal-ticker-inner {
  display: flex; gap: 52px; white-space: nowrap;
  animation: ticker-scroll 28s linear infinite; width: max-content;
}
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick {
  font-size: 10px; letter-spacing: 0.1em; color: rgba(240,192,64,0.6);
  display: flex; align-items: center; gap: 10px;
}
.tick::before { content: '◆'; font-size: 5px; color: rgba(240,192,64,0.3); }
.tick .up { color: var(--go); }
.tick .dn { color: var(--stop); }
.tick .hi { color: var(--gold); }

/* ──────────────────────────────────
   SECTIONS
────────────────────────────────── */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.section-head p { color: var(--text3); font-size: 14px; }
.section-head .eyebrow { justify-content: center; }
.section-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ──────────────────────────────────
   FEATURE / QUANT CARDS
────────────────────────────────── */
.quant-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px;
}
.quant-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.quant-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.quant-card:hover { border-color: rgba(240,192,64,0.3); transform: translateY(-4px); }
.quant-card:hover::before { opacity: 1; }
.quant-card-icon {
  font-size: 22px; margin-bottom: 16px; display: block;
}
.quant-card h3 {
  font-family: var(--font-cond); font-size: 1.15rem; color: var(--text1);
  margin-bottom: 10px; letter-spacing: 0.04em;
}
.quant-card p { font-size: 12px; color: var(--text3); line-height: 1.7; }
.chip {
  display: inline-block; margin-top: 14px; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--go); border: 1px solid rgba(0,255,157,0.25);
  padding: 4px 10px; border-radius: 4px; background: var(--go-dim);
}
.chip.gold { color: var(--gold); border-color: rgba(240,192,64,0.25); background: var(--gold-dim); }
.chip.blue { color: var(--blue); border-color: rgba(56,189,248,0.25); background: rgba(56,189,248,0.06); }

/* ──────────────────────────────────
   PRODUCT CARDS
────────────────────────────────── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px;
}
.card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 28px 24px; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r2);
  opacity: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240,192,64,0.08), transparent 60%);
  transition: opacity 0.3s; pointer-events: none;
}
.card:hover { border-color: rgba(240,192,64,0.35); transform: translateY(-3px); box-shadow: 0 16px 60px rgba(0,0,0,0.4); }
.card:hover::after { opacity: 1; }
.card .tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 5px; margin-bottom: 14px; font-weight: 600;
}
.tag-gold { background: rgba(240,192,64,0.1); color: var(--gold); border: 1px solid rgba(240,192,64,0.25); }
.tag-btc  { background: rgba(247,147,26,0.1); color: var(--btc);  border: 1px solid rgba(247,147,26,0.25); }
.tag-scalp{ background: rgba(56,189,248,0.08); color: var(--blue); border: 1px solid rgba(56,189,248,0.2); }
.tag-swing{ background: rgba(167,139,250,0.08); color: var(--purple); border: 1px solid rgba(167,139,250,0.2); }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card ul { list-style: none; margin-top: 14px; }
.card li { font-size: 12px; color: var(--text3); padding: 5px 0; padding-left: 18px; position: relative; }
.card li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }

/* FEATURED product card */
.card.featured {
  border-color: rgba(240,192,64,0.5);
  box-shadow: 0 0 0 1px rgba(240,192,64,0.1), 0 20px 80px rgba(0,0,0,0.5);
  background: linear-gradient(160deg, var(--bg3), var(--bg2));
}
.card.featured .badge-top {
  position: absolute; top: 0; right: 20px;
  background: var(--gold); color: #030200; font-size: 9px; font-weight: 700;
  padding: 4px 10px; border-radius: 0 0 6px 6px; letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ──────────────────────────────────
   PRICING
────────────────────────────────── */
.billing-toggle {
  display: flex; justify-content: center; align-items: center;
  gap: 14px; margin-bottom: 36px;
}
.billing-toggle span { font-size: 12px; color: var(--text4); letter-spacing: 0.06em; }
.billing-toggle .active { color: var(--gold); }
.toggle-switch {
  width: 50px; height: 28px; background: var(--bg3); border: 1px solid var(--border-hi);
  border-radius: 999px; position: relative; cursor: pointer; transition: border-color 0.2s;
}
.toggle-switch::after {
  content: ''; position: absolute; top: 4px; left: 4px; width: 18px; height: 18px;
  background: var(--gold); border-radius: 50%; transition: transform 0.25s; box-shadow: 0 0 8px rgba(240,192,64,0.5);
}
.toggle-switch.yearly::after { transform: translateX(22px); }
.save-badge {
  font-size: 10px; background: var(--go); color: #001a0a;
  padding: 3px 9px; border-radius: 4px; font-weight: 700; letter-spacing: 0.05em;
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; align-items: start; }
.price-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 30px; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-dim), 0 24px 70px rgba(0,0,0,0.5); background: linear-gradient(160deg, var(--bg3), var(--bg2)); }
.price-card .popular {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #030200; font-size: 9px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.price-card .sub { font-size: 11px; color: var(--text4); margin-bottom: 20px; min-height: 34px; }
.price-amount { font-family: var(--font-cond); font-size: 3rem; font-weight: 900; color: var(--text1); line-height: 1; }
.price-amount small { font-size: 1rem; color: var(--text4); font-weight: 400; }
.price-note { font-size: 11px; color: var(--text4); margin: 8px 0 22px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: 16px; }
.price-features { list-style: none; font-size: 12px; margin-top: 20px; }
.price-features li { padding: 7px 0; border-top: 1px solid var(--border); color: var(--text3); display: flex; gap: 8px; align-items: flex-start; }
.price-features li:first-child { border-top: none; }
.price-features li::before { content: '✓'; color: var(--go); flex-shrink: 0; font-size: 11px; margin-top: 2px; }
.pricing-section { margin-bottom: 56px; }
.pricing-section > h2 { font-family: var(--font-cond); font-size: 1.6rem; margin-bottom: 8px; }
.pricing-section > p.subhead { color: var(--text4); font-size: 12px; margin-bottom: 22px; max-width: 70ch; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.catalog-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 20px; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.catalog-card:hover { border-color: rgba(240,192,64,0.3); transform: translateY(-2px); }
.catalog-card h4 { font-family: var(--font-cond); font-size: 1rem; color: var(--text1); margin-bottom: 4px; }
.catalog-card .meta { font-size: 11px; color: var(--text4); margin-bottom: 12px; flex: 1; }
.catalog-card .price-line { font-family: var(--font-cond); font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.catalog-card .btn { width: 100%; justify-content: center; font-size: 10px; padding: 10px; }

/* ──────────────────────────────────
   FAQ
────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hi); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--text1); font-family: var(--font-cond); font-size: 1.15rem;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q span {
  color: var(--text4); font-size: 1.4rem; font-family: var(--font-mono); font-weight: 300;
  flex-shrink: 0; transition: transform 0.3s, color 0.2s;
}
.faq-a {
  display: none; padding: 0 0 22px;
  color: var(--text3); font-size: 13px; line-height: 1.8;
  animation: faq-open 0.25s ease;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q span { transform: rotate(45deg); color: var(--gold); }
.faq-a a { color: var(--gold); }
.faq-a p { margin-bottom: 10px; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.caps {
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text4); display: flex; align-items: center; gap: 8px;
}
.caps::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ──────────────────────────────────
   HOW IT WORKS — TIMELINE
────────────────────────────────── */
.timeline {
  position: relative; max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.timeline::before {
  content: ''; position: absolute; left: 31px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--border), transparent);
}
@media (max-width: 640px) { .timeline::before { left: 19px; } }
.timeline-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding-bottom: 48px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-num {
  width: 64px; height: 64px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2); border: 1px solid var(--border-hi);
  font-family: var(--font-cond); font-size: 1.4rem; font-weight: 900; color: var(--gold);
  position: relative; z-index: 1; transition: border-color 0.3s, box-shadow 0.3s;
}
.timeline-item .timeline-body {
  opacity: 0.45;
  transform: translateX(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.timeline-item.active .timeline-body {
  opacity: 1;
  transform: none;
}
.timeline-item.active .timeline-num {
  border-color: var(--gold); box-shadow: 0 0 20px rgba(240,192,64,0.3);
}
@media (max-width: 640px) { .timeline-num { width: 40px; height: 40px; font-size: 1rem; } .timeline-item { grid-template-columns: 40px 1fr; gap: 16px; } }
.timeline-body { padding-top: 12px; }
.timeline-body h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text1); }
.timeline-body p { font-size: 13px; color: var(--text3); line-height: 1.8; }
.timeline-body .tl-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.timeline-body .tl-tag {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px;
  border-radius: 4px; border: 1px solid var(--border-hi); color: var(--text4);
}

/* ──────────────────────────────────
   TABLES
────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.compare-table th, .compare-table td {
  padding: 13px 14px; border: 1px solid var(--border); text-align: left;
}
.compare-table th { background: var(--bg3); color: var(--text4); font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; font-size: 10px; }
.compare-table tr:hover td { background: rgba(240,192,64,0.03); }
.compare-table .yes { color: var(--go); font-weight: 600; }

/* ──────────────────────────────────
   FORMS
────────────────────────────────── */
.form-panel {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 36px; max-width: 540px; margin: 0 auto;
}
.form-panel label { display: block; font-size: 10px; color: var(--text4); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.1em; }
.form-panel input, .form-panel select, .form-panel textarea {
  width: 100%; margin-bottom: 18px; padding: 13px 15px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  color: var(--text1); font-family: inherit; font-size: 14px; transition: border-color 0.2s;
}
.form-panel input:focus, .form-panel select:focus, .form-panel textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim);
}
.hubspot-embed { min-height: 420px; }

/* ──────────────────────────────────
   MISC UTILITY
────────────────────────────────── */
.note-box {
  background: var(--bg3); border: 1px solid var(--border-hi);
  border-left: 3px solid var(--gold); border-radius: var(--r);
  padding: 18px 22px; font-size: 12px; color: var(--text3); margin-bottom: 32px;
  line-height: 1.7;
}
.note-box strong { color: var(--gold); }

.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25; margin: 0;
}

/* CTA BAND */
.cta-band {
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: -40% -20% auto -20%; height: 100%;
  background: radial-gradient(ellipse at 50% 100%, rgba(240,192,64,0.08), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.cta-band p { color: var(--text3); max-width: 50ch; margin: 0 auto 32px; }

/* ──────────────────────────────────
   PAGE HERO (inner pages)
────────────────────────────────── */
.page-hero {
  padding: 64px 0 48px; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(240,192,64,0.05), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }

/* ──────────────────────────────────
   FOOTER
────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border); padding: 56px 0 28px;
  margin-top: 40px; position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.3), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-family: var(--font-cond); color: var(--text1); margin-bottom: 14px; font-size: 0.9rem; letter-spacing: 0.06em; }
.footer-grid a { display: block; color: var(--text4); font-size: 12px; padding: 4px 0; transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  font-size: 11px; color: var(--text4); text-align: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-tagline {
  font-family: var(--font-cond); font-size: 1.25rem; letter-spacing: 0.12em;
  color: var(--text1); margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-tagline::before {
  content: '';
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: url('../assets/lion-icon.png?v=20260516-1430') center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(240,192,64,0.22);
}
.footer-tagline span { color: var(--gold); }

/* ──────────────────────────────────
   LEGAL
────────────────────────────────── */
.legal-doc { max-width: 800px; margin: 0 auto; font-size: 13px; color: var(--text3); line-height: 1.8; }
.legal-doc .legal-alert { background: rgba(255,59,78,0.07); border: 1px solid rgba(255,59,78,0.3); border-radius: var(--r); padding: 18px 22px; margin-bottom: 28px; color: var(--text2); }
.legal-doc .legal-alert strong { color: var(--stop); }
.legal-doc h2 { font-family: var(--font-cond); font-size: 1.2rem; color: var(--text1); margin: 36px 0 12px; letter-spacing: 0.04em; }
.legal-doc h3 { font-family: var(--font-cond); font-size: 1rem; color: var(--text2); margin: 22px 0 8px; }
.legal-doc p { margin-bottom: 13px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 14px 1.25rem; }
.legal-doc li { margin-bottom: 7px; }
.legal-doc a { color: var(--gold); }
.legal-doc .meta { font-size: 11px; color: var(--text4); margin-bottom: 26px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.legal-nav a { font-size: 11px; padding: 7px 13px; border: 1px solid var(--border); border-radius: 5px; color: var(--text3); transition: border-color 0.2s, color 0.2s; }
.legal-nav a:hover { border-color: var(--gold); color: var(--gold); }

/* ──────────────────────────────────
   SCROLL REVEAL
────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ──────────────────────────────────
   ANIMATIONS
────────────────────────────────── */
@keyframes pulse-go {
  0%, 100% { box-shadow: 0 0 6px var(--go), 0 0 14px rgba(0,255,157,0.3); }
  50% { box-shadow: 0 0 12px var(--go), 0 0 30px rgba(0,255,157,0.5); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ──────────────────────────────────
   HERO TAGLINE
────────────────────────────────── */
.hero-tagline {
  font-family: var(--font-cond); font-size: clamp(13px,1.8vw,17px);
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text4); margin-top: 6px;
}
.hero-tagline em { font-style: normal; color: var(--gold); }

/* Hero stat badge */
.go-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,255,157,0.07); border: 1px solid rgba(0,255,157,0.25);
  border-radius: 999px; padding: 6px 14px 6px 10px; margin-bottom: 18px;
}
.go-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--go); animation: pulse-go 1.8s infinite; }
.go-badge span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--go); }

/* ──────────────────────────────────
   RESPONSIVE
────────────────────────────────── */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .hero { padding: 60px 0 48px; min-height: auto; }
  section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* collapse inline two-col grids used in products.html */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ──────────────────────────────────
   STEPS (legacy, keep for compat)
────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding-left: 52px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 36px; height: 36px;
  background: var(--bg3); border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-weight: 900; color: var(--gold); font-size: 1.1rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 7px; }
