:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-2: #222222;
  --fg: #f0ebe3;
  --fg-2: #9e9590;
  --accent: #ff9100;
  --accent-dim: rgba(255, 145, 0, 0.12);
  --border: rgba(240, 235, 227, 0.08);
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
  font-weight: 700;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,145,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 420px;
  line-height: 1.7;
}

/* Video frame visual */
.video-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.frame-inner { display: flex; flex-direction: column; gap: 12px; }
.clip-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.clip-card--2 { opacity: 0.85; }
.clip-card--3 { opacity: 0.65; }
.clip-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(255,145,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.clip-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.clip-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-2); }
.clip-stat { font-size: 14px; font-weight: 600; color: var(--fg); }
.clip-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 0 0 10px 10px;
  width: 75%;
}
.clip-bar--2 { width: 60%; }
.clip-bar--3 { width: 45%; }

/* WHAT */
.what {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.what-inner { max-width: 1200px; margin: 0 auto; }
.what-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.what-headline {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 600px;
  margin-bottom: 24px;
}
.what-body {
  color: var(--fg-2);
  max-width: 520px;
  margin-bottom: 56px;
  font-size: 16px;
  line-height: 1.7;
}
.what-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.service:hover { border-color: rgba(255,145,0,0.3); }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service h3 { font-size: 16px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 4px; }
.service p { font-size: 14px; color: var(--fg-2); }

/* NICHES */
.niches { padding: 120px 48px; }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-header { margin-bottom: 56px; }
.niches-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.niches-headline { font-size: clamp(28px, 4vw, 48px); }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.niche {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.niche:hover { border-color: rgba(255,145,0,0.25); }
.niche-icon { color: var(--accent); margin-bottom: 16px; }
.niche h3 { font-size: 17px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 8px; }
.niche p { font-size: 13px; color: var(--fg-2); line-height: 1.6; }

/* HOW */
.how {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 16px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.step-body h3 { font-size: 17px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 8px; }
.step-body p { font-size: 13px; color: var(--fg-2); line-height: 1.6; }
.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
  margin-top: 24px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 56px;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
}
.outcome {
  padding: 40px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-stat {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--fg);
}
.outcome-desc { font-size: 14px; color: var(--fg-2); line-height: 1.5; }

/* MANIFESTO */
.manifesto {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-text {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  margin-bottom: 32px;
}
.manifesto-accent { color: var(--accent); font-style: italic; }
.manifesto-body {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: var(--fg-2); max-width: 260px; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-col span { font-size: 14px; color: var(--fg-2); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 80px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 44px; }
  .what, .niches, .how, .outcomes, .manifesto, .footer { padding: 80px 24px; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 32px; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 20px; }
  .what, .niches, .how, .outcomes, .manifesto, .footer { padding: 60px 20px; }
  .hero-headline { font-size: 36px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}