:root {
  --bg: #F5F5F2;
  --bg-card: #FFFFFF;
  --ink: #0A0F0A;
  --ink-2: #1A2420;
  --muted: #6B7169;
  --line: rgba(10,15,10,0.10);
  --brand: #0F8A3C;
  --brand-2: #13a84a;
  --brand-deep: #0B2D16;
  --brand-dark-bg: #0A1810;
  --navy: #131a36;
  --paper: #F5F5F2;
  --red: #C0392B;
  --chip: #E8F3EC;
  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  z-index: 9000;
  transition: width 0.05s linear;
  box-shadow: 0 0 18px rgba(15,138,60,0.45);
}

/* ---------- Layout primitives ---------- */
.section { padding: clamp(64px, 9vw, 140px) var(--pad-x); position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; position: relative; }
.section.dark { background: var(--brand-dark-bg); color: #F5F5F2; }
.section.dark .h-display, .section.dark .h-title, .section.dark .h-sub { color: #FFFFFF; }
.section.dark .body-l, .section.dark .body-m { color: rgba(245,245,242,0.82); }
.section.dark .eyebrow { color: #FFFFFF; }
.section.dark .eyebrow::before { background: var(--brand); }
.section.dark .label-sm { color: rgba(245,245,242,0.55); }
.section.dark .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); color: #fff; }
.section.dark .outline-display {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.92);
  text-shadow: 0 0 18px rgba(255,255,255,0.08);
}
.section.navy { background: var(--navy); color: #F5F5F2; }
.section.navy .h-display, .section.navy .h-title, .section.navy .h-sub { color: #FFFFFF; }

.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.center { align-items: center; justify-content: center; text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink); font-weight: 700;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  font-family: 'JetBrains Mono', monospace;
}
.eyebrow::before {
  content: ""; width: 28px; height: 3px; background: var(--brand); border-radius: 2px;
}
.h-display {
  font-weight: 900;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.94; letter-spacing: -0.038em;
  color: var(--ink); text-wrap: balance;
  margin: 0;
}
.h-title {
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02; letter-spacing: -0.03em;
  color: var(--ink); text-wrap: balance;
  margin: 0;
}
.h-sub {
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45; color: var(--ink-2); letter-spacing: -0.005em;
  margin: 0;
}
.body-l { font-size: clamp(19px, 1.55vw, 23px); line-height: 1.6; color: var(--ink-2); }
.body-m { font-size: clamp(18px, 1.4vw, 21px); line-height: 1.6; color: var(--ink-2); }
.label-sm {
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.outline-display {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(10,15,10,0.88);
  letter-spacing: -0.045em; line-height: 0.94;
}
@media (max-width: 640px) {
  .outline-display { -webkit-text-stroke-width: 1.5px; }
}
.green { color: var(--brand); }
.strike { text-decoration: line-through; text-decoration-color: rgba(192,57,43,0.6); text-decoration-thickness: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px; border-radius: 999px;
  background: var(--brand); color: #fff;
  font-weight: 600; font-size: clamp(16px, 1.3vw, 18px);
  text-decoration: none; border: 0; cursor: pointer;
  font-family: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
  box-shadow: 0 10px 30px rgba(15,138,60,0.25);
  position: relative; overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-130%);
  pointer-events: none;
}
.btn.shine::after {
  animation: btnShine 1.2s ease-out;
}
@keyframes btnShine {
  to { transform: translateX(130%); }
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(15,138,60,0.45); }
.btn .arrow {
  width: 28px; height: 28px; border-radius: 999px; background: #fff;
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
  font-weight: 700;
}
.btn:hover .arrow { transform: rotate(-10deg) scale(1.08); }
.btn.lg { padding: 22px 32px; font-size: clamp(18px, 1.5vw, 22px); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(10,15,10,0.16);
  box-shadow: none;
}
.btn.ghost .arrow { background: var(--ink); color: #fff; }
.btn.ghost:hover { border-color: var(--ink); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.section.dark .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.22); }
.section.dark .btn.ghost .arrow { background: #fff; color: var(--ink); }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(20px, 2.4vw, 32px);
}

/* ---------- TOP BAR ---------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad-x); position: relative; z-index: 5;
  max-width: var(--maxw); margin: 0 auto;
}
.topbar img.logo { height: 32px; width: auto; }
.topbar .topbar-meta {
  display: flex; gap: 16px; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.topbar .topbar-meta .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(15,138,60,0.08);
  color: var(--brand);
  border: 1px solid rgba(15,138,60,0.2);
  border-radius: 999px;
  font-weight: 700;
}
.topbar .topbar-meta .pill .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(15,138,60,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(15,138,60,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(15,138,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,138,60,0); }
}
@media (max-width: 640px) {
  .topbar .topbar-meta .label-meta { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(48px, 7vw, 96px);
  position: relative; overflow: hidden;
}
.hero .dot-grid,
.hero .dot-grid-bl {
  position: absolute;
  width: 240px; height: 240px;
  background-image: radial-gradient(circle, rgba(10,15,10,0.18) 1.4px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.5; pointer-events: none;
}
.hero .dot-grid { top: -10px; right: -40px; }
.hero .dot-grid-bl { bottom: -40px; left: -40px; }
@media (max-width: 640px) {
  .hero .dot-grid-bl { width: 160px; height: 160px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(20px, 3vw, 40px);
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero-headline {
  display: flex; flex-direction: column; gap: 26px;
}
.price-stack {
  display: inline-flex; align-items: baseline; gap: 18px;
  flex-wrap: wrap;
}
.price-stack .old {
  font-weight: 800; font-size: clamp(22px, 2.4vw, 32px);
  color: var(--muted); letter-spacing: -0.02em;
}
.price-stack .new {
  font-weight: 900;
  font-size: clamp(80px, 12vw, 160px);
  letter-spacing: -0.05em;
  color: var(--brand);
  line-height: 0.85;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.price-stack .new .dollar {
  font-size: 0.55em; vertical-align: 0.32em;
  color: var(--ink); margin-right: 4px; font-weight: 800;
}
.price-stack .footnote {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  margin-left: 4px;
}

.hero-meta-row {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 18px; border-top: 1px dashed rgba(10,15,10,0.16);
  font-family: 'JetBrains Mono', monospace;
}
.hero-meta-row .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-row .item .k {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.hero-meta-row .item .v {
  font-size: 15px; letter-spacing: -0.005em; color: var(--ink); font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.hero-cta-row {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  margin-top: 12px;
}
.hero-cta-row .micro {
  font-size: 15px; color: var(--muted); max-width: 380px; line-height: 1.5;
}

/* Hero VSL */
.hero-vsl {
  position: relative;
  border-radius: 22px; overflow: hidden;
  background: #0A0F0A;
  aspect-ratio: 16 / 10;
  box-shadow:
    0 40px 80px rgba(10,15,10,0.22),
    0 8px 20px rgba(15,138,60,0.14);
  border: 1px solid rgba(10,15,10,0.08);
}
.hero-vsl::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--vsl-poster, none) center/cover no-repeat;
  filter: contrast(1.05) saturate(0.95);
}
.hero-vsl::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 100%);
}
.hero-vsl video { width: 100%; height: 100%; display: block; object-fit: cover; position: relative; z-index: 2; }
.hero-vsl.is-playing::before, .hero-vsl.is-playing::after { display: none; }
.hero-vsl .video-play {
  position: absolute; inset: 0; margin: auto;
  width: 96px; height: 96px;
  border: 0; background: transparent; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.45));
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hero-vsl .video-play:hover { transform: scale(1.08); }
.hero-vsl.is-playing .video-play { opacity: 0; pointer-events: none; }
.hero-vsl .video-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10,15,10,0.7); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  font-family: 'JetBrains Mono', monospace;
}
.hero-vsl .video-badge .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand); animation: pulse 2s infinite;
}
.hero-vsl .runtime {
  position: absolute; bottom: 16px; right: 16px; z-index: 3;
  background: rgba(10,15,10,0.78); color: #fff;
  padding: 6px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.hero-vsl .vsl-caption {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  max-width: 60%;
}

/* Hero trust ribbon — single row on desktop, evenly distributed, bolder */
.hero-ribbon {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  gap: clamp(12px, 1.4vw, 22px);
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(12px, 1.05vw, 14px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 800;
}
.hero-ribbon .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero-ribbon .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--brand); color: #fff;
  font-size: 13px; font-weight: 900;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .hero-ribbon {
    flex-wrap: wrap;        /* allow wrap on tablet/mobile */
    justify-content: flex-start;
    gap: 14px 26px;
    font-size: 12px;
    padding: 18px 0;
  }
}

