:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #e8e8e8;
  --fg-muted: #8a8a8a;
  --accent: #b8ff57;
  --accent-dim: rgba(184, 255, 87, 0.12);
  --accent-glow: rgba(184, 255, 87, 0.25);
  --border: #222222;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-w: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184, 255, 87, 0.06) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--accent-dim);
  border: 1px solid rgba(184, 255, 87, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: var(--space-md);
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero-line {
  display: block;
}

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

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-stat {
  display: inline-flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-md) var(--space-lg);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-prefix, .stat-suffix {
  font-size: 0.5em;
  color: var(--fg-muted);
  vertical-align: super;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: var(--space-xs);
  font-family: var(--font-mono);
}

/* ===== PROBLEM ===== */
.problem {
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--border);
}

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

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.problem h2, .how h2, .verticals h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  max-width: 720px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-md);
}

.problem-stat {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.problem-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.problem-punch {
  font-size: 1.15rem;
  color: var(--fg);
  max-width: 650px;
  line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: var(--space-md);
}

/* ===== HOW ===== */
.how {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.how-item {
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  transition: border-color 0.2s;
}

.how-item:hover {
  border-color: rgba(184, 255, 87, 0.3);
}

.how-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.how-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.how-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== VERTICALS ===== */
.verticals {
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

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

.vert-marquee {
  overflow: hidden;
  margin: var(--space-lg) calc(var(--space-md) * -1);
  padding: var(--space-sm) 0;
}

.vert-track {
  display: flex;
  gap: var(--space-sm);
  animation: scroll-left 20s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.vert-chip {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--fg);
  white-space: nowrap;
  font-weight: 500;
}

.vert-detail {
  max-width: 600px;
}

.vert-detail p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(184, 255, 87, 0.05) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-accent {
  font-family: var(--font-mono);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: rgba(184, 255, 87, 0.06);
  line-height: 1;
  margin-bottom: calc(var(--space-lg) * -1);
  position: relative;
  z-index: 0;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.closing-bold {
  color: var(--fg) !important;
  font-weight: 600;
  font-size: 1.15rem !important;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .hero {
    min-height: auto;
    padding: var(--space-lg) var(--space-sm);
  }

  .problem, .how, .verticals, .closing {
    padding: var(--space-xl) var(--space-sm);
  }

  .hero-stat {
    padding: var(--space-sm) var(--space-md);
  }
}

/* ===== HERO CTAs ===== */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--accent-glow);
}

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta-ghost:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}