/* ─── tokens ───────────────────────────────────────────────────────────── */
:root {
  --bg:        #0a0b0e;
  --bg-2:      #11131a;
  --surface:   #14161a;
  --surface-hi:#1c1e24;
  --ink:       #f5f5f7;
  --ink-2:     #d7d8dc;
  --muted:     #8a8d96;
  --muted-2:   #5a5d66;
  --rule:      #25272f;
  --rule-hi:   #393b45;
  --accent:    #ff5722;
  --accent-hi: #ff7a4a;
  --accent-ink:#0a0b0e;
  --lime:      #c6ff00;

  --h-font: "Inter", -apple-system, "SF Pro Display", sans-serif;
  --serif:  "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --b-font: "Inter", -apple-system, "SF Pro Text", sans-serif;

  --r:    10px;
  --r-lg: 18px;
  --r-pill: 999px;

  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--b-font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* skip-link: hidden until focused by keyboard. WCAG essentials. */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: var(--r); z-index: 200;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; outline: 2px solid var(--ink); outline-offset: 2px; }
#main { display: block; }

/* accessible-hide utility — keeps content in the a11y tree, removes from view */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ─── nav ──────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(10,11,14,0);
  backdrop-filter: blur(0px);
  transition: background 220ms var(--easing), backdrop-filter 220ms var(--easing), padding 220ms var(--easing);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(10,11,14,0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--rule);
  padding: 12px 32px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.01em; }
.brand-mark {
  /* Map-pin logo on dark rounded square. Literal "get found" mark.
     Inline SVG = no extra request, crisp at any size, single line to swap later. */
  width: 28px; height: 28px;
  flex-shrink: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='7' fill='%2314161a'/><path d='M16 6 C19.3 6 22 8.7 22 12 C22 15.7 16 24 16 24 C16 24 10 15.7 10 12 C10 8.7 12.7 6 16 6 Z' fill='%23ff5722'/><circle cx='16' cy='12' r='2.6' fill='%2314161a'/></svg>")
    no-repeat center / cover;
  box-shadow: 0 4px 18px rgba(255,87,34,0.32), 0 0 0 1px rgba(255,255,255,0.04) inset;
  border-radius: 7px;
  transition: transform 200ms var(--easing), box-shadow 200ms;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); box-shadow: 0 6px 24px rgba(255,87,34,0.45); }
.brand-text { font-family: var(--h-font); font-size: 16px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 14px; color: var(--ink-2);
  transition: background 160ms, color 160ms;
}
.nav-links a:hover { background: var(--surface); color: var(--ink); }
.nav-links a.active { color: var(--ink); background: var(--surface); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-links a { position: relative; }
.nav-links a.nav-cta {
  background: var(--accent); color: var(--accent-ink); font-weight: 600;
  margin-left: 10px;
}
.nav-links a.nav-cta:hover { background: var(--accent-hi); }
.nav-links a.nav-cta.active::after { display: none; }                  /* CTA stays solid even when on its own page */

/* mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--rule-hi); border-radius: 8px;
  padding: 8px 10px; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 820px) {
  #nav { padding: 14px 18px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; top: 64px; left: 12px; right: 12px;
    flex-direction: column; align-items: stretch;
    background: rgba(10,11,14,0.95); backdrop-filter: blur(20px);
    border: 1px solid var(--rule); border-radius: var(--r-lg);
    padding: 12px; gap: 4px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 180ms var(--easing), transform 180ms var(--easing);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 16px; border-radius: var(--r); }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--accent); }
  .nav-links a.nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
}

/* ─── buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-pill);
  font: inherit; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 140ms var(--easing), background 140ms, border-color 140ms, box-shadow 200ms;
  white-space: nowrap;
}
.btn.primary { background: var(--accent); color: var(--accent-ink); }
.btn.primary:hover { background: var(--accent-hi); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(255,87,34,0.32); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--rule-hi); }
.btn.ghost:hover { background: var(--surface); border-color: var(--muted); }
.btn.big { padding: 15px 26px; font-size: 16px; }
.btn.full { width: 100%; }

/* ─── hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: grid; place-items: center; padding: 140px 32px 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.6;
  transition: transform 300ms var(--easing);
}
.orb-1 { width: 520px; height: 520px; top: -120px; left: -100px; background: radial-gradient(circle, #ff5722, transparent 70%); }
.orb-2 { width: 600px; height: 600px; bottom: -200px; right: -160px; background: radial-gradient(circle, #5a2cff, transparent 70%); opacity: 0.45; }
.orb-3 { width: 380px; height: 380px; top: 30%; right: 20%; background: radial-gradient(circle, #c6ff00, transparent 70%); opacity: 0.18; }
.grid-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner { position: relative; z-index: 1; max-width: 980px; text-align: center; }
.kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); padding: 6px 14px;
  border: 1px solid var(--rule); border-radius: var(--r-pill);
  margin-bottom: 26px;
  background: rgba(20,22,26,0.5); backdrop-filter: blur(6px);
}
.hero-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
}
.hero-h1 .line { display: block; overflow: hidden; padding: 0.05em 0; }
.hero-h1 .word {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.hero-h1 .word.accent { color: var(--accent); font-style: italic; }
.hero-lede {
  font-size: 20px; line-height: 1.55; color: var(--ink-2);
  max-width: 680px; margin: 0 auto 32px;
  opacity: 0; transform: translateY(16px);
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; opacity: 0; transform: translateY(16px); }
.hero-trust {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
  opacity: 0; transform: translateY(16px);
}
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); animation: pulse 1.8s var(--easing) infinite; }
.hero-trust strong { color: var(--ink); font-weight: 600; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  opacity: 0.5; transition: opacity 200ms; cursor: pointer;
}
.scroll-hint:hover { opacity: 1; }
.scroll-hint span {
  width: 16px; height: 16px;
  border-right: 1.5px solid var(--ink-2); border-bottom: 1.5px solid var(--ink-2);
  transform: rotate(45deg);
  animation: bounce 1.6s var(--easing) infinite;
}
.scroll-hint span:nth-child(2) { animation-delay: 0.15s; }
.scroll-hint span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ─── stats bar ────────────────────────────────────────────────────────── */
.stats { padding: 60px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--h-font); font-weight: 800;
  font-size: clamp(38px, 4.4vw, 56px); letter-spacing: -0.03em;
  color: var(--accent); line-height: 1;
}
.stat-suffix { color: var(--accent); font-weight: 700; font-size: 0.5em; margin-left: 4px; opacity: 0.85; vertical-align: 0.4em; }
.stat-num .dollar { color: var(--muted); font-size: 0.55em; font-weight: 600; vertical-align: 0.45em; margin-right: 2px; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 10px; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }

/* ─── shared section ───────────────────────────────────────────────────── */
.section-title {
  font-family: var(--h-font); font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.1;
  margin: 0 0 14px;
}
.section-sub { font-size: 18px; color: var(--muted); max-width: 680px; margin: 0 0 50px; }

.reveal { opacity: 0; transform: translateY(28px); }

/* ─── how ──────────────────────────────────────────────────────────────── */
.how { padding: 110px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 30px;
  position: relative; overflow: hidden;
  transition: transform 200ms var(--easing), border-color 200ms;
}
.how-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.how-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, transparent 70%, rgba(255,87,34,0.06));
  opacity: 0; transition: opacity 200ms;
}
.how-card:hover::after { opacity: 1; }
.how-num {
  font-family: var(--h-font); font-weight: 800; font-size: 56px;
  color: var(--accent); opacity: 0.18; letter-spacing: -0.04em;
  position: absolute; top: 16px; right: 24px;
  transition: opacity 200ms;
}
.how-card:hover .how-num { opacity: 0.4; }
.how-card h3 { font-family: var(--h-font); font-weight: 700; font-size: 22px; margin: 0 0 12px; }
.how-card p { color: var(--ink-2); margin: 0; line-height: 1.55; }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }

/* ─── demo (sticky horizontal scroll) ──────────────────────────────────── */
.demo { background: var(--bg-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.demo-intro { padding: 90px 0 50px; }

.demo-rail { position: relative; height: 700vh; }                  /* tall scroll height = horizontal travel */
.demo-track {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center;
  padding: 0 8vw;
  gap: 28px;
  will-change: transform;
}
.demo-card {
  flex: 0 0 60vw; max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid; grid-template-rows: auto auto auto 1fr; gap: 12px;
  min-height: 70vh;
}
.demo-num { font-size: 13px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; font-weight: 600; }
.demo-card h3 { font-family: var(--h-font); font-weight: 800; font-size: 32px; margin: 0; letter-spacing: -0.02em; }
.demo-desc { color: var(--ink-2); max-width: 460px; margin: 0; }
.demo-stage {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  margin-top: 14px;
  padding: 28px;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}

/* stage variants */
.stage-reveal { display: flex; flex-direction: column; gap: 12px; padding: 28px 36px; align-items: stretch; }
.r-item {
  background: var(--surface-hi); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 14px 18px; font-weight: 600;
  opacity: 0; transform: translateY(20px);
  transition: all 480ms var(--easing);
}
.demo-card.in-view .r-item { opacity: 1; transform: translateY(0); }
.demo-card.in-view .r-item:nth-child(1) { transition-delay: 0ms; }
.demo-card.in-view .r-item:nth-child(2) { transition-delay: 120ms; }
.demo-card.in-view .r-item:nth-child(3) { transition-delay: 240ms; }
.demo-card.in-view .r-item:nth-child(4) { transition-delay: 360ms; }

.stage-parallax { padding: 0; min-height: 260px; overflow: hidden; }
.p-bg, .p-mid, .p-fg { position: absolute; left: 0; right: 0; }
.p-bg {
  top: 0; height: 100%;
  background: linear-gradient(135deg, #2a1b35, #1a2530);
  animation: parallaxBg 18s ease-in-out infinite alternate;
}
.p-mid {
  top: 30%; height: 70%;
  background: radial-gradient(ellipse at center bottom, var(--accent), transparent 70%);
  opacity: 0.5;
  animation: parallaxMid 9s ease-in-out infinite alternate;
}
.p-fg {
  bottom: 24px; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 30px; color: white;
  animation: parallaxFg 6s ease-in-out infinite alternate;
}
/* Each layer moves at a different rate = parallax depth illusion */
@keyframes parallaxBg { from { transform: translateX(-3%) scale(1.06); } to { transform: translateX(3%) scale(1.06); } }
@keyframes parallaxMid { from { transform: translate(-8%, -4%); } to { transform: translate(8%, 4%); } }
@keyframes parallaxFg { from { transform: translateY(-6px); } to { transform: translateY(6px); } }

.stage-tilt { min-height: 260px; padding: 30px; }
.t-card {
  background: linear-gradient(135deg, var(--surface-hi), var(--surface));
  border: 1px solid var(--rule-hi); border-radius: var(--r);
  padding: 30px 36px; min-width: 240px; text-align: center;
  cursor: pointer; transform-style: preserve-3d;
  transition: transform 80ms var(--easing), box-shadow 200ms;
}
.t-card strong { display: block; font-size: 22px; margin-bottom: 6px; }
.t-card span { color: var(--muted); font-size: 14px; }
.t-card:hover { box-shadow: 0 22px 50px rgba(255,87,34,0.25); }

.stage-counter { gap: 56px; display: flex !important; justify-content: center; align-items: center; }
.stage-counter > div { display: flex; flex-direction: column; align-items: center; }
.stage-counter strong {
  font-family: var(--h-font); font-weight: 800; font-size: 60px; color: var(--accent);
  letter-spacing: -0.03em; line-height: 1;
}
.stage-counter span { color: var(--muted); font-size: 13px; margin-top: 6px; }

.stage-marquee { padding: 0; min-height: 100px; align-items: center; }
.marq { display: flex; gap: 36px; animation: marqMove 22s linear infinite; white-space: nowrap; }
.marq span { font-family: var(--h-font); font-weight: 700; font-size: 28px; color: var(--ink); }
.marq span:nth-child(even) { color: var(--accent); }
@keyframes marqMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.stage-mask { display: flex !important; gap: 12px; padding: 24px; justify-content: center; align-items: center; }
.m-shot {
  width: 110px; height: 160px; border-radius: var(--r);
  position: relative; overflow: hidden;
}
.m-shot::before, .m-shot::after { content: ""; position: absolute; inset: 0; }
/* image is the BASE layer (rendered below the mask) */
.m-shot::after { z-index: 1; }
.m-1::after { background: linear-gradient(160deg, #5b3a2a, #2c1f15); }
.m-2::after { background: linear-gradient(160deg, #3b3845, #181a1f); }
.m-3::after { background: linear-gradient(160deg, #2a3b30, #15181a); }
/* mask is the TOP layer (covers image, slides off on .in-view) */
.m-shot::before {
  z-index: 2;
  background: linear-gradient(135deg, var(--accent), #b03415);
  transform: translateX(0);
  transition: transform 800ms var(--easing);
}
.demo-card.in-view .m-shot::before { transform: translateX(-110%); }
.demo-card.in-view .m-shot:nth-child(2)::before { transition-delay: 150ms; }
.demo-card.in-view .m-shot:nth-child(3)::before { transition-delay: 300ms; }

.stage-cursor { min-height: 280px; cursor: none; position: relative; }
.cursor-dot {
  position: absolute; pointer-events: none;
  width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 200ms;
}
.stage-cursor:hover .cursor-dot { opacity: 1; }
.stage-cursor em { color: var(--muted); font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; pointer-events: none; }

.stage-scramble h4 {
  font-family: var(--h-font); font-weight: 800; font-size: 38px;
  letter-spacing: -0.02em; margin: 0;
  font-feature-settings: "tnum";
}

@media (max-width: 720px) {
  .demo-card { flex-basis: 84vw; }
  .demo-rail { height: 900vh; }
}

/* ─── pricing ──────────────────────────────────────────────────────────── */
.pricing { padding: 110px 0; }
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: transform 200ms var(--easing), border-color 200ms, box-shadow 240ms;
  position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,87,34,0.08), var(--surface) 40%);
  box-shadow: 0 18px 45px rgba(255,87,34,0.2);
  transform: translateY(-6px);
}
.tier-eyebrow {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px; font-weight: 600;
}
.price-card.featured .tier-eyebrow { color: var(--accent); }
.tier-price {
  font-family: var(--h-font); font-weight: 800; font-size: 56px;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 22px;
}
.tier-price .dollar { font-size: 28px; color: var(--muted); font-weight: 600; vertical-align: top; margin-right: 2px; position: relative; top: 12px; }
.tier-price .per-mo { font-size: 0.55em; color: var(--ink-2); font-weight: 500; margin-left: 4px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card li { padding: 8px 0 8px 22px; position: relative; color: var(--ink-2); border-bottom: 1px solid var(--rule); }
.price-card li:last-child { border-bottom: 0; }
.price-card li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 12px; height: 1px; background: var(--accent);
}

@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }

.retainer {
  background: var(--bg-2); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 22px 28px;
}
.retainer summary {
  cursor: pointer; font-weight: 600; color: var(--ink-2);
  list-style: none; display: flex; align-items: center; gap: 10px;
}
.retainer summary::-webkit-details-marker { display: none; }
.retainer[open] summary { margin-bottom: 18px; }
.retainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ret-card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r); padding: 18px; font-size: 14px; color: var(--ink-2); }
.ret-card strong { display: block; margin-bottom: 6px; color: var(--accent); }
@media (max-width: 720px) { .retainer-grid { grid-template-columns: 1fr; } }

/* ─── find your site ───────────────────────────────────────────────────── */
.find { padding: 110px 0; background: var(--bg-2); border-top: 1px solid var(--rule); }
.find-form {
  display: flex; gap: 10px; align-items: center;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-pill);
  padding: 8px 8px 8px 22px; margin: 0 auto; max-width: 620px;
  transition: border-color 200ms, box-shadow 200ms;
}
.find-form:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,87,34,0.12); }
.find-icon { font-size: 22px; color: var(--muted); }
.find-form input {
  flex: 1; border: 0; outline: none; background: transparent;
  font: inherit; font-size: 16px; color: var(--ink);
  padding: 12px 0;
}
.find-form input::placeholder { color: var(--muted-2); }
.find-result {
  max-width: 620px; margin: 22px auto 0;
  min-height: 30px;
  text-align: center; color: var(--ink-2);
}
.find-result .hit {
  background: var(--surface); border: 1px solid var(--accent); border-radius: var(--r);
  padding: 16px 22px; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.find-result .miss { color: var(--muted); font-style: italic; }
.find-fallback { text-align: center; color: var(--muted); margin-top: 14px; }
.find-fallback a { color: var(--accent); border-bottom: 1px dashed var(--accent); }

/* ─── request form ─────────────────────────────────────────────────────── */
.request { padding: 110px 0; }
.request-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.request-copy { position: sticky; top: 90px; }
.request-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.request-points li {
  padding-left: 24px; position: relative; color: var(--ink-2);
}
.request-points li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.request-form {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.request-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--muted); }
.request-form label.full { grid-column: 1 / -1; }
.request-form label span em { color: var(--muted-2); font-style: normal; }
.request-form input, .request-form select, .request-form textarea {
  background: var(--bg); color: var(--ink); border: 1px solid var(--rule); border-radius: var(--r);
  font: inherit; padding: 12px 14px;
  transition: border-color 160ms, box-shadow 160ms;
}
.request-form input:focus, .request-form select:focus, .request-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,87,34,0.15);
}
.request-form textarea { resize: vertical; font-family: var(--b-font); }
.btn-arrow { transition: transform 160ms var(--easing); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(3px); }
.form-note { grid-column: 1 / -1; font-size: 13px; color: var(--muted); margin: 0; text-align: center; }

