/* =========================================================================
   TOY WORLD — site.css
   One complete stylesheet. Light, editorial, mobile-first design system.
   Fraunces (display) + Inter (body). Hairlines, restraint, warmth.
   ========================================================================= */

/* =========================================================================
   DESIGN TOKENS — the single source of truth for the whole theme.
   Every page is built only from these. Change a value here and it cascades
   everywhere, the way a Shopify theme's settings do. Nothing below should ever
   hard-code a colour, radius, shadow or font-size that isn't a token.
   ========================================================================= */
:root {
  /* ---- Colour ---- */
  --paper:    #FAF8F3;
  --surface:  #FFFFFF;
  --ink:      #16140F;
  --ink-soft: #5A554A;
  --line:     #E7E2D7;
  --line-2:   #D9D3C5;        /* slightly stronger hairline for inputs */
  --accent:   #1F6F6B;
  --accent-2: #E8B23A;
  --ok:       #2E7D52;
  --warn:     #B23A2E;
  --accent-ink: #15524F;      /* darker accent for hover / contrast */
  --accent-wash: color-mix(in srgb, var(--accent) 6%, var(--surface));
  --accent-2-wash: color-mix(in srgb, var(--accent-2) 11%, var(--surface));

  /* ---- Type families ---- */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* ---- Type scale (STRICT) — every size in the theme comes from this set,
     so there are never two near-identical sizes fighting each other. ---- */
  --fs-eyebrow: .74rem;   /* kickers / labels / meta caps */
  --fs-xs:      .82rem;   /* fine print, captions */
  --fs-sm:      .92rem;   /* secondary body, UI text */
  --fs-base:    1rem;     /* body (root is 17→18px) */
  --lh-body:    1.62;
  --lh-tight:   1.15;

  /* ---- Spacing — 4px base ---- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  /* ---- Layout ---- */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --measure: 64ch;

  /* ---- Radius scale (STRICT) ---- */
  --radius-sm:   10px;    /* inputs, tiles, chips, small tags */
  --radius:      16px;    /* the default card / callout / figure radius */
  --radius-lg:   22px;    /* large panels, hero figures, results band */
  --radius-pill: 999px;   /* buttons, pills, filters */

  /* ---- Borders ---- */
  --hair: 1px solid var(--line);

  /* ---- Elevation scale (STRICT) — three rungs, used consistently ---- */
  --shadow-sm: 0 1px 2px rgba(22,20,15,.05), 0 2px 6px rgba(22,20,15,.04);
  --shadow-md: 0 2px 4px rgba(22,20,15,.04), 0 12px 28px rgba(22,20,15,.07);
  --shadow-lg: 0 8px 18px rgba(22,20,15,.06), 0 28px 60px rgba(22,20,15,.10);
  --shadow-soft: var(--shadow-md);   /* legacy alias kept for older selectors */

  /* ---- Motion ---- */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .16s;
  --t-med: .26s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: var(--lh-body);
  font-size: 17px;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--accent-ink); }
ul, ol { padding: 0; list-style: none; }
::selection { background: color-mix(in srgb, var(--accent-2) 40%, transparent); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Typography (STRICT) ----------
   One rule per element so every heading, paragraph and list reads the same
   on every page. Spacing between a heading and the text under it is handled
   by .stack / .stack-sm so vertical rhythm stays uniform site-wide. */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 460;
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 6vw, 3.5rem); line-height: 1.04; font-weight: 500; }
h2 { font-size: clamp(1.65rem, 4vw, 2.45rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { max-width: var(--measure); text-wrap: pretty; }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}
.dek {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 56ch;
  text-wrap: pretty;
}
.dropcap::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: .8;
  padding: 6px 10px 0 0;
  color: var(--accent);
  font-weight: 600;
}

/* Canonical content lists — every bullet / numbered list in body copy uses
   these so they're identical wherever they appear. */
.list, .checklist { display: grid; gap: var(--s-3); max-width: var(--measure); }
.list li, .checklist li {
  position: relative;
  padding-left: 1.6em;
  color: var(--ink-soft);
  line-height: 1.5;
}
.list li strong, .checklist li strong { color: var(--ink); }
.list li::before {
  content: "";
  position: absolute;
  left: .35em; top: .62em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: .95em;
}

/* Links that sit inside body copy get a refined underline on hover. */
.muted a, .card-body a, p a:not(.btn):not(.btn-ghost) {
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}
.muted a:hover, p a:not(.btn):not(.btn-ghost):hover {
  text-decoration-color: currentColor;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(32px, 4.5vw, 60px); }
.section--tight { padding-block: clamp(22px, 3.5vw, 40px); }
.section--line { border-top: var(--hair); }
.stack > * + * { margin-top: var(--s-5); }
.stack-sm > * + * { margin-top: var(--s-3); }
.lead-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }

.eyebrow-rule {
  height: 1px; background: var(--line); border: 0; margin-block: var(--s-7);
}

