/* =============================================================================
   OptiCheckout — marketing site
   Design system. One accent (pine green, the product's own shipped storefront
   accent #0F7A5A). Warm paper background. Whitespace over containers. Left-
   aligned. Colour reserved for interactive elements.
   ============================================================================= */

:root {
  --ink:        #101f1a;
  --ink-2:      #46554f;
  --ink-3:      #6b7873;
  --bg:         #fbfaf6;
  --bg-2:       #f3f1e9;
  --surface:    #ffffff;
  --line:       #e6e3d8;
  --line-2:     #d7d3c6;

  --accent:     #0f7a5a;
  --accent-ink: #0b5b43;
  --accent-2:   #12946c;
  --accent-soft:#e7f2ec;
  --accent-line:#c6e2d5;

  --amber:      #b7791f;
  --amber-soft: #fbf3e2;

  --radius:     14px;
  --radius-lg:  22px;
  --radius-sm:  9px;
  --shadow-sm:  0 1px 2px rgba(16,31,26,.05), 0 2px 8px rgba(16,31,26,.04);
  --shadow:     0 10px 30px -12px rgba(16,31,26,.18), 0 4px 10px -6px rgba(16,31,26,.10);
  --shadow-lg:  0 40px 80px -30px rgba(16,31,26,.35), 0 12px 28px -18px rgba(16,31,26,.22);

  --maxw:       1160px;
  --font:       "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* Geist everywhere — the display face is the same family (no serif), tightened
     for headline/number sizes. Weight is bumped at the usage sites since Geist
     reads lighter than a serif at large sizes. */
  --font-display: var(--font);
  --ease:       cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--pad-b0 { padding-bottom: 0; }
.bg-alt { background: var(--bg-2); }
.bg-ink { background: #0d1a16; color: #eef3f0; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  padding: 6px 12px; border-radius: 100px;
}
.eyebrow--plain { background: none; border: none; padding: 0; color: var(--accent-ink); }
h1, .h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h2--xl { font-size: clamp(2.15rem, 4.4vw, 3.5rem); letter-spacing: -.02em; }
h3, .h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
.display { font-family: var(--font-display); font-weight: 700; letter-spacing: -.025em; }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--ink-2); line-height: 1.55; max-width: 46ch; }
.muted { color: var(--ink-2); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }
.accent-text { color: var(--accent-ink); }

