/* ════════════════════════════════════════════════════════════════
   RAPIDXPK — DESIGN SYSTEM v2 "CONTROL ROOM"
   One coherent layer. Black #0a0a0a, volt-lime #c9ff3d, off-white
   #f0f0ee. Space Grotesk / Inter / JetBrains Mono.
   No patch layers. No !important wars.
   ════════════════════════════════════════════════════════════════ */

:root {
  /* color */
  --bg:        #0a0a0a;
  --bg-raise:  #0e0e0d;
  --surface:   #121211;
  --surface-2: #171716;
  --fg:        #f0f0ee;
  --fg-2:      #a3a39b;
  --fg-3:      #6b6b64;
  --volt:      #c9ff3d;
  --volt-deep: #a8e000;
  --volt-dim:  rgba(201, 255, 61, 0.12);
  --alert:     #ff6a45;
  --hair:      rgba(240, 240, 238, 0.08);
  --hair-2:    rgba(240, 240, 238, 0.14);
  --hair-volt: rgba(201, 255, 61, 0.22);

  /* type */
  --f-display: 'Space Grotesk', 'Arial', sans-serif;
  --f-body:    'Inter', 'Helvetica Neue', sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* rhythm — 8px base */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 6rem;
  --s-8: 8.5rem;
  --s-9: 11rem;

  /* geometry */
  --container: 1240px;
  --r-outer: 24px;
  --r-inner: 17px;   /* concentric: outer − shell padding */
  --r-pill: 999px;

  /* motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-pop:  cubic-bezier(0.2, 1.6, 0.4, 1);

  /* layers */
  --z-nav: 100;
  --z-float: 200;
  --z-modal: 400;
}

/* ── reset & base ─────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* one ambient light source, top-center — everything else stays black */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% -12%, rgba(201, 255, 61, 0.055), transparent 62%),
    radial-gradient(900px 600px at 100% 30%, rgba(240, 240, 238, 0.02), transparent 55%);
}
main, header.site, footer.site { position: relative; z-index: 1; }

::selection { background: var(--volt); color: #0a0a0a; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 1000;
  background: var(--volt); color: #0a0a0a; font-weight: 600;
  padding: 10px 18px; border-radius: var(--r-pill);
}
.skip-link:focus { left: 12px; }

/* ── typography ───────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--fg);
  text-wrap: balance;
}
h1 {
  font-size: clamp(3.2rem, 7.6vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
}
h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h3 { font-size: 1.35rem; letter-spacing: -0.02em; line-height: 1.25; }
h4 { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.75;
  color: var(--fg-2);
  max-width: 54ch;
  text-wrap: pretty;
}
.lede b { color: var(--fg); font-weight: 600; }

.hl { color: var(--volt); }

/* eyebrow tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
  border: 1px solid var(--hair-2);
  border-radius: var(--r-pill);
  padding: 7px 15px;
  margin-bottom: var(--s-4);
  background: rgba(240, 240, 238, 0.02);
}
.tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 8px rgba(201, 255, 61, 0.8);
}
.tag b { color: var(--volt); font-weight: 500; }

/* mono microcopy */
.micro {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ── buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.45s var(--ease-snap),
    box-shadow 0.45s var(--ease-snap),
    background 0.3s var(--ease-snap),
    border-color 0.3s var(--ease-snap),
    color 0.3s var(--ease-snap);
}
.btn:active { transform: scale(0.97); }

/* nested arrow chip — never a naked arrow */
.btn .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  margin: -6px -12px -6px 0;
  border-radius: 50%;
  font-size: 0.82rem;
  transition: transform 0.45s var(--ease-snap);
}
.btn:hover .chip { transform: translate(2px, -2px); }

.btn-fill {
  background: linear-gradient(160deg, #d6ff5c 0%, var(--volt) 45%, var(--volt-deep) 100%);
  color: #0a0a0a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 1px 0 rgba(122, 160, 0, 0.9),
    0 14px 34px -12px rgba(201, 255, 61, 0.45);
}
.btn-fill .chip { background: rgba(10, 10, 10, 0.14); }
.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 0 rgba(122, 160, 0, 0.9),
    0 20px 44px -12px rgba(201, 255, 61, 0.55);
}
.btn-fill:active { transform: translateY(0) scale(0.98); }

.btn-line {
  background: rgba(240, 240, 238, 0.03);
  border-color: var(--hair-2);
  color: var(--fg);
}
.btn-line .chip { background: rgba(240, 240, 238, 0.08); }
.btn-line:hover {
  border-color: var(--hair-volt);
  background: var(--volt-dim);
  color: var(--volt);
}

.btn-lg { padding: 18px 32px; font-size: 1.02rem; }
.btn-lg .chip { width: 30px; height: 30px; margin-right: -14px; }

.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
}

/* text link with drawn underline */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--fg);
  position: relative;
  padding-bottom: 3px;
}
.tlink::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--volt);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.5s var(--ease-snap);
}
.tlink:hover { color: var(--volt); }
.tlink:hover::after { transform: scaleX(1); }
.tlink .chip {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(240, 240, 238, 0.07);
  font-size: 0.75rem;
  transition: transform 0.45s var(--ease-snap), background 0.3s;
}
.tlink:hover .chip { transform: translate(2px, -2px); background: var(--volt-dim); }

/* ── double-bezel card system ─────────────────────── */
/* outer shell: machined tray. inner core: the glass plate. */
.shell {
  background: rgba(240, 240, 238, 0.025);
  border: 1px solid var(--hair);
  border-radius: var(--r-outer);
  padding: 7px;
}
.core {
  background: linear-gradient(175deg, var(--surface-2) 0%, var(--surface) 55%);
  border: 1px solid var(--hair);
  border-radius: var(--r-inner);
  box-shadow: inset 0 1px 0 rgba(240, 240, 238, 0.05);
  height: 100%;
}

/* ── header — floating island ─────────────────────── */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 18px 22px 0;
  pointer-events: none;
  transition: padding 0.5s var(--ease-snap);
}
.nav {
  pointer-events: auto;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 10px 22px;
  border-radius: 20px;
  background: rgba(12, 12, 11, 0.72);
  border: 1px solid var(--hair);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(240, 240, 238, 0.05);
  transition: box-shadow 0.4s, background 0.4s;
}
header.site.scrolled { padding-top: 10px; }
header.site.scrolled .nav {
  background: rgba(11, 11, 10, 0.85);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(240, 240, 238, 0.05);
}
.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo img { height: 28px; width: auto; transition: transform 0.4s var(--ease-pop); }
.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}
.nav-links > a {
  color: var(--fg-2);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  transition: color 0.25s, background 0.25s;
}
.nav-links > a:hover { color: var(--fg); background: rgba(240, 240, 238, 0.05); }
.nav-links > a.active { color: var(--volt); }

.nav-links > a.nav-track {
  color: var(--volt);
  border: 1px solid var(--hair-volt);
  background: var(--volt-dim);
  padding: 8px 16px;
  margin-left: 6px;
}
.nav-links > a.nav-track:hover {
  background: var(--volt);
  color: #0a0a0a;
  box-shadow: 0 8px 24px -8px rgba(201, 255, 61, 0.6);
}

.nav-cta { display: flex; align-items: center; gap: 8px; margin-left: 10px; }
.nav-cta .btn { padding: 11px 19px; font-size: 0.88rem; }
.nav-mobile-cta { display: none; }

.nav-toggle {
  display: none;
  position: relative;
  width: 42px; height: 42px;
  background: rgba(240, 240, 238, 0.04);
  border: 1px solid var(--hair);
  border-radius: 13px;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.6px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-snap), opacity 0.25s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav {
    padding: 9px 10px 9px 18px;
    /* backdrop-filter turns .nav into the containing block for the
       fixed menu overlay — kill it on mobile, solid bg instead */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(11, 11, 10, 0.95);
  }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 90px 30px 40px;
    background: rgba(8, 8, 8, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease-snap), visibility 0.45s;
  }
  .nav-open .nav-links { opacity: 1; visibility: visible; }
  .nav-links > a {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    padding: 16px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--hair);
    background: none;
    transform: translateY(26px);
    opacity: 0;
    transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out), color 0.25s;
  }
  .nav-open .nav-links > a { transform: none; opacity: 1; }
  .nav-open .nav-links > a:nth-child(1) { transition-delay: 0.06s; }
  .nav-open .nav-links > a:nth-child(2) { transition-delay: 0.11s; }
  .nav-open .nav-links > a:nth-child(3) { transition-delay: 0.16s; }
  .nav-open .nav-links > a:nth-child(4) { transition-delay: 0.21s; }
  .nav-open .nav-links > a:nth-child(5) { transition-delay: 0.26s; }
  .nav-open .nav-links > .nav-mobile-cta { transition-delay: 0.34s; }
  .nav-links > a:hover { background: none; }
  .nav-links > a.nav-track {
    border: none; background: none; color: var(--volt); margin: 0; padding: 16px 6px;
  }
  .nav-links > a.nav-track:hover { background: none; color: var(--volt); box-shadow: none; }
  .nav-mobile-cta {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    transform: translateY(26px);
    opacity: 0;
    transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
  }
  .nav-open .nav-mobile-cta { transform: none; opacity: 1; }
  .nav-mobile-cta .btn { flex: 1; justify-content: center; }
}

