:root {
  --bg: #0a0a0a;
  --fg: #f0ede6;
  --accent: #c6ff36;
  --accent-dim: #8fb825;
  --muted: #6b6b6b;
  --card-bg: #141414;
  --card-border: #222;
  --skate: #ff6b35;
  --gym: #ff3366;
  --football: #36b3ff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .hero-badge, .step-num, .footer-logo {
  font-family: 'Space Grotesk', sans-serif;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8% 80px;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(198,255,54,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(255,107,53,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.lede {
  font-size: 1.15rem;
  color: #b0ada5;
  line-height: 1.7;
  max-width: 520px;
}

/* Phone Mock */
.hero-visual {
  position: relative;
  z-index: 2;
}

.phone-mock {
  width: 220px;
  height: 420px;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 28px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.clip-before, .clip-after {
  width: 100%;
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
}

.clip-before {
  background: #1a1a1a;
  border: 1px dashed #333;
}

.clip-after {
  background: linear-gradient(135deg, rgba(198,255,54,0.1), rgba(255,107,53,0.1));
  border: 1px solid var(--accent-dim);
}

.clip-before .label, .clip-after .label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  color: var(--muted);
}

.clip-after .label {
  color: var(--accent);
}

.bars {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: flex-end;
  height: 40px;
}

.bar {
  width: 8px;
  background: #333;
  border-radius: 4px;
}

.bars .bar:nth-child(1) { height: 15px; }
.bars .bar:nth-child(2) { height: 28px; }
.bars .bar:nth-child(3) { height: 20px; }
.bars .bar:nth-child(4) { height: 35px; }
.bars .bar:nth-child(5) { height: 22px; }

.bars.fire .bar {
  background: linear-gradient(to top, var(--accent-dim), var(--accent));
}

.bars.fire .bar:nth-child(1) { height: 20px; animation: pulse 1.2s ease-in-out infinite; }
.bars.fire .bar:nth-child(2) { height: 35px; animation: pulse 1.2s ease-in-out 0.1s infinite; }
.bars.fire .bar:nth-child(3) { height: 40px; animation: pulse 1.2s ease-in-out 0.2s infinite; }
.bars.fire .bar:nth-child(4) { height: 30px; animation: pulse 1.2s ease-in-out 0.3s infinite; }
.bars.fire .bar:nth-child(5) { height: 38px; animation: pulse 1.2s ease-in-out 0.4s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

.arrow-icon {
  font-size: 1.5rem;
  color: var(--accent);
  animation: bounce 2s ease-in-out infinite;
}

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

/* HOW SECTION */
.how {
  padding: 120px 8%;
  border-top: 1px solid #1a1a1a;
}

.how h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: #8a8a8a;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* NICHES SECTION */
.niches {
  padding: 120px 8%;
  border-top: 1px solid #1a1a1a;
}

.niches h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.niches-sub {
  color: #8a8a8a;
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 520px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.niche-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.niche-card:hover {
  transform: translateY(-4px);
}

.niche-card.skate:hover { border-color: var(--skate); }
.niche-card.gym:hover { border-color: var(--gym); }
.niche-card.football:hover { border-color: var(--football); }

.niche-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.skate .niche-icon { color: var(--skate); }
.gym .niche-icon { color: var(--gym); }
.football .niche-icon { color: var(--football); }

.niche-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.niche-card p {
  color: #8a8a8a;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* FEATURES SECTION */
.features {
  padding: 120px 8%;
  border-top: 1px solid #1a1a1a;
  display: flex;
  gap: 80px;
}

.features-left {
  flex: 0 0 280px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.features-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.features-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.feature {
  padding-bottom: 48px;
  border-bottom: 1px solid #1a1a1a;
}

.feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.feature p {
  color: #8a8a8a;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
}

/* CLOSING */
.closing {
  padding: 140px 8%;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  background: radial-gradient(ellipse at 50% 80%, rgba(198,255,54,0.04) 0%, transparent 60%);
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.closing p {
  color: #8a8a8a;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  padding: 40px 8%;
  border-top: 1px solid #1a1a1a;
}

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

.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 6% 60px;
    gap: 48px;
  }

  .lede {
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .niche-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features {
    flex-direction: column;
    gap: 40px;
  }

  .features-left {
    position: static;
    flex: auto;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .phone-mock {
    width: 180px;
    height: 340px;
  }

  .how, .niches, .features, .closing {
    padding: 80px 6%;
  }
}