/* ---------- Buttons (STRICT) ----------
   Exactly two solid buttons + one text link. .btn-primary is the single
   primary CTA style used for every "money" action; .btn-secondary is the
   quieter companion. Same height, radius, weight and motion everywhere. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 50px;
  padding: 0 var(--s-6);
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .005em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-med) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .05s; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(22,20,15,.10);
}
.btn-primary:hover {
  background: var(--accent-ink);
  color: #fff;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 32%, transparent);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--accent);
  font-weight: 600;
  padding-inline: var(--s-1);
  min-height: 40px;
}
.btn-ghost::after { content: "→"; transition: transform var(--t-fast) var(--ease); }
.btn-ghost:hover { color: var(--accent-ink); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper); /* fallback for no color-mix support */
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: var(--hair);
}
@supports (backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px)) {
  .site-header {
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    backdrop-filter: saturate(140%) blur(8px);
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 60px;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.brand:hover { color: var(--ink); }
.brand .brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 25%, transparent);
}
.nav-links { display: none; align-items: center; gap: var(--s-5); }
.nav-links a {
  color: var(--ink-soft);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent-2);
}
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 60px;
  border-bottom: var(--hair);
  margin-bottom: var(--s-6);
}
.mobile-menu-close { width: 44px; height: 44px; font-size: 1.6rem; color: var(--ink); }
.mobile-menu nav { display: flex; flex-direction: column; gap: var(--s-2); }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  padding-block: var(--s-3);
  border-bottom: var(--hair);
}
.mobile-menu nav a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: var(--s-6); }

/* ---------- Hero ----------
   Default hero is COMPACT (natural height) so interior/content pages don't
   open with a screen of dead space. Landing pages opt into the tall, centered
   treatment with .hero--tall. */
.hero {
  display: flex;
  flex-direction: column;
  padding-block: clamp(28px, 4vw, 48px);
}
.hero .kicker { margin-bottom: var(--s-4); }
.hero h1 { margin-bottom: var(--s-4); max-width: 18ch; }
.hero .dek { margin-bottom: var(--s-2); }

/* Landing heroes get a touch more breathing room than interior pages — but no
   forced full-height centering (that just manufactured dead space). */
.hero--tall {
  padding-block: clamp(32px, 4.5vw, 56px);
}

.hero-figure {
  margin-top: var(--s-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--hair);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.hero-figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

/* Stat highlight inline in hero */
.hero-stat {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  color: var(--ink);
  font-weight: 500;
}
.hero-stat .unit { font-family: var(--sans); font-size: var(--fs-sm); color: var(--ink-soft); font-weight: 500; }

/* ---------- Path cards (splitter) ---------- */
.paths { display: grid; gap: var(--s-4); }
.path-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6);
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius);
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  color: var(--ink);
}
.path-card .path-no {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent-2);
  line-height: 1;
}
.path-card h3 { font-size: 1.4rem; }
.path-card p { color: var(--ink-soft); font-size: var(--fs-sm); }
.path-card .btn-ghost { margin-top: auto; align-self: flex-start; }

/* ---------- Stat blocks ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.stat {
  padding: var(--s-5);
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius-sm);
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--ink);
  line-height: 1;
  font-weight: 500;
}
.stat .label {
  margin-top: var(--s-2);
  font-size: var(--fs-xs);
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; gap: var(--s-5); }
.grid-3 { display: grid; gap: var(--s-5); }
.card {
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius);
  padding: var(--s-6);
}
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--ink-soft); font-size: var(--fs-sm); }

/* ---------- Numbered steps ---------- */
.steps { display: grid; gap: var(--s-4); counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-top: var(--hair);
  align-items: start;
}
.step:first-child { border-top: 0; }
.step .step-no {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  width: 2.4ch;
}
.step h3 { font-size: 1.25rem; margin-bottom: var(--s-2); }
.step p { color: var(--ink-soft); }
.step .time-tag {
  display: inline-block;
  margin-top: var(--s-3);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-ink);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* ---------- Pull quote / testimonial ---------- */
.quote {
  background: var(--surface);
  border: var(--hair);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius);
  padding: var(--s-6);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.3;
  color: var(--ink);
}
.quote cite {
  display: block;
  margin-top: var(--s-4);
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  font-family: var(--sans);
}
.quote cite strong { color: var(--ink); }
.quote cite a { color: var(--accent); }

/* ---------- Founder strip (human accountability on host) ---------- */
.founder-strip {
  display: flex;
  gap: var(--s-5);
  align-items: center;
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius);
  padding: var(--s-5) var(--s-6);
}
.founder-photo {
  width: 96px; height: 96px; flex: 0 0 96px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent) 30%, var(--line));
}
.founder-quote { font-family: var(--serif); font-size: 1.05rem; line-height: 1.35; color: var(--ink); }
.founder-name { margin-top: var(--s-3); font-size: var(--fs-sm); }
.founder-name a { color: var(--accent); font-weight: 600; }
@media (max-width: 560px) {
  .founder-strip { flex-direction: column; text-align: center; }
}

/* ---------- Before / after rows ---------- */
.ba-row {
  display: grid;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-top: var(--hair);
}
.ba-row:first-of-type { border-top: 0; }
.ba-row .ba-type { font-family: var(--serif); font-size: 1.25rem; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.ba-cell .ba-k {
  font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft);
}
.ba-cell .ba-v { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-top: 4px; }
.ba-cell.after .ba-v { color: var(--accent); }

/* ---------- Range chip ---------- */
.chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: var(--hair);
  background: var(--surface);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}
.chip .chip-unit { font-family: var(--sans); font-size: var(--fs-xs); color: var(--ink-soft); }