/* ── sections ─────────────────────────────────────── */
section { padding: var(--s-9) 0; position: relative; }
section.tight { padding: var(--s-7) 0; }
.rule-top { border-top: 1px solid var(--hair); }
.sec-head { max-width: 780px; margin-bottom: var(--s-6); }
.sec-head .lede { margin-top: var(--s-3); }
/* section index number — quiet editorial marker */
.sec-head .idx {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--fg-3);
  margin-bottom: var(--s-3);
}
.sec-head .idx::after {
  content: '';
  display: inline-block;
  width: 44px; height: 1px;
  background: var(--hair-2);
  margin-left: 14px;
  vertical-align: middle;
}

/* ── reveal system ────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; filter: none; }

/* hero line masks */
.ln { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.ln > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hero.loaded .ln > span { transform: none; }
.hero.loaded .ln:nth-child(1) > span { transition-delay: 0.1s; }
.hero.loaded .ln:nth-child(2) > span { transition-delay: 0.2s; }
.hero.loaded .ln:nth-child(3) > span { transition-delay: 0.3s; }

.hero .tag, .hero .lede, .hero .hero-btns, .hero .hero-facts {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.hero.loaded .tag { opacity: 1; transform: none; transition-delay: 0.02s; }
.hero.loaded .lede { opacity: 1; transform: none; transition-delay: 0.42s; }
.hero.loaded .hero-btns { opacity: 1; transform: none; transition-delay: 0.54s; }
.hero.loaded .hero-facts { opacity: 1; transform: none; transition-delay: 0.66s; }

/* ── hero ─────────────────────────────────────────── */
.hero {
  padding: calc(84px + var(--s-5)) 0 138px;
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: var(--s-7);
  align-items: center;
}
.hero h1 { margin-bottom: var(--s-4); }
.hero .lede { margin-bottom: var(--s-4); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: var(--s-4); }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.hero-facts span { display: inline-flex; align-items: center; gap: 9px; }
.hero-facts span::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--volt);
}
/* ghost coordinate line, bottom of hero — quiet instrument detail */
.hero .coords {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: var(--fg-3);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

/* ── waybill (signature object) ───────────────────── */
.waybill {
  max-width: 470px;
  margin-left: auto;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1.1s var(--ease-out) 0.35s, transform 1.1s var(--ease-out) 0.35s;
}
.hero.loaded .waybill { opacity: 1; transform: none; }
.waybill .core { overflow: hidden; }

.wb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-2);
  background: rgba(240, 240, 238, 0.02);
}
.wb-head .live { display: inline-flex; align-items: center; gap: 8px; color: var(--volt); }
.wb-head .live i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--volt);
  position: relative;
}
.wb-head .live i::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--volt);
  animation: liveRing 2s var(--ease-out) infinite;
}
@keyframes liveRing {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.wb-code {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 20px 12px;
}
.wb-code .code {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.wb-code .code small {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--fg-3);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.wb-barcode {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 32px;
  position: relative;
  overflow: hidden;
}
.wb-barcode i { display: block; width: 2px; background: var(--fg); height: 100%; opacity: 0.85; }
.wb-barcode i:nth-child(3n) { width: 4px; }
.wb-barcode i:nth-child(4n) { height: 70%; }
.wb-barcode i:nth-child(5n) { width: 1.5px; }
.wb-barcode i:nth-child(7n) { height: 85%; }
.wb-barcode::after {
  content: '';
  position: absolute;
  top: -4px; bottom: -4px;
  width: 2px;
  left: -6px;
  background: var(--volt);
  box-shadow: 0 0 10px rgba(201, 255, 61, 0.9);
  animation: scanSweep 5s ease-in-out infinite;
}
@keyframes scanSweep {
  0%, 55% { left: -6px; opacity: 0; }
  60% { opacity: 1; }
  85% { left: calc(100% + 4px); opacity: 1; }
  90%, 100% { left: calc(100% + 4px); opacity: 0; }
}

.wb-meta {
  padding: 4px 20px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}
.wb-meta .f { font-size: 0.85rem; line-height: 1.45; }
.wb-meta .f small {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 3px;
}
.wb-meta .f b { font-weight: 500; color: var(--fg); }

.wb-tear { border-top: 1px dashed var(--hair-2); margin: 2px 14px 0; }

.wb-log {
  padding: 16px 20px 54px;
  font-family: var(--f-mono);
  font-size: 0.76rem;
  min-height: 150px;
  position: relative;
}
.wb-log .lg {
  display: flex;
  gap: 14px;
  padding: 5px 0;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.wb-log .lg.in { opacity: 1; transform: none; }
.wb-log .lg .t { color: var(--fg-3); flex-shrink: 0; }
.wb-log .lg .d { color: var(--fg-2); }
.wb-log .lg .d b { color: var(--volt); font-weight: 500; }

.wb-stamp {
  position: absolute;
  right: 18px; bottom: 16px;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--volt);
  border: 1.5px solid var(--volt);
  border-radius: 6px;
  padding: 7px 13px;
  transform: rotate(-6deg) scale(1.5);
  opacity: 0;
  transition: transform 0.22s var(--ease-pop), opacity 0.22s;
}
.wb-stamp.in { transform: rotate(-6deg) scale(1); opacity: 1; }

/* ── marquee strips ───────────────────────────────── */
.areas {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  padding: 17px 0;
  background: var(--bg-raise);
  position: relative;
}
.areas::before, .areas::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.areas::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.areas::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.areas-track {
  display: flex;
  gap: 40px;
  width: max-content;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  animation: areasMove 44s linear infinite;
  will-change: transform;
}
.areas-rev .areas-track { animation-direction: reverse; }
.areas-track span { display: inline-flex; align-items: center; gap: 40px; white-space: nowrap; }
.areas-track span::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--hair-2); }
.areas-track b { color: var(--volt); font-weight: 500; }
@keyframes areasMove { to { transform: translateX(-50%); } }
.areas:hover .areas-track { animation-play-state: paused; }

/* ── stats ────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: var(--s-4) var(--s-4) var(--s-4) var(--s-4);
  border-left: 1px solid var(--hair);
  position: relative;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stat .n em { font-style: normal; color: var(--volt); font-size: 0.5em; letter-spacing: 0; margin-left: 2px; }
.stat .l {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 14px;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; row-gap: var(--s-5); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--hair); padding-top: var(--s-4); }
  .stat:first-child { border-top: 0; padding-top: 0; }
}

/* ── services bento ───────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bento .shell { transition: transform 0.55s var(--ease-snap); }
.bento .shell:hover { transform: translateY(-5px); }
.b-warehouse { grid-column: span 7; }
.b-sameday { grid-column: span 5; }
.b-express { grid-column: span 5; }
.b-cod { grid-column: span 7; }

.bcard {
  padding: var(--s-5) var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}
.bcard .b-tag {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: auto;
  padding-bottom: var(--s-4);
}
.bcard h3 { margin-bottom: 10px; font-size: 1.5rem; }
.bcard p { color: var(--fg-2); font-size: 0.95rem; max-width: 46ch; text-wrap: pretty; }
/* big ghost number, bottom-right */
.bcard .b-num {
  position: absolute;
  right: 18px; top: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 240, 238, 0.09);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s;
}
.bento .shell:hover .b-num { -webkit-text-stroke-color: rgba(201, 255, 61, 0.35); }
/* volt keyline that draws on hover */
.bcard::after {
  content: '';
  position: absolute;
  left: var(--s-5); right: var(--s-5); bottom: 0;
  height: 1px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-snap);
}
.bento .shell:hover .bcard::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .b-warehouse, .b-sameday, .b-express, .b-cod { grid-column: span 1; }
  .bcard { min-height: 0; padding: var(--s-4); }
  .bcard .b-tag { padding-bottom: var(--s-3); }
}

