:root {
  --bg: #0C0C0F;
  --bg2: #131318;
  --fg: #F4F4F5;
  --fg-muted: #8A8A9A;
  --accent: #FF4400;
  --accent-dim: rgba(255, 68, 0, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --font-display: 'Sora', 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;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 24px 80px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.manifesto-overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 20px;
}
.manifesto-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}
.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* REEL */
.reel {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.reel-inner { max-width: 1100px; margin: 0 auto; }
.reel-header { margin-bottom: 48px; }
.reel-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.reel-desc { color: var(--fg-muted); font-size: 16px; }
.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.reel-card {
  background: var(--bg2);
  padding: 36px 32px;
  position: relative;
}
.reel-card:nth-child(2n) { background: #111116; }
.reel-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.reel-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.reel-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 48px;
  max-width: 480px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.service-item {
  background: var(--bg2);
  padding: 32px 28px;
}
.service-item:nth-child(2) { background: #111116; }
.service-item:nth-child(3) { background: #0E0E13; }
.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.service-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-item p { color: var(--fg-muted); font-size: 14px; line-height: 1.6; }

.services-pricing { border-top: 1px solid var(--border); padding-top: 40px; }
.pricing-card { max-width: 400px; }
.pricing-label { font-size: 13px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 8px; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 24px;
}
.pricing-amount span { font-size: 22px; font-weight: 500; color: var(--fg-muted); }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 15px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

/* PROCESS / NICHES */
.process {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}
.process-desc {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.process-niches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.niche-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 96px 24px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* ── PRICING TIERS ───────────────────────────────────────────────── */
.pricing {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-hdr { margin-bottom: 48px; }
.pricing-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  max-width: 520px;
}
.pricing-subhead { color: var(--fg-muted); font-size: 16px; max-width: 540px; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: stretch;
}
.tier-card {
  background: var(--bg2);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-card:nth-child(1) { background: #111116; }
.tier-card:nth-child(3) { background: #0E0E13; }
.tier-card--featured {
  background: #18181F !important;
  border: 1px solid rgba(255, 68, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 68, 0, 0.15) inset;
}
.tier-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.tier-price span { font-size: 18px; font-weight: 500; color: var(--fg-muted); }
.tier-tagline { color: var(--fg-muted); font-size: 14px; line-height: 1.55; margin-bottom: 28px; }
.tier-includes { list-style: none; flex: 1; margin-bottom: 24px; }
.tier-includes li {
  font-size: 14px;
  color: var(--fg);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.tier-includes li:last-child { border-bottom: none; }
.check { color: var(--accent); font-size: 13px; flex-shrink: 0; line-height: 1.6; }
.tier-excludes {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 28px;
}
.tier-excl-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.tier-excludes ul { list-style: none; }
.tier-excludes ul li { font-size: 13px; color: var(--fg-muted); padding: 3px 0; }
.tier-excludes ul li::before { content: "✕ "; color: #555; }
.tier-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  margin-top: auto;
}
.tier-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.tier-cta--primary { background: var(--accent); color: #fff; }
.tier-cta--outline { border: 1px solid var(--border); color: var(--fg); }
.tier-cta--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── FREE TOOLS ──────────────────────────────────────────────────── */
.free-tools { padding: 64px 24px; border-bottom: 1px solid var(--border); background: var(--bg2); }
.free-tools-inner { max-width: 1100px; margin: 0 auto; }
.free-tools-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.free-tools-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.free-tools-sub { color: var(--fg-muted); font-size: 15px; margin-bottom: 40px; }
.free-tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.free-tool-card { background: var(--bg); padding: 36px 32px; }
.free-tool-card:nth-child(even) { background: #111116; }
.free-tool-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.free-tool-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.free-tool-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 20px; }
.free-tool-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--accent);
  text-decoration: none; font-family: var(--font-display);
  transition: opacity 0.15s;
}
.free-tool-link:hover { opacity: 0.75; }
.free-tool-link svg { width: 14px; height: 14px; }

/* ── NICHES ──────────────────────────────────────────────────────── */
.niches { padding: 80px 24px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 12px; }
.niches-sub { color: var(--fg-muted); font-size: 17px; max-width: 520px; line-height: 1.65; margin-bottom: 48px; }
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.niche-card { background: var(--bg); padding: 28px 24px; }
.niche-card:nth-child(even) { background: #111116; }
.niche-icon { font-size: 24px; margin-bottom: 14px; display: block; }
.niche-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.niche-card p { color: var(--fg-muted); font-size: 14px; line-height: 1.6; }

/* ── NICHE STRIP ────────────────────────────────────────────────────── */
.niche-strip {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 40px;
}
.niche-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.niche-strip-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.niche-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.niche-strip-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── WORKFLOW ────────────────────────────────────────────────────── */
.workflow { padding: 80px 24px; border-bottom: 1px solid var(--border); }
.workflow-inner { max-width: 860px; margin: 0 auto; }
.workflow-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 48px; }
.workflow-steps { display: flex; flex-direction: column; }
.wf-step { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.wf-step:last-child { border-bottom: none; }
.wf-num { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; padding-top: 4px; }
.wf-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.wf-body p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { padding: 80px 24px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 32px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 300; color: var(--accent); transition: transform 0.2s; }
.faq-item[open] .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { padding: 0 0 20px; }
.faq-a p { color: var(--fg-muted); font-size: 15px; line-height: 1.7; }

/* ── INTAKE FORM ─────────────────────────────────────────────────── */
.intake { padding: 96px 24px; border-bottom: 1px solid var(--border); }
.intake-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intake-heading { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 16px; }
.intake-sub { color: var(--fg-muted); font-size: 17px; line-height: 1.65; margin-bottom: 28px; max-width: 400px; }
.intake-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.intake-bullets li { font-size: 14px; color: var(--fg-muted); padding-left: 20px; position: relative; }
.intake-bullets li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.intake-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--fg-muted); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--accent); }
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-row option { background: var(--bg2); color: var(--fg); }
.form-row textarea { resize: vertical; min-height: 80px; }
.intake-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  margin-top: 4px;
}
.intake-submit:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.intake-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.intake-success { background: rgba(0,200,100,0.08); border: 1px solid rgba(0,200,100,0.3); border-radius: 6px; padding: 20px 24px; }
.intake-success p { color: #4ade80; font-size: 15px; font-weight: 500; }
.intake-error { background: rgba(255,68,0,0.08); border: 1px solid rgba(255,68,0,0.3); border-radius: 6px; padding: 16px 20px; }
.intake-error p { color: var(--fg-muted); font-size: 14px; }
.intake-error a { color: var(--accent); }

/* ── FOUNDING 5 PROMO BANNER (pricing section) ───────────────────── */
.founding-promo-banner {
  display: block;
  background: rgba(255,68,0,0.06);
  border: 1px solid rgba(255,68,0,0.25);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  margin-top: 20px;
  transition: border-color 0.15s, background 0.15s;
}
.founding-promo-banner:hover { border-color: rgba(255,68,0,0.5); background: rgba(255,68,0,0.09); }
.founding-promo-banner strong { color: var(--accent); }
.founding-promo-banner span { color: var(--accent); font-weight: 600; }

/* ── ROI CALCULATOR ──────────────────────────────────────────────── */
.roi-calc {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.roi-calc-inner { max-width: 1100px; margin: 0 auto; }
.roi-calc-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.roi-calc-sub {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 28px;
}
/* Preset buttons */
.roi-presets {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.roi-presets-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.roi-preset-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.roi-preset-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  font-family: var(--font-body);
}
.roi-preset-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.roi-preset-btn--active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
/* Main two-col layout */
.roi-calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
/* Inputs column */
.roi-inputs { display: flex; flex-direction: column; gap: 32px; }
.roi-input-group { display: flex; flex-direction: column; gap: 10px; }
.roi-input-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.roi-input-header label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.roi-input-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  min-width: 64px;
  text-align: right;
}
/* Slider */
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(255,68,0,0.18);
  transition: box-shadow 0.15s;
}
.roi-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(255,68,0,0.25);
}
.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--bg);
}
.roi-slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--fg-muted);
}
/* Results column */
.roi-results { display: flex; flex-direction: column; gap: 24px; }
.roi-big-number {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  text-align: center;
}
.roi-big-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.roi-big-value {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.roi-big-sub {
  font-size: 13px;
  color: var(--fg-muted);
}
/* Tier comparison rows */
.roi-tiers-compare { display: flex; flex-direction: column; gap: 2px; }
.roi-tier-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: border-color 0.15s, background 0.15s;
}
.roi-tier-row--recommended {
  background: rgba(255,68,0,0.06);
  border-color: rgba(255,68,0,0.3);
}
.roi-tier-info { display: flex; flex-direction: column; gap: 2px; }
.roi-tier-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.roi-tier-cost { font-size: 12px; color: var(--fg-muted); }
.roi-tier-return,
.roi-tier-payback { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.roi-tier-roi-label,
.roi-tier-payback-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.roi-tier-roi-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.roi-tier-row--recommended .roi-tier-roi-val { color: var(--accent); }
.roi-tier-payback-val { font-size: 13px; font-weight: 600; color: var(--fg-muted); }
.roi-tier-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}
/* CTA */
.roi-cta {
  display: block;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 15px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  line-height: 1.4;
}
.roi-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.roi-cta strong { font-weight: 800; }

/* MOBILE */
@media (max-width: 768px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-stats { border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 32px; }
  .stat { min-width: 120px; }
  .reel-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .intake-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .roi-calc-body { grid-template-columns: 1fr; gap: 32px; }
  .roi-presets { flex-direction: column; align-items: flex-start; }
  .roi-tier-row { grid-template-columns: 1fr auto auto; }
  .roi-tier-badge { display: none; }
}