:root {
  --bg: #0A0F1E;
  --bg-card: #111827;
  --fg: #E8EDF5;
  --fg-muted: #7A8BA8;
  --accent: #FF6B35;
  --accent-dim: rgba(255,107,53,0.12);
  --green: #00E5A0;
  --green-dim: rgba(0,229,160,0.1);
  --red: #FF4757;
  --red-dim: rgba(255,71,87,0.1);
  --border: rgba(255,255,255,0.06);
  --radius: 14px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Mono', monospace;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3 { font-family: 'Syne', sans-serif; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.nav-status { display: flex; align-items: center; gap: 8px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: blink 2s infinite;
}
.live-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.09em; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; padding: 90px 48px 110px; }
.hero-bg-glow {
  position: absolute; top: -80px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-tag { margin-bottom: 28px; }
.tag-pill { display: inline-block; background: var(--accent-dim); color: var(--accent); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(255,107,53,0.22); }
.hero-headline { font-size: clamp(44px, 5.5vw, 72px); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero-sub { font-size: 15px; color: var(--fg-muted); max-width: 460px; margin-bottom: 40px; line-height: 1.75; }
.hero-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; display: inline-block; min-width: 380px; }
.widget-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.widget-row { display: flex; }
.widget-cell { flex: 1; padding: 0 16px; text-align: center; }
.widget-cell:first-child { padding-left: 0; }
.widget-cell:last-child { padding-right: 0; }
.widget-divider { width: 1px; background: var(--border); }
.cell-city { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 6px; }
.cell-val { display: block; font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; }
.cell-val.accent { color: var(--accent); }
.cell-val.muted { font-size: 15px; color: var(--fg-muted); }
.cell-sub { display: block; font-size: 10px; color: var(--fg-muted); margin-top: 5px; }
.cell-sub.red { color: var(--red); }
.hero-img-wrap { display: flex; justify-content: center; }
.hero-img { width: 100%; max-width: 560px; border-radius: 16px; border: 1px solid var(--border); object-fit: cover; box-shadow: 0 28px 90px rgba(0,0,0,0.55); }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 100px 48px; background: #0d1220; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title { font-size: clamp(30px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-sub { font-size: 15px; color: var(--fg-muted); max-width: 520px; margin: 0 auto; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-dim); color: var(--green); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.live-signals-header { text-align: left; max-width: 1200px; margin: 0 auto 56px; }

.pipeline { max-width: 900px; margin: 0 auto; }
.pipeline-step { display: grid; grid-template-columns: 52px 1fr; gap: 28px; align-items: start; padding: 44px 0; border-bottom: 1px solid var(--border); }
.pipeline-step:last-child { border-bottom: none; }
.step-num { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--accent); opacity: 0.35; line-height: 1; padding-top: 6px; }
.step-body h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-body p { font-size: 13px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 20px; }

/* ensemble viz */
.ensemble-viz { display: flex; flex-direction: column; gap: 8px; }
.ens-row { display: grid; grid-template-columns: 90px 1fr 36px; align-items: center; gap: 10px; }
.ens-label { font-size: 10px; color: var(--fg-muted); }
.ens-track { height: 5px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.ens-fill { height: 100%; border-radius: 3px; }
.ens-fill.low { background: #6B7A8F; }
.ens-fill.mid { background: var(--accent); }
.ens-fill.high { background: var(--red); }
.ens-pct { font-size: 10px; color: var(--fg-muted); text-align: right; }

/* market rows */
.market-rows { display: flex; flex-direction: column; gap: 6px; }
.mkt-row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; font-size: 12px; }
.mkt-name { color: var(--fg-muted); }
.mkt-odds { font-family: 'Syne', sans-serif; font-weight: 700; }
.mkt-edge { font-size: 10px; padding: 3px 8px; border-radius: 4px; }
.mkt-edge.even { color: var(--fg-muted); background: rgba(255,255,255,0.05); }
.mkt-edge.hot { color: var(--green); background: var(--green-dim); }

.step-illus { width: 100%; border-radius: 10px; border: 1px solid var(--border); margin-top: 4px; }

/* ── LIVE SIGNALS ── */
.live-signals { padding: 100px 48px; }
.signals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto 48px; }
.sig-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: border-color 0.2s; }
.sig-card.sig-buy { border-color: rgba(0,229,160,0.18); }
.sig-card.sig-sell { border-color: rgba(255,71,87,0.18); }
.sig-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sig-city { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; }
.sig-badge { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 4px; }
.sig-badge.hold { background: rgba(255,255,255,0.05); color: var(--fg-muted); }
.sig-badge.buy { background: var(--green-dim); color: var(--green); }
.sig-badge.sell { background: var(--red-dim); color: var(--red); }
.sig-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.sig-m { }
.sig-lbl { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 4px; }
.sig-v { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; }
.sig-v.mut { color: var(--fg-muted); }
.sig-v.grn { color: var(--green); }
.sig-v.red { color: var(--red); }
.sig-foot { display: flex; justify-content: space-between; font-size: 10px; color: var(--fg-muted); border-top: 1px solid var(--border); padding-top: 12px; }
.signal-img-wrap { max-width: 900px; margin: 0 auto; }
.signal-img { width: 100%; border-radius: 14px; border: 1px solid var(--border); display: block; }

/* ── PRICING ── */
.pricing { padding: 100px 48px; background: #0d1220; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 780px; margin: 0 auto; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.price-card.featured { border-color: var(--accent); }
.p-badge { font-size: 10px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent); margin-bottom: 16px; }
.p-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 14px; }
.p-price { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; line-height: 1; margin-bottom: 28px; }
.p-period { font-size: 16px; font-weight: 400; color: var(--fg-muted); }
.p-features { list-style: none; margin-bottom: 28px; }
.p-features li { font-size: 13px; color: var(--fg-muted); padding: 7px 0; border-bottom: 1px solid var(--border); }
.p-features li:last-child { border-bottom: none; }
.p-note { font-size: 11px; color: var(--fg-muted); }

/* ── CLOSING ── */
.closing { padding: 120px 48px; text-align: center; position: relative; overflow: hidden; }
.closing-glow { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 65%); pointer-events: none; }
.closing-icon { margin-bottom: 36px; }
.closing-hl { font-size: clamp(34px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.03em; max-width: 680px; margin: 0 auto 24px; }
.closing-body { font-size: 16px; color: var(--fg-muted); max-width: 560px; margin: 0 auto; line-height: 1.85; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 40px 48px; display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center; }
.foot-brand { display: flex; flex-direction: column; gap: 5px; }
.foot-tag { font-size: 12px; color: var(--fg-muted); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 12px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--fg); }
.foot-legal { font-size: 10px; color: var(--fg-muted); max-width: 280px; text-align: right; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .hero { padding: 60px 24px 80px; }
  .nav { padding: 16px 24px; }
  .how-it-works, .live-signals, .pricing, .closing { padding: 70px 24px; }
  .signals-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; gap: 20px; }
  .foot-legal { text-align: left; }
  .hero-widget { min-width: unset; width: 100%; }
  .widget-row { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .sig-metrics { grid-template-columns: 1fr 1fr; }
}
