/* Marketing site. Language: GoCompare translated to navy + green — chunky
   uppercase display type, cream bands between navy bands, thick-outline cards
   with hard offset shadows, rotated sticker badges, hand-drawn squiggles, and
   custom animations that explain the product without a word. */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 var(--s5); }
.container.narrow { max-width: 720px; }
.center { text-align: center; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--ink); padding: var(--s3) var(--s4);
  border-radius: 0 0 var(--radius) 0; z-index: 100; font-weight: 700;
}
.skip:focus { left: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
h2 { font-size: var(--text-h2); margin-bottom: var(--s5); position: relative; }
h3 { font-size: var(--text-h3); font-weight: 800; line-height: 1.3; }

.squiggle {
  display: block; width: 180px; height: 12px; margin-top: var(--s3);
  color: var(--green);
}
.center .squiggle, h2.center .squiggle { margin-left: auto; margin-right: auto; }
.sq-green { color: var(--green); }
.squiggle path {
  stroke-dasharray: 260; stroke-dashoffset: 260;
}
.in-view .squiggle path, .in-view.squiggle path,
h2.in-view .squiggle path {
  animation: draw 900ms var(--ease) 200ms forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.eyebrow {
  font-family: var(--font-body); font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green);
  margin-bottom: var(--s3);
}
.section-navy .eyebrow { color: var(--lime); }

/* --- header ---------------------------------------------------------------- */

.site-header {
  background: var(--cream);
  border-bottom: var(--outline);
  padding: var(--s4) 0;
  position: sticky; top: 0; z-index: 50;
}
.site-header .container { display: flex; align-items: center; gap: var(--s6); }
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo .dot { color: var(--green); }
.logo { display: inline-flex; align-items: center; }
.logo-bull { width: 0.95em; height: 0.95em; flex: none; margin-right: 0.3em; }
.site-nav { display: flex; gap: var(--s5); flex: 1; }
.site-nav a {
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.95rem;
  border-bottom: 3px solid transparent; padding-bottom: 2px;
}
.site-nav a:hover { border-bottom-color: var(--green); }
.header-actions { display: flex; gap: var(--s3); align-items: center; }

/* --- buttons --------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: var(--outline);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.95rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover {
  background: var(--lime-hover);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lift);
}
.btn-primary:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--white); }
.btn-ghost-dark { background: transparent; color: var(--text-on-dark); border-color: var(--text-on-dark); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.1); }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

/* --- sticker badges -------------------------------------------------------- */

.sticker {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.03em;
  background: var(--lime);
  color: var(--ink);
  border: var(--outline);
  border-radius: 10px;
  padding: 0.45rem 1rem;
  transform: rotate(-4deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.sticker:hover { animation: wobble 500ms var(--ease); }
@keyframes wobble {
  25% { transform: rotate(-7deg) scale(1.04); }
  60% { transform: rotate(-2deg); }
  100% { transform: rotate(-4deg); }
}

/* --- sections -------------------------------------------------------------- */

.section { padding: var(--s9) 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); border-top: var(--outline); border-bottom: var(--outline); }
.section-navy { background: var(--navy); color: var(--text-on-dark); }
.section-navy .hl, .hero .hl { color: var(--lime); }
.section p { max-width: 38rem; }
.center p { margin-left: auto; margin-right: auto; }
.lede { font-size: 1.15rem; color: var(--text-muted-light); margin-bottom: var(--s6); }

/* --- hero ------------------------------------------------------------------ */

.hero {
  background: var(--navy);
  color: var(--text-on-dark);
  padding: var(--s9) 0;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s7); align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
.hero-strap {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: 0.02em;
  margin-top: var(--s4);
  color: var(--text-on-dark);
}
.hero .sub { margin: var(--s5) 0 var(--s6); color: var(--text-muted-dark); max-width: 33rem; font-size: 1.15rem; }
.cta-row { display: flex; gap: var(--s4); align-items: center; flex-wrap: wrap; }
.cta-center { justify-content: center; }
.hero-ticks {
  display: flex; gap: var(--s5); list-style: none;
  margin-top: var(--s5); flex-wrap: wrap;
  color: var(--text-muted-dark); font-size: var(--text-small); font-weight: 600;
}
.hero-ticks li::before { content: '✓ '; color: var(--lime); font-weight: 800; }

.hero-visual { position: relative; }
.sticker-hero { position: absolute; top: -20px; right: 6px; z-index: 2; }
.demo-card {
  background: var(--white);
  color: var(--ink);
  border: var(--outline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  padding: var(--s5);
}
.star-glyph { color: var(--star); }
@keyframes pop-in { to { opacity: 1; transform: translateY(0) scale(1); } }

/* The hero demo: counter climbs, the business overtakes two rows into the top
   spot, the #1 badge pops, the AI picks it. Rotates businesses each loop. */
.hero-rank { --rowh: 66px; }
.hr-search {
  display: flex; align-items: center; gap: 0.6rem;
  border: 2px solid var(--cream-dark); border-radius: var(--radius-pill);
  padding: 0.55rem 1rem; color: var(--text-muted-light);
  font-weight: 600; font-size: 0.95rem; margin-bottom: var(--s4);
}
.hr-list { display: grid; gap: 10px; position: relative; }
.hr-row {
  display: flex; align-items: center; gap: 0.8rem;
  border: 2px solid var(--cream-dark); border-radius: var(--radius);
  padding: 0.65rem 0.9rem; min-height: 56px; background: var(--white);
  transition: transform 700ms var(--ease);
}
.hr-pin {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: 0.95rem;
}
.hr-pin-grey { background: var(--cream-dark); }
.hr-you-pin { background: var(--navy); color: var(--lime); border: var(--outline); }
.hr-info { display: grid; gap: 3px; flex: 1; min-width: 0; }
.hr-bar { height: 9px; border-radius: 5px; background: var(--cream-dark); }
.hr-bar-1 { width: 62%; }
.hr-bar-2 { width: 48%; }
.hr-comp-stars { font-size: 0.8rem; color: var(--text-muted-light); letter-spacing: 0.5px; }
.hr-you {
  border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); z-index: 2;
  background: var(--white);
}
.hr-you-name { font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hr-you-stars { font-size: 0.85rem; color: var(--star); font-weight: 700; letter-spacing: 0.5px; }
.hr-count { font-style: normal; color: var(--ink); }
.hr-badge {
  flex: none; background: var(--lime); border: var(--outline); border-radius: 999px;
  font-weight: 800; font-size: 0.9rem; padding: 0.2rem 0.7rem;
  opacity: 0; transform: scale(0);
}
/* the overtake */
.play .hr-you { animation: hr-rise 900ms var(--ease) 4600ms forwards; }
.play .hr-comp1 { animation: hr-drop 900ms var(--ease) 4600ms forwards; }
.play .hr-comp2 { animation: hr-drop 900ms var(--ease) 4600ms forwards; }
@keyframes hr-rise { to { transform: translateY(calc(var(--rowh) * -2)); } }
@keyframes hr-drop { to { transform: translateY(var(--rowh)); } }
.play .hr-badge { animation: badge-in 450ms var(--ease) 5600ms forwards; }
@keyframes badge-in {
  0% { opacity: 0; transform: scale(0); }
  60% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 1; transform: scale(1); }
}
.hr-ai {
  margin-top: var(--s4); border-top: 2px solid var(--cream-dark); padding-top: var(--s3);
  font-size: 0.92rem; color: var(--text-muted-light);
  opacity: 0; transform: translateY(6px);
}
.hr-ai strong { color: var(--ink); }
.hr-ai-glyph { color: var(--green); font-weight: 800; }
.play .hr-ai { animation: pop-in 500ms var(--ease) 6300ms forwards; }

/* --- works-with strip ------------------------------------------------------ */

.works-with { background: var(--white); border-bottom: var(--outline); padding: var(--s4) 0; }
.works-with-row {
  display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; justify-content: center;
}
.ww-label {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted-light); margin-right: var(--s2);
}
.ww-chip {
  border: 2px solid var(--ink); border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem; font-weight: 800; font-size: 0.9rem; background: var(--white);
}
.ww-csv { background: var(--cream-dark); }
.ww-logo { display: block; width: auto; }
.ww-fa { border-radius: 8px; }

/* --- the live business finder ---------------------------------------------- */

.find-widget { max-width: 560px; margin: var(--s5) auto 0; text-align: left; }
.find-bar {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--white); border: var(--outline); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card); padding: 0.35rem 0.6rem 0.35rem 1.2rem;
  color: var(--text-muted-light);
}
.find-bar svg { flex: none; }
.find-bar input {
  flex: 1; border: none; outline: none; font: inherit; font-weight: 600;
  padding: 0.65rem 0.25rem; background: transparent; color: var(--ink); min-width: 0;
}
.find-bar:focus-within { outline: 3px solid var(--green); outline-offset: 2px; }
.find-results { display: grid; gap: 0.75rem; margin-top: var(--s4); min-height: 8px; }
.find-results.find-loading::before {
  content: 'Searching Google…';
  font-size: 0.85rem; font-weight: 700; color: var(--text-muted-light);
  animation: find-pulse 1s ease-in-out infinite;
  display: block; text-align: center; padding: 0.4rem 0;
}
@keyframes find-pulse { 50% { opacity: 0.35; } }
.find-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--white); border: var(--outline); border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--ink); padding: 0.9rem 1.1rem;
  text-decoration: none; color: var(--ink);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.find-card:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.find-info { display: grid; gap: 2px; min-width: 0; }
