/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f1623;
  --bg-alt: #141c2b;
  --bg-card: #1a2336;
  --fg: #fafaf8;
  --fg-muted: #8897a8;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --cream: #fafaf8;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,130,200,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

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

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

/* Hero Visual — Right side */
.hero-visual {
  position: relative;
}

.hv-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.hv-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.hv-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hv-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.hv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hv-dot.green { background: #10b981; }
.hv-dot.amber { background: var(--gold); }

.hv-name {
  font-size: 0.8rem;
  color: var(--fg);
  flex: 1;
}

.hv-val {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-display);
}

.hv-badge {
  position: absolute;
  bottom: -14px;
  right: 24px;
  background: var(--gold);
  color: #0f1623;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 8vw;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 32px;
}

.stat-icon {
  color: var(--gold);
}

.stat-big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 140px;
}

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

/* ==================== NICHES ==================== */
.niches-section {
  padding: 100px 8vw;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 600px;
}

.section-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.niche-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.niche-card:hover::before { opacity: 1; }
.niche-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }

.niche-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.niche-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.niche-detail {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.niche-lead-val {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

/* ==================== PROCESS ==================== */
.process-section {
  background: var(--bg-alt);
  padding: 100px 8vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 60px auto 0;
}

.step {
  flex: 1;
  padding: 0 28px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(245,158,11,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

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

.step-connector {
  width: 40px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
  margin-top: 40px;
}

/* ==================== OUTCOMES ==================== */
.outcomes-section {
  padding: 100px 8vw;
  max-width: 1400px;
  margin: 0 auto;
}

.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 20px;
}

.outcomes-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg);
}

.outcome-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing Card */
.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.pc-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.pc-row {
  padding: 18px 0;
}

.pc-model {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.pc-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.pc-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.pc-note {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 20px;
  font-style: italic;
}

/* ==================== MANIFESTO ==================== */
.manifesto-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 8vw;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-mark {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
}

.manifesto-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-display);
}

.manifesto-attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.manifesto-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.manifesto-role {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 80px 8vw 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 340px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-self: end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-head {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { flex-direction: column; gap: 0; }
  .step-connector { width: 40px; height: 1px; margin: 24px 0; background: linear-gradient(90deg, var(--border), var(--gold), var(--border)); }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-sep { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: 60px 6vw 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .niches-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
  .stats-inner { grid-template-columns: 1fr; text-align: left; }
  .stat-block { align-items: flex-start; flex-direction: row; gap: 20px; }
}