:root {
  --bg: #050810;
  --bg-card: #0a0f1e;
  --bg-card-hover: #0f1528;
  --fg: #e8e4d9;
  --fg-muted: #8a8a9a;
  --fg-dim: #505068;
  --accent: #c8ff00;
  --accent-dim: #8ab300;
  --cyan: #00d4ff;
  --red: #ff6b6b;
  --yellow: #ffd93d;
  --green: #6bcb77;
  --border: rgba(200,255,0,0.08);
  --border-bright: rgba(200,255,0,0.2);
  --radius: 6px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5,8,16,0.85);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.logo-bracket { color: var(--fg-dim); }
.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }

/* HERO */
.hero {
  padding: 140px 32px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value { font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--fg-muted); }
.stat-divider { width: 1px; height: 32px; background: var(--border-bright); }

/* GRID PANEL */
.hero-visual { position: relative; }
.grid-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(200,255,0,0.03);
}
.panel-title { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); }
.panel-live {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  background: rgba(200,255,0,0.12);
  padding: 3px 8px;
  border-radius: 3px;
  animation: pulse-dot 2s ease-in-out infinite;
}
.opp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.opp-row:hover { background: var(--bg-card-hover); }
.opp-row:last-child { border-bottom: none; }
.opp-hot { background: rgba(255,107,107,0.04); }
.opp-warm { background: rgba(255,217,61,0.02); }
.opp-score {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-dim);
  min-width: 32px;
}
.score-high { color: var(--red) !important; }
.score-mid { color: var(--yellow) !important; }
.opp-info { flex: 1; }
.opp-name { font-size: 13px; font-weight: 500; color: var(--fg); margin-bottom: 2px; }
.opp-meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); }
.opp-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 3px;
}
.badge-fire { background: rgba(255,107,107,0.2); color: var(--red); }
.badge-new { background: rgba(0,212,255,0.15); color: var(--cyan); }
.badge-signal { background: rgba(200,255,0,0.12); color: var(--accent); }
.badge-crowd { background: rgba(138,138,154,0.15); color: var(--fg-muted); }
.panel-footer {
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  text-align: center;
}

/* SIGNAL SECTION */
.signal-section { padding: 100px 32px; }
.signal-inner { max-width: 1200px; margin: 0 auto; }
.signal-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub { font-size: 17px; color: var(--fg-muted); max-width: 560px; margin: 0 auto; }
.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.signal-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.signal-icon { color: var(--accent); margin-bottom: 16px; }
.signal-score-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.signal-name { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.signal-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* FEATURES */
.features-section { padding: 80px 32px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { margin-bottom: 72px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature-name { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.feature-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* MINI TABLE */
.mini-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.mini-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 60px;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
}
.mini-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 60px;
  gap: 8px;
  padding: 10px 16px;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.mini-row:hover { background: var(--bg-card-hover); }
.mini-row:last-child { border-bottom: none; }
.mini-row-hot { background: rgba(255,107,107,0.04); }
.bar { font-family: var(--font-mono); font-size: 10px; padding: 2px 6px; border-radius: 3px; }
.bar-high { background: rgba(255,107,107,0.2); color: var(--red); }
.bar-mid { background: rgba(255,217,61,0.2); color: var(--yellow); }
.score { font-family: var(--font-mono); font-weight: 700; color: var(--accent); }

/* GAP MAP */
.gap-map { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.gap-header {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.gap-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.gap-name { font-size: 13px; color: var(--fg-muted); min-width: 120px; }
.gap-bar-wrap { flex: 1; display: flex; align-items: center; gap: 10px; }
.gap-bar { height: 6px; border-radius: 3px; max-width: 200px; }
.gap-label { font-family: var(--font-mono); font-size: 10px; color: var(--fg-dim); }
.gap-target {
  margin-top: 20px;
  padding: 14px;
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  background: rgba(200,255,0,0.04);
}
.target-label { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 6px; }
.target-desc { font-size: 13px; color: var(--fg); }

/* PLAYBOOK */
.playbook { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.playbook-header {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(200,255,0,0.03);
}
.playbook-step {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.playbook-step:hover { background: var(--bg-card-hover); }
.playbook-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-dim);
  min-width: 24px;
  padding-top: 2px;
}
.playbook-step-done .step-num { color: var(--accent); }
.step-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.step-detail { font-size: 12px; color: var(--fg-muted); line-height: 1.6; }

/* MANIFESTO */
.manifesto-section { padding: 100px 32px; border-top: 1px solid var(--border); }
.manifesto-inner { max-width: 720px; margin: 0 auto; }
.manifesto-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  margin-bottom: 24px;
}
.manifesto-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 32px;
}
.manifesto-body { margin-bottom: 40px; }
.manifesto-body p { font-size: 17px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 20px; }
.manifesto-quote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  font-size: 20px;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}
.quote-mark { color: var(--accent); }
.quote-attr { font-size: 13px; font-style: normal; color: var(--fg-dim); margin-top: 12px; font-family: var(--font-mono); }

/* CLOSING / PRICING */
.closing-section { padding: 80px 32px 100px; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-align: center;
}
.closing-sub { font-size: 17px; color: var(--fg-muted); text-align: center; max-width: 600px; margin: 0 auto 64px; line-height: 1.7; }
.closing-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}
.pricing-tier-pro {
  border-color: var(--border-bright);
  background: rgba(200,255,0,0.03);
}
.tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-name { font-size: 14px; font-weight: 600; color: var(--fg-muted); margin-bottom: 12px; }
.tier-price { font-size: 36px; font-weight: 700; color: var(--fg); letter-spacing: -0.03em; margin-bottom: 24px; }
.tier-period { font-size: 16px; font-weight: 400; color: var(--fg-muted); }
.tier-features { list-style: none; }
.tier-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 16px;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.tier-features li:last-child { border-bottom: none; }
.pricing-tier-pro .tier-features li::before { opacity: 1; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 48px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo { font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--fg-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--fg-muted); text-decoration: none; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); margin-top: 8px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .signal-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row-reverse { direction: ltr; }
  .closing-pricing { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .header-nav { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-wrap: wrap; }
  .closing-section, .signal-section, .features-section, .manifesto-section { padding: 60px 20px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }
