:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #7b5cff;
  --accent-glow: rgba(123, 92, 255, 0.25);
  --green: #3ddc84;
  --green-glow: rgba(61, 220, 132, 0.2);
  --orange: #ff7a3d;
  --orange-glow: rgba(255, 122, 61, 0.2);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ghost-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  animation: float-1 12s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--green);
  bottom: -50px;
  left: -80px;
  animation: float-2 15s ease-in-out infinite;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--orange);
  top: 40%;
  left: 50%;
  animation: float-3 10s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

@keyframes float-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -30px); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--green) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ==================== HOW / DUAL TICKET ==================== */
.how {
  padding: 120px 0;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.split-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.split-card.low::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.split-card.high::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.card-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.split-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.split-card.low h3 {
  color: var(--green);
}

.split-card.high h3 {
  color: var(--accent);
}

.split-card p {
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.card-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ==================== NUMBERS ==================== */
.numbers {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.big-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.num-desc {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==================== CHANNELS ==================== */
.channels {
  padding: 120px 0;
}

.channels h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

.channel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.channel-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.channel-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  opacity: 0.6;
}

.channel-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.channel-card p {
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.channel-card ul {
  list-style: none;
  padding: 0;
}

.channel-card li {
  color: var(--fg-muted);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.channel-card li::before {
  content: '\2192 ';
  color: var(--accent);
  margin-right: 8px;
}

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

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 28px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.footer-year {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .split {
    grid-template-columns: 1fr;
  }
  
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .channel-row {
    grid-template-columns: 1fr;
  }
  
  .split-card,
  .channel-card {
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}