/* GridFleet — award build. Near-black + cyan + one hot lime. */

/* ---------- fonts (self-hosted) ---------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --bg: #05070a;
  --bg2: #080c12;
  --panel: #0a0f16;
  --ink: #f2f6f4;
  --dim: #93a7b0;
  --faint: #5b6e78;
  --cyan: #22e6ff;
  --cyan-dim: rgba(34, 230, 255, 0.14);
  --lime: #b6ff3c;
  --lime-dim: rgba(182, 255, 60, 0.14);
  --hair: rgba(147, 197, 214, 0.14);
  --hair2: rgba(147, 197, 214, 0.07);
  --paper: #eef2e9;
  --paper-ink: #0b0f0c;
  --paper-dim: #4c5850;
  --sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Consolas, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 64px;
  --deck-h: 190;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html, body { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--cyan); color: #04131a; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.wrap { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 40px); } }

/* mono labels */
.tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.tag--dim { color: var(--faint); }
.tag--lime { color: var(--lime); }

h1, h2, h3 { font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; }
.h-xxl { font-size: clamp(44px, 7.6vw, 112px); }
.h-xl { font-size: clamp(34px, 5vw, 68px); }
.h-l { font-size: clamp(26px, 3.4vw, 44px); }
.lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--dim); max-width: 56ch; }

/* masked line reveals */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-mask > .line-inner { display: block; transform: translateY(110%); }
html.no-js .line-mask > .line-inner,
html.reduced .line-mask > .line-inner { transform: none; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 2px;
  border: 1px solid var(--hair);
  color: var(--ink);
  background: transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn .btn-arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn--solid {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #041318;
  box-shadow: 0 0 0 0 rgba(34, 230, 255, 0);
}
.btn--solid:hover { box-shadow: 0 0 34px -6px rgba(34, 230, 255, 0.65); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--lime { background: var(--lime); border-color: var(--lime); color: #0c1403; }
.btn--lime:hover { box-shadow: 0 0 34px -6px rgba(182, 255, 60, 0.6); }

/* ---------- intro loader ---------- */
#intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  cursor: pointer;
}
#intro.gone { display: none; }
.intro-word {
  font-family: var(--mono); font-weight: 600;
  font-size: clamp(26px, 4.4vw, 52px);
  letter-spacing: 0.34em; text-indent: 0.34em;
  display: flex;
}
.intro-word span { display: inline-block; transform: translateY(120%); opacity: 0; }
.intro-bar { width: min(320px, 60vw); height: 1px; background: var(--hair); position: relative; overflow: visible; }
.intro-bar i {
  position: absolute; left: 0; top: -0.5px; height: 2px; width: 100%;
  background: var(--cyan);
  transform: scaleX(0); transform-origin: 0 50%;
  box-shadow: 0 0 12px rgba(34, 230, 255, 0.8);
}
.intro-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; color: var(--faint); text-transform: uppercase; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 40px);
  transform: translateY(0);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  background: transparent;
}
.nav.scrolled {
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hair2);
}
.nav.hidden { transform: translateY(-100%); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand svg { width: 22px; height: 22px; }
.brand b { font-family: var(--mono); font-weight: 600; font-size: 14px; letter-spacing: 0.26em; }
.brand .brand-dot { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-links a {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim); transition: color 0.25s;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--cyan); transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav-cta { padding: 11px 18px; font-size: 11px; }
@media (max-width: 900px) { .nav-links, .nav .nav-cta { display: none; } }

/* burger */
.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0;
}
.burger i { display: block; height: 1.5px; background: var(--ink); transition: transform 0.45s var(--ease), opacity 0.3s; }
.burger i:nth-child(2) { width: 70%; }
body.menu-open .burger i:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
body.menu-open .burger i:nth-child(2) { opacity: 0; }
body.menu-open .burger i:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }

/* overlay menu */
#menu {
  position: fixed; inset: 0; z-index: 90;
  background: linear-gradient(160deg, #060910 0%, #04070c 100%);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  display: flex; align-items: center;
  padding: clamp(24px, 6vw, 80px);
}
#menu .menu-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; width: 100%; align-items: end; }
#menu .menu-main { display: flex; flex-direction: column; gap: 2px; }
#menu .menu-main a {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(34px, 6.5vw, 74px); letter-spacing: -0.03em; line-height: 1.12;
  color: var(--ink); display: inline-flex; align-items: baseline; gap: 18px;
  width: fit-content; will-change: transform;
}
#menu .menu-main a small { font-family: var(--mono); font-size: 12px; color: var(--cyan); letter-spacing: 0.2em; }
#menu .menu-main a:hover { color: var(--cyan); }
#menu .menu-side { display: flex; flex-direction: column; gap: 14px; }
#menu .menu-side a { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); width: fit-content; }
#menu .menu-side a:hover { color: var(--lime); }
#menu .menu-foot { position: absolute; bottom: 26px; left: clamp(24px, 6vw, 80px); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; color: var(--faint); text-transform: uppercase; }
@media (max-width: 760px) {
  #menu .menu-grid { grid-template-columns: 1fr; align-items: start; align-content: center; }
}