.find-name { font-weight: 800; }
.find-addr { font-size: 0.85rem; color: var(--text-muted-light); }
.find-meta { font-size: 0.9rem; font-weight: 700; color: var(--star); }
.find-cta {
  flex: none; background: var(--lime); border: var(--outline); border-radius: var(--radius-pill);
  font-weight: 800; font-size: 0.9rem; padding: 0.45rem 1rem; white-space: nowrap;
}
.find-note { text-align: center; color: var(--text-muted-light); font-size: 0.92rem; padding: 0.3rem 0; }
.find-results .btn { justify-self: center; }

/* --- pain section ---------------------------------------------------------- */

.card-trio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5);
  margin-top: var(--s6);
}
.pain-card {
  background: var(--white);
  border: var(--outline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--s6) var(--s5);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.pain-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-card-lg); }
.pain-card h3 { margin: var(--s4) 0 var(--s3); }
.pain-card p { font-size: 0.98rem; color: var(--text-muted-light); }
.pain-emoji svg { width: 52px; height: 52px; }
.ic-face { fill: var(--lime); stroke: var(--ink); stroke-width: 2.5; }
.ic-ink { fill: var(--ink); }
.ic-smile { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; }
.ic-bar { fill: var(--cream-dark); stroke: var(--ink); stroke-width: 2.5; }
.ic-bar-hl { fill: var(--lime); }
.ic-star { fill: var(--star); stroke: var(--ink); stroke-width: 2.5; stroke-linejoin: round; }
.pain-kicker {
  margin-top: var(--s7); text-align: center;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.5rem; letter-spacing: 0.01em; max-width: none;
}

/* --- split layouts --------------------------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.split-copy p { margin-bottom: var(--s4); }
.section-navy .split-copy p { color: var(--text-muted-dark); }

/* --- animation B: rank climb ----------------------------------------------- */

