/* ============================================================
   Local Business Growth Stack — v2 stylesheet (genuinely new)
   Variation 2: cinematic night edit, chapter narrative layout.
   Centered editorial hero, stat cards, playbook grid,
   two-column checkout. Dark ink + warm amber. Outfit display.
   Zero em-dashes, zero emoji, zero slop badges.
   Dials: VARIANCE 8 / MOTION 2 / DENSITY 3
   ============================================================ */

:root {
  --bg: #0b0b0e;
  --bg-2: #131318;
  --ink: #f2efe9;
  --ink-2: #b6b2a8;
  --muted: #757168;
  --line: #232228;
  --line-soft: rgba(255, 255, 255, 0.06);
  --accent: #e8a33d;
  --accent-strong: #f4b554;
  --on-accent: #171207;
  --danger: #ef6a5e;
  --success: #7ec99a;
  --radius: 14px;
  --display: 'Outfit', 'Space Grotesk', Arial, sans-serif;
  --body: 'Instrument Sans', Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --glow: radial-gradient(ellipse 70% 45% at 50% -5%, rgba(232, 163, 61, 0.10), transparent 70%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    var(--glow),
    radial-gradient(ellipse 80% 50% at 80% 110%, rgba(232, 163, 61, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.bar, .wrap, .foot { position: relative; z-index: 1; }

/* ===== Top bar ===== */
.bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 14, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 13px 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.bar .brand {
  font-family: var(--display); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.02em; color: var(--ink);
}
.bar .step {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/* ===== Layout ===== */
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 22px 80px;
}
.wrap.narrow { max-width: 620px; }

.center { text-align: center; }
.muted { color: var(--muted); }

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.3rem);
  line-height: 1.06;
  margin: 12px 0 20px;
  max-width: 18ch;
}
h2 {
  font-size: clamp(1.5rem, 3.4vw, 1.95rem);
  margin: 0 0 14px;
}
h3 { font-size: 1.08rem; }

p { margin-bottom: 14px; }
strong { font-weight: 600; color: var(--ink); }

.lead-sub {
  font-size: 1.12rem;
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 26px;
}

mark {
  background: transparent;
  color: var(--accent);
  font-weight: 700;
}

/* Chapter eyebrow */
.chap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
}

/* ===== Lead page ===== */
.lead-hero { text-align: center; }
.lead-hero h1 { margin-left: auto; margin-right: auto; }
.lead-hero .lead-sub { margin-left: auto; margin-right: auto; }

.lead-form {
  max-width: 520px;
  margin: 0 auto 34px;
  text-align: left;
}
.lead-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
@media (min-width: 620px) {
  .lead-fields { grid-template-columns: 1fr 1fr; }
}
.lead-fields label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
  font-weight: 500;
}
.lead-fields input {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.lead-fields input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.16);
}
.lead-form .btn { width: 100%; }
.lead-form .fine { text-align: center; }

.lead-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 640px;
  margin: 0 auto;
}
.lead-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}