/* progress rail */
#rail {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%);
  z-index: 80; display: flex; flex-direction: column; align-items: center; gap: 0;
}
#rail .rail-seg { width: 1px; height: 34px; background: var(--hair); position: relative; overflow: hidden; }
#rail .rail-seg i { position: absolute; inset: 0; background: var(--cyan); transform: scaleY(0); transform-origin: 0 0; }
#rail .rail-node {
  width: 28px; height: 28px; position: relative;
  display: grid; place-items: center;
  background: none; border: 0; padding: 0;
}
#rail .rail-node::before {
  content: ""; width: 5px; height: 5px; transform: rotate(45deg);
  background: var(--faint);
  transition: background 0.3s, box-shadow 0.3s, transform 0.4s var(--ease);
}
#rail .rail-node.active::before {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(34, 230, 255, 0.9);
  transform: rotate(45deg) scale(1.5);
}
#rail .rail-node .rail-tip {
  position: absolute; right: 32px; top: 50%; transform: translateY(-50%) translateX(6px);
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cyan); opacity: 0; transition: opacity 0.3s, transform 0.4s var(--ease);
  white-space: nowrap; pointer-events: none;
}
#rail .rail-node:hover .rail-tip, #rail .rail-node.active .rail-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 900px) { #rail { display: none; } }

/* ---------- scene 01 · hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: clip; }
#fleet-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
html.no-webgl #fleet-canvas { display: none; }
html.no-webgl .hero {
  background:
    radial-gradient(120% 60% at 50% 100%, rgba(34, 230, 255, 0.14), transparent 60%),
    linear-gradient(180deg, #05070a, #060a10);
}
.hero-inner {
  position: relative; z-index: 3;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + 4vh);
  pointer-events: none;
}
.hero-inner a, .hero-inner button { pointer-events: auto; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.hero-eyebrow .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 rgba(182, 255, 60, 0.55);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(182, 255, 60, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(182, 255, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(182, 255, 60, 0); }
}
.hero h1 .line-inner { white-space: nowrap; }
.hero h1 .accent { color: var(--cyan); }
.hero-sub { margin-top: 28px; max-width: 52ch; font-size: clamp(16px, 1.5vw, 19px); color: var(--dim); }
.hero-sub strong { color: var(--ink); font-weight: 500; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-foot {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 0 clamp(20px, 3vw, 40px) 26px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint);
}
.hero-foot .hf-live b { color: var(--lime); font-weight: 500; }
.scroll-cue { display: flex; align-items: center; gap: 10px; color: var(--faint); }
.scroll-cue i {
  display: block; width: 1px; height: 34px; background: var(--hair);
  position: relative; overflow: hidden;
}
.scroll-cue i::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--cyan); animation: cue 2s var(--ease) infinite;
}
@keyframes cue { 0% { top: -50%; } 100% { top: 110%; } }

/* hero ledger rail (desktop) */
.hero-ledger {
  position: absolute; z-index: 4; right: clamp(72px, 6.5vw, 104px); top: 50%;
  transform: translateY(-50%);
  width: 248px; display: flex; flex-direction: column;
  pointer-events: none;
}
.hero-ledger .hl-list { display: flex; flex-direction: column; }
.hero-ledger .hl-head {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--faint); display: flex; justify-content: space-between; padding: 0 2px 4px;
  border-bottom: 1px solid var(--hair2);
}
.hero-ledger .hl-head b { color: var(--lime); font-weight: 500; }
.receipt-chip {
  background: rgba(8, 12, 18, 0.82);
  border: 1px solid var(--hair);
  border-left: 2px solid var(--lime);
  margin-top: 10px;
  overflow: hidden;
  padding: 10px 12px;
  font-family: var(--mono); font-size: 10px; line-height: 1.6; letter-spacing: 0.04em;
  color: var(--dim);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  will-change: transform, opacity;
}
.receipt-chip .rc-top { display: flex; justify-content: space-between; color: var(--ink); }
.receipt-chip .rc-top .ok { color: var(--lime); }
.receipt-chip .rc-hash { color: var(--faint); font-size: 9px; letter-spacing: 0.02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 1100px) { .hero-ledger { display: none; } }
@media (max-height: 700px) { .hero-ledger { display: none; } }

/* ---------- section chrome ---------- */
.scene { position: relative; }
.scene-head { display: grid; gap: 18px; margin-bottom: clamp(36px, 6vh, 64px); }
.scene-head .tag { display: inline-flex; align-items: center; gap: 10px; }
.scene-head .tag::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: 0.6; }