.anim-rank { width: 100%; height: auto; display: block; }
.anim-rank text { font-family: var(--font-body); }
.sr-bar { fill: var(--white); stroke: var(--ink); stroke-width: 2.5; }
.sr-glass { fill: none; stroke: var(--ink); stroke-width: 2.5; }
.sr-glass-handle { stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; }
.sr-term { font-size: 16px; font-weight: 600; fill: var(--ink); opacity: 0; }
.sr-term.t1 { animation: term-cycle 12s infinite; }
.sr-term.t2 { animation: term-cycle 12s 4s infinite; }
.sr-term.t3 { animation: term-cycle 12s 8s infinite; }
@keyframes term-cycle {
  0% { opacity: 0; } 3% { opacity: 1; } 30% { opacity: 1; } 33% { opacity: 0; } 100% { opacity: 0; }
}
.mp-panel { fill: var(--white); stroke: var(--ink); stroke-width: 2.5; }
.mp-label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; fill: #8a93a8; }
.mp-row-bg { fill: var(--cream); }
.mp-slot {
  fill: var(--cream); stroke: var(--green); stroke-width: 2; stroke-dasharray: 6 5;
  animation: slot-hint 12s infinite;
}
@keyframes slot-hint { 0%, 38% { opacity: 1; } 44%, 96% { opacity: 0; } 100% { opacity: 1; } }
.ph { fill: #c9cfdd; }
.ph-light { fill: #e1e5ee; }
.mp-stars { font-size: 12px; fill: var(--star); }
.mp-count { fill: #8a93a8; font-weight: 600; }
.org-rows .ph { fill: #d7dbe6; }

/* The story: your business appears low with 5.0 (11 reviews), the reviews
   stream in, the count climbs, it enters the map pack, then overtakes both
   competitors into the top spot. */
.climber { animation: climb 12s var(--ease) infinite; }
@keyframes climb {
  0%   { transform: translateY(292px); opacity: 1; }
  16%  { transform: translateY(292px); }
  42%  { transform: translateY(214px); }
  60%  { transform: translateY(214px); }
  68%  { transform: translateY(126px); }
  94%  { transform: translateY(126px); opacity: 1; }
  97%  { opacity: 0; }
  99%  { transform: translateY(292px); opacity: 0; }
  100% { transform: translateY(292px); opacity: 1; }
}
/* The competitors it overtakes drop one slot each. */
.comp-1, .comp-2 { animation: comp-drop 12s var(--ease) infinite; }
@keyframes comp-drop {
  0%, 60% { transform: translateY(0); }
  68%, 94% { transform: translateY(44px); }
  98%, 100% { transform: translateY(0); }
}
.climber-bg { fill: var(--white); stroke: var(--ink); stroke-width: 2.5; }
.climber-pin-dot { fill: var(--navy); }
.climber-initials { font-size: 11px; font-weight: 800; fill: var(--lime); }
.climber-name { font-size: 13px; font-weight: 800; fill: var(--ink); }
.climber-stars { font-size: 11px; fill: var(--star); font-weight: 700; }
.climber-count { fill: var(--ink); }

/* The review count ticking up: 11 → 24 → 43 → 61 → 76 as the stars land. */
.rc { font-size: 11px; font-weight: 800; fill: var(--ink); opacity: 0; }
.rc-1 { animation: rc-show-1 12s infinite; }
.rc-2 { animation: rc-show-2 12s infinite; }
.rc-3 { animation: rc-show-3 12s infinite; }
.rc-4 { animation: rc-show-4 12s infinite; }
.rc-5 { animation: rc-show-5 12s infinite; }
@keyframes rc-show-1 { 0%, 30% { opacity: 1; } 31%, 100% { opacity: 0; } }
@keyframes rc-show-2 { 0%, 30% { opacity: 0; } 31%, 44% { opacity: 1; } 45%, 100% { opacity: 0; } }
@keyframes rc-show-3 { 0%, 44% { opacity: 0; } 45%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }
@keyframes rc-show-4 { 0%, 55% { opacity: 0; } 56%, 65% { opacity: 1; } 66%, 100% { opacity: 0; } }
@keyframes rc-show-5 { 0%, 65% { opacity: 0; } 66%, 96% { opacity: 1; } 97%, 100% { opacity: 0; } }

/* The #1 badge pops the moment it takes the top spot. */
.top-badge { transform-origin: 446px 18px; transform-box: view-box; animation: badge-pop 12s var(--ease) infinite; }
.top-badge-bg { fill: var(--lime); stroke: var(--ink); stroke-width: 2; }
.top-badge-text { font-size: 13px; font-weight: 800; fill: var(--ink); text-anchor: middle; }
@keyframes badge-pop {
  0%, 69% { opacity: 0; transform: scale(0); }
  73% { opacity: 1; transform: scale(1.2); }
  76% { transform: scale(1); }
  94% { opacity: 1; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(0); }
}

.climber-pin path { fill: var(--green); stroke: var(--ink); stroke-width: 2; }
.pin-hole { fill: var(--white); }
.climber-pin {
  transform-origin: 498px 34px;
  animation: pin-drop 12s var(--ease) infinite;
}
@keyframes pin-drop {
  0%, 40% { transform: translateY(-14px) scale(0); opacity: 0; }
  45% { transform: translateY(0) scale(1.15); opacity: 1; }
  49% { transform: scale(1); }
  94% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

.star-stream .fly {
  font-size: 18px; fill: var(--star); opacity: 0;
}
.fly.f1 { animation: fly-star-low 12s 1.4s infinite; }
.fly.f2 { animation: fly-star-low 12s 2.5s infinite; }
.fly.f3 { animation: fly-star-mid 12s 3.6s infinite; }
.fly.f4 { animation: fly-star-mid 12s 4.7s infinite; }
.fly.f5 { animation: fly-star-high 12s 5.8s infinite; }
@keyframes fly-star-low {
  0% { opacity: 0; transform: translate(560px, 330px); }
  2% { opacity: 1; }
  16% { opacity: 1; transform: translate(95px, 318px); }
  19% { opacity: 0; transform: translate(85px, 315px) scale(0.4); }
  100% { opacity: 0; }
}
@keyframes fly-star-mid {
  0% { opacity: 0; transform: translate(560px, 300px); }
  2% { opacity: 1; }
  16% { opacity: 1; transform: translate(95px, 245px); }
  19% { opacity: 0; transform: translate(85px, 242px) scale(0.4); }
  100% { opacity: 0; }
}
@keyframes fly-star-high {
  0% { opacity: 0; transform: translate(560px, 260px); }
  2% { opacity: 1; }
  14% { opacity: 1; transform: translate(95px, 240px); }
  17% { opacity: 0; transform: translate(85px, 237px) scale(0.4); }
  100% { opacity: 0; }
}

/* --- animation C: AI chat -------------------------------------------------- */

.ai-chat { max-width: 480px; margin: 0 auto; }
.ai-window {
  background: var(--white); border: var(--outline); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg); overflow: hidden;
}
.ai-titlebar {
  display: flex; align-items: center; gap: 6px;
  background: var(--navy); padding: 10px 14px;
}
.ai-titlebar span { width: 10px; height: 10px; border-radius: 50%; background: #3c4f7d; }
.ai-titlebar em {
  margin-left: auto; color: var(--text-muted-dark); font-size: 0.8rem; font-style: normal; font-weight: 600;
}
.ai-thread { padding: var(--s5); min-height: 220px; }
.ai-bubble {
  border-radius: 14px; padding: var(--s3) var(--s4); font-size: 0.98rem;
  max-width: 85%; opacity: 0; transform: translateY(8px);
}
.ai-user {
  background: var(--navy); color: var(--text-on-dark); margin-left: auto;
  border-bottom-right-radius: 4px; margin-bottom: var(--s4); width: fit-content;
}
.play .ai-user { animation: pop-in 400ms var(--ease) 200ms forwards; }
.ai-typing { display: flex; gap: 5px; padding: 0 var(--s2); height: 20px; opacity: 0; }
.play .ai-typing { animation: typing-window 1.6s 700ms forwards; }
@keyframes typing-window { 0% { opacity: 0; } 10%, 85% { opacity: 1; } 100% { opacity: 0; height: 0; } }
.ai-typing i {
  width: 8px; height: 8px; border-radius: 50%; background: #b9c2d8;
  animation: bounce-dot 1s infinite;
}
.ai-typing i:nth-child(2) { animation-delay: 150ms; }
.ai-typing i:nth-child(3) { animation-delay: 300ms; }
@keyframes bounce-dot { 0%, 60%, 100% { transform: none; } 30% { transform: translateY(-5px); } }
.ai-answer {
  background: var(--cream); border: 2px solid var(--cream-dark);
  border-bottom-left-radius: 4px;
}
.play .ai-answer { animation: pop-in 450ms var(--ease) 2400ms forwards; }
.ai-stars { color: var(--star); font-weight: 800; }
.ai-cite {
  margin-top: var(--s2); font-size: 0.75rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* --- how it works + animation D: connect ----------------------------------- */

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5);
  list-style: none; margin-top: var(--s6); counter-reset: step;
}
.step-card {
  background: var(--cream); border: var(--outline); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: var(--s6) var(--s5); position: relative;
}
.step-num {
  position: absolute; top: -18px; left: var(--s5);
  font-family: var(--font-display); font-size: 1.2rem;
  background: var(--navy); color: var(--lime);
  border: var(--outline); border-radius: 10px;
  width: 38px; height: 38px; display: grid; place-items: center;
  transform: rotate(-4deg);
}
.step-card h3 { margin-bottom: var(--s3); }
.step-card p { font-size: 0.98rem; color: var(--text-muted-light); }

.connect-anim { margin-top: var(--s8); }
.ca-tiles { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; }
.ca-tile {
  border: var(--outline); border-radius: var(--radius); padding: 0.7rem 1.4rem;
  font-weight: 800; background: var(--white); box-shadow: 3px 3px 0 var(--ink);
  display: flex; align-items: center;
}
.ca-tile img { display: block; width: auto; }
.ca-more { font-weight: 700; color: var(--text-muted-light); }
.ca-flow {
  display: flex; align-items: stretch; justify-content: center; gap: var(--s4);
  margin-top: var(--s6); flex-wrap: wrap;
}
.ca-stage { text-align: center; width: 200px; }
.ca-stage p { margin-top: var(--s3); font-weight: 700; font-size: 0.9rem; max-width: none; }
.ca-arrow { align-self: center; font-size: 1.6rem; font-weight: 800; color: var(--green); }
.ca-doc {
  background: var(--white); border: var(--outline); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: var(--s4); height: 110px; position: relative;
  display: flex; flex-direction: column; gap: 8px; justify-content: center;
}
.ca-doc-line { height: 7px; border-radius: 4px; background: var(--cream-dark); }
.w60 { width: 60%; } .w80 { width: 80%; } .w40 { width: 40%; }
.ca-paid {
  position: absolute; right: 10px; bottom: 8px;
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.05em;
  color: var(--green); border: 2.5px solid var(--green); border-radius: 6px;
  padding: 1px 7px; transform: rotate(-8deg);
}
.play .ca-paid { animation: stamp 8s var(--ease) infinite; }
@keyframes stamp {
  0% { transform: rotate(-8deg) scale(2.4); opacity: 0; }
  5% { transform: rotate(-8deg) scale(1); opacity: 1; }
  95% { opacity: 1; } 100% { opacity: 0; }
}
.ca-bubble {
  background: var(--navy); color: var(--text-on-dark);
  border: var(--outline); border-radius: 16px; border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-card); padding: var(--s4); font-size: 0.9rem; text-align: left;
  height: 110px; display: flex; align-items: center;
  opacity: 0.25; transition: opacity 300ms;
}
.play .ca-bubble { animation: stage-live 8s 2.2s var(--ease) infinite; }
.ca-stars {
  background: var(--white); border: var(--outline); border-radius: var(--radius);
  box-shadow: var(--shadow-card); height: 110px; display: grid; place-items: center;
  color: var(--star); font-size: 1.7rem; letter-spacing: 4px;
  opacity: 0.25;
}
.play .ca-stars { animation: stage-live 8s 4.4s var(--ease) infinite; }
@keyframes stage-live {
  0% { opacity: 0.25; transform: none; }
  4% { opacity: 1; transform: translateY(-4px); }
  8% { transform: none; }
  55% { opacity: 1; }
  70%, 100% { opacity: 0.25; }
}

/* --- animation F: search page → geo-grid → green ---------------------------- */

.geo-grid { max-width: 420px; margin: 0 auto; }
.gg-frame {
  position: relative;
  background: var(--white); border: var(--outline); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg); padding: var(--s4);
  perspective: 900px;
}
.gg-frame .gg-svg { width: 100%; height: auto; display: block; }

/* Act one: the search page a customer actually sees. Clipped to the frame —
   the grid defines the height, the search page fits inside it. */
.gg-serp {
  position: absolute; inset: var(--s4); z-index: 2;
  background: var(--white);
  display: flex; flex-direction: column; gap: 7px;
  opacity: 1; overflow: hidden;
}
.gg-serp svg { flex: none; width: 13px; height: 13px; }
.play .gg-serp { animation: serp-out 600ms var(--ease) 5600ms forwards; }
@keyframes serp-out {
  0% { opacity: 1; transform: rotateX(0deg); }
  100% { opacity: 0; transform: rotateX(-65deg); pointer-events: none; visibility: hidden; }
}
.serp-search {
  display: flex; align-items: center; gap: 8px;
  border: 2px solid var(--cream-dark); border-radius: 999px;
  padding: 7px 14px; font-weight: 700; font-size: 0.85rem; color: var(--ink);
}
.serp-row, .serp-pack { opacity: 0; transform: translateY(8px); }
.play .serp-row, .play .serp-pack {
  animation: pop-in 400ms var(--ease) forwards;
  animation-delay: calc(300ms + var(--i) * 260ms);
}
.serp-row {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--cream-dark); border-radius: 10px; padding: 9px 12px;
}
.serp-tag {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted-light); border: 1.5px solid var(--cream-dark); border-radius: 5px;
  padding: 1px 5px; flex: none;
}
.serp-line { height: 8px; border-radius: 4px; background: var(--cream-dark); display: inline-block; }
.serp-pack {
  border: 2px solid var(--ink); border-radius: 12px; padding: 10px 12px;
  box-shadow: 3px 3px 0 var(--ink);
  display: grid; gap: 7px;
}
.serp-pack-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted-light);
}
.serp-pack-row { display: flex; align-items: center; gap: 10px; }
.serp-pos {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--navy); color: var(--lime);
  font-size: 0.75rem; font-weight: 800; font-style: normal;
}
.serp-mini-stars { margin-left: auto; color: var(--star); font-size: 0.7rem; letter-spacing: 1px; }

