/* ── Self-hosted variable fonts (no third-party requests) ── */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/fonts/jetbrains-mono-var.woff2') format('woff2');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   DinePlatform AI — Global Styles  (premium redesign)
   Brand: royal blue on near-black, with light contrast panels
   ============================================================ */

:root {
  /* ── Brand colours (kept) ── */
  --bg:         #08080a;
  --bg-soft:    #0e0e11;
  --card:       #121215;
  --card-hi:    #17171b;
  --border:     rgba(255,255,255,0.08);
  --border-hi:  rgba(255,255,255,0.16);
  --text:       #f6f6f7;
  --text-soft:  #a9a9b2;
  --text-mute:  #6d6d76;
  --text-faint: #4a4a52;

  --brand:      #2E5BFF;
  --brand-hi:   #6d8aff;
  --brand-deep: #1c40cc;
  --brand-soft: rgba(46,91,255,0.12);
  --brand-glow: rgba(46,91,255,0.32);
  --green:      #2dd36f;
  --green-soft: rgba(45,211,111,0.12);
  --amber:      #fbbf24;

  /* ── Light panel tokens ── */
  --paper:      #f3f3ef;
  --paper-soft: #e9e9e2;
  --ink:        #15151a;
  --ink-soft:   #4d4d57;
  --ink-mute:   #76767f;
  --paper-line: rgba(20,20,26,0.10);

  /* ── Geometry ── */
  --radius:     20px;
  --radius-lg:  28px;
  --radius-sm:  12px;
  --maxw:       1320px;

  /* ── Type ── */
  --font:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* ── Motion ── */
  --ease:  cubic-bezier(.215,.61,.355,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
  --reveal-dur: 0.9s;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01","cv01","cv11";
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--brand); color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Ambient atmosphere ─────────────────────────────────── */
.home-atmos {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(620px 460px at 78% -6%, rgba(46,91,255,0.16), transparent 70%),
    radial-gradient(560px 520px at -8% 18%, rgba(46,91,255,0.07), transparent 72%);
}

/* ============================================================
   MOTION PRIMITIVES
   ============================================================ */
/* Headline word reveal (slide-in by lines) */
.hl { display: block; }
.rw { display: inline-block; overflow: hidden; vertical-align: top; clip-path: inset(-0.1em -0.15em -0.15em -0.15em); }
.rw > i {
  display: inline-block; font-style: inherit;
  transform: translateY(112%);
  transition: transform var(--reveal-dur) var(--ease);
  transition-delay: var(--d, 0ms);
}
.title-in .rw > i { transform: translateY(0); }

/* Generic scroll reveal */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* Staggered children */
.stagger > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1){ transition-delay: .00s; }
.stagger.in > *:nth-child(2){ transition-delay: .07s; }
.stagger.in > *:nth-child(3){ transition-delay: .14s; }
.stagger.in > *:nth-child(4){ transition-delay: .21s; }
.stagger.in > *:nth-child(5){ transition-delay: .28s; }
.stagger.in > *:nth-child(6){ transition-delay: .35s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,10,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.logo {
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: #fff;
  display: flex; align-items: center; gap: 1px;
  font-variation-settings: "wght" 700;
}
.logo .plat { color: var(--brand); }
.logo .ai {
  font-family: var(--mono);
  font-size: 10px; font-weight: 500; color: var(--brand-hi);
  background: var(--brand-soft); border: 1px solid rgba(109,138,255,0.28);
  padding: 3px 7px; border-radius: 6px; margin-left: 8px; letter-spacing: 0.04em;
  position: relative; top: -1px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; color: var(--text-soft);
  transition: color .2s var(--ease-soft); position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--brand-hi); transition: width .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-toggle { display: none; color: #fff; padding: 6px; }

/* ============================================================
   BUTTONS  (Qount-style animated CTA)
   ============================================================ */
.btn-paper, .btn-line {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  font-size: 15px; font-weight: 600; font-variation-settings: "wght" 600;
  border-radius: 999px; position: relative; overflow: hidden;
  letter-spacing: -0.01em; white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  isolation: isolate;
}
.btn-paper svg, .btn-line svg { position: relative; z-index: 2; transition: transform .4s var(--ease); }

/* Primary — solid brand blue, lifts on hover */
.btn-paper {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 28px -8px var(--brand-glow);
}
.btn-paper::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: #4a72ff;
  clip-path: inset(0 0 100% 0); transition: clip-path .5s var(--ease);
}
.btn-paper > * { position: relative; z-index: 2; }
.btn-paper:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--brand-glow); }
.btn-paper:hover::before { clip-path: inset(0); }
.btn-paper:hover svg { transform: translateX(3px); }