/* ---------- scene 02 · watch it work ---------- */
#work { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }
.work-pin { min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 20px) 0 40px; }
.work-grid { display: grid; grid-template-columns: minmax(300px, 0.9fr) 1.4fr; gap: clamp(28px, 4vw, 72px); align-items: center; }
.work-steps { display: flex; flex-direction: column; gap: 4px; margin-top: 34px; }
.work-step {
  display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: baseline;
  padding: 13px 4px; border-top: 1px solid var(--hair2);
  color: var(--faint);
  transition: color 0.4s;
}
.work-step:last-child { border-bottom: 1px solid var(--hair2); }
.work-step .ws-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; }
.work-step .ws-label { font-size: 17px; letter-spacing: -0.01em; }
.work-step .ws-sub { font-size: 13px; color: var(--faint); display: block; margin-top: 2px; opacity: 0; transition: opacity 0.4s; }
.work-step.on { color: var(--ink); }
.work-step.on .ws-num { color: var(--cyan); }
.work-step.on .ws-sub { opacity: 1; }

/* console */
.console {
  background: #070b11;
  border: 1px solid var(--hair);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 120px -50px rgba(0, 0, 0, 0.9), 0 0 60px -30px rgba(34, 230, 255, 0.25);
  font-family: var(--mono);
  position: relative;
}
.console-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid var(--hair2);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint);
}
.console-bar .cb-live { color: var(--cyan); }
.console-body { padding: 18px 18px 16px; min-height: 328px; font-size: 12.5px; line-height: 1.9; }
.cline { display: flex; gap: 10px; align-items: baseline; opacity: 0; transform: translateY(4px); transition: opacity 0.3s, transform 0.4s var(--ease); min-height: 24px; }
.cline.vis { opacity: 1; transform: none; }
.cline .dot {
  flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--faint); align-self: center;
  transition: background 0.25s, box-shadow 0.25s;
}
.cline .dot.run { background: var(--cyan); box-shadow: 0 0 8px rgba(34, 230, 255, 0.8); animation: blink 0.8s steps(2) infinite; }
.cline .dot.done { background: var(--lime); box-shadow: 0 0 6px rgba(182, 255, 60, 0.6); animation: none; }
@keyframes blink { 50% { opacity: 0.35; } }
.cline .ctext { color: var(--dim); white-space: pre-wrap; word-break: break-word; }
.cline .ctext .cy { color: var(--cyan); }
.cline .ctext .lm { color: var(--lime); }
.cline .ctext .wh { color: var(--ink); }
.cline .caret { display: inline-block; width: 7px; height: 14px; background: var(--cyan); vertical-align: -2px; opacity: 0; }
.cline.typing .caret { opacity: 1; animation: blink 0.7s steps(2) infinite; }
.cline .chip {
  flex: none; margin-left: auto;
  font-size: 9.5px; letter-spacing: 0.08em; color: var(--faint);
  border: 1px solid var(--hair2); padding: 2px 8px; border-radius: 2px;
  opacity: 0; transform: translateX(6px); transition: opacity 0.35s, transform 0.45s var(--ease);
  white-space: nowrap;
}
.cline .chip.vis { opacity: 1; transform: none; }
.cline.indent { padding-left: 24px; }