.form-error {
  display: none;
  font-size: 0.88rem;
  color: var(--danger);
  text-align: center;
  margin: 0 0 14px;
}
.form-ok {
  display: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--success);
  text-align: center;
  padding: 10px 0 20px;
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0;
}
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  background: var(--bg-2);
  padding: 24px 20px;
}
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-cap {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ===== Free list (lead) ===== */
.free-list h2 { text-align: center; }
.free-list ol {
  list-style: none;
  counter-reset: free;
  max-width: 520px;
  margin: 18px auto 8px;
}
.free-list ol li {
  counter-increment: free;
  padding: 14px 0 14px 46px;
  position: relative;
  color: var(--ink-2);
  font-size: 0.98rem;
  border-top: 1px solid var(--line);
}
.free-list ol li:last-child { border-bottom: 1px solid var(--line); }
.free-list ol li::before {
  content: counter(free, decimal-leading-zero);
  position: absolute; left: 0; top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
}
.free-list ol li strong { color: var(--ink); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.005em;
  color: var(--on-accent);
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 24px rgba(232, 163, 61, 0.18);
}
.btn:hover { background: var(--accent-strong); box-shadow: 0 8px 28px rgba(232, 163, 61, 0.26); }
.btn:active { transform: scale(0.98); }
.btn.full { width: 100%; }
.btn-wrap { margin: 26px 0 10px; }

.fine {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ===== Thank-you ===== */
.ty-hero { text-align: center; }
.ty-hero h1 { margin-left: auto; margin-right: auto; }
.ty-hero .lead-sub { margin-left: auto; margin-right: auto; }

.ty-check {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 8px rgba(232, 163, 61, 0.12);
}
.ty-check::after {
  content: "";
  width: 22px; height: 12px;
  border-left: 3.5px solid var(--on-accent);
  border-bottom: 3.5px solid var(--on-accent);
  transform: rotate(-45deg) translate(1px, -2px);
}

/* Steps line */
.steps-line {
  list-style: none;
  counter-reset: step;
  margin: 20px 0 0;
}
.steps-line li {
  counter-increment: step;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.steps-line li:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 3px;
}
.steps-line li p { margin: 0; color: var(--ink-2); font-size: 0.98rem; }
.steps-line li p strong { color: var(--ink); }

.ty-next { margin: 36px 0; }

.bridge {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 30px 26px;
  margin: 30px 0;
  box-shadow: inset 0 1px 0 var(--line-soft);
}
.bridge p { color: var(--ink-2); font-size: 1rem; }

/* ===== Sales: chapters ===== */
.ch-hero { text-align: center; }
.ch-hero h1 { margin-left: auto; margin-right: auto; }
.ch-hero .lead-sub { margin-left: auto; margin-right: auto; }

.ch-problem, .ch-system, .ch-bonus, .ch-price, .ch-faq {
  margin-top: 64px;
}

.ch-quote {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  max-width: 24ch;
  margin: 34px auto 0;
  text-align: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
.stat-grid .stat { background: var(--bg-2); }

/* Playbook grid */
.playbook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .playbook-grid { grid-template-columns: 1fr 1fr; }
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 22px 20px;
  box-shadow: inset 0 1px 0 var(--line-soft);
}
.card-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.card h3 { margin: 8px 0 8px; }
.card p { margin: 0; font-size: 0.94rem; color: var(--ink-2); }

/* Bonus list */
.bonus-list {
  list-style: none;
  margin-top: 20px;
}
.bonus-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.bonus-list li:last-child { border-bottom: 1px solid var(--line); }
.bonus-list li strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
  display: inline-block;
  padding-right: 64px;
}
.bonus-list li p {
  margin: 6px 0 0;
  color: var(--ink-2);
  font-size: 0.94rem;
  max-width: 48ch;
}
.bonus-list .bval {
  position: absolute;
  right: 0; top: 20px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

/* Price card */
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 36px 24px;
  text-align: center;
  margin-top: 24px;
  box-shadow: inset 0 1px 0 var(--line-soft);
}
.price-was {
  font-size: 1.05rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-now {
  font-family: var(--display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.05;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
}
.price-meta {
  font-size: 0.95rem;
  color: var(--ink-2);
  margin: 4px 0;
}
.price-card .btn-wrap { margin-top: 22px; }
.price-card .fine { margin-top: 14px; }

/* Guarantee */
.ch-guarantee {
  margin-top: 56px;
  border: 1.5px solid rgba(232, 163, 61, 0.5);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: linear-gradient(180deg, rgba(232, 163, 61, 0.07), rgba(232, 163, 61, 0.02));
}
.ch-guarantee .seal {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.ch-guarantee p { color: var(--ink-2); font-size: 0.98rem; margin: 0; }

/* FAQ grid */
.faq-grid { margin-top: 20px; }
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 16px 18px;
  margin-bottom: 10px;
}
.faq-grid summary {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; gap: 12px;
  align-items: center;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.15rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq-grid details[open] summary::after { transform: rotate(45deg); }
.faq-grid details p {
  font-size: 0.94rem;
  color: var(--ink-2);
  margin: 12px 0 0;
  max-width: 52ch;
}

/* Final CTA */
.ch-final { margin-top: 60px; text-align: center; }
.ch-final h2 { margin-left: auto; margin-right: auto; }
.ch-final .lead-sub { margin-left: auto; margin-right: auto; }
.ps {
  max-width: 46ch;
  margin: 30px auto 0;
  text-align: left;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  font-size: 0.96rem;
  color: var(--ink-2);
}

/* ===== Order page ===== */
.co-head { text-align: center; }
.co-head h1 { margin-left: auto; margin-right: auto; }
.co-head .lead-sub { margin-left: auto; margin-right: auto; }

.co-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 30px;
}
@media (min-width: 700px) {
  .co-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.co-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 24px;
  box-shadow: inset 0 1px 0 var(--line-soft);
}
.co-summary h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.sum-row {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-2);
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.sum-row.total {
  border-top: 1.5px solid var(--ink);
  margin-top: 6px;
  font-weight: 700;
  color: var(--ink);
}
.sum-row .up { color: var(--accent); font-weight: 600; }
.co-summary .fine { margin-top: 14px; }

.bump {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 16px 18px;
  margin-bottom: 16px;
  cursor: pointer;
}
.bump input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.bump-body { display: flex; flex-direction: column; gap: 3px; }
.bump-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.bump-price { color: var(--accent); }
.bump-desc { font-size: 0.9rem; color: var(--ink-2); }

.co-form { display: flex; flex-direction: column; gap: 14px; }
.fld label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
  font-weight: 500;
}
.fld input {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.fld input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.16);
}
.fld-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.no-thanks {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: underline;
  margin-top: 18px;
}
.no-thanks:hover { color: var(--ink-2); }

/* ===== Confirmation ===== */
.cf-hero { text-align: center; }
.cf-hero h1 { margin-left: auto; margin-right: auto; }
.cf-hero .lead-sub { margin-left: auto; margin-right: auto; }

.cf-check {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 8px rgba(232, 163, 61, 0.12);
}
.cf-check::after {
  content: "";
  width: 22px; height: 12px;
  border-left: 3.5px solid var(--on-accent);
  border-bottom: 3.5px solid var(--on-accent);
  transform: rotate(-45deg) translate(1px, -2px);
}

.cf-steps { margin: 36px 0; }

.cf-note, .cf-help {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 24px;
  margin: 16px 0;
  box-shadow: inset 0 1px 0 var(--line-soft);
}
.cf-note h2 { font-size: 1.2rem; margin-bottom: 8px; }
.cf-note p, .cf-help p { color: var(--ink-2); margin: 0; }
.cf-help { text-align: center; }

/* ===== Footer ===== */
.foot {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 22px 48px;
  border-top: 1px solid var(--line);
}
.disclosure {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
  max-width: 60ch;
}
.foot > div:last-child {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