/* ---------- buttons ---------- */
.btn {
  --_bg: var(--accent); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 16px; font-weight: 600; line-height: 1;
  padding: 15px 24px; border-radius: 100px; border: 1px solid transparent;
  background: var(--_bg); color: var(--_fg); cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: 0 1px 2px rgba(11,91,67,.25), 0 8px 20px -8px rgba(11,91,67,.4);
  white-space: nowrap;
}
.btn:hover { color: #fff; background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(11,91,67,.28), 0 14px 28px -10px rgba(11,91,67,.5); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --_bg: transparent; --_fg: var(--ink);
  border-color: var(--line-2); box-shadow: none; background: #fff;
}
.btn--ghost:hover { background: #fff; color: var(--accent-ink); border-color: var(--accent-line); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--lg { font-size: 17px; padding: 17px 30px; }
.btn--light { --_bg: #fff; --_fg: var(--accent-ink); }
.btn--light:hover { background: #f2fbf7; color: var(--accent-ink); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.textlink { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--accent-ink); }
.textlink svg { transition: transform .2s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,246,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 1px 0 rgba(16,31,26,.03), 0 6px 24px -18px rgba(16,31,26,.3); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(150deg, var(--accent-2), var(--accent-ink));
  display: grid; place-items: center; color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.25), var(--shadow-sm);
}
.brand__mark svg { width: 17px; height: 17px; }
.nav__links { display: flex; gap: 4px; margin-left: 12px; }
.nav__links a { color: var(--ink-2); font-weight: 550; font-size: 15px; padding: 8px 12px; border-radius: 8px; }
.nav__links a:hover { color: var(--ink); background: rgba(16,31,26,.04); }
.nav__spacer { flex: 1; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 9px; width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__inner { gap: 12px; }
}
.mobile-menu {
  display: none; border-top: 1px solid var(--line); background: var(--bg);
  padding: 12px 0 22px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 24px; font-size: 17px; font-weight: 600; color: var(--ink); }
.mobile-menu a:hover { background: rgba(16,31,26,.04); }
.mobile-menu .btn { margin: 14px 24px 0; width: calc(100% - 48px); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 60px 0 40px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
  background:
    radial-gradient(60% 60% at 78% 8%, rgba(18,148,108,.13), transparent 60%),
    radial-gradient(50% 50% at 12% 0%, rgba(183,121,31,.08), transparent 55%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin-inline: auto; }
.hero h1 { margin-bottom: 20px; }
.hero .lede { margin-inline: auto; margin-bottom: 30px; max-width: 62ch; font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
.hero .btn-row { justify-content: center; }
.hero__note { margin-top: 18px; font-size: 14.5px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 8px; }
.hero__note svg { color: var(--accent); width: 17px; height: 17px; flex: none; }

.hero__shot { position: relative; z-index: 1; margin-top: 54px; }
.hero__shot .browser { max-width: 1080px; margin-inline: auto; }

/* ---------- browser + phone frames ---------- */
.browser {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.browser__bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: linear-gradient(#fcfbf8, #f4f2ec); border-bottom: 1px solid var(--line);
}
.browser__dots { display: flex; gap: 6px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: #d9d5c8; display: block; }
.browser__dots i:nth-child(1){ background:#f0a9a0; } .browser__dots i:nth-child(2){ background:#f2ce8f; } .browser__dots i:nth-child(3){ background:#a7d8b4; }
.browser__url {
  flex: 1; max-width: 340px; margin-inline: auto; text-align: center;
  font-size: 12.5px; color: var(--ink-3); background: #fff; border: 1px solid var(--line);
  border-radius: 100px; padding: 5px 14px; display: inline-flex; align-items: center; gap: 6px; justify-content: center;
}
.browser__url svg { width: 12px; height: 12px; color: var(--accent); }
.browser img { display: block; width: 100%; }
.browser--flush img { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

.phone {
  width: 260px; background: #0d1a16; border-radius: 34px; padding: 10px;
  box-shadow: var(--shadow-lg); flex: none;
}
.phone__screen { border-radius: 26px; overflow: hidden; background: #fff; position: relative; }
.phone__screen img { width: 100%; display: block; }
.phone__notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 96px; height: 20px; background: #0d1a16; border-radius: 0 0 14px 14px; z-index: 2; }

/* ---------- trust band ---------- */
.trustband { border-block: 1px solid var(--line); background: var(--bg); }
.trustband__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; padding: 26px 0; }
.trustband__item { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.trustband__item svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.trustband__label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

/* ---------- feature rows ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.frow + .frow { margin-top: 110px; }
.frow--flip .frow__media { order: -1; }
.frow__body h2 { margin-bottom: 18px; }
.frow__media { position: relative; }
.frow__media .browser { box-shadow: var(--shadow); }
@media (max-width: 860px) {
  .frow { grid-template-columns: 1fr; gap: 34px; }
  .frow + .frow { margin-top: 72px; }
  .frow--flip .frow__media { order: 0; }
}

.checklist { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: 16px; }
.checklist svg { width: 21px; height: 21px; color: var(--accent); flex: none; margin-top: 1px; }
.checklist b { color: var(--ink); font-weight: 600; }

/* ---------- wedge / compare ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 8px; }
.compare__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.compare__card--good { border-color: var(--accent-line); background: linear-gradient(180deg,#fff,var(--accent-soft)); box-shadow: var(--shadow); }
.compare__tag { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; display: block; }
.compare__card--good .compare__tag { color: var(--accent-ink); }
.compare__card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.compare__card li { display: flex; gap: 11px; font-size: 15.5px; color: var(--ink-2); }
.compare__card li svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.compare__card--bad li svg { color: #c0776b; }
.compare__card--good li svg { color: var(--accent); }
.compare__card--good li b { color: var(--ink); }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }

/* ---------- templates gallery: cards that open the full /demo pages ---------- */
.tpl-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
@media (max-width: 980px) { .tpl-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tpl-gallery { grid-template-columns: 1fr; } }

.tpl-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.tpl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-line); color: inherit; }
.tpl-card:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; }

.tpl-card__shot { position: relative; overflow: hidden; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.tpl-card__shot .browser { border: 0; border-radius: 0; box-shadow: none; }
/* the renders are 1440x900 (= 16/10); free the attribute height so width:100% scales
   them down to a uniform thumbnail instead of holding their full 900px height. */
.tpl-card__shot .browser img { height: auto; }
.tpl-card__shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: linear-gradient(to top, rgba(16,31,26,.28), rgba(16,31,26,0) 46%);
  transition: opacity .2s var(--ease);
}
.tpl-card:hover .tpl-card__shot::after { opacity: 1; }
.tpl-card__open {
  position: absolute; left: 50%; bottom: 14px; transform: translate(-50%, 8px); opacity: 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #fff; background: var(--accent);
  padding: 10px 18px; border-radius: 100px;
  box-shadow: 0 10px 24px -8px rgba(11,91,67,.6);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.tpl-card__open svg { width: 16px; height: 16px; }
.tpl-card:hover .tpl-card__open { opacity: 1; transform: translate(-50%, 0); }

.tpl-card__body { padding: 18px 20px 22px; }
.tpl-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.tpl-card__head h3 { font-size: 1.3rem; margin: 0; color: var(--ink); }
.tpl-card__kind {
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 3px 9px; border-radius: 100px; white-space: nowrap; flex: none;
}
.tpl-card__body p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }

.tpl-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip { font-size: 13px; font-weight: 600; color: var(--ink-2); background: var(--bg-2); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; }

@media (prefers-reduced-motion: reduce) {
  .tpl-card:hover { transform: none; }
  .tpl-card__open { transition: opacity .2s var(--ease); }
  .tpl-card:hover .tpl-card__open { transform: translate(-50%, 0); }
}

/* ---------- grid of features ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid, .grid--2 { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card__icon {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-ink); margin-bottom: 16px; border: 1px solid var(--accent-line);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink-2); margin: 0; }

/* ---------- feature cards with live mini-visualizations (§GROW) ---------- */
/* Each card leads with a small coded facsimile of the feature, then an
   inline icon+title label, then the copy. Scoped under .card--viz so the
   plain .card elsewhere is untouched. All bars/meters are block/flex
   children (never a bare inline <span>) so they can't collapse to 0. */
.card--viz { padding: 16px 16px 18px; display: flex; flex-direction: column; }
.card__viz { margin-bottom: 15px; }
.card__label { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.card__ic {
  width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-ink); border: 1px solid var(--accent-line);
}
.card__ic svg { width: 18px; height: 18px; }
.card--viz h3 { font-size: 1.02rem; margin: 0; letter-spacing: -.01em; }
.card--viz p { font-size: 14px; line-height: 1.5; }

/* shared bits */
.viz-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); }

/* 1 · side-cart drawer */
.v-cart { padding: 12px 13px; }
.v-cart__top { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 12.5px; color: var(--ink); }
.v-cart__top span { color: var(--ink-3); font-weight: 600; }
.v-meter { margin: 10px 0 0; font-size: 11px; color: var(--accent-ink); font-weight: 600; }
.v-bar { height: 7px; border-radius: 99px; background: var(--bg-2); overflow: hidden; margin-top: 5px; }
.v-bar > b { display: block; height: 100%; width: 78%; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.v-line { display: flex; gap: 9px; align-items: center; padding: 9px 0 0; border-top: 1px solid var(--bg-2); margin-top: 9px; }
.v-thumb { width: 34px; height: 34px; border-radius: 8px; background: var(--bg-2); border: 1px solid var(--line); flex: none; display: grid; place-items: center; color: var(--ink-3); font-size: 15px; }
.v-line__t { flex: 1; min-width: 0; }
.v-line__t b { display: block; font-size: 12px; color: var(--ink); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-line__t span { font-size: 11px; color: var(--ink-3); }
.v-line__p { font-size: 12px; font-weight: 700; color: var(--ink); }
.v-fbt { margin-top: 9px; padding: 8px 9px; border: 1px dashed var(--accent-line); border-radius: 9px; background: color-mix(in srgb, var(--accent-soft) 45%, #fff); font-size: 11px; color: var(--accent-ink); font-weight: 600; }
.v-cta { margin-top: 10px; height: 34px; border-radius: 9px; background: var(--accent); color: #fff; font-weight: 700; font-size: 12.5px; display: grid; place-items: center; }

/* 2 · order bump */
.v-bump { border: 1.5px solid var(--accent-line); border-radius: 12px; padding: 12px; background: var(--surface); box-shadow: var(--shadow-sm); position: relative; }
.v-bump__flag { position: absolute; top: -9px; left: 12px; background: var(--accent); color: #fff; font-size: 9.5px; font-weight: 700; letter-spacing: .05em; padding: 3px 8px; border-radius: 99px; text-transform: uppercase; }
.v-bump__row { display: flex; gap: 11px; align-items: center; }
.v-check { width: 20px; height: 20px; border-radius: 6px; background: var(--accent); flex: none; display: grid; place-items: center; }
.v-check svg { width: 13px; height: 13px; color: #fff; }
.v-bump__img { width: 46px; height: 46px; border-radius: 9px; background: var(--bg-2); border: 1px solid var(--line); flex: none; display: grid; place-items: center; color: var(--ink-3); font-size: 20px; }
.v-bump__t b { font-size: 12.5px; color: var(--ink); font-weight: 700; display: block; }
.v-bump__t span { font-size: 11.5px; color: var(--ink-2); display: block; margin-top: 2px; }
.v-bump__t i { font-style: normal; font-weight: 700; color: var(--accent-ink); }

/* 3 · analytics funnel */
.v-funnel { padding: 13px 14px; }
.v-funnel h5 { font-size: 10.5px; color: var(--ink-3); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 11px; }
.v-step { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.v-step__lab { font-size: 11px; color: var(--ink-2); width: 66px; flex: none; font-weight: 600; }
.v-step__track { flex: 1; height: 20px; border-radius: 6px; background: var(--bg-2); overflow: hidden; }
.v-step__fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); display: flex; align-items: center; justify-content: flex-end; padding-right: 7px; color: #fff; font-size: 10px; font-weight: 700; }
.v-step__fill--leak { background: linear-gradient(90deg, #e07a4b, #d5623a); }
.v-step__drop { font-size: 10px; font-weight: 700; color: #c8552f; width: 36px; text-align: right; flex: none; }
.v-leaktag { margin-top: 6px; font-size: 11px; color: #c8552f; font-weight: 600; }

/* 4 · A/B test */
.v-ab { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.v-ab__col { border: 1px solid var(--line); border-radius: 11px; padding: 11px; background: var(--surface); position: relative; box-shadow: var(--shadow-sm); }
.v-ab__col--win { border-color: var(--accent-line); background: color-mix(in srgb, var(--accent-soft) 40%, #fff); }
.v-ab__tag { font-size: 10px; font-weight: 700; color: var(--ink-3); letter-spacing: .06em; }
.v-ab__col--win .v-ab__tag { color: var(--accent-ink); }
.v-ab__big { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--ink); letter-spacing: -.02em; margin-top: 4px; line-height: 1; }
.v-ab__col--win .v-ab__big { color: var(--accent-ink); }
.v-ab__sub { font-size: 10.5px; color: var(--ink-3); margin-top: 3px; }
.v-ab__spark { height: 26px; margin-top: 9px; display: flex; align-items: flex-end; gap: 3px; }
.v-ab__spark i { flex: 1; background: var(--bg-2); border-radius: 2px 2px 0 0; }
.v-ab__col--win .v-ab__spark i { background: color-mix(in srgb, var(--accent) 55%, #fff); }
.v-ab__win { position: absolute; top: 9px; right: 9px; background: var(--accent); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 99px; text-transform: uppercase; letter-spacing: .04em; }

/* 5 · thank-you timeline */
.v-ty { padding: 13px 14px; }
.v-ty__badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 4px 9px; border-radius: 99px; }
.v-ty__ord { font-size: 11px; color: var(--ink-3); margin: 9px 0 12px; }
.v-ty__ord b { color: var(--ink); }
.v-tl { position: relative; padding-left: 20px; }
.v-tl::before { content: ""; position: absolute; left: 6px; top: 4px; bottom: 12px; width: 2px; background: var(--bg-2); }
.v-tl__row { position: relative; padding-bottom: 11px; }
.v-tl__row:last-child { padding-bottom: 0; }
.v-tl__row::before { content: ""; position: absolute; left: -17px; top: 2px; width: 11px; height: 11px; border-radius: 99px; background: var(--surface); border: 2px solid var(--line); }
.v-tl__row--done::before { background: var(--accent); border-color: var(--accent); }
.v-tl__row--now::before { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--accent-soft); }
.v-tl__row b { font-size: 12px; color: var(--ink); font-weight: 600; display: block; }
.v-tl__row span { font-size: 10.5px; color: var(--ink-3); }

/* 6 · trust */
.v-trust { display: grid; gap: 8px; }
.v-stars { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--ink-2); font-weight: 600; }
.v-stars .s { color: var(--amber); display: inline-flex; gap: 2px; }
.v-guar { display: flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--line); border-radius: 11px; padding: 10px 11px; box-shadow: var(--shadow-sm); }
.v-guar__ic { width: 32px; height: 32px; border-radius: 9px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; color: var(--accent-ink); flex: none; }
.v-guar__ic svg { width: 17px; height: 17px; }
.v-guar b { font-size: 12px; color: var(--ink); display: block; }
.v-guar span { font-size: 11px; color: var(--ink-3); }
.v-trust__badges { display: flex; flex-wrap: wrap; gap: 7px; }
.v-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line); border-radius: 99px; padding: 6px 11px; box-shadow: var(--shadow-sm); }
.v-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 20px; }
.step__num {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 700; font-size: 18px; color: #fff; background: var(--accent-ink);
  margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 15.5px; margin: 0; }

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 780px) { .stats { grid-template-columns: 1fr; } }
.stat { padding: 6px 4px; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: #fff; letter-spacing: -.02em; line-height: 1; }
.stat__num span { color: var(--accent-2); }
.stat__label { color: #b9c6c0; font-size: 15px; margin-top: 10px; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column;
}
.plan--featured { border: 2px solid var(--accent); box-shadow: var(--shadow-lg); position: relative; }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 100px; text-transform: uppercase;
}
.plan__name { font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; }
.plan__desc { color: var(--ink-2); font-size: 14.5px; min-height: 42px; margin-top: 4px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 4px; }
.plan__price b { font-family: var(--font-display); font-weight: 700; font-size: 2.7rem; color: var(--ink); letter-spacing: -.02em; }
.plan__price span { color: var(--ink-3); font-size: 15px; }
.plan__cycle { color: var(--ink-3); font-size: 14px; margin-bottom: 22px; }
.plan .btn { margin-bottom: 22px; }
.plan__feat { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.plan__feat li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-2); }
.plan__feat svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 1px; }
.pricing__note { text-align: center; color: var(--ink-3); font-size: 14.5px; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 18px; font-weight: 600; color: var(--ink);
  padding: 24px 44px 24px 0; position: relative; line-height: 1.4;
}
.faq__q::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--ease);
}
.faq__item.open .faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { color: var(--ink-2); font-size: 16px; padding: 0 44px 24px 0; margin: 0; }

/* ---------- final CTA ---------- */
.cta-final { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 72px 48px; text-align: center; }
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(70% 120% at 50% 0%, rgba(18,148,108,.28), transparent 60%),
              radial-gradient(50% 90% at 85% 100%, rgba(183,121,31,.12), transparent 60%);
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { max-width: 20ch; margin-inline: auto; }
.cta-final .lede { color: #c5d2cc; margin-inline: auto; margin-bottom: 28px; }
.cta-final .btn-row { justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 0 34px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer__brand p { color: var(--ink-2); font-size: 15px; max-width: 32ch; margin-top: 14px; }
.footer h4 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--ink-2); font-size: 15px; padding: 5px 0; }
.footer__req { display: block; color: var(--ink-2); font-size: 15px; padding: 5px 0; opacity: .8; }
.footer__col a:hover { color: var(--accent-ink); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 14px; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- misc ---------- */
.badge-lock { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--amber); background: var(--amber-soft); border: 1px solid #f0e2c4; padding: 6px 12px; border-radius: 100px; }
.badge-lock svg { width: 15px; height: 15px; }
.floaty { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 12px 15px; display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; }
.floaty svg { width: 26px; height: 26px; flex: none; }
@media (max-width: 620px) { .floaty { display: none; } }

/* =============================================================================
   LIVE BUILDER PANELS  (#builder) — coded, interactive replacements for the old
   cramped admin screenshots. .bp = the panel chrome + rail; .bpc = the mini live
   checkout the rail drives. Accent + corners flow through --bp-accent / --bp-radius.
   ============================================================================= */
.bp {
  --bp-on-accent: #fff;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.bp__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; background: #16241f;
  border-bottom: 1px solid #16241f; font-size: 13px;
}
.bp__crumb { color: #9fb4aa; font-weight: 600; }
.bp__sep { color: rgba(255,255,255,.28); }
.bp__here { color: #fff; font-weight: 700; }
.bp__live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #7fe0bf; }
.bp__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(18,148,108,.5); animation: bplive 2.2s var(--ease) infinite; }
@keyframes bplive { 0% { box-shadow: 0 0 0 0 rgba(18,148,108,.5); } 70% { box-shadow: 0 0 0 6px rgba(18,148,108,0); } 100% { box-shadow: 0 0 0 0 rgba(18,148,108,0); } }

.bp__body { display: grid; grid-template-columns: 194px 1fr; min-height: 340px; }
.bp__rail { padding: 18px 15px; border-right: 1px solid var(--line); background: var(--bg); display: flex; flex-direction: column; gap: 17px; }
.bp__group { display: flex; flex-direction: column; gap: 9px; }
.bp__lbl { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.bp__text { font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line-2); border-radius: 9px; padding: 9px 11px; width: 100%; }
.bp__text:focus { outline: none; border-color: var(--bp-accent); box-shadow: 0 0 0 3px rgba(15,122,90,.14); }

.bp__sw-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bp__sw { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; background: var(--sw); cursor: pointer; box-shadow: 0 0 0 1px var(--line-2); transition: transform .14s var(--ease), box-shadow .14s var(--ease); }
.bp__sw:hover { transform: scale(1.1); }
.bp__sw.is-active { box-shadow: 0 0 0 2px var(--sw); transform: scale(1.06); }

.bp__seg { display: inline-flex; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 100px; padding: 3px; }
.bp__seg button { font-family: var(--font); font-size: 12px; font-weight: 600; cursor: pointer; border: 0; background: none; color: var(--ink-2); padding: 6px 11px; border-radius: 100px; transition: color .14s var(--ease), background .14s var(--ease), box-shadow .14s var(--ease); display: inline-flex; align-items: center; gap: 5px; }
.bp__seg button svg { width: 14px; height: 14px; }
.bp__seg button.is-active { background: #fff; color: var(--accent-ink); box-shadow: var(--shadow-sm); }

.bp__note { margin-top: auto; display: flex; align-items: flex-start; gap: 7px; font-size: 11.5px; color: var(--ink-3); line-height: 1.4; }
.bp__note svg { width: 14px; height: 14px; color: var(--accent); flex: none; margin-top: 1px; }

.bp__canvas { padding: 20px; background: var(--bg-2); display: grid; place-items: center; }

/* fields rail */
.bp__rail--fields { gap: 10px; }
.bp__field { display: flex; flex-direction: column; gap: 9px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.bp__field[data-locked="true"] { flex-direction: row; align-items: center; justify-content: space-between; background: var(--bg); }
.bp__field-name { font-size: 12.5px; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.bp__field-name em { font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 1px 5px; border-radius: 100px; }
.bp__field-lock { font-size: 10.5px; font-weight: 600; color: var(--ink-3); }
.bp__states { display: inline-flex; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 8px; padding: 2px; }
.bp__states button { flex: 1; font-family: var(--font); font-size: 10.5px; font-weight: 600; cursor: pointer; border: 0; background: none; color: var(--ink-3); padding: 5px 6px; border-radius: 6px; transition: all .14s var(--ease); white-space: nowrap; }
.bp__states button.is-active { background: #fff; color: var(--accent-ink); box-shadow: var(--shadow-sm); }

/* device rail lives in the bar; the stage holds the morphing canvas */
.bp__seg--device { margin-left: auto; }
.bp__stage { padding: 26px 20px; background: var(--bg-2); display: grid; place-items: center; }
.bpd { width: 100%; display: grid; place-items: center; }
.bpc--device { transition: max-width .32s var(--ease), border-radius .32s var(--ease), border-width .32s var(--ease); }
.bp__stage.is-desktop .bpc--device { max-width: 100%; }
.bp__stage.is-tablet .bpc--device { max-width: 300px; }
.bp__stage.is-phone .bpc--device { max-width: 216px; border: 6px solid #16241f; border-radius: 26px; }
.bpc__msum { display: flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid var(--line-2); border-radius: calc(var(--bp-radius) * .7); margin-bottom: 12px; font-size: 11.5px; font-weight: 700; color: var(--ink); }
.bpc__msum-tot { margin-left: auto; color: var(--bp-accent-ink); }
.bpc__msum svg { width: 13px; height: 13px; color: var(--ink-3); }
.bp__stage:not(.is-phone) .bpc__msum { display: none; }
.bpc__sticky { position: sticky; bottom: 0; padding: 9px; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); border-top: 1px solid var(--line); }
.bp__stage:not(.is-phone) .bpc__sticky { border-top: 0; padding: 12px 14px 14px; background: none; }
.bpc__sticky .bpc__cta { margin: 0; }

/* the mini live checkout canvas (shared) */
.bpc { width: 100%; max-width: 300px; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.bpc__top { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; background: #f6f7f3; border-bottom: 1px solid var(--line); }
.bpc__brand { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.bpc__secure { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--bp-accent-ink); }
.bpc__secure svg { width: 12px; height: 12px; }
.bpc__body { padding: 14px; }
.bpc__h { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 11px; }
.bpc__opt { display: flex; align-items: center; gap: 9px; border: 1px solid var(--line-2); border-radius: calc(var(--bp-radius) * .65); padding: 9px 11px; margin-bottom: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.bpc__opt.is-sel { border-color: var(--bp-accent); background: color-mix(in srgb, var(--bp-accent) 8%, #fff); box-shadow: 0 0 0 1px var(--bp-accent) inset; color: var(--ink); }
.bpc__radio { width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--line-2); flex: none; display: grid; place-items: center; }
.bpc__opt.is-sel .bpc__radio { border-color: var(--bp-accent); }
.bpc__opt.is-sel .bpc__radio::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--bp-accent); }
.bpc__logos { margin-left: auto; display: inline-flex; gap: 4px; }
.bpc__logos i { width: 22px; height: 14px; border-radius: 3px; background: #eceae0; border: 1px solid var(--line-2); }
.bpc__card { display: flex; align-items: center; gap: 8px; height: 34px; border: 1px solid var(--line-2); border-radius: calc(var(--bp-radius) * .6); margin: 2px 0 12px; padding: 0 11px; background: #fff; font-size: 11.5px; color: #b0b6b0; letter-spacing: .04em; }
.bpc__card::before { content: ""; width: 20px; height: 13px; border-radius: 3px; background: linear-gradient(135deg, #dfe3d8, #efeee6); border: 1px solid var(--line-2); flex: none; }
.bpc__cta { width: 100%; font-family: var(--font); font-size: 13.5px; font-weight: 700; cursor: pointer; border: 0; border-radius: var(--bp-radius); padding: 11px; color: var(--bp-on-accent); background: var(--bp-accent); box-shadow: 0 6px 16px -8px var(--bp-accent); transition: background .2s var(--ease), border-radius .32s var(--ease); }
.bpc__trust { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 10px; color: var(--ink-3); margin-top: 9px; }
.bpc__trust svg { width: 12px; height: 12px; color: var(--bp-accent); }

/* fields canvas */
.bpc__f { margin-bottom: 10px; }
.bpc__f:last-child { margin-bottom: 0; }
.bpc__f.is-hidden { display: none; }
.bpc__lab { display: block; font-size: 10.5px; font-weight: 600; color: #34413b; margin-bottom: 4px; }
.bpc__lab .req { color: #cf4b3e; }
.bpc__lab .opt { color: #8a938e; font-weight: 500; }
.bpc__inp { display: block; font-size: 11.5px; color: #9aa19c; background: #fff; border: 1px solid var(--line-2); border-radius: calc(var(--bp-radius) * .65); padding: 8px 10px; }

@media (prefers-reduced-motion: reduce) {
  .bp__live i { animation: none; }
  .bpc--device, .bpc__cta { transition: none; }
}
@media (max-width: 560px) {
  .bp__body { grid-template-columns: 1fr; }
  .bp__rail { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* =============================================================================
   ADMIN PROTOTYPES — coded, interactive stand-ins for the old wp-admin
   screenshots. .ap = Analytics; .vh = Version history. Both sit inside a
   .browser frame (window chrome stays; the pixel screenshot is gone).
   ============================================================================= */
.browser--app img { display: none; }              /* safety: no stray screenshot */
.ap, .vh { background: #f7f8f4; font-size: 14px; color: var(--ink); }

/* ---------- Analytics ---------- */
.ap { padding: 20px 22px 22px; }
.ap__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 4px; }
.ap__crumb { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); }
.ap__title { font-size: 1.4rem; margin: 2px 0 0; letter-spacing: -.02em; }
.ap__export { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font); font-size: 13px; font-weight: 700; color: #fff; background: var(--accent); border: 0; border-radius: 9px; padding: 8px 14px; cursor: pointer; box-shadow: var(--shadow-sm); transition: background .18s var(--ease); }
.ap__export:hover { background: var(--accent-2); }
.ap__export svg { width: 14px; height: 14px; }

.ap__filters { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 16px 0 18px; }
.ap__seg { display: inline-flex; background: #fff; border: 1px solid var(--line-2); border-radius: 9px; padding: 3px; }
.ap__seg button { font-family: var(--font); font-size: 12.5px; font-weight: 600; cursor: pointer; border: 0; background: none; color: var(--ink-2); padding: 6px 12px; border-radius: 7px; transition: color .14s var(--ease), background .14s var(--ease), box-shadow .14s var(--ease); }
.ap__seg button.is-active { background: var(--accent-soft); color: var(--accent-ink); box-shadow: inset 0 0 0 1px var(--accent-line); }
.ap__chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line-2); border-radius: 9px; padding: 7px 11px; }
.ap__chip svg { width: 13px; height: 13px; color: var(--ink-3); }
.ap__priv { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: 100px; padding: 6px 11px; }
.ap__priv svg { width: 13px; height: 13px; }

.ap__stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 10px; }
.ap__stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; }
.ap__stat-top { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.ap__stat-ic { width: 26px; height: 26px; border-radius: 7px; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); border: 1px solid var(--accent-line); }
.ap__stat-ic svg { width: 15px; height: 15px; }
.ap__stat-k { font-size: 11px; font-weight: 600; color: var(--ink-3); line-height: 1.2; }
.ap__stat-v { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.ap__stat-d { display: inline-flex; align-items: center; gap: 3px; margin-top: 7px; font-size: 11.5px; font-weight: 700; }
.ap__stat-d.up { color: var(--accent); }
.ap__stat-d.down { color: #c0776b; }
.ap__stat-d svg { width: 12px; height: 12px; }

.ap__funnel { margin-top: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 16px 6px; }
.ap__funnel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.ap__funnel-head b { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.ap__funnel-head span { font-size: 12px; color: var(--ink-3); }
.ap__frow { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 12px; margin-bottom: 14px; }
.ap__frow-k { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.ap__track { display: block; height: 26px; background: var(--bg-2); border-radius: 7px; overflow: hidden; }
.ap__bar { display: block; height: 100%; border-radius: 7px; width: 0; background: linear-gradient(90deg, var(--accent-ink), var(--accent-2)); transition: width .6s var(--ease); }
.ap__bar[data-fu="1"] { background: linear-gradient(90deg, var(--accent-2), #3bb389); }
.ap__bar[data-fu="2"] { background: linear-gradient(90deg, #3bb389, #7fd6b6); }
.ap__frow-v { font-size: 13px; font-weight: 700; color: var(--ink); text-align: right; min-width: 74px; }
.ap__frow-v span { display: block; font-size: 11px; font-weight: 600; color: var(--ink-3); }

.ap__opp { display: flex; align-items: flex-start; gap: 11px; margin-top: 14px; background: linear-gradient(180deg, #fff, var(--accent-soft)); border: 1px solid var(--accent-line); border-radius: 12px; padding: 14px 16px; }
.ap__opp-ic { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; background: #fff; color: var(--accent-ink); border: 1px solid var(--accent-line); }
.ap__opp-ic svg { width: 17px; height: 17px; }
.ap__opp-k { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-ink); }
.ap__opp-t { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; }
.ap__opp-t b { color: var(--ink); font-weight: 600; }

/* ---------- Version history ---------- */
.vh { padding: 18px 20px 20px; }
.vh__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.vh__title { font-size: 1.15rem; margin: 0; }
.vh__sub { font-size: 12.5px; color: var(--ink-3); margin: 2px 0 16px; }
.vh__list { display: flex; flex-direction: column; gap: 9px; }
.vh__item { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; transition: border-color .16s var(--ease), box-shadow .16s var(--ease); }
.vh__item.is-current { border-color: var(--accent-line); background: linear-gradient(180deg,#fff,var(--accent-soft)); }
.vh__dot { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--bg-2); color: var(--ink-3); border: 1px solid var(--line-2); }
.vh__item.is-current .vh__dot { background: var(--accent); color: #fff; border-color: var(--accent); }
.vh__dot svg { width: 15px; height: 15px; }
.vh__meta { flex: 1; min-width: 0; }
.vh__when { font-size: 13.5px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.vh__flag { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 1px 7px; border-radius: 100px; }
.vh__note { font-size: 12px; color: var(--ink-3); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vh__restore { font-family: var(--font); font-size: 12.5px; font-weight: 700; cursor: pointer; color: var(--accent-ink); background: #fff; border: 1px solid var(--line-2); border-radius: 8px; padding: 7px 13px; flex: none; transition: all .15s var(--ease); }
.vh__restore:hover { border-color: var(--accent-line); background: var(--accent-soft); }
.vh__now { font-size: 12px; font-weight: 700; color: var(--ink-3); flex: none; padding: 7px 4px; }
.vh__reset { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line-2); }
.vh__reset-ic { width: 32px; height: 32px; border-radius: 8px; flex: none; display: grid; place-items: center; background: var(--amber-soft); color: var(--amber); border: 1px solid #f0e2c4; }
.vh__reset-ic svg { width: 17px; height: 17px; }
.vh__reset-t { flex: 1; }
.vh__reset-t b { font-size: 13.5px; }
.vh__reset-t span { display: block; font-size: 12px; color: var(--ink-3); }
.vh__toast {
  position: absolute; left: 50%; bottom: 16px; transform: translate(-50%, 8px);
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #fff;
  background: #16241f; padding: 10px 16px; border-radius: 100px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 5;
}
.vh__toast svg { width: 15px; height: 15px; color: #7fe0bf; }
.vh__toast.show { opacity: 1; transform: translate(-50%, 0); }
.vh { position: relative; }

@media (max-width: 460px) {
  .ap__frow { grid-template-columns: 74px 1fr; }
  .ap__frow-v { grid-column: 2; text-align: left; }
  .vh__note { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ap__bar { transition: none; }
}

/* =============================================================================
   HERO BUILDER — the coded, interactive builder that replaces the big hero
   screenshot. Dark toolbar + CUSTOMISE rail + a live checkout canvas the rail
   drives (accent / corners / device flow through --hb-accent / --hb-radius).
   ============================================================================= */
.hb {
  --hb-accent: #0f7a5a; --hb-accent-ink: #0b5b43; --hb-on-accent: #fff; --hb-radius: 12px;
  background: #fff; color: var(--ink); font-size: 14px; text-align: left;
}
/* toolbar */
.hb__bar { display: flex; align-items: center; gap: 10px; padding: 9px 14px; background: #16241f; color: #cfe0d8; }
.hb__bar-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; color: #fff; }
.hb__bar-mark { width: 22px; height: 22px; border-radius: 6px; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, var(--accent-2), var(--accent-ink)); color: #fff; }
.hb__bar-mark svg { width: 13px; height: 13px; }
.hb__tpl { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #cfe0d8; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 5px 9px; }
.hb__tpl b { color: #fff; font-weight: 700; }
.hb__tpl-draft { font-size: 9.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #f3c969; }
.hb__surface { margin: 0 auto; display: inline-flex; background: rgba(0,0,0,.28); border-radius: 9px; padding: 3px; }
.hb__surface button { font-family: var(--font); font-size: 12px; font-weight: 600; cursor: pointer; border: 0; background: none; color: #a9bcb3; padding: 6px 13px; border-radius: 7px; transition: color .14s var(--ease), background .14s var(--ease); }
.hb__surface button.is-active { background: var(--accent-2); color: #fff; }
.hb__dev { display: inline-flex; gap: 2px; }
.hb__dev button { width: 30px; height: 28px; display: grid; place-items: center; cursor: pointer; border: 0; background: none; color: #90a69c; border-radius: 7px; transition: color .14s var(--ease), background .14s var(--ease); }
.hb__dev button svg { width: 17px; height: 17px; }
.hb__dev button.is-active { background: rgba(255,255,255,.12); color: #fff; }
.hb__btn { font-family: var(--font); font-size: 12.5px; font-weight: 700; cursor: pointer; border-radius: 8px; padding: 7px 13px; display: inline-flex; align-items: center; gap: 6px; }
.hb__btn svg { width: 14px; height: 14px; }
.hb__btn--ghost { background: rgba(255,255,255,.08); color: #dfeae4; border: 1px solid rgba(255,255,255,.14); }
.hb__btn--pub { background: var(--accent-2); color: #fff; border: 0; }
.hb__btn--pub:hover { background: #15a67a; }

/* body: rail + canvas */
.hb__body { display: grid; grid-template-columns: 232px 1fr; min-height: 468px; }
.hb__rail { border-right: 1px solid var(--line); background: #fbfbf8; padding: 16px 14px; }
.hb__rail-h { font-size: 10.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.hb__rail-sub { font-size: 11.5px; color: var(--ink-3); margin-bottom: 12px; line-height: 1.4; }
.hb__search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line-2); border-radius: 9px; padding: 8px 11px; margin-bottom: 14px; color: var(--ink-3); font-size: 12.5px; }
.hb__search svg { width: 14px; height: 14px; flex: none; }
.hb__nav { display: flex; flex-direction: column; gap: 3px; }
.hb__nav-item { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer; background: none; border: 0; border-radius: 9px; padding: 9px 10px; transition: background .14s var(--ease), color .14s var(--ease); }
.hb__nav-item:hover { background: rgba(16,31,26,.045); }
.hb__nav-item.is-active { background: var(--accent-soft); color: var(--accent-ink); box-shadow: inset 0 0 0 1px var(--accent-line); }
.hb__nav-ic { width: 26px; height: 26px; border-radius: 7px; flex: none; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.hb__nav-item.is-active .hb__nav-ic { background: #fff; border-color: var(--accent-line); color: var(--accent-ink); }
.hb__nav-ic svg { width: 15px; height: 15px; }
.hb__nav-tx { flex: 1; }
.hb__nav-tx span { display: block; font-size: 10.5px; font-weight: 500; color: var(--ink-3); margin-top: 1px; }
.hb__nav-item.is-active .hb__nav-tx span { color: var(--accent-ink); opacity: .75; }
.hb__nav-chev { width: 14px; height: 14px; color: var(--ink-3); flex: none; }

/* the branding controls, revealed under the active Branding item */
.hb__controls { margin: 6px 2px 4px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 11px; display: none; }
.hb__nav-item.is-active + .hb__controls { display: block; }
.hb__ctl-lbl { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.hb__ctl + .hb__ctl { margin-top: 14px; }
.hb__sw-row { display: flex; flex-wrap: wrap; gap: 8px; }
.hb__sw { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; background: var(--sw); cursor: pointer; box-shadow: 0 0 0 1px var(--line-2); transition: transform .14s var(--ease), box-shadow .14s var(--ease); }
.hb__sw:hover { transform: scale(1.1); }
.hb__sw.is-active { box-shadow: 0 0 0 2px var(--sw); transform: scale(1.06); }
.hb__seg { display: inline-flex; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 9px; padding: 3px; }
.hb__seg button { font-family: var(--font); font-size: 11.5px; font-weight: 600; cursor: pointer; border: 0; background: none; color: var(--ink-2); padding: 5px 12px; border-radius: 6px; transition: all .14s var(--ease); }
.hb__seg button.is-active { background: #fff; color: var(--accent-ink); box-shadow: var(--shadow-sm); }

/* canvas */
.hb__canvas { background: var(--bg-2); padding: 22px; display: grid; place-items: start center; overflow: hidden; }
.hb__cv {
  width: 100%; max-width: 640px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow);
  transition: max-width .34s var(--ease);
}
.hb__canvas.is-tablet .hb__cv { max-width: 400px; }
.hb__canvas.is-phone .hb__cv { max-width: 260px; }
.hb__cv-url { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: #f4f4ef; border-bottom: 1px solid var(--line); font-size: 11px; color: var(--ink-3); }
.hb__cv-url svg { width: 12px; height: 12px; color: var(--hb-accent); flex: none; }
.hb__cv-edit { margin-left: auto; font-size: 9.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #a9791d; background: #fbf3e2; border: 1px solid #f0e2c4; padding: 2px 7px; border-radius: 100px; }
.hb__co { padding: 16px 18px 18px; }
.hb__co-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hb__co-brand { font-weight: 800; font-size: 16px; color: var(--ink); letter-spacing: -.01em; }
.hb__co-secure { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; color: var(--hb-accent-ink); background: color-mix(in srgb, var(--hb-accent) 10%, #fff); border: 1px solid color-mix(in srgb, var(--hb-accent) 26%, #fff); padding: 4px 9px; border-radius: 100px; }
.hb__co-secure svg { width: 12px; height: 12px; }
/* progress */
.hb__steps { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.hb__step { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: #9aa19c; }
.hb__step i { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 10.5px; font-weight: 700; border: 1.5px solid #d5d1c4; background: #fff; color: #9aa19c; font-style: normal; }
.hb__step.done i { background: var(--hb-accent); border-color: var(--hb-accent); color: #fff; }
.hb__step.active { color: var(--ink); }
.hb__step.active i { border-color: var(--hb-accent); color: var(--hb-accent-ink); box-shadow: 0 0 0 3px color-mix(in srgb, var(--hb-accent) 16%, transparent); }
.hb__steps hr { flex: 1; height: 1.5px; border: 0; background: #e2dfd3; margin: 0; }
.hb__co-grid { display: grid; grid-template-columns: 1fr 200px; gap: 18px; align-items: start; }
.hb__canvas.is-tablet .hb__co-grid, .hb__canvas.is-phone .hb__co-grid { grid-template-columns: 1fr; }
.hb__fs { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.hb__field { margin-bottom: 10px; }
.hb__field label { display: block; font-size: 10.5px; font-weight: 600; color: #34413b; margin-bottom: 4px; }
.hb__field label b { color: #cf4b3e; }
.hb__inp { font-size: 11.5px; color: #9aa19c; background: #fff; border: 1px solid var(--line-2); border-radius: calc(var(--hb-radius) * .55); padding: 9px 11px; }
.hb__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.hb__pay { border: 1px solid var(--line-2); border-radius: calc(var(--hb-radius) * .6); padding: 10px 11px; display: flex; align-items: center; gap: 9px; margin: 4px 0 12px; background: color-mix(in srgb, var(--hb-accent) 6%, #fff); box-shadow: 0 0 0 1px var(--hb-accent) inset; font-size: 11.5px; font-weight: 600; color: var(--ink); }
.hb__pay-radio { width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--hb-accent); flex: none; display: grid; place-items: center; }
.hb__pay-radio::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--hb-accent); }
.hb__pay-logos { margin-left: auto; display: inline-flex; gap: 4px; }
.hb__pay-logos i { width: 20px; height: 13px; border-radius: 3px; background: #eceae0; border: 1px solid var(--line-2); }
.hb__cta { width: 100%; font-family: var(--font); font-size: 13px; font-weight: 700; cursor: pointer; border: 0; border-radius: var(--hb-radius); padding: 12px; color: var(--hb-on-accent); background: var(--hb-accent); box-shadow: 0 8px 18px -8px var(--hb-accent); transition: background .2s var(--ease), border-radius .34s var(--ease); }
/* summary */
.hb__sum { background: #fbfaf6; border: 1px solid var(--line); border-radius: 12px; padding: 13px; }
.hb__canvas.is-tablet .hb__sum, .hb__canvas.is-phone .hb__sum { margin-top: 4px; }
.hb__sum-h { display: flex; align-items: baseline; justify-content: space-between; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.hb__sum-h span { font-size: 10.5px; font-weight: 600; color: var(--ink-3); }
.hb__meter { font-size: 10.5px; color: var(--ink-2); margin-bottom: 5px; }
.hb__meter b { color: var(--hb-accent-ink); }
.hb__meter-track { height: 5px; border-radius: 100px; background: #e7e4d7; overflow: hidden; margin-bottom: 12px; }
.hb__meter-fill { display: block; height: 100%; width: 79%; border-radius: 100px; background: var(--hb-accent); }
.hb__li { display: flex; align-items: center; gap: 9px; padding: 7px 0; border-top: 1px solid #eee9dc; }
.hb__li:first-of-type { border-top: 0; }
.hb__li-th { width: 30px; height: 30px; border-radius: 7px; flex: none; display: grid; place-items: center; font-size: 10px; font-weight: 800; color: #fff; }
.hb__li-n { flex: 1; font-size: 11px; font-weight: 600; color: #22302a; line-height: 1.3; }
.hb__li-p { font-size: 11.5px; font-weight: 700; color: #22302a; }
.hb__tot { display: flex; align-items: baseline; justify-content: space-between; margin-top: 10px; padding-top: 10px; border-top: 1px solid #eee9dc; }
.hb__tot b { font-size: 13px; font-weight: 700; color: var(--ink); }
.hb__tot span { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }

@media (max-width: 860px) {
  .hb__body { grid-template-columns: 200px 1fr; }
  .hb__co-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hb__bar { flex-wrap: wrap; gap: 8px; }
  .hb__surface { order: 3; margin: 4px auto 0; width: 100%; justify-content: center; }
  .hb__body { grid-template-columns: 1fr; }
  .hb__rail { border-right: 0; border-bottom: 1px solid var(--line); }
  .hb__dev { display: none; }
  /* labels don't fit the narrow canvas — collapse the rail to numbered circles */
  .hb__step { font-size: 0; gap: 0; }
  .hb__step i { font-size: 10.5px; }
}
/* the phone-device canvas is always too narrow for step labels too */
.hb__canvas.is-phone .hb__step { font-size: 0; gap: 0; }
.hb__canvas.is-phone .hb__step i { font-size: 10.5px; }
@media (prefers-reduced-motion: reduce) {
  .hb__cv, .hb__cta { transition: none; }
}

/* =============================================================================
   Legal / policy pages (terms, privacy, refunds, contact)
   Long-form prose on the same warm paper. One measure, left-aligned, sticky
   table of contents on the side. New scoped classes only — nothing above is
   touched, so the marketing pages can't regress from this block.
   ============================================================================= */
.legal { padding: 56px 0 32px; }
.legal__head { max-width: 74ch; }
.legal__head .eyebrow { margin-bottom: 16px; }
.legal__title { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 14px; }
.legal__intro { font-size: 1.08rem; color: var(--ink-2); line-height: 1.55; max-width: 68ch; }
.legal__meta { color: var(--ink-3); font-size: 14px; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 6px 20px; }
.legal__meta strong { color: var(--ink-2); font-weight: 600; }

.legal__grid { display: grid; grid-template-columns: 216px 1fr; gap: 56px; align-items: start; margin-top: 44px; }
@media (max-width: 880px) { .legal__grid { grid-template-columns: 1fr; gap: 28px; } }

.legal__toc { position: sticky; top: 92px; font-size: 14px; }
.legal__toc h4 { font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.legal__toc a { display: block; color: var(--ink-2); padding: 5px 0 5px 13px; margin-left: -15px; line-height: 1.35; border-left: 2px solid transparent; }
.legal__toc a:hover { color: var(--accent-ink); border-color: var(--accent-line); }
@media (max-width: 880px) {
  .legal__toc { position: static; padding-bottom: 22px; margin-bottom: 4px; border-bottom: 1px solid var(--line);
    column-count: 2; column-gap: 28px; }
  .legal__toc h4 { column-span: all; }
}

.prose { max-width: 72ch; }
.prose > section { scroll-margin-top: 90px; }
.prose h2 { font-size: 1.35rem; margin: 2.3em 0 .55em; }
.prose > section:first-child h2 { margin-top: 0; }
.prose h3 { font-size: 1.03rem; margin: 1.6em 0 .4em; color: var(--ink); font-weight: 600; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1.1em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--ink-3); }
.prose a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--accent); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.2em 0; }

/* a placeholder that is obviously a fill-in, not a fake fact */
.fill { color: var(--amber); background: var(--amber-soft); border-radius: 5px;
  padding: 1px 6px; font-weight: 600; font-size: .95em; white-space: nowrap; }

/* highlighted reader callout (e.g. the 14-day guarantee) */
.legal-note { background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: var(--radius); padding: 16px 20px; margin: 0 0 4px; }
.legal-note p { margin: 0; color: var(--accent-ink); }
.legal-note strong { color: var(--accent-ink); }

/* contact page cards */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start; margin-top: 8px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); }
.contact-card h3 { margin-bottom: 6px; }
.contact-card p { color: var(--ink-2); font-size: 15px; }
.contact-card .big-mail { font-size: 1.15rem; font-weight: 600; }
.contact-detail { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; font-size: 15px; margin-top: 4px; }
.contact-detail dt { color: var(--ink-3); }
.contact-detail dd { color: var(--ink-2); margin: 0; }