/* ---------- Selectivity / callout ---------- */
.callout {
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
  border-radius: var(--radius);
  padding: var(--s-6);
}
.callout h3 { color: var(--accent-ink); }
.callout.guarantee {
  background: color-mix(in srgb, var(--accent-2) 12%, var(--surface));
  border-color: color-mix(in srgb, var(--accent-2) 40%, var(--line));
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius);
  padding: var(--s-6);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-4); }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.field .hint { font-size: var(--fs-xs); color: var(--ink-soft); }
.input, .select, .textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 1rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: color-mix(in srgb, var(--ink-soft) 70%, transparent); }
.input:hover, .select:hover, .textarea:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line-2)); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.textarea { resize: vertical; min-height: 110px; }
.select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23667' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.field-row { display: grid; gap: var(--s-4); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.checkbox-field {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-3); align-items: start;
  margin-bottom: var(--s-4);
}
.checkbox-field input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.checkbox-field label { font-size: var(--fs-sm); font-weight: 500; color: var(--ink-soft); }

/* Form success / hidden state */
.form-success {
  display: none;
  background: color-mix(in srgb, var(--ok) 10%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--ok) 35%, var(--line));
  border-radius: var(--radius);
  padding: var(--s-6);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--ok); }
/* Hide only the form on success — keep the success message (it lives in the
   same wrap) visible. Hiding the whole wrap would hide the message too. */
[data-form-wrap].submitted form { display: none; }

/* Inline submission error (shown when Netlify returns a non-2xx or the network
   drops, so a failed lead never masquerades as a success). */
.form-error {
  display: none;
  margin-top: var(--s-4);
  background: color-mix(in srgb, var(--accent-2) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent-2) 45%, var(--line));
  border-radius: var(--radius-sm);
  padding: var(--s-4) var(--s-5);
  font-size: var(--fs-sm);
  color: var(--ink);
}
.form-error.show { display: block; }
.form-error a.form-error-mailto { color: var(--accent); font-weight: 600; }

/* ---------- Calculator ---------- */
.calc-grid { display: grid; gap: var(--s-6); }
.calc-controls .field { margin-bottom: var(--s-5); }
.calc-result {
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius);
  padding: var(--s-6);
  position: sticky;
  top: 80px;
}
.calc-result .calc-big {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 500;
}
.calc-result .calc-sub { color: var(--ink-soft); margin-top: var(--s-2); font-size: var(--fs-sm); }
.calc-result .calc-line {
  display: flex; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-3) 0; border-top: var(--hair); font-size: var(--fs-sm);
}
.calc-result .calc-line span:last-child { font-weight: 600; }
.counter { display: flex; align-items: center; gap: var(--s-3); }
.counter button {
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1.4rem; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.counter button:hover { border-color: var(--accent); color: var(--accent); }
.counter output { font-family: var(--serif); font-size: 1.6rem; min-width: 2ch; text-align: center; }
.counter input[type="number"] {
  font-family: var(--serif); font-size: 1.6rem; width: 4ch; text-align: center;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  height: 44px; color: var(--ink); background: var(--surface);
  -moz-appearance: textfield; appearance: textfield;
}
.counter input[type="number"]::-webkit-outer-spin-button,
.counter input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-summary {
  margin-top: var(--s-4); font-size: var(--fs-sm); color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- Map ---------- */
#map {
  width: 100%;
  height: clamp(320px, 50svh, 480px);
  border-radius: var(--radius);
  border: var(--hair);
  background: var(--surface);
  z-index: 0;
}
.leaflet-container { font-family: var(--sans); }
.loc-list { display: grid; gap: var(--s-6); margin-top: var(--s-7); }
.loc-city h3 { margin-bottom: var(--s-3); padding-bottom: var(--s-2); border-bottom: var(--hair); }
.loc-item { padding: var(--s-3) 0; border-top: var(--hair); }
.loc-item:first-child { border-top: 0; }
.loc-item .loc-name { font-weight: 600; }
.loc-item .loc-addr { color: var(--ink-soft); font-size: var(--fs-sm); }
.city-filter { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.city-filter button {
  padding: 8px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  font-size: var(--fs-sm); font-weight: 500; color: var(--ink-soft);
}
.city-filter button[aria-pressed="true"] { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- 3D / model-viewer ---------- */
model-viewer {
  width: 100%;
  height: clamp(360px, 60svh, 560px);
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius);
  --poster-color: var(--surface);
}
.ar-fallback {
  display: none;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--hair);
}
.ar-fallback.show { display: block; }
.ar-fallback img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ar-note { font-size: var(--fs-sm); color: var(--ink-soft); margin-top: var(--s-3); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; }
.faq details {
  border-top: var(--hair);
  padding: var(--s-4) 0;
}
.faq details:first-child { border-top: 0; }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex; justify-content: space-between; gap: var(--s-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: var(--s-3); color: var(--ink-soft); }

/* ---------- Social / TikTok row ---------- */
.social-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
.social-tile {
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  border: var(--hair);
  background: var(--surface);
  overflow: hidden;
}
.social-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Multilingual switcher (duck) ---------- */
.lang-switch { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.lang-switch button {
  padding: 6px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  font-size: var(--fs-xs); font-weight: 600; color: var(--ink-soft);
}
.lang-switch button[aria-pressed="true"] { background: var(--accent); color: #fff; border-color: var(--accent); }
[data-lang-pane] { display: none; }
[data-lang-pane].active { display: block; }
[dir="rtl"] { text-align: right; }

/* ---------- Duck / player page ---------- */
.win-banner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-2) 22%, var(--surface)), var(--surface));
  border: var(--hair);
  border-radius: var(--radius-lg);
  padding: var(--s-7) var(--s-6);
  text-align: center;
}
.win-banner .win-emoji { font-size: 3rem; line-height: 1; }
.collect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: var(--s-4); }
.collect-slot {
  aspect-ratio: 1; border: 1.5px dashed var(--line); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  background: var(--paper); cursor: pointer; transition: all .15s ease;
}
.collect-slot.filled { border-style: solid; border-color: var(--accent-2); background: color-mix(in srgb, var(--accent-2) 12%, var(--surface)); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: var(--hair);
  background: var(--surface);
  padding-block: clamp(32px, 4.5vw, 56px);
  margin-top: 0;
}
.footer-grid { display: grid; gap: var(--s-6); }
.footer-brand .brand { margin-bottom: var(--s-3); }
.footer-brand p { color: var(--ink-soft); font-size: var(--fs-sm); max-width: 32ch; }

