:root {
  --bg: #0A0F1E;
  --bg-2: #0F1525;
  --bg-3: #141D30;
  --fg: #E8EDF5;
  --fg-muted: #8894A8;
  --accent: #00E5A0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --up: #00E5A0;
  --down: #FF4D6D;
  --flat: #8894A8;
  --border: rgba(255,255,255,0.07);
  --card: #0F1525;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.nav-tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 64px 80px;
  min-height: 100vh;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-metric-row {
  display: flex;
  gap: 40px;
}
.hero-metric {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
}
.metric-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 80px;
  line-height: 1.4;
}

/* TICKER */
.hero-ticker {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  align-self: center;
}
.ticker-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.ticker-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  display: grid;
  grid-template-columns: 72px 88px 60px 1fr;
  gap: 12px;
  align-items: start;
}
.ticker-row:last-child { border-bottom: none; }
.ticker-row.dim { opacity: 0.45; }
.ticker-sym { font-weight: 600; color: var(--fg); font-family: 'Syne', sans-serif; }
.ticker-val { color: var(--fg); }
.ticker-change { font-size: 13px; font-weight: 500; }
.ticker-change.up { color: var(--up); }
.ticker-change.down { color: var(--down); }
.ticker-change.flat { color: var(--flat); }
.ticker-signal {
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* PROBLEM */
.problem { padding: 100px 64px; }
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.problem-text p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stat-block { border-left: 2px solid var(--accent); padding-left: 20px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-desc { color: var(--fg-muted); font-size: 14px; line-height: 1.5; }

/* HOW */
.how {
  padding: 100px 64px;
  background: var(--bg-2);
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p { color: var(--fg-muted); font-size: 15px; line-height: 1.7; }

/* FEATURES */
.features { padding: 100px 64px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-2);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-3); }
.feature-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: monospace;
}
.feature-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p { color: var(--fg-muted); font-size: 14px; line-height: 1.65; }

/* EDGE */
.edge { padding: 100px 64px; background: var(--bg-2); }
.edge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.edge-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.edge-left p { color: var(--fg-muted); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.edge-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
}

/* COMPARE TABLE */
.compare-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
}
.compare-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 20px;
  background: var(--bg-3);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
}
.compare-row div:not(:first-child) { text-align: center; }
.check { color: var(--accent); font-weight: 700; }

/* CLOSING */
.closing {
  padding: 120px 64px;
  text-align: center;
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--fg);
}
.closing p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 16px;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--accent) !important;
  max-width: 520px !important;
  margin: 0 auto !important;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary {
  background: var(--accent);
  color: #0A0F1E;
}
.btn-primary:hover {
  background: #00c98a;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

/* SIGNALS DEMO */
.signals-demo {
  padding: 100px 64px;
  background: var(--bg-2);
}
.signals-demo-inner { max-width: 1100px; margin: 0 auto; }
.signals-demo-sub {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}
.signal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.signal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.signal-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-2px);
}
.signal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.signal-instrument {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
}
.signal-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
}
.signal-badge-bearish {
  background: rgba(255, 77, 109, 0.12);
  color: #FF4D6D;
}
.signal-badge-bullish {
  background: rgba(0, 229, 160, 0.12);
  color: #00E5A0;
}
.signal-badge-neutral {
  background: rgba(136, 148, 168, 0.12);
  color: #8894A8;
}
.signal-type-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.signal-conviction {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.conviction-score {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
}
.conviction-max {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--fg-muted);
}
.signal-rationale {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.signal-meta {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.6;
  letter-spacing: 0.04em;
}

/* SOCIAL PROOF */
.social-proof { padding: 100px 64px; }
.sp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sp-creator h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.sp-creator p { color: var(--fg-muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.sp-price-compare { display: flex; flex-direction: column; gap: 16px; }
.price-compare-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.price-compare-card-velox {
  border-color: rgba(0, 229, 160, 0.3);
  background: var(--bg-3);
}
.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.price-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
}
.price-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
}
.price-badge-old { background: rgba(136, 148, 168, 0.1); color: var(--fg-muted); }
.price-badge-new { background: var(--accent-dim); color: var(--accent); }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--fg);
  margin-bottom: 20px;
}
.price-period { font-size: 16px; font-weight: 400; color: var(--fg-muted); margin-left: 4px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.price-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
  opacity: 0.5;
}
.price-compare-divider {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-cta-row { margin-top: 20px; }

/* CLOSING CTA */
.closing-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-tag { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; }
.footer-legal { font-size: 12px; color: var(--fg-muted); opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 64px 40px; }
  .hero-ticker { max-width: 560px; }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .edge-inner { grid-template-columns: 1fr; gap: 48px; }
  .nav { padding: 24px 40px; }
  .problem, .how, .features, .edge, .closing, .signals-demo, .social-proof { padding: 80px 40px; }
  .compare-table { overflow-x: auto; }
  .signal-cards { grid-template-columns: 1fr; }
  .sp-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 24px; }
  .nav { padding: 20px 24px; }
  .problem, .how, .features, .edge, .closing { padding: 64px 24px; }
  .hero-metric-row { flex-wrap: wrap; gap: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .ticker-row { grid-template-columns: 64px 76px 52px 1fr; font-size: 13px; }
  .hero-headline { font-size: 32px; }
}