/* ============================================================
   MarketCub, marketcubagency.com  ·  v5
   Ryze-style product-led landing (per get-ryze.ai, analysed
   live 2026-09-01).

   The idiom: a pixel-art illustrated hero in deep teal with a
   white 700-weight headline floating over it and tiny
   'Press Start 2P' pixel labels; then a clean white SaaS body -
   near-white 16px-radius panels, black 4px-radius buttons,
   Satoshi for everything, where the persuasion is done by
   built product UI: a metrics dashboard, a chat-style audit
   report, score tickers, floating pills.

   Our "product" is a website that earns: the dashboard shows
   shop metrics and leak-fixes, and the audit chat demos the
   actual free-audit deliverable. All figures in those mocks are
   illustrative and labelled as samples on the page.
   ============================================================ */

:root {
  color-scheme: light;

  /* Ground */
  --bg:      #ffffff;
  --panel:   #fafafa;      /* oklch(.985) card ground */
  --panel-2: #f2f3f3;
  --line:    #e7e9ea;
  --line-2:  #d7dbdc;

  /* Ink */
  --ink:   #11181c;
  --grey:  #5b6569;
  --grey-2:#8b9498;

  /* Brand teal (sampled from the hero gradient family) */
  --teal:    #2b7573;
  --teal-d:  #1d5957;
  --teal-l:  #3d8a87;
  --teal-bg: #eaf3f2;

  /* Signals */
  --ok:   #1d8a52;
  --ok-bg:#e4f4ec;
  --bad:  #c2452f;
  --bad-bg:#fbeae6;
  --cream: #fdf6e5;

  --sans:  "Satoshi", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --pixel: "Press Start 2P", "Courier New", monospace;

  --maxw: 1200px;
  --pad:  clamp(20px, 4vw, 56px);
  --header-h: 64px;
  --r:  16px;      /* cards */
  --rb: 4px;       /* buttons, Ryze's small radius */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --shadow: 0 1px 2px rgba(17,24,28,.05), 0 12px 32px -16px rgba(17,24,28,.18);
}

/* ── Base ────────────────────────────────────────────────── */
*, *::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;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.025em; line-height: 1.1; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

::selection { background: var(--teal); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: #fff;
  padding: 12px 18px; font: 600 .8rem/1 var(--sans);
  border-radius: 0 0 var(--rb) 0;
}
.skip:focus { left: 0; }

/* ── Type ────────────────────────────────────────────────── */
.d1 { font-size: clamp(2.3rem, 5vw, 3.85rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.06; }
.d2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem);  font-weight: 700; letter-spacing: -.028em; line-height: 1.12; }
.d3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -.015em; }
.lede { font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.6; color: var(--grey); }
.small { font-size: .84rem; color: var(--grey); line-height: 1.6; }

/* Tiny pixel label, the Ryze garnish. Used sparingly: section
   eyebrows and dashboard panel titles. */
.px {
  font-family: var(--pixel);
  font-size: .55rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--grey);
  line-height: 1.8;
}
.px--teal { color: var(--teal); }
.px--light { color: rgba(255,255,255,.85); }

