/* =========================================================
   3@1 STARK SYSTEM — comic × high-tech (glass, HUD, holo)
   Direction A "Stark edition" applied site-wide.
   ========================================================= */

:root {
  --red: #D5232F; --red-hot: #ff4d59;
  --navy: #003179; --ink: #0a1530; --ink-deep: #041233; --abyss: #000a20;
  --yellow: #FFC510; --orange: #FF9523;
  --cyan: #00AEEF; --magenta: #EC008C;
  --font-d: "Barlow Condensed", sans-serif;
  --font-b: "Open Sans", system-ui, sans-serif;
  --font-m: ui-monospace, "SF Mono", Menlo, monospace;
  --glass: rgba(255,255,255,.07);
  --glass-strong: rgba(255,255,255,.1);
  --glass-border: rgba(255,255,255,.16);
  --blur: blur(14px);
  --halftone-light: radial-gradient(circle, rgba(255,255,255,.26) 1.4px, transparent 1.5px);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0; font-family: var(--font-b); color: #fff; line-height: 1.65;
  background: linear-gradient(180deg, var(--ink-deep), var(--ink) 40%, var(--abyss));
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: #9fd9ff; text-decoration: none; }
a:hover { color: var(--yellow); }
p { margin: 0 0 1rem; }
.container { width: min(var(--maxw), 92%); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }

/* ---------- shared atmosphere ---------- */
section { position: relative; overflow: hidden; }
.atmo::before {           /* faint sunburst — huge square so edges never show */
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: var(--burst-x, 50%); top: var(--burst-y, 50%);
  width: 230vmax; height: 230vmax; margin: -115vmax 0 0 -115vmax;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,.025) 0deg 5deg, transparent 5deg 16deg);
  -webkit-mask-image: radial-gradient(circle, transparent 70px, #000 280px);
          mask-image: radial-gradient(circle, transparent 70px, #000 280px);
  animation: spin 480s linear infinite;
}
.burst { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.burst::before {
  content: ""; position: absolute;
  left: var(--burst-x, 50%); top: var(--burst-y, 50%);
  width: 230vmax; height: 230vmax; margin: -115vmax 0 0 -115vmax;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(127,216,255,.04) 0deg 5deg, transparent 5deg 16deg);
  -webkit-mask-image: radial-gradient(circle, transparent 70px, #000 280px);
          mask-image: radial-gradient(circle, transparent 70px, #000 280px);
  animation: spin 480s linear infinite;
}
/* rotation centre sits behind the hero heading */
.shero.atmo { --burst-x: 26%; --burst-y: 42%; }
.page-hero { --burst-x: 24%; --burst-y: 60%; }
section > .container { position: relative; z-index: 2; }
@keyframes spin { to { transform: rotate(360deg); } }

.gridfloor {
  position: absolute; left: -10%; right: -10%; bottom: 0; height: 32%; z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0,174,239,.16) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(0deg, rgba(0,174,239,.14) 0 1px, transparent 1px 46px);
  transform: perspective(600px) rotateX(58deg); transform-origin: bottom;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 55%);
          mask-image: linear-gradient(180deg, transparent, #000 55%);
  pointer-events: none;
}
.scanline {
  position: absolute; left: 0; right: 0; top: -4px; height: 2px; z-index: 3; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0,174,239,.7), transparent);
  box-shadow: 0 0 18px rgba(0,174,239,.55);
  animation: scan 10s linear infinite; opacity: .45;
}
@keyframes scan { 0% { top: -2%; } 100% { top: 102%; } }
@media (prefers-reduced-motion: reduce) {
  .atmo::before, .burst::before, .scanline, .ssec__head::after { animation: none; }
}

/* ---------- HUD primitives ---------- */
.hud { position: relative; }
.hud::before {
  content: ""; position: absolute; inset: -8px; pointer-events: none;
  background:
    linear-gradient(rgba(0,174,239,.9), rgba(0,174,239,.9)) 0 0 / 16px 2px,
    linear-gradient(rgba(0,174,239,.9), rgba(0,174,239,.9)) 0 0 / 2px 16px,
    linear-gradient(rgba(0,174,239,.9), rgba(0,174,239,.9)) 100% 0 / 16px 2px,
    linear-gradient(rgba(0,174,239,.9), rgba(0,174,239,.9)) 100% 0 / 2px 16px,
    linear-gradient(rgba(0,174,239,.9), rgba(0,174,239,.9)) 0 100% / 16px 2px,
    linear-gradient(rgba(0,174,239,.9), rgba(0,174,239,.9)) 0 100% / 2px 16px,
    linear-gradient(rgba(0,174,239,.9), rgba(0,174,239,.9)) 100% 100% / 16px 2px,
    linear-gradient(rgba(0,174,239,.9), rgba(0,174,239,.9)) 100% 100% / 2px 16px;
  background-repeat: no-repeat; opacity: 0;
  filter: drop-shadow(0 0 6px rgba(0,174,239,.5));
  transition: opacity .25s ease;
}
.hud--on::before, .hud:hover::before { opacity: .5; }
.hud-label {
  font-family: var(--font-m); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--yellow); display: flex; align-items: center; gap: .5rem; margin: 0;
  text-shadow: 0 0 14px rgba(255,197,16,.35);
}
.hud-label::before { content: "▸"; color: var(--cyan); }

/* ---------- glass primitives (the "slight blur" everywhere) ---------- */
.glass {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-radius: 20px;
  box-shadow: 0 24px 50px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.13);
}
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 999px; padding: .35rem 1rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--yellow);
}
.pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.08); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 12px; padding: .5rem 1rem; font-weight: 800; font-size: .92rem; color: #fff;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  font-weight: 800; font-family: var(--font-b); font-size: .98rem; line-height: 1;
  padding: .95rem 1.8rem; border-radius: 999px; border: 0; text-decoration: none; color: #fff;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--primary {
  background: linear-gradient(120deg, var(--red), var(--red-hot));
  box-shadow: 0 8px 30px -8px rgba(213,35,47,.75), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(213,35,47,.9), inset 0 1px 0 rgba(255,255,255,.25); color: #fff; }
