:root {
  --bg: #0a0e1a;
  --surface: #111827;
  --surface2: #1a2235;
  --gold: #f5c518;
  --gold-dim: #a8860f;
  --green: #00e676;
  --white: #ffffff;
  --muted: #8b97b0;
  --border: #1e2a40;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.navbar {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--gold);
}
.nav-tagline {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  background: linear-gradient(160deg, #0a0e1a 0%, #0f1629 60%, #111827 100%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(245, 197, 24, 0.25);
  margin-bottom: 16px;
}
.dollar-sign {
  font-size: 0.6em;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}
.hero-tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.7;
}

/* TICKET CARD */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.ticket-card {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 28px;
  width: 280px;
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.15), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.ticket-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--bg);
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.ticket-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--bg);
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ticket-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold);
}
.ticket-cost {
  font-size: 11px;
  font-weight: 600;
  background: var(--gold);
  color: var(--bg);
  padding: 4px 8px;
  border-radius: 4px;
}
.ticket-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
}
.star {
  font-size: 24px;
  color: var(--gold);
  margin-left: 4px;
}
.ticket-barcode {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 16px;
}
.bar-line {
  width: 4px;
  height: 40px;
  background: var(--muted);
}
.bar-line.tall { height: 56px; }
.ticket-bottom {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 1px;
}

/* PROOF STATS */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: center;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 80px 40px;
  background: var(--bg);
}
.features-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.features-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.features-header p {
  font-size: 18px;
  color: var(--muted);
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: var(--gold-dim);
}
.feature-icon {
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--white);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.outcome-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.outcome-card.highlight {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.1);
}
.outcome-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.outcome-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.outcome-odds {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 4px;
}
.outcome-sub {
  font-size: 12px;
  color: var(--muted);
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 0.95;
}
.closing p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-legal {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto; }
  .hero-visual { justify-content: center; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { width: 60px; height: 1px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing h2 { font-size: 48px; }
  .navbar { padding: 20px; }
  .hero { padding: 60px 20px 40px; }
  .features, .outcomes, .closing { padding: 60px 20px; }
  .proof { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .ticket-card { width: 240px; padding: 20px; }
  .num { font-size: 26px; }
  .stat-number { font-size: 36px; }
}