/* ── how it works — route ─────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-7);
  align-items: start;
}
.split > .sticky { position: sticky; top: 120px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--s-5); }
  .split > .sticky { position: static; }
}

.route { position: relative; padding-left: 46px; }
.route::before {
  content: '';
  position: absolute;
  left: 15px; top: 14px; bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--volt) 0%, var(--hair-2) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease-snap);
}
.route.in::before { transform: scaleY(1); }
.route-stop { position: relative; padding: 0 0 var(--s-5); }
.route-stop:last-child { padding-bottom: 0; }
.route-stop::before {
  content: '';
  position: absolute;
  left: -39px; top: 5px;
  width: 15px; height: 15px;
  background: var(--bg);
  border: 1px solid var(--hair-2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.45s var(--ease-pop), border-color 0.3s, background 0.3s;
}
.route-stop.hot::before { background: var(--volt); border-color: var(--volt); box-shadow: 0 0 16px rgba(201, 255, 61, 0.5); }
.route.in .route-stop::before { transform: scale(1); }
.route-stop { opacity: 0; transform: translateX(-16px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.route.in .route-stop { opacity: 1; transform: none; }
.route.in .route-stop:nth-child(1) { transition-delay: 0.1s; }
.route.in .route-stop:nth-child(1)::before { transition-delay: 0.15s; }
.route.in .route-stop:nth-child(2) { transition-delay: 0.34s; }
.route.in .route-stop:nth-child(2)::before { transition-delay: 0.39s; }
.route.in .route-stop:nth-child(3) { transition-delay: 0.58s; }
.route.in .route-stop:nth-child(3)::before { transition-delay: 0.63s; }
.route.in .route-stop:nth-child(4) { transition-delay: 0.82s; }
.route.in .route-stop:nth-child(4)::before { transition-delay: 0.87s; }

.route-stop .rt {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--volt);
  display: block;
  margin-bottom: 7px;
}
.route-stop h4 { font-size: 1.18rem; margin-bottom: 6px; }
.route-stop p { color: var(--fg-2); font-size: 0.95rem; max-width: 46ch; }

/* ── coverage map ─────────────────────────────────── */
.map-wrap {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: var(--s-4);
  align-items: stretch;
}
.map-frame .core { padding: 14px; position: relative; overflow: hidden; }
.map-frame .core::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201, 255, 61, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 255, 61, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.khi-map { width: 100%; height: auto; display: block; position: relative; }
.map-sea { fill: rgba(90, 150, 200, 0.4); font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.3em; }
.map-zones circle { fill: var(--volt); opacity: 0.65; }
.map-zones text { fill: var(--fg-2); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; }
.map-route {
  fill: none;
  stroke: var(--volt);
  stroke-width: 1.8;
  stroke-dasharray: 5 7;
  opacity: 0.65;
  animation: routeFlow 1.5s linear infinite;
  filter: drop-shadow(0 0 3px rgba(201, 255, 61, 0.4));
}
@keyframes routeFlow { to { stroke-dashoffset: -24; } }
.map-hub .hub-core { fill: var(--volt); }
.map-hub .hub-icon { fill: #0a0a0a; }
.map-hub .hub-ping {
  fill: none;
  stroke: var(--volt);
  stroke-width: 1.5;
  transform-origin: center;
  animation: hubPing 2.4s var(--ease-out) infinite;
}
@keyframes hubPing {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.map-hub .hub-label {
  fill: var(--volt);
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
/* pause SVG loops until visible */
[data-reveal] .map-route, [data-reveal] .hub-ping { animation-play-state: paused; }
[data-reveal].in .map-route, [data-reveal].in .hub-ping { animation-play-state: running; }

.map-side { display: flex; flex-direction: column; gap: 12px; }
.map-side .shell { flex: 0 0 auto; }
.map-stat { padding: 18px 22px; }
.map-stat .ms-n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--volt);
  font-variant-numeric: tabular-nums;
}
.map-stat .ms-l {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 8px;
}
.map-note { font-size: 0.9rem; color: var(--fg-2); line-height: 1.7; padding: 4px 6px; }
@media (max-width: 900px) {
  .map-wrap { grid-template-columns: 1fr; }
  .map-side { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .map-note, .map-side .tlink { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .map-side { grid-template-columns: 1fr; }
}

/* ── dispatch board ───────────────────────────────── */
.board-sec { background: var(--bg-raise); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--s-4);
}
.board-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}
.board-demo {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.board-demo b { color: var(--volt); animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.board {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  border-top: 1px solid var(--hair-2);
  perspective: 600px;
}
.board-row {
  display: grid;
  grid-template-columns: 64px 132px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid var(--hair);
  transform-origin: top;
  backface-visibility: hidden;
}
.board-row.flip { animation: flipIn 0.5s var(--ease-snap) both; }
@keyframes flipIn {
  from { transform: rotateX(-86deg); opacity: 0; }
  to { transform: rotateX(0); opacity: 1; }
}
.board-row .bt { color: var(--fg-3); }
.board-row .bc { color: var(--fg); font-weight: 500; letter-spacing: 0.04em; }
.board-row .ba { color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; }
.board-row .bs {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid currentColor;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.board-row .bs.go { color: var(--volt); }
.board-row .bs.ok { color: var(--volt); background: var(--volt-dim); }
.board-row .bs.pk { color: #ffc14d; }
.board-row .bs.rc { color: var(--fg-3); }
@media (max-width: 700px) {
  .board { font-size: 0.72rem; }
  .board-row { grid-template-columns: 48px 100px 1fr; gap: 10px; }
  .board-row .bs { grid-column: 3; justify-self: end; grid-row: 1; }
  .board-row .ba { grid-column: 2 / 4; grid-row: 2; }
  .board-row .bc { grid-row: 1; }
}

/* ── technology devices ───────────────────────────── */
.tech { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 900px) { .tech { grid-template-columns: 1fr; } }
.device .core { overflow: hidden; display: flex; flex-direction: column; }
.d-bar {
  padding: 13px 18px;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg-3);
  background: rgba(240, 240, 238, 0.02);
}
.d-bar .dots { display: flex; gap: 5px; }
.d-bar .dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--hair-2); }
.d-bar .dots i:first-child { background: var(--volt); opacity: 0.7; }
.d-body { padding: 22px 20px; font-family: var(--f-mono); font-size: 0.8rem; flex: 1; }
.d-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--hair);
  color: var(--fg-2);
}
.d-row:first-child { border-top: 0; padding-top: 0; }
.d-row span:last-child { color: var(--volt); }
.d-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.d-kpi { border: 1px solid var(--hair); border-radius: 10px; padding: 12px; }
.d-kpi .v { font-family: var(--f-mono); font-weight: 600; font-size: 1.3rem; color: var(--volt); font-variant-numeric: tabular-nums; }
.d-kpi .l { font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin-top: 4px; }
.d-cap { padding: 15px 20px; border-top: 1px solid var(--hair); }
/* device rows type in on reveal */
[data-reveal] .d-row { opacity: 0; transform: translateY(8px); transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out); }
[data-reveal].in .d-row { opacity: 1; transform: none; }
[data-reveal].in .d-row:nth-child(1) { transition-delay: 0.25s; }
[data-reveal].in .d-row:nth-child(2) { transition-delay: 0.4s; }
[data-reveal].in .d-row:nth-child(3) { transition-delay: 0.55s; }
[data-reveal].in .d-row:nth-child(4) { transition-delay: 0.7s; }
.pillx {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  border: 1px solid currentColor;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ── founding band ────────────────────────────────── */
.founding { text-align: left; }
.founding .inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-6);
  align-items: center;
}
@media (max-width: 900px) { .founding .inner { grid-template-columns: 1fr; gap: var(--s-4); } }
.founding .stamp-plate { padding: var(--s-5); }
.founding .stamp-plate .micro { display: block; margin-bottom: 18px; color: var(--volt); }
.founding .stamp-plate ul { list-style: none; display: grid; gap: 12px; }
.founding .stamp-plate li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 0.95rem; color: var(--fg-2);
}
.founding .stamp-plate li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--volt); flex-shrink: 0;
  transform: translateY(-2px);
}

/* ── comparison ───────────────────────────────────── */
.compare-wrap .core { overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; min-width: 660px; }
.compare th, .compare td {
  padding: 17px 22px;
  text-align: left;
  border-bottom: 1px solid var(--hair);
  font-size: 0.93rem;
  color: var(--fg-2);
}
.compare td:first-child { color: var(--fg); }
.compare thead th {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  border-bottom: 1px solid var(--hair-2);
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .hl-col { background: rgba(201, 255, 61, 0.06); color: var(--fg); font-weight: 500; }
.compare thead .hl-col { color: var(--volt); }
.compare .n { color: #b0705e; }
/* rows cascade on reveal */
[data-reveal] .compare tbody tr { opacity: 0; transform: translateX(-12px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
[data-reveal].in .compare tbody tr { opacity: 1; transform: none; }
[data-reveal].in .compare tbody tr:nth-child(1) { transition-delay: 0.05s; }
[data-reveal].in .compare tbody tr:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].in .compare tbody tr:nth-child(3) { transition-delay: 0.15s; }
[data-reveal].in .compare tbody tr:nth-child(4) { transition-delay: 0.2s; }
[data-reveal].in .compare tbody tr:nth-child(5) { transition-delay: 0.25s; }
[data-reveal].in .compare tbody tr:nth-child(6) { transition-delay: 0.3s; }
[data-reveal].in .compare tbody tr:nth-child(7) { transition-delay: 0.35s; }
[data-reveal].in .compare tbody tr:nth-child(8) { transition-delay: 0.4s; }

/* ── pricing ──────────────────────────────────────── */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .prices { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.price-card { position: relative; transition: transform 0.55s var(--ease-snap); }
.price-card:hover { transform: translateY(-5px); }
.price-card .core { padding: var(--s-5) var(--s-4) var(--s-4); display: flex; flex-direction: column; }
.price-card.featured .shell { border-color: var(--hair-volt); background: rgba(201, 255, 61, 0.04); }
.price-card.featured .core { border-color: var(--hair-volt); }
.p-flag {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--volt);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 6px 20px -6px rgba(201, 255, 61, 0.55);
}
.p-tier {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.p-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  margin: 10px 0 2px;
}
.p-range {
  color: var(--fg-2);
  font-size: 0.9rem;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--hair-2);
  margin-bottom: 20px;
}
.price-card ul { list-style: none; margin-bottom: var(--s-4); flex: 1; display: grid; gap: 4px; align-content: start; }
.price-card li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 0.93rem;
  color: var(--fg-2);
}
.price-card li::before {
  content: '';
  position: absolute;
  left: 2px; top: 13px;
  width: 10px; height: 5px;
  border-left: 1.5px solid var(--volt);
  border-bottom: 1.5px solid var(--volt);
  transform: rotate(-45deg);
}
.price-card .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; color: var(--fg-3); font-size: 0.9rem; margin-top: var(--s-4); }

/* ── calculator ───────────────────────────────────── */
.calc-shell .core {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-6);
  padding: var(--s-5);
}
@media (max-width: 900px) {
  .calc-shell .core { grid-template-columns: 1fr; gap: var(--s-4); padding: var(--s-4); }
}
.calc-field { margin-bottom: var(--s-5); }
.calc-field:last-child { margin-bottom: 0; }
.calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
}
.calc-field label b {
  font-size: 1.15rem;
  color: var(--fg);
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
input[type=range].range {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 3px;
  background: var(--hair-2);
  border-radius: 2px;
  outline: none;
}
input[type=range].range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--volt);
  border: 4px solid #0a0a0a;
  box-shadow: 0 0 0 1px var(--hair-volt), 0 0 14px rgba(201, 255, 61, 0.4);
  cursor: grab;
}
input[type=range].range::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--volt);
  border: 4px solid #0a0a0a;
  box-shadow: 0 0 0 1px var(--hair-volt), 0 0 14px rgba(201, 255, 61, 0.4);
  cursor: grab;
}
.calc-out { display: grid; gap: 10px; align-content: start; }
.calc-tile {
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  background: rgba(240, 240, 238, 0.015);
}
.calc-tile .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.calc-tile .num.tick { animation: numTick 0.3s var(--ease-pop); }
@keyframes numTick {
  0% { transform: scale(1.1); color: var(--volt); }
  100% { transform: scale(1); }
}
.calc-tile .lbl { font-size: 0.82rem; color: var(--fg-2); text-align: right; }
.calc-note {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  color: var(--fg-3);
  font-family: var(--f-mono);
  line-height: 1.8;
}