@media (max-width: 880px) {
  .request-wrap { grid-template-columns: 1fr; }
  .request-copy { position: static; }
  .request-form { grid-template-columns: 1fr; }
}

/* ─── reviews ──────────────────────────────────────────────────────────── */
.reviews { padding: 110px 0; background: var(--bg-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.reviews-rail {
  position: relative; overflow: hidden;
  margin: 0 -32px;                     /* bleed to the edges */
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.review-track {
  display: flex; gap: 22px; padding: 0 32px;
  animation: reviewSlide 38s linear infinite;
  width: max-content;
}
.review-track:hover { animation-play-state: paused; }
@keyframes reviewSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * (320px + 22px) * 4)); }       /* 4 cards × (width + gap) */
}
.review-card {
  flex: 0 0 320px;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 26px; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.stars { color: var(--accent); letter-spacing: 2px; }
.review-card blockquote {
  margin: 0; font-family: var(--serif); font-style: italic; font-size: 18px;
  line-height: 1.5; color: var(--ink); flex: 1;
}
.review-card figcaption { display: flex; flex-direction: column; gap: 3px; color: var(--muted); font-size: 13px; padding-top: 14px; border-top: 1px solid var(--rule); }
.review-card figcaption strong { color: var(--ink); font-weight: 600; font-size: 14px; }
.reviews-disclosure { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 28px; }

/* ─── faq ──────────────────────────────────────────────────────────────── */
.faq { padding: 110px 0; }
.faq-list { display: grid; gap: 12px; max-width: 820px; margin-top: 20px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 22px 26px; transition: border-color 180ms;
}
.faq-item:hover { border-color: var(--rule-hi); }
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 17px;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; color: var(--accent); transition: transform 200ms;
  font-family: var(--h-font); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding-top: 12px; color: var(--ink-2); line-height: 1.6; }