/* the receipt that prints out of the console */
.receipt-print-zone { padding: 4px 18px 22px; display: flex; justify-content: center; }
.receipt {
  width: min(360px, 100%);
  background: #f4f6ef;
  color: #10150f;
  font-family: var(--mono);
  font-size: 11px; line-height: 1.75;
  padding: 18px 18px 26px;
  position: relative;
  clip-path: inset(0 0 100% 0);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 44px -18px rgba(182, 255, 60, 0.35);
}
.receipt::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 8px;
  background: #f4f6ef;
  -webkit-mask: radial-gradient(circle at 4px 8px, transparent 4.5px, #000 5px) 0 0 / 12px 8px repeat-x;
  mask: radial-gradient(circle at 4px 8px, transparent 4.5px, #000 5px) 0 0 / 12px 8px repeat-x;
  transform: translateY(100%);
}
.receipt .r-head { text-align: center; letter-spacing: 0.3em; font-weight: 700; font-size: 11px; padding-bottom: 10px; border-bottom: 1px dashed #9aa392; margin-bottom: 10px; }
.receipt .r-row { display: flex; justify-content: space-between; gap: 12px; }
.receipt .r-row b { font-weight: 600; }
.receipt .r-row .r-k { color: #5c6656; }
.receipt .r-div { border-top: 1px dashed #9aa392; margin: 9px 0; }
.receipt .r-hash { font-size: 9px; color: #5c6656; word-break: break-all; }
.receipt .r-seal {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; padding: 7px;
  border: 1.5px solid #3f7d20; border-radius: 3px; color: #2f6a12;
  letter-spacing: 0.2em; font-weight: 700; font-size: 10.5px;
  transform: scale(0.8); opacity: 0;
}
.receipt .r-seal svg { width: 13px; height: 13px; }
.console-ledgerline {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hair2);
  padding: 12px 18px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint);
}
.console-ledgerline b { color: var(--lime); font-weight: 500; letter-spacing: 0.1em; }
.work-note { margin-top: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

@media (max-width: 980px) {
  .work-pin { min-height: 0; padding: 90px 0 70px; align-items: flex-start; }
  .work-grid { grid-template-columns: 1fr; gap: 34px; }
  .console-body { min-height: 300px; font-size: 11.5px; padding: 14px; }
  .work-steps { display: grid; grid-template-columns: 1fr 1fr; margin-top: 22px; }
  .work-step { grid-template-columns: 30px 1fr; padding: 10px 2px; }
  .work-step .ws-sub { display: none; }
}

/* ---------- scene 03 · receipts (paper band) ---------- */
#receipts { background: var(--paper); color: var(--paper-ink); padding: clamp(90px, 14vh, 150px) 0; }
#receipts .tag { color: #33691e; }
#receipts .lede { color: var(--paper-dim); }
.paper-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.anatomy { position: relative; display: flex; justify-content: center; }
.anatomy .receipt { clip-path: none; box-shadow: 0 40px 90px -40px rgba(11, 15, 12, 0.45); transform: rotate(-1.2deg); }
.anatomy .receipt .r-seal { transform: none; opacity: 1; }
.anatomy-notes { display: flex; flex-direction: column; gap: 0; counter-reset: an; }
.an-item { border-top: 1px solid rgba(11, 15, 12, 0.14); padding: 22px 2px; display: grid; grid-template-columns: 52px 1fr; gap: 16px; }
.an-item:last-child { border-bottom: 1px solid rgba(11, 15, 12, 0.14); }
.an-item .an-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: #33691e; padding-top: 5px; }
.an-item h3 { font-size: clamp(19px, 2vw, 24px); letter-spacing: -0.02em; margin-bottom: 6px; }
.an-item p { font-size: 14.5px; color: var(--paper-dim); max-width: 44ch; }
@media (max-width: 980px) {
  .paper-grid { grid-template-columns: 1fr; }
  .anatomy { order: 2; margin-top: 10px; }
}

/* ---------- scene 04a · command deck ---------- */
#deck { background: linear-gradient(180deg, var(--bg2), var(--bg)); padding: clamp(90px, 14vh, 150px) 0 clamp(60px, 8vh, 90px); position: relative; overflow: clip; }
.deck-stage { position: relative; display: flex; justify-content: center; margin-top: clamp(20px, 4vh, 40px); }
.deck-glow {
  position: absolute; inset: -80px -120px; z-index: 0;
  background: radial-gradient(46% 52% at 50% 50%, var(--deck-glow, rgba(34, 230, 255, 0.16)), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  transition: none;
}

/* FIXED-size panel — never resizes while cycling */
.deck-panel {
  position: relative; z-index: 1;
  width: 720px; height: 300px;
  max-width: 100%;
  background: rgba(8, 12, 18, 0.88);
  border: 1px solid var(--hair);
  overflow: hidden;
  display: grid;
}
.deck-face {
  grid-area: 1 / 1;
  display: grid; grid-template-columns: 264px 1fr;
  width: 100%; height: 100%;
}
.deck-face.incoming { z-index: 2; }
.deck-ava { position: relative; overflow: hidden; }
.deck-ava img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(1.04); }
.deck-ava::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(8, 12, 18, 0.55));
  pointer-events: none;
}
.deck-info { padding: 26px 28px 22px; display: flex; flex-direction: column; min-width: 0; }
.deck-unit { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; display: flex; justify-content: space-between; white-space: nowrap; }
.deck-unit .du-r { color: var(--faint); }
.deck-title { font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.02em; line-height: 1.04; margin-bottom: auto; overflow: hidden; text-overflow: ellipsis; }
.deck-meta { display: flex; flex-direction: column; margin-top: 14px; }
.deck-meta .dm-row {
  display: flex; justify-content: space-between; gap: 14px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim); padding: 7px 0; border-top: 1px solid var(--hair2);
}
.deck-meta .dm-row .dm-v { color: var(--ink); }
.deck-meta .dm-row .dm-v.lm { color: var(--lime); }

/* scan line that leads the wipe */
.deck-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 2px; z-index: 3;
  background: linear-gradient(90deg, transparent, var(--cyan) 18%, #fff 50%, var(--cyan) 82%, transparent);
  box-shadow: 0 0 18px rgba(34, 230, 255, 0.9), 0 0 46px rgba(34, 230, 255, 0.4);
  opacity: 0; pointer-events: none;
  will-change: transform, opacity;
}

/* rare glitch cut */
@keyframes deckGlitch {
  0% { clip-path: inset(0 0 82% 0); transform: translate(-5px, 0); filter: hue-rotate(18deg); }
  25% { clip-path: inset(28% 0 44% 0); transform: translate(4px, 0); filter: hue-rotate(-14deg); }
  50% { clip-path: inset(60% 0 12% 0); transform: translate(-3px, 0); filter: hue-rotate(10deg); }
  75% { clip-path: inset(10% 0 64% 0); transform: translate(5px, 0); filter: hue-rotate(-20deg); }
  100% { clip-path: inset(44% 0 30% 0); transform: translate(0, 0); filter: none; }
}
.deck-panel.glitch .deck-face.outgoing { animation: deckGlitch 0.22s steps(5) 1; }

/* deck controls */
.deck-controls {
  position: relative; z-index: 2;
  width: 720px; max-width: 100%;
  margin: 14px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.deck-ticks { display: flex; gap: 5px; flex: 1; }
.deck-ticks button {
  flex: 1; height: 20px; background: none; border: 0; padding: 0; position: relative;
}
.deck-ticks button::after {
  content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px;
  background: var(--hair);
  transition: background 0.3s, box-shadow 0.3s;
}
.deck-ticks button.on::after { background: var(--cyan); box-shadow: 0 0 8px rgba(34, 230, 255, 0.8); }
.deck-arrows { display: flex; gap: 8px; }
.deck-arrows button {
  width: 40px; height: 40px;
  background: none; border: 1px solid var(--hair); color: var(--dim);
  font-family: var(--mono); font-size: 14px;
  transition: border-color 0.3s, color 0.3s;
}
.deck-arrows button:hover { border-color: var(--cyan); color: var(--cyan); }

/* deck — mobile-first compact card */
@media (max-width: 820px) {
  .deck-panel { width: 100%; max-width: 430px; height: 168px; }
  .deck-face { grid-template-columns: 132px 1fr; }
  .deck-info { padding: 14px 16px 12px; }
  .deck-unit { margin-bottom: 6px; font-size: 9px; }
  .deck-unit .du-r { display: none; }
  .deck-title { font-size: 21px; }
  .deck-meta { margin-top: 8px; }
  .deck-meta .dm-row { padding: 4.5px 0; font-size: 9px; }
  .deck-meta .dm-row.dm-hide-m { display: none; }
  .deck-controls { width: 100%; max-width: 430px; }
  .deck-ticks { gap: 3px; }
  .deck-arrows button { width: 44px; height: 44px; }
}

/* deck bento */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: clamp(48px, 8vh, 80px); }
.bento-card {
  border: 1px solid var(--hair2);
  background: rgba(10, 15, 22, 0.5);
  padding: 22px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 150px;
}
.bento-card h3 { font-size: 17px; letter-spacing: -0.01em; }
.bento-card p { font-size: 13.5px; color: var(--dim); }
.bento-card .bc-big { font-family: var(--mono); font-size: clamp(30px, 3.2vw, 44px); font-weight: 500; letter-spacing: -0.02em; color: var(--lime); margin-top: auto; }
.bento-card .bc-note { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.b-4 { grid-column: span 4; }
.b-6 { grid-column: span 6; }
.b-8 { grid-column: span 8; }
.b-12 { grid-column: span 12; }
@media (max-width: 980px) { .b-4 { grid-column: span 6; } .b-8 { grid-column: span 12; } }
@media (max-width: 640px) { .b-4, .b-6 { grid-column: span 12; } .bento-card { min-height: 0; } }

/* roles ticker */
.ticker { overflow: hidden; margin-top: 16px; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: flex; gap: 12px; width: max-content; will-change: transform; animation: tick 44s linear infinite; }
@keyframes tick { to { transform: translateX(-50%); } }
.ticker-track span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); border: 1px solid var(--hair2); padding: 9px 16px; white-space: nowrap; border-radius: 2px;
}
.ticker-track span b { color: var(--cyan); font-weight: 500; }
html.reduced .ticker-track { animation: none; }