/* ── trust ────────────────────────────────────────── */
.trust-list { list-style: none; display: grid; gap: 10px; }
.trust-list li .core {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
}
.trust-list .chk {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--volt-dim);
  border: 1px solid var(--hair-volt);
  position: relative;
  transform: scale(0) rotate(-40deg);
  transition: transform 0.45s var(--ease-pop);
}
.trust-list .chk::after {
  content: '';
  position: absolute;
  left: 7px; top: 8px;
  width: 10px; height: 5px;
  border-left: 1.5px solid var(--volt);
  border-bottom: 1.5px solid var(--volt);
  transform: rotate(-45deg);
}
[data-reveal].in .chk { transform: scale(1) rotate(0); }
[data-reveal].in li:nth-child(1) .chk { transition-delay: 0.15s; }
[data-reveal].in li:nth-child(2) .chk { transition-delay: 0.28s; }
[data-reveal].in li:nth-child(3) .chk { transition-delay: 0.41s; }
[data-reveal].in li:nth-child(4) .chk { transition-delay: 0.54s; }
.trust-list p { font-size: 0.96rem; color: var(--fg-2); }
.trust-list p b { color: var(--fg); font-weight: 500; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.faq { border-top: 1px solid var(--hair-2); }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--volt); }
.faq summary .ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 1px solid var(--hair-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--fg-2);
  transition: transform 0.4s var(--ease-snap), background 0.3s, color 0.3s, border-color 0.3s;
}
.faq details[open] summary { color: var(--volt); }
.faq details[open] summary .ico {
  transform: rotate(45deg);
  background: var(--volt);
  color: #0a0a0a;
  border-color: var(--volt);
}
.faq .a { padding: 0 44px 26px 4px; color: var(--fg-2); max-width: 62ch; font-size: 0.96rem; }
.faq details[open] .a { animation: faqOpen 0.4s var(--ease-out) both; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* ── final CTA — the volt inversion ───────────────── */
.cta-band {
  background: linear-gradient(170deg, #d6ff5c 0%, var(--volt) 40%, var(--volt-deep) 100%);
  color: #0a0a0a;
  padding: var(--s-8) 0;
  position: relative;
  overflow: clip;
}
.cta-band::before {
  content: 'RXK';
  position: absolute;
  right: -3%; bottom: -18%;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(12rem, 26vw, 24rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10, 10, 10, 0.12);
  pointer-events: none;
  user-select: none;
}
.cta-band h2 {
  color: #0a0a0a;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}
.cta-band .lede { color: rgba(10, 10, 10, 0.68); margin: var(--s-3) 0 var(--s-5); }
.cta-band .micro { color: rgba(10, 10, 10, 0.55); margin-bottom: var(--s-3); display: inline-block; }
.cta-band .btn-fill {
  background: #0a0a0a;
  color: var(--volt);
  box-shadow: 0 14px 34px -10px rgba(10, 10, 10, 0.5);
}
.cta-band .btn-fill .chip { background: rgba(201, 255, 61, 0.16); }
.cta-band .btn-fill:hover { box-shadow: 0 20px 44px -10px rgba(10, 10, 10, 0.6); }
.cta-band .btn-line {
  border-color: rgba(10, 10, 10, 0.35);
  background: rgba(10, 10, 10, 0.05);
  color: #0a0a0a;
}
.cta-band .btn-line .chip { background: rgba(10, 10, 10, 0.1); }
.cta-band .btn-line:hover { background: #0a0a0a; color: var(--volt); border-color: #0a0a0a; }

/* ── footer ───────────────────────────────────────── */
footer.site {
  border-top: 1px solid var(--hair);
  padding: var(--s-7) 0 0;
  font-size: 0.92rem;
  color: var(--fg-2);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid img { height: 30px; margin-bottom: 18px; }
.footer-grid h4 {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.footer-grid a { display: block; padding: 5px 0; transition: color 0.2s, transform 0.25s var(--ease-snap); }
.footer-grid a:hover { color: var(--volt); transform: translateX(3px); }
.footer-tel {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--volt);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.footer-tel:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--hair);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ── quick-quote modal ────────────────────────────── */
.rx-qq-veil {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.rx-qq-veil.on { display: flex; animation: veilIn 0.3s var(--ease-out) both; }
@keyframes veilIn { from { opacity: 0; } to { opacity: 1; } }
.rx-qq {
  width: 100%;
  max-width: 440px;
  background: rgba(240, 240, 238, 0.03);
  border: 1px solid var(--hair);
  border-radius: var(--r-outer);
  padding: 7px;
  animation: qqIn 0.5s var(--ease-out) both;
}
@keyframes qqIn {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.rx-qq-inner {
  background: linear-gradient(175deg, var(--surface-2), var(--surface));
  border: 1px solid var(--hair);
  border-radius: var(--r-inner);
  box-shadow: inset 0 1px 0 rgba(240, 240, 238, 0.05);
  overflow: hidden;
}
.rx-qq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.rx-qq-x {
  background: rgba(240, 240, 238, 0.05);
  border: 1px solid var(--hair);
  border-radius: 50%;
  width: 30px; height: 30px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--fg);
  transition: background 0.25s, transform 0.3s var(--ease-snap);
}
.rx-qq-x:hover { background: rgba(240, 240, 238, 0.12); transform: rotate(90deg); }
.rx-qq-body { padding: 26px 24px 28px; }
.rx-qq-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.rx-qq-sub { color: var(--fg-2); font-size: 0.92rem; margin-bottom: 22px; }
.rx-qq-field { margin-bottom: 16px; }
.rx-qq-field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.rx-qq-field input, .rx-qq-field select {
  width: 100%;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--hair-2);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 0.96rem;
  font-family: var(--f-body);
  color: var(--fg);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.rx-qq-field input:focus, .rx-qq-field select:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px var(--volt-dim);
}
.rx-qq-field input::placeholder { color: var(--fg-3); }
.rx-qq-send {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(160deg, #d6ff5c 0%, var(--volt) 45%, var(--volt-deep) 100%);
  border: none;
  border-radius: var(--r-pill);
  padding: 16px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: #0a0a0a;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 1px 0 rgba(122, 160, 0, 0.9),
    0 14px 34px -12px rgba(201, 255, 61, 0.45);
  transition: transform 0.4s var(--ease-snap), box-shadow 0.4s var(--ease-snap);
}
.rx-qq-send:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 0 rgba(122, 160, 0, 0.9),
    0 20px 44px -12px rgba(201, 255, 61, 0.55);
}
.rx-qq-send:active { transform: scale(0.98); }
.rx-qq-send:disabled { opacity: 0.6; transform: none; cursor: default; }
.rx-qq-err { display: none; margin-top: 14px; color: var(--alert); font-size: 0.88rem; }
.rx-qq-err a { color: var(--volt); text-decoration: underline; }
.rx-qq-done { display: none; text-align: center; padding: 18px 4px 10px; }
.rx-qq-done .big {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--volt);
}
.rx-qq-done p { color: var(--fg-2); font-size: 0.92rem; }

/* ── whatsapp float ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: var(--z-float);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(160deg, #d6ff5c, var(--volt-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(122, 160, 0, 0.9), 0 12px 30px -8px rgba(201, 255, 61, 0.45);
  transition: transform 0.4s var(--ease-snap), box-shadow 0.4s var(--ease-snap);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 2px 0 rgba(122, 160, 0, 0.9), 0 18px 40px -8px rgba(201, 255, 61, 0.6);
}
.whatsapp-float svg { width: 26px; height: 26px; }
@media (max-width: 700px) {
  .whatsapp-float {
    width: 50px; height: 50px; right: 18px; bottom: 18px;
    opacity: 0; pointer-events: none;
    transform: translateY(14px);
  }
  .whatsapp-float.show { opacity: 1; pointer-events: auto; transform: none; }
}

/* ── scroll progress ──────────────────────────────── */
#scrollProg {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: calc(var(--z-modal) + 1);
  background: var(--volt);
  box-shadow: 0 0 10px rgba(201, 255, 61, 0.5);
}

/* ── mobile rhythm ────────────────────────────────── */
@media (max-width: 700px) {
  body { font-size: 15.5px; }
  .wrap { padding: 0 20px; }
  section { padding: var(--s-7) 0; }
  section.tight { padding: var(--s-6) 0; }
  .sec-head { margin-bottom: var(--s-5); }
  .hero { padding: calc(86px + var(--s-5)) 0 var(--s-6); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero-btns .btn { flex: 1 1 100%; justify-content: center; }
  .hero .coords { display: none; }
  .waybill { max-width: 100%; margin: 0; }
  .wb-log { min-height: 0; }
  h1 { font-size: clamp(2.7rem, 12vw, 3.8rem); }
  h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .cta-band { padding: var(--s-7) 0; }
  footer.site { padding-top: var(--s-6); }
  .btn-lg { padding: 16px 26px; }
}
@media (max-width: 430px) {
  .wb-meta { grid-template-columns: 1fr; }
  .wb-code .code { font-size: 1.2rem; }
}

/* ── performance ──────────────────────────────────── */
section[data-cv] { content-visibility: auto; contain-intrinsic-size: auto 640px; }

/* page-to-page fade */
body { animation: pageIn 0.3s ease-out; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body.page-out { opacity: 0; transition: opacity 0.15s ease-in; }

/* ── reduced motion — everything lands settled ────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], .hero .tag, .hero .lede, .hero .hero-btns, .hero .hero-facts, .waybill {
    opacity: 1; transform: none; filter: none;
  }
  .ln > span { transform: none; }
  .route::before { transform: none; }
  .route-stop, [data-reveal] .compare tbody tr, [data-reveal] .d-row { opacity: 1; transform: none; }
  .route-stop::before, .trust-list .chk { transform: none; }
  .wb-barcode::after, .whatsapp-float::before { display: none; }
  #scrollProg { display: none; }
  section[data-cv] { content-visibility: visible; }
}

/* ════════════════════════════════════════════════════
   MOTION+ v41 — choreography layer
   ════════════════════════════════════════════════════ */

/* nav links: volt underline wipes in from the left */
.nav-links > a:not(.nav-track) { position: relative; }
.nav-links > a:not(.nav-track)::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 5px;
  height: 1.5px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-snap);
}
.nav-links > a:not(.nav-track):hover::after,
.nav-links > a:not(.nav-track).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* headlines: words rise out of masked slots, staggered */
[data-reveal] h2 .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
[data-reveal] h2 .w > span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.85s var(--ease-out);
  transition-delay: calc(var(--wi) * 55ms);
}
[data-reveal].in h2 .w > span { transform: none; }

/* cursor spotlight on machined trays */
.shell { position: relative; }
.shell::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-outer);
  background: radial-gradient(340px circle at var(--sx, 50%) var(--sy, 50%),
              rgba(201, 255, 61, 0.07), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-snap);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .shell:hover::after { opacity: 1; }
}

/* stats: volt underline sweeps after the count lands */
.stat { position: relative; overflow: hidden; }
.stat::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--volt), transparent 85%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-snap) 0.5s;
}
[data-reveal].in.stat::after, .stat[data-reveal].in::after { transform: scaleX(1); }

/* waybill: settles, then breathes — float on the core so the
   pointer tilt on the outer shell never fights it */
.hero.loaded .waybill .core { animation: wbBreathe 7s ease-in-out 2.2s infinite; }
@keyframes wbBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* featured plan levitates until touched */
@media (hover: hover) and (pointer: fine) {
  .price-card.featured { animation: featDrift 4.2s ease-in-out infinite alternate; }
  .price-card.featured:hover { animation-play-state: paused; }
}
@keyframes featDrift {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

/* marquees shear with scroll velocity (JS sets --skew) */
.areas { transform: skewY(var(--skew, 0deg)); will-change: transform; }

/* ambient light breathes very slowly */
body::before { animation: auraBreathe 11s ease-in-out infinite; }
@keyframes auraBreathe {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

/* buttons: sheen sweep across the volt fill on hover */
.btn-fill, .rx-qq-send { position: relative; overflow: hidden; }
.btn-fill::before, .rx-qq-send::before {
  content: '';
  position: absolute;
  top: -40%; bottom: -40%;
  width: 34px; left: -60px;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-22deg);
  opacity: 0;
  pointer-events: none;
}
.btn-fill:hover::before, .rx-qq-send:hover::before { animation: sheen 0.6s var(--ease-snap); }
@keyframes sheen {
  from { left: -60px; opacity: 1; }
  to { left: 120%; opacity: 1; }
}

/* device mocks tilt toward the cursor a touch */
@media (hover: hover) and (pointer: fine) {
  .device { transition: transform 0.5s var(--ease-snap); }
  .device:hover { transform: perspective(900px) rotateX(1.2deg) translateY(-4px); }
}

/* magnetic pull is applied inline by JS; give it a smooth release */
.mag-release { transition: transform 0.5s var(--ease-snap); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] h2 .w > span { transform: none; }
  .shell::after { display: none; }
  .stat::after { transform: scaleX(1); }
  .hero.loaded .waybill .core, .price-card.featured, body::before { animation: none; }
  .btn-fill::before, .rx-qq-send::before { display: none; }
  .areas { transform: none; }
}

/* ════════════════════════════════════════════════════
   INNER PAGES v42 — page hero, forms, info cards
   ════════════════════════════════════════════════════ */

.page-hero { padding: calc(96px + var(--s-6)) 0 var(--s-6); }
.page-hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  max-width: 17ch;
  margin-bottom: var(--s-4);
}
.page-hero .lede { max-width: 58ch; }