/* ─── footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 64px 32px 24px;
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--bg) 0%, #050608 100%);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; max-width: 1180px; margin: 0 auto;
}
.footer-note { color: var(--muted); font-size: 14px; max-width: 320px; margin-top: 12px; }
.footer-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; font-weight: 600; }
.footer a { display: block; padding: 4px 0; color: var(--ink-2); font-size: 14px; }
.footer a:hover { color: var(--accent); }
.footer-mini { text-align: center; font-size: 12px; color: var(--muted-2); padding-top: 32px; margin-top: 40px; border-top: 1px solid var(--rule); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ─── landing "proof" panel (live demos in lieu of testimonials) ───────── */
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 32px;
}
.proof-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 240ms var(--easing), border-color 240ms, box-shadow 280ms;
}
.proof-card:hover {
  transform: translateY(-6px); border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(255,87,34,0.18);
}
.proof-swatch { aspect-ratio: 16/9; }
.proof-info { padding: 18px 22px; }
.proof-info strong {
  display: block; font-family: var(--h-font); font-weight: 700;
  font-size: 17px; margin-bottom: 4px; color: var(--ink);
}
.proof-info span { color: var(--muted); font-size: 13px; letter-spacing: 0.04em; }
.proof-note { text-align: center; color: var(--muted); margin-top: 28px; font-size: 14px; }
.proof-note a { color: var(--accent); border-bottom: 1px dashed var(--accent); padding-bottom: 1px; }
@media (max-width: 880px) { .proof-grid { grid-template-columns: 1fr; } }