/* ---------- scene 04b · proof ---------- */
#proof { background: var(--bg); padding: clamp(80px, 12vh, 140px) 0; border-top: 1px solid var(--hair2); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--hair2); }
.proof-cell { padding: clamp(20px, 2.6vw, 34px); border-right: 1px solid var(--hair2); border-bottom: 1px solid var(--hair2); display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.proof-cell:nth-child(4n) { border-right: 0; }
.proof-cell:nth-child(n+5) { border-bottom: 0; }
.proof-cell .pc-num { font-family: var(--mono); font-size: clamp(28px, 3.4vw, 46px); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.proof-cell .pc-num .pc-unit { font-size: 0.5em; color: var(--cyan); }
.proof-cell.hot .pc-num { color: var(--lime); }
.proof-cell .pc-label { font-size: 13.5px; color: var(--dim); }
.proof-cell .pc-fresh { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-top: auto; }
.proof-cell .pc-fresh.live { color: var(--lime); }
.proof-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
@media (max-width: 980px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-cell:nth-child(2n) { border-right: 0; }
  .proof-cell:nth-child(4n-1), .proof-cell:nth-child(4n) { border-right: 1px solid var(--hair2); }
  .proof-cell:nth-child(2n) { border-right: 0 !important; }
  .proof-cell:nth-child(n+5) { border-bottom: 1px solid var(--hair2); }
  .proof-cell:nth-child(n+7) { border-bottom: 0; }
}

/* ---------- scene 05 · deploy ---------- */
#deploy { position: relative; background: linear-gradient(180deg, var(--bg), #060a10 60%, #04070c); padding: clamp(90px, 14vh, 160px) 0; overflow: clip; }
#deploy::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 62%;
  background:
    linear-gradient(180deg, transparent, rgba(34, 230, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(34, 230, 255, 0.05) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(34, 230, 255, 0.05) 0 1px, transparent 1px 72px);
  -webkit-mask: linear-gradient(180deg, transparent, #000 65%);
  mask: linear-gradient(180deg, transparent, #000 65%);
  pointer-events: none;
}
.deploy-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 90px); align-items: start; }
.deploy-copy { position: sticky; top: 120px; }
.deploy-points { margin-top: 30px; display: flex; flex-direction: column; }
.deploy-points li {
  list-style: none; display: flex; gap: 14px; align-items: baseline;
  padding: 13px 0; border-top: 1px solid var(--hair2);
  color: var(--dim); font-size: 15px;
}
.deploy-points li::before { content: "→"; color: var(--lime); font-family: var(--mono); }
.form {
  border: 1px solid var(--hair);
  background: rgba(8, 12, 18, 0.75);
  padding: clamp(22px, 3vw, 36px);
  display: grid; gap: 16px;
  border-radius: 4px;
}
.form label { display: grid; gap: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.form input, .form textarea {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: #060a10; border: 1px solid var(--hair2); border-radius: 3px;
  padding: 13px 15px; resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34, 230, 255, 0.13); }
.form input::placeholder, .form textarea::placeholder { color: #43545e; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status { display: none; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; }
.form-note { font-size: 12.5px; color: var(--faint); }
.form-note a { color: var(--cyan); }
@media (max-width: 980px) {
  .deploy-grid { grid-template-columns: 1fr; }
  .deploy-copy { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--hair2); background: #04070c; }
.foot-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 34px 0; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-links a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); transition: color 0.25s; }
.foot-links a:hover { color: var(--cyan); }
.foot-fine { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); padding-bottom: 30px; display: flex; flex-wrap: wrap; gap: 8px 24px; }

/* ---------- reveal defaults (JS toggles) ---------- */
.fade-up { opacity: 0; transform: translateY(28px); }
html.no-js .fade-up, html.reduced .fade-up { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .scroll-cue i::after { display: none; }
}

/* mobile: cap expensive blur + type scale */
@media (max-width: 820px) {
  .nav.scrolled { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .receipt-chip { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .h-xxl { font-size: clamp(30px, 9.4vw, 64px); }
  .hero-foot .hf-snap { display: none; }
}

/* ============================================================
   AWARD LAYER — cursor · sound · portal · intro+ · transitions
   ============================================================ */

/* ---------- custom cursor (pointer:fine, JS-gated) ---------- */
html.gf-cur *:not(input):not(textarea):not(select) { cursor: none !important; }
#gf-cursor-dot, #gf-cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 320;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s;
}
html.gf-cur-on #gf-cursor-dot, html.gf-cur-on #gf-cursor-ring { opacity: 1; }
#gf-cursor-dot .c-dot {
  position: absolute; left: 0; top: 0;
  width: 5px; height: 5px;
  translate: -50% -50%; rotate: 45deg;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(34, 230, 255, 0.9);
  transition: opacity 0.2s, scale 0.25s var(--ease);
}
#gf-cursor-ring .c-ring {
  position: absolute; left: 0; top: 0;
  width: var(--cw, 30px); height: var(--cw, 30px);
  translate: -50% -50%;
  border: 1px solid rgba(34, 230, 255, 0.8);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(34, 230, 255, 0);
  transition:
    width 0.35s var(--ease), height 0.35s var(--ease),
    border-radius 0.35s var(--ease), border-color 0.3s,
    background 0.3s, scale 0.3s var(--ease), rotate 0.45s var(--ease);
}
#gf-cursor-ring .c-label {
  font-family: var(--mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-indent: 0.22em; text-transform: uppercase;
  color: var(--cyan); white-space: nowrap;
  opacity: 0; scale: 0.55;
  transition: opacity 0.25s, scale 0.35s var(--ease);
}
#gf-cursor-ring.is-link .c-ring { --cw: 46px; background: rgba(34, 230, 255, 0.06); }
/* is-cta only ever sits over bright solid buttons -> flip to dark ink for contrast */
#gf-cursor-ring.is-cta .c-ring { --cw: 74px; background: rgba(255, 255, 255, 0.12); border-color: rgba(4, 19, 24, 0.6); }
#gf-cursor-ring.is-cta .c-label { color: #041318; }
#gf-cursor-ring.is-link .c-label, #gf-cursor-ring.is-cta .c-label { opacity: 1; scale: 1; }
#gf-cursor-ring.is-link ~ #gf-cursor-dot .c-dot, #gf-cursor-ring.is-cta ~ #gf-cursor-dot .c-dot { opacity: 0; }
#gf-cursor-ring.is-field .c-ring { border-radius: 5px; rotate: 45deg; border-color: rgba(34, 230, 255, 0.55); }
#gf-cursor-ring.is-down .c-ring { scale: 0.8; }
#gf-cursor-ring.is-text, #gf-cursor-dot.is-text { opacity: 0 !important; }
html.gf-cur input, html.gf-cur textarea, html.gf-cur select { cursor: text; }
html.gf-cur select { cursor: pointer; }