/* ---------- PROBLEM ---------- */
.problem-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 40px; align-items: stretch;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-photo {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
  background: #1A2420;
  min-height: 360px;
  display: flex; align-items: flex-end;
  padding: 24px;
}
.problem-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.problem-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,15,10,0) 40%, rgba(10,15,10,0.78) 100%);
}
.problem-photo .caption {
  position: relative; z-index: 2; color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700;
}
.problem-photo .caption .line {
  display: block; font-size: 14px; font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em; text-transform: none; font-weight: 600;
  color: rgba(255,255,255,0.8); margin-top: 6px;
}
.problem-spots {
  display: flex; flex-direction: column; gap: 16px;
}
.spot-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px;
  padding: 18px 22px; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.spot-row .num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800; font-size: 28px; line-height: 1;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.spot-row .h {
  font-weight: 800; font-size: 18px; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 6px;
}
.spot-row .b {
  color: rgba(245,245,242,0.78);
  font-size: 15px; line-height: 1.5;
}
.problem-stats {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 720px) { .problem-stats { grid-template-columns: 1fr; } }
.problem-stat {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
}
.problem-stat .num { display: inline-flex; align-items: baseline; flex-shrink: 0; }
.problem-stat .num {
  font-weight: 900; font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em; color: var(--brand-2); line-height: 1;
}
.problem-stat .num sup { font-size: 0.5em; vertical-align: 0.5em; }
.problem-stat .copy {
  color: rgba(245,245,242,0.85); font-size: 15px; line-height: 1.4; font-weight: 500;
}
.problem-cta-row { margin-top: clamp(40px, 5vw, 64px); display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ---------- THE SHIFT ---------- */
.shift-head {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 56px); align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) { .shift-head { grid-template-columns: 1fr; align-items: start; } }

.tri-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .tri-grid { grid-template-columns: 1fr; } }
.tri-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tri-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15,138,60,0.12);
  border-color: rgba(15,138,60,0.4);
}
.tri-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--brand); text-transform: uppercase;
}
.tri-card h3 {
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 900;
  letter-spacing: -0.025em; line-height: 1.05; margin: 0;
}
.tri-card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin: 0; }
.tri-card .stat {
  margin-top: auto; padding-top: 14px;
  border-top: 1px dashed rgba(10,15,10,0.14);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted); font-weight: 700;
}
.tri-card .stat strong { color: var(--brand); font-weight: 800; }
.tri-card.highlight { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
.tri-card.highlight .num { color: var(--brand-2); }
.tri-card.highlight h3 { color: #fff; }
.tri-card.highlight p { color: rgba(255,255,255,0.78); }
.tri-card.highlight .stat { color: rgba(255,255,255,0.5); border-top-color: rgba(255,255,255,0.18); }
.tri-card.highlight .stat strong { color: var(--brand-2); }

.shift-callout {
  margin-top: clamp(40px, 5vw, 56px);
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px); align-items: center;
  position: relative; overflow: hidden;
}
@media (max-width: 800px) { .shift-callout { grid-template-columns: 1fr; } }
.shift-callout::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1.5px);
  background-size: 22px 22px; opacity: 0.6;
  pointer-events: none;
}
.shift-callout .h {
  font-size: clamp(28px, 3.4vw, 44px); font-weight: 900;
  letter-spacing: -0.025em; line-height: 1.05; margin: 0; color: #fff;
  position: relative; z-index: 1;
}
.shift-callout .h em {
  font-style: normal; color: var(--brand-2);
}
.shift-callout .b {
  color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.55; margin: 0;
  position: relative; z-index: 1;
}

/* ---------- OFFER PATHS ---------- */
.paths-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .paths-grid { grid-template-columns: 1fr; } }
.path-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.path-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 30px 60px rgba(15,138,60,0.18),
    inset 0 0 0 1px rgba(15,138,60,0.4);
}
.path-card.featured::before {
  content: "Best Value · Bundle";
  position: absolute; top: -14px; left: 28px;
  background: var(--brand); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.path-card:hover { transform: translateY(-4px); }
.path-card .pname {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); font-weight: 700;
}
.path-card.featured .pname { color: var(--brand-2); }
.path-card h3 {
  font-size: clamp(28px, 3vw, 38px); font-weight: 900;
  letter-spacing: -0.025em; line-height: 1.1; margin: 0;
  color: inherit;
}
.path-card .price {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
}
.path-card .price .from {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.path-card.featured .price .from { color: rgba(255,255,255,0.55); }
.path-card .price .num {
  font-weight: 900; font-size: clamp(48px, 5vw, 64px);
  letter-spacing: -0.04em; line-height: 0.95; color: var(--ink);
}
.path-card.featured .price .num { color: #fff; }
.path-card .price .num .dollar {
  font-size: 0.55em; vertical-align: 0.32em; margin-right: 2px;
}
.path-card .timeline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 700; color: var(--ink-2);
  margin-top: 0;
}
.path-card.featured .timeline { color: rgba(255,255,255,0.78); }
.path-card .timeline .pulse {
  width: 8px; height: 8px; border-radius: 999px; background: var(--brand);
  animation: pulse 2s infinite;
}
.path-card .desc {
  font-size: 16.5px; line-height: 1.6; color: var(--ink-2); margin: 0;
}
.path-card.featured .desc { color: rgba(255,255,255,0.82); }
.path-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.path-card ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; line-height: 1.5;
}
.path-card ul li::before {
  content: "+"; color: var(--brand); font-weight: 800;
  font-family: 'JetBrains Mono', monospace; flex-shrink: 0;
  margin-top: 1px;
}
.path-card.featured ul li::before { color: var(--brand-2); }
.path-card .pcta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  padding: 16px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  letter-spacing: -0.005em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, gap 0.25s;
  box-shadow: 0 8px 22px -8px rgba(10,15,10,0.4);
}
.path-card .pcta:hover {
  gap: 14px;
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(15,138,60,0.5);
}
.path-card.featured .pcta {
  background: var(--brand);
  box-shadow: 0 10px 26px -8px rgba(15,138,60,0.55);
}
.path-card.featured .pcta:hover {
  background: #0a6b2c;
  box-shadow: 0 14px 30px -10px rgba(15,138,60,0.7);
}

.everything-included {
  position: relative;
  margin-top: clamp(40px, 5vw, 56px);
  border-radius: 28px;
  padding: clamp(32px, 4.5vw, 52px) clamp(28px, 4vw, 48px);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(15,138,60,0.06), transparent 55%),
    radial-gradient(110% 85% at 100% 100%, rgba(15,138,60,0.05), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafaf6 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 30px 60px -28px rgba(15,30,18,0.18),
    0 8px 22px -10px rgba(15,138,60,0.08);
  border: 1px solid rgba(15,138,60,0.12);
  overflow: hidden;
}
/* hairline brand accent across the top edge */
.everything-included::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(15,138,60,0.4) 18%,
    var(--brand) 50%,
    rgba(15,138,60,0.4) 82%,
    transparent 100%);
}
.ei-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15,138,60,0.08);
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ei-eyebrow .ei-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,138,60,0.18);
}
.everything-included h3 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900; letter-spacing: -0.028em; margin: 0 0 26px;
  line-height: 1.05;
}
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 800px) { .included-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }
@media (max-width: 540px) { .included-grid { grid-template-columns: 1fr; } }
.included-grid .inc-item {
  display: flex; gap: 12px; padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15,30,18,0.06);
  box-shadow: 0 1px 0 rgba(15,138,60,0.04);
  font-size: 14px; line-height: 1.45;
  align-items: flex-start;
  font-weight: 500;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.included-grid .inc-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(15,30,18,0.16);
  border-color: rgba(15,138,60,0.22);
}
.included-grid .inc-item strong { font-weight: 800; color: var(--ink); }
.included-grid .inc-item .check {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--brand); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px -4px rgba(15,138,60,0.55);
  margin-top: 1px;
}