/* Sheff Entertainment wordmark — operating company, rebuilt in the site fonts so
   it sits cleanly on the light footer (the supplied PNG was dark-on-black). */
.sheff-mark { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 5px; text-decoration: none; margin-bottom: var(--s-3); }
.sheff-mark .sheff-bar { width: 78px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, #e0218a, #7b2ff7); }
.sheff-mark .sheff-name { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; letter-spacing: .2em; line-height: 1; color: var(--ink); padding-left: .05em; }
.sheff-mark .sheff-rule { width: 100%; height: 1px; background: var(--line); }
.sheff-mark .sheff-sub { font-family: var(--sans); font-size: .6rem; letter-spacing: .42em; text-transform: uppercase; color: var(--ink-soft); padding-left: .05em; }
.sheff-mark:hover .sheff-name { color: var(--accent-ink); }
.footer-col h4 {
  font-family: var(--sans); font-size: var(--fs-eyebrow); text-transform: uppercase;
  letter-spacing: .1em; color: var(--ink-soft); margin-bottom: var(--s-3); font-weight: 700;
}
.footer-col a { display: block; color: var(--ink); font-size: var(--fs-sm); padding-block: 5px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: var(--s-5); padding-top: var(--s-4); border-top: var(--hair);
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between;
  font-size: var(--fs-xs); color: var(--ink-soft);
}

/* ---------- 404 ---------- */
.error-wrap { min-height: 70svh; display: flex; flex-direction: column; justify-content: center; }
.error-wrap .big404 { font-family: var(--serif); font-size: clamp(4rem, 18vw, 9rem); color: var(--accent); line-height: 1; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.eyebrow-img { border-radius: var(--radius); border: var(--hair); overflow: hidden; }
.eyebrow-img img { width: 100%; object-fit: cover; }
.badge-illustrative {
  display: inline-block; font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: .08em;
  color: var(--warn); border: 1px solid color-mix(in srgb, var(--warn) 40%, var(--line));
  padding: 2px 8px; border-radius: var(--radius-pill); font-weight: 600;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 999;
  background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { left: 8px; color: var(--paper); }

:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 60%, transparent); outline-offset: 2px; border-radius: 4px; }

/* Reveal-on-scroll — subtle, Apple-style rise/fade as content scrolls in.
   Default is VISIBLE; reveal.js adds .js-reveal to <html> to opt elements into
   the hidden start state, then .in to animate them in. If JS never runs,
   content stays visible (progressive enhancement). Easing is a gentle
   decelerate curve; motion is deliberately small (a ~22px rise) so it reads as
   polish, never as an effect. Groups (data-reveal-group) cascade their children
   with a small stagger, the way Apple's product pages do. */
:root { --reveal-ease: cubic-bezier(.16, 1, .3, 1); --reveal-dur: .85s; }
.reveal { opacity: 1; transform: none; }
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--reveal-dur) var(--reveal-ease),
              transform var(--reveal-dur) var(--reveal-ease),
              filter var(--reveal-dur) var(--reveal-ease);
  will-change: opacity, transform;
}
.js-reveal .reveal.in { opacity: 1; transform: none; filter: none; }
/* Variants — opt-in for a touch more character on hero figures / feature cards */
.js-reveal .reveal--scale { transform: translateY(24px) scale(.97); transform-origin: center; }
.js-reveal .reveal--soft  { transform: translateY(16px); filter: blur(8px); }
.js-reveal .reveal--rise  { transform: translateY(40px); }
/* Once revealed, drop will-change so we don't pin layers permanently. */
.js-reveal .reveal.in { will-change: auto; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal,
  .js-reveal .reveal--scale,
  .js-reveal .reveal--soft,
  .js-reveal .reveal--rise { opacity: 1; transform: none; filter: none; transition: none; }
}

/* =========================================================================
   DESKTOP — min-width layering
   ========================================================================= */
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .social-row { grid-template-columns: repeat(4, 1fr); }
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  body { font-size: 18px; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }

  .paths { grid-template-columns: repeat(3, 1fr); }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }

  .hero--split {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-8); align-items: center;
  }
  .hero--split .hero-figure { margin-top: 0; }

  .calc-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }

  .ba-row { grid-template-columns: 220px 1fr; align-items: center; }
  .ba-row .ba-type { margin-bottom: 0; }
}

@media (min-width: 1100px) {
  .hero h1 { max-width: 18ch; }
}

