/* =========================================================
   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;
  /* frosted glass — kept fairly opaque so dark hero grounds can't muddy it */
  background: linear-gradient(90deg,
    rgba(255,255,255,.82) 0%, rgba(244,250,255,.79) 30%,
    rgba(224,240,251,.76) 60%, rgba(203,228,247,.78) 100%);
  backdrop-filter: blur(18px) saturate(1.7); -webkit-backdrop-filter: blur(18px) saturate(1.7);
  border-bottom: 1px solid rgba(13,90,168,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 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; }
.bcard__art--photo { position: relative; overflow: hidden; }
.bcard__art--photo img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; object-position: center 30%; }

/* ---------- 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; }
.bcard__tag { display: inline-block; vertical-align: middle; font-family: var(--font-m); font-size: .5rem; letter-spacing: .16em; text-transform: uppercase; color: #0b1e33; background: var(--yellow); padding: .18em .5em; border-radius: 3px; margin-left: .5em; transform: translateY(-2px); }

/* ---------- 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; } /* brand rule: never a white panel behind the 3@1 logo — the logo art carries its own yellow banner */
.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;
    /* no blur here (fixed-overlay containing-block trap) — go near-opaque */
    background: linear-gradient(90deg,
      rgba(255,255,255,.94) 0%, rgba(244,250,255,.93) 30%,
      rgba(224,240,251,.92) 60%, rgba(203,228,247,.92) 100%);
  }
  .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 #7fd8ff;
  background: linear-gradient(140deg, #0d5aa8, #062455);
}

/* ---------- videos grid ---------- */
.vidgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.vidgrid .vslot { position: relative; aspect-ratio: 4/5; 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; }
.vidgrid .vslot--feature { border-color: rgba(255,197,16,.5); box-shadow: 0 30px 60px -26px rgba(0,0,0,.85), 0 0 0 1px rgba(255,197,16,.25); }
.vidgrid .vslot--wide { grid-column: 1 / -1; aspect-ratio: 16/9; }
@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; }
}

/* ===== Spotlight service cards + bento grid (shared; promoted from store-template 2026-07-19) ===== */