/* ---------- DIY KILLSHOT ---------- */
.diy-section {
  background: var(--paper);
  position: relative; overflow: hidden;
}
.diy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px); align-items: center;
  margin-top: 40px;
}
@media (max-width: 900px) { .diy-grid { grid-template-columns: 1fr; } }
.diy-tools {
  display: flex; flex-direction: column; gap: 12px;
}
.tool-row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 18px;
  align-items: center;
  padding: 18px 22px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
  transition: opacity 0.3s ease;
}
.tool-row .tlogo {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px; color: #fff;
  letter-spacing: -0.02em;
}
.tool-row .tname {
  font-weight: 800; font-size: 17px; letter-spacing: -0.01em;
}
.tool-row .tname .sub {
  display: block; font-weight: 500; font-size: 14px;
  color: var(--muted); margin-top: 2px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
}
.tool-row .verdict {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(192,57,43,0.08);
  padding: 6px 12px; border-radius: 999px;
}
.tool-row.go-for-it { opacity: 0.55; }
.diy-quote {
  background: var(--ink); color: #fff;
  border-radius: 24px; padding: clamp(28px, 4vw, 44px);
  position: relative;
}
.diy-quote .mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 80px; line-height: 0.6; color: var(--brand-2);
  margin: 0 0 12px;
}
.diy-quote .q {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700; letter-spacing: -0.015em; line-height: 1.25;
  margin: 0;
}
.diy-quote .q em { font-style: normal; color: var(--brand-2); }
.diy-quote .attr {
  margin-top: 24px;
  display: flex; align-items: center; gap: 14px;
}
.diy-quote .avatar {
  width: 56px; height: 56px; border-radius: 999px; overflow: hidden;
  background: #333;
  border: 2px solid var(--brand-2);
  flex-shrink: 0;
}
.diy-quote .avatar img { width: 100%; height: 100%; object-fit: cover; }
.diy-quote .name { font-weight: 800; font-size: 15px; color: #fff; }
.diy-quote .role {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-family: 'JetBrains Mono', monospace;
  font-weight: 700; margin-top: 4px;
}

/* ---------- PROOF WALL ---------- */
.proof-section { position: relative; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.proof-tile {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.proof-tile:hover { transform: translateY(-4px); border-color: rgba(15,138,60,0.5); }
.proof-tile .thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1A2420;
}
.proof-tile .thumb img { width: 100%; height: 100%; object-fit: cover; }
.proof-tile .meta { padding: 14px 16px; }
.proof-tile .num {
  font-weight: 900; font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em; color: var(--brand-2); line-height: 1.1;
}
.proof-tile .who {
  font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.proof-tile.feature { grid-column: span 6; }
.proof-tile.half { grid-column: span 6; }
.proof-tile.third { grid-column: span 4; }
.proof-tile.quarter { grid-column: span 3; }
.proof-tile .badge-saul {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(15,138,60,0.92); color: #fff;
  padding: 5px 10px; border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800;
}
@media (max-width: 900px) {
  .proof-tile.feature, .proof-tile.half, .proof-tile.third { grid-column: span 6; }
  .proof-tile.quarter { grid-column: span 6; }
}
@media (max-width: 600px) {
  .proof-tile.feature, .proof-tile.half, .proof-tile.third, .proof-tile.quarter { grid-column: span 12; }
}

.case-feature {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(40px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .case-feature { grid-template-columns: 1fr; } }
.case-feature .quote-block { color: #fff; }
.case-feature .quote-block .big {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
}
.case-feature .quote-block .big em {
  font-style: normal; color: var(--brand-2);
}
.case-feature .quote-block p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.55; margin: 0 0 14px; }
.case-feature .quote-block .who {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.04em; font-weight: 700; color: #fff;
}
.case-feature .quote-block .who .pin { color: var(--brand-2); }
.case-feature .yt-thumb {
  position: relative; display: block; border-radius: 16px;
  overflow: hidden; box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  aspect-ratio: 16/9; background: #000; text-decoration: none;
  transition: transform 0.3s ease;
}
.case-feature .yt-thumb:hover { transform: translateY(-4px); }
.case-feature .yt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.case-feature .yt-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 35%, rgba(0,0,0,0.5) 100%);
}
.case-feature .yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 52px; border-radius: 12px;
  background: rgba(0,0,0,0.82);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.case-feature .yt-thumb:hover .yt-play { background: #FF0000; transform: translate(-50%, -50%) scale(1.08); }
.case-feature .yt-play::before {
  content: ""; width: 0; height: 0;
  border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Marquee */
.proof-marquee {
  margin-top: clamp(40px, 5vw, 64px);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.proof-track {
  display: flex; gap: 14px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.proof-track .snippet {
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 6px;
  max-width: 360px;
}
.proof-track .snippet .stars { color: #FBBC05; letter-spacing: 1px; font-size: 12px; }
.proof-track .snippet .t { color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.45; }
.proof-track .snippet .who { color: rgba(255,255,255,0.55); font-size: 12px; font-family: 'JetBrains Mono', monospace; }

/* ---------- HOW IT WORKS (TIMELINE) ---------- */
.timeline-bar {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 6px; height: 14px; margin: 40px 0 16px;
}
.timeline-bar div {
  border-radius: 4px; transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.timeline-bar div:nth-child(1) { background: rgba(15,138,60,0.3); border-radius: 10px 4px 4px 10px; transition-delay: 0.1s; }
.timeline-bar div:nth-child(2) { background: rgba(15,138,60,0.6); transition-delay: 0.4s; }
.timeline-bar div:nth-child(3) { background: var(--brand); border-radius: 4px 10px 10px 4px; box-shadow: 0 0 24px rgba(15,138,60,0.4); transition-delay: 0.7s; }
.in-view .timeline-bar div { transform: scaleX(1); }

.timeline-labels {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  margin-bottom: 24px;
}
.phases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .phases-grid { grid-template-columns: 1fr; } .timeline-bar, .timeline-labels { display: none; } }
.phase-block {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.phase-block .pnum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand); font-weight: 800;
}
.phase-block h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900; letter-spacing: -0.02em; margin: 0; line-height: 1.15;
}
.phase-block ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.phase-block ul li {
  font-size: 16px; line-height: 1.5; color: var(--ink-2);
  display: flex; gap: 12px;
}
.phase-block ul li::before {
  content: "→"; color: var(--brand); font-weight: 700; flex-shrink: 0;
}
/* placeholder phase outcome */
.phase-block .outcome {
  margin-top: auto; padding-top: 16px;
  border-top: 1px dashed rgba(10,15,10,0.16);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; color: var(--muted); letter-spacing: 0.04em; line-height: 1.5;
}
.phase-block .outcome strong { color: var(--ink); font-size: 15px; }

/* ---------- WHO THIS IS FOR · compact ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.who-card::after {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 56px; height: 56px;
  background: linear-gradient(225deg, rgba(15,138,60,0.10) 0%, transparent 60%);
  border-bottom-left-radius: 100%;
  pointer-events: none;
}
.who-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15,138,60,0.4);
  box-shadow: 0 14px 28px rgba(15,138,60,0.10);
}
.who-card .step {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800; font-size: 13px;
}
.who-card .step.green { background: var(--brand); }
.who-card h3 {
  font-size: 16.5px; font-weight: 800; letter-spacing: -0.015em;
  margin: 0; line-height: 1.25;
}
.who-card p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.who-card .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand); font-weight: 800;
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: 6px;
}
.who-card .tag.bad { color: var(--red); }

/* ---------- FAQ · clean dividers, no boxes ---------- */
.faq-list {
  margin-top: 48px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  transition: background 0.3s ease;
}
.faq-item.open {
  background: rgba(15,138,60,0.04);
}
.faq-q {
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
  padding: 28px 8px;
  font-weight: 800; font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.01em;
  cursor: pointer; user-select: none;
  color: var(--ink);
  background: transparent; border: 0; width: 100%; text-align: left;
  font-family: inherit;
  transition: padding 0.3s ease, color 0.2s ease;
}
.faq-item.open .faq-q { padding-left: 22px; padding-right: 22px; color: var(--brand-deep); }
.faq-item:hover .faq-q { color: var(--brand); }
.faq-q .toggle {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px;
  background: var(--chip); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px;
  transition: transform 0.3s ease, background 0.3s ease;
  font-family: 'JetBrains Mono', monospace;
}
.faq-item.open .toggle { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 22px 28px;
  color: var(--ink-2); font-size: 17px; line-height: 1.65;
  max-width: 760px;
}
.faq-a-inner strong { color: var(--ink); }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative; overflow: hidden;
}
.cta-grid-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta .micro-card {
  margin-top: 36px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  max-width: 720px; text-align: left;
  backdrop-filter: blur(8px);
}
.final-cta .micro-card .label-sm { color: var(--brand-2); margin-bottom: 8px; }
.final-cta .micro-card p { color: rgba(245,245,242,0.78); margin: 0; font-size: 16px; line-height: 1.55; }
.final-cta .micro-card p strong { color: #fff; font-weight: 700; display: block; margin-bottom: 4px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 36px var(--pad-x);
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.footer img { height: 24px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; margin-left: 18px; }
.footer a:hover { color: #fff; }

/* ---------- REVEALS (always visible, only animate when present) ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal:not(.in), .reveal-left:not(.in), .reveal-right:not(.in), .reveal-scale:not(.in) {
  /* fallback: stay visible if observer never fires */
}
.reveal.in, .reveal-left.in, .reveal-right.in, .reveal-scale.in { opacity: 1; transform: none; }
.d1.in { transition-delay: 0.08s; }
.d2.in { transition-delay: 0.16s; }
.d3.in { transition-delay: 0.24s; }
.d4.in { transition-delay: 0.32s; }
.d5.in { transition-delay: 0.4s; }
.d6.in { transition-delay: 0.48s; }
.d7.in { transition-delay: 0.56s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .timeline-bar div { transform: scaleX(1) !important; transition: none; }
  .btn::after { display: none; }
}

/* ---------- QUALIFIER MODAL (sprint-parity port) ---------- */
.quiz-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 6px 0;
  font-size: 13px; font-weight: 600; color: var(--muted);
  cursor: pointer; font-family: inherit;
  margin-bottom: 14px;
  transition: color 0.18s ease;
}
.quiz-back:hover { color: var(--ink); }
.quiz-back svg { width: 14px; height: 14px; }
.quiz-option-lg {
  margin-top: 8px;
  padding-top: 16px; padding-bottom: 16px;
  font-size: 15.5px !important;
  border-color: rgba(15,138,60,0.3);
  background: rgba(15,138,60,0.03);
}
.quiz-option-lg:hover { border-color: var(--brand); background: rgba(15,138,60,0.08); }
.quiz-progress {
  position: relative; height: 3px; width: 100%;
  background: rgba(10,15,10,0.06);
  flex: 0 0 auto;
}
.quiz-progress-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0F8A3C, #13a84a);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.quiz-wrap {
  position: relative;
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 22px 28px 24px;
}
/* Compact spacing for the contact form step so it fits without scroll on desktop */
.quiz-step[data-step="contact"] .quiz-help { margin-bottom: 12px; }
.quiz-step[data-step="contact"] .quiz-input { padding: 11px 14px; margin-bottom: 8px; }
.quiz-step[data-step="contact"] .quiz-row-2 { gap: 8px; margin-bottom: 8px; }
.quiz-step[data-step="contact"] .quiz-row-2 .quiz-input { margin-bottom: 0; }
.quiz-step[data-step="contact"] .quiz-btn { margin-top: 4px; padding: 13px 22px; }
.quiz-step[data-step="contact"] .quiz-fine { margin-top: 8px; }
.quiz-step {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 520px; margin: 0 auto;
}
.quiz-step.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.quiz-step-calendar.is-active { max-width: 900px; }
.quiz-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.quiz-q {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 900; line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
}
.quiz-help {
  font-size: 14px; color: var(--muted);
  margin: 0 0 16px;
}
@media (max-width: 640px) {
  .quiz-q { font-size: 22px; }
  .quiz-help { font-size: 14.5px; }
  .quiz-option { font-size: 15px; padding: 15px 16px; }
  .quiz-option-title { font-size: 15.5px; }
  .quiz-option-sub { font-size: 13px; }
  .quiz-option-lg { font-size: 16.5px !important; padding-top: 17px; padding-bottom: 17px; }
  .quiz-btn { font-size: 15px; padding: 14px 22px; }
  .quiz-input { font-size: 16px; }
}
.quiz-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.quiz-option {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  text-align: left;
  font-size: 14px; font-weight: 600; color: var(--ink);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.1s ease;
  font-family: inherit;
}
.quiz-option:hover { border-color: var(--brand); background: rgba(15,138,60,0.04); }
.quiz-option:active { transform: scale(0.99); }
.quiz-option.is-selected {
  border-color: var(--brand);
  background: rgba(15,138,60,0.08);
}
.quiz-option.is-selected::after {
  content: "✓"; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--brand); font-weight: 900;
}
.quiz-option { position: relative; padding-right: 42px; }
.quiz-option-title { font-size: 14.5px; font-weight: 700; }
.quiz-option-sub { font-size: 12px; font-weight: 500; color: var(--muted); }

.quiz-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.quiz-row-2 .quiz-input { margin-bottom: 0; }
.quiz-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  margin-bottom: 10px;
  transition: border-color 0.18s ease;
}
.quiz-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,138,60,0.12);
}
.quiz-input::placeholder { color: #a0a6a0; font-weight: 500; }

.quiz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  background: var(--brand);
  color: #fff;
  border: 0; border-radius: 12px;
  font-weight: 800; font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: background 0.18s ease, transform 0.1s ease;
  margin-top: 4px;
}
.quiz-btn:hover { background: #0c7631; }
.quiz-btn:active { transform: scale(0.98); }
.quiz-arr { transition: transform 0.18s ease; display: inline-block; }
.quiz-btn:hover .quiz-arr { transform: translateX(3px); }

.quiz-error {
  color: #C0392B; font-size: 13px; font-weight: 600;
  margin: -4px 0 10px;
}
.quiz-fine {
  font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.5;
}

/* Checking stage */
.quiz-step-checking .quiz-checking-wrap { padding: 20px 4px; }
.quiz-city { color: var(--ink); text-transform: none; letter-spacing: 0; font-weight: 800; }
.quiz-check-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 12px; }
.quiz-check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.quiz-check-list li.is-done {
  opacity: 1; color: var(--ink);
}
.quiz-check-dot {
  flex: 0 0 auto;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid #d5d8d5;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.quiz-check-list li.is-active .quiz-check-dot {
  border-color: var(--brand);
  animation: quiz-pulse 0.9s ease-in-out infinite;
}
.quiz-check-list li.is-done .quiz-check-dot {
  background: var(--brand); border-color: var(--brand);
  animation: none;
}
.quiz-check-list li.is-done .quiz-check-dot::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5 L7 11.5 L12 5.5' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/11px no-repeat;
}
@keyframes quiz-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15,138,60,0.45); }
  50%       { box-shadow: 0 0 0 6px rgba(15,138,60,0); }
}