/* =========================================================================
   Map pin (duck marker) — locations.js builds a divIcon with .tw-pin
   ========================================================================= */
.tw-pin {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.35));
  cursor: pointer;
}
.leaflet-container { font: inherit; }
.map-hint {
  font-size: var(--fs-xs); color: var(--ink-soft); margin-top: var(--s-2);
  display: flex; align-items: center; gap: 6px;
}

/* =========================================================================
   Mobile sticky CTA (host page) — hidden on desktop
   ========================================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: var(--s-3); align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--paper);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  border-top: var(--hair);
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}
@supports (backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px)) {
  .sticky-cta { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
}
.sticky-cta .sticky-cta-text { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.sticky-cta .btn { margin: 0; white-space: nowrap; }
body.has-sticky-cta { padding-bottom: 76px; }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
}

/* =========================================================================
   Operator economics calculator (own page) — illustrative
   ========================================================================= */
.op-calc { display: grid; gap: var(--s-5); }
.op-calc .op-controls { display: grid; gap: var(--s-4); }
.op-calc .op-count-row { display: flex; align-items: center; gap: var(--s-3); }
.op-calc .op-count-row input[type="number"] {
  width: 84px; text-align: center; font-variant-numeric: tabular-nums;
}
.op-step {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface);
  font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--ink);
}
.op-step:hover { border-color: var(--accent); }
.op-out {
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  border-radius: var(--radius); padding: var(--s-5);
  display: grid; gap: var(--s-2);
}
.op-out .op-big {
  font-family: var(--serif); font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 600; letter-spacing: -0.02em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.op-out .op-sub { color: var(--ink-soft); font-size: var(--fs-sm); }
.op-assumptions { font-size: var(--fs-xs); color: var(--ink-soft); line-height: 1.5; }

/* Income / risk disclaimer block */
.risk-note {
  background: color-mix(in srgb, var(--warn) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--warn) 35%, var(--line));
  border-radius: var(--radius); padding: var(--s-4) var(--s-5);
  font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.55;
}
.risk-note strong { color: var(--ink); }

/* Footfall sub-label inside proof "after" cells */
.ba-foot {
  font-size: var(--fs-eyebrow); letter-spacing: .02em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 4px;
}

/* Inline consent checkbox (used on /own pilot form) */
.check { display: flex; align-items: flex-start; gap: var(--s-3); cursor: pointer; }
.check input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 2px;
  accent-color: var(--accent); flex-shrink: 0;
}
.check span { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.5; }

/* Spec table (3d page) */
.spec-table { width: 100%; border-collapse: collapse; margin-top: var(--s-5); max-width: 560px; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 0; border-bottom: var(--hair); vertical-align: top; }
.spec-table th { font-weight: 600; color: var(--ink); width: 38%; padding-right: var(--s-4); }
.spec-table td { color: var(--ink-soft); }

/* =========================================================================
   "Already earning in venues you know" proof strip (spec §7.1)
   Data-driven from data/locations.json via proof-strip.js; baked names are the
   no-JS fallback. Crawlable text, optional lazy venue photo.
   ========================================================================= */
.proof-strip-list {
  display: grid; gap: var(--s-3); margin-top: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .proof-strip-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .proof-strip-list { grid-template-columns: repeat(3, 1fr); } }
.proof-venue {
  display: flex; align-items: center; gap: var(--s-3);
  background: var(--surface); border: var(--hair); border-radius: var(--radius-sm);
  padding: var(--s-4);
}
.proof-venue-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 25%, transparent);
  flex-shrink: 0;
}
.proof-venue-photo {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0; border: var(--hair);
}
.proof-venue-text { display: flex; flex-direction: column; min-width: 0; }
.proof-venue-name { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; color: var(--ink); line-height: 1.15; }
.proof-venue-meta { font-size: var(--fs-xs); color: var(--ink-soft); }
.proof-strip-line { color: var(--ink-soft); font-size: var(--fs-sm); margin-top: var(--s-4); }

/* =========================================================================
   Players' grabs social strip (spec §7.2) — only renders when grabs.json has
   consented entries; otherwise grabs.js removes it. Horizontal snap scroller.
   ========================================================================= */
.grabs-strip[hidden] { display: none; }
.grabs-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 44%;
  gap: var(--s-3); margin-top: var(--s-5);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: var(--s-2);
}
@media (min-width: 640px) { .grabs-track { grid-auto-columns: 23%; } }
.grab-tile {
  scroll-snap-align: start; border: var(--hair); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--surface);
}
.grab-tile img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.grab-handle { font-size: var(--fs-eyebrow); color: var(--ink-soft); padding: var(--s-2); }

/* =========================================================================
   Inline mini-estimate on /host (spec §7.3) — shares the TWEarnings model.
   ========================================================================= */
.mini-est { background: var(--surface); border: var(--hair); border-radius: var(--radius); padding: var(--s-6); }
.mini-est-controls { display: grid; gap: var(--s-4); }
@media (min-width: 640px) { .mini-est-controls { grid-template-columns: 1fr 1fr; } }
.mini-est-out-wrap { display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }
.mini-est-out { font-family: var(--serif); font-size: clamp(2rem, 7vw, 3rem); color: var(--accent); line-height: 1; font-weight: 500; font-variant-numeric: tabular-nums; }
.mini-est-unit { color: var(--ink-soft); font-size: var(--fs-sm); }

/* =========================================================================
   Per-location review links (§5.8) — list + map popup
   ========================================================================= */
