:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --accent: #b4ff4d;
  --accent-dim: #8bc93a;
  --text: #f0ede6;
  --text-muted: #8a8780;
  --text-dim: #5a5850;
  --border: #2a2a2a;
}

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

html { scroll-behavior: smooth; }

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

/* Nav */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-headline span {
  color: var(--accent);
}

.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 300;
}

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

.stat {}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Sections shared */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.section-overline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 56px;
}

/* The Problem */
.the-problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.problem-item {
  background: var(--surface-2);
  padding: 40px 36px;
}

.problem-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}

.problem-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.step:first-child { border-top: none; }

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 2px;
  padding-top: 4px;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Who It's For */
.who-its-for {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.niche-card {
  background: var(--surface-2);
  padding: 36px 32px;
  transition: background 0.2s;
}

.niche-card:hover { background: #262626; }

.niche-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.niche-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: linear-gradient(135deg, #0f0f0f 0%, #111100 100%);
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 48px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* Mobile */
@media (max-width: 768px) {
  .site-nav { padding: 20px 24px; }
  .nav-tagline { display: none; }

  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 40px; letter-spacing: -1px; }
  .hero-stat-block { gap: 28px; }
  .stat-number { font-size: 40px; }

  .section-inner { padding: 64px 24px; }

  .problem-grid { grid-template-columns: 1fr; gap: 2px; }

  .step { grid-template-columns: 64px 1fr; gap: 24px; }

  .niche-grid { grid-template-columns: 1fr; gap: 2px; }

  .closing-headline { font-size: 32px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ============================================================
   Hero — niche rebuild
   ============================================================ */
.hero-overline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: #c8ff6e; transform: translateY(-1px); }

.hero-proof {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.proof-number { padding: 28px; background: var(--surface); }
.proof-divider { height: 1px; background: var(--border); }

.proof-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.proof-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   How it works — updated steps
   ============================================================ */
.step-num { display: flex; align-items: flex-start; padding-top: 2px; }

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.how-it-works .step { grid-template-columns: 60px 1fr; gap: 32px; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--text-dim); }
.pricing-card--featured { border-color: var(--accent); background: #0f100a; }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }

.price-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}

.price-period { font-size: 16px; color: var(--text-muted); }
.plan-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.feature-dim { color: var(--text-muted) !important; }
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.dash { color: var(--text-dim); flex-shrink: 0; }

.btn-plan {
  display: block;
  width: 100%;
  padding: 14px 0;
  text-align: center;
  background: var(--surface-2);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: background 0.15s, border-color 0.15s;
}
.btn-plan:hover { background: #2a2a2a; border-color: var(--text-dim); }
.btn-plan--featured { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.btn-plan--featured:hover { background: #c8ff6e; border-color: #c8ff6e; }

.pricing-note { text-align: center; font-size: 13px; color: var(--text-dim); margin-top: 32px; }

/* ============================================================
   Sample Work
   ============================================================ */
.sample-work { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.sample-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: -36px;
  margin-bottom: 40px;
}

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

.sample-slot {
  aspect-ratio: 9/16;
  max-height: 320px;
  border: 2px dashed var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.sample-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  padding: 16px;
  transition: background 0.2s;
}
.sample-slot:hover .sample-placeholder { background: var(--surface-2); }

/* ============================================================
   Social Proof
   ============================================================ */
.social-proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial--placeholder { opacity: 0.55; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.testimonial-quote { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; }
.testimonial-author { font-size: 13px; color: var(--text-dim); font-weight: 500; }

/* ============================================================
   Closing — added CTA buttons
   ============================================================ */
.closing-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 28px;
  background: transparent;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: var(--text-muted); }

/* ============================================================
   Lead Form
   ============================================================ */
.lead-form { border-top: 1px solid var(--border); }

.lead-form-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
  margin-top: -36px;
}

.lead-form-fields { max-width: 680px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label { font-size: 13px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.3px; }

.form-group input {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus { border-color: var(--accent); }
.form-group input::placeholder { color: var(--text-dim); }

.btn-submit {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 40px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.1s;
}
.btn-submit:hover:not(:disabled) { background: #c8ff6e; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-fine { font-size: 12px; color: var(--text-dim); margin-top: 12px; }

.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  background: #0f1c08;
  border: 1px solid #2a4a10;
  border-radius: 6px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
}

.form-error { margin-top: 12px; color: #ff6b6b; font-size: 14px; }

/* ============================================================
   Nav — updated with links
   ============================================================ */
.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-link { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.nav-link:hover { color: var(--text); }

.nav-cta {
  padding: 10px 20px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s;
}
.nav-cta:hover { background: #c8ff6e; }

/* ============================================================
   Footer — links row
   ============================================================ */
.footer-links { display: flex; gap: 24px; margin-bottom: 24px; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--text-muted); }

/* ============================================================
   Mobile — new sections
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .sample-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sample-slot { max-height: 200px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .closing-actions { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ============================================================
   Pitch Microsites — /for/:shopSlug
   ============================================================ */

.pitch-hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(160deg, #0a0a0a 0%, #0d0f06 100%);
}

.pitch-hero-inner { max-width: 860px; margin: 0 auto; }

.pitch-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.07;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
}

.pitch-headline span { color: var(--accent); }

.pitch-sub {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.pitch-hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.pitch-audit { border-bottom: 1px solid var(--border); }

.audit-callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 24px;
}

.audit-icon { color: var(--accent); flex-shrink: 0; padding-top: 2px; }

.audit-text { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

.gap-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.gap-badge strong { color: var(--accent); }
.gap-icon { font-size: 18px; }

.pitch-calendar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.calendar-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: -36px;
  margin-bottom: 40px;
  max-width: 700px;
}

.calendar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.calendar-week {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.week-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
  background: #0d100a;
}

.week-posts { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }

.calendar-post { display: flex; align-items: flex-start; gap: 10px; }

.post-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.post-idea { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

.calendar-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 640px;
}

.pitch-lift { border-bottom: 1px solid var(--border); }

.lift-grid {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.lift-stat { flex: 1; padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; }
.lift-divider { width: 1px; align-self: stretch; background: var(--border); }

.lift-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}

.lift-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.before-after-card {
  background: var(--surface);
  border: 1px solid #2a4010;
  border-radius: 8px;
  padding: 24px 28px;
}

.ba-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.ba-example {
  font-size: 16px;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ba-disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

.pitch-cta {
  background: linear-gradient(135deg, #0f0f0f 0%, #111100 100%);
  border-bottom: 1px solid var(--border);
}

.pitch-cta-inner { text-align: center; }

.pitch-cta-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.pitch-cta-headline span { color: var(--accent); }

.pitch-cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.pitch-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-cta-primary {
  display: inline-block;
  padding: 18px 36px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, transform 0.1s;
}
.btn-cta-primary:hover { background: #c8ff6e; transform: translateY(-1px); }

.btn-cta-secondary {
  display: inline-block;
  padding: 17px 28px;
  background: transparent;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.btn-cta-secondary:hover { border-color: var(--text-muted); }

.pitch-cta-fine { font-size: 12px; color: var(--text-dim); }

@media (max-width: 768px) {
  .pitch-hero { padding: 64px 24px 56px; }
  .pitch-headline { font-size: 36px; letter-spacing: -1px; }
  .pitch-hero-actions { flex-direction: column; align-items: flex-start; }
  .audit-callout { flex-direction: column; gap: 14px; padding: 20px; }
  .calendar-grid { grid-template-columns: 1fr; }
  .lift-grid { flex-direction: column; }
  .lift-divider { width: 100%; height: 1px; }
  .pitch-cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   Reel Gallery — Sample Work section
   ============================================================ */
.reel-gallery-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: -36px;
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.6;
}

/* 3-column grid desktop; horizontal scroll mobile */
.reel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reel-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
}
.reel-tile:hover { border-color: var(--text-dim); transform: translateY(-2px); }
.reel-tile--featured { border-color: var(--accent); }

/* Thumbnail area — portrait 9:16 */
.reel-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 280px;
  background: var(--surface-2);
  overflow: hidden;
  flex-shrink: 0;
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CSS mock thumbnails for tiles without images */
.reel-thumb-css {
  width: 100%;
  height: 100%;
}
.reel-thumb-css--gradient-fade {
  background: linear-gradient(145deg, #1a1200 0%, #2d1f00 40%, #0a0800 100%);
}
.reel-thumb-css--gradient-beard {
  background: linear-gradient(145deg, #0d1a10 0%, #1a3018 50%, #080f09 100%);
}
.reel-thumb-css--gradient-meme {
  background: linear-gradient(145deg, #120a1a 0%, #231040 50%, #0a0610 100%);
}
.reel-thumb-css--gradient-promo {
  background: linear-gradient(145deg, #0a1218 0%, #0d2030 50%, #060c12 100%);
}
.reel-thumb-css--gradient-pov {
  background: linear-gradient(145deg, #181008 0%, #2a1c0a 50%, #100c06 100%);
}
.reel-thumb-css--gradient-design {
  background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
}

/* Format badge — top-left pill */
.reel-format-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.85);
  color: var(--accent);
  border: 1px solid var(--accent);
  backdrop-filter: blur(4px);
}

/* Play icon — center of thumb */
.reel-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  border: 2px solid rgba(180, 255, 77, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.75;
  transition: opacity 0.2s, border-color 0.2s;
}
.reel-tile:hover .reel-play-icon { opacity: 1; border-color: var(--accent); }

/* Hook text — bold quote */
.reel-hook {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  padding: 0 16px;
}

/* Caption preview — truncated to one line */
.reel-caption {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* View range badge — bottom of tile */
.reel-views-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 16px 16px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(180, 255, 77, 0.08);
  color: var(--accent);
  border: 1px solid rgba(180, 255, 77, 0.2);
  align-self: flex-start;
}
.reel-views-badge::before {
  content: '▲';
  font-size: 8px;
}

.reel-gallery-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 600px;
}

/* Mobile — horizontal scroll */
@media (max-width: 768px) {
  .reel-gallery {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* hide scrollbar chrome */
    scrollbar-width: none;
  }
  .reel-gallery::-webkit-scrollbar { display: none; }

  .reel-tile {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: start;
  }

  .reel-thumb { max-height: 220px; }
}