@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-accent: #1a1a1a;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --fg-dim: #555555;
  --accent: #ff3c00;
  --accent-glow: rgba(255, 60, 0, 0.15);
  --accent-soft: #ff6b3d;
  --yellow: #ffd60a;
  --green: #00e676;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

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

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 900px;
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: var(--bg-secondary);
}

.stat-item {
  flex: 1;
  padding: 48px 40px;
  border-right: 1px solid #222;
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .accent {
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─── NICHES GRID ─── */
.niches {
  padding: 120px 48px;
  position: relative;
}

.niches::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.niches h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  max-width: 700px;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.niche-card {
  background: var(--bg-secondary);
  padding: 40px 32px;
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
}

.niche-card:hover::before {
  height: 100%;
}

.niche-card:hover {
  background: var(--bg-accent);
}

.niche-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.niche-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.niche-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── PIPELINE ─── */
.pipeline {
  padding: 120px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.pipeline h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  max-width: 700px;
}

.pipeline-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.pipeline-stages::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--yellow), var(--green));
  opacity: 0.4;
}

.stage {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.stage-number {
  font-family: 'Space Grotesk', sans-serif;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.stage:nth-child(1) .stage-number {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 40px var(--accent-glow);
}

.stage:nth-child(2) .stage-number {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 0 40px rgba(255, 214, 10, 0.15);
}

.stage:nth-child(3) .stage-number {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.15);
}

.stage h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* ─── PRODUCTS ─── */
.products {
  padding: 120px 48px;
}

.products h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 700px;
}

.products-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 64px;
  max-width: 560px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.product-item {
  padding: 32px 24px;
  background: var(--bg-secondary);
  border: 1px solid #1a1a1a;
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s ease;
}

.product-item:hover {
  border-color: #333;
}

.product-item .emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.product-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-item p {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* ─── CLOSING ─── */
.closing {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  position: relative;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
}

.closing p {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  padding: 48px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
  }

  .stats-bar {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #222;
    padding: 32px 24px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .niches, .pipeline, .products, .closing {
    padding: 80px 24px;
  }

  .pipeline-stages {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pipeline-stages::before {
    display: none;
  }

  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .product-list {
    grid-template-columns: 1fr;
  }

  .niches-grid {
    grid-template-columns: 1fr;
  }
}