:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --lime: #CCFF00;
  --lime-dim: rgba(204, 255, 0, 0.12);
  --text: #F5F5F5;
  --text-dim: #888888;
  --border: rgba(255,255,255,0.08);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--lime);
}
.nav-tag {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 120px 40px 80px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204,255,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid rgba(204,255,0,0.25);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline span.lime { color: var(--lime); }
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--lime);
  letter-spacing: 1px;
}
.proof-label { font-size: 12px; color: var(--text-dim); letter-spacing: 0.5px; }
.proof-divider { width: 1px; height: 36px; background: var(--border); }

/* Tee cards on the right */
.hero-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tee-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  min-width: 240px;
  transition: transform 0.2s;
}
.tee-card:hover { transform: translateX(-4px); }
.tee-card-1 { border-color: rgba(204,255,0,0.2); }
.tee-card-2 { border-color: rgba(168,85,247,0.2); }
.tee-card-3 { border-color: rgba(255,100,100,0.2); }
.tee-emoji { font-size: 32px; line-height: 1; }
.tee-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
}

/* ── MISSION ── */
.mission {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mission-inner { max-width: 900px; margin: 0 auto; }
.mission-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  font-weight: 500;
}
.mission-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--text);
}
.mission-headline span.lime { color: var(--lime); }
.mission-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 680px;
}
.mission-body em { font-style: italic; color: var(--text); }

/* ── DROPS ── */
.drops { padding: 100px 40px; }
.drops-header { max-width: 1280px; margin: 0 auto 56px; }
.drops-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
  font-weight: 500;
}
.drops-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px;
  color: var(--text);
}
.drops-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.drop-card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.2s;
}
.drop-card:hover { background: #0d0d0d; }
.drop-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.drop-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.drop-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ── HOW ── */
.how {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  font-weight: 500;
}
.how-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--text);
}
.how-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.how-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.how-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--lime-dim);
  border: 1px solid rgba(204,255,0,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-top: 2px;
}
.how-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
}
.how-text strong { color: var(--text); }

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.closing-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.closing-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-headline span.lime { color: var(--lime); }
.closing-sub {
  font-size: 18px;
  color: var(--text-dim);
}

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--lime);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-dot { color: var(--border); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }
  .hero-headline { font-size: 72px; }
  .hero-cards { display: none; }
  .mission { padding: 60px 24px; }
  .mission-headline { font-size: 36px; }
  .drops { padding: 60px 24px; }
  .drops-grid { grid-template-columns: 1fr; }
  .drop-card { padding: 32px 24px; }
  .how { padding: 60px 24px; }
  .how-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 80px 24px; }
  .closing-headline { font-size: 48px; }
  .footer { padding: 40px 24px; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
}

/* lime utility */
.lime { color: var(--lime); }