/* editorial pull statement */
.pull-sec { padding: var(--s-8) 0; }
.pull {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--fg-2);
  max-width: 30ch;
  text-wrap: balance;
}
.pull b { color: var(--fg); font-weight: 600; }
.pull .u { position: relative; white-space: nowrap; color: var(--fg); }
.pull .u::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 3px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-snap) 0.6s;
}
[data-reveal].in .pull .u::after, .pull[data-reveal].in .u::after { transform: scaleX(1); }

/* lead form */
.form-card .core { padding: clamp(26px, 3.5vw, 42px); }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 600px) { .f-grid { grid-template-columns: 1fr; } }
.f-field { margin-bottom: 20px; }
.f-field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 9px;
}
.f-field input, .f-field select, .f-field textarea {
  width: 100%;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--hair-2);
  border-radius: 13px;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px var(--volt-dim);
}
.f-field input::placeholder, .f-field textarea::placeholder { color: var(--fg-3); }
.f-field textarea { min-height: 120px; resize: vertical; }
.f-err {
  display: none;
  margin-top: 16px;
  color: var(--alert, #ff6a45);
  font-size: 0.92rem;
  border: 1px solid rgba(255, 106, 69, 0.35);
  border-radius: 13px;
  padding: 13px 16px;
}
.f-err a { color: var(--volt); }
.f-done { display: none; text-align: center; padding: 30px 10px; }
.f-done .big {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  color: var(--volt);
  margin-bottom: 10px;
}
.f-done p { color: var(--fg-2); }
.stamp-chip {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt);
  border: 1.5px solid var(--volt);
  border-radius: 6px;
  padding: 6px 12px;
  transform: rotate(-3deg);
}

/* contact info cards */
.info-stack { display: grid; gap: 12px; align-content: start; }
.info-card .core { padding: 20px 24px; }
.info-card .lab {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 8px;
}
.info-card a, .info-card p { font-weight: 500; color: var(--fg); }
.info-card a:hover { color: var(--volt); }
.info-card .shell, .info-card { transition: transform 0.45s var(--ease-snap); }
.info-stack .shell:hover { transform: translateY(-3px); }

/* ════════════════════════════════════════════════════
   MOTION MAX v43 — the loud layer
   ════════════════════════════════════════════════════ */

/* page curtain wipe — volt sweep on every load + exit */
#pageWipe, #pageWipe2 {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  transform: translateY(0);
}
#pageWipe { background: var(--volt); }
#pageWipe2 { background: #0a0a0a; z-index: 899; }
body.wipe-in #pageWipe { animation: wipeUp 0.7s var(--ease-snap) both; }
body.wipe-in #pageWipe2 { animation: wipeUp 0.7s 0.08s var(--ease-snap) both; }
@keyframes wipeUp { from { transform: translateY(0); } to { transform: translateY(-101%); } }
body.wipe-out #pageWipe { animation: wipeDown 0.4s var(--ease-snap) both; }
@keyframes wipeDown { from { transform: translateY(101%); } to { transform: translateY(0); } }

/* orb cursor — volt dot + spring ring (fine pointers only) */
#cxDot, #cxRing {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 950;
  border-radius: 50%;
}
#cxDot {
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--volt);
  box-shadow: 0 0 10px 2px rgba(201, 255, 61, 0.7);
}
#cxRing {
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(201, 255, 61, 0.45);
  transition: width 0.3s var(--ease-pop), height 0.3s var(--ease-pop),
              margin 0.3s var(--ease-pop), background 0.3s, opacity 0.25s;
}
body.cx-hot #cxRing {
  width: 62px; height: 62px;
  margin: -31px 0 0 -31px;
  background: rgba(201, 255, 61, 0.09);
  border-color: rgba(201, 255, 61, 0.8);
}
body.cx-down #cxRing { width: 26px; height: 26px; margin: -13px 0 0 -13px; }
body.cx-hide #cxDot, body.cx-hide #cxRing { opacity: 0; }
@media (hover: none), (prefers-reduced-motion: reduce) { #cxDot, #cxRing { display: none; } }

/* 3D tilt on trays (JS sets --rx/--ry) */
@media (hover: hover) and (pointer: fine) {
  .shell {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.25s var(--ease-out);
  }
  .bento .shell:hover { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-5px); }
}

/* volt shimmer runs across every .hl */
.hl {
  background: linear-gradient(100deg, var(--volt) 0%, var(--volt) 42%, #f2ffca 50%, var(--volt) 58%, var(--volt) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hlShimmer 4.5s ease-in-out infinite;
}
@keyframes hlShimmer {
  0%, 55% { background-position: 110% 0; }
  85%, 100% { background-position: -30% 0; }
}

/* hero volt specks drift upward */
.speck {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--volt);
  opacity: 0;
  pointer-events: none;
  animation: speckRise linear infinite;
  box-shadow: 0 0 8px rgba(201, 255, 61, 0.6);
}
@keyframes speckRise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  15% { opacity: 0.4; }
  80% { opacity: 0.15; }
  100% { transform: translateY(-38vh) scale(1); opacity: 0; }
}

/* bento cards tumble in harder */
.bento [data-reveal] {
  transform: translateY(48px) rotate(1.4deg) scale(0.97);
}
.bento [data-reveal].in { transform: none; }

/* section index line draws + text decodes (JS scrambles) */
.sec-head .idx::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-snap) 0.25s;
}
[data-reveal].in .idx::after, .sec-head[data-reveal].in .idx::after { transform: scaleX(1); }

/* button click ripple */
.btn { position: relative; overflow: hidden; }
.btn .rip {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripGo 0.55s var(--ease-out) forwards;
  pointer-events: none;
}
.btn-line .rip { background: rgba(201, 255, 61, 0.25); }
@keyframes ripGo { to { transform: scale(2.6); opacity: 0; } }

/* chips rotate on hover */
.btn:hover .chip, .tlink:hover .chip { transform: translate(2px, -2px) rotate(45deg); }

/* CTA band: moving conveyor stripe up top + drifting glow */
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, #0a0a0a 0 26px, transparent 26px 46px);
  animation: conveyor 1.4s linear infinite;
  opacity: 0.85;
}
@keyframes conveyor { to { transform: translateX(46px); } }

/* whatsapp float breathes */
.whatsapp-float { animation: waBreathe 3.2s ease-in-out infinite; }
@keyframes waBreathe {
  0%, 100% { box-shadow: 0 1px 0 rgba(122, 160, 0, 0.9), 0 12px 30px -8px rgba(201, 255, 61, 0.45); }
  50% { box-shadow: 0 1px 0 rgba(122, 160, 0, 0.9), 0 12px 44px -6px rgba(201, 255, 61, 0.8); }
}