/* ---------- sound toggle (WebAudio, off by default) ---------- */
#gf-sound {
  position: fixed; left: 18px; bottom: 18px; z-index: 150;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center; gap: 3px;
  background: rgba(8, 12, 18, 0.72);
  border: 1px solid var(--hair); border-radius: 2px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}
#gf-sound:hover { border-color: var(--cyan); }
#gf-sound i { width: 2px; height: 5px; background: var(--faint); transition: background 0.3s; transform-origin: 50% 100%; }
#gf-sound i:nth-child(1) { height: 7px; }
#gf-sound i:nth-child(2) { height: 12px; }
#gf-sound i:nth-child(3) { height: 9px; }
#gf-sound.on i { background: var(--cyan); animation: gf-eq 1.1s ease-in-out infinite; }
#gf-sound.on i:nth-child(2) { animation-delay: 0.18s; }
#gf-sound.on i:nth-child(3) { animation-delay: 0.36s; }
@keyframes gf-eq { 0%, 100% { transform: scaleY(0.45); } 50% { transform: scaleY(1.35); } }
html.reduced #gf-sound { display: none; }
.hero-foot { padding-left: calc(clamp(20px, 3vw, 40px) + 52px); }

/* ---------- portal receipt (hero ledger -> console, scroll-scrubbed) ---------- */
#gf-portal {
  position: fixed; left: 0; top: 0; z-index: 140;
  width: 248px;
  visibility: hidden; opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform-origin: 0 0;
}
#gf-portal .receipt-chip {
  margin-top: 0;
  box-shadow: 0 26px 70px -22px rgba(0, 0, 0, 0.9), 0 0 34px -10px rgba(182, 255, 60, 0.35);
}
.gf-arrive { animation: gf-arrive 0.8s var(--ease) 1; }
@keyframes gf-arrive {
  0% { background: rgba(182, 255, 60, 0.16); box-shadow: inset 0 0 26px rgba(182, 255, 60, 0.18); }
  100% { background: transparent; box-shadow: inset 0 0 0 rgba(182, 255, 60, 0); }
}

