:root {
  --bg: #0C0C14;
  --surface: #141420;
  --surface-2: #1C1C2C;
  --border: #2A2A3A;
  --fg: #FFFFFF;
  --fg-muted: #8888A0;
  --fg-dim: #4A4A60;
  --accent: #FF9500;
  --accent-dim: rgba(255, 149, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(12, 12, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

/* Channel Grid */
.hero-channel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.channel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 100px;
  transition: border-color 0.2s;
}

.channel-card.accent {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.channel-sport {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.channel-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.channel-net {
  font-size: 11px;
  color: var(--fg-dim);
  font-weight: 500;
}

/* ── PROCESS ── */
.process {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 56px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding-right: 48px;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

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

.step-divider {
  width: 1px;
  height: 120px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
  align-self: center;
}

/* ── DIFFERENTIATORS ── */
.diff {
  padding: 100px 40px;
  background: var(--bg);
}

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

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.diff-card {
  background: var(--surface);
  padding: 48px;
}

.diff-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.diff-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.diff-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.manifesto-bar {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}

.manifesto-stat {
  text-align: center;
}

.manifesto-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.manifesto-desc {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.manifesto-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.manifesto-quote {
  text-align: center;
}

.manifesto-quote p {
  font-size: 22px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.manifesto-quote p:last-child {
  margin-top: 20px;
  color: var(--fg-dim);
  font-size: 18px;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

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

.footer-legal {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 56px; }
  .hero-sub { font-size: 16px; }
  .hero-channel-grid { gap: 8px; }
  .channel-card { padding: 12px 16px; min-width: 80px; }
  .channel-num { font-size: 32px; }
  .process { padding: 60px 24px; }
  .process-steps { flex-direction: column; }
  .step { padding-right: 0; padding-bottom: 40px; }
  .step-divider { display: none; }
  .diff { padding: 60px 24px; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { padding: 32px; }
  .manifesto { padding: 60px 24px; }
  .manifesto-bar { flex-direction: column; gap: 32px; }
  .manifesto-sep { display: none; }
  .manifesto-quote p { font-size: 18px; }
  .footer { padding: 40px 24px; }
}