/* ---- futuristic services grid (STARK bento) ---- */
@property --sga { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.sgrid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(6, 1fr);
}
.sgcard {
  --sga: 0deg;
  position: relative; grid-column: span 2; min-height: 240px;
  border-radius: 20px; padding: 1.35rem; display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; isolation: isolate; text-decoration: none;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(6,20,52,.92), rgba(4,14,40,.96)) padding-box,
    conic-gradient(from var(--sga), rgba(0,174,239,.0) 0%, rgba(0,174,239,.85) 12%, rgba(255,197,16,.9) 22%, rgba(0,174,239,0) 34%) border-box;
  transition: translate .3s ease, box-shadow .3s ease;
}
@supports (animation-timeline: none) or (not (animation-timeline: none)) {
  .sgcard { animation: sgspin 7s linear infinite paused; }
}
.sgcard:hover { animation-play-state: running; translate: 0 -5px; box-shadow: 0 22px 50px -18px rgba(0,10,40,.8); }
@keyframes sgspin { to { --sga: 360deg; } }
.sgcard--wide { grid-column: span 3; min-height: 280px; }
.sgcard--full { grid-column: 1 / -1; min-height: 240px; }
.sgcard__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: scale .6s cubic-bezier(.2,.7,.2,1), filter .4s;
  filter: saturate(.9);
}
.sgcard:hover .sgcard__bg { scale: 1.07; filter: saturate(1.1); }
.sgcard::before { /* legibility fade — opaque bottom-left → transparent top-right */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top right, rgba(2,14,43,.95) 0%, rgba(2,14,43,.78) 32%, rgba(2,14,43,.34) 60%, transparent 82%);
}
.sgcard::after { /* scan sweep on hover */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(0,174,239,.22) 50%, transparent 58%);
  translate: -120% 0; transition: translate .001s;
}
.sgcard:hover::after { translate: 120% 0; transition: translate .8s ease; }
.sgcard__tag {
  position: absolute; top: 1.05rem; left: 1.25rem;
  font-family: "SF Mono", ui-monospace, monospace; font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: #7fd8ff; text-shadow: 0 0 12px rgba(0,174,239,.6);
  background: rgba(2,14,43,.6); padding: .3rem .55rem; border-radius: 7px;
  backdrop-filter: blur(6px); border: 1px solid rgba(127,216,255,.22);
}
.sgcard__corner { position: absolute; width: 16px; height: 16px; border-color: rgba(127,216,255,.55); border-style: solid; }
.sgcard__corner--tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; border-radius: 6px 0 0 0; }
.sgcard__corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; border-radius: 0 0 6px 0; }
.sgcard h3 {
  font-family: var(--font-d); text-transform: uppercase; color: #fff;
  font-size: clamp(1.25rem, 1.6vw, 1.6rem); margin: 0 0 .25rem; line-height: 1;
}
.sgcard p { font-size: .82rem; color: rgba(255,255,255,.75); margin: 0 0 .7rem; max-width: 34ch; }
.sgcard__go {
  display: inline-flex; align-items: center; gap: .45rem; width: fit-content;
  font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--yellow);
}
.sgcard__go::after { content: "→"; transition: translate .25s; }
.sgcard:hover .sgcard__go::after { translate: 5px 0; }
@media (max-width: 1080px) {
  .sgrid { grid-template-columns: 1fr 1fr; }
  .sgcard, .sgcard--wide { grid-column: span 1; min-height: 220px; }
  .sgcard--full { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .sgrid { grid-template-columns: 1fr; }
}


/* ===== Spotlight service cards (sgrid v2) — faded banner bg + cutout + ring + thumb strip ===== */
.spc{position:relative;grid-column:span 2;min-height:300px;border-radius:20px;overflow:hidden;isolation:isolate;padding:1.4rem;text-decoration:none;
  display:grid;grid-template-columns:1.02fr .98fr;grid-template-rows:1fr auto;align-items:center;column-gap:.9rem;
  background:linear-gradient(165deg,#062051,#04122e 70%,#020c22);border:1px solid rgba(0,174,239,.32);
  box-shadow:inset 0 0 0 1px rgba(127,216,255,.1),0 22px 46px -28px rgba(0,10,40,.8);transition:box-shadow .3s,translate .3s}
.spc:hover{box-shadow:inset 0 0 0 1px rgba(127,216,255,.28),0 28px 56px -26px rgba(0,174,239,.45)}
.spc--wide{grid-column:span 3;min-height:320px}
.spc__bg{position:absolute;inset:0;z-index:0;background-size:cover;background-position:center right;opacity:.9;
  -webkit-mask-image:linear-gradient(90deg,transparent 6%,rgba(0,0,0,.35) 42%,#000 82%);
          mask-image:linear-gradient(90deg,transparent 6%,rgba(0,0,0,.35) 42%,#000 82%)}
.spc__tint{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(4,18,46,.96) 16%,rgba(4,18,46,.5) 54%,rgba(4,18,46,.12) 100%)}
.spc__txt{grid-column:1;grid-row:1;position:relative;z-index:4}
.spc__txt h3{font-family:var(--font-d);text-transform:uppercase;color:#fff;font-size:clamp(1.4rem,2vw,2rem);line-height:.95;margin:0}
.spc__txt p{font-size:.82rem;color:rgba(255,255,255,.78);margin:.4rem 0 .7rem;max-width:26ch}
.spc__go{font-weight:800;text-transform:uppercase;letter-spacing:.08em;font-size:.78rem;color:var(--yellow);display:inline-flex;gap:.4rem}
.spc__go::after{content:"→";transition:translate .25s}.spc:hover .spc__go::after{translate:5px 0}
.spc__art{grid-column:2;grid-row:1;position:relative;z-index:3;display:grid;place-items:center;height:100%}
.spc__bg,.spc__tint{display:none}
.spc__glow{position:absolute;width:150%;aspect-ratio:1/.92;border-radius:50%;background:radial-gradient(circle,rgba(0,174,239,.62),rgba(0,174,239,.2) 40%,transparent 74%);filter:blur(11px);z-index:1}
.spc__ring{position:absolute;width:74%;aspect-ratio:1;border-radius:50%;border:1.5px dashed rgba(0,174,239,.5);animation:spin 34s linear infinite;z-index:1}
.spc__art img{position:relative;z-index:2;max-width:100%;max-height:96%;object-fit:contain;filter:drop-shadow(0 18px 30px rgba(0,10,40,.6))}
.spc__strip{grid-column:1 / -1;grid-row:2;position:relative;z-index:4;display:flex;align-items:stretch;gap:.4rem;margin-top:.5rem}

/* ---- front-page card art: bigger + bleeding over the top edge -----------
   (user, 2026-07-17: "show the images larger and also overlapping the top
   like the cards on the rest of the site")
   `.spc` was `overflow:hidden`, which is exactly what stopped the art
   breaking the top edge — the `.scard`s elsewhere get their bleed from
   `overflow:visible`. Same trick here; the card's background is a
   background layer, so it still clips to the border-radius by itself.
   Art is pushed UP, never down: the strip lives in grid-row 2 below it.   */
.spc { overflow: visible; }
/* The .scard bleed trick (tall art, bottom-anchored) does NOT transfer here:
   this card's art is LANDSCAPE, so with object-fit:contain the width always
   binds first and the image can never grow tall enough to reach the top edge.
   Instead: scale it up, then lift the whole art cluster (glow + ring + image
   together, so the halo travels with it) up over the card's top edge.        */
/* Anchor the cluster to the TOP of its row and lift a FIXED px amount, so
   every card bleeds by the same visible margin. (A % lift gave 11px on Large
   Format but -34px on Branding & Gifts — the art ranges from tall-portrait to
   very-wide-landscape, so a proportional lift can't equalise them.)
   The glow/ring are abs-positioned with auto insets, so their static position
   follows `place-items` and the halo travels with the art. */
.spc__art { overflow: visible; place-items: start center; translate: 2% -44px; }
.spc__art img {
  max-width: 126%; max-height: 150%;
  filter: drop-shadow(0 22px 34px rgba(0,10,40,.7));
}
/* give the art more of the card so it can grow without reaching the copy */
.spc { grid-template-columns: .92fr 1.08fr; }
.spc--wide { grid-template-columns: 1.06fr .94fr; }
.spc__glow { width: 128%; }          /* trimmed so the halo doesn't spill far past the card */
@media (max-width: 900px) {
  /* PROPER stack. Setting `grid-template-columns:1fr` alone was a bug: the
     children still declare `.spc__art{grid-column:2}`, which forces an
     IMPLICIT second column straight back in — so the card computed as
     `75px 208px` and crushed the copy into a 75px sliver ~111px off centre.
     The row/column of every child has to move too, or the grid re-creates
     the column you just removed. */
  .spc, .spc--wide {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: .2rem;
  }
  .spc__art   { grid-column: 1; grid-row: 1; }
  .spc__txt   { grid-column: 1; grid-row: 2; }
  .spc__strip { grid-column: 1; grid-row: 3; }
  .spc__txt p { max-width: none; }        /* 26ch was for the narrow side column */
  /* stacked cards sit close together — a big top bleed would collide */
  .spc__art img { max-width: 100%; max-height: 112%; }
  .spc__art { translate: 0 -30px; }
}

/* ---- strip pictograms: no boxes, just the cutout (user, 2026-07-17) ---- */
.spc__thumb {
  background: none !important; border: 0 !important; border-radius: 0 !important;
  height: auto; padding: 0;
}
.spc__thumb:hover { background: none !important; border-color: transparent !important; }
.spc__thumb img {
  width: 100%; height: clamp(34px, 3.6vw, 50px); object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,10,40,.5));
  transition: transform .2s ease;
}
.spc__thumb:hover img { transform: translateY(-3px); }
.spc__thumb{flex:1;min-width:0;height:clamp(34px,3.4vw,48px);border-radius:10px;background:linear-gradient(160deg,rgba(0,174,239,.1),rgba(0,174,239,.02));border:1px solid rgba(127,216,255,.22);display:grid;place-items:center;transition:transform .2s,background .2s,border-color .2s}
.spc__thumb:hover{transform:translateY(-3px);background:rgba(0,174,239,.16);border-color:rgba(127,216,255,.5)}
.spc__ic{width:clamp(18px,1.8vw,24px);height:auto;color:#7fd8ff;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;filter:drop-shadow(0 0 4px rgba(0,174,239,.35))}
@media(prefers-reduced-motion:reduce){.spc__ring{animation:none}}
@media(max-width:1080px){.sgrid{grid-template-columns:1fr 1fr}.spc,.spc--wide{grid-column:span 1;min-height:250px}}
@media(max-width:640px){.sgrid{grid-template-columns:1fr}.spc,.spc--wide{grid-column:1;min-height:230px}}

/* ===== engagement layer (branch wip/excitement) ===== */
/* territories ticker */
.tick { overflow: hidden; margin-top: 2rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tick__track { display: inline-flex; gap: 2.2rem; white-space: nowrap; animation: tickmove 40s linear infinite; padding-block: .4rem; }
.tick:hover .tick__track { animation-play-state: paused; }
@keyframes tickmove { to { transform: translateX(-50%); } }
.tick__item { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink); font-weight: 700; font-size: .95rem; text-decoration: none; }
.tick__item:hover { color: var(--navy); }
.tick__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px rgba(0,174,239,.7); }
.tick__chip { font-family: var(--font-m); font-size: .56rem; letter-spacing: .14em; color: #0b1e33; background: var(--yellow); border-radius: 3px; padding: .14em .45em; }
/* quiz modal */
.qmodal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; background: rgba(2,14,43,.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 1rem; }
.qmodal__panel { position: relative; width: min(620px, 100%); max-height: 88vh; overflow: auto; background: linear-gradient(160deg, #0d3f7e, #062a5c 60%, #041d49); border: 1px solid rgba(0,174,239,.35); border-radius: 20px; padding: 2rem 1.8rem; color: #fff; box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); }
.qmodal__close { position: absolute; top: .8rem; right: .9rem; border: 0; background: none; color: rgba(255,255,255,.7); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.qmodal__close:hover { color: #fff; }
.quiz__progress { display: flex; gap: .4rem; margin-bottom: 1.4rem; }
.quiz__progress i { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,.18); }
.quiz__progress i.done { background: var(--yellow); box-shadow: 0 0 8px rgba(255,197,16,.5); }
.quiz__q { font-family: var(--font-d); text-transform: uppercase; font-size: clamp(1.2rem, 2.4vw, 1.55rem); margin: 0 0 1.1rem; line-height: 1.12; }
.quiz__opts { display: grid; gap: .55rem; }
.quiz__opt { text-align: left; font: inherit; font-weight: 600; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(127,216,255,.3); border-radius: 12px; padding: .8rem 1rem; cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .15s ease; }
.quiz__opt:hover { background: rgba(0,174,239,.22); border-color: var(--cyan); transform: translateX(4px); }
.quiz__back { margin-top: 1rem; border: 0; background: none; color: rgba(255,255,255,.65); font: inherit; font-weight: 700; cursor: pointer; }
.quiz__back:hover { color: #fff; }
.quiz__verdict { text-align: center; }
.quiz__verdict .printiva-slot img { width: 120px; height: auto; }
.quiz__tier { font-family: var(--font-d); text-transform: uppercase; font-size: 1.6rem; color: var(--yellow); text-shadow: 0 0 18px rgba(255,197,16,.45); }
.quiz__verdict p { color: rgba(255,255,255,.85); max-width: 44ch; margin: .8rem auto 1.2rem; }
/* card tilt glare */
.spc--tilt { transition: transform .3s ease; will-change: transform; }
.spc--tilt.is-tilting { transition: none; } /* snap while tracking the pointer; ease only on leave */
.spc__glare { position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0; transition: opacity .25s ease; background: radial-gradient(360px circle at var(--gx, 50%) var(--gy, 50%), rgba(127,216,255,.25), transparent 60%); }
/* sticky info pill */
.info-pill { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 300; display: flex; align-items: center; gap: .4rem; transform: translateY(140%); transition: transform .3s cubic-bezier(.2,.9,.3,1.2); }
.info-pill.is-on { transform: none; }
.info-pill__go { display: inline-flex; align-items: center; gap: .5rem; background: var(--red); color: #fff; font-weight: 800; text-decoration: none; padding: .75rem 1.2rem; border-radius: 999px; box-shadow: 0 12px 30px -10px rgba(213,35,47,.6); }
.info-pill__go:hover { background: #b81d28; }
.info-pill__x { border: 0; background: rgba(2,14,43,.8); color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: .9rem; }
@media (max-width: 680px) { .info-pill { display: none; } } /* mtab already owns mobile bottom */
/* ---------- franchise-model page (the model) ---------- */
/* revenue donut + stream legend */
.fm-streams { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: 2.6rem; align-items: center; }
.fm-donut { position: relative; width: 100%; max-width: 360px; margin: 0 auto; }
.fm-donut svg { width: 100%; height: auto; display: block; transform: rotate(-90deg); }
.fm-donut circle { fill: none; stroke-width: 26; stroke-linecap: butt; }
.fm-donut__hub {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center;
}
.fm-donut__hub b { font-family: var(--font-d); text-transform: uppercase; font-size: 1.5rem; color: #fff; letter-spacing: .04em; }
.fm-donut__hub span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(127,216,255,.85); }
.fm-legend { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.fm-legend li {
  display: grid; grid-template-columns: 14px 1fr auto; gap: .8rem; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(127,216,255,.18);
  border-radius: 12px; padding: .75rem 1rem;
}
.fm-legend i { width: 14px; height: 14px; border-radius: 4px; }
.fm-legend b { color: #fff; font-size: .95rem; }
.fm-legend small { display: block; color: rgba(255,255,255,.6); font-size: .78rem; font-weight: 400; }
.fm-legend .fm-pct { font-family: var(--font-d); font-size: 1.35rem; color: var(--yellow); }
/* light-section variants (streams section sits on light halftone) */
.ssec--light .fm-donut circle:first-child { stroke: rgba(4,25,73,.1); }
.ssec--light .fm-donut__hub b { color: var(--navy); }
.ssec--light .fm-donut__hub span { color: #0272a5; }
.ssec--light .fm-legend li { background: rgba(255,255,255,.72); border-color: rgba(4,25,73,.14); box-shadow: 0 10px 24px -18px rgba(2,14,43,.35); }
.ssec--light .fm-legend b { color: var(--navy); }
.ssec--light .fm-legend small { color: #3d5878; }
.ssec--light .fm-legend .fm-pct { color: #0272a5; }
/* example-figures chip */
.fm-example {
  display: inline-flex; align-items: center; gap: .5rem; margin: .4rem 0 1.2rem;
  background: rgba(255,197,16,.14); border: 1px dashed rgba(255,197,16,.65); color: #ffd75e;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  padding: .45rem .9rem; border-radius: 999px;
}
.ssec--light .fm-example { background: rgba(255,150,0,.1); border-color: rgba(200,120,0,.55); color: #a06400; }
/* investment table (lives in a light section) */
.fm-invest { width: 100%; border-collapse: collapse; max-width: 780px; margin: 0 auto; }
.fm-invest th, .fm-invest td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid rgba(4,25,73,.14); }
.fm-invest td:last-child, .fm-invest th:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.fm-invest th { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #0272a5; }
.fm-invest td { color: #17305c; font-size: .95rem; font-weight: 600; }
.fm-invest td small { display: block; color: #3d5878; font-size: .78rem; font-weight: 400; }
.fm-invest tr.fm-total td { border-top: 2px solid var(--yellow); border-bottom: 0; padding-top: 1rem; }
.fm-invest tr.fm-total td { font-family: var(--font-d); text-transform: uppercase; font-size: 1.25rem; color: var(--navy); }
/* comparison table */
.fm-vs { width: 100%; border-collapse: collapse; max-width: 860px; margin: 0 auto; }
.fm-vs th, .fm-vs td { padding: .8rem 1rem; border-bottom: 1px solid rgba(4,25,73,.14); vertical-align: top; }
.fm-vs th { font-family: var(--font-d); text-transform: uppercase; letter-spacing: .05em; font-size: 1.05rem; color: var(--navy); }
.fm-vs th.fm-vs__you { color: #b00; }
.fm-vs td:first-child { font-weight: 700; color: var(--navy); width: 30%; }
.fm-vs td { color: #3d5878; font-size: .92rem; }
.fm-vs .ok::before { content: "✔ "; color: #0b8a44; font-weight: 800; }
.fm-vs .no::before { content: "✘ "; color: #c22; font-weight: 800; }
/* path-to-opening time chips on steps-h (dark section) */
.steps-h .fm-when {
  margin-left: auto; flex-shrink: 0; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: #7fd8ff; background: rgba(0,174,239,.14); border: 1px solid rgba(0,174,239,.4);
  padding: .3rem .7rem; border-radius: 999px; white-space: nowrap; font-family: var(--font-m);
}
/* faq accordion */
.fm-faq { max-width: 820px; margin: 0 auto; display: grid; gap: .7rem; }
.fm-faq details {
  background: rgba(255,255,255,.72); border: 1px solid rgba(4,25,73,.14); border-radius: 14px;
  box-shadow: 0 10px 24px -18px rgba(2,14,43,.4); overflow: hidden;
}
.fm-faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; font-weight: 800; color: var(--navy); font-size: .98rem;
}
.fm-faq summary::-webkit-details-marker { display: none; }
.fm-faq summary::after { content: "+"; font-family: var(--font-d); font-size: 1.5rem; color: #0272a5; line-height: 1; }
.fm-faq details[open] summary::after { content: "–"; }
.fm-faq details p { margin: 0; padding: 0 1.2rem 1.1rem; color: #3d5878; font-size: .92rem; }
@media (max-width: 820px) {
  .fm-streams { grid-template-columns: 1fr; gap: 1.8rem; }
  .fm-invest td small { font-size: .72rem; }
  .steps-h .fm-when { display: none; }
  .fm-vs td:first-child { width: auto; }
}

/* happy store owners — full-bleed filmstrips between About sections.
   Zero padding/gap: photos butt together edge to edge, no ground shows. */
.ostrip { position: relative; font-size: 0; /* kill inline-gap whitespace */ }
.ostrip__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ostrip figure { margin: 0; overflow: hidden; }
.ostrip img {
  width: 100%; height: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  transition: transform .25s ease;
}
.ostrip figure:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .ostrip__row { grid-template-columns: repeat(2, 1fr); } }

/* hero info-pack CTA (all sub-page heroes) */
.page-hero__cta { margin-top: 1.3rem; }
@media (max-width: 680px) { .page-hero__cta { display: block; text-align: center; } }

/* benefit-card visuals — spc-style glow + ring + cutout on the light bcards */
.bcard__vis { position: relative; height: 158px; margin-bottom: .5rem; display: grid; place-items: center; }
.bcard__vis::before {
  content: ""; position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%);
  width: 82%; aspect-ratio: 1 / .8; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.28), rgba(0,174,239,.1) 46%, transparent 72%);
  filter: blur(10px);
}
.bcard__vis::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 150px; aspect-ratio: 1;
  margin-left: -75px; margin-top: -75px; border-radius: 50%;
  border: 1.5px dashed rgba(230,160,0,.5); animation: spin 34s linear infinite;
}
.bcard__vis img {
  position: relative; z-index: 2; max-height: 148px; max-width: 72%; object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(4,25,73,.3));
}
.bcard__vis--frame img { /* rectangular illustrations get a tilted comic frame */
  max-width: 62%; border-radius: 12px; rotate: -2.5deg;
  border: 3px solid #fff; box-shadow: 0 14px 26px -12px rgba(4,25,73,.45);
}
@media (prefers-reduced-motion: reduce) { .bcard__vis::after { animation: none; } }

/* ticker catchline + about-hero opportunities line */
.tickhead {
  text-align: center; font-family: var(--font-d); text-transform: uppercase;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-weight: 700; color: var(--navy);
  margin: 2.4rem 0 .2rem; letter-spacing: .02em;
}
.page-hero__opps {
  margin: 1.1rem 0 0; font-family: var(--font-d); text-transform: uppercase;
  font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 700; color: #cfe6ff; letter-spacing: .03em;
}
/* big store photo beside the apply form */
.apply-store { margin: 1.6rem 0 0; }
.apply-store img {
  width: 100%; border-radius: 18px; border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,.75); rotate: -1.5deg;
}
/* bigger framed art on benefit card 01 */
.bcard__vis--big img { max-height: 158px; }
.bcard__vis--frame.bcard__vis--big img { max-width: 86%; }
