:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --surface-2: #1A1A23;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --text: #F5F0E8;
  --text-muted: rgba(245, 240, 232, 0.5);
  --text-dim: rgba(245, 240, 232, 0.3);
  --border: rgba(255, 255, 255, 0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}

*, *::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;
  padding: 20px 40px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-tag {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 140px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pill {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 77, 0, 0.3);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 4px;
}
.pill-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-left: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.25), transparent 70%);
  top: 10%;
  right: -60px;
}
.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.15), transparent 70%);
  bottom: 20%;
  left: -40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
  max-width: 360px;
}
.grid-cell {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.grid-cell-accent {
  background: var(--accent-dim);
  border-color: rgba(255, 77, 0, 0.25);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* NICHES */
.niches {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niches-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 56px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  transition: border-color 0.2s;
}
.niche-card:hover {
  border-color: rgba(255, 77, 0, 0.4);
}
.niche-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.niche-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
}
.niche-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.niche-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PROCESS */
.process {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-header {
  margin-bottom: 72px;
}
.section-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 600px;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}
.step {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.step-connector {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  align-self: center;
  margin-top: 50px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-left h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.outcomes-desc {
  color: var(--text-muted);
  font-size: 16px;
}
.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.outcome-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.outcome-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
}
.outcome-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.outcome-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* MANIFESTO */
.manifesto {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-inner {
  max-width: 780px;
}
.manifesto-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}
.manifesto-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.manifesto-rule {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 32px;
}
.manifesto-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CLOSING / PRICING */
.closing {
  padding: 100px 40px 120px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}
.closing-block {
  max-width: 900px;
  margin: 0 auto 56px;
}
.closing-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.closing-num {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  background: var(--bg);
  text-align: center;
}
.closing-num-featured {
  border-color: rgba(255, 77, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.08) 0%, var(--bg) 60%);
}
.cn-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.cn-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.cn-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.cn-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}
.closing-num-featured .cn-price {
  color: var(--accent);
}
.cn-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.closing-vision {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.closing-vision p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 80px 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col span {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* SAMPLES */
.samples {
  padding: 120px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.samples-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.samples-header {
  margin-bottom: 64px;
}
.samples-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 20px;
}
.samples-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.reel-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.reel-card:hover {
  border-color: rgba(255, 77, 0, 0.4);
  transform: translateY(-2px);
}
.reel-thumbnail {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
}
.reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: rgba(255, 77, 0, 0.9);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.reel-platform {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  gap: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}
.reel-scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Fade scene */
.fade-scene {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  flex-direction: row;
  gap: 0;
  padding: 24px 16px;
}
.scene-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.scene-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scene-bar {
  width: 48px;
  height: 120px;
  border-radius: 6px;
}
.bar-blur {
  background: linear-gradient(180deg, rgba(150,140,120,0.4) 0%, rgba(100,90,80,0.3) 100%);
  box-shadow: 0 0 20px rgba(150,140,120,0.2);
}
.bar-sharp {
  background: linear-gradient(180deg, #f5f0e8 0%, #c9b89a 50%, #a8906e 100%);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}
.scene-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 24px;
}
.divider-line {
  width: 2px;
  flex: 1;
  background: rgba(255,77,0,0.5);
  border-radius: 1px;
}
.divider-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255,77,0,0.5);
  animation: pulse-play 2s ease-in-out infinite;
}
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 16px rgba(255,77,0,0.5); }
  50% { box-shadow: 0 0 28px rgba(255,77,0,0.8); }
}

