:root {
  --bg: #0D0D0D;
  --bg-card: #141414;
  --fg: #FFFFFF;
  --fg-muted: #9A9A9A;
  --accent: #FF4B00;
  --accent-dim: rgba(255, 75, 0, 0.12);
  --border: #222222;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ── Navigation ── */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-logo strong { color: var(--accent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; gap: 24px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }

/* ── Portfolio ── */
.portfolio-hero {
  padding: 60px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-hero-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
}
.portfolio-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.portfolio-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 16px;
}
.portfolio-lede {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
}
.reel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.reel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 75, 0, 0.4);
}
.reel-thumbnail {
  position: relative;
  background: #111;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reel-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.reel-before, .reel-after {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.reel-before-label, .reel-after-label {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 4px;
}
.reel-before-label { background: rgba(0,0,0,0.7); color: #888; }
.reel-after-label { background: rgba(255,75,0,0.85); color: #fff; }
.reel-raw-bg {
  width: 100%;
  aspect-ratio: 9/16;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.reel-raw-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 7px, rgba(255,255,255,0.03) 7px, rgba(255,255,255,0.03) 8px);
}
.reel-raw-icon { color: #444; font-size: 20px; z-index: 1; position: relative; }
.reel-done-bg {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1e0a00, #2a1200);
  display: flex;
  align-items: flex-end;
  padding: 8px;
  border: 1px solid rgba(255,75,0,0.25);
}
.reel-done-captions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.reel-done-cap {
  background: rgba(255,75,0,0.12);
  border: 1px solid rgba(255,75,0,0.3);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 9px;
  color: var(--accent);
  text-align: center;
}
.reel-done-cap--sm { width: 60%; font-size: 8px; }
.reel-done-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: #0D0D0D;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 6px;
  border-radius: 4px;
}
.reel-done-trend {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 4px;
}
.reel-meta {
  padding: 20px;
  border-top: 1px solid var(--border);
}
.reel-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.reel-niche {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.reel-platform {
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 6px;
}
.reel-title {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.reel-stats {
  display: flex;
  gap: 16px;
}
.reel-stat {
  display: flex;
  align-items: center;
  gap: 6px;
}
.reel-stat-icon { color: var(--accent); font-size: 12px; }
.reel-stat-val { font-size: 12px; font-weight: 600; color: var(--fg); }
.reel-stat-label { font-size: 11px; color: var(--fg-muted); }

/* ── Portfolio CTA ── */
.portfolio-cta {
  background: var(--accent);
  padding: 80px 40px;
}
.portfolio-cta-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.portfolio-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: #0D0D0D;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.portfolio-cta-body {
  font-size: 18px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 36px;
}
.portfolio-cta-btn {
  display: inline-block;
  background: #0D0D0D;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.portfolio-cta-btn:hover { opacity: 0.85; }

/* ── Hero ── */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-specs {
  display: flex;
  gap: 40px;
}
.spec-item { display: flex; flex-direction: column; }
.spec-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}
.spec-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ── Hero Visual ── */
.hero-visual {
  display: flex;
  align-items: center;
  gap: 24px;
}
.phone-mockup {
  width: 180px;
  height: 360px;
  background: #1A1A1A;
  border-radius: 28px;
  padding: 12px;
  border: 1.5px solid #333;
}
.phone-screen { height: 100%; display: flex; flex-direction: column; gap: 8px; }
.video-placeholder {
  flex: 1;
  background: #222;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.03) 8px,
    rgba(255,255,255,0.03) 9px
  );
}
.video-placeholder--done {
  background: linear-gradient(135deg, #1A0A00 0%, #2A1000 100%);
  border: 1px solid rgba(255,75,0,0.3);
}
.play-icon {
  width: 32px;
  height: 32px;
  border: 2px solid #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid #555;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.play-icon--done {
  border-color: var(--accent);
}
.play-icon--done::after {
  border-left-color: var(--accent);
}
.video-caption {
  font-size: 11px;
  color: #666;
  font-weight: 500;
  text-align: center;
}
.caption-bar {
  background: #1E1E1E;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.caption-bar--done {
  background: rgba(255, 75, 0, 0.1);
  border: 1px solid rgba(255, 75, 0, 0.2);
}
.caption-tag {
  font-size: 10px;
  color: #888;
  font-weight: 500;
}
.caption-bar--done .caption-tag { color: var(--accent); }
.arrow-right { flex-shrink: 0; }

/* ── Proof Stats ── */
.proof {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.proof-stat { display: flex; flex-direction: column; gap: 6px; }
.proof-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
}
.proof-desc { font-size: 14px; color: var(--fg-muted); max-width: 200px; }
.proof-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ── How It Works ── */
.how { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 60px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card { padding: 32px 0; border-top: 2px solid var(--border); }
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* ── Niches ── */
.niches {
  background: var(--bg-card);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.niche-card {
  background: var(--bg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.niche-icon { margin-bottom: 20px; }
.niche-title { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.niche-body { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.pricing-callout {
  text-align: center;
  padding: 48px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.pricing-from { font-size: 13px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.pricing-amount { font-family: var(--font-display); font-size: 72px; color: var(--fg); line-height: 1; }
.pricing-period { font-size: 28px; color: var(--fg-muted); }
.pricing-note { font-size: 15px; color: var(--fg-muted); margin-top: 12px; }

/* ── Manifesto ── */
.manifesto { padding: 100px 40px; max-width: 900px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.manifesto-body { font-size: 16px; color: var(--fg-muted); line-height: 1.8; margin-bottom: 20px; }

/* ── Closing ── */
.closing {
  background: var(--accent);
  padding: 100px 40px;
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--bg);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.closing-body { font-size: 18px; color: rgba(0,0,0,0.65); max-width: 560px; line-height: 1.7; }

/* ── Footer ── */
.footer { padding: 60px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-logo strong { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 4px; }
.footer-copy { font-size: 13px; color: #555; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .proof-inner { flex-direction: column; align-items: flex-start; }
  .proof-divider { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .hero-specs { gap: 24px; }
  .spec-num { font-size: 28px; }
  .how, .niches, .manifesto, .closing { padding: 60px 24px; }
  .niche-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
  .pricing-amount { font-size: 52px; }
}