/* ─── reusable section / container helpers ─────────────────────────────── */
.section-pad      { padding: 80px 0; }
.section-pad-lg   { padding: 110px 0; }
.section-pad-tight{ padding: 60px 0 80px; }
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, #050608 100%);
}
.container-narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.container-mid    { max-width: 820px; margin-left: auto; margin-right: auto; }
.text-center      { text-align: center; }

/* ─── how.html — "realistic week" timeline ──────────────────────────────── */
.week-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.week-row {
  display: grid; grid-template-columns: 100px 1fr; gap: 22px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  align-items: start;
  transition: transform 200ms var(--easing), border-color 200ms;
}
.week-row:hover { transform: translateX(4px); border-color: var(--rule-hi); }
.week-row .day {
  color: var(--accent); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.week-row .day-detail strong {
  display: block; margin-bottom: 4px;
  font-family: var(--h-font); font-size: 16px; color: var(--ink);
}
.week-row .day-detail span { color: var(--ink-2); }
@media (max-width: 640px) {
  .week-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ─── reusable note / explainer / pitch boxes ──────────────────────────── */
.note-box {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
}
.note-box h3 {
  font-family: var(--h-font); font-weight: 700;
  font-size: 18px; margin: 0 0 10px; color: var(--ink);
}
.note-box p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.note-box.accent {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-2), var(--surface));
}
.note-box.accent h3 { font-size: 22px; }
.note-box.accent p { color: var(--ink-2); font-size: 16px; margin-bottom: 22px; }
.note-box.compact { padding: 22px; }
.note-box.compact h3 { font-size: 16px; }
.note-box.compact p { font-size: 14px; }

/* empty-state placeholder card (reviews page, future "no leads yet" pages) */
.empty-state {
  padding: 40px; text-align: center;
  background: var(--bg-2);
  border: 1px dashed var(--rule-hi);
  border-radius: var(--r-lg);
}
.empty-state .empty-icon {
  font-size: 48px; margin-bottom: 14px; opacity: 0.4; line-height: 1;
}
.empty-state h2 {
  font-family: var(--h-font); font-weight: 700;
  font-size: 24px; margin: 0 0 12px;
}
.empty-state p { color: var(--muted); margin: 0; }