/* ---------- hero headline · chromatic settle ---------- */
.hero h1 { --ab: 0; pointer-events: auto; }
.hero h1 .line-inner {
  text-shadow:
    calc(var(--ab) * 1px) 0 rgba(255, 60, 130, 0.5),
    calc(var(--ab) * -1px) 0 rgba(34, 230, 255, 0.55);
}
html.reduced .hero h1 .line-inner, html.no-js .hero h1 .line-inner { text-shadow: none; }

/* ---------- intro upgrade: horizon draw + floor + receipt stamp + skip ---------- */
#intro { overflow: hidden; }
#intro .intro-horizon {
  position: absolute; left: 50%; top: 66%;
  width: min(760px, 82vw); height: 1px;
  translate: -50% 0;
  background: linear-gradient(90deg, transparent, var(--cyan) 28%, #c8f6ff 50%, var(--cyan) 72%, transparent);
  box-shadow: 0 0 26px rgba(34, 230, 255, 0.75);
  transform: scaleX(0);
}
#intro .intro-floor {
  position: absolute; left: -22%; right: -22%; top: 66%; bottom: -6%;
  background:
    repeating-linear-gradient(90deg, rgba(34, 230, 255, 0.09) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(34, 230, 255, 0.09) 0 1px, transparent 1px 46px);
  transform: perspective(520px) rotateX(62deg);
  transform-origin: 50% 0;
  -webkit-mask: linear-gradient(180deg, #000, transparent 82%);
  mask: linear-gradient(180deg, #000, transparent 82%);
  opacity: 0;
  pointer-events: none;
}
#intro .intro-chip {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); border: 1px solid rgba(182, 255, 60, 0.4);
  padding: 5px 11px; border-radius: 2px;
  opacity: 0; transform: scale(1.3);
}
#intro .intro-skip {
  position: absolute; right: 22px; bottom: 20px;
  background: none; border: 1px solid var(--hair); border-radius: 2px;
  color: var(--faint);
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 9px 14px;
  transition: color 0.25s, border-color 0.25s;
}
#intro .intro-skip:hover { color: var(--cyan); border-color: var(--cyan); }