.loc-review-inline,
.loc-review-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.loc-review-inline:hover,
.loc-review-link:hover { text-decoration: underline; }
.loc-review-link { display: inline-block; margin-top: 6px; }

/* =========================================================================
   /own — illustrative economics: keep the disclaimer visually part of the
   numbers card (spec §5.7 P2: inseparable from the figures, not a footnote).
   ========================================================================= */
.op-calc .op-assumptions {
  border-top: var(--hair);
  padding-top: var(--s-4);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}
.op-calc .op-assumptions strong { color: var(--ink); }
/* risk-note keeps its prominent warn box (legal disclaimer), now inside the
   same card as the figures so the two are visually inseparable. */

/* =========================================================================
   Utility classes — let pages drop ad-hoc inline style="" (so style-src can
   eventually tighten to 'self'). Spacing maps to the --s-* scale.
   ========================================================================= */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--s-1); }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.fs-sm { font-size: var(--fs-sm); }
.fs-xs { font-size: var(--fs-xs); }
.fs-eyebrow { font-size: var(--fs-eyebrow); }
.col-full { grid-column: 1 / -1; }
.nowrap { white-space: nowrap; }

/* =========================================================================
   Proof page — inline range bars so "food hall is strongest" lands visually.
   Pure CSS, no dependency. Width is set from a --pct custom property the
   markup/JS supplies; bars are decorative (aria-hidden) — the figures remain
   the source of truth in text beside them.
   ========================================================================= */
.range-bar {
  position: relative;
  height: 10px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--accent) 10%, var(--line));
  overflow: hidden;
  margin-top: var(--s-3);
}
.range-bar > span {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--lo, 0%);
  right: calc(100% - var(--hi, 100%));
  background: linear-gradient(90deg,
              color-mix(in srgb, var(--accent) 55%, var(--accent-2)),
              var(--accent));
  border-radius: var(--radius-pill);
}
.range-scale {
  display: flex; justify-content: space-between;
  font-size: var(--fs-eyebrow); color: var(--ink-soft);
  margin-top: 6px; letter-spacing: .02em;
}
.reviewed-line {
  font-size: var(--fs-xs); color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.reviewed-line::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok);
}

/* =========================================================================
   Polish: tighten the gap when a .section directly follows a compact hero,
   and give callouts a touch more breathing room on small screens.
   ========================================================================= */
.hero + .section--line { border-top: 0; }
@media (min-width: 900px) {
  .callout { padding: var(--s-7); }
}

/* Home hero secondary paths (player / operator) — visible without diluting
   the venue-first headline. */
.hero-subpaths {
  margin-top: var(--s-4);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-3); align-items: baseline;
  max-width: none;
}
.hero-subpaths a { font-weight: 600; }
.hero-subpaths-sep { color: var(--line); }
.hero-subpaths .subpath-strong { font-weight: 800; color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.trust-anchor {
  margin-top: var(--s-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-anchor span[aria-hidden] { color: var(--accent); margin-right: 6px; }

/* ---------- Install → play → payout timeline ---------- */
.timeline-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin: var(--s-5) 0 var(--s-6);
  counter-reset: tl;
  position: relative;
}
.timeline-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: var(--s-4);
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius-sm);
  position: relative;
}
.timeline-strip li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: calc(var(--s-3) * -0.7);
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
}
.timeline-strip .tl-dot { font-size: 1.6rem; line-height: 1; }
.timeline-strip .tl-k { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.timeline-strip .tl-v { font-size: var(--fs-xs); color: var(--ink-soft); }
@media (max-width: 560px) {
  .timeline-strip { grid-template-columns: 1fr; }
  .timeline-strip li:not(:last-child)::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: calc(var(--s-3) * -0.85); transform: translateX(-50%); }
}
@media (max-width: 560px) { .hero-subpaths-sep { display: none; } }

/* 3D preview: poster-slot CTA shown until the user taps to load the model
   (model is reveal="interaction" so the multi-MB GLB/USDZ never download for
   visitors who don't engage). */
.mv-poster-cta {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: color-mix(in srgb, var(--ink) 86%, transparent); color: var(--paper);
  padding: 12px 20px; border-radius: var(--radius-pill); font-weight: 600; font-size: var(--fs-sm);
  box-shadow: var(--shadow-soft);
}
.mv-poster-cta:hover { background: var(--ink); color: var(--paper); }

/* =========================================================================
   Polish block — host twenty-minute panel (§2C), spacing utilities (§3 A1)
   and full-width mobile CTAs (§3 A2).
   ========================================================================= */

/* Host "twenty-minute window" — center the short column, merge the two boxes */
@media (min-width: 900px) {
  .host-twenty .grid-2 { align-items: center; }   /* kills the bottom dead-space */
}
.host-do-panel .host-do-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4);
  margin-top: var(--s-5); padding-top: var(--s-5);
  border-top: var(--hair);                         /* one panel, hairline divider */
}
.host-do-panel .stat { background: none; border: 0; padding: 0; }

/* Spacing utilities — keep vertical rhythm consistent across pages */
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }

/* Hero CTA row — flex base so primary/secondary sit and wrap cleanly */
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* Full-width primary buttons on small screens: bigger taps, no ragged wrapping */
@media (max-width: 480px) {
  .hero-actions .btn, .lead-actions .btn { width: 100%; }
  .hero-actions, .lead-actions { gap: var(--s-3); }
}

