:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --fg: #f5f5f5;
  --fg-muted: #888888;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --orange: #ea580c;
  --border: #1f1f1f;
  --font-display: 'Syne', 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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 64px 80px;
  align-items: center;
  min-height: 600px;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.video-frame {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  position: relative;
}
.frame-1 { grid-column: 1 / -1; }
.frame-2 { }
.frame-3 { }
.frame-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.frame-bar {
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.bar-amber { background: var(--amber); }
.bar-orange { background: var(--orange); }
.frame-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.frame-line {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  width: 100%;
}
.frame-line.short { width: 65%; }
.frame-cta {
  font-size: 12px;
  color: var(--amber);
  font-weight: 500;
}
.platform-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.platform {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 600;
}
.platform-dot {
  font-size: 6px;
  color: var(--border);
}

/* ── Pipeline ── */
.pipeline {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 56px;
  max-width: 580px;
}
.pipeline-steps {
  display: grid;
  grid-template-columns: auto 32px auto 32px auto 32px auto;
  align-items: start;
  gap: 0;
}
.pipe-step {
  flex: 1;
}
.pipe-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pipe-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pipe-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.pipe-arrow {
  font-size: 20px;
  color: var(--border);
  padding: 48px 8px 0;
  align-self: center;
}

/* ── Outcomes ── */
.outcomes {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.outcomes-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 440px;
}
.outcomes-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.outcome-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}
.outcome-icon {
  font-size: 20px;
  color: var(--amber);
  margin-bottom: 12px;
}
.outcome-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.outcome-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── Pricing ── */
.pricing {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
}
.plan {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}
.plan-starter {
  background: var(--bg-alt);
}
.plan-growth {
  background: var(--bg);
  border-color: var(--amber);
}
.plan-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg);
  background: var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
}
.plan-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}
.plan-features {
  list-style: none;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-ideal {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}
.pricing-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 500px;
}

/* ── Manifesto ── */
.manifesto {
  padding: 96px 64px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.manifesto-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── Closing ── */
.closing {
  padding: 96px 64px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.closing-sub {
  font-size: 18px;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ── Footer ── */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-meta {
  font-size: 12px;
  color: #444;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
  border: none;
}
.btn-primary {
  background: var(--amber);
  color: #0a0a0a;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--fg-muted); }
.btn-ghost {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}
.btn-ghost:hover { background: var(--amber-dim); }

/* ── Hero buttons ── */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ── Portfolio ── */
.portfolio {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
.portfolio-header { margin-bottom: 48px; }
.portfolio-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 12px;
  max-width: 500px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.portfolio-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-alt);
  transition: border-color 0.2s;
}
.portfolio-card:hover { border-color: var(--amber); }
.portfolio-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 320px;
  overflow: hidden;
}
.portfolio-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.portfolio-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.medspa-bg  { background: linear-gradient(160deg, #2a1f2e 0%, #1a0f1f 100%); }
.dentist-bg { background: linear-gradient(160deg, #0f1e2e 0%, #091420 100%); }
.roofer-bg  { background: linear-gradient(160deg, #1f1208 0%, #150c05 100%); }
.video-play-icon {
  font-size: 36px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.video-overlay-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}
.portfolio-card-body { padding: 20px; }
.portfolio-niche {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.portfolio-hook {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  font-style: italic;
}
.portfolio-cta { text-align: center; }

/* ── Problem ── */
.problem {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.problem-inner { max-width: 680px; }
.problem-list {
  list-style: none;
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.4;
}
.problem-icon {
  color: #ef4444;
  font-size: 20px;
  line-height: 1.2;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-resolution {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  border-left: 2px solid var(--amber);
  padding-left: 16px;
}

/* ── Pricing (3-col update) ── */
.pricing-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 12px;
  margin-bottom: 40px;
  max-width: 500px;
}
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
}
.plan-pilot { background: var(--bg-alt); }
.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding: 13px 20px;
}

/* ── Intake form ── */
.intake {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.intake-inner { max-width: 680px; }
.intake-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 12px;
  margin-bottom: 36px;
}
.intake-form { display: flex; flex-direction: column; gap: 20px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus { border-color: var(--amber); }
.form-select { appearance: none; cursor: pointer; }
.intake-submit { width: 100%; padding: 15px; font-size: 16px; cursor: pointer; }
.intake-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { font-size: 14px; min-height: 20px; }
.form-status-success { color: #22c55e; }
.form-status-error   { color: #ef4444; }

/* ── Footer (updated) ── */
.footer-top { margin-bottom: 20px; }
.footer-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--fg); }
.footer-dot { color: var(--border); font-size: 14px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px 48px; }
  .hero-visual { display: none; }
  .portfolio { padding: 56px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .problem { padding: 56px 24px; }
  .pipeline { padding: 56px 24px; }
  .pipeline-steps { grid-template-columns: 1fr; gap: 32px; }
  .pipe-arrow { display: none; }
  .pricing { padding: 56px 24px; }
  .pricing-grid-3 { grid-template-columns: 1fr; }
  .intake { padding: 56px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { display: none; }
  .stat { padding-right: 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-video-wrap { max-height: 260px; }
}