/* Below the fold of attention: positions 4+ are ghosts, and the label says
   the quiet part out loud. */
.serp-below {
  position: relative; display: grid; gap: 5px; padding-right: 30px;
  opacity: 0; transform: translateY(8px);
}
.play .serp-below { animation: pop-in 400ms var(--ease) 820ms forwards; }
.serp-ghost {
  border-style: dashed; border-color: #d5d9e4; opacity: 0.55;
  padding: 5px 11px;
}
.serp-pos-ghost {
  width: 18px; height: 18px; font-size: 0.65rem;
  background: var(--cream-dark); color: var(--text-muted-light);
}
.serp-ghost-label {
  position: absolute; right: 4px; top: 0; bottom: 0;
  writing-mode: vertical-rl; text-orientation: mixed;
  display: flex; align-items: center;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); opacity: 0.75;
}

/* You, down here — then the reviews land and you climb into the pack. */
.serp-you {
  border-style: dashed; border-color: #cbd0dc; color: var(--text-muted-light);
  position: relative; z-index: 2; background: var(--white);
}
.play .serp-you { animation: you-rise 800ms var(--ease) 4400ms forwards; }
@keyframes you-rise {
  0% { transform: translateY(0); }
  100% {
    transform: translateY(var(--rise, -132px));
    border-color: var(--ink); border-style: solid; color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
  }
}
/* the third-place competitor gets swapped out as you arrive */
.play .serp-pack-loser { animation: loser-drop 800ms var(--ease) 4400ms forwards; }
@keyframes loser-drop { to { transform: translateY(132px); opacity: 0.12; } }