/* =========================================================================
   2026-05 conversion pass — new components. All built from existing tokens
   (--accent / --accent-2 / --ink / --line / --s-*) so they sit inside the
   same editorial system. Mobile-first; desktop layering at the bottom.
   ========================================================================= */

/* ---- Big-number lockup: lead with the annual figure, monthly is secondary
   (host §5.1 — feature the annual share + upside band over the small monthly). */
.figure-lockup {
  display: grid; gap: var(--s-5);
  background: color-mix(in srgb, var(--accent-2) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent-2) 40%, var(--line));
  border-radius: var(--radius); padding: var(--s-6);
}
.figure-lockup .fig-big {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(2.6rem, 9vw, 4rem); line-height: .95; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.figure-lockup .fig-big .fig-unit { font-family: var(--sans); font-size: var(--fs-sm); font-weight: 500; color: var(--ink-soft); display: block; margin-top: var(--s-2); letter-spacing: 0; }
.figure-lockup .fig-side { display: grid; gap: var(--s-3); align-content: center; }
.figure-lockup .fig-pair { display: flex; justify-content: space-between; gap: var(--s-4); border-top: var(--hair); padding-top: var(--s-3); font-size: var(--fs-sm); }
.figure-lockup .fig-pair:first-child { border-top: 0; padding-top: 0; }
.figure-lockup .fig-pair strong { font-family: var(--serif); font-weight: 600; color: var(--accent-ink); font-variant-numeric: tabular-nums; }
.figure-lockup .fig-note { font-size: var(--fs-xs); color: var(--ink-soft); }
@media (min-width: 760px) { .figure-lockup { grid-template-columns: 1.1fr 1fr; align-items: center; } }

/* ---- Value equation (Hormozi) — Dream × Likelihood ÷ Time × Effort.
   A tidy, on-brand visual, not a gimmick: it frames why "small monthly" is
   the wrong lens (host §5.1). */
.value-eq {
  display: grid; gap: var(--s-4); align-items: stretch;
  margin-top: var(--s-5);
}
.value-eq .ve-frac { display: grid; gap: var(--s-3); }
.value-eq .ve-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.value-eq .ve-cell {
  background: var(--surface); border: var(--hair); border-radius: var(--radius-sm);
  padding: var(--s-4); text-align: center;
}
.value-eq .ve-up { border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }
.value-eq .ve-down { background: color-mix(in srgb, var(--ink) 3%, var(--surface)); }
.value-eq .ve-k { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.value-eq .ve-v { font-size: var(--fs-xs); color: var(--ink-soft); margin-top: 2px; }
.value-eq .ve-bar { height: 1px; background: var(--ink); opacity: .35; margin: var(--s-1) 0; }
.value-eq .ve-up .ve-k { color: var(--accent-ink); }
.value-eq .ve-label { font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--ink-soft); text-align: center; }

/* ---- Straight-talk / damaging-admissions block (negative-but-positive). */
.straight-talk { display: grid; gap: var(--s-3); }
.straight-talk .st-item {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-3) var(--s-4);
  padding: var(--s-4) 0; border-top: var(--hair); align-items: start;
}
.straight-talk .st-item:first-child { border-top: 0; }
.straight-talk .st-mark {
  font-family: var(--serif); font-size: 1.2rem; line-height: 1.2; color: var(--accent);
  font-weight: 700;
}
.straight-talk .st-neg { font-weight: 600; color: var(--ink); }
.straight-talk .st-pos { color: var(--ink-soft); margin-top: 2px; }