/* Result reveal */
.quiz-step-result .quiz-result { text-align: center; padding: 8px 4px 4px; }
.quiz-result-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(15,138,60,0.12);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900;
  animation: quiz-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes quiz-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Option "earn" pop when picked */
.quiz-option.is-earning {
  animation: quiz-option-pop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes quiz-option-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.035); }
  100% { transform: scale(1); }
}

/* Confetti burst */
.confetti-layer {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100000;
  overflow: visible;
}
.confetti-piece {
  position: fixed;
  width: 14px; height: 18px;
  border-radius: 3px;
  will-change: transform, opacity;
  animation: confetti-fall 1400ms cubic-bezier(0.15, 0.6, 0.25, 1) forwards;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
@keyframes confetti-fall {
  0%   { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(0.4); }
  10%  { opacity: 1; transform: translate(calc(var(--tx) * 0.15), calc(var(--ty) * 0.05)) rotate(calc(var(--tr) * 0.1)) scale(1.1); }
  60%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) rotate(var(--tr)) scale(0.6); }
}
@media (prefers-reduced-motion: reduce) {
  .confetti-layer { display: none !important; }
  .quiz-option.is-earning { animation: none !important; }
}
.quiz-city-hl { color: var(--brand); }
.quiz-result .quiz-q { text-align: center; margin: 0 auto 10px; max-width: 420px; }
.quiz-result-sub { text-align: center; color: var(--muted); font-size: 13px; margin: 0 auto 18px; max-width: 380px; line-height: 1.5; }

/* Calendar step - fills available height */
.quiz-step-calendar { display: none; }
.quiz-step-calendar.is-active { display: flex; flex-direction: column; height: 100%; }
.quiz-step-calendar .booking-frame { flex: 1 1 auto; min-height: 520px; margin-top: 14px; overflow: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }
@media (max-width: 640px) {
  .quiz-step-calendar .booking-frame { min-height: 760px; }
  .quiz-step-calendar .booking-frame iframe { min-height: 1100px !important; }
}

/* ---------- Booking modal ---------- */
.booking-modal {
  position: fixed; inset: 0;
  display: none;

  display: none;
  z-index: 9999;
  align-items: center; justify-content: center;
  padding: clamp(12px, 3vw, 40px);
}
.booking-modal.is-open { display: flex; animation: booking-fade 0.25s ease; }
@keyframes booking-fade { from { opacity: 0; } to { opacity: 1; } }
.booking-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 15, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.booking-dialog {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: min(920px, 100%);
  height: min(94vh, 900px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 10px 30px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.booking-modal.is-open .booking-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.booking-header {
  padding: 22px 28px 14px;
  border-bottom: 1px solid var(--line);
}
.booking-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); font-weight: 700; margin-bottom: 6px;
}
.booking-title {
  margin: 0; font-weight: 900;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em; color: var(--ink);
}
.booking-frame {
  flex: 1;
  overflow: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.booking-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border: 0;
}
/* ---------- Sticky mobile CTA (hides while hero CTA is visible) ---------- */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  display: none;
  align-items: center; justify-content: center; gap: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15,138,60,0.40), 0 3px 10px rgba(0,0,0,0.18);
  z-index: 9000;
  transform: translateY(140%);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sticky-cta-arr { font-weight: 900; font-size: 15px; }