/* BTS scene */
.bts-scene {
  background: linear-gradient(180deg, #0d0d14 0%, #1a1a2e 100%);
  flex-direction: column;
  gap: 24px;
}
.bts-scissors-wrap {
  display: flex;
  justify-content: center;
}
.bts-scissors {
  position: relative;
  width: 60px;
  height: 80px;
}
.blade {
  position: absolute;
  width: 8px;
  height: 70px;
  background: linear-gradient(to top, rgba(180,160,130,0.9), rgba(200,190,170,0.7));
  border-radius: 2px 2px 40% 40%;
  top: 0;
}
.blade-left {
  left: 20px;
  transform: rotate(-20deg);
  transform-origin: top center;
  animation: snip-left 1.5s ease-in-out infinite;
}
.blade-right {
  right: 20px;
  transform: rotate(20deg);
  transform-origin: top center;
  animation: snip-right 1.5s ease-in-out infinite;
}
.pivot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(200,180,140,0.8);
  border-radius: 50%;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@keyframes snip-left {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(-30deg); }
}
@keyframes snip-right {
  0%, 100% { transform: rotate(5deg); }
  50% { transform: rotate(30deg); }
}
.bts-hands {
  display: flex;
  gap: 60px;
}
.hand {
  width: 30px;
  height: 50px;
  background: linear-gradient(180deg, #c9a07a, #a07850);
  border-radius: 8px 8px 4px 4px;
}
.bts-guard {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.guard-tape {
  width: 80px;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(255,77,0,0.3) 0, rgba(255,77,0,0.3) 4px, transparent 4px, transparent 8px);
  border-radius: 2px;
}
.guard-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink-light 1s step-end infinite;
}
@keyframes blink-light {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Reaction scene */
.reaction-scene {
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a15 100%);
  flex-direction: column;
  gap: 16px;
}
.react-face {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.react-eye {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  position: relative;
  animation: eye-widen 3s ease-in-out infinite;
}
.react-eye::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #2a1a0a;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes eye-widen {
  0%, 60% { transform: scaleY(1); }
  80% { transform: scaleY(1.3); }
  100% { transform: scaleY(1); }
}
.react-mouth {
  width: 40px;
  height: 20px;
  border-radius: 0 0 40px 40px;
  border-bottom: 3px solid white;
  animation: smile 3s ease-in-out infinite;
}
@keyframes smile {
  0%, 60% { border-radius: 0 0 40px 40px; }
  80% { border-radius: 0 0 50px 50px; }
  100% { border-radius: 0 0 40px 40px; }
}
.react-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  color: rgba(255,77,0,0.8);
  font-size: 20px;
  animation: sparkle-float 2s ease-in-out infinite;
}
.s1 { top: 20%; left: 15%; animation-delay: 0s; }
.s2 { top: 30%; right: 15%; animation-delay: 0.5s; }
.s3 { top: 50%; right: 25%; animation-delay: 1s; }
@keyframes sparkle-float {
  0%, 100% { opacity: 0.4; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.3) translateY(-6px); }
}
.react-mirror {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.mirror-frame {
  width: 90px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}
.mirror-reflection {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, transparent 40%, rgba(255,77,0,0.08) 100%);
  border-radius: 6px;
}

/* Reel info */
.reel-info {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.reel-type {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.reel-type-icon {
  color: var(--accent);
}
.reel-type span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
}
.reel-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.reel-hook {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Reel copy */
.reel-copy {
  padding: 20px;
}
.copy-block {
  margin-bottom: 16px;
}
.copy-block:last-child { margin-bottom: 0; }
.copy-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 8px;
}
.copy-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-style: italic;
  margin-bottom: 4px;
  line-height: 1.5;
}
.copy-text-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hashtags span {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 4px;
}
.copy-meta {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.copy-meta span {
  font-size: 11px;
  color: var(--text-dim);
}

/* CTA */
.samples-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 460px;
}
.cta-pricing {
  text-align: right;
  flex-shrink: 0;
}
.cta-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.cta-price span {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
}
.cta-per {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cta-note {
  font-size: 12px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .niche-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .step-connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  }
  .outcomes-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .closing-numbers {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .niches { padding: 60px 20px; }
  .process { padding: 60px 20px; }
  .outcomes { padding: 60px 20px; }
  .manifesto { padding: 60px 20px; }
  .closing { padding: 60px 20px 80px; }
  .footer { padding: 60px 20px 40px; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .samples { padding: 60px 20px; }
  .reel-grid { grid-template-columns: 1fr; }
  .samples-cta {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .cta-pricing { text-align: left; }
}