/* Secondary — outline that fills from bottom */
.btn-line {
  color: var(--text); border: 1px solid var(--border-hi);
  background: rgba(255,255,255,0.02);
}
.btn-line::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(255,255,255,0.07);
  clip-path: inset(0 0 100% 0); transition: clip-path .5s var(--ease);
}
.btn-line > * { position: relative; z-index: 2; }
.btn-line:hover { transform: translateY(-2px); border-color: var(--border-hi); }
.btn-line:hover::before { clip-path: inset(0); }

.nav-cta {
  color: #fff !important; padding: 10px 20px; border-radius: 999px;
  font-size: 14px !important; font-weight: 600;
  background: var(--brand);
  box-shadow: 0 6px 20px -8px var(--brand-glow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px var(--brand-glow); }

/* ============================================================
   HERO
   ============================================================ */
.home-hero-wrap { position: relative; z-index: 1; }
.home-hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px;
  align-items: center; padding: clamp(24px, 3.4vw, 52px) 24px clamp(40px, 5vw, 72px);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--text-soft); text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--border);
  border-radius: 999px; background: rgba(255,255,255,0.02); margin-bottom: 26px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(45,211,111,.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45,211,111,.55); }
  70% { box-shadow: 0 0 0 9px rgba(45,211,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,211,111,0); }
}
.home-hero h1 {
  font-size: clamp(40px, 6.6vw, 78px);
  line-height: 0.98; letter-spacing: -0.035em;
  font-weight: 600; font-variation-settings: "wght" 640;
  margin-bottom: 26px;
}
.home-hero h1 .blue { color: var(--brand); }
.home-hero h1 .stroke {
  color: transparent; -webkit-text-stroke: 1.4px var(--text-soft);
}
.hero-copy .lede {
  font-size: clamp(16px, 1.5vw, 19px); color: var(--text-soft);
  max-width: 44ch; margin-bottom: 34px; line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 13.5px; color: var(--text-mute);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta .tick { color: var(--green); font-weight: 700; }

/* ── Ticket (signature) ── */
.ticket-stack { position: relative; perspective: 1200px; }
.ticket {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #fbfbf8, #f2f1ea);
  color: #1a1a1f; border-radius: 16px;
  padding: 22px 22px 16px; max-width: 380px; margin: 0 auto;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 2px 0 rgba(255,255,255,0.5) inset;
  transform: rotate(-1.4deg);
  animation: ticketFloat 7s ease-in-out infinite;
}
@keyframes ticketFloat {
  0%,100% { transform: rotate(-1.4deg) translateY(0); }
  50% { transform: rotate(-1.4deg) translateY(-10px); }
}
.ticket.behind {
  position: absolute; inset: 0; z-index: 1; transform: rotate(3deg) translateY(10px);
  background: var(--card-hi); border: 1px solid var(--border);
  animation: none; box-shadow: none; opacity: .7;
}
.ticket-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 12px; border-bottom: 1.5px dashed rgba(0,0,0,0.18);
}
.ticket-head .store { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.ticket-head .num { font-family: var(--mono); font-size: 13px; color: #6a6a6a; }
.ticket-rows { padding: 14px 0 6px; display: flex; flex-direction: column; gap: 9px; min-height: 116px; }
.ticket-row {
  display: flex; justify-content: space-between; font-family: var(--mono); font-size: 13.5px;
  animation: rowIn .4s var(--ease) both;
}
@keyframes rowIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.ticket-row .qty { color: var(--brand); font-weight: 700; margin-right: 8px; }
.ticket-row .nm { color: #2a2a2f; }
.ticket-row .pr { color: #1a1a1f; }
.ticket-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; margin-top: 4px; border-top: 1.5px dashed rgba(0,0,0,0.18);
  font-family: var(--mono); font-weight: 700; font-size: 15px;
}
.ticket-status {
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 9px; border-radius: 8px;
  background: var(--amber); color: #1a1a1f; transition: all .4s var(--ease);
}
.ticket-barcode {
  height: 38px; margin-top: 14px; border-radius: 3px;
  background: repeating-linear-gradient(90deg,#1a1a1f 0 2px,transparent 2px 4px,#1a1a1f 4px 5px,transparent 5px 9px);
  opacity: .85;
}

/* ── QR menu website (home hero signature) ── */
.qr-hero { position: relative; display: flex; justify-content: center; padding: 10px 0 28px; }
.phone {
  position: relative; z-index: 2; width: 300px; max-width: 84vw;
  background: #0c0c0f; border: 1px solid rgba(255,255,255,0.10); border-radius: 38px;
  padding: 10px; box-shadow: 0 50px 90px -34px rgba(0,0,0,0.75), 0 1px 0 rgba(255,255,255,0.08) inset;
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 6px; border-radius: 99px; background: rgba(255,255,255,0.14); z-index: 3;
  display: none;
}
.phone-shot { width: 100%; height: auto; display: block; border-radius: 30px; }
.phone-screen {
  background: #ebecda; border-radius: 30px; overflow: hidden; color: #16161b;
  display: flex; flex-direction: column;
}
.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px 3px; color: #33332b;
  font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
}
.phone-status .ps-time { font-variation-settings: "wght" 640; }
.phone-status .ps-icons { display: inline-flex; align-items: center; gap: 5px; }
.phone-status .ps-i { display: block; }
.phone-url {
  display: flex; align-items: center; gap: 8px; margin: 5px 12px 9px; padding: 8px 12px;
  background: #fff; border-radius: 10px; color: #5d5d54;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.phone-url .url-lock { flex: 0 0 auto; opacity: .65; }
.phone-url .url-text { flex: 1; text-align: center; font-family: var(--mono); font-size: 11.5px; color: #3a3a34; }
.phone-url .url-dots { display: inline-flex; gap: 2.5px; flex: 0 0 auto; }
.phone-url .url-dots i { width: 3px; height: 3px; border-radius: 50%; background: #b7b7ac; }
.phone-shot { width: 100%; height: auto; display: block; }
.phone-home {
  display: flex; justify-content: center; align-items: center; padding: 8px 0 9px; background: #ebecda;
}
.phone-home::after { content: ""; width: 116px; height: 5px; border-radius: 99px; background: #33332b; opacity: .55; }
.site-bar {
  display: flex; align-items: center; gap: 7px; padding: 18px 16px 9px;
  font-family: var(--mono); font-size: 10.5px; color: #8a8a90;
  background: #f0f0ee; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-bar .lock { width: 9px; height: 9px; border-radius: 2px; border: 1.5px solid #b6b6bb; flex: 0 0 auto; }
.site-bar .url { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.site-hero { padding: 18px 16px 14px; text-align: center; background: linear-gradient(180deg, rgba(46,91,255,0.10), #fbfbfa); }
.site-logo {
  width: 46px; height: 46px; margin: 0 auto 10px; border-radius: 13px;
  background: var(--brand); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  box-shadow: 0 8px 20px -6px var(--brand-glow);
}
.site-name { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.site-tag { font-size: 10.5px; color: #6a6a72; margin-top: 5px; display: inline-flex; align-items: center; gap: 6px; }
.open-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.site-cats { display: flex; gap: 7px; padding: 12px 16px 6px; overflow: hidden; }
.site-cats span {
  font-size: 11px; font-weight: 600; color: #6a6a72; padding: 6px 12px;
  border-radius: 99px; background: #efefec; white-space: nowrap;
}
.site-cats .active { background: var(--brand); color: #fff; }
.site-menu { padding: 8px 12px; display: flex; flex-direction: column; gap: 6px; }
.menu-item { display: flex; align-items: center; gap: 11px; padding: 9px; border-radius: 12px; background: #fff; border: 1px solid rgba(0,0,0,0.05); }
.mi-thumb { width: 38px; height: 38px; border-radius: 9px; flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(46,91,255,0.18), rgba(46,91,255,0.05)); }
.mi-info { flex: 1; min-width: 0; }
.mi-name { font-size: 12.5px; font-weight: 600; letter-spacing: -0.01em; }
.mi-desc { font-size: 10.5px; color: #8a8a90; margin-top: 2px; }
.mi-right { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.mi-price { font-family: var(--mono); font-size: 12px; font-weight: 600; }
.mi-add { width: 22px; height: 22px; border-radius: 7px; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 15px; line-height: 1; font-weight: 500; }
.site-cart {
  margin: 8px 12px 14px; padding: 12px 16px; border-radius: 12px;
  background: var(--brand); color: #fff; font-size: 12.5px; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 10px 24px -10px var(--brand-glow);
}
.site-cart .cart-total { font-family: var(--mono); }

/* QR badge overlapping the phone */
.qr-badge {
  position: absolute; left: max(8px, calc(50% - 210px)); bottom: 18px; z-index: 4;
  background: #fff; border-radius: 18px; padding: 14px; width: 132px;
  box-shadow: 0 26px 50px -18px rgba(0,0,0,0.6); transform: rotate(-5deg);
  animation: qrFloat 7s ease-in-out infinite; animation-delay: .4s;
}
@keyframes qrFloat { 0%,100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(-8px); } }
.qr-svg { width: 100%; height: auto; display: block; }
.qr-svg rect { fill: #0d0d11; }
.qr-label {
  margin-top: 10px; text-align: center; font-family: var(--mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: #16161b;
}
@media (max-width: 960px) {
  .qr-hero { padding-top: 0; }
  .qr-badge { left: max(8px, calc(50% - 200px)); }
}
@media (max-width: 420px) {
  .qr-badge { width: 108px; left: 0; bottom: 8px; }
}


/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  position: relative; z-index: 1; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); background: var(--bg-soft);
}
.stat-strip .container {
  display: grid; grid-template-columns: repeat(4,1fr);
  padding-top: 0; padding-bottom: 0;
}
.stat-cell {
  padding: 38px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .big {
  font-size: clamp(32px, 3.6vw, 46px); font-weight: 600;
  font-variation-settings: "wght" 640; letter-spacing: -0.03em; line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 1px;
}
.stat-cell .big .unit { color: var(--brand-hi); font-size: 0.62em; }
.stat-cell .lbl {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.02em;
  color: var(--text-mute); text-transform: uppercase; margin-top: 12px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.home-section { position: relative; z-index: 1; padding: clamp(64px, 9vw, 120px) 0; }
.home-section.tight { padding-top: clamp(40px, 5vw, 64px); }

.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--brand-hi); margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 9px;
}
.sec-eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--brand-hi); opacity: .6;
}
.sec-head.center .sec-eyebrow::before { display: none; }
.sec-head h2 {
  font-size: clamp(28px, 4vw, 46px); line-height: 1.04; letter-spacing: -0.03em;
  font-weight: 600; font-variation-settings: "wght" 620; margin-bottom: 18px;
}
.sec-head p { font-size: clamp(15px,1.4vw,18px); color: var(--text-soft); line-height: 1.6; }

/* ── Stations (feature grid) ── */
.stations { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.station {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.station::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 220px at var(--mx,80%) -10%, rgba(109,138,255,0.10), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.station:hover { transform: translateY(-4px); border-color: var(--border-hi); background: var(--card-hi); }
.station:hover::after { opacity: 1; }
.station.span-4 { grid-column: span 4; }
.station.span-8 { grid-column: span 8; }
.station .idx {
  font-family: var(--mono); font-size: 12px; color: var(--text-faint);
  position: absolute; top: 24px; right: 26px; letter-spacing: 0.05em;
}
.station .ic {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 20px;
  display: grid; place-items: center;
  background: var(--brand-soft); border: 1px solid rgba(109,138,255,0.22);
}
.station .ic svg { width: 21px; height: 21px; stroke: var(--brand-hi); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.station .ic.amber { background: rgba(251,191,36,0.12); border-color: rgba(251,191,36,0.25); }
.station .ic.amber svg { stroke: var(--amber); }
.station h3 { font-size: 18px; letter-spacing: -0.01em; margin-bottom: 9px; font-weight: 600; font-variation-settings: "wght" 600; }
.station p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; }
.station.amber { background: linear-gradient(180deg, rgba(251,191,36,0.05), var(--card)); }

/* feature-wide split layout */
.feature-wide { display: flex; gap: 28px; align-items: center; }
.feature-wide > div:first-child { flex: 1; }
.mini-phone {
  flex: 0 0 150px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 18px; padding: 12px; align-self: stretch;
  display: flex; flex-direction: column; gap: 10px;
}
.mp-bar { height: 5px; }
.mp-bar span { display: block; width: 40%; height: 5px; border-radius: 3px; background: var(--border-hi); }
.mp-body { display: flex; flex-direction: column; gap: 8px; }
.mp-item { display: flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 8px; }
.mp-item .dot { width: 14px; height: 14px; border-radius: 4px; background: var(--brand-soft); flex: 0 0 auto; }
.mp-item .ln { flex: 1; height: 5px; border-radius: 3px; background: var(--border-hi); }
.mp-item .mp-add { width: 14px; height: 14px; border-radius: 4px; background: var(--brand); flex: 0 0 auto; position: relative; }
.mp-item .mp-add::before, .mp-item .mp-add::after { content:""; position:absolute; inset:0; margin:auto; background:#fff; }
.mp-item .mp-add::before { width: 7px; height: 1.5px; }
.mp-item .mp-add::after { width: 1.5px; height: 7px; }

/* ── Flow steps ── */
.flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.flow-step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; position: relative;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.flow-step:hover { transform: translateY(-4px); border-color: var(--border-hi); }
.flow-step .stamp {
  font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--brand-hi);
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid rgba(109,138,255,0.3); background: var(--brand-soft); margin-bottom: 22px;
}
.flow-step h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; font-weight: 600; }
.flow-step p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; margin-bottom: 18px; }
.flow-step .meta-line { font-family: var(--mono); font-size: 12px; color: var(--text-mute); padding-top: 14px; border-top: 1px solid var(--border); }

/* ============================================================
   LIGHT PANEL — Marketplace vs direct (ledger)
   ============================================================ */
.ledger {
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius-lg); padding: 12px;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6);
  overflow: hidden;
}
.ledger-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
.ledger-row.head {
  padding: 18px 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--ink-mute);
}
.ledger-row.head .hl { color: var(--brand-deep); font-weight: 700; }
.ledger-row.head .col-market { opacity: .8; }
.ledger-cell { padding: 18px 22px; font-size: 15px; border-top: 1px solid var(--paper-line); display: flex; align-items: center; }
.ledger-cell.label { color: var(--ink-soft); font-weight: 500; }
.ledger-cell.market { color: var(--ink-soft); }
.ledger-cell.dine { color: var(--ink); font-weight: 600; }
.ledger-row:not(.head) .ledger-cell.dine {
  background: linear-gradient(180deg, rgba(46,91,255,0.07), rgba(46,91,255,0.04));
  box-shadow: inset 1px 0 0 rgba(46,91,255,0.15);
}
.ledger-row:last-child .ledger-cell:last-child { border-bottom-right-radius: 18px; }

/* ── Quote band ── */
.quote-band { position: relative; z-index: 1; padding: clamp(60px,8vw,100px) 0; text-align: center; }
.quote-band blockquote {
  font-size: clamp(24px, 3.4vw, 40px); line-height: 1.2; letter-spacing: -0.025em;
  font-weight: 600; font-variation-settings: "wght" 560; max-width: 16ch; margin: 0 auto;
}
.quote-band blockquote .hl { color: var(--brand-hi); display: inline; }
.quote-band .cite { margin-top: 26px; font-family: var(--mono); font-size: 13px; color: var(--text-mute); letter-spacing: 0.02em; }

/* ============================================================
   PRICING
   ============================================================ */
.region-select {
  font-family: var(--font); font-size: 13px; color: var(--text); font-weight: 500;
  background: var(--card); border: 1px solid var(--border-hi); border-radius: 8px;
  padding: 8px 12px; cursor: pointer; transition: border-color .2s var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a9a9b2' stroke-width='2.4' 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 11px center;
  -webkit-appearance: none; appearance: none; padding-right: 32px;
}
.region-select:hover { border-color: var(--brand-hi); }
.region-select:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Region picker in the footer brand column */
.footer-region { margin-top: 22px; max-width: 240px; }
.footer-region label {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 9px;
}
.footer-region .region-select { width: 100%; }

/* Compact inline variant for slim footers (legal · blog) */
.footer-region--inline {
  margin-top: 0; max-width: none; display: inline-flex; align-items: center; gap: 10px;
}
.footer-region--inline label { margin-bottom: 0; }
.footer-region--inline .region-select { width: auto; }

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; max-width: 1140px; margin: 0 auto; align-items: start; }
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; position: relative;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-hi); }
.price-card.pro {
  border-color: rgba(109,138,255,0.4);
  background: linear-gradient(180deg, rgba(46,91,255,0.10), var(--card) 42%);
  box-shadow: 0 30px 70px -40px var(--brand-glow);
}
.price-card .flag {
  position: absolute; top: 20px; right: 22px; font-family: var(--mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em; color: #fff;
  background: var(--brand); padding: 5px 11px; border-radius: 999px;
}
.price-card .tier { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 14px; }
.price-card .amount { font-size: 46px; font-weight: 600; font-variation-settings: "wght" 640; letter-spacing: -0.03em; line-height: 1; }
.price-card .amount .per { font-size: 16px; font-weight: 500; color: var(--text-mute); letter-spacing: 0; }
.price-card .sub { font-size: 14.5px; color: var(--text-soft); margin: 14px 0 24px; line-height: 1.55; min-height: 44px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.price-card li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text); }
.price-card li svg { width: 18px; height: 18px; flex: 0 0 auto; stroke: var(--brand-hi); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.price-card .btn-line, .price-card .btn-paper { width: 100%; justify-content: center; }
.vat-callout {
  display: none; margin-top: 18px; padding: 14px 16px; border-radius: 12px;
  background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.22);
  font-size: 13px; color: var(--text-soft); line-height: 1.5;
}
.vat-callout.show { display: block; }
.stripe-note { text-align: center; font-size: 13px; color: var(--text-mute); margin-top: 28px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-size: 17px; font-weight: 600; text-align: left; color: var(--text);
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--brand-hi); }
.faq-q svg { width: 20px; height: 20px; flex: 0 0 auto; stroke: var(--text-mute); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a { font-size: 15px; color: var(--text-soft); line-height: 1.65; }
.faq-item.open .faq-a { padding: 0 4px 26px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.home-cta { position: relative; z-index: 1; padding: 0 0 clamp(70px,9vw,120px); }
.home-cta-inner {
  background: linear-gradient(150deg, var(--brand-deep), var(--brand) 55%, #5b78ff);
  border-radius: var(--radius-lg); padding: clamp(44px,6vw,76px) 32px; text-align: center;
  position: relative; overflow: hidden;
}
.home-cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% -20%, rgba(255,255,255,0.18), transparent 60%);
}
.home-cta-inner > * { position: relative; z-index: 1; }
.home-cta-inner h2 { font-size: clamp(26px,3.6vw,42px); letter-spacing: -0.03em; line-height: 1.05; font-weight: 600; font-variation-settings: "wght" 620; margin-bottom: 16px; color: #fff; }
.home-cta-inner p { font-size: clamp(15px,1.5vw,18px); color: rgba(255,255,255,0.85); max-width: 46ch; margin: 0 auto 30px; }
.home-cta-inner .btn-paper { background: #fff; color: var(--brand-deep); box-shadow: 0 14px 40px -12px rgba(0,0,0,0.4); }
.home-cta-inner .btn-paper::before { background: #eef1ff; }
.home-cta-inner .btn-paper svg { stroke: var(--brand-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: clamp(54px,7vw,80px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { font-size: 14.5px; color: var(--text-soft); max-width: 34ch; margin-top: 16px; line-height: 1.6; }
.footer-col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--text-soft); margin-bottom: 11px; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-mute);
}
.footer-bottom span:last-child { max-width: 52ch; text-align: right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .home-hero { grid-template-columns: 1fr; gap: 48px; }
  .ticket-stack { max-width: 400px; margin: 0 auto; }
  .stations { grid-template-columns: repeat(8,1fr); }
  .station.span-8 { grid-column: span 8; }
  .station.span-4 { grid-column: span 4; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(8,8,10,0.96); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border); padding: 12px 24px 22px;
    transform: translateY(-130%); transition: transform .4s var(--ease); align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 14px; }
  .nav-toggle { display: block; }
  .stat-strip .container { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stations { grid-template-columns: repeat(4,1fr); }
  .station.span-8, .station.span-4 { grid-column: span 4; }
  .feature-wide { flex-direction: column; align-items: stretch; }
  .mini-phone { flex-basis: auto; }
  .flow { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; }
  .ledger-row { grid-template-columns: 1.3fr 0.85fr 0.85fr; }
  .ledger-row.head, .ledger-cell { padding: 14px 14px; font-size: 13.5px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
}
@media (max-width: 440px) {
  .stations { grid-template-columns: 1fr; }
  .station.span-8, .station.span-4 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .rw > i { transform: none !important; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   INNER PAGES  (about · restaurants · takeaways · contact ·
   ai-menu-builder · privacy · terms · blog · blog articles)
   Rebuilt in the premium system with the new brand blue.
   ============================================================ */

/* ── Decorative ambient glows (non-home pages) ── */
.blob { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(8px); }
.blob-a { top: -160px; right: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(46,91,255,0.16) 0%, transparent 70%); }
.blob-b { bottom: -200px; left: -140px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,91,255,0.07) 0%, transparent 72%); }
body.home .blob { display: none; }

/* ── Generic section (alias of home-section spacing) ── */
.section { position: relative; z-index: 1; padding: clamp(48px,7vw,96px) 0; }

/* ── Sub-page marketing hero ── */
.page-hero { position: relative; z-index: 1; padding: clamp(64px,9vw,104px) 0 clamp(20px,3vw,32px); }
.page-hero-h1 {
  font-size: clamp(34px, 5.4vw, 62px); line-height: 1.0; letter-spacing: -0.035em;
  font-weight: 600; font-variation-settings: "wght" 640; color: var(--text);
  margin: 14px 0 20px; max-width: 16ch;
}
.page-hero-lede {
  font-size: clamp(16px, 1.5vw, 19px); color: var(--text-soft);
  max-width: 60ch; line-height: 1.6;
}

/* ── Long-form prose (privacy · terms · about body) ── */
.home-prose { color: var(--text-soft); font-size: 16.5px; line-height: 1.78; }
.home-prose h2 {
  font-size: clamp(22px,2.4vw,28px); letter-spacing: -0.02em; color: var(--text);
  font-weight: 600; font-variation-settings: "wght" 620; margin: 40px 0 14px;
}
.home-prose h3 { font-size: 19px; color: var(--text); font-weight: 600; margin: 28px 0 10px; }
.home-prose p { margin-bottom: 18px; }
.home-prose ul, .home-prose ol { margin: 0 0 18px 22px; }
.home-prose li { margin-bottom: 9px; }
.home-prose strong { color: var(--text); font-weight: 600; }
.home-prose a { color: var(--brand-hi); text-decoration: underline; text-underline-offset: 3px; }

/* ── Article (blog posts share .article + .article-body) ── */
.article { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: clamp(48px,7vw,72px) 24px clamp(60px,8vw,90px); }
.article .back {
  font-family: var(--mono); font-size: 13px; color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 30px;
  transition: color .2s var(--ease);
}
.article .back:hover { color: var(--brand-hi); }
.article .tag {
  font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--brand-hi);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.article h1 {
  font-size: clamp(30px, 4.6vw, 48px); font-weight: 600; font-variation-settings: "wght" 640;
  letter-spacing: -0.03em; line-height: 1.08; margin: 14px 0 18px; color: var(--text);
}
.article .meta {
  font-family: var(--mono); font-size: 13px; color: var(--text-mute);
  margin-bottom: 38px; padding-bottom: 26px; border-bottom: 1px solid var(--border);
}
.article-body { font-size: 17px; line-height: 1.8; color: var(--text-soft); }
.article-body h2 {
  font-size: clamp(22px,2.6vw,28px); font-weight: 600; font-variation-settings: "wght" 620;
  color: var(--text); letter-spacing: -0.02em; margin: 42px 0 16px;
}
.article-body h3 { font-size: 20px; font-weight: 600; color: var(--text); margin: 30px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--brand-hi); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  border-left: 2px solid var(--brand); padding: 6px 0 6px 22px; margin: 28px 0;
  color: var(--text); font-size: 19px; line-height: 1.55; font-style: normal;
}
.article-cta {
  margin-top: 52px; padding: 36px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(46,91,255,0.10), var(--card) 60%);
  border: 1px solid rgba(46,91,255,0.24); text-align: center;
}
.article-cta h3 { font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.article-cta p { font-size: 15px; color: var(--text-soft); margin-bottom: 22px; }
.article-cta .btn-paper, .article-cta .btn-primary { margin: 0 auto; }

/* ── Blog index ── */
.blog-hero { padding: clamp(56px,8vw,88px) 0 clamp(28px,4vw,44px); text-align: center; position: relative; z-index: 1; }
.blog-hero h1 {
  font-size: clamp(34px, 5.2vw, 56px); font-weight: 600; font-variation-settings: "wght" 640;
  letter-spacing: -0.035em; line-height: 1.02; margin-bottom: 16px;
}
.blog-hero p { font-size: clamp(16px,1.5vw,18px); color: var(--text-soft); max-width: 56ch; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.blog-card:hover { border-color: var(--border-hi); transform: translateY(-4px); background: var(--card-hi); }
.blog-card-img {
  height: 168px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(46,91,255,0.16), rgba(46,91,255,0.03));
  border-bottom: 1px solid var(--border);
}
.blog-card-img svg { width: 44px; height: 44px; stroke: var(--brand-hi); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: .85; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .tag { font-family: var(--mono); font-size: 11.5px; font-weight: 500; color: var(--brand-hi); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.blog-card h3 { font-size: 18px; font-weight: 600; line-height: 1.35; margin-bottom: 10px; letter-spacing: -0.01em; }
.blog-card p { font-size: 14.5px; color: var(--text-soft); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.blog-card .read { font-family: var(--mono); font-size: 12.5px; font-weight: 500; color: var(--brand-hi); display: inline-flex; align-items: center; gap: 6px; }

/* ── Legacy buttons still referenced on inner pages ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-size: 15px; font-weight: 600;
  font-variation-settings: "wght" 600; letter-spacing: -0.01em;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s var(--ease);
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 8px 28px -8px var(--brand-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--brand-glow); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border: 1px solid var(--border-hi); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ── Inner-page responsive ── */
@media (max-width: 920px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-cta { padding: 28px 22px; }
}

/* ============================================================
   V2 DESIGN LAYER — editorial display type, polish, conversion UI
   ============================================================ */
/* ── Global focus visibility (keyboard users) ── */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brand-hi); outline-offset: 3px; border-radius: 4px;
}
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 999;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ── Button polish ── */
.btn-paper, .nav-cta { transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.btn-paper:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px var(--brand-glow); }
.btn-paper:active { transform: translateY(0); }
.btn-line { transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease); }

/* ── Card light-sweep on hover ── */
.station, .price-card, .blog-card { position: relative; overflow: hidden; }
.station::before, .price-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.station:hover::before, .price-card:hover::before { opacity: 1; }
.station { transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease); }
.station:hover { transform: translateY(-3px); border-color: var(--border-hi); }

/* ── Hero trust strip ── */
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border);
}
.hero-trust .tl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); font-family: var(--mono); }
.hero-trust .tb {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; color: var(--text-soft); font-weight: 500;
}
.hero-trust .tb svg { width: 15px; height: 15px; stroke: var(--brand-hi); fill: none; stroke-width: 2; }

/* ── Savings calculator ── */
.calc {
  background: linear-gradient(180deg, var(--card-hi), var(--card));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.calc-left h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; font-variation-settings: "wght" 620; letter-spacing: -0.02em; margin-bottom: 10px; }
.calc-left p { color: var(--text-soft); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
.calc-field label { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-mute); font-family: var(--mono); letter-spacing: .02em; margin-bottom: 12px; }
.calc-field output { color: var(--text); font-weight: 600; font-family: var(--font); font-size: 15px; }
.calc input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none; height: 6px; border-radius: 99px;
  background: linear-gradient(90deg, var(--brand) var(--fill, 40%), rgba(255,255,255,.1) var(--fill, 40%));
  outline: none;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 5px solid var(--brand); cursor: pointer;
  box-shadow: 0 4px 14px rgba(46,91,255,.45); transition: transform .2s var(--ease);
}
.calc input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 5px solid var(--brand); cursor: pointer;
}
.calc-note { margin-top: 18px; font-size: 12.5px; color: var(--text-faint); line-height: 1.5; }
.calc-right {
  background: var(--paper); color: var(--ink); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px); position: relative;
}
.calc-right::before {
  content: ""; position: absolute; top: -8px; left: 24px; right: 24px; height: 8px;
  background: radial-gradient(circle at 8px 0, transparent 6px, var(--paper) 6px); background-size: 16px 8px;
  transform: rotate(180deg);
}
.calc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--paper-line); font-size: 14.5px; }
.calc-row .k { color: var(--ink-soft); }
.calc-row .v { font-weight: 600; font-variant-numeric: tabular-nums; }
.calc-row.total { border-bottom: none; padding-top: 16px; }
.calc-row.total .k { font-weight: 600; color: var(--ink); }
.calc-row.total .v { font-size: clamp(26px, 3vw, 34px); font-weight: 700; font-variation-settings: "wght" 680; letter-spacing: -0.02em; color: var(--brand-deep); }
.calc-cta { margin-top: 18px; }
.calc-cta .btn-paper { width: 100%; justify-content: center; }
@media (max-width: 880px) { .calc { grid-template-columns: 1fr; } }

/* ── Sticky mobile CTA ── */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: rgba(16,15,14,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-hi); border-radius: 16px; padding: 12px 12px 12px 18px;
  transform: translateY(120%); transition: transform .45s var(--ease);
  box-shadow: 0 18px 50px -12px rgba(0,0,0,.6);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-txt { font-size: 13.5px; color: var(--text-soft); line-height: 1.3; }
.sticky-cta .sc-txt strong { display: block; color: var(--text); font-size: 14.5px; }
.sticky-cta .btn-paper { padding: 11px 18px; font-size: 14px; white-space: nowrap; }
@media (max-width: 760px) { .sticky-cta { display: flex; } }

/* ── Motion respect ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > *, .rw > i { opacity: 1 !important; transform: none !important; transition: none !important; }
  .station:hover, .btn-paper:hover { transform: none; }
  html { scroll-behavior: auto; }
}