/* nav drops in on load */
header.site { animation: navDrop 0.8s 0.15s var(--ease-out) backwards; }
header.site.nav-open { animation: none; }
@keyframes navDrop {
  from { transform: translateY(-24px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* footer links get volt arrows sliding in */
.footer-grid a { position: relative; }
.footer-grid a::before {
  content: '→';
  position: absolute;
  left: -18px;
  color: var(--volt);
  opacity: 0;
  transition: opacity 0.25s, transform 0.35s var(--ease-snap);
  transform: translateX(-6px);
}
.footer-grid a:hover::before { opacity: 1; transform: none; }

/* reduced motion kills the loud layer */
@media (prefers-reduced-motion: reduce) {
  #pageWipe, #pageWipe2 { display: none; }
  .hl { animation: none; background: none; -webkit-text-fill-color: var(--volt); color: var(--volt); }
  .speck { display: none; }
  .bento [data-reveal] { transform: none; }
  .cta-band::after, .whatsapp-float, header.site { animation: none; }
  .shell { transform: none !important; }
}

/* ════════════════════════════════════════════════════
   DELIVERY SCENE v44 — courier run + box blast
   ════════════════════════════════════════════════════ */

/* the road strip along the hero floor */
.courier-run {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 124px;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.courier-run .road {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  height: 1px;
  background: var(--hair);
}
.courier-run .road::after {
  content: '';
  position: absolute;
  inset: -1px 0;
  background: repeating-linear-gradient(90deg, rgba(201, 255, 61, 0.35) 0 18px, transparent 18px 42px);
  animation: roadDash 1.1s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
}
@keyframes roadDash { to { transform: translateX(-42px); } }
.hero.loaded .courier-run .road::after { opacity: 0.35; }

/* the customer's door at 76% */
.courier-run .door {
  position: absolute;
  bottom: 19px;
  left: 76%;
  width: 30px; height: 42px;
  border: 1.5px solid var(--hair-2);
  border-bottom: none;
  border-radius: 9px 9px 0 0;
  background: #0e0e0d;
  z-index: 3;
}
.courier-run .door::before {
  content: '';
  position: absolute;
  bottom: -1px; left: -9px; right: -9px;
  height: 2px;
  background: var(--hair-2);
  border-radius: 2px;
}
.courier-run .door::after {
  content: '';
  position: absolute;
  right: 5px; top: 20px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--volt);
  opacity: 0.8;
}

/* the courier — 16s loop across the viewport */
.courier {
  position: absolute;
  bottom: 17px;
  left: 0;
  width: 118px; height: 64px;
  transform: translateX(-150px);
  animation: courierGo 16s linear infinite 2s;
  will-change: transform;
}
@keyframes courierGo {
  0% { transform: translateX(-140px); }
  100% { transform: translateX(calc(100vw + 40px)); }
}
.courier .bob {
  width: 100%; height: 100%;
  animation: courierBob 0.5s ease-in-out infinite alternate;
}
@keyframes courierBob {
  from { transform: translateY(0); }
  to { transform: translateY(-2.5px); }
}
.courier svg { width: 100%; height: 100%; display: block; overflow: visible; }
.courier .wheel {
  transform-origin: center;
  transform-box: fill-box;
  animation: wheelSpin 0.55s linear infinite;
}
@keyframes wheelSpin { to { transform: rotate(360deg); } }
/* exhaust puffs */
.courier .puff {
  transform-box: fill-box;
  transform-origin: center;
  animation: puffOut 0.9s ease-out infinite;
  opacity: 0;
}
.courier .puff.p2 { animation-delay: 0.45s; }
@keyframes puffOut {
  0% { opacity: 0.5; transform: translateX(0) scale(0.5); }
  100% { opacity: 0; transform: translateX(-16px) scale(1.4); }
}

/* the parcel drop — its own 16s timeline, synced to the courier */
.drop-parcel {
  position: absolute;
  bottom: 64px;
  left: 76%;
  margin-left: 6px;
  width: 17px; height: 14px;
  border-radius: 2.5px;
  background: linear-gradient(90deg, #b07f4e 0 41%, var(--volt) 41% 59%, #b07f4e 59% 100%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 2;
  animation: parcelDrop 16s linear infinite 2s;
  will-change: transform, opacity;
}
@keyframes parcelDrop {
  0%, 75.2% { opacity: 0; transform: translateY(0) rotate(0); }
  75.8% { opacity: 1; transform: translateY(2px) rotate(10deg); }
  78% { opacity: 1; transform: translateY(30px) rotate(-4deg); }
  80%, 100% { opacity: 0; transform: translateY(40px) rotate(0); }
}
/* delivered tick pops over the door after the drop */
.drop-tick {
  position: absolute;
  bottom: 76px;
  left: 76%;
  margin-left: -34px;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #0a0a0a;
  background: var(--volt);
  border-radius: 999px;
  padding: 4px 9px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px) scale(0.6);
  animation: tickPop 16s var(--ease-pop) infinite 2s;
  box-shadow: 0 6px 18px -6px rgba(201, 255, 61, 0.6);
}
@keyframes tickPop {
  0%, 80.5% { opacity: 0; transform: translateY(8px) scale(0.6); }
  82.5% { opacity: 1; transform: translateY(0) scale(1.05); }
  84% { transform: translateY(0) scale(1); }
  91% { opacity: 1; }
  95%, 100% { opacity: 0; transform: translateY(-10px) scale(0.9); }
}

@media (max-width: 700px) {
  .courier-run { height: 96px; }
  .courier { width: 86px; height: 47px; bottom: 13px; }
  .courier-run .road { bottom: 14px; }
  .courier-run .door { bottom: 15px; height: 34px; width: 24px; left: 72%; }
  .drop-parcel { left: 72%; bottom: 50px; }
  .drop-tick { left: 72%; bottom: 60px; }
  .hero .coords { display: none; }
}

/* box blast — little parcels erupt (JS positions them) */
.blast-box {
  position: fixed;
  width: 15px; height: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b07f4e 0 40%, var(--volt) 40% 60%, #b07f4e 60% 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 850;
  animation: blastFly 1s var(--ease-out) forwards;
}
@keyframes blastFly {
  0% { transform: translate(0, 0) rotate(0) scale(0.5); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translate(var(--bx), var(--by)) rotate(var(--br)) scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .courier, .drop-parcel, .drop-tick, .blast-box, .courier-run .road::after { display: none; animation: none; }
}

/* ════════════════════════════════════════════════════
   MOTION ULTRA v49 — 30+ new effects
   ════════════════════════════════════════════════════ */

/* 01 logo wiggle on hover */
.nav-logo:hover img { animation: logoWiggle 0.5s var(--ease-pop); }
@keyframes logoWiggle {
  0% { transform: rotate(0); } 30% { transform: rotate(-4deg) scale(1.05); }
  65% { transform: rotate(2.5deg) scale(1.03); } 100% { transform: rotate(0); }
}

/* 02 nav link letters hop (JS wraps .nl spans) */
.nav-links a .nl { display: inline-block; transition: transform 0.35s var(--ease-pop); transition-delay: calc(var(--i) * 22ms); }
.nav-links a:hover .nl { transform: translateY(-3px); }

/* 03 quote button idle halo pulse */
.nav-cta .btn-fill { animation: quotePulse 4.2s ease-in-out infinite; }
@keyframes quotePulse {
  0%, 82%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 1px 0 rgba(122,160,0,.9), 0 14px 34px -12px rgba(201,255,61,.45); }
  88% { box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 1px 0 rgba(122,160,0,.9), 0 0 0 9px rgba(201,255,61,0.12), 0 14px 34px -12px rgba(201,255,61,.55); }
}

/* 04 hero headline tracking settles on load */
.hero h1 { letter-spacing: -0.02em; transition: letter-spacing 1.6s var(--ease-out) 0.3s; }
.hero.loaded h1 { letter-spacing: -0.045em; }

/* 05 coords line gets a blinking block caret */
.hero .coords::after {
  content: '▮';
  margin-left: 8px;
  color: var(--volt);
  animation: caretBlink 1.1s step-end infinite;
}
@keyframes caretBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* 06 barcode dances on hover */
.wb-barcode:hover i { animation: barDance 0.5s ease-in-out infinite alternate; }
.wb-barcode:hover i:nth-child(2n) { animation-delay: 0.1s; }
.wb-barcode:hover i:nth-child(3n) { animation-delay: 0.2s; }
@keyframes barDance { from { transform: scaleY(1); } to { transform: scaleY(0.55); } }

/* 07 (JS) tracking code scrambles on hover */

/* 08 typing caret on the newest waybill log line */
.wb-log .lg.in:has(+ .lg:not(.in)) .d::after,
.wb-log .lg.in:last-of-type .d::after {
  content: '▍';
  margin-left: 4px;
  color: var(--volt);
  animation: caretBlink 0.9s step-end infinite;
}

/* 09 marquee cities pop on hover */
.areas-track span { transition: color 0.2s, transform 0.3s var(--ease-pop); cursor: default; }
.areas-track span:hover { color: var(--volt); transform: scale(1.07); }

/* 10 stat numerals wobble on hover */
.stat:hover .n { animation: statWobble 0.45s var(--ease-pop); }
@keyframes statWobble {
  0% { transform: scale(1); } 35% { transform: scale(1.06) rotate(-1deg); }
  70% { transform: scale(0.99) rotate(0.5deg); } 100% { transform: scale(1); }
}

/* 11 bento ghost numerals drift */
.bcard .b-num { animation: numDrift 7s ease-in-out infinite alternate; }
.bento .shell:nth-child(2) .b-num { animation-delay: 1.4s; }
.bento .shell:nth-child(3) .b-num { animation-delay: 2.8s; }
.bento .shell:nth-child(4) .b-num { animation-delay: 4.2s; }
.bento .shell:nth-child(5) .b-num { animation-delay: 5.6s; }
.bento .shell:nth-child(6) .b-num { animation-delay: 7s; }
@keyframes numDrift { from { transform: translateY(0); } to { transform: translateY(-8px); } }

/* 12 bento cards breathe volt at the seam, staggered */
.bento .core { animation: cardBreath 8s ease-in-out infinite; }
.bento .shell:nth-child(2) .core { animation-delay: 2s; }
.bento .shell:nth-child(3) .core { animation-delay: 4s; }
.bento .shell:nth-child(4) .core { animation-delay: 6s; }
@keyframes cardBreath {
  0%, 88%, 100% { border-color: var(--hair); }
  94% { border-color: rgba(201, 255, 61, 0.25); }
}

/* 13 route: a pulse travels down the drawn line (JS inserts .route-pulse) */
.route-pulse {
  position: absolute;
  left: 13px; top: 14px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 10px rgba(201, 255, 61, 0.9);
  opacity: 0;
}
.route.in .route-pulse { animation: routeTravel 4.5s ease-in-out 2s infinite; }
@keyframes routeTravel {
  0% { top: 3%; opacity: 0; }
  8% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 96%; opacity: 0; }
}

/* 14 route stops ping on hover */
.route-stop:hover::after {
  content: '';
  position: absolute;
  left: -39px; top: 5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1px solid var(--volt);
  animation: stopPing 0.9s var(--ease-out) infinite;
}
@keyframes stopPing { from { transform: scale(1); opacity: 0.8; } to { transform: scale(2.4); opacity: 0; } }

/* 15 radar sweep over the Gulshan hub */
.map-frame .core::after {
  content: '';
  position: absolute;
  left: calc(58.75% - 110px); top: calc(31.25% - 110px);
  width: 220px; height: 220px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(201, 255, 61, 0.1), transparent 70deg);
  animation: radarSpin 4.5s linear infinite;
  pointer-events: none;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
[data-reveal] .map-frame .core::after { animation-play-state: paused; }
[data-reveal].in .map-frame .core::after { animation-play-state: running; }

/* 16 zone dots twinkle */
.map-zones circle { animation: twinkle 3.4s ease-in-out infinite; }
.map-zones circle:nth-of-type(2n) { animation-delay: 0.8s; }
.map-zones circle:nth-of-type(3n) { animation-delay: 1.6s; }
.map-zones circle:nth-of-type(5n) { animation-delay: 2.4s; }
@keyframes twinkle { 0%, 100% { opacity: 0.65; } 50% { opacity: 0.2; } }

/* 17 dispatch board: new rows flash volt */
.board-row { position: relative; }
.board-row.flip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 255, 61, 0.14), transparent 45%);
  animation: rowFlash 1s ease-out forwards;
  pointer-events: none;
}
@keyframes rowFlash { to { opacity: 0; } }