/* form-status: aria-live region after the submit button */
.form-status {
  grid-column: 1/-1;
  position: absolute; left: -9999px;          /* visually hidden, assistive-tech only */
}

/* policy-box: matching style for the Will / Won't lists on reviews */
.policy-box {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 24px;
}
.policy-box .policy-label {
  color: var(--accent); font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}
.policy-box ul {
  padding-left: 22px; margin: 10px 0 0; color: var(--ink-2);
}

/* ─── journey: 4-act scrollytelling section (ScrollTrigger-pinned) ────── */
/* No CSS sticky / no overflow:hidden on .journey — ScrollTrigger handles pin */
.journey {
  position: relative;
  height: 500vh;                                  /* total scroll height = sum of all acts */
  background: linear-gradient(180deg, var(--bg) 0%, #07080a 50%, var(--bg) 100%);
}
.journey-stage {
  height: 100vh;
  display: grid; place-items: center;
  overflow: hidden;                               /* clip act props that drift outside */
  position: relative;
}
.journey-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,87,34,0.10), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(90,44,255,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 600ms var(--easing);
}
.journey.in-view .journey-bg { opacity: 1; }
.act {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 80px 24px;
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition:
    opacity 600ms var(--easing),
    transform 900ms var(--easing),
    filter 600ms var(--easing);
  pointer-events: none;
  filter: blur(8px);
}
.act.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  filter: blur(0);
}

/* Big background pulse that shifts hue between acts — gives the "traveling" feel */
.journey-bg {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,87,34,0.14), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(90,44,255,0.10), transparent 70%);
  transform: scale(1);
  transition: opacity 800ms var(--easing), transform 1200ms var(--easing), filter 1000ms var(--easing);
}
.journey:has(.act-1.active) .journey-bg { transform: scale(1.0); filter: hue-rotate(0deg); }
.journey:has(.act-2.active) .journey-bg { transform: scale(1.15); filter: hue-rotate(-20deg); }
.journey:has(.act-3.active) .journey-bg { transform: scale(1.3) translateX(4%); filter: hue-rotate(8deg) brightness(1.1); }
.journey:has(.act-4.active) .journey-bg { transform: scale(1.5) translateX(-3%); filter: hue-rotate(20deg) brightness(1.2); }

/* Subtle floating motion within each active act's prop — makes it feel alive */
.act.active .act-prop {
  animation: actPropFloat 6s ease-in-out infinite alternate;
}
@keyframes actPropFloat {
  from { transform: translateY(-4px); }
  to   { transform: translateY(6px); }
}
.act-inner { max-width: 760px; text-align: center; }
.act-number {
  font-family: var(--h-font); font-weight: 800; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 22px;
}
.act h2 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 22px; color: var(--ink);
}
.act h2 em { color: var(--accent); font-style: italic; }
.act p {
  font-size: 19px; color: var(--ink-2); max-width: 540px; margin: 0 auto;
}
.act-prop {
  margin: 36px auto 0;
  max-width: 640px;
}

/* PROP: phone frame (used by acts 1, 4) */
.phone {
  width: 240px; height: 480px; margin: 0 auto;
  background: linear-gradient(180deg, #1a1c22, #0c0e12);
  border: 8px solid #1f2128; border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06) inset;
  position: relative; overflow: hidden;
}
.phone::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px; background: #050608; border-radius: 9999px;
}
.phone-screen {
  position: absolute; inset: 32px 14px 14px; border-radius: 22px; overflow: hidden;
  background: var(--bg);
}
.act-1 .phone-screen {                            /* empty browser, no website */
  background: #1c1e26;
  display: grid; place-items: center;
  color: #4a4d57; font-size: 13px;
}
.act-1 .phone-screen::before {
  content: "? . your site"; font-family: var(--h-font);
}

/* PROP: animated form (act 2) */
.act-prop .form-mini {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 24px;
  text-align: left;
  max-width: 380px; margin: 0 auto;
}
.form-mini .field {
  background: var(--bg); border: 1px solid var(--rule); border-radius: var(--r);
  padding: 11px 14px; margin-bottom: 10px;
  font-size: 14px; color: var(--muted-2);
  height: 40px; display: flex; align-items: center;
  overflow: hidden;
}
.act-2.active .field .typed {
  display: inline-block;
  color: var(--ink);
  overflow: hidden; white-space: nowrap;
  animation: typing 1.4s steps(28, end) both;
}
.act-2.active .field:nth-child(1) .typed { animation-delay: 0.2s; }
.act-2.active .field:nth-child(2) .typed { animation-delay: 1.0s; }
.act-2.active .field:nth-child(3) .typed { animation-delay: 1.7s; }
@keyframes typing { from { width: 0; } to { width: 100%; } }
.form-mini .submit {
  background: var(--accent); color: var(--accent-ink);
  border-radius: var(--r-pill);
  padding: 10px; text-align: center; font-weight: 700;
  margin-top: 6px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 400ms var(--easing) 2.4s, transform 400ms var(--easing) 2.4s;
}
.act-2.active .form-mini .submit { opacity: 1; transform: scale(1); }