.btn--ghost {
  background: rgba(255,255,255,.07); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.13); box-shadow: 0 0 24px rgba(255,255,255,.12); color: #fff; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- nav ---------- */
.snav {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(90deg,
    rgba(255,255,255,.88) 0%, rgba(244,250,255,.86) 30%,
    rgba(224,240,251,.85) 60%, rgba(203,228,247,.85) 100%);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13,90,168,.28);
  box-shadow: 0 6px 24px -8px rgba(2,14,43,.35);
}
.snav::before { /* CMYK hairline */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), #EC008C, var(--yellow), #111);
  opacity: .85;
}
.snav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: .6rem 0; }
.snav__brand { flex-shrink: 0; }
.snav__brand img { height: 60px; margin: -7px 0; width: auto; max-width: none; border-radius: 8px; }
.snav__menu { list-style: none; display: flex; align-items: center; gap: .3rem; margin: 0; padding: 0; }
.snav__menu a {
  font-weight: 700; font-size: .86rem; color: rgba(4,20,53,.82); white-space: nowrap;
  padding: .5rem .7rem; border-radius: 999px;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.snav__menu a:hover { color: #04123a; background: rgba(0,49,121,.09); }
.snav__menu a[aria-current="page"] {
  color: #0a1530; background: linear-gradient(120deg, var(--yellow), var(--orange));
  box-shadow: 0 0 18px rgba(255,197,16,.45);
}
.snav__menu a.snav__cta, .snav__menu a.snav__cta:hover { color: #fff; background: linear-gradient(120deg, var(--red), var(--red-hot)); }
.snav__cta { padding: .6rem 1.3rem !important; font-size: .88rem; box-shadow: 0 4px 14px -6px rgba(213,35,47,.45), inset 0 1px 0 rgba(255,255,255,.25); }
.snav__cta:hover { box-shadow: 0 6px 18px -6px rgba(213,35,47,.55), inset 0 1px 0 rgba(255,255,255,.25); }
.snav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .4rem; }
.snav__toggle span:not(.sr-only) { width: 26px; height: 2.5px; background: #04123a; border-radius: 3px; }
.snav__status { font-family: var(--font-m); font-size: .58rem; letter-spacing: .18em; color: rgba(0,174,239,.75); text-transform: uppercase; white-space: nowrap; }

/* ---------- hero ---------- */
.shero { min-height: 88vh; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; padding: 4.5rem 0 6rem;
  background:
    radial-gradient(700px 480px at 12% 18%, rgba(213,35,47,.3), transparent 60%),
    radial-gradient(820px 560px at 88% 30%, rgba(0,174,239,.26), transparent 65%),
    radial-gradient(640px 500px at 70% 95%, rgba(255,197,16,.18), transparent 60%),
    linear-gradient(165deg, var(--ink-deep) 0%, var(--ink) 60%, #001030 100%);
}
.shero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.shero h1 {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase; line-height: .92;
  font-size: clamp(3rem, 6.2vw, 5rem); margin: 1.1rem 0 1rem;
}
.shero h1 .grad {
  background: linear-gradient(92deg, var(--yellow) 20%, var(--orange) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 22px rgba(255,197,16,.35));
}
.shero__lead { color: rgba(255,255,255,.75); max-width: 47ch; margin-bottom: 1.8rem; }
.shero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.stats { display: flex; gap: 1rem; margin-top: 2.4rem; }
.stat {
  flex: 1; text-align: center; padding: 1.15rem .8rem 1rem; border-radius: 20px;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 24px 50px -28px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.14);
  transition: transform .2s ease, border-color .2s ease;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(255,197,16,.5); }
.stat strong { display: block; font-family: var(--font-d); font-size: 3.4rem; line-height: 1; margin-bottom: .3rem; color: var(--yellow); text-shadow: 0 0 26px rgba(255,197,16,.5); }
.stat span { display: block; font-size: .84rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; line-height: 1.3; color: rgba(255,255,255,.65); }
.shero .hud-label { margin-top: 1.5rem; }

/* hero visual: BIG holo Printiva in arc-reactor rings */
.shero__visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem; min-height: 500px; }
.shero__stage { position: relative; display: grid; place-items: center; width: 100%; flex: 1; margin-top: -2.2rem; }
.arc {
  position: absolute; width: min(520px, 100%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.3) 0%, rgba(0,174,239,.09) 35%, transparent 62%);
  pointer-events: none;
}
.arc::before, .arc::after { content: ""; position: absolute; border-radius: 50%; }
.arc::before { inset: 9%; border: 1.5px dashed rgba(0,174,239,.55); animation: spin 40s linear infinite; }
.arc::after {
  inset: 19%; border: 1px solid rgba(255,197,16,.3); border-top-color: rgba(255,197,16,.9);
  animation: spin 14s linear infinite reverse;
  filter: drop-shadow(0 0 8px rgba(255,197,16,.4));
}
.holo-p { position: relative; display: grid; place-items: center; z-index: 1; }
.holo-p img, .holo-p video {
  width: min(480px, 88vw); position: relative; z-index: 1;
  filter: drop-shadow(0 0 22px rgba(0,174,239,.55)) drop-shadow(0 14px 30px rgba(0,0,0,.45));
  animation: hover-bob 5.5s ease-in-out infinite;
}
.holo-p::after {
  content: ""; position: absolute; bottom: -20px; width: 62%; height: 26px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,174,239,.7), transparent 70%);
  filter: blur(5px);
}
@keyframes hover-bob { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-14px) rotate(-1deg); } }
@media (prefers-reduced-motion: reduce) { .holo-p img, .holo-p video, .arc::before, .arc::after { animation: none; } }
.shero__chip { position: absolute; bottom: 4%; right: 2%; z-index: 3; font-family: var(--font-m); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: #9fd9ff; }
.shero__chip b { color: #7fd8ff; }

/* ---------- comic strip: franchisee family, bends out of the screen ---------- */
.cstrip { position: relative; z-index: 5; margin: 3.2rem auto -2.2rem; max-width: 1240px; padding: 0 2%; }
.cstrip__scroll { perspective: 1200px; }
.cstrip__tab {
  position: absolute; top: -1.4rem; left: 6%; z-index: 6; margin: 0;
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  font-size: 1rem; color: #0a1530; background: var(--yellow); padding: .18rem .75rem;
  border-radius: 6px; transform: rotate(-2deg); box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.cstrip__track { display: flex; justify-content: center; gap: .9rem; transform-style: preserve-3d; transform: rotateX(18deg); }
.cstrip__panel {
  flex: 0 1 clamp(84px, 10.2vw, 130px); aspect-ratio: 1; margin: 0; overflow: hidden;
  border: 4px solid #fff; border-radius: 10px; background: #0a1530;
  box-shadow: 0 22px 44px -14px rgba(0,0,0,.6), 0 0 0 2px rgba(10,21,48,.55);
}
.cstrip__panel img { width: 100%; height: 100%; object-fit: cover; }
/* the bend: centre pops toward viewer, edges rake away */
.cstrip__panel:nth-child(1) { transform: rotateY(30deg)  translateZ(-30px) rotate(-2deg); }
.cstrip__panel:nth-child(2) { transform: rotateY(22deg)  translateZ(-6px)  rotate(1.5deg); }
.cstrip__panel:nth-child(3) { transform: rotateY(14deg)  translateZ(20px)  rotate(-1deg); }
.cstrip__panel:nth-child(4) { transform: rotateY(6deg)   translateZ(44px)  rotate(1deg); }
.cstrip__panel:nth-child(5) { transform: translateZ(58px) scale(1.05); }
.cstrip__panel:nth-child(6) { transform: rotateY(-6deg)  translateZ(44px)  rotate(-1deg); }
.cstrip__panel:nth-child(7) { transform: rotateY(-14deg) translateZ(20px)  rotate(1deg); }
.cstrip__panel:nth-child(8) { transform: rotateY(-22deg) translateZ(-6px)  rotate(-1.5deg); }
.cstrip__panel:nth-child(9) { transform: rotateY(-30deg) translateZ(-30px) rotate(2deg); }

/* ---------- section scaffolding ---------- */
.ssec { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.ssec__head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; position: relative; padding-bottom: 1.15rem; }
/* moving glow edge — key-focus scan sweep */
.ssec__head::before {
  content: ""; position: absolute; bottom: 0; left: 15%; right: 15%; height: 1px;
  background: rgba(0,174,239,.18);
}
.ssec__head::after {
  content: ""; position: absolute; bottom: -1px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, transparent 40%, rgba(0,174,239,.95) 50%, transparent 60%);
  background-size: 200% 100%; background-repeat: no-repeat;
  filter: drop-shadow(0 0 8px rgba(0,174,239,.7));
  animation: edgescan 6s linear infinite;
}
@keyframes edgescan { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.ssec--light .ssec__head::before { background: rgba(2,114,165,.25); }
.ssec--ember .ssec__head::before { background: rgba(255,197,16,.22); }
.ssec--ember .ssec__head::after {
  background: linear-gradient(90deg, transparent 40%, rgba(255,197,16,.95) 50%, transparent 60%);
  background-size: 200% 100%; background-repeat: no-repeat;
  filter: drop-shadow(0 0 8px rgba(255,197,16,.7));
}
.ssec__title {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase; line-height: .95;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin: .4rem 0 .6rem;
}
.ssec__intro { color: rgba(255,255,255,.65); }
/* dark-blue grounds = hero-style centre-out vignette (brighter core) */
.ssec, .ssec--deep {
  background: radial-gradient(120% 95% at 50% 42%,
    #0d5aa8 0%, #0a4187 22%, #062c66 45%, #041d49 68%, #020e2b 100%);
}

/* service-pillar art (about page): full-bleed top panel on soft blue */
.bcard.bcard--svc { padding-top: 0; }
.bcard__art {
  display: grid; place-items: center; height: 170px;
  margin: 0 -1.5rem 1rem; border-radius: 19px 19px 0 0;
  background: linear-gradient(180deg, #eaf5fe 0%, #cfe6f8 100%);
}
.bcard__art img { max-height: 140px; max-width: 74%; object-fit: contain; }
/* floor-standing devices sit flush on the panel base */
.bcard__art--floor { place-items: end center; }
.bcard__art--floor img { max-height: 150px; }

/* ---------- benefit cards ---------- */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.bcard {
  padding: 1.6rem 1.5rem 1.4rem; border-radius: 20px; position: relative;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bcard:hover { transform: translateY(-4px); border-color: rgba(255,197,16,.45); box-shadow: 0 20px 44px -20px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.12); }
.bcard__num { font-family: var(--font-m); font-size: .62rem; letter-spacing: .2em; color: rgba(0,174,239,.85); }
.bcard h3 { font-family: var(--font-d); text-transform: uppercase; font-size: 1.3rem; margin: .35rem 0 .35rem; color: #fff; }
.bcard p { font-size: .88rem; color: rgba(255,255,255,.62); margin: 0; }

/* ---------- video ---------- */
.vwrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
/* video as a cellphone */
.vframe {
  position: relative; z-index: 4; width: min(420px, 88%); margin-inline: auto;
  margin-block: -120px;
  background: linear-gradient(160deg, #10182e, #060b18);
  border: 1px solid rgba(255,255,255,.18); border-radius: 42px;
  padding: 14px 12px 18px;
  rotate: -5deg;
  box-shadow: 22px 34px 60px -18px rgba(0,0,0,.75), 0 0 44px rgba(0,174,239,.15), inset 0 1px 0 rgba(255,255,255,.15);
}
.vframe::before {   /* camera punch-hole */
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%; background: #000;
  box-shadow: inset 0 0 3px rgba(0,174,239,.7); z-index: 2;
}
.vframe::after {    /* side button */
  content: ""; position: absolute; right: -3px; top: 26%; width: 3px; height: 64px;
  border-radius: 3px; background: rgba(255,255,255,.25);
}
.vframe__screen {
  position: relative; aspect-ratio: 9/16; border-radius: 30px; overflow: hidden; background: #000;
}
.vframe__screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vcopy .ssec__title { text-align: left; }
.vcopy .ssec__intro { margin-bottom: 1.4rem; }

/* ---------- right stuff / get started ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split .ssec__title { text-align: left; }
.steps-h { list-style: none; margin: 1.6rem 0; padding: 0; display: grid; gap: .8rem; counter-reset: sh; }
.steps-h li {
  counter-increment: sh; display: flex; align-items: center; gap: .9rem;
  padding: .85rem 1.1rem; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-weight: 700;
}
.steps-h li::before {
  content: "0" counter(sh);
  font-family: var(--font-m); font-size: .78rem; letter-spacing: .1em; color: var(--yellow);
  text-shadow: 0 0 12px rgba(255,197,16,.6);
}

/* form */
.sform {
  padding: 2rem; border-radius: 24px;
  background: var(--glass-strong); border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.15);
}
.sform h3 { font-family: var(--font-d); text-transform: uppercase; font-size: 1.6rem; margin: 0 0 .4rem; }
.sform > p { font-size: .86rem; color: rgba(255,255,255,.6); }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 700; font-size: .82rem; margin-bottom: .35rem; color: rgba(255,255,255,.8); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; font: inherit; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid var(--glass-border);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: rgba(0,174,239,.7); box-shadow: 0 0 0 3px rgba(0,174,239,.18), 0 0 18px rgba(0,174,239,.25);
}
.sform__fine { font-size: .74rem; color: rgba(255,255,255,.4); margin: .8rem 0 0; text-align: center; }

/* ---------- testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-items: start; }
.tcard {
  padding: 1.6rem; border-radius: 20px; position: relative;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.tcard blockquote { margin: 0 0 1rem; font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.85); }
.tcard blockquote::before { content: "“"; display: block; font-family: var(--font-d); font-size: 3rem; line-height: .4; color: var(--yellow); text-shadow: 0 0 18px rgba(255,197,16,.5); margin: .6rem 0 .7rem; }
.tcard figcaption { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem .6rem; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.55); }
.tcard figcaption::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--cyan), transparent); box-shadow: 0 0 8px rgba(0,174,239,.6); }

/* ---------- partners / footer ---------- */
.partners-s { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; padding: 0 0 1rem; }
.partners-s .hud-label { width: 100%; justify-content: center; margin-bottom: .6rem; }
.pbar {
  height: 10px; border-radius: 999px; margin: 3rem auto 0; max-width: var(--maxw); width: 92%;
  background: repeating-linear-gradient(90deg,
    var(--cyan) 0 54px, var(--magenta) 54px 108px, #FFF200 108px 162px, #10203c 162px 216px,
    var(--red) 216px 270px, #2f7ff7 270px 324px, var(--yellow) 324px 378px);
  box-shadow: 0 0 30px rgba(0,174,239,.3), 0 0 56px rgba(236,0,140,.16);
  position: relative; overflow: hidden;
}
.pbar::after {
  content: ""; position: absolute; inset: 0; width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: sheen 3.6s ease-in-out infinite;
}
@keyframes sheen { 0% { transform: translateX(-120%); } 60%, 100% { transform: translateX(420%); } }

.sfoot { padding: 3.5rem 0 2rem; background: var(--abyss); position: relative; }
.sfoot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.sfoot__brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.sfoot__brand p { font-size: .88rem; color: rgba(255,255,255,.55); max-width: 36ch; }
.sfoot h4 { font-family: var(--font-m); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(0,174,239,.8); margin: 0 0 1rem; }
.sfoot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.sfoot ul a { color: rgba(255,255,255,.7); font-size: .92rem; }
.sfoot ul a:hover { color: var(--yellow); }
.sfoot__bar { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.09); font-size: .78rem; color: rgba(255,255,255,.4); }
.sfoot__bar p { margin: 0; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .shero__inner, .vwrap, .split { grid-template-columns: 1fr; }
  .vframe { margin-block: 0 1.2rem; rotate: -2deg; width: min(320px, 82%); }
  .shero__visual { order: -1; min-height: 380px; }
  .bgrid, .tgrid { grid-template-columns: 1fr 1fr; }
  .stats { flex-wrap: wrap; }
  .stat { min-width: 40%; }
  .vcopy .ssec__title, .split .ssec__title { text-align: center; }
  .sfoot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .snav { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .snav__inner { display: grid; grid-template-columns: 52px 1fr 52px; align-items: center; justify-items: center; }
  .snav__brand { grid-column: 2; }
  .snav__inner .snav__mini {
    display: grid; grid-column: 1; place-items: center; width: 42px; height: 42px;
    border-radius: 12px; border: 1px solid rgba(13,90,168,.3); background: rgba(13,90,168,.07); color: #04123a;
  }
  .snav__mini svg { width: 21px; height: 21px; }
  .snav__toggle { display: flex; grid-column: 3; }
  .snav__menu {
    position: fixed; inset: 0; z-index: 300; flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
    background: radial-gradient(120% 95% at 50% 42%,
      #0d5aa8 0%, #0a4187 22%, #062c66 45%, #041d49 68%, #020e2b 100%);
    padding: 3.2rem 8% 3rem; display: flex; overflow: hidden;
    opacity: 0; transform: translateY(-100%); pointer-events: none;
    transition: transform .38s ease, opacity .3s ease;
  }
  .snav__menu::before { /* radial halftone, full cover */
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: #bfe6ff; opacity: .05;
    -webkit-mask-image: url(../assets/textures/halftone-03.svg); mask-image: url(../assets/textures/halftone-03.svg);
    -webkit-mask-size: cover; mask-size: cover;
    -webkit-mask-position: center; mask-position: center;
  }
  .snav__menu::after { /* sunburst */
    content: ""; position: absolute; left: 50%; top: 40%; pointer-events: none;
    width: 230vmax; height: 230vmax; margin: -115vmax 0 0 -115vmax;
    background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(127,216,255,.04) 0deg 5deg, transparent 5deg 16deg);
    -webkit-mask-image: radial-gradient(circle, transparent 70px, #000 280px);
            mask-image: radial-gradient(circle, transparent 70px, #000 280px);
    animation: spin 480s linear infinite;
  }
  .snav__menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .snav__menu li { width: 100%; text-align: center; position: relative; z-index: 1; opacity: 0; transform: translateY(18px); transition: opacity .3s ease, transform .3s ease; }
  .snav__menu.is-open li { opacity: 1; transform: none; }
  .snav__menu.is-open li:nth-child(3) { transition-delay: .1s; }
  .snav__menu.is-open li:nth-child(4) { transition-delay: .15s; }
  .snav__menu.is-open li:nth-child(5) { transition-delay: .2s; }
  .snav__menu.is-open li:nth-child(6) { transition-delay: .25s; }
  .snav__menu.is-open li:nth-child(7) { transition-delay: .3s; }
  .snav__menu.is-open li:nth-child(8) { transition-delay: .35s; }
  .snav__menu.is-open li:nth-child(9) { transition-delay: .4s; }
  .snav__menu.is-open li:nth-child(10) { transition-delay: .45s; }
  .snav__menu { justify-content: flex-start; padding-top: .5rem; }
  .snav__menu .menu-logo { opacity: 1; transform: none; transition: none; margin-bottom: auto; }
  .menu-logo img { width: min(85vw, 350px); margin: 0 auto; }
  .snav__menu .menu-close-li { position: absolute; top: 1.1rem; right: 5%; left: auto; width: auto; opacity: 1; transform: none; transition: none; z-index: 2; }
  .menu-home { margin-top: auto; }
  .snav__menu .menu-social { margin-top: auto; display: flex; justify-content: center; gap: 1rem; padding: 1rem 0 max(env(safe-area-inset-bottom, 0), .4rem); }
  .menu-social a {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.07); color: #fff;
  }
  .menu-social svg { width: 21px; height: 21px; }
  .snav__menu a {
    display: block; padding: .42rem; border-radius: 14px;
    font-family: var(--font-d); text-transform: uppercase; letter-spacing: .04em;
    font-size: 1.45rem; font-weight: 700; color: #fff;
  }
  .snav__menu a[aria-current="page"] { display: inline-block; padding-inline: 1.4rem; }
  .snav__cta { margin-top: .9rem; display: inline-flex; font-size: 1rem !important; }
  .snav__status { display: none; }
  body.menu-open { overflow: hidden; }
  body.menu-open .snav { backdrop-filter: none; -webkit-backdrop-filter: none; }
  /* burger -> X while open */
  body.menu-open .snav__toggle span:nth-child(1), body.menu-open .hero-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.menu-open .snav__toggle span:nth-child(2), body.menu-open .hero-burger span:nth-child(2) { opacity: 0; }
  body.menu-open .snav__toggle span:nth-child(3), body.menu-open .hero-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .snav__toggle, .hero-burger { position: relative; z-index: 95; }
  body.menu-open .hero-burger { background: rgba(4,20,53,.06); border-color: rgba(4,20,53,.25); }
  body.menu-open .hero-burger span:not(.sr-only) { background: #04123a; }
  .menu-home { display: block; }
  .menu-close-li { position: absolute; top: 1rem; right: 5%; width: auto !important; }
  .menu-close {
    display: grid; place-items: center; width: 46px; height: 46px; cursor: pointer;
    border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.08);
    color: #fff; font-size: 1.7rem; line-height: 1;
  }
  .snav__toggle span, .hero-burger span { transition: transform .2s ease, opacity .2s ease; }
}
@media (max-width: 680px) {
  .bgrid, .tgrid, .vidgrid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .sfoot__grid { grid-template-columns: 1fr; }
  .holo-p img { width: min(320px, 78vw); }
  .cstrip { margin: 2rem 0 -2.2rem; padding-top: .4rem; min-width: 0; width: 100%; }
  .cstrip__scroll { perspective: none; overflow-x: auto; padding-bottom: .5rem; }
  .cstrip__tab { position: static; display: table; margin: 0 auto .6rem; transform: rotate(-2deg); }
  .cstrip__track { transform: none; justify-content: flex-start; }
  .cstrip__panel { flex: 0 0 84px; transform: none !important; }
}

/* ===== v2 refinements (2026-07-06) ===== */

/* cyan-tinted sunburst rays */
.atmo::before {
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(127,216,255,.04) 0deg 5deg, transparent 5deg 16deg);
}
.shero__logo { width: min(100%, 490px); height: auto; position: relative; z-index: 2; filter: drop-shadow(0 12px 30px rgba(0,0,0,.5)); }

/* hero: centre-out vignette, cyan-bright core -> dark navy edges */
.shero {
  background:
    radial-gradient(120% 95% at 50% 42%,
      #0d5aa8 0%, #0a4187 22%, #062c66 45%, #041d49 68%, #020e2b 100%);
}

/* yellow->orange highlight utility (selective use) */
.grad-hl {
  font-style: normal;
  background: linear-gradient(92deg, var(--yellow) 20%, var(--orange) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 16px rgba(255,197,16,.3));
}

/* ---- light sections: soft cyan gradient (no white), flipped ink ---- */
.ssec--light {
  background: radial-gradient(115% 100% at 50% 45%,
    #f6fcff 0%, #e9f6fe 35%, #d8eefb 70%, #c3e3f7 100%);
  color: var(--ink);
}
.ssec--light .ssec__title { color: var(--navy); }
.ssec--light .ssec__intro { color: #3d5878; }
.ssec--light .hud-label { color: #0272a5; }
.ssec--light .bcard, .ssec--light .steps-h li {
  background: rgba(255,255,255,.55); border-color: rgba(0,49,121,.14);
  box-shadow: 0 18px 40px -22px rgba(0,49,121,.35), inset 0 1px 0 rgba(255,255,255,.8);
}
.ssec--light .bcard h3 { color: var(--navy); }
.ssec--light .bcard p { color: #3d5878; }
.ssec--light .bcard__num { color: #0272a5; }
.ssec--light .bcard:hover { border-color: rgba(255,149,35,.6); }
.ssec--light .steps-h li { color: var(--navy); }
.ssec--light .btn--ghost { background: rgba(0,49,121,.08); border-color: rgba(0,49,121,.25); color: var(--navy); }
.ssec--light .btn--ghost:hover { background: rgba(0,49,121,.14); color: var(--navy); }
.ssec--light strong { color: var(--navy) !important; }
/* dark-ground components that land on light sections */
.ssec--light .terr-card {
  background: rgba(255,255,255,.78); border: 1px solid rgba(0,49,121,.14); border-radius: 20px;
  box-shadow: 0 18px 40px -24px rgba(0,32,78,.35);
}
.ssec--light .terr-card h3 { color: var(--navy); }
.ssec--light .terr-card small { color: #3d5878; }
.ssec--light .terr-open { color: #b3121f; border-color: rgba(213,35,47,.5); box-shadow: none; }
.ssec--light .tcard { background: rgba(255,255,255,.8); border-color: rgba(0,49,121,.14); box-shadow: 0 18px 40px -24px rgba(0,32,78,.35); }
.ssec--light .tcard blockquote { color: var(--ink); }
.ssec--light .tcard figcaption { color: #3d5878; }
.ssec--light .tcard figcaption::before { box-shadow: none; }
.ssec--light .tm-role { color: #0272a5; }
.ssec--light .vidgrid .vslot { border-color: rgba(0,49,121,.18); }

/* ---- ember sections: dark red -> 3@1 red, mirroring navy -> cyan ---- */
.ssec--ember {
  background: radial-gradient(115% 100% at 50% 45%,
    #8f1626 0%, #6b0f1c 28%, #430913 55%, #1c0308 100%);
}
.ssec--ember .hud-label { color: rgba(255,120,130,.9); }
.ssec--ember .hud-label::before { color: var(--yellow); }
.ssec--ember .field input:focus {
  border-color: rgba(255,120,130,.7); box-shadow: 0 0 0 3px rgba(213,35,47,.2), 0 0 18px rgba(213,35,47,.3);
}

/* ===== imported halftone textures (masked, tintable, subtle) ===== */
.tex {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: cover; mask-size: cover;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.tex--1 { -webkit-mask-image: url(../assets/textures/halftone-01.svg); mask-image: url(../assets/textures/halftone-01.svg); }
.tex--2 { -webkit-mask-image: url(../assets/textures/halftone-02.svg); mask-image: url(../assets/textures/halftone-02.svg); }
.tex--3 { -webkit-mask-image: url(../assets/textures/halftone-03.svg); mask-image: url(../assets/textures/halftone-03.svg); }
.shero .tex--3, .ssec--ember .tex--3 {
  -webkit-mask-size: 120% auto; mask-size: 120% auto;
  -webkit-mask-position: center; mask-position: center;
}
.tex--flip { transform: scaleY(-1); }
/* tints per ground */
.tex--frost { background: #bfe6ff; opacity: .04; }      /* dark sections */
.tex--navy  { background: var(--navy); opacity: .035; } /* light sections */
.tex--ember { background: #ff8f9a; opacity: .04; }      /* ember section */

/* Printiva peeking over the section edge above the testimonials */
.printiva-peek {
  position: absolute; bottom: -86px; right: 9%; width: min(330px, 40vw); height: auto;
  z-index: 3; pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(0,174,239,.35));
}

#right-stuff { overflow: visible; }   /* let the peeking fingertips hang over the boundary */

/* phone overlaps neighbouring sections */
#video { overflow: visible; }
#video.atmo::before { inset: 0; }

/* ---------- utilities (de-inlined) ---------- */
.container--narrow { max-width: 760px; }
.ssec__intro--left { text-align: left; }
.hl-white { color: #fff; }
.hl-cyan { color: #7fd8ff; }
.ssec__more { text-align: center; margin-top: 2rem; }
.partners-s--left { justify-content: flex-start; }
.ssec__head .hud-label, .partners-s .hud-label { justify-content: center; }
.partners-s--left .hud-label { justify-content: flex-start; }

/* ---------- inner-page hero ---------- */
.page-hero {
  padding: clamp(2.6rem, 6vw, 4.5rem) 0;
  background: radial-gradient(120% 130% at 50% 40%, #0d5aa8 0%, #0a4187 26%, #062c66 52%, #041d49 74%, #020e2b 100%);
}
.page-hero h1 {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase; line-height: .95;
  font-size: clamp(2.4rem, 5vw, 3.8rem); margin: .5rem 0 .4rem;
}
.page-hero__lead { color: rgba(255,255,255,.78); max-width: 56ch; margin: 0; }
.page-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.page-hero__art { margin: 0; }
.page-hero__art img {
  display: block; width: min(100%, 400px); margin-inline: auto;
  border: 6px solid #fff; border-radius: 14px; rotate: 3.5deg;
  box-shadow: 0 26px 60px -24px rgba(0,0,0,.7);
}
.page-hero--overlap { overflow: visible; padding: 3.2rem 0; display: grid; align-items: center; }
.page-hero--overlap .page-hero__art { position: relative; z-index: 5; translate: 0 25px; }
.page-hero--overlap .page-hero__art img { margin-bottom: -2.2rem; }
@media (max-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__art img { width: min(70vw, 340px); rotate: 1deg; margin-top: 1.5rem; }
  .page-hero--overlap .page-hero__art img { margin-bottom: -2rem; }
}

/* ---------- team ---------- */
.tm-role { display: block; font-family: var(--font-m); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(0,174,239,.85); margin: .1rem 0 .6rem; }
.tm-avatar {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--yellow), var(--orange)); color: var(--navy);
  font-family: var(--font-d); font-weight: 700; font-size: 1.3rem; margin-bottom: .8rem;
  box-shadow: 0 0 18px rgba(255,197,16,.35);
}
.tm-avatar--photo {
  width: 96px; height: 96px; object-fit: cover; object-position: top;
  border: 2px solid #0d5aa8;
  background: linear-gradient(140deg, #0d5aa8, #062455);
}

/* ---------- videos grid ---------- */
.vidgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.vidgrid .vslot { position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; background: #000; border: 1px solid var(--glass-border); box-shadow: 0 24px 50px -28px rgba(0,0,0,.8); }
.vidgrid .vslot iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 720px) { .vidgrid { grid-template-columns: 1fr; } }

/* ---------- territory map (stark skin) ---------- */
.terr-map { height: 480px; border-radius: 20px; border: 1px solid var(--glass-border); z-index: 1; }
.terr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.terr-card { display: flex; flex-direction: column; gap: .45rem; padding: 1.2rem 1.3rem; }
.terr-card h3 { font-family: var(--font-d); text-transform: uppercase; font-size: 1.15rem; margin: 0; color: #fff; }
.terr-card small { color: rgba(255,255,255,.6); line-height: 1.5; }
.terr-card .btn { margin-top: auto; align-self: flex-start; padding: .5rem 1.1rem; font-size: .85rem; }
.terr-open {
  align-self: flex-start; font-family: var(--font-m); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: #ff8f9a; border: 1px solid rgba(255,120,130,.5); border-radius: 6px; padding: .15rem .5rem;
  box-shadow: 0 0 14px rgba(213,35,47,.35);
}
/* available-territory beacon: planted flag + pulsing halo */
.pin-avail { background: none; border: 0; }
.pin-avail__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(255,197,16,.85); pointer-events: none;
  animation: beacon 2.4s ease-out infinite;
}
.pin-avail__core {
  display: grid; place-items: center; width: 44px; height: 44px;
  background: var(--red); border-radius: 50%; border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 0 18px rgba(213,35,47,.8);
}
@keyframes beacon { 0% { transform: scale(.75); opacity: .95; } 100% { transform: scale(1.8); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pin-avail__ring { animation: none; opacity: 0; } }

/* clustered store pins — same technique as the store finder */
.pin3 { background: none; border: 0; }
.pin3__badge {
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  border: 3px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,.35);
  overflow: hidden; display: block;
}
.pin3__badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pin3__tail {
  display: block; width: 0; height: 0; margin: -1px auto 0;
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-top: 11px solid #fff; filter: drop-shadow(0 3px 2px rgba(0,0,0,.3));
}
.cluster-badge {
  position: absolute; top: -5px; right: -7px;
  min-width: 21px; height: 21px; padding: 0 5px; box-sizing: border-box;
  background: var(--red); color: #fff; border: 2px solid #fff; border-radius: 999px;
  font-family: var(--font-b); font-weight: 800; font-size: .74rem; line-height: 17px;
  text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,.4);
}
.cluster-pin:hover .pin3__badge { box-shadow: 0 6px 14px rgba(0,0,0,.5); }
.dot-store { background: #7fd8ff; border: 2px solid rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 0 8px rgba(0,174,239,.8); }
/* territory-map popup (finder has its own copy in store-finder.css) */
.pop { display: flex; flex-direction: column; gap: .35rem; font-family: var(--font-b); }
.pop strong { color: var(--navy); font-size: 1rem; }
.pop span { color: #52627a; font-size: .85rem; }
.pop a { font-weight: 700; font-size: .85rem; margin-top: .2rem; }
.pop__dir { color: var(--red); }
@media (max-width: 900px) { .terr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .terr-grid { grid-template-columns: 1fr; } .terr-map { height: 360px; } }

/* ---------- lightbox (hero comic strip) ---------- */
.cstrip__panel { cursor: zoom-in; }
.lbox {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 4vmin;
  background: rgba(4,10,30,.45);
  backdrop-filter: blur(14px) brightness(.85); -webkit-backdrop-filter: blur(14px) brightness(.85);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lbox.is-open { opacity: 1; pointer-events: auto; }
.lbox__img {
  max-width: min(88vw, 900px); max-height: 82vh; border-radius: 14px;
  border: 6px solid #fff; box-shadow: 0 30px 80px rgba(0,0,0,.6);
  transform: scale(.96); transition: transform .25s ease;
}
.lbox.is-open .lbox__img { transform: none; }
.lbox__btn {
  position: fixed; display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.3); cursor: pointer;
  background: rgba(8,18,44,.55); color: #fff; font-size: 1.6rem; line-height: 1;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background .15s ease, transform .15s ease;
}
.lbox__btn:hover { background: rgba(13,90,168,.75); transform: scale(1.06); }
.lbox__close { top: 20px; right: 22px; }
.lbox__prev { left: 22px; top: 50%; margin-top: -26px; }
.lbox__next { right: 22px; top: 50%; margin-top: -26px; }
.lbox__count {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-m); font-size: .76rem; letter-spacing: .22em; color: var(--yellow);
  text-shadow: 0 0 14px rgba(255,197,16,.35);
}
@media (max-width: 680px) {
  .lbox__btn { width: 44px; height: 44px; }
  .lbox__prev { left: 10px; } .lbox__next { right: 10px; } .lbox__close { right: 12px; }
}

/* ---------- mobile bottom app bar ---------- */
.mtab {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(244,250,255,.9), rgba(216,236,250,.92));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(13,90,168,.25);
  box-shadow: 0 -6px 24px -8px rgba(2,14,43,.25);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mtab__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.mtab a {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  padding: .55rem 0 .5rem; font-size: .64rem; font-weight: 800; letter-spacing: .02em;
  color: rgba(4,20,53,.75); text-transform: uppercase;
}
.mtab a svg { width: 24px; height: 24px; }
.mtab a[aria-current="page"] { color: #0d5aa8; }
.mtab__cta { position: relative; }
.mtab__social { display: flex; align-items: center; justify-content: center; gap: .55rem; }
.mtab__social a { color: rgba(4,20,53,.7); display: grid; place-items: center; padding: .2rem; }
.mtab__social svg { width: 21px; height: 21px; }
.mtab__cta span.mtab__bump {
  display: grid; place-items: center; width: 54px; height: 54px; margin-top: -22px;
  background: linear-gradient(120deg, var(--red), var(--red-hot));
  border-radius: 50%; border: 3px solid #fff;
  box-shadow: 0 8px 22px -6px rgba(213,35,47,.65);
}
.mtab__cta svg { width: 26px; height: 26px; }
@media (max-width: 680px) {
  .mtab { display: block; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0)); }
  /* full-bleed maps */
  .terr-map { width: 100vw; margin-left: calc(50% - 50vw); border-radius: 0; border-left: 0; border-right: 0; }
}

/* ---------- mobile centring pass (2026-07-06) ---------- */
@media (max-width: 680px) {
  /* heroes: everything centred */
  .shero__inner > div:first-child, .page-hero .container, .page-hero__grid > div:first-child { text-align: center; }
  .shero h1, .page-hero h1 { text-align: center; }
  .shero__lead, .page-hero__lead { margin-inline: auto; }
  .shero__actions { justify-content: center; }
  .hud-label, .shero .hud-label { justify-content: center; }
  .pill { margin-inline: auto; }
  /* section copy + cards */
  .ssec__intro, .ssec__intro--left { text-align: center; }
  .vcopy, .split > div { text-align: center; }
  .vcopy .hud-label, .split .hud-label, .partners-s--left .hud-label { justify-content: center; }
  .bcard, .tcard, .terr-card { text-align: center; }
  .bcard__art--floor { place-items: end center; }
  .tm-avatar, .tm-avatar--photo { margin-inline: auto; }
  .tcard figcaption { justify-content: center; }
  .tcard blockquote::before { margin-inline: auto; }
  .terr-card .btn, .terr-open { align-self: center; }
  .steps-h { justify-content: center; }
  /* forms + ctas */
  .btn--block, .field { text-align: center; }
  /* footer */
  .sfoot__grid, .sfoot__brand, .sfoot nav { text-align: center; }
  .sfoot__brand img { margin-inline: auto; }
  .sfoot__bar { flex-direction: column; gap: .4rem; text-align: center; align-items: center; }
  .sfoot__bar p { margin: 0; }
}

/* ---------- front-page mobile: big logo + burger + compact hero ---------- */
.hero-burger {
  display: none; flex-direction: column; gap: 5px; align-items: center;
  margin: .9rem auto 0; padding: .6rem .8rem; cursor: pointer;
  background: rgba(191,230,255,.12); border: 1px solid rgba(127,216,255,.35); border-radius: 12px;
}
.hero-burger span:not(.sr-only) { width: 26px; height: 2.5px; background: #bfe6ff; border-radius: 3px; }
.btn-short { display: none; }
@media (max-width: 680px) {
  body.home .snav { position: static; background: none; border: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  body.home .snav::before { display: none; }
  body.home .snav__inner { padding: 0; }
  body.home .snav__brand, body.home .snav__toggle { display: none; }
  body.home .snav__inner .snav__mini { display: none; }
  body.home .hero-burger { background: none; border: 0; }
  body.home .hero-burger { display: flex; margin-top: .6rem; }
  body.home .shero { padding: .5rem 0 3.5rem; min-height: auto; }
  body.home .shero__visual { min-height: auto; gap: .3rem; z-index: 0; }
  body.home .shero__inner > div:first-child { position: relative; z-index: 2; }
  body.home .shero__logo { width: min(80vw, 330px); }
  body.home .shero__stage { margin-top: -0.4rem; margin-bottom: -2.4rem; z-index: 0; }
  body.home .holo-p img, body.home .holo-p video { width: min(58vw, 230px); }
  body.home .arc { width: min(75vw, 300px); }
  body.home .shero__chip { display: none; }
  body.home .shero h1 { font-size: clamp(1.85rem, 8.4vw, 2.5rem); margin: .7rem 0 .7rem; }
  body.home .pill { font-size: .68rem; padding: .3rem .8rem; }
  body.home .shero__lead { font-size: .92rem; margin-bottom: 1.2rem; }
  body.home .btn--lg { padding: .85rem 1.4rem; font-size: .92rem; }
  body.home .btn-full { display: none; }
  body.home .btn-short { display: inline; }
  /* trust chips: one row of three */
  body.home .stats { margin-top: 1.4rem; flex-wrap: nowrap; gap: .5rem; }
  body.home .stat { min-width: 0; padding: .8rem .3rem .7rem; }
  body.home .stat strong { font-size: 1.75rem; margin-bottom: .15rem; }
  body.home .stat span { font-size: .56rem; letter-spacing: .04em; }
}

@media (min-width: 1081px) { .menu-home { display: none; } }

.menu-close-li, .menu-logo, .menu-social, .snav__mini { display: none; }
@media (max-width: 1080px) { .snav__menu .menu-close-li, .snav__menu .menu-logo { display: block; } .snav__menu .menu-social { display: flex; } }
@media (prefers-reduced-motion: reduce) { .snav__menu, .snav__menu li { transition: none !important; } .snav__menu::after { animation: none; } }

.mbr { display: none; }
@media (max-width: 680px) {
  .mbr { display: inline; }
  body.home .shero .tex--3 { -webkit-mask-size: cover; mask-size: cover; }
  body.home .shero__logo { width: min(85vw, 350px); }
  body.home .arc { width: min(95vw, 380px); }
  body.home .holo-p img, body.home .holo-p video { width: min(66vw, 260px); }
}

/* ---------- opportunities: mobile app frame ---------- */
@media (max-width: 820px) {
  body.opps .page-hero { position: sticky; top: 66px; z-index: 60; padding: .55rem 0 .5rem; }
  body.opps .page-hero h1 { font-size: 1.65rem; margin: .1rem 0; }
  body.opps .page-hero__lead, body.opps .page-hero .hud-label { display: none; }
  body.opps #terr-section { padding-top: 0; overflow: visible; }
  body.opps #terr-section .ssec__head { display: none; }
  body.opps .terr-map { position: sticky; top: calc(66px + 44px); z-index: 40; height: 34vh; min-height: 190px; border-radius: 0; }
  body.opps .terr-grid { margin-top: 1rem; gap: .8rem; }
}