/* 18 "out for delivery" pills pulse */
.board-row .bs.go { animation: goPulse 2s ease-in-out infinite; }
@keyframes goPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 255, 61, 0); }
  50% { box-shadow: 0 0 12px -2px rgba(201, 255, 61, 0.5); }
}

/* 19 device screens get a scanline sweep */
.device .core { position: relative; }
.device .core::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 44px; top: -60px;
  background: linear-gradient(180deg, transparent, rgba(201, 255, 61, 0.045), transparent);
  animation: scanDown 6s ease-in-out infinite;
  pointer-events: none;
}
.device:nth-child(2) .core::after { animation-delay: 3s; }
@keyframes scanDown {
  0%, 55% { top: -60px; opacity: 0; }
  60% { opacity: 1; }
  95%, 100% { top: 110%; opacity: 0; }
}

/* 20 (JS) portal-mock KPI numbers tick live */

/* 21 founding bullets pulse in sequence */
.founding .stamp-plate li::before { animation: bulletPulse 2.6s ease-in-out infinite; }
.founding .stamp-plate li:nth-child(2)::before { animation-delay: 0.65s; }
.founding .stamp-plate li:nth-child(3)::before { animation-delay: 1.3s; }
.founding .stamp-plate li:nth-child(4)::before { animation-delay: 1.95s; }
@keyframes bulletPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,255,61,0); } 50% { box-shadow: 0 0 8px 1px rgba(201,255,61,0.6); } }

/* 22 compare rows: volt edge slides in on hover */
.compare tbody tr { transition: background 0.2s; }
.compare tbody tr:hover { background: rgba(201, 255, 61, 0.03); }
.compare tbody tr:hover td:first-child { box-shadow: inset 3px 0 0 var(--volt); }
.compare tbody td:first-child { transition: box-shadow 0.3s var(--ease-snap); }

/* 23 volt cells pop as rows cascade in */
[data-reveal] .compare td.hl-col { transform: scale(0.92); transition: transform 0.5s var(--ease-pop); transition-delay: inherit; }
[data-reveal].in .compare td.hl-col { transform: scale(1); }

/* 24 featured plan: breathing aura */
.price-card.featured { position: relative; }
.price-card.featured::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 30px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(201, 255, 61, 0.09), transparent 70%);
  animation: auraBreathe 5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

/* 25 pricing checkmarks pop in, staggered */
[data-reveal] .price-card li::before { transform: rotate(-45deg) scale(0); transition: transform 0.4s var(--ease-pop); }
[data-reveal].in .price-card li:nth-child(1)::before { transform: rotate(-45deg) scale(1); transition-delay: 0.25s; }
[data-reveal].in .price-card li:nth-child(2)::before { transform: rotate(-45deg) scale(1); transition-delay: 0.37s; }
[data-reveal].in .price-card li:nth-child(3)::before { transform: rotate(-45deg) scale(1); transition-delay: 0.49s; }
[data-reveal].in .price-card li:nth-child(4)::before { transform: rotate(-45deg) scale(1); transition-delay: 0.61s; }

/* 26 calculator labels pop when values change (JS adds .pop) */
.calc-field label b.pop { animation: valPop 0.3s var(--ease-pop); }
@keyframes valPop { 40% { transform: scale(1.15); color: var(--volt); } }

/* 27 trust checks spin on hover */
.trust-list .chk { transition: transform 0.6s var(--ease-snap); }
.trust-list .core:hover .chk { transform: rotate(360deg) scale(1.08); }

/* 28 FAQ questions glide right when opened */
.faq summary { transition: color 0.25s, padding-left 0.35s var(--ease-snap); }
.faq details[open] summary { padding-left: 12px; }

/* 29 the giant RXK ghost drifts */
.cta-band::before { animation: rxkDrift 10s ease-in-out infinite alternate; }
@keyframes rxkDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(-26px, -14px); }
}

/* 30 CTA button glow pulses on the volt band */
.cta-band .btn-fill { animation: ctaGlow 3.4s ease-in-out infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 14px 34px -10px rgba(10, 10, 10, 0.5); }
  50% { box-shadow: 0 20px 48px -8px rgba(10, 10, 10, 0.75); }
}

/* 31 footer columns rise in, staggered (JS adds .in to footer) */
footer.site .footer-grid > div { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
footer.site.in .footer-grid > div { opacity: 1; transform: none; }
footer.site.in .footer-grid > div:nth-child(2) { transition-delay: 0.1s; }
footer.site.in .footer-grid > div:nth-child(3) { transition-delay: 0.2s; }
footer.site.in .footer-grid > div:nth-child(4) { transition-delay: 0.3s; }

/* 32 whatsapp float: halo ring every few seconds */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--volt);
  opacity: 0;
  animation: waPing 5.5s var(--ease-out) infinite 2s;
}
@keyframes waPing {
  0%, 80% { transform: scale(1); opacity: 0; }
  84% { opacity: 0.8; }
  96%, 100% { transform: scale(1.9); opacity: 0; }
}

/* 33 scroll progress bar: glowing head */
#scrollProg::after {
  content: '';
  position: absolute;
  right: -2px; top: -2px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 12px 3px rgba(201, 255, 61, 0.7);
}
#scrollProg { position: fixed; }

/* 34 section hairlines draw themselves (JS adds .line-in) */
section.rule-top { border-top-color: transparent; position: relative; }
section.rule-top::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--hair);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s var(--ease-snap);
}
section.rule-top.line-in::before { transform: scaleX(1); }

/* 35 cursor dot swells + brightens over interactive elements */
#cxDot { transition: width 0.25s var(--ease-pop), height 0.25s var(--ease-pop), margin 0.25s var(--ease-pop), background 0.25s; }
body.cx-hot #cxDot { width: 11px; height: 11px; margin: -5.5px 0 0 -5.5px; background: #f2ffca; }

/* 36 hero CTA chip nudges for attention */
.hero .btn-fill .chip { animation: chipNudge 5s ease-in-out infinite 3s; }
@keyframes chipNudge {
  0%, 90%, 100% { transform: translate(0, 0); }
  93% { transform: translate(3px, -3px); }
  96% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta .btn-fill, .hero .coords::after, .wb-barcode:hover i, .wb-log .lg .d::after,
  .bcard .b-num, .bento .core, .route-pulse, .route-stop:hover::after, .map-core::after,
  .map-zones circle, .board-row.flip::after, .board-row .bs.go, .device .core::after,
  .founding .stamp-plate li::before, .price-card.featured::after, .cta-band::before,
  .cta-band .btn-fill, .whatsapp-float::before, .hero .btn-fill .chip { animation: none; }
  footer.site .footer-grid > div { opacity: 1; transform: none; }
  section.rule-top { border-top-color: var(--hair); }
  section.rule-top::before { display: none; }
  [data-reveal] .compare td.hl-col, [data-reveal] .price-card li::before { transform: none; }
}
