:root {
  --bg: #0a0e1a;
  --bg-card: #111827;
  --bg-card-hover: #1a2235;
  --fg: #e8eaf0;
  --fg-muted: #8892a4;
  --accent: #b4ff3a;
  --accent-dim: rgba(180, 255, 58, 0.12);
  --danger: #ff4a4a;
  --border: rgba(180, 255, 58, 0.15);
  --font-head: 'Syne', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-head);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--fg-muted);
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 100px;
  min-height: 85vh;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 28px;
}

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

.hero-headline {
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* DEAL INTERFACE */
.deal-interface {
  background: #0d1321;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  font-family: var(--font-mono);
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

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

.di-title { font-size: 14px; font-weight: 600; color: var(--fg); }

.di-filter {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
}

.di-row-head {
  font-size: 10px;
  color: var(--fg-muted);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
  gap: 8px;
}

.di-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: background 0.2s;
}

.di-row:hover { background: var(--bg-card); }

.di-game { display: flex; align-items: center; gap: 10px; }

.di-game-img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.di-game-name { font-size: 12px; font-weight: 600; color: var(--fg); }

.di-store { font-size: 11px; color: var(--fg-muted); }

.di-price { font-size: 12px; font-weight: 600; color: var(--fg); }

.di-price-green { color: var(--accent); }

.di-spark { display: flex; align-items: center; }

.di-score {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.05em;
}

.di-score-great {
  background: rgba(180, 255, 58, 0.15);
  color: var(--accent);
}

.di-score-wait {
  background: rgba(255, 74, 74, 0.1);
  color: var(--danger);
}

.di-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(180, 255, 58, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px;
}

.di-notif-text {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* HOW IT WORKS */
.hiw {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

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

.section-title {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  max-width: 600px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hiw-step { position: relative; }

.step-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 16px;
}

.hiw-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hiw-step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  background: #0d1220;
}

.features .section-title { max-width: 500px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(180, 255, 58, 0.35);
  transform: translateY(-2px);
}

.fc-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* DEAL PROOF */
.dealproof {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.dealproof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-left h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 420px;
}

.proof-left p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.proof-card-active {
  border-color: var(--accent);
  background: rgba(180, 255, 58, 0.04);
}

.proof-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.proof-badge-hawk { color: var(--accent); }

.proof-text {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.proof-context {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.closing h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto 20px;
}

.closing p {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.closing-statement {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
  max-width: 500px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px 80px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .dealproof-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 64px; }
  .hiw { padding: 64px 24px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .dealproof { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 12px; }
  .di-row-head, .di-row { grid-template-columns: 2fr 1fr 1fr; }
  .di-row-head span:nth-child(4),
  .di-row-head span:nth-child(5),
  .di-row .di-spark,
  .di-row .di-score { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}