/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0c10;
  --surface: #141419;
  --surface2: #1c1c22;
  --fg: #f0eee8;
  --fg-muted: #7a7a8a;
  --accent: #FF5C00;
  --accent2: #00D4AA;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  backdrop-filter: blur(12px);
  background: rgba(12,12,16,0.8);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.nav-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,92,0,0.12);
  border: 1px solid rgba(255,92,0,0.25);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,92,0,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(0,212,170,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 60px;
}

/* ─── Clip Cards (Hero Visual) ─── */
.hero-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
}

.clip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.clip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.clip-card-1 { transform: rotate(-0.8deg); }
.clip-card-2 { transform: rotate(0.5deg) translateY(12px); }
.clip-card-3 { transform: rotate(1deg); }

.clip-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.clip-badge-gaming {
  background: rgba(255,92,0,0.15);
  color: #FF7A3D;
}

.clip-badge-sports {
  background: rgba(0,212,170,0.12);
  color: #00D4AA;
}

.clip-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.clip-meta {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.clip-stat {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: #00D4AA;
}

/* ─── Grid Section ─── */
.grid-section {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #0f0f15 100%);
}

.grid-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.grid-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1100px;
}

.grid-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 0;
  transition: background 0.2s;
}

.grid-item:first-child { border-radius: 12px 0 0 12px; }
.grid-item:last-child { border-radius: 0 12px 12px 0; }

.grid-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,92,0,0.1);
  border: 1px solid rgba(255,92,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.grid-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.grid-item p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.manifesto-right p {
  color: var(--fg-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ─── Closer ─── */
.closer {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0f0f15 0%, var(--bg) 100%);
}

.closer-stat-row {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.closer-stat {
  padding: 0 40px;
  text-align: center;
}

.closer-stat:first-child { padding-left: 0; }
.closer-stat:last-child { padding-right: 0; }

.closer-stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}

.closer-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}

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

.closer-statement {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closer-statement p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* ─── Footer ─── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
  margin-left: 16px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 60px; }
  .hero-visual { grid-template-columns: 1fr; max-width: 380px; }
  .clip-card-2 { transform: none; }
  .grid { grid-template-columns: 1fr 1fr; }
  .grid-item:first-child { border-radius: 12px 12px 0 0; }
  .grid-item:last-child { border-radius: 0 0 12px 12px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .closer-stat-row { grid-template-columns: 1fr; gap: 40px; }
  .closer-divider { display: none; }
  .closer-stat { padding: 0; }
  .grid-section, .manifesto, .closer { padding: 70px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
  .grid-item:first-child { border-radius: 12px 12px 0 0; }
  .grid-item:last-child { border-radius: 0 0 12px 12px; }
  .hero-headline { font-size: 42px; }
}