/* ---- Results band ("do epic shit / talk about it"): a bold stat strip. */
.results-band {
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg);
  padding: var(--s-7) var(--s-6);
}
.results-band .kicker { color: var(--accent-2); }
.results-band .kicker::before { background: var(--accent-2); }
.results-band h2 { color: var(--paper); }
.results-band .rb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); margin-top: var(--s-5); }
.results-band .rb-num { font-family: var(--serif); font-size: clamp(2rem, 7vw, 3rem); font-weight: 600; line-height: 1; color: var(--paper); font-variant-numeric: tabular-nums; }
.results-band .rb-label { margin-top: var(--s-2); font-size: var(--fs-xs); color: color-mix(in srgb, var(--paper) 72%, transparent); text-transform: uppercase; letter-spacing: .06em; }
.results-band p { color: color-mix(in srgb, var(--paper) 82%, transparent); }
@media (min-width: 760px) { .results-band .rb-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---- Info-pack download button (instant gratification / leave-behind). */
.pack-cta {
  display: flex; align-items: center; gap: var(--s-4);
  background: var(--surface); border: var(--hair); border-radius: var(--radius);
  padding: var(--s-5); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  color: var(--ink);
}
.pack-cta:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); color: var(--ink); }
.pack-cta .pack-icon {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.pack-cta .pack-body { min-width: 0; }
.pack-cta .pack-title { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.pack-cta .pack-sub { display: block; font-size: var(--fs-sm); color: var(--ink-soft); margin-top: 2px; }
.pack-cta .pack-go { margin-left: auto; color: var(--accent); font-weight: 700; white-space: nowrap; }

/* ---- Worked example callout (anchor the range to one real corner). */
.worked-example {
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  border-radius: var(--radius); padding: var(--s-5);
}
.worked-example .we-fig { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--accent-ink); font-variant-numeric: tabular-nums; }
.worked-example .we-sub { font-size: var(--fs-sm); color: var(--ink-soft); margin-top: var(--s-1); }

/* ---- Economics table (own §5.2 — publish the missing numbers). */
.econ-table { width: 100%; border-collapse: collapse; margin-top: var(--s-5); }
.econ-table th, .econ-table td { text-align: left; padding: 14px 0; border-bottom: var(--hair); vertical-align: top; }
.econ-table th { font-weight: 600; color: var(--ink); width: 42%; padding-right: var(--s-4); font-size: var(--fs-sm); }
.econ-table td { color: var(--ink-soft); font-size: var(--fs-sm); }
/* Earnings price list (host page) — first col venue type, second col £/month. */
.earn-table { max-width: 520px; }
.earn-table th:last-child, .earn-table td:last-child { text-align: right; width: auto; }
.earn-table td { color: var(--ink); font-size: var(--fs-base); }
.earn-table td strong { color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.earn-table thead th { color: var(--ink-soft); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; }
.econ-table td strong { color: var(--ink); }
.econ-table tr:last-child th, .econ-table tr:last-child td { border-bottom: 0; }

/* ---- Scale P&L mini-table (own §6 — the route-at-scale story). */
.pnl {
  background: var(--surface); border: var(--hair); border-radius: var(--radius);
  padding: var(--s-6); margin-top: var(--s-5);
}
.pnl .pnl-row { display: flex; justify-content: space-between; gap: var(--s-4); padding: var(--s-3) 0; border-top: var(--hair); font-size: var(--fs-sm); }
.pnl .pnl-row:first-of-type { border-top: 0; }
.pnl .pnl-row span:last-child { font-family: var(--serif); font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.pnl .pnl-row.net { border-top: 2px solid color-mix(in srgb, var(--accent) 40%, var(--line)); margin-top: var(--s-2); padding-top: var(--s-4); }
.pnl .pnl-row.net span:last-child { color: var(--accent-ink); font-size: 1.2rem; }

/* ---- Email capture (duck §5.5 — first-party opt-in). Themed like a card. */
.signup-card { border-color: color-mix(in srgb, var(--accent-2) 35%, var(--line)); background: color-mix(in srgb, var(--accent-2) 8%, var(--surface)); }
.signup-row { display: grid; gap: var(--s-3); margin-top: var(--s-4); }
.signup-row .input { background: var(--surface); }
.signup-card .social-btn { margin-top: 0; }
.signup-success { display: none; }
.signup-success.show { display: block; }
[data-form-wrap].submitted .signup-row,
[data-form-wrap].submitted .signup-submit { display: none; }

/* ---- "What we need from you" reassurance checklist (how-it-works). */
.need-list { display: grid; gap: var(--s-3); margin-top: var(--s-4); }
.need-list li { display: grid; grid-template-columns: auto 1fr; gap: var(--s-3); align-items: start; color: var(--ink-soft); }
.need-list .need-tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
  color: var(--accent-ink); display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs); font-weight: 800; margin-top: 2px;
}
.need-list li strong { color: var(--ink); }

/* ---- Footprint comparison (3d §) — a machine vs a floor tile, to scale. */
.footprint {
  display: flex; align-items: flex-end; gap: var(--s-5);
  background: var(--surface); border: var(--hair); border-radius: var(--radius);
  padding: var(--s-6); margin-top: var(--s-5); flex-wrap: wrap;
}
.footprint .fp-box { text-align: center; }
.footprint .fp-square {
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
  border: 1.5px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: var(--radius-sm); margin: 0 auto var(--s-2);
}
.footprint .fp-machine { width: 80px; height: 82px; background: color-mix(in srgb, var(--accent) 22%, var(--surface)); border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); }
.footprint .fp-tile { width: 38px; height: 38px; }
.footprint .fp-k { font-family: var(--serif); font-size: 1rem; color: var(--ink); }
.footprint .fp-v { font-size: var(--fs-xs); color: var(--ink-soft); }
.footprint .fp-note { color: var(--ink-soft); font-size: var(--fs-sm); flex: 1; min-width: 180px; }

/* ---- Dominant home path card (home §3 — make the money path visually win). */
.path-card.path-card--primary {
  grid-column: 1 / -1;
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
.path-card.path-card--primary .path-no { color: var(--accent); }
.path-card.path-card--primary h3 { font-size: 1.7rem; }
@media (min-width: 900px) {
  .paths.paths--weighted { grid-template-columns: 1fr 1fr; }
  .path-card.path-card--primary { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: var(--s-6); flex-wrap: wrap; }
  .path-card.path-card--primary .path-no { font-size: 3rem; }
  .path-card.path-card--primary h3 { flex: 1 1 auto; }
  .path-card.path-card--primary p { flex: 1 1 100%; max-width: 60ch; }
}

/* ---- Suggest-a-venue soft CTA (locations §2). */
.suggest-venue { display: grid; gap: var(--s-3); }

/* ---- Machine-ID helper (support §1). */
.id-hint { font-size: var(--fs-xs); color: var(--ink-soft); margin-top: 6px; }

/* ---- Tighten dead space: when a callout follows a callout, halve the gap;
   keep the proof "after" example tight to its quotes. (UX dead-space pass.) */
.callout + .callout { margin-top: var(--s-5); }
.section--flush { padding-block: clamp(28px, 4vw, 44px); }
.stack--tight > * + * { margin-top: var(--s-4); }