/* PROP: laptop with preview sliding in (act 3) */
.laptop {
  width: 480px; max-width: 90vw; margin: 0 auto;
  position: relative;
}
.laptop-frame {
  background: #1a1c22; border-radius: 12px 12px 4px 4px;
  padding: 14px 14px 6px;
  border: 1px solid var(--rule-hi);
  position: relative;
}
.laptop-frame::after {                            /* hinge */
  content: ""; position: absolute; left: -14px; right: -14px; bottom: -6px;
  height: 8px; background: #232531; border-radius: 0 0 14px 14px;
}
.laptop-screen {
  aspect-ratio: 16/10; border-radius: 4px;
  background: var(--accent);
  overflow: hidden; position: relative;
}
.laptop-screen iframe {                           /* live preview rendering small */
  width: 1280px; height: 800px;
  border: 0; transform: scale(0.37);
  transform-origin: top left;
  pointer-events: none;
  position: absolute; inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 800ms var(--easing) 400ms;
}
.act-3.active .laptop-screen iframe { opacity: 1; }
.laptop-screen::before {                          /* curtain that slides off as the act activates */
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(120deg, var(--accent) 0%, #b03415 100%);
  transform: translateX(0);
  transition: transform 900ms var(--easing) 200ms;
}
.act-3.active .laptop-screen::before { transform: translateX(110%); }

/* PROP: map pin + notifications (act 4) */
.map-stage {
  position: relative; width: 360px; height: 280px; margin: 0 auto;
}
.map-bg {
  position: absolute; inset: 0; border-radius: var(--r-lg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.04) 50%, transparent 51%) 0 0 / 36px 36px,
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.04) 50%, transparent 51%) 0 0 / 36px 36px,
    linear-gradient(135deg, #1c1e26, #0c0e12);
  border: 1px solid var(--rule);
}
.map-pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%);
  width: 36px; height: 48px;
}
.map-pin svg { width: 100%; height: 100%; }
.act-4.active .map-pin {
  animation: pinDrop 0.6s var(--easing) both, pinPulse 1.6s var(--easing) 0.6s infinite;
}
@keyframes pinDrop {
  from { transform: translate(-50%, -240%); opacity: 0; }
  to   { transform: translate(-50%, -100%); opacity: 1; }
}
@keyframes pinPulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255,87,34,0.5)); }
  50%      { filter: drop-shadow(0 0 16px rgba(255,87,34,0.7)); }
}
.notif {
  position: absolute; padding: 10px 14px;
  background: rgba(20,22,26,0.95); border: 1px solid var(--rule-hi);
  border-radius: var(--r); font-size: 12px; color: var(--ink-2);
  backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(10px);
  transition: opacity 400ms var(--easing), transform 400ms var(--easing);
  white-space: nowrap;
}
.notif strong { color: var(--accent); }
.act-4.active .notif { opacity: 1; transform: translateY(0); }
.notif.n-1 { top: 20px;   left: -20px;  transition-delay: 0.8s; }
.notif.n-2 { top: 90px;   right: -30px; transition-delay: 1.2s; }
.notif.n-3 { bottom: 30px; left: 0;     transition-delay: 1.6s; }

/* journey progress chips (act 1 of 4 etc.) */
.journey-progress {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.journey-progress .chip {
  width: 32px; height: 4px; border-radius: 2px;
  background: var(--rule);
  transition: background 300ms var(--easing);
}
.journey-progress .chip.active { background: var(--accent); }

@media (max-width: 640px) {
  .journey { height: 580vh; }
  .act h2 { font-size: clamp(32px, 8vw, 48px); }
}

/* ─── demo page extras (niche matrix, visual families, speed) ──────────── */
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.niche-card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 200ms var(--easing), border-color 200ms;
}
.niche-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.niche-eyebrow { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.niche-card h3 { font-family: var(--h-font); font-weight: 700; font-size: 22px; margin: 0 0 12px; }
.niche-card p { color: var(--ink-2); margin: 0 0 20px; }
.niche-stack { display: flex; gap: 8px; flex-wrap: wrap; }
.niche-stack span {
  font-size: 13px; padding: 5px 12px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--rule); color: var(--ink-2);
}
@media (max-width: 880px) { .niche-grid { grid-template-columns: 1fr; } }

