/* === BASE === */
:root {
  --bg: #0A1628;
  --bg-2: #0F1D36;
  --bg-3: #14243F;
  --fg: #F5F0E8;
  --fg-muted: rgba(245, 240, 232, 0.55);
  --accent: #00E5A0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --red: #FF4D6A;
  --border: rgba(255,255,255,0.08);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 80px 60px 60px;
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,160,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 40%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-badge {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,229,160,0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--fg-muted);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* === HERO CHART === */
.hero-chart {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 48px;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.chart-ticker {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ticker-symbol {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.ticker-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.ticker-change.positive { color: var(--accent); font-size: 0.85rem; font-weight: 500; }
.ticker-change.negative { color: var(--red); font-size: 0.85rem; font-weight: 500; }

.chart-tabs {
  display: flex;
  gap: 4px;
}

.chart-tab {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--fg-muted);
  cursor: pointer;
}

.chart-tab.active {
  background: var(--bg-3);
  color: var(--fg);
}

.chart-body { position: relative; }

.chart-canvas { width: 100%; overflow: hidden; }

.candlestick-svg { width: 100%; height: auto; display: block; }

.signal-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--accent-dim);
  border-radius: 8px;
  border: 1px solid rgba(0,229,160,0.15);
}

.signal-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.signal-strength {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.signal-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.signal-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0,229,160,0.5);
}

.signal-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  min-width: 32px;
  text-align: right;
}

/* Floating tickers */
.hero-tickers {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.ticker-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
}

.chip-symbol { color: var(--fg-muted); font-weight: 600; font-size: 11px; letter-spacing: 0.05em; }
.chip-price { color: var(--fg); font-weight: 500; font-variant-numeric: tabular-nums; }
.chip-change.positive { color: var(--accent); font-size: 11px; font-weight: 500; }
.chip-change.negative { color: var(--red); font-size: 11px; font-weight: 500; }

/* === SIGNAL QUALITY === */
.signal-quality {
  padding: 100px 60px;
  background: var(--bg-2);
}

.sq-header { text-align: center; margin-bottom: 64px; }

.sq-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.sq-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}

.sq-subtext {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.sq-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.sq-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.metric-ring { position: relative; width: 80px; height: 80px; }

.ring-svg { width: 80px; height: 80px; }

.ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.ring-unit { font-size: 0.75rem; color: var(--fg-muted); }

.metric-info { text-align: center; }
.metric-name { font-size: 0.9rem; font-weight: 500; color: var(--fg); margin-bottom: 4px; }
.metric-desc { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.4; }

.sq-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}

.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* === QUANT ENGINE === */
.quant-engine { padding: 100px 60px; }

.qe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.qe-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.qe-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}

.qe-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.qe-features { display: flex; flex-direction: column; gap: 20px; }

.qe-feat { display: flex; align-items: flex-start; gap: 16px; }

.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-title { font-size: 0.95rem; font-weight: 500; color: var(--fg); margin-bottom: 3px; }
.feat-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.4; }

/* Terminal visual */
.qe-terminal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.term-dots { display: flex; gap: 6px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.red { background: #FF4D6A; }
.t-dot.yellow { background: #F5A623; }
.t-dot.green { background: var(--accent); }

.term-title { font-size: 11px; color: var(--fg-muted); font-weight: 500; margin-left: 8px; }

.terminal-body { padding: 16px; display: flex; flex-direction: column; gap: 2px; }

.term-row {
  display: grid;
  grid-template-columns: 48px 1fr 50px 50px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  gap: 8px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.term-row:not(:last-child) { background: rgba(255,255,255,0.02); }
.term-row.muted { opacity: 0.4; }

.term-label { color: var(--fg-muted); font-weight: 600; font-size: 11px; }
.term-value { color: var(--fg); font-weight: 500; }

.term-signal {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 100px;
  text-align: center;
}

.term-signal.buy { background: rgba(0,229,160,0.15); color: var(--accent); }
.term-signal.sell { background: rgba(255,77,106,0.15); color: var(--red); }
.term-signal.hold { background: rgba(245,240,232,0.08); color: var(--fg-muted); }

.term-conf { color: var(--fg-muted); font-size: 11px; text-align: right; }

.terminal-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--fg-muted);
}

.term-ver { color: var(--accent); opacity: 0.6; }

/* === PHILOSOPHY === */
.philosophy {
  padding: 100px 60px;
  background: var(--bg-2);
}

.phil-inner { max-width: 680px; margin: 0 auto; }

.phil-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}

.phil-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.phil-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
}

