:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface2: #1A1A1A;
  --fg: #FFFFFF;
  --muted: #888888;
  --accent: #C6FF00;
  --accent-dim: rgba(198, 255, 0, 0.12);
  --red: #FF3B3B;
  --font-head: 'Bangers', cursive;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
  --pad-x: clamp(20px, 5vw, 64px);
  --section-gap: clamp(80px, 12vw, 140px);
}

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

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--pad-x) 60px;
  position: relative;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(198,255,0,0.25);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-title .accent { color: var(--accent); }

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}

.hero-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}

.img-tag {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-align: center;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS ────────────────────────────────── */
.stats {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px var(--pad-x);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-item {
  padding: 12px 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

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

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
}

/* ── WHAT ──────────────────────────────────── */
.what {
  padding: var(--section-gap) var(--pad-x);
}

.what-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: var(--fg);
}

.what-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 56px;
}

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

.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(198,255,0,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.pillar-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FORMAT ───────────────────────────────── */
.format {
  padding: var(--section-gap) var(--pad-x);
  background: var(--surface);
}

.format-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}

.format-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 16px 16px 0 0;
}

.format-card--wide { grid-column: 1 / -1; }

.format-card-label {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.format-card-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.format-card-meta {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── SCALE ────────────────────────────────── */
.scale {
  padding: var(--section-gap) var(--pad-x);
}

.scale-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.scale-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--fg);
}

.scale-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.scale-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
  padding-top: 4px;
}

.step-text {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.5;
}

/* ── CLOSING ──────────────────────────────── */
.closing {
  padding: var(--section-gap) var(--pad-x);
  position: relative;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(198,255,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.closing-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px var(--pad-x);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.footer-brand { display: flex; flex-direction: column; }

.footer-note {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-divider { display: none; }
  .what-pillars { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card--wide { grid-column: 1; }
  .scale-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { padding: 16px 0; }
}