/* ---------- page transitions: View Transitions API + wipe fallback ---------- */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
  ::view-transition-old(root) { animation: gf-vt-out 0.28s cubic-bezier(0.7, 0, 0.84, 0) both; }
  ::view-transition-new(root) { animation: gf-vt-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
}
@keyframes gf-vt-out { to { opacity: 0; transform: translateY(-2.4vh); } }
@keyframes gf-vt-in { from { opacity: 0; transform: translateY(2.4vh); } }
#gf-wipe {
  position: fixed; left: 0; right: 0; top: -2%; bottom: -2%; z-index: 260;
  background: linear-gradient(180deg, #060a10, #04070c);
  transform: translateY(103%);
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
}
#gf-wipe::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(34, 230, 255, 0.8);
}

/* ---------- micro-polish ---------- */
:focus-visible { outline: 1px solid var(--cyan); outline-offset: 3px; }
.btn {
  transition:
    border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease),
    box-shadow 0.3s var(--ease), scale 0.22s var(--ease), translate 0.22s var(--ease);
}
.btn:active { scale: 0.965; translate: 0 1px; }
.bento-card {
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), translate 0.5s var(--ease);
}
.bento-card:hover { border-color: rgba(34, 230, 255, 0.32); background: rgba(13, 19, 28, 0.66); translate: 0 -3px; }
.proof-cell { transition: background 0.4s var(--ease); }
.proof-cell:hover { background: rgba(34, 230, 255, 0.035); }
.form input:hover, .form textarea:hover { border-color: var(--hair); }
.deck-arrows button:active, .burger:active { scale: 0.92; }
html.reduced .bento-card:hover { translate: none; }


/* ---- Homepage Vera offer -------------------------------------------------
   The flagship product, purchasable from the front door. Quiet enough to sit
   under the hero without fighting it; clear enough that a buyer knows the
   price and can act in one click. */
.vera-offer-grid{display:grid;gap:14px;grid-template-columns:1fr;margin-top:clamp(22px,4vh,38px)}
@media (min-width:760px){.vera-offer-grid{grid-template-columns:repeat(3,1fr)}}
.vera-offer-card{display:flex;flex-direction:column;gap:6px;padding:20px 18px 18px;border:1px solid var(--hair2,rgba(255,255,255,.12));border-radius:16px;background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.012));transition:border-color .25s ease,transform .25s ease}
.vera-offer-card:hover{border-color:rgba(182,255,60,.38);transform:translateY(-2px)}
.vera-offer-card--hot{border-color:rgba(182,255,60,.30);box-shadow:0 0 46px -22px rgba(182,255,60,.55)}
.vo-flag{align-self:flex-start;padding:2px 8px;border-radius:999px;background:rgba(182,255,60,.14);color:var(--lime,#b6ff3c);font-size:.66rem;letter-spacing:.12em;text-transform:uppercase}
.vo-name{font-size:.74rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(242,246,244,.62)}
.vo-price{font-size:clamp(2rem,4.6vw,2.6rem);font-weight:650;line-height:1.05;color:var(--ink,#f2f6f4)}
.vo-price small{font-size:.42em;font-weight:500;color:rgba(242,246,244,.55);margin-left:2px}
.vo-sub{margin:2px 0 14px;font-size:.86rem;line-height:1.45;color:rgba(242,246,244,.62)}
.vera-offer-card .btn{margin-top:auto;justify-content:center}
.vera-offer-note{margin-top:16px;font-size:.82rem;line-height:1.55;color:rgba(242,246,244,.5)}
.vera-offer-note a{color:var(--lime,#b6ff3c);text-decoration:none;border-bottom:1px solid rgba(182,255,60,.3)}
.vera-offer-note a:hover{border-color:var(--lime,#b6ff3c)}
@media (prefers-reduced-motion:reduce){.vera-offer-card{transition:none}.vera-offer-card:hover{transform:none}}