@media (max-width: 800px) { .sticky-cta { display: inline-flex; } }
/* Hide while booking modal is open so it doesn't overlap quiz */
.booking-modal.is-open ~ .sticky-cta { transform: translateY(140%); opacity: 0; pointer-events: none; }

.booking-close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(10,15,10,0.08);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.booking-close:hover { background: rgba(10,15,10,0.16); transform: rotate(90deg); }
@media (max-width: 640px) {
  .booking-dialog { border-radius: 16px; height: 96vh; }
  .booking-header { padding: 18px 22px 12px; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 40px var(--pad-x);
  text-align: center; color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

/* ---------- Scroll-reveal ---------- */


/* ---------- HERO CENTERED ---------- */
.hero-centered { text-align: center; padding-top: clamp(20px, 3vw, 36px); }

/* ---------- VIDEO CASE STUDIES ---------- */
.video-cases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(36px, 4vw, 56px);
}
@media (max-width: 900px) { .video-cases { grid-template-columns: 1fr; } }
.video-case {
  display: flex; flex-direction: column; gap: 16px;
  text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.video-case:hover { transform: translateY(-4px); border-color: rgba(15,138,60,0.55); }
.video-case .vc-thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: #000;
}
.video-case .vc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-case .vc-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
}
.video-case .vc-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 46px; border-radius: 12px;
  background: rgba(255,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background 0.2s, transform 0.2s;
}
.video-case:hover .vc-play { background: #ff0000; transform: translate(-50%, -50%) scale(1.08); }
.video-case .vc-play::before {
  content: ""; width: 0; height: 0;
  border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.video-case .vc-runtime {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  background: rgba(10,15,10,0.78); color: #fff;
  padding: 4px 10px; border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
}
.video-case .vc-meta { padding: 4px 22px 22px; }
.video-case .vc-stat {
  font-size: clamp(20px, 1.8vw, 24px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.2;
  color: #fff; margin-bottom: 12px;
}
.video-case .vc-stat strong { color: var(--brand-2); }
.video-case .vc-name {
  font-weight: 800; font-size: 16px; color: #fff;
}
.video-case .vc-loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6); margin-top: 4px;
}

/* ---------- GOOGLE BADGE ---------- */
.google-badge {
  margin: clamp(48px, 6vw, 72px) auto 32px;
  max-width: 720px;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(16px, 2vw, 28px);
  background: #fff;
  border-radius: 18px;
  padding: clamp(18px, 2vw, 24px) clamp(22px, 2.6vw, 32px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  flex-wrap: wrap;
}
.google-badge .gb-left { display: flex; flex-direction: column; gap: 4px; }
.google-badge .gb-glogo {
  font-family: 'Inter', sans-serif;
  font-size: 26px; font-weight: 800; letter-spacing: -0.01em;
}
.google-badge .gb-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.google-badge .gb-mid { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.google-badge .gb-rating {
  font-size: 32px; font-weight: 900; color: var(--ink); line-height: 1;
  letter-spacing: -0.02em;
}
.google-badge .gb-stars { color: #FBBC05; font-size: 18px; letter-spacing: 1px; }
.google-badge .gb-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted); font-weight: 600;
}
.google-badge .gb-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 12px 18px; border-radius: 10px;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.google-badge .gb-link:hover { background: var(--brand-2); transform: translateY(-1px); }

/* ---------- GOOGLE REVIEW CARDS · editorial bento layout, no uniform boxes ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: 0;
}
/* Asymmetric bento: card 1 wide-feature; row 2: two halves; rows 3-4: triplets */
.reviews-grid .review-card:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.reviews-grid .review-card:nth-child(2) { grid-column: span 3; }
.reviews-grid .review-card:nth-child(3) { grid-column: span 3; }
.reviews-grid .review-card:nth-child(4) { grid-column: span 2; }
.reviews-grid .review-card:nth-child(5) { grid-column: span 2; }
.reviews-grid .review-card:nth-child(6) { grid-column: span 2; }
.reviews-grid .review-card:nth-child(7) { grid-column: span 2; }
.reviews-grid .review-card:nth-child(8) { grid-column: span 2; }
.reviews-grid .review-card:nth-child(9) { grid-column: span 2; }
@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-card,
  .reviews-grid .review-card:nth-child(n) { grid-column: span 1; grid-row: auto; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card,
  .reviews-grid .review-card:nth-child(n) { grid-column: span 1; }
}
/* Card itself — borderless on dark bg, big quote feel */
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 26px 28px;
  color: rgba(245,245,242,0.92);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.review-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(15,138,60,0.35);
  transform: translateY(-3px);
}
/* Featured (first) card gets a green accent + larger quote */
.reviews-grid .review-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(15,138,60,0.14) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(15,138,60,0.35);
  padding: 32px;
}
.reviews-grid .review-card:nth-child(1) .rc-text {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
/* Open quote glyph on featured */
.reviews-grid .review-card:nth-child(1)::before {
  content: """;
  position: absolute;
  top: -10px; left: 22px;
  font: 900 80px/1 'Inter', sans-serif;
  color: var(--brand-2);
  opacity: 0.4;
  pointer-events: none;
}
.review-card .rc-head {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 12px; align-items: center;
}
.review-card .rc-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 18px;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.review-card .rc-avatar-img {
  object-fit: cover;
  background: var(--ink);
}
.review-card .rc-name { font-weight: 700; font-size: 15px; color: #fff; }
.review-card .rc-meta {
  display: flex; align-items: center; gap: 10px;
  margin-top: 2px;
}
.review-card .rc-stars { color: #FBBC05; font-size: 13px; letter-spacing: 1px; }
.review-card .rc-when {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(245,245,242,0.55); font-weight: 600;
}
.review-card .rc-glogo { display: flex; align-items: center; opacity: 0.85; }
.review-card .rc-text {
  margin: 0; font-size: 15.5px; line-height: 1.6; color: rgba(245,245,242,0.88);
}

/* ---------- DIY REASONING PANEL (replaces diy-quote) ---------- */
.diy-reasoning {
  background: var(--ink); color: #fff;
  border-radius: 24px; padding: clamp(28px, 4vw, 44px);
  position: relative;
}
.diy-reasoning .diy-headline {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.diy-reasoning .diy-body {
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 24px;
}
.diy-reasoning .diy-list { display: flex; flex-direction: column; gap: 14px; }
.diy-reasoning .diy-row {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  font-size: 15px; line-height: 1.5;
  color: rgba(255,255,255,0.86);
}
.diy-reasoning .diy-row .x {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(192,57,43,0.18); color: #ff7062;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
  margin-top: 2px;
}
.diy-reasoning .diy-row.check { padding-top: 14px; border-top: 1px dashed rgba(255,255,255,0.16); margin-top: 6px; }
.diy-reasoning .diy-row .c {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(15,138,60,0.22); color: var(--brand-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  margin-top: 2px;
}
.diy-reasoning .diy-row strong { color: #fff; font-weight: 800; }

/* ============================================================
   PASS 1 ADDITIONS · 2026-04-25
   Authority · Buyer Journey · Venn · Real brand logos
   Video carousel · Path footnote
   ============================================================ */

/* ---------- Authority section ---------- */
.authority-section {
  padding-top: clamp(56px, 7vw, 110px);
  padding-bottom: clamp(56px, 7vw, 110px);
  background: linear-gradient(180deg, var(--bg) 0%, #EFEFEA 100%);
  position: relative;
}
/* No hard line at section edges - softer transitions per CRO direction */

/* ============================================================
   PASS 10 ADDITIONS · 2026-04-25
   Two Paths reorg, mechanism icons, X overlay, mobile fixes,
   motion/soul, hero ribbon bleed
   ============================================================ */

/* ---------- Two Paths intro line ---------- */
.paths-intro {
  margin: 12px 0 36px;
  max-width: 760px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
}

/* ---------- Mechanism Venn card icon ---------- */
.venn-card { position: relative; }
.vc-icon {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(15,138,60,0.10);
  color: var(--brand);
  flex-shrink: 0;
}
.venn-card.highlight .vc-icon {
  background: rgba(15,138,60,0.18);
}

/* ---------- Spot card X overlay ---------- */
.spot-image-x {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  opacity: 0.92;
}

/* ---------- Portfolio: TRANSPARENT bg so the hero ribbon (which overflows
   downward out of .hero) is visible underneath. Body bg is var(--bg) so
   the section still appears the right color, but the ribbon bleeds through. */
.portfolio-section {
  position: relative;
  background: transparent !important;
  overflow: visible;
}
.portfolio-section .container { position: relative; z-index: 2; }

/* ---------- Hero ribbons VISIBLE on mobile (was hidden) ---------- */
@media (max-width: 900px) {
  .hero-art-1, .hero-art-2 {
    display: block !important;
    opacity: 0.55 !important;
  }
  .hero-art-2 { bottom: -4%; left: -28%; width: 60vw; }
  .hero-art-3 { display: block !important; opacity: 0.4 !important; }
}

/* ---------- Mobile: Authority photo BELOW headline ---------- */
@media (max-width: 860px) {
  .auth-wrap {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "photo";
  }
  .auth-photo { grid-area: photo; max-width: 360px; margin: 12px auto 0; }
  .auth-copy { grid-area: copy; }
}

/* ---------- Mobile: Proof tile grid → horizontal carousel ---------- */
@media (max-width: 720px) {
  .proof-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 4px 18px;
    margin: 0 -4px;
    scrollbar-width: none;
    grid-template-columns: none !important;
  }
  .proof-grid::-webkit-scrollbar { display: none; }
  .proof-tile {
    flex: 0 0 78vw !important;
    scroll-snap-align: center;
    grid-column: auto !important;
  }
}

/* ---------- Bigger path card body copy + spacing ---------- */
.path-card .desc { font-size: 17.5px !important; line-height: 1.6 !important; }
.path-card ul li { font-size: 16.5px !important; line-height: 1.55 !important; }
.path-card h3 { font-size: clamp(22px, 2.1vw, 28px) !important; }
.path-card .pname { font-size: 13px !important; }

/* ---------- Subtle global motion / soul ---------- */
/* Floating accent: pulse rings on hero CTA region */
.hero-cta-row .btn.lg {
  position: relative;
  overflow: visible;
}
.hero-cta-row .btn.lg::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--brand);
  opacity: 0;
  pointer-events: none;
  animation: ctaRing 2.6s ease-out infinite;
}
@keyframes ctaRing {
  0% { transform: scale(0.96); opacity: 0.55; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Floating subtle drift on hero ribbon arts */
@keyframes heroArtDrift1 {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}
@keyframes heroArtDrift2 {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(10px) rotate(-12deg); }
}
@keyframes heroArtDrift3 {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-8px) rotate(18deg); }
}
.hero-art-1 { animation: heroArtDrift1 9s ease-in-out infinite; }
.hero-art-2 { animation: heroArtDrift2 11s ease-in-out infinite; }
.hero-art-3 { animation: heroArtDrift3 13s ease-in-out infinite; }

/* Section-enter rise (when reveal triggers in viewport) */
.section.in-view .h-title,
.section.in-view .h-display {
  animation: titleSlideUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes titleSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-row .btn.lg::after,
  .hero-art-1, .hero-art-2, .hero-art-3,
  .section.in-view .h-title,
  .section.in-view .h-display { animation: none !important; }
}
.auth-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.auth-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 5;
  box-shadow:
    0 30px 60px -20px rgba(10,15,10,0.35),
    0 0 0 1px rgba(10,15,10,0.06);
}
.auth-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.auth-photo-tag {
  position: absolute; bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(10,15,10,0.78);
  backdrop-filter: blur(10px);
  color: #fff;
  font: 600 12px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.auth-photo-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 10px var(--brand-2);
  animation: authDot 2.4s ease-in-out infinite;
}
@keyframes authDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.auth-creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
  padding: 22px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -18px rgba(10,15,10,0.18);
}
.auth-creds .cred {
  display: flex; flex-direction: column; gap: 6px;
}
.auth-creds .cred-num {
  font-weight: 900;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.auth-creds .cred-num sup {
  font-size: 0.5em; font-weight: 700;
  color: var(--brand);
  margin-left: 1px;
}
.auth-creds .cred-lbl {
  font: 600 11px/1.35 'JetBrains Mono', monospace;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.auth-quote {
  margin: 28px 0 0;
  padding: 22px 26px;
  border-left: 3px solid var(--brand);
  background: rgba(15,138,60,0.05);
  border-radius: 0 14px 14px 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}
.auth-quote em { font-style: italic; color: var(--muted); font-weight: 600; }

@media (max-width: 860px) {
  .auth-wrap { grid-template-columns: 1fr; gap: 28px; }
  .auth-photo { max-width: 360px; margin: 0 auto; }
  .auth-creds { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Three pain spots: 2-col layout — image card spans 2 rows on left ---------- */
.spots-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  margin-top: 12px;
}
.spot-card-image {
  grid-column: 1;
  grid-row: 1 / span 2;     /* tall card on left */
}
.spots-grid > .spot-card:nth-child(2) {
  grid-column: 2; grid-row: 1;
}
.spots-grid > .spot-card:nth-child(3) {
  grid-column: 2; grid-row: 2;
}
@media (max-width: 860px) {
  .spots-grid { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .spot-card-image { grid-column: 1; grid-row: 1; }
  .spots-grid > .spot-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .spots-grid > .spot-card:nth-child(3) { grid-column: 1; grid-row: 3; }
}
.spot-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 32px 28px 28px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, background 0.3s;
}
.spot-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.spot-card .spot-num {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: rgba(15,138,60,0.16);
  color: var(--brand-2);
  font: 800 17px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.spot-card .spot-tag {
  font: 700 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-2);
}
.spot-card h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  margin: 0; color: #fff;
}
.spot-card p {
  font-size: 15px; line-height: 1.55;
  color: rgba(245,245,242,0.78); margin: 0; flex: 1;
}
.spot-outcome {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.3);
  font: 600 12.5px/1.2 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: #ffb8b0;
  margin-top: auto;
}
.spot-outcome .x { color: #ff6b5e; font-weight: 900; }
@media (max-width: 980px) {
  .spots-grid { grid-template-columns: 1fr; }
}

/* Spot card with image (Built in 2018 example) — fills the tall left column */
.spot-card-image .spot-image-wrap {
  position: relative;
  margin: 0 0 18px;
  border-radius: 14px;
  overflow: hidden;
  background: #0d1812;
  aspect-ratio: 4 / 3;     /* taller image since this card spans 2 rows */
  box-shadow: 0 12px 28px -14px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.spot-card-image {
  display: flex;
  flex-direction: column;
}
.spot-card-image p {
  flex: 1;     /* push outcome chip to bottom */
}
.spot-card-image .spot-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.92);
  transition: filter 0.4s, transform 0.5s;
}
.spot-card-image:hover .spot-image-wrap img {
  filter: saturate(1) brightness(1);
  transform: scale(1.03);
}
.spot-image-tag {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(192,57,43,0.9);
  color: #fff;
  font: 700 10.5px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- Green ribbon banner · tilted -3deg, scroll-linked translate ---------- */
.ribbon-banner {
  background: var(--brand);
  padding: clamp(56px, 7vw, 96px) 0;
  overflow: hidden;
  position: relative;
}
.rb-tilt {
  transform: rotate(-3deg);
  margin: 0 -8%;     /* break out so corners don't show through tilt */
}
.rb-rail {
  overflow: hidden;
}
.rb-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
  width: max-content;
  will-change: transform;
  transition: transform 0.18s linear;
}
.rb-item {
  font: 900 clamp(40px, 7vw, 96px)/1 'Inter', sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.rb-star {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: clamp(32px, 4vw, 56px);
  height: clamp(32px, 4vw, 56px);
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.rb-star svg { width: 100%; height: 100%; }
@media (prefers-reduced-motion: reduce) {
  .rb-track { transition: none; transform: none !important; }
}

/* ---------- 3-Pillar icon strip (under Mechanism headline) ---------- */
.pillars-strip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 14px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 32px -18px rgba(10,15,10,0.18);
  flex-wrap: wrap;
}
.pillar {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.pillar-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(15,138,60,0.10);
  color: var(--brand);
}
.pillar-name {
  font: 800 14px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
}
.pillar-x, .pillar-eq {
  font: 800 18px/1 'Inter', sans-serif;
  color: var(--muted);
}
.pillar-result {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
}
.pillar-result .pillar-name { color: #fff; }
@media (max-width: 640px) {
  .pillars-strip { padding: 12px 16px; gap: 10px; }
  .pillar-icon { width: 30px; height: 30px; }
  .pillar-name { font-size: 12px; }
}

/* ---------- Buyer Journey ---------- */
.journey-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 48px;
}
.journey-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 28px 26px 26px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, background 0.3s;
}
.journey-step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.journey-num {
  position: absolute; top: -18px; left: 22px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font: 800 15px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px -4px rgba(15,138,60,0.6);
}
.journey-tag {
  font: 700 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-2);
  margin-top: 6px;
}
.journey-step h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.journey-step p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,245,242,0.78);
  margin: 0;
  flex: 1;
}
.journey-outcome {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.3);
  font: 600 13px/1.2 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: #ffb8b0;
  margin-top: auto;
}
.journey-outcome .x {
  color: #ff6b5e;
  font-weight: 900;
}
.journey-arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
}
@media (max-width: 980px) {
  .journey-flow { grid-template-columns: 1fr; gap: 32px; }
  .journey-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* ---------- Venn diagram + cards ---------- */
.venn-wrap {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(340px, 460px) 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.venn-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
}
.venn-circle {
  position: absolute;
  width: 62%; height: 62%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font: 800 18px/1 'Inter', sans-serif;
  letter-spacing: -0.01em;
  color: var(--ink);
  mix-blend-mode: multiply;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.venn-circle span {
  position: absolute;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 6px;
}
.vc-traffic {
  background: rgba(20,110,245,0.42);
  top: 0; left: 50%; transform: translateX(-50%);
  border: 2px solid #146EF5;
}
.vc-traffic span { top: 6%; left: 50%; transform: translateX(-50%); }
.vc-trust {
  background: rgba(15,138,60,0.45);
  bottom: 4%; left: 4%;
  border: 2px solid var(--brand);
}
.vc-trust span { bottom: 6%; left: 14%; }
.vc-conv {
  background: rgba(251,188,5,0.5);
  bottom: 4%; right: 4%;
  border: 2px solid #E0A800;
}
.vc-conv span { bottom: 6%; right: 8%; }
.venn-stage:hover .vc-traffic { transform: translateX(calc(-50% - 0px)) translateY(-4px); }
.venn-stage:hover .vc-trust { transform: translate(-4px, 4px); }
.venn-stage:hover .vc-conv { transform: translate(4px, 4px); }
.venn-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -38%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 32px -10px rgba(10,15,10,0.4);
  pointer-events: none;
}
.vc-label {
  font: 900 16px/1 'Inter', sans-serif;
  letter-spacing: -0.01em;
}
.vc-sub {
  font: 600 10px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.venn-cards {
  display: flex; flex-direction: column; gap: 16px;
}
.venn-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 22px;
  align-items: start;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.venn-card:hover {
  transform: translateX(4px);
  border-color: var(--brand);
  box-shadow: -6px 0 0 -2px var(--brand), 0 14px 32px -16px rgba(15,138,60,0.25);
}
.venn-card.highlight { background: linear-gradient(180deg, #fff 0%, rgba(15,138,60,0.04) 100%); }
.venn-card .vc-num {
  grid-row: span 3;
  font: 800 13px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 8px 0;
  border-right: 2px solid var(--brand);
  align-self: stretch;
}
.venn-card h3 {
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.venn-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.venn-card .vc-stat {
  font: 600 13px/1.4 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  margin-top: 4px;
}
.venn-card .vc-stat strong {
  color: var(--brand); font-weight: 800;
}
@media (max-width: 980px) {
  .venn-wrap { grid-template-columns: 1fr; }
  .venn-stage { max-width: 360px; }
}

/* ---------- Path note (asterisk footnote) ---------- */
.price .aster {
  color: var(--brand);
  font-size: 0.5em;
  font-weight: 800;
  margin-left: 4px;
  vertical-align: super;
}
.path-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  background: rgba(15,138,60,0.08);
  border-left: 3px solid var(--brand);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.path-note sup {
  color: var(--brand);
  font-weight: 800;
  margin-right: 2px;
}
/* Light text when sitting on the dark featured card */
.path-card.featured .path-note {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--brand-2);
  color: rgba(245,245,242,0.92);
}
.path-card.featured .path-note sup { color: var(--brand-2); }

/* ---------- DIY · real brand logos ---------- */
.tool-row .tlogo.brand-wix,
.tool-row .tlogo.brand-openai,
.tool-row .tlogo.brand-framer,
.tool-row .tlogo.brand-webflow,
.tool-row .tlogo.brand-reality {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.tool-row .tlogo.brand-reality {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.tool-row .tlogo.brand-reality span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-top: 2px;
}
.tool-row.reality-row {
  border-color: var(--brand) !important;
  background: rgba(15,138,60,0.05) !important;
  opacity: 1 !important;
}
.tool-row.reality-row .reality-verdict {
  color: var(--brand);
  background: rgba(15,138,60,0.14);
}

/* ---------- Video carousel ---------- */
.video-cases-rail {
  margin: 36px 0 56px;
  position: relative;
}
.vcr-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 4px;
}
.vcr-label {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 12px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,245,242,0.7);
}
.vcr-label .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 10px var(--brand-2);
}
.vcr-controls { display: flex; gap: 8px; }
.vcr-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.vcr-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.05);
}
.vcr-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 16px;
  margin: 0 -4px;
  scrollbar-width: none;
}
.vcr-track::-webkit-scrollbar { display: none; }
.vcr-track .video-case {
  flex: 0 0 clamp(280px, 32%, 360px);
  scroll-snap-align: start;
  margin: 0;
}
.more-tile .more-thumb {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(15,138,60,0.18), rgba(255,255,255,0.04)) !important;
  border: 1px dashed rgba(255,255,255,0.25);
  text-align: center;
}
.more-tile .more-num {
  font: 900 56px/1 'Inter', sans-serif;
  color: var(--brand-2);
  letter-spacing: -0.03em;
}
.more-tile .more-lbl {
  font: 600 12px/1.3 'JetBrains Mono', monospace;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 640px) {
  .vcr-track .video-case { flex: 0 0 82%; }
}

/* ---------- Slim client logos marquee ---------- */
.logos-marquee {
  padding: 26px 0 30px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.lm-label {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font: 700 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  padding: 0 var(--pad-x);
  text-align: center;
}
.lm-label .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 8px var(--brand-2);
  animation: authDot 2.4s ease-in-out infinite;
}
.lm-rail {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  overflow: hidden;
}
.lm-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: max-content;
  animation: lmScroll 55s linear infinite;
}
.lm-track img {
  height: clamp(36px, 4vw, 50px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.4);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.lm-track img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}
.logos-marquee:hover .lm-track {
  animation-play-state: paused;
}
@keyframes lmScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .lm-track { animation: none; }
}

/* ============================================================
   PASS 2 ADDITIONS · 2026-04-25
   ROI / Math block · Sticky mobile CTA · Phase polish
   ============================================================ */

/* ---------- ROI / Math block ---------- */
.roi-section {
  background: linear-gradient(180deg, #EFEFEA 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.roi-section::before {
  content: "";
  position: absolute;
  top: 10%; right: -120px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,138,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.roi-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.roi-headline { position: sticky; top: 100px; }
.roi-stack {
  display: flex; flex-direction: column;
  gap: 18px;
}
.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 14px 40px -22px rgba(10,15,10,0.18);
}
.roi-card-label {
  font: 700 13px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.roi-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.roi-pill {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  font: 800 16px/1 'Inter', sans-serif;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
}
.roi-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}
.roi-pill.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.roi-math {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.roi-math::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(15,138,60,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(15,138,60,0.12) 0%, transparent 40%);
  pointer-events: none;
}
.roi-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.roi-step-label {
  font: 700 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,245,242,0.6);
}
.roi-step-num {
  font: 900 clamp(32px, 4.2vw, 56px)/1 'Inter', sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  display: inline-flex; align-items: baseline; justify-content: center;
  gap: 2px;
}
.roi-step-num .d {
  font-size: 0.5em; font-weight: 800;
  color: var(--brand-2);
  align-self: flex-start;
  margin-top: 0.4em;
}
.roi-step-num .x {
  font-size: 0.7em; font-weight: 800;
  color: var(--brand-2);
  margin-left: 4px;
}
.roi-step-sub {
  font-size: 13px;
  color: rgba(245,245,242,0.7);
  line-height: 1.4;
}
.roi-step-win .roi-step-num,
.roi-step-result .roi-step-num { color: var(--brand-2); }
.roi-op {
  font: 900 28px/1 'Inter', sans-serif;
  color: rgba(255,255,255,0.4);
  align-self: center;
  position: relative; z-index: 1;
}
.roi-receipts {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 8px;
}
.roi-receipt {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.roi-receipt .check {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(15,138,60,0.14);
  color: var(--brand);
  font-weight: 900;
  margin-top: 2px;
}
.roi-receipt strong { color: var(--ink); font-weight: 800; }

@media (max-width: 980px) {
  .roi-grid { grid-template-columns: 1fr; }
  .roi-headline { position: static; }
  .roi-math { grid-template-columns: 1fr; gap: 22px; padding: 24px; }
  .roi-op { transform: rotate(0deg); font-size: 22px; }
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  padding: 12px;
  pointer-events: none;
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-mobile-cta.is-visible {
  transform: translateY(0);
}
.smc-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(10,15,10,0.4),
              0 0 0 1px rgba(15,138,60,0.3);
}
.smc-copy {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.smc-price {
  font: 700 14px/1.1 'Inter', sans-serif;
  color: rgba(245,245,242,0.7);
}
.smc-price strong {
  color: #fff;
  font-weight: 800;
}
.smc-sub {
  font: 600 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: rgba(245,245,242,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.smc-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: 0;
  font: 800 15px/1 'Inter', sans-serif;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  appearance: none; -webkit-appearance: none;
}
.smc-btn:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}
@media (min-width: 901px) {
  .sticky-mobile-cta { display: none; }
}

/* ---------- Phase blocks polish (less boxy) ---------- */
.phase-block {
  border-radius: 24px !important;
  position: relative;
  overflow: hidden;
}
.phase-block::after {
  content: "";
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,138,60,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* ---------- Vertical Timeline (How It Works) ---------- */
.vtimeline {
  position: relative;
  margin-top: 56px;
  padding: 8px 0 8px;
  max-width: 1080px;
}
.vt-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--brand) 8%,
    var(--brand) 92%,
    transparent 100%);
  opacity: 0.32;
}
.vt-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 48px;
}
.vt-step:last-child { margin-bottom: 0; }
.vt-marker {
  grid-column: 2;
  grid-row: 1;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  align-self: start;
  margin-top: -2px;          /* visual center aligns with vt-meta line */
}
.vt-marker::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 6px var(--bg), 0 12px 28px -8px rgba(15,138,60,0.45);
}
.vt-num {
  position: relative; z-index: 1;
  font: 900 24px/1 'JetBrains Mono', monospace;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.vt-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 28px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.vt-card-feature {
  background: linear-gradient(180deg, #fff 0%, rgba(15,138,60,0.04) 100%);
  border-color: rgba(15,138,60,0.25);
}
.vt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15,138,60,0.4);
  box-shadow: 0 16px 36px -16px rgba(15,138,60,0.25);
}
.vt-step.vt-left .vt-card { grid-column: 1; grid-row: 1; }
.vt-step.vt-right .vt-card { grid-column: 3; grid-row: 1; }

/* Connector line between marker and card — aligns to marker's vertical center (34px) */
.vt-card::before {
  content: "";
  position: absolute;
  top: 30px;          /* matches marker center: -2 (mt) + 36 (half marker) = 34px from row top */
  width: 22px; height: 2px;
  background: var(--brand);
  opacity: 0.45;
}
.vt-step.vt-left .vt-card::before { right: -22px; }
.vt-step.vt-right .vt-card::before { left: -22px; }

.vt-meta {
  font: 700 12px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand);
}
.vt-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.vt-card p {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.vt-time {
  margin-top: 6px;
  padding: 12px 14px;
  background: rgba(15,138,60,0.06);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
}
.vt-time-ico { font-size: 18px; }
.vt-time strong { color: var(--ink); font-weight: 800; }

/* Mobile: stack everything left of a single line */
@media (max-width: 768px) {
  .vt-line { left: 30px; transform: none; }
  .vt-step { grid-template-columns: 60px 1fr; align-items: start; gap: 14px; margin-bottom: 28px; }
  .vt-marker { grid-column: 1; width: 60px; height: 60px; }
  .vt-marker::before { box-shadow: 0 0 0 4px var(--bg); }
  .vt-num { font-size: 18px; }
  .vt-step.vt-left .vt-card,
  .vt-step.vt-right .vt-card { grid-column: 2; }
  .vt-card::before {
    left: -14px !important; right: auto !important;
    top: 28px; width: 14px;
  }
}

/* Hide the old horizontal timeline-bar on this section now we use vtimeline */
.section .timeline-bar,
.section .timeline-labels { display: none; }

/* ============================================================
   PASS 3 ADDITIONS · 2026-04-25
   Hero ribbons · Path card video · "Websites That Convert" portfolio
   ============================================================ */

/* ---------- Hero ribbon decorations ---------- */
/* overflow-x: clip prevents horizontal page-scroll, overflow-y: visible
   lets the bottom-left ribbon bleed naturally into the portfolio section
   below. z-index: 3 puts hero (and its overflowing ribbon) ABOVE the
   portfolio carousel so the ribbon visibly paints on top of the tile area
   where it bleeds — no hidden ribbon. pointer-events: none on the ribbon
   itself (set on .hero-art) means clicks still pass through to the carousel. */
.hero { position: relative; overflow-x: clip; overflow-y: visible; z-index: 3; }
.hero-art {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.85;
  filter: drop-shadow(0 30px 60px rgba(15,138,60,0.18));
}
.hero-art-1 {
  top: 6%; right: -4%;
  width: clamp(280px, 32vw, 520px);
  transform: rotate(8deg);
}
.hero-art-2 {
  /* Sit further right (more visible inside the hero, not at edge), bleed
     only into the GAP between hero and carousel tiles. */
  bottom: -8%; left: 4%;
  width: clamp(240px, 26vw, 420px);
  transform: rotate(-12deg);
  opacity: 0.78;
  z-index: 4;
}
.hero-art-3 {
  top: 38%; right: 12%;
  width: clamp(160px, 18vw, 280px);
  transform: rotate(18deg);
  opacity: 0.6;
}
.hero .container { position: relative; z-index: 2; }
@media (max-width: 900px) {
  .hero-art-1 { top: 2%; right: -20%; width: 60vw; }
  .hero-art-2 { bottom: -22%; left: -25%; width: 70vw; opacity: 0.55; }
  .hero-art-3 { display: none; }
}

/* ---------- Path card video preview · soft-rounded all corners ---------- */
.path-card { display: flex; flex-direction: column; }
.path-media {
  position: relative;
  margin: 0 0 22px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9.5;
  box-shadow: 0 14px 32px -16px rgba(10,15,10,0.4);
}
.path-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
/* Featured (dark) card: subtle inner ring so video edges feel intentional */
.path-card.featured .path-media {
  box-shadow:
    0 14px 32px -16px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* ---------- Portfolio "Websites That Convert" ---------- */
/* Note: background and overflow are set in the bleed-ribbon block above
   (transparent bg, overflow visible) so the hero ribbon shows through. */
.portfolio-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}
.pf-counter { display: none; }

/* Bare portfolio (no headline, near hero) — tighter top padding */
.portfolio-bare {
  padding-top: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 56px);
}

/* Floating prev/next nav buttons over the carousel */
.pf-float-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 24px -8px rgba(10,15,10,0.25);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
}
.pf-float-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}
.pf-float-prev { left: 18px; }
.pf-float-next { right: 18px; }
@media (max-width: 640px) {
  .pf-float-btn { width: 44px; height: 44px; }
  .pf-float-prev { left: 8px; }
  .pf-float-next { right: 8px; }
}
.ph-controls {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pf-counter {
  display: inline-flex; align-items: baseline;
  font: 900 clamp(28px, 3vw, 38px)/1 'JetBrains Mono', monospace;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pf-counter .pf-slash {
  color: var(--brand);
  margin: 0 4px;
  font-weight: 800;
}
#pfTotal { color: var(--muted); font-weight: 700; }
.pf-nav { display: flex; gap: 8px; }
.pf-btn {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  font-family: inherit;
}
.pf-btn:hover {
  background: var(--ink); color: #fff; border-color: var(--ink);
  transform: scale(1.05);
}
.pf-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font: 800 15px/1 'Inter', sans-serif;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, gap 0.2s;
}
.pf-cta:hover {
  background: var(--brand-2);
  gap: 12px;
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .portfolio-head { grid-template-columns: 1fr; align-items: start; }
  .ph-controls { justify-content: flex-start; }
}

/* Portfolio rail: full-bleed auto-scroll marquee, smaller tiles, room for shadow */
.portfolio-rail {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 16px 0 56px;       /* extra bottom padding so drop-shadow doesn't clip */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.pf-track {
  display: flex;
  gap: clamp(18px, 1.6vw, 24px);
  width: max-content;
  padding: 0 clamp(20px, 4vw, 64px);
  animation: pfScroll 120s linear infinite;
  will-change: transform;
}
.portfolio-rail:hover .pf-track {
  animation-play-state: paused;
}
@keyframes pfScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .pf-track { animation: none; }
}
.pf-tile {
  flex: 0 0 clamp(340px, 34vw, 580px);     /* bigger — 2-3 visible on desktop, prominent */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 20px 40px -16px rgba(10,15,10,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pf-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px -16px rgba(10,15,10,0.55);
}
.pf-tile img {
  width: 100%; height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .pf-tile { flex: 0 0 86vw; }    /* nearly full width on mobile, big and clear */
}