.serp-pos-you { background: var(--cream-dark); color: var(--text-muted-light); position: relative; display: grid; }
.sy { grid-area: 1 / 1; display: grid; place-items: center; opacity: 0; }
.sy-a { opacity: 1; }
.play .sy-a { animation: sy-hide 200ms linear 2800ms forwards; }
.play .sy-b { animation: sy-window 1400ms linear 2800ms forwards; }
.play .sy-c { animation: sy-show 200ms linear 4200ms forwards; }
@keyframes sy-hide { to { opacity: 0; } }
@keyframes sy-window { 0% { opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { opacity: 0; } }
@keyframes sy-show { to { opacity: 1; } }
.play .serp-pos-you { animation: sy-badge 300ms var(--ease) 4200ms forwards; }
@keyframes sy-badge { to { background: var(--navy); color: var(--lime); } }

.serp-you-label { font-weight: 700; font-size: 0.85rem; }
.serp-stamp {
  margin-left: auto; flex: none;
  font-family: var(--font-display); text-transform: uppercase; font-size: 0.8rem;
  color: var(--red); border: 2.5px solid var(--red); border-radius: 7px; padding: 2px 8px;
  transform: rotate(-6deg) scale(0); opacity: 0;
}
.play .serp-stamp {
  animation: stamp-in 400ms var(--ease) 1600ms forwards,
             gg-fade-out 300ms var(--ease) 3400ms forwards;
}
@keyframes stamp-in {
  0% { transform: rotate(-6deg) scale(2); opacity: 0; }
  60% { transform: rotate(-6deg) scale(0.95); opacity: 1; }
  100% { transform: rotate(-6deg) scale(1); opacity: 1; }
}
.serp-top3 {
  margin-left: auto; flex: none;
  background: var(--lime); border: 2px solid var(--ink); border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink); padding: 2px 9px;
  opacity: 0; transform: scale(0);
  position: absolute; right: 10px;
}
.play .serp-top3 { animation: badge-in 400ms var(--ease) 4900ms forwards; }