/* ── Layout ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(52px, 6.5vw, 96px); }
.section--tint { background: var(--panel); border-block: 1px solid var(--line); }
.mhead { max-width: 640px; margin-bottom: clamp(28px, 3.5vw, 44px); }
.mhead .px { display: block; margin-bottom: 12px; }
.mhead__lede { margin-top: 12px; }
.mhead--center { margin-inline: auto; text-align: center; }

/* ── Buttons, black, small radius (Ryze) ────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-size: .88rem; font-weight: 500;
  padding: 11px 20px; border-radius: var(--rb);
  background: var(--ink); color: #fff; border: 1px solid var(--ink);
  text-decoration: none; cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { background: var(--teal-d); border-color: var(--teal-d); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--panel-2); color: var(--ink); border-color: var(--line-2); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: var(--cream); border-color: var(--cream); }
.btn--sm { padding: 8px 14px; font-size: .8rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

.alink {
  display: inline-flex; align-items: center; gap: .35em;
  font-size: .88rem; font-weight: 600; color: var(--teal);
  text-decoration: none;
}
.alink:hover { text-decoration: underline; text-underline-offset: .2em; }

/* Chips */
.chip {
  display: inline-block; font-size: .72rem; font-weight: 500; color: var(--grey);
  border: 1px solid var(--line-2); border-radius: 6px; padding: 4px 10px; white-space: nowrap;
  background: #fff;
}
.chip--ok  { color: var(--ok); background: var(--ok-bg); border-color: transparent; }
.chip--bad { color: var(--bad); background: var(--bad-bg); border-color: transparent; }
.chip--teal { color: var(--teal-d); background: var(--teal-bg); border-color: transparent; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px 22px;
}
.card--white { background: #fff; }

/* ── Header, transparent over the hero, solid when stuck ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent; color: #fff;
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.header.is-stuck { background: rgba(255,255,255,.92); color: var(--ink);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line); }
@supports not (backdrop-filter: blur(1px)) { .header.is-stuck { background: #fff; } }
/* Pages without the illustrated hero get a solid header always. */
body:not(.has-hero) .header { position: sticky; background: #fff; color: var(--ink); box-shadow: 0 1px 0 var(--line); }
body.has-hero { padding-top: 0; }
body:not(.has-hero) { padding-top: 0; }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: currentColor; }
.brand__mark { width: 26px; height: 26px; flex: none; }
.brand__mark .bearfill { fill: currentColor; }
.brand__mark .bearcut { fill: var(--teal); }
.header.is-stuck .brand__mark .bearcut, body:not(.has-hero) .brand__mark .bearcut { fill: #fff; }
.brand__name { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
.brand__name sup { font-size: .5em; vertical-align: .7em; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  font-size: .86rem; font-weight: 500; color: currentColor; opacity: .85;
  text-decoration: none; padding: 7px 12px; border-radius: 6px;
  transition: opacity .18s var(--ease), background .18s var(--ease);
}
.nav__link:hover, .nav__link.is-active { opacity: 1; background: rgba(127,127,127,.14); }

.header .btn--hdr { background: #000; color: #fff; border-color: #000; }
.header .btn--hdr:hover { background: var(--teal-d); border-color: var(--teal-d); }

.burger {
  display: none; width: 38px; height: 38px; padding: 0;
  align-items: center; justify-content: center;
  background: rgba(127,127,127,.15); border: 0;
  border-radius: 8px; cursor: pointer; color: currentColor;
}
.burger__bars { display: block; width: 15px; height: 9px; position: relative; }
.burger__bars::before, .burger__bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px;
  background: currentColor; border-radius: 2px;
  transition: transform .22s var(--ease), top .22s var(--ease);
}
.burger__bars::before { top: 0; }
.burger__bars::after { top: 7.5px; }
.burger[aria-expanded="true"] .burger__bars::before { top: 3.75px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars::after { top: 3.75px; transform: rotate(-45deg); }
@media (max-width: 940px) { .nav, .header__cta { display: none; } .burger { display: inline-flex; } }

.drawer {
  position: fixed; inset: 0; z-index: 85;
  background: #fff; color: var(--ink);
  padding: calc(var(--header-h) + 20px) var(--pad) 40px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
/* The fixed header must stay legible over the open drawer. */
body.is-locked .header { background: #fff; color: var(--ink); }
body.is-locked .header .brand__mark .bearcut { fill: #fff; }
.drawer__link {
  font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em;
  text-decoration: none; color: var(--ink);
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.drawer__cta { margin-top: 24px; align-self: flex-start; }
body.is-locked { overflow: hidden; }
@media (min-width: 941px) { .drawer { display: none; } }

/* ── Hero, the illustrated world ────────────────────────── */
.hero {
  position: relative; color: #fff;
  /* Capped: on very tall viewports an uncapped vh hero becomes a
     wall of scenery before any content. */
  min-height: max(560px, min(88vh, 780px));
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1d5957 0%, #2b7573 45%, #3d8a87 100%);
}
.hero__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__art svg { width: 100%; height: 100%; }
/* Legibility scrim behind the copy without dimming the scene. */
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,40,40,.55) 0%, rgba(10,40,40,.22) 45%, transparent 70%);
}
.hero__inner { position: relative; z-index: 2; padding-block: calc(var(--header-h) + 40px) 120px; }
.hero__title { max-width: 13ch; margin-bottom: 18px; text-shadow: 0 2px 24px rgba(10,40,40,.35); }
.hero__lede { max-width: 44ch; color: rgba(255,255,255,.92); font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__caps {
  display: flex; gap: clamp(14px, 3vw, 34px); flex-wrap: wrap;
  margin-top: 30px;
}
.hero__caps .px { font-size: .5rem; }

/* Floating corner pill (Ryze's "Connect …" pill) */
.heropill {
  position: absolute; z-index: 3; right: clamp(14px, 3vw, 40px); bottom: clamp(118px, 15vh, 170px);
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); color: var(--ink);
  border-radius: 999px; padding: 10px 16px 10px 12px;
  font-size: .82rem; font-weight: 500; text-decoration: none;
  box-shadow: 0 6px 24px rgba(10,40,40,.35);
  transition: transform .2s var(--ease);
}
.heropill:hover { transform: translateY(-2px); }
.heropill__spark { color: var(--teal); font-size: .9rem; }
@media (max-width: 720px) { .heropill { display: none; } }
@media (prefers-reduced-motion: reduce) { .heropill { transition: none; } }

/* ── Dashboard panel, pulled up over the hero's bottom ──── */
.dashwrap { position: relative; z-index: 4; margin-top: clamp(-84px, -6vw, -48px); }
.dash {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow);
  padding: clamp(14px, 2vw, 24px);
  display: grid; gap: 14px;
}
.dash__note { text-align: center; margin-top: 10px; font-size: .74rem; color: var(--grey-2); }

.dash__metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 860px) { .dash__metrics { grid-template-columns: 1fr 1fr; } }
.metric { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.metric .px { font-size: .48rem; margin-bottom: 8px; display: block; }
.metric__row { display: flex; align-items: baseline; gap: 8px; }
.metric__n { font-size: 1.45rem; font-weight: 700; letter-spacing: -.03em; }
.metric__d { font-size: .72rem; font-weight: 600; padding: 2px 7px; border-radius: 99px; }
.metric__d.up { color: var(--ok); background: var(--ok-bg); }
.metric__d.down { color: var(--bad); background: var(--bad-bg); }

.dash__mid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 14px; }
@media (max-width: 960px) { .dash__mid { grid-template-columns: 1fr; } }
.dpanel { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 15px 16px; min-width: 0; }
.dpanel .px { font-size: .48rem; display: block; margin-bottom: 12px; }

/* Funnel */
.funnel__row { display: grid; grid-template-columns: 84px 1fr 52px; align-items: center; gap: 10px; margin-bottom: 9px; font-size: .76rem; }
.funnel__row:last-child { margin-bottom: 0; }
.funnel__lbl { color: var(--grey); }
.funnel__bar { height: 14px; border-radius: 4px; background: var(--teal); opacity: .92; }
.funnel__n { text-align: right; font-weight: 600; font-size: .76rem; }

/* Leaks */
.leak { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 7px 0; border-top: 1px solid var(--line); font-size: .78rem; }
.leak:first-of-type { border-top: 0; padding-top: 0; }
.leak__n { font-weight: 600; color: var(--bad); white-space: nowrap; }

/* Hour strip */
.hours { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; }
.hours i { display: block; aspect-ratio: 1; border-radius: 3px; background: var(--teal); }
.hours__lbls { display: flex; justify-content: space-between; margin-top: 6px; font-size: .58rem; color: var(--grey-2); }

/* Fix queue */
.fixq { display: grid; gap: 0; }
.fixq__row {
  display: grid; grid-template-columns: 88px 1fr auto; align-items: center; gap: 12px;
  padding: 10px 4px; border-top: 1px solid var(--line); font-size: .8rem;
}
.fixq__row:first-child { border-top: 0; }
.fixq__issue b { font-weight: 600; }
.fixq__issue span { color: var(--grey); }
.fixq__acts { display: flex; gap: 6px; }
.fixq__deny, .fixq__ok {
  font-size: .7rem; font-weight: 600; border-radius: 5px; padding: 4px 10px; border: 1px solid var(--line-2);
  background: #fff; color: var(--grey); cursor: default;
}
.fixq__ok { background: var(--ink); border-color: var(--ink); color: #fff; }
@media (max-width: 640px) {
  .fixq__row { grid-template-columns: 1fr auto; }
  .fixq__row .chip { display: none; }
}

/* ── Audit chat panel (Ryze's agent conversation) ────────── */
.chatwrap { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.chat__user {
  justify-self: end; max-width: 80%;
  background: var(--teal); color: #fff;
  border-radius: 14px 14px 4px 14px; padding: 11px 16px;
  font-size: .9rem; font-weight: 500;
}
.chat__agent {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: clamp(16px, 2.5vw, 26px);
}
.chat__who { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: .8rem; font-weight: 600; }
.chat__avatar { width: 22px; height: 22px; border-radius: 6px; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: .6rem; font-weight: 700; }
.chat__intro { font-size: .92rem; color: var(--grey); margin-bottom: 18px; }

.audit__score { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.audit__num {
  width: 62px; height: 62px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 1.35rem; font-weight: 700;
  background: conic-gradient(var(--teal) 0 72%, var(--line) 72% 100%);
}
.audit__num i { width: 50px; height: 50px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-style: normal; }
.audit__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; flex: 1; }
@media (max-width: 620px) { .audit__cols { grid-template-columns: 1fr; } }
.audit__col .px { font-size: .48rem; display: block; margin-bottom: 7px; }
.audit__col li { font-size: .8rem; padding: 4px 0; display: grid; grid-template-columns: 14px 1fr; gap: 7px; color: var(--grey); }
.audit__col--fix li::before { content: "×"; color: var(--bad); font-weight: 700; }
.audit__col--strong li::before { content: "✓"; color: var(--ok); font-weight: 700; }

.audit__steps { border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 10px; }
.audit__step { display: grid; grid-template-columns: 24px 1fr; gap: 11px; font-size: .85rem; }
.audit__step i {
  width: 22px; height: 22px; border-radius: 6px; font-style: normal;
  background: var(--teal-bg); color: var(--teal-d);
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
}
.audit__step b { font-weight: 600; display: block; }
.audit__step span { color: var(--grey); font-size: .8rem; }
.audit__bottom {
  margin-top: 16px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 16px; font-size: .84rem;
}
.audit__bottom b { font-weight: 700; }
.audit__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* ── Score ticker ────────────────────────────────────────── */
.tick { overflow: hidden; padding-block: 6px; }
.tick__track { display: flex; width: max-content; animation: tick 30s linear infinite; }
.tick__seq { display: flex; gap: 10px; padding-right: 10px; flex: none; }
.tick__seq .chip { font-size: .74rem; padding: 7px 13px; border-radius: 8px; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tick__track { animation: none; flex-wrap: wrap; width: auto; } }

/* ── Feature cards / grids ───────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .cards { grid-template-columns: 1fr; } }
.fcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 22px; display: flex; flex-direction: column; }
.fcard .px { display: block; margin-bottom: 12px; }
.fcard__t { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -.015em; }
.fcard__b { font-size: .88rem; color: var(--grey); line-height: 1.6; }
.fcard__chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.fcard__list { display: grid; margin-top: auto; border-top: 1px solid var(--line); padding-top: 6px; }
.fcard__list li { display: grid; grid-template-columns: 16px 1fr; gap: 8px; font-size: .82rem; color: var(--grey); padding: 6px 0; }
.fcard__list li::before { content: "✓"; color: var(--teal); font-weight: 700; }

/* Browser frame + before/after (carried) */
.bframe { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.bframe__bar { display: flex; align-items: center; gap: 8px; padding: 9px 13px; background: var(--panel); border-bottom: 1px solid var(--line); }
.bframe__dots { display: flex; gap: 5px; flex: none; }
.bframe__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.bframe__url { flex: 1; text-align: center; font-size: .66rem; font-weight: 500; color: var(--grey-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bframe__body { position: relative; background: #fff; }

.ba { position: relative; --pos: 50%; }
.ba__stage { position: relative; height: clamp(300px, 34vw, 460px); overflow: hidden; }
.ba__layer { position: absolute; inset: 0; }
.ba__layer--after { clip-path: inset(0 0 0 var(--pos)); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--ink); transform: translateX(-1px); pointer-events: none; z-index: 4; }
.ba__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: .78rem; box-shadow: 0 3px 10px rgba(17,24,28,.3); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; }
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; cursor: ew-resize; }
.ba__range::-moz-range-thumb { width: 44px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.ba__range:focus-visible + .ba__handle .ba__knob { outline: 3px solid var(--teal); outline-offset: 3px; }
.ba__tag { position: absolute; top: 10px; z-index: 3; font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; padding: 5px 11px; border-radius: 99px; background: rgba(17,24,28,.85); color: #fff; }
.ba__tag--before { left: 10px; }
.ba__tag--after { right: 10px; background: var(--teal); }
.ba__caption { margin-top: 12px; font-size: .74rem; color: var(--grey-2); text-align: center; }

/* ── Payments split ──────────────────────────────────────── */
.pay__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 1000px) { .pay__grid { grid-template-columns: 1fr; } }
.pay__row { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.pay__row:first-child { border-top: 0; padding-top: 0; }
.pay__n { font-family: var(--pixel); font-size: .5rem; color: var(--teal); padding-top: .45em; }
.pay__t { font-size: .95rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -.01em; }
.pay__b { font-size: .85rem; color: var(--grey); line-height: 1.6; }
.note { margin-top: 20px; font-size: .78rem; color: var(--grey); line-height: 1.65; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; }
.note strong { color: var(--ink); font-weight: 600; }

/* Checkout mockup (carried) */
.checkout { background: #fff; color: #0d1117; border-radius: var(--r); border: 1px solid var(--line); padding: 24px 24px 22px; max-width: 390px; margin-inline: auto; position: relative; box-shadow: var(--shadow); }
.checkout__testmode { position: absolute; top: -11px; right: 18px; font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.checkout__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.checkout__to { font-size: .76rem; color: #6b7280; }
.checkout__amt { font-size: 1.65rem; font-weight: 700; letter-spacing: -.03em; }
.checkout__wallets { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.checkout__wallet { border-radius: 6px; padding: 10px; font-size: .74rem; font-weight: 600; display: grid; place-items: center; color: #fff; background: #000; }
.checkout__wallet--g { background: #fff; color: #3c4043; border: 1px solid #dadce0; }
.checkout__or { display: flex; align-items: center; gap: 10px; margin: 14px 0; color: #9ca3af; font-size: .68rem; }
.checkout__or::before, .checkout__or::after { content: ""; height: 1px; background: #e5e7eb; flex: 1; }
.checkout__field { margin-bottom: 10px; }
.checkout__lbl { font-size: .67rem; color: #6b7280; font-weight: 500; display: block; margin-bottom: 5px; }
.checkout__input { border: 1px solid #d7dce4; border-radius: 6px; padding: 10px 12px; font-size: .78rem; background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.checkout__input--focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,117,115,.15); }
.checkout__brands { display: flex; gap: 4px; }
.checkout__brand { width: 24px; height: 15px; border-radius: 3px; background: #eef1f6; display: grid; place-items: center; font-size: .42rem; font-weight: 700; color: #6b7280; }
.checkout__split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkout__pay { margin-top: 16px; background: var(--teal); color: #fff; border-radius: var(--rb); padding: 11px; text-align: center; font-size: .82rem; font-weight: 600; }
.checkout__secure { margin-top: 12px; font-size: .66rem; color: #6b7280; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ── Misc modules carried into the new skin ──────────────── */
.logowall__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 22px; }
.logowall__note { font-size: .72rem; color: var(--grey-2); }
.logowall__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px 18px; }
@media (max-width: 1000px) { .logowall__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px)  { .logowall__grid { grid-template-columns: repeat(3, 1fr); } }
.logowall__item { display: grid; place-items: center; text-align: center; min-height: 54px; padding: 8px 4px; color: #a6adb0; user-select: none; transition: color .2s var(--ease); }
.logowall__item:hover { color: var(--ink); }
.lw-caps { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.lw-low { font-size: 1.02rem; font-weight: 800; letter-spacing: -.03em; }
.lw-wide { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.lw-ital { font-size: .98rem; font-weight: 700; font-style: italic; }
.lw-thin { font-size: .95rem; font-weight: 400; letter-spacing: .04em; }
.lw-glyph::before { content: "● "; font-size: .6em; vertical-align: .18em; }
.lw-sq::before { content: "■ "; font-size: .55em; vertical-align: .18em; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.step__n { width: 26px; height: 26px; border-radius: 8px; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: .78rem; font-weight: 700; margin-bottom: 12px; }
.step__t { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.step__b { font-size: .83rem; color: var(--grey); line-height: 1.6; }
.step__w { margin-top: 10px; font-family: var(--pixel); font-size: .46rem; color: var(--teal-d); text-transform: uppercase; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; }
.quote__q { font-size: .92rem; font-weight: 500; line-height: 1.6; margin-bottom: 18px; }
.quote__who { margin-top: auto; border-top: 1px solid var(--line); padding-top: 12px; }
.quote__name { font-size: .86rem; font-weight: 700; }
.quote__role { font-size: .76rem; color: var(--grey-2); }
.quote__co { font-size: .78rem; font-weight: 600; margin-top: 4px; color: var(--grey); }
.trust { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 1000px) { .plans { grid-template-columns: 1fr; } }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; display: flex; flex-direction: column; }
.plan--featured { background: var(--ink); border-color: var(--ink); color: #fff; }
.plan__flag { align-self: flex-start; font-family: var(--pixel); font-size: .46rem; text-transform: uppercase; background: var(--cream); color: var(--ink); padding: 5px 10px; border-radius: 99px; margin-bottom: 14px; }
.plan__name { font-size: 1.15rem; font-weight: 700; margin-bottom: 5px; }
.plan__for { font-size: .84rem; color: var(--grey); line-height: 1.55; margin-bottom: 18px; min-height: 2.6em; }
.plan--featured .plan__for { color: rgba(255,255,255,.72); }
.plan__price { padding-bottom: 14px; margin-bottom: 12px; border-bottom: 1px solid var(--line); }
.plan--featured .plan__price { border-bottom-color: rgba(255,255,255,.2); }
.plan__price strong { display: block; font-size: 1.02rem; font-weight: 700; margin-bottom: 2px; }
.plan__price span { font-size: .75rem; color: var(--grey-2); }
.plan--featured .plan__price span { color: rgba(255,255,255,.6); }
.plan__list { display: grid; margin-bottom: 20px; }
.plan__list li { display: grid; grid-template-columns: 16px 1fr; gap: 8px; font-size: .83rem; padding: 6px 0; border-top: 1px solid var(--line); }
.plan--featured .plan__list li { border-top-color: rgba(255,255,255,.12); }
.plan__list li:first-child { border-top: 0; }
.plan__list li::before { content: "✓"; color: var(--teal); font-weight: 700; }
.plan--featured .plan__list li::before { color: var(--teal-l); }
.plan__cta { margin-top: auto; }
.plan--featured .plan__cta { background: #fff; color: var(--ink); border-color: #fff; }
.plan--featured .plan__cta:hover { background: var(--cream); border-color: var(--cream); }

.posts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .posts { grid-template-columns: 1fr; } }
.post__media { aspect-ratio: 16/10; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--teal-bg), #f4f8f7); display: grid; place-items: center; }
.post__media svg { width: 38%; color: #9fbdbb; }
.post__badge { position: absolute; top: 9px; right: 9px; font-size: .6rem; font-weight: 600; color: var(--grey); background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 99px; padding: 3px 9px; }
.post__t { font-size: .88rem; font-weight: 600; line-height: 1.45; }

.faq { max-width: 780px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 18px; cursor: pointer; list-style: none; font-size: .93rem; font-weight: 600; }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { flex: none; width: 15px; height: 15px; color: var(--teal); transition: transform .2s var(--ease); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a { padding: 0 18px 16px; font-size: .86rem; color: var(--grey); line-height: 1.65; }
.faq__a p + p { margin-top: 10px; }
@media (prefers-reduced-motion: reduce) { .faq__icon { transition: none; } }

.contact__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 4vw, 56px); }
@media (max-width: 980px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__rows { margin-top: 20px; }
.contact__row { padding: 12px 0; border-top: 1px solid var(--line); }
.contact__row:last-child { border-bottom: 1px solid var(--line); }
.contact__k { font-family: var(--pixel); font-size: .46rem; text-transform: uppercase; color: var(--grey-2); display: block; margin-bottom: 5px; }
.contact__v { font-size: .92rem; font-weight: 600; }
.contact__v a { color: var(--teal-d); text-decoration: none; }
.contact__v a:hover { text-decoration: underline; }

.form { display: grid; gap: 15px; }
.field { display: grid; gap: 6px; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 600px) { .field__row { grid-template-columns: 1fr; } }
.field label { font-size: .78rem; font-weight: 600; }
.field .req { color: var(--teal); }
.field input, .field select, .field textarea {
  font: 400 .92rem/1.5 var(--sans); color: var(--ink);
  background: #fff; border: 1px solid var(--line-2); border-radius: 8px;
  padding: 11px 13px; width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%235b6569' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 11px; padding-right: 34px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,117,115,.14); }
.field input::placeholder, .field textarea::placeholder { color: var(--grey-2); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.form__fine { font-size: .74rem; color: var(--grey-2); line-height: 1.55; }
.form__fine a { color: var(--grey); }
.form__status { font-size: .86rem; min-height: 1.4em; font-weight: 500; }
.form__status.is-ok { color: var(--ok); }
.form__status.is-err { color: var(--bad); }

/* ── Final CTA, back into the illustrated world ─────────── */
.ctaband { position: relative; color: #fff; overflow: hidden; background: linear-gradient(160deg, #1d5957, #2b7573 55%, #3d8a87); }
.ctaband__art { position: absolute; inset: 0; }
.ctaband__art svg { width: 100%; height: 100%; }
.ctaband__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(56px, 8vw, 100px); }
.ctaband__inner .lede { color: rgba(255,255,255,.9); max-width: 46ch; margin-inline: auto; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: #fff; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr) repeat(2, minmax(0, .8fr)); gap: 28px; padding-block: clamp(38px, 5vw, 60px) 26px; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { color: var(--ink); }
.footer .brand__mark .bearfill { fill: var(--teal); }
.footer .brand__mark .bearcut { fill: #fff; }
.footer__tag { margin-top: 12px; font-size: .84rem; color: var(--grey); max-width: 32ch; line-height: 1.6; }
.footer__ct { font-family: var(--pixel); font-size: .46rem; text-transform: uppercase; color: var(--grey-2); margin-bottom: 12px; }
.footer__links { display: grid; gap: 8px; }
.footer__links a { font-size: .86rem; color: var(--grey); text-decoration: none; overflow-wrap: anywhere; }
.footer__links a:hover { color: var(--ink); }
.footer__bar { border-top: 1px solid var(--line); padding-block: 14px 24px; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; font-size: .76rem; color: var(--grey-2); }
.footer__bar a { color: var(--grey-2); text-decoration: none; }
.footer__bar a:hover { color: var(--ink); }
.news__t { font-size: .95rem; font-weight: 700; margin-bottom: 5px; }
.news__b { font-size: .78rem; color: var(--grey); line-height: 1.55; max-width: 34ch; margin-bottom: 12px; }
.news__row { display: flex; gap: 8px; max-width: 340px; }
.news__row input { flex: 1; min-width: 0; font: 400 .86rem/1.4 var(--sans); color: var(--ink); background: #fff; border: 1px solid var(--line-2); border-radius: var(--rb); padding: 9px 13px; }
.news__row input:focus { outline: none; border-color: var(--teal); }
.news__status { margin-top: 8px; font-size: .76rem; min-height: 1.3em; }
.news__status.is-ok { color: var(--ok); }
.news__status.is-err { color: var(--bad); }

/* ── Reveal (JS-gated; escape hatch preserved) ───────────── */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .js .reveal.is-in { transition: none; }
}
.js.reveals-off .reveal, .js.reveals-off .reveal.is-in { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ── Prose / legal / 404 ─────────────────────────────────── */
.prose { max-width: 70ch; }
.prose h2 { font-size: 1.25rem; margin: 36px 0 10px; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1rem; margin: 20px 0 6px; }
.prose p, .prose li { color: var(--grey); font-size: .92rem; line-height: 1.7; }
.prose p + p { margin-top: 12px; }
.prose ul { margin: 12px 0; display: grid; gap: 7px; }
.prose ul li { display: grid; grid-template-columns: 15px 1fr; gap: 10px; }
.prose ul li::before { content: "-"; color: var(--teal); }
.prose a { color: var(--teal-d); }
.prose__meta { font-family: var(--pixel); font-size: .5rem; text-transform: uppercase; color: var(--grey-2); padding-bottom: 16px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.nf { min-height: 56vh; display: grid; place-content: center; text-align: center; gap: 16px; padding-block: 60px; }
.nf__code { font-family: var(--pixel); font-size: clamp(2.2rem, 8vw, 4.5rem); color: var(--teal); line-height: 1; }

/* ── Miniature site mockups (carried verbatim) ──────────── */
/* Column layout so each mock's footer pins to the bottom of the
   frame. Without it the shorter mock ends halfway down and the
   comparison shows a band of dead white instead of a page. */
.mock { position: absolute; inset: 0; overflow: hidden; padding: 18px 20px;
        display: flex; flex-direction: column; }

/* The dated one: Times, cramped, everything the same size, the
   important action buried in a wall of blue underlined links. */
.mock--old { background: #fdfdf8; color: #111; font-family: "Times New Roman", Times, serif; }
.mock--old .m-top { display: flex; justify-content: space-between; align-items: center;
                    border-bottom: 2px solid #b81b1b; padding-bottom: 7px; }
.mock--old .m-logo { font-size: 1.02rem; font-weight: 700; color: #b81b1b; letter-spacing: -.01em; }
.mock--old .m-nav { display: flex; gap: 9px; font-size: .6rem; color: #1a0dab; }
.mock--old .m-nav span { text-decoration: underline; }
.mock--old .m-hero { margin-top: 12px; display: grid; grid-template-columns: 1fr 88px; gap: 12px; }
.mock--old .m-h { font-size: .82rem; font-weight: 700; margin-bottom: 5px; }
.mock--old .m-p { font-size: .56rem; line-height: 1.45; color: #333; }
.mock--old .m-img { background: #d9d9cf; border: 1px solid #b5b5a8; display: grid; place-items: center;
                    font-size: .5rem; color: #777; min-height: 62px; }
.mock--old .m-btn { display: inline-block; margin-top: 8px; font-size: .53rem; padding: 3px 8px;
                    background: linear-gradient(#f6f6f6, #dcdcdc); border: 1px solid #999; color: #222; }
.mock--old .m-cols { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px;
                     border-top: 1px solid #ccc; padding-top: 9px; }
.mock--old .m-col h4 { font-size: .58rem; margin: 0 0 3px; color: #b81b1b; }
.mock--old .m-col p { font-size: .5rem; line-height: 1.4; color: #444; }
.mock--old .m-marquee { margin-top: 10px; background: #ffffcc; border: 1px dashed #cc0; padding: 4px 7px;
                        font-size: .52rem; color: #806a00; }

.mock--old .m-links { margin-top: 10px; border-top: 1px solid #ccc; padding-top: 8px;
                      font-size: .5rem; color: #1a0dab; line-height: 1.7; }
.mock--old .m-links span { text-decoration: underline; margin-right: 7px; }
.mock--old .m-foot { margin-top: auto; border-top: 2px solid #b81b1b; padding-top: 7px;
                     display: flex; justify-content: space-between; align-items: center;
                     font-size: .47rem; color: #666; }
.mock--old .m-counter { font-family: "Courier New", monospace; background: #000; color: #0f0;
                        padding: 2px 5px; letter-spacing: .12em; }

/* The rebuild: clear hierarchy, one obvious action, room to breathe. */
.mock--new { background: #fbfcfe; color: #0d1117; font-family: var(--sans); }
.mock--new .m-top { display: flex; justify-content: space-between; align-items: center; }
.mock--new .m-logo { font-size: .78rem; font-weight: 700; letter-spacing: -.03em; display: flex; align-items: center; gap: 6px; }
.mock--new .m-logo i { width: 15px; height: 15px; border-radius: 5px; background: var(--grad); display: block; }
.mock--new .m-nav { display: flex; gap: 12px; font-size: .55rem; color: #5b6577; font-weight: 500; align-items: center; }
.mock--new .m-cta { background: #0d1117; color: #fff; padding: 5px 11px; border-radius: 999px;
                    font-size: .53rem; font-weight: 600; }
/* Two columns on purpose. In a comparison slider the visitor only
   ever sees a vertical slice of each side, so the rebuild has to
   carry content across its full width, a hero pinned to the left
   leaves the revealed half looking like an empty white page. */
.mock--new .m-hero { margin-top: 20px; display: grid; grid-template-columns: 1.25fr .85fr; gap: 18px; align-items: start; }
.mock--new .m-h { font-size: 1.32rem; font-weight: 700; letter-spacing: -.035em; line-height: 1.1; margin-bottom: 8px; }
.mock--new .m-p { font-size: .6rem; line-height: 1.55; color: #5b6577; max-width: 32ch; }
.mock--new .m-btns { display: flex; gap: 7px; margin-top: 13px; }
.mock--new .m-b1 { background: #2563eb; color: #fff; font-size: .55rem; font-weight: 600; padding: 7px 14px; border-radius: 8px; }
.mock--new .m-b2 { border: 1px solid #d6dbe5; color: #0d1117; font-size: .55rem; font-weight: 600; padding: 7px 14px; border-radius: 8px; }
.mock--new .m-book { border: 1px solid #e6eaf1; border-radius: 10px; padding: 11px; background: #fff;
                     box-shadow: 0 4px 14px rgba(13,17,23,.07); }
.mock--new .m-book h5 { font-size: .58rem; margin: 0 0 8px; font-weight: 600; }
.mock--new .m-slot { display: flex; justify-content: space-between; align-items: center;
                     border: 1px solid #e6eaf1; border-radius: 6px; padding: 5px 8px; margin-bottom: 5px;
                     font-size: .5rem; color: #5b6577; }
.mock--new .m-slot b { color: #0d1117; font-weight: 600; }
.mock--new .m-slot--pick { border-color: #2563eb; background: #eff4ff; color: #2563eb; }
.mock--new .m-book-cta { background: #2563eb; color: #fff; border-radius: 6px; padding: 6px;
                         text-align: center; font-size: .5rem; font-weight: 600; margin-top: 7px; }

.mock--new .m-cards { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.mock--new .m-card { border: 1px solid #e6eaf1; border-radius: 9px; padding: 9px; background: #fff;
                     box-shadow: 0 1px 2px rgba(13,17,23,.04); }
.mock--new .m-card i { width: 17px; height: 17px; border-radius: 6px; background: #e8efff; display: block; margin-bottom: 6px; }
.mock--new .m-card h4 { font-size: .56rem; margin: 0 0 3px; font-weight: 600; }
.mock--new .m-card p { font-size: .48rem; color: #7b8497; line-height: 1.45; }

.mock--new .m-trust { margin-top: auto; padding-top: 12px; border-top: 1px solid #eef1f6;
                      display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mock--new .m-trust-item { display: flex; align-items: center; gap: 6px; font-size: .48rem; color: #5b6577; }
.mock--new .m-trust-item i { width: 13px; height: 13px; border-radius: 50%; background: #e8efff; flex: none; display: block; }
.mock--new .m-trust-cta { font-size: .5rem; font-weight: 600; color: #2563eb; }

/* On a phone the mock is only ~350px wide. Shrinking individual
   font sizes just makes text collide; scaling the whole thing keeps
   the layout's proportions so it still reads as a small web page,
   which is the entire point of the comparison. */
@media (max-width: 620px) {
  .mock {
    transform: scale(.62);
    transform-origin: top left;
    width: 161.3%;
    height: 161.3%;
  }
  .mock--old .m-img { display: none; }
  .mock--old .m-hero { grid-template-columns: 1fr; }
}

/* ── Hero checkout illustrations (replace the dashboard) ─── */
.ckgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 860px) { .ckgrid { grid-template-columns: 1fr; } }
.ck { box-shadow: none; }
.ck__body { padding: 22px 24px 18px; background: #fff; }

/* Shared bits */
.ck__field { margin-bottom: 12px; }
.ck__lbl { font-size: .68rem; color: #6b7280; font-weight: 500; display: block; margin-bottom: 5px; }
.ck__input {
  border: 1px solid #d7dce4; border-radius: 6px; padding: 10px 12px;
  font-size: .78rem; color: #11181c; background: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.ck__input--top { border-radius: 6px 6px 0 0; }
.ck__inputrow { display: grid; grid-template-columns: 1fr 1fr; }
.ck__input--bl { border-radius: 0 0 0 6px; border-top: 0; }
.ck__input--br { border-radius: 0 0 6px 0; border-top: 0; border-left: 0; color: #9ca3af; }
.ck__brands { display: flex; gap: 4px; }
.ck__brand { width: 24px; height: 15px; border-radius: 3px; background: #eef1f6; display: grid; place-items: center; font-size: .4rem; font-weight: 700; color: #6b7280; }
.ck__pay {
  margin-top: 14px; color: #fff; border-radius: 6px;
  padding: 11px; text-align: center; font-size: .82rem; font-weight: 600;
}
.ck__powered { margin-top: 12px; text-align: center; font-size: .64rem; color: #9ca3af; }
.ck__powered b { font-weight: 700; letter-spacing: -.02em; }

/* Stripe flavour: blurple button, wallet on top */
.ck__store { font-size: .74rem; color: #6b7280; }
.ck__amt { font-size: 1.6rem; font-weight: 700; letter-spacing: -.03em; color: #11181c; margin: 2px 0 1px; }
.ck__item { font-size: .72rem; color: #9ca3af; margin-bottom: 14px; }
.ck__applepay { background: #000; color: #fff; border-radius: 6px; padding: 10px; text-align: center; font-size: .8rem; font-weight: 600; }
.ck__or { display: flex; align-items: center; gap: 10px; margin: 13px 0; color: #9ca3af; font-size: .66rem; }
.ck__or::before, .ck__or::after { content: ""; height: 1px; background: #e5e7eb; flex: 1; }
.ck__pay--stripe { background: #635bff; }

/* Squarespace flavour: stark, square corners, uppercase black button */
.ck__body--sqsp { font-family: var(--sans); }
.ck__sq-head {
  font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em;
  color: #111; text-align: center; margin-bottom: 16px;
}
.ck__sq-item {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid #e8e8e8; margin-bottom: 10px;
}
.ck__sq-thumb {
  width: 40px; height: 40px; background:
    linear-gradient(135deg, #e9f2e9 0%, #cfe4cf 100%);
  display: block;
}
.ck__sq-itemname { font-size: .76rem; color: #111; line-height: 1.4; }
.ck__sq-itemname i { font-style: normal; color: #9a9a9a; font-size: .66rem; }
.ck__sq-price { font-size: .78rem; color: #111; }
.ck__sq-row {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: #6f6f6f; padding: 3px 0;
}
.ck__sq-row--total {
  color: #111; font-weight: 600; border-top: 1px solid #e8e8e8;
  margin-top: 7px; padding-top: 9px; margin-bottom: 12px; font-size: .78rem;
}
.ck__sq-lbl {
  font-size: .62rem; color: #6f6f6f; font-weight: 500; display: block; margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: .12em;
}
.ck__input--sq { border-radius: 0; border-color: #d0d0d0; }
.ck__pay--sqsp {
  background: #111; border-radius: 0;
  text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 600;
  padding: 13px;
}

/* ── Dark band theme: dark / light / dark / light rhythm ─── */
/* Deep teal-charcoal, harmonizing with the pixel hero rather
   than dropping to neutral black. Components used inside dark
   bands get translucent-white surfaces; the featured pricing
   plan inverts to a white card so it still reads "featured". */
.section--dark {
  background: linear-gradient(175deg, #10201e 0%, #142a27 100%);
  color: #f2f5f4;
}
.section--dark + .section--dark { border-top: 1px solid rgba(255,255,255,.08); }
.section--dark .lede { color: #a9b6b3; }
.section--dark .small { color: #a9b6b3; }
.section--dark .px { color: #93a29f; }
.section--dark .px--teal { color: #7fd0ca; }

.section--dark .btn { background: #fff; color: var(--ink); border-color: #fff; }
.section--dark .btn:hover { background: var(--teal-l); border-color: var(--teal-l); color: #fff; }
.section--dark .btn--ghost { background: transparent; color: #f2f5f4; border-color: rgba(255,255,255,.35); }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

.section--dark .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #c3cecb; }
.section--dark .chip--teal { background: rgba(127,208,202,.14); color: #9fe0da; }

.section--dark .fcard,
.section--dark .quote,
.section--dark .plan {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
}
.section--dark .fcard__b, .section--dark .quote__q { color: #c3cecb; }
.section--dark .fcard__list { border-top-color: rgba(255,255,255,.12); }
.section--dark .fcard__list li { color: #a9b6b3; border-top-color: rgba(255,255,255,.07); }
.section--dark .fcard__list li::before { color: #7fd0ca; }

.section--dark .logowall__item { color: #7f918d; }
.section--dark .logowall__item:hover { color: #fff; }
.section--dark .logowall__note { color: #7f918d; }

.section--dark .quote__who { border-top-color: rgba(255,255,255,.12); }
.section--dark .quote__role { color: #93a29f; }
.section--dark .quote__co { color: #c3cecb; }

.section--dark .plan__for { color: #a9b6b3; }
.section--dark .plan__price { border-bottom-color: rgba(255,255,255,.15); }
.section--dark .plan__price span { color: #93a29f; }
.section--dark .plan__list li { border-top-color: rgba(255,255,255,.08); }
.section--dark .plan__list li::before { color: #7fd0ca; }
.section--dark .plan__cta.btn--ghost { border-color: rgba(255,255,255,.35); color: #f2f5f4; }
/* Featured plan flips to a white card on the dark band. */
.section--dark .plan--featured { background: #fff; border-color: #fff; color: var(--ink); }
.section--dark .plan--featured .plan__for { color: var(--grey); }
.section--dark .plan--featured .plan__price { border-bottom-color: var(--line); }
.section--dark .plan--featured .plan__price span { color: var(--grey-2); }
.section--dark .plan--featured .plan__list li { border-top-color: var(--line); }
.section--dark .plan--featured .plan__list li::before { color: var(--teal); }
.section--dark .plan--featured .plan__flag { background: var(--teal); color: #fff; }
.section--dark .plan--featured .plan__cta { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--dark .plan--featured .plan__cta:hover { background: var(--teal-d); border-color: var(--teal-d); }

.section--dark .note { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: #a9b6b3; }
.section--dark .note strong { color: #f2f5f4; }

/* ── Row card: several former cards combined into one ────── */
.rowcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 6px 22px; }
.rowcard__row {
  display: grid; grid-template-columns: 190px 1fr auto; gap: 18px; align-items: center;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.rowcard__row:first-child { border-top: 0; }
.rowcard__t { font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }
.rowcard__b { font-size: .88rem; color: var(--grey); line-height: 1.55; }
.rowcard__foot {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.rowcard__foot .small { margin: 0; }
@media (max-width: 760px) {
  .rowcard__row { grid-template-columns: 1fr; gap: 4px; }
  .rowcard__row .chip { justify-self: start; }
}
.section--dark .rowcard { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--dark .rowcard__row, .section--dark .rowcard__foot { border-top-color: rgba(255,255,255,.1); }
.section--dark .rowcard__b { color: #a9b6b3; }
/* Inverted (white) row card for the dark pricing band */
.section--dark .rowcard--invert { background: #fff; border-color: #fff; color: var(--ink); }
.section--dark .rowcard--invert .rowcard__row, .section--dark .rowcard--invert .rowcard__foot { border-top-color: var(--line); }
.section--dark .rowcard--invert .rowcard__b { color: var(--grey); }
.section--dark .rowcard--invert .btn { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--dark .rowcard--invert .btn:hover { background: var(--teal-d); border-color: var(--teal-d); }

/* Simple check list (payments) */
.checks { display: grid; gap: 10px; }
.checks li { display: grid; grid-template-columns: 18px 1fr; gap: 9px; font-size: .92rem; color: var(--grey); line-height: 1.55; }
.checks li::before { content: "✓"; color: var(--teal); font-weight: 700; }
.checks li b { color: var(--ink); font-weight: 600; }

/* Single centred quote */
.quote--solo { max-width: 620px; margin-inline: auto; }

/* Inside the inverted card, dark-band text/chip colors must not
   leak onto the white surface. */
.section--dark .rowcard--invert .small { color: var(--grey); }
.section--dark .rowcard--invert .chip { background: #fff; border-color: var(--line-2); color: var(--grey); }
.section--dark .rowcard--invert .chip--teal { background: var(--teal-bg); border-color: transparent; color: var(--teal-d); }

/* ── Ryze devices restored on top of the simplified cards ── */
/* Section label above headings (their WEBSITE BUILDER / AI FOR SEO tags) */
.eyebrow { display: block; margin-bottom: 12px; }

/* "Ask anything" input row at the foot of the audit card */
.askrow { display: flex; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.askrow input {
  flex: 1; min-width: 0;
  font: 400 .92rem/1.4 var(--sans); color: var(--ink);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 8px;
  padding: 11px 14px;
}
.askrow input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,117,115,.14); }
.askrow input::placeholder { color: var(--grey-2); }
@media (max-width: 520px) { .askrow { flex-direction: column; } }

/* Dimension score tiles (their per-area 90% / 85% cards) */
.scores { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 22px; max-width: 820px; margin-inline: auto; }
@media (max-width: 980px) { .scores { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .scores { grid-template-columns: repeat(2, 1fr); } }
.score { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 12px 11px; }
.score .px { margin-bottom: 6px; display: block; font-size: .48rem; }
.score__n { font-size: 1.35rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.score__n small { font-size: .6em; color: var(--grey-2); font-weight: 600; }
.score__bar { height: 4px; border-radius: 99px; background: var(--line); margin-top: 9px; overflow: hidden; }
.score__bar i { display: block; height: 100%; background: var(--teal); border-radius: 99px; }
.score--low .score__bar i { background: #d9822b; }
.score__t { font-size: .7rem; color: var(--grey); margin-top: 7px; line-height: 1.4; }

/* Wall of Love mosaic: quotes plus real stat tiles */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 980px) { .mosaic { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mosaic { grid-template-columns: 1fr; } }
.stattile {
  border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; justify-content: center;
  background: var(--teal); color: #fff; min-height: 150px;
}
.stattile__n { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 700; letter-spacing: -.035em; line-height: 1; }
.stattile__t { font-size: .84rem; margin-top: 8px; color: rgba(255,255,255,.85); line-height: 1.45; }
.stattile--cream { background: var(--cream); color: var(--ink); }
.stattile--cream .stattile__t { color: var(--grey); }
.trust { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.section--dark .trust .chip--teal { background: rgba(127,208,202,.14); color: #9fe0da; border-color: transparent; }

/* Contact with the form alone: one column, comfortable measure */
.contact__grid--solo { grid-template-columns: minmax(0, 720px); }
/* Footer without the newsletter column */
.footer__grid { grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, .8fr)); }
