/* ===== VARIABLES ===== */
:root {
  --bg: #09090b;
  --surface: #111114;
  --surface-2: #18181c;
  --accent: #ff6b2b;
  --accent-dim: rgba(255, 107, 43, 0.15);
  --text: #f5f0e8;
  --text-muted: #7a7570;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 10px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 160px 32px 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,43,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  min-width: 160px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Hero cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.niche-card:hover {
  border-color: rgba(255, 107, 43, 0.3);
  background: var(--surface-2);
}
.niche-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ai-dot { background: #4ade80; }
.celeb-dot { background: #f472b6; }
.mot-dot { background: #fbbf24; }
.funny-dot { background: #60a5fa; }
.lux-dot { background: #c084fc; }
.niche-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  min-width: 130px;
}
.niche-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== SHARED SECTIONS ===== */
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ===== NICHES SECTION ===== */
.niches {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.niche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.niche-item {
  background: var(--surface);
  padding: 36px 40px;
  border: 1px solid var(--border);
}
.niche-item:first-child {
  border-radius: var(--radius) 0 0 0;
}
.niche-item:nth-child(2) {
  border-radius: 0 var(--radius) 0 0;
}
.niche-item:nth-child(4) {
  border-radius: 0 0 0 var(--radius);
}
.niche-item:last-child {
  border-radius: 0 0 var(--radius) 0;
}
.niche-item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.niche-icon {
  font-size: 18px;
  color: var(--accent);
}
.niche-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.niche-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== MONETIZATION SECTION ===== */
.monetization {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.monetization-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.stream-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stream {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.stream-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}
.stream h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.stream p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.manifesto-quote .manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.manifesto-aside p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.manifesto-aside strong {
  color: var(--text);
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 32px 120px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links span {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-text .hero-sub { max-width: 100%; }
  .niche-grid { grid-template-columns: 1fr; }
  .niche-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .niche-item:nth-child(4) { border-radius: 0; }
  .niche-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .stream-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 72px; }
  .niches, .monetization, .manifesto, .closing { padding: 72px 20px; }
  .nav-inner { padding: 14px 20px; }
  .stream-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats .stat { flex-direction: column; gap: 4px; }
  .stat-num { min-width: auto; }
}