.phil-body + .phil-body { margin-top: 16px; }

/* === CLOSING === */
.closing {
  padding: 120px 60px;
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.closing-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}

.wl-trigger {
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 12px;
}

.closing-cta-hint {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.65;
}

.cv-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cv-card {
  padding: 24px 40px;
  flex: 1;
}

.cv-value {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--fg);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.cv-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.cv-divider {
  font-size: 2rem;
  color: var(--border);
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  padding: 60px 60px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand { max-width: 340px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.footer-links { display: flex; gap: 60px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--fg); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.5;
  opacity: 0.6;
}

/* === SIGNAL PAGE === */
.signal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
}

.signal-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,160,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.signal-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}

.signal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  font-size: 1rem;
}

.signal-logo-dot { color: var(--accent); }

.signal-ticker-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.signal-ticker-title span {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
}

.signal-back {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.signal-back:hover { color: var(--accent); border-color: rgba(0,229,160,0.4); }

.signal-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  padding: 24px 32px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.signal-ticker-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.ticker-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ticker-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
}

.ticker-price-large {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.ticker-change-badge {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

.ticker-change-badge.positive { color: var(--accent); background: rgba(0,229,160,0.12); }
.ticker-change-badge.negative { color: var(--red); background: rgba(255,77,106,0.12); }

.signal-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.signal-pill.buy { background: rgba(0,229,160,0.15); border-color: rgba(0,229,160,0.3); color: var(--accent); }
.signal-pill.sell { background: rgba(255,77,106,0.15); border-color: rgba(255,77,106,0.3); color: var(--red); }
.signal-pill.hold { background: rgba(245,240,232,0.08); border-color: rgba(245,240,232,0.15); color: var(--fg-muted); }

.signal-chart-wrapper {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

#chart { width: 100%; height: 420px; }

.signal-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.panel-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.ml-confidence-value {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 12px;
}

.ml-confidence-value span {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.ml-confidence-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.ml-confidence-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0,229,160,0.4);
  transition: width 0.4s ease;
}

.panel-signal-badge {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-signal-badge.buy { background: rgba(0,229,160,0.15); color: var(--accent); }
.panel-signal-badge.sell { background: rgba(255,77,106,0.15); color: var(--red); }
.panel-signal-badge.hold { background: rgba(245,240,232,0.08); color: var(--fg-muted); }

.panel-timestamp {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 8px;
}

.signal-footer {
  position: relative;
  z-index: 1;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.signal-footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.signal-footer-link:hover { color: var(--accent); border-color: rgba(0,229,160,0.4); }

@media (max-width: 900px) {
  .signal-main { grid-template-columns: 1fr; padding: 16px; }
  .signal-ticker-header { flex-wrap: wrap; gap: 12px; }
  #chart { height: 300px; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { padding: 60px 32px 48px; }
  .signal-quality { padding: 80px 32px; }
  .quant-engine { padding: 80px 32px; }
  .philosophy { padding: 80px 32px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 60px 32px 32px; }

  .sq-metrics { grid-template-columns: 1fr; gap: 16px; }
  .qe-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .cv-row { flex-wrap: wrap; }
  .cv-card { padding: 20px; flex: 1 1 30%; }
  .cv-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-tickers { gap: 8px; }
  .ticker-chip { padding: 5px 10px; }
  .metric-ring { width: 64px; height: 64px; }
  .ring-svg { width: 64px; height: 64px; }
}

/* === PRICING === */
.pricing {
  padding: 100px 60px;
  background: var(--bg-2);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,160,0.25), transparent);
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.pricing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(0,229,160,0.25);
}

.pricing-card--featured {
  border-color: rgba(0,229,160,0.35);
  background: rgba(0,229,160,0.04);
}

.card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0A1628;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--fg);
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.price-monthly-eq {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.card-features {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-features li {
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: rgba(0,229,160,0.1);
  border: 1px solid rgba(0,229,160,0.35);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: rgba(0,229,160,0.18);
  border-color: rgba(0,229,160,0.55);
}

.btn-primary--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A1628;
}

.btn-primary--accent:hover {
  background: #00c47a;
  border-color: #00c47a;
}

.card-cancel {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 12px;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 28px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .pricing { padding: 72px 24px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card { padding: 36px 28px; }
}

/* === LIVE SIGNALS PANEL === */
.live-signals {
  padding: 100px 60px;
  background: var(--bg);
  position: relative;
}

.ls-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ls-header {
  text-align: center;
  margin-bottom: 56px;
}

.ls-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.ls-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,229,160,0.1);
  border: 1px solid rgba(0,229,160,0.25);
  border-radius: 100px;
  padding: 3px 10px 3px 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.ls-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.ls-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 14px;
}

.ls-subhead {
  font-size: 1.05rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* 3-col grid on desktop, 1-col on mobile */
.ls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.ls-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.ls-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.ls-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ls-ticker-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ls-ticker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.85;
}

.ls-ticker {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.04em;
}

.ls-direction {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
}

.ls-direction--long {
  background: rgba(0,229,160,0.12);
  color: var(--accent);
  border: 1px solid rgba(0,229,160,0.25);
}

.ls-direction--short {
  background: rgba(255,77,106,0.12);
  color: var(--red);
  border: 1px solid rgba(255,77,106,0.25);
}

.ls-confidence-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.ls-conf-label {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.ls-conf-value {
  font-size: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ls-conf--high { color: var(--accent); }
.ls-conf--mid  { color: #f5a623; }
.ls-conf--low  { color: var(--fg-muted); }

.ls-conf-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: -6px;
}

.ls-conf-bar-fill {
  height: 100%;
  border-radius: 2px;
}

.ls-conf-fill--high {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(0,229,160,0.4);
}

.ls-conf-fill--mid {
  background: #f5a623;
  box-shadow: 0 0 6px rgba(245,166,35,0.35);
}

.ls-conf-fill--low {
  background: rgba(245,240,232,0.3);
}

.ls-pattern {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
  font-weight: 400;
}

.ls-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--bg-3);
  border-radius: 8px;
  padding: 10px 12px;
}

.ls-level {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ls-level-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.ls-level-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.ls-target { color: var(--accent); }
.ls-stop   { color: var(--red); }

.ls-timestamp {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.55;
}

.ls-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .live-signals { padding: 80px 32px; }
  .ls-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .live-signals { padding: 64px 20px; }
}

/* === WAITLIST MODAL === */
.wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.wl-overlay--open {
  opacity: 1;
  pointer-events: all;
}

.wl-box {
  background: var(--bg-2);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 20px;
  padding: 48px 44px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 229, 160, 0.05);
}

.wl-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  line-height: 0;
}

.wl-close:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.08);
}

.wl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.wl-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.wl-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 14px;
}

.wl-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 32px;
}

.wl-form { width: 100%; }

.wl-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.wl-input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.wl-input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.wl-input:focus { border-color: rgba(0, 229, 160, 0.45); }

.wl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0A1628;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}

.wl-btn:hover:not(:disabled) { background: #00c47a; }
.wl-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.wl-btn--success {
  background: var(--accent);
  opacity: 1;
}

.wl-error {
  font-size: 13px;
  color: var(--red);
  min-height: 18px;
  opacity: 0;
  transition: opacity 0.2s;
}

.wl-error--visible { opacity: 1; }

.wl-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}

.wl-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 160, 0.2);
}

.wl-privacy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
  text-align: center;
}

@media (max-width: 520px) {
  .wl-box { padding: 36px 24px 32px; }
  .wl-input-row { flex-direction: column; }
  .wl-btn { width: 100%; justify-content: center; }
}