.family-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.family-card {
  display: block; background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 200ms var(--easing), border-color 200ms;
}
.family-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.family-swatch { aspect-ratio: 4/3; }
.family-info { padding: 16px 18px; }
.family-info strong { display: block; font-family: var(--h-font); font-weight: 700; font-size: 16px; margin-bottom: 4px; color: var(--ink); }
.family-info span { color: var(--muted); font-size: 13px; line-height: 1.4; }
@media (max-width: 980px) { .family-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .family-grid { grid-template-columns: 1fr; } }

.speed-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 10px; }
.speed-item {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 26px 28px;
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start;
}
.speed-icon {
  font-size: 28px; line-height: 1; color: var(--accent);
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--bg-2); border-radius: var(--r); border: 1px solid var(--rule);
}
.speed-item strong { grid-column: 2; font-family: var(--h-font); font-weight: 700; font-size: 18px; margin-bottom: 6px; display: block; }
.speed-item span { grid-column: 2; color: var(--ink-2); font-size: 15px; line-height: 1.55; display: block; }
.speed-item code { background: var(--bg-2); padding: 2px 6px; border-radius: 4px; font-size: 13px; color: var(--accent); }
@media (max-width: 880px) { .speed-grid { grid-template-columns: 1fr; } }

/* ─── find-your-site thumbnail grid ────────────────────────────────────── */
.thumb-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 32px;
}
@media (max-width: 980px) { .thumb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .thumb-grid { grid-template-columns: 1fr; } }

.thumb-card {
  position: relative;
  display: block;
  aspect-ratio: 16/11;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--rule);
  cursor: pointer;
  text-decoration: none;
  transition: transform 240ms var(--easing), border-color 200ms, box-shadow 240ms;
  isolation: isolate;
}
.thumb-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(255,87,34,0.18);
}
.thumb-card iframe {
  /* render the live preview at 1280×880 then scale down to fit the card */
  width: 1280px; height: 880px;
  border: 0;
  transform: scale(0.36);                  /* card targets ~460px wide × 316px tall */
  transform-origin: top left;
  pointer-events: none;
  background: white;
  will-change: transform;
}
.thumb-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
  color: white;
  pointer-events: none;
  transition: background 240ms var(--easing);
}
.thumb-card:hover .thumb-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.15) 70%);
}
.thumb-overlay strong {
  display: block; font-family: var(--h-font); font-weight: 700;
  font-size: 17px; letter-spacing: -0.01em; color: white;
  margin-bottom: 4px; transform: translateY(6px);
  transition: transform 240ms var(--easing);
}
.thumb-card:hover .thumb-overlay strong { transform: translateY(0); }
.thumb-overlay span {
  color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 240ms var(--easing), transform 240ms var(--easing);
}
.thumb-card:hover .thumb-overlay span { opacity: 1; transform: translateY(0); }
.thumb-overlay .badge {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 3px; background: var(--accent); color: var(--accent-ink);
  font-weight: 700;
}
.thumb-card::after {
  content: "↗"; position: absolute; top: 14px; right: 16px; z-index: 3;
  width: 30px; height: 30px; display: grid; place-items: center;
  background: rgba(0,0,0,0.5); color: white; border-radius: 50%;
  backdrop-filter: blur(6px);
  font-size: 13px;
  opacity: 0; transform: translateY(-4px) scale(0.85);
  transition: all 240ms var(--easing);
}
.thumb-card:hover::after { opacity: 1; transform: translateY(0) scale(1); }

.thumb-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  color: var(--muted); font-style: italic;
  background: var(--bg-2); border: 1px dashed var(--rule-hi); border-radius: var(--r-lg);
}

/* ─── inner-page header (used on every page except landing) ───────────── */
.page-hero {
  padding: 160px 0 60px;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,0.18), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .crumb { font-size: 13px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.page-hero .crumb a { color: var(--accent); }
.page-hero h1 {
  font-family: var(--h-font); font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(36px, 5.4vw, 64px); line-height: 1.05;
  margin: 0 0 18px; max-width: 880px;
}
.page-hero p.lede {
  font-size: 19px; color: var(--ink-2); max-width: 680px; margin: 0;
  line-height: 1.55;
}

/* ─── inline CTA banner at end of every inner page ──────────────────────── */
.cta-banner {
  margin: 110px 0 0; padding: 70px 0;
  background: linear-gradient(135deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--h-font); font-weight: 800; font-size: clamp(28px, 3.8vw, 42px);
  letter-spacing: -0.02em; margin: 0 0 14px;
}
.cta-banner p { color: var(--muted); margin: 0 0 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin: 0 6px 6px; }

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