:root {
  --bg: #0a0a0c;
  --bg-elevated: #111114;
  --bg-card: #16161a;
  --fg: #e8e6e3;
  --fg-muted: #8a8a8e;
  --accent: #c084fc;
  --accent-glow: rgba(192, 132, 252, 0.15);
  --accent-2: #818cf8;
  --crime: #ef4444;
  --finance: #22c55e;
  --ai: #818cf8;
  --motivation: #f59e0b;
  --football: #06b6d4;
  --tech: #ec4899;
  --docs: #a78bfa;
  --border: rgba(255,255,255,0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
}

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

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(192,132,252,0.08), transparent),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(129,140,248,0.05), transparent),
              var(--bg);
}

.hero-noise {
  position: absolute;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 2rem;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #000;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.2s;
}

.hero-btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  padding: 1.5rem 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- NICHES ---- */
.niches {
  padding: 6rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.niches-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.niches-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.niches-intro {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 550px;
}

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

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.niche-crime::before { background: var(--crime); }
.niche-finance::before { background: var(--finance); }
.niche-ai::before { background: var(--ai); }
.niche-motivation::before { background: var(--motivation); }
.niche-football::before { background: var(--football); }
.niche-tech::before { background: var(--tech); }
.niche-docs::before { background: var(--docs); }

.niche-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.niche-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.niche-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.niche-rpm {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.niche-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  align-items: start;
}

.niche-wide .niche-icon {
  grid-row: 1 / 3;
  align-self: center;
}

.niche-wide h3 {
  grid-column: 2;
  margin-bottom: 0;
}

.niche-wide p {
  grid-column: 2;
  margin-bottom: 0;
}

.niche-wide .niche-rpm {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

/* ---- WORKFLOW ---- */
.workflow {
  padding: 6rem 1.5rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.workflow-header {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.workflow-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.workflow-steps {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
}

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

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.step-connector {
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.3;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 1.5rem;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(192,132,252,0.06), transparent),
              var(--bg);
}

.closing-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.closing-metrics {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.metric-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 180px;
  display: block;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 5rem 1.5rem 3rem; }
  .hero-stats { flex-direction: column; gap: 1.2rem; padding: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .niche-grid { grid-template-columns: 1fr; }
  .niche-wide { grid-column: span 1; display: block; }
  .niche-wide .niche-rpm { display: inline-block; margin-top: 1rem; }
  .workflow-steps { flex-direction: column; gap: 1rem; }
  .step-connector { width: 100%; height: 2rem; }
  .step-connector::after { width: 1px; height: 100%; }
  .closing-metrics { gap: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .niches-header h2, .workflow-header h2, .closing h2 { font-size: 1.6rem; }
}