/* reviews flying in during the climb */
.serp-star {
  position: absolute; bottom: 44px; left: 24%;
  color: var(--star); font-size: 20px; opacity: 0; z-index: 3;
}
.play .sst-1 { animation: serp-star-fly 800ms var(--ease) 2200ms; }
.play .sst-2 { animation: serp-star-fly 800ms var(--ease) 2950ms; }
.play .sst-3 { animation: serp-star-fly 800ms var(--ease) 3700ms; }
@keyframes serp-star-fly {
  0% { opacity: 0; transform: translate(340px, -30px) scale(1); }
  15% { opacity: 1; }
  85% { opacity: 1; transform: translate(10px, 0) scale(0.8); }
  100% { opacity: 0; transform: translate(0, 2px) scale(0.3); }
}

/* Act two: the flip into the grid. */
.gg-svg { opacity: 0; transform: rotateX(55deg) scale(0.96); }
@keyframes grid-in { to { opacity: 1; transform: rotateX(0deg) scale(1); } }

/* The caption swaps as the flip happens. */
.gg-captions { display: grid; margin-top: var(--s4); text-align: center; min-height: 1.4rem; }
.gg-cap {
  grid-area: 1 / 1; font-size: 0.85rem; font-weight: 700; color: var(--text-muted-light);
}
.gg-cap-2 { opacity: 0; }
.play .gg-cap-1 { animation: gg-fade-out 400ms var(--ease) 5700ms forwards; }
.play .gg-cap-2 { animation: gg-fade-in 400ms var(--ease) 6100ms forwards; }
.gg-rect { stroke: var(--white); stroke-width: 1.5; }
.gg-t1 { fill: var(--green); }
.gg-t2 { fill: #7cc24a; }
.gg-t3 { fill: #f5a623; }
.gg-t4 { fill: #e5484d; }
.gg-n {
  font-family: var(--font-body); font-size: 17px; font-weight: 800;
  fill: var(--white); text-anchor: middle;
}
/* each cell settles at its own --d delay, centre outward: 1st across the
   middle, 2nd in the next ring, 3rd at the edges — all shades of winning */
.gg-n-end { opacity: 0; }
.play .gg-anim { animation: gg-end-1 600ms var(--ease) var(--d) forwards; }
.play .gg-anim.gg-e2 { animation-name: gg-end-2; }
.play .gg-anim.gg-e3 { animation-name: gg-end-3; }
/* the incoming number arrives before the old one is gone, so a digit is
   always on screen while the wave passes */
.play .gg-n-start { animation: gg-fade-out 300ms var(--ease) calc(var(--d) + 180ms) forwards; }
.play .gg-n-end { animation: gg-fade-in 300ms var(--ease) calc(var(--d) + 80ms) forwards; }
@keyframes gg-end-1 { to { fill: var(--green); } }
@keyframes gg-end-2 { to { fill: #4cb96e; } }
@keyframes gg-end-3 { to { fill: #7cc24a; } }
@keyframes gg-fade-out { to { opacity: 0; } }
@keyframes gg-fade-in { to { opacity: 1; } }
/* the flip in, then the all-green flash once the last ring lands (~10s in) */
.play .gg-frame .gg-svg { animation: grid-in 700ms var(--ease) 5900ms forwards, gg-flash 900ms var(--ease) 10600ms; }
@keyframes gg-flash {
  0% { filter: brightness(1); }
  35% { filter: brightness(1.25); }
  100% { filter: brightness(1); }
}
.gg-sticker {
  position: absolute; left: 50%; bottom: -18px; z-index: 3;
  transform: translateX(-50%) rotate(-3deg) scale(0);
  font-size: 0.85rem; white-space: nowrap;
  opacity: 0;
}
.play .gg-sticker { animation: gg-sticker-in 500ms var(--ease) 10900ms forwards; }
@keyframes gg-sticker-in {
  0% { opacity: 0; transform: translateX(-50%) rotate(-3deg) scale(0); }
  60% { opacity: 1; transform: translateX(-50%) rotate(-5deg) scale(1.15); }
  100% { opacity: 1; transform: translateX(-50%) rotate(-3deg) scale(1); }
}
.gg-legend {
  display: flex; gap: var(--s5); justify-content: center; margin-top: var(--s6);
  font-size: 0.85rem; font-weight: 700; color: var(--text-muted-light);
}
.gg-dot {
  display: inline-block; width: 12px; height: 12px; border-radius: 4px;
  margin-right: 6px; vertical-align: -1px;
}
i.gg-dot.gg-t1 { background: var(--green); }
i.gg-dot.gg-t3 { background: #f5a623; }

/* --- drip visual ----------------------------------------------------------- */

.drip-visual { display: flex; gap: var(--s5); align-items: flex-start; justify-content: center; }
.drip-file {
  background: var(--white); border: var(--outline); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: var(--s4); width: 180px;
}
.drip-file-head {
  font-family: ui-monospace, Menlo, monospace; font-size: 0.8rem; font-weight: 700;
  border-bottom: 2px solid var(--cream-dark); padding-bottom: 6px; margin-bottom: 10px;
}
.drip-row { height: 8px; border-radius: 4px; background: var(--cream-dark); margin-top: 8px; }
.drip-days { display: grid; gap: var(--s3); }
.drip-day {
  background: var(--white); border: var(--outline); border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--ink); padding: var(--s2) var(--s4);
  display: flex; gap: var(--s4); align-items: center; min-width: 150px;
}
.drip-day em { font-style: normal; font-weight: 800; font-size: 0.85rem; width: 34px; }
.drip-stars { color: var(--star); letter-spacing: 2px; }
.in-view .drip-day { animation: pop-in 400ms var(--ease) both; }
.in-view .drip-day:nth-child(1) { animation-delay: 100ms; }
.in-view .drip-day:nth-child(2) { animation-delay: 300ms; }
.in-view .drip-day:nth-child(3) { animation-delay: 500ms; }
.in-view .drip-day:nth-child(4) { animation-delay: 700ms; }

/* --- animation E: sequence timeline ---------------------------------------- */

.anim-seq { width: 100%; max-width: 760px; margin: var(--s6) auto 0; display: block; }
.anim-seq text { font-family: var(--font-body); }
.seq-track { stroke: var(--cream-dark); stroke-width: 4; }
.seq-progress {
  stroke: var(--green); stroke-width: 4; stroke-dasharray: 640; stroke-dashoffset: 640;
}
.in-view .seq-progress { animation: draw 2.4s var(--ease) 300ms forwards; }
.seq-node circle { fill: var(--white); stroke: var(--ink); stroke-width: 2.5; }
.seq-node { opacity: 0; transform: scale(0.6); transform-origin: center; transform-box: fill-box; }
.in-view .seq-node { animation: node-pop 400ms var(--ease) forwards; }
.in-view .n1 { animation-delay: 200ms; }
.in-view .n2 { animation-delay: 1000ms; }
.in-view .n3 { animation-delay: 1800ms; }
.in-view .n4 { animation-delay: 2600ms; }
@keyframes node-pop { to { opacity: 1; transform: scale(1); } }
.n1 circle { fill: var(--lime); }
.seq-check { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.seq-icon { fill: var(--navy); }
.seq-mail { fill: none; stroke: var(--navy); stroke-width: 2; }
.seq-stop { fill: var(--red); }
.seq-label { font-size: 13px; font-weight: 700; fill: var(--ink); text-anchor: middle; }

.trust-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4);
  margin-top: var(--s7); max-width: 820px; margin-left: auto; margin-right: auto;
}
.trust-item {
  background: var(--cream); border: var(--outline); border-radius: var(--radius);
  padding: var(--s4) var(--s5); font-size: 0.98rem;
}
.trust-item strong { display: block; margin-bottom: 2px; }

/* --- guarantee ------------------------------------------------------------- */

.guarantee { text-align: center; }
.sticker-guarantee { margin-bottom: var(--s5); font-size: 1.1rem; }
.center-sub { color: var(--text-muted-dark); font-size: 1.1rem; margin: var(--s5) auto var(--s6); }
.cta-smallprint { margin-top: var(--s4); font-size: var(--text-small); color: var(--text-muted-dark); }

/* --- sticky mobile CTA ------------------------------------------------------ */

.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: var(--cream); border-top: var(--outline);
  transform: translateY(110%); transition: transform 300ms var(--ease);
}
.mobile-cta .btn { display: block; width: 100%; }
.mobile-cta.show { transform: translateY(0); }

/* --- FAQ ------------------------------------------------------------------- */

.faq {
  background: var(--white); border: var(--outline); border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--ink); margin-bottom: var(--s4); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: var(--s4) var(--s5);
  font-weight: 800; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex: none; width: 12px; height: 12px;
  border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  transform: rotate(45deg); transition: transform var(--fast) var(--ease);
}
.faq[open] .faq-chevron { transform: rotate(225deg); }
.faq p { padding: 0 var(--s5) var(--s5); color: var(--text-muted-light); max-width: none; }

/* --- forms ----------------------------------------------------------------- */

.stacked-form { display: grid; gap: var(--s4); max-width: 460px; }
.stacked-form label { font-weight: 700; font-size: 0.95rem; display: grid; gap: 6px; }
.stacked-form .optional { font-weight: 400; color: var(--text-muted-light); }
.stacked-form input {
  font: inherit; padding: 0.75rem 1rem; border: var(--outline); border-radius: 12px;
  background: var(--white);
}
.stacked-form input:focus-visible { outline: 3px solid var(--green); outline-offset: 1px; }
.form-note { font-size: var(--text-small); color: var(--text-muted-light); }
.form-error {
  background: #fdecec; border: 2px solid var(--red); border-radius: var(--radius);
  padding: var(--s3) var(--s4); font-weight: 600; margin-bottom: var(--s4);
}

.big-tick svg { width: 84px; height: 84px; margin-bottom: var(--s4); }
.tick-circle { fill: var(--lime); stroke: var(--ink); stroke-width: 3; }
.tick-path {
  fill: none; stroke: var(--ink); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 600ms var(--ease) 300ms forwards;
}

.legal p { margin-bottom: var(--s4); color: var(--text-muted-light); }
.legal h3 { margin: var(--s6) 0 var(--s3); font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.legal-updated { color: var(--text-muted-light); font-size: 0.9rem; margin-bottom: 1.5rem; }
.legal-draft {
  display: inline-block; background: #fff8e1; border: 2px solid var(--star);
  border-radius: 8px; padding: 0.3rem 0.8rem; font-weight: 700; font-size: 0.85rem;
  color: var(--ink) !important;
}

/* --- footer ---------------------------------------------------------------- */

.site-footer { background: var(--ink); color: var(--text-muted-dark); padding: var(--s7) 0 var(--s6); }
.site-footer .logo { color: var(--text-on-dark); }
.footer-grid { display: flex; justify-content: space-between; gap: var(--s6); flex-wrap: wrap; }
.footer-tag { margin-top: var(--s3); font-size: var(--text-small); max-width: 20rem; }
.footer-links { display: grid; gap: var(--s2); }
.footer-links a { color: var(--text-on-dark); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.footer-links a:hover { color: var(--lime); }
.footer-legal { margin-top: var(--s6); border-top: 1px solid #1c2c52; padding-top: var(--s4); }
.footer-legal p { font-size: 0.8rem; max-width: 44rem; }

/* --- scroll reveals -------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); transition-delay: calc(var(--i, 0) * 120ms); }
.reveal.in-view { opacity: 1; transform: none; }

/* --- responsive ------------------------------------------------------------ */

@media (max-width: 860px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: var(--s6); }
  .split-flip .split-visual { order: 2; }
  .card-trio, .steps, .trust-row { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .section { padding: var(--s7) 0; }
  .hero { padding: var(--s7) 0; }
  .sticker-hero { top: -14px; right: 0; }
  .ca-arrow { transform: rotate(90deg); }
  .ca-flow { flex-direction: column; align-items: center; }
  .drip-visual { flex-direction: column; align-items: center; }
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* --- reduced motion -------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .ai-bubble, .seq-node, .reveal { opacity: 1 !important; transform: none !important; }
  .ai-typing { display: none; }
  .climber { transform: translateY(126px); }
  .comp-1, .comp-2 { transform: translateY(44px); }
  .rc-5, .top-badge, .climber-pin { opacity: 1 !important; transform: none !important; }
  .rc-1, .rc-2, .rc-3, .rc-4 { opacity: 0 !important; }
  .seq-progress { stroke-dashoffset: 0; }
  .ca-bubble, .ca-stars { opacity: 1; }
  /* hero and geo-grid rest in their finished state */
  .hr-you { transform: translateY(calc(var(--rowh) * -2)); }
  .hr-comp1, .hr-comp2 { transform: translateY(var(--rowh)); }
  .hr-badge, .hr-ai { opacity: 1 !important; transform: none !important; }
  .gg-rect { fill: var(--green) !important; }
  .gg-n-start { opacity: 0 !important; }
  .gg-n-end, .gg-sticker { opacity: 1 !important; }
  .gg-sticker { transform: translateX(-50%) rotate(-3deg) !important; }
  .gg-serp { display: none; }
  .gg-svg { opacity: 1; transform: none; }
  .gg-cap-1 { opacity: 0; }
  .gg-cap-2 { opacity: 1 !important; }
}

/* --- pricing ---------------------------------------------------------------- */
.price-card {
  margin: 2rem auto 0; max-width: 480px; background: #fff;
  border: 3px solid var(--ink); border-radius: 20px; padding: 2.2rem 2rem;
  box-shadow: 8px 8px 0 var(--ink); text-align: left;
}
.price-row { display: flex; align-items: baseline; gap: 0.4rem; justify-content: center; }
.price-big {
  font-family: var(--display-font, inherit); font-weight: 900; font-size: 4rem;
  letter-spacing: -0.02em; color: var(--navy);
}
.price-per { font-size: 1.2rem; font-weight: 700; color: var(--text-muted-light); }
.price-sub { text-align: center; margin: 0.4rem 0 1.4rem; color: var(--text-muted-light); font-weight: 600; }
.price-list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.65rem; }
.price-list li { padding-left: 1.7rem; position: relative; line-height: 1.45; }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 0.18em; width: 1.05em; height: 1.05em;
  background: var(--green); border: 2px solid var(--ink); border-radius: 50%;
}
.price-list li::after {
  content: ""; position: absolute; left: 0.30em; top: 0.44em; width: 0.5em; height: 0.28em;
  border-left: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); transform: rotate(-48deg);
}
.price-card .btn { display: block; text-align: center; }

/* --- help centre ------------------------------------------------------------ */
.help-list { display: grid; gap: 1rem; margin-top: 2rem; }
.help-item {
  display: grid; gap: 0.25rem; background: var(--white); text-decoration: none;
  border: 3px solid var(--ink); border-radius: 16px; padding: 1.25rem 1.4rem;
  box-shadow: 5px 5px 0 var(--ink); color: var(--ink);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.help-item:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.help-item strong { font-size: 1.15rem; }
.help-item span { color: var(--text-muted-light); font-weight: 400; }
.help-article h3 { margin: 1.8rem 0 0.5rem; font-size: 1.2rem; }
.help-article p { margin-bottom: 0.9rem; line-height: 1.65; }
.help-foot { margin-top: 2.5rem; border-top: 3px solid var(--ink); padding-top: 1.25rem; }
