/* Void Walker site — palette from app Color.kt / ChristIsKingSplash */
:root {
  --void-black: #0A0A0A;
  --void-surface: #141414;
  --void-neon: #39FF14;
  --void-green: #32D74B;
  --void-purple: #BF5AF2;
  --void-glow: #B026FF;
  --void-deep: #7B2FBE;
  /* Armor-off purple family — Trinity knot track (darker than glow) */
  --trinity-knot: #5C1A8A;
  --trinity-knot-mid: #6B2498;
  --trinity-knot-deep: #3A0F5C;
  --void-cyan: #5AC8FA;
  --void-electric: #00D4FF;
  --void-yellow: #FFD60A;
  --void-red: #FF453A;
  --void-dim: #6B6B6B;
  --void-text: #E8E8E8;
  --void-muted: #A0A0A0;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-display: ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  --max: 1080px;
  --nav-h: 56px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* 100vw includes scrollbar / fold chrome and causes blank right-side scroll */
  overflow-x: clip;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--void-black);
  color: var(--void-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
}

/* Gate: only the mysterious entry — no scroll into product */
body.gate {
  overflow: hidden;
  height: 100%;
  height: 100dvh;
}
body.gate .site-after {
  display: none !important;
}
/* Vertical only after Enter — never allow blank horizontal pan */
body.entered {
  overflow-x: clip;
  overflow-y: auto;
}
body.entered .entry {
  pointer-events: none;
}
/* After exit animation, keep plate clipped — no half-faded edge bleed over product */
body.entered .entry.entry-exit {
  overflow: hidden;
  contain: paint;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--void-electric); text-decoration: none; }
a:hover { color: var(--void-neon); }
code {
  font-size: 0.85em;
  padding: 0.1em 0.4em;
  border-radius: 4px;
  background: rgba(57, 255, 20, 0.08);
  color: var(--void-neon);
  border: 1px solid rgba(57, 255, 20, 0.18);
}

/* ========== ENTRY (app splash parity) — full-screen gate ========== */
.entry {
  position: fixed;
  inset: 0;
  z-index: 100;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--void-black);
  isolation: isolate;
  /* No opacity transition — crossfade bled gate over product on Fold */
  transition: none;
}
/* Legacy class kept for safety; hard-hide (no fade) */
.entry.entry-exit {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/*
 * ENTRY SCENE v13
 * Full-bleed plate (cover) — fills mobile + desktop proportionally.
 * Title top · Enter between upper wings · Christ is King bottom (large).
 */
.entry-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #05030a;
}
/*
 * Full-bleed wallpaper.
 * MUST override global `img { max-width:100%; height:auto }` — that rule capped
 * the old max(100vw, 16/9) cover math and caused edge cut / letterbox bleed on Enter.
 * Standard cover: pin to scene, object-fit cover (no transform desync).
 */
.entry-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  user-select: none;
  pointer-events: none;
  filter: contrast(1.08) saturate(1.15) brightness(1.03);
  z-index: 0;
  transform: none;
}
/* Tall phones: keep ophanim framed, show more sky lightning at sides */
@media (orientation: portrait) and (max-width: 900px) {
  .entry-bg {
    object-position: center 40%;
  }
}
/* Wide desktop: slight downward bias so wings + sky read */
@media (min-width: 901px) {
  .entry-bg {
    object-position: center 46%;
  }
}
.entry-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.entry-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 14%, transparent 32%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 14%, transparent 32%),
    radial-gradient(ellipse 78% 62% at 50% 48%, transparent 0%, transparent 52%, rgba(0,0,0,0.25) 100%);
}

.entry-center {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
/*
 * Absolute stack so Enter lands between the upper wings of the plate:
 *  title  → top edge
 *  Enter  → wing gap (under title / over eye)
 *  runes  → bottom
 */
.entry-center-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  min-height: 100svh;
  min-height: 100dvh;
  pointer-events: none;
  box-sizing: border-box;
}
.entry-top {
  position: absolute;
  left: 50%;
  top: max(0.65rem, env(safe-area-inset-top));
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(96%, 28rem);
  max-width: calc(100% - 1rem);
  pointer-events: auto;
  z-index: 7;
}
.entry-top .entry-title {
  margin: 0;
}
/* Between the upper wings — drop below title into the art gap */
.entry-top .entry-enter {
  margin: clamp(0.85rem, 3.2vh, 1.6rem) 0 0;
}
/* Tall phone: push Enter a bit lower into the wing notch */
@media (orientation: portrait) and (max-width: 900px) {
  .entry-top .entry-enter {
    margin-top: clamp(1.1rem, 4.5vh, 2.2rem);
  }
}
/* Desktop: a little more air under the title into the wing gap */
@media (min-width: 901px) {
  .entry-top {
    top: max(1.1rem, env(safe-area-inset-top));
  }
  .entry-top .entry-enter {
    margin-top: clamp(1.25rem, 4vh, 2.4rem);
  }
}
/* Christ is King — bottom only, large */
.entry-center-overlay > .entry-runes {
  position: absolute;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  margin: 0;
  pointer-events: none;
  z-index: 6;
  width: min(96vw, 32rem);
  text-align: center;
}

.entry-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 7.2vw, 2.45rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  line-height: 1.15;
  color: var(--void-neon);
  text-shadow:
    0 0 12px rgba(57, 255, 20, 0.55),
    0 0 28px rgba(57, 255, 20, 0.28),
    0 0 48px rgba(57, 255, 20, 0.12);
  animation: titleBreath 1.8s ease-in-out infinite alternate;
}
.entry-title .word { display: inline-block; }
@keyframes titleBreath {
  from { filter: brightness(0.95); text-shadow: 0 0 10px rgba(57,255,20,0.45), 0 0 24px rgba(57,255,20,0.2); }
  to { filter: brightness(1.08); text-shadow: 0 0 16px rgba(57,255,20,0.7), 0 0 36px rgba(57,255,20,0.35); }
}

/*
 * Mark size: app InteractiveOphanimMark is 240dp; on web we go larger so the
 * ophanim reads on phone, but still leaves room for title + runes + Enter.
 * Phone-first: ~78–86vw, capped so landscape/desktop don't dominate.
 */
/*
 * Locked stage: SVG rings + live figure share ONE square box.
 * Never transform this stage (Chrome desyncs rings from angel if you do).
 */
.ophanim-stage {
  position: relative;
  width: min(86vw, 52vmin, 440px);
  height: min(86vw, 52vmin, 440px);
  margin: 0 auto clamp(1rem, 2.8vh, 1.5rem);
  flex-shrink: 0;
  overflow: visible;
}
@media (min-width: 768px) {
  .ophanim-stage {
    width: min(420px, 48vh, 46vw);
    height: min(420px, 48vh, 46vw);
  }
}
@media (max-height: 700px) and (max-width: 480px) {
  .ophanim-stage {
    width: min(80vw, 46vh);
    height: min(80vw, 46vh);
  }
}

/* SVG orbit — full stage, co-centered with figure */
.ophanim-orbit {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  overflow: visible;
}

/* Live figure stack (base + wing clips + blink) */
.ophanim-live {
  position: absolute;
  left: 6%;
  top: 6%;
  z-index: 2;
  width: 88%;
  height: 88%;
  filter:
    drop-shadow(0 0 8px rgba(176, 38, 255, 0.28))
    drop-shadow(0 0 18px rgba(0, 212, 255, 0.14));
}
.ophanim-live img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  pointer-events: none;
}
.ophanim-base {
  z-index: 1;
}
.ophanim-wing {
  z-index: 2;
  will-change: transform;
}
/* Top wings — flap from shoulder roots near wheel */
.ophanim-wing-tl {
  clip-path: polygon(2% 0%, 48% 0%, 48% 40%, 18% 46%, 2% 32%);
  transform-origin: 46% 36%;
  animation: wingFlapTL 2.6s ease-in-out infinite;
}
.ophanim-wing-tr {
  clip-path: polygon(52% 0%, 98% 0%, 98% 32%, 82% 46%, 52% 40%);
  transform-origin: 54% 36%;
  animation: wingFlapTR 2.6s ease-in-out infinite;
}
/* Bottom wings — gentler counter-flap */
.ophanim-wing-bl {
  clip-path: polygon(18% 58%, 48% 52%, 48% 98%, 22% 98%, 12% 78%);
  transform-origin: 42% 58%;
  animation: wingFlapBL 2.6s ease-in-out infinite;
}
.ophanim-wing-br {
  clip-path: polygon(52% 52%, 82% 58%, 88% 78%, 78% 98%, 52% 98%);
  transform-origin: 58% 58%;
  animation: wingFlapBR 2.6s ease-in-out infinite;
}
@keyframes wingFlapTL {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-12deg); }
}
@keyframes wingFlapTR {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(12deg); }
}
@keyframes wingFlapBL {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(7deg); }
}
@keyframes wingFlapBR {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-7deg); }
}

/* Eye blink every few seconds */
.ophanim-blink {
  position: absolute;
  left: 50%;
  top: 47.5%;
  z-index: 4;
  width: 11%;
  height: 7%;
  margin: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 90% 80% at 50% 45%, #4a1d78 0%, #2a0f48 70%, #1a082e 100%);
  box-shadow: 0 0 6px rgba(176, 38, 255, 0.45);
  transform: translate(-50%, -50%) scaleY(0.05);
  opacity: 0;
  pointer-events: none;
  animation: ophanimBlink 5.2s ease-in-out infinite;
}
@keyframes ophanimBlink {
  0%, 88%, 100% {
    transform: translate(-50%, -50%) scaleY(0.05);
    opacity: 0;
  }
  90% {
    transform: translate(-50%, -50%) scaleY(1);
    opacity: 1;
  }
  92% {
    transform: translate(-50%, -50%) scaleY(0.05);
    opacity: 0;
  }
  94% {
    transform: translate(-50%, -50%) scaleY(1);
    opacity: 1;
  }
  96% {
    transform: translate(-50%, -50%) scaleY(0.05);
    opacity: 0;
  }
}

/* Legacy single-mark (side rails still use img.site-rail-ophanim) */
.ophanim-mark {
  position: absolute;
  z-index: 2;
  left: 6%;
  top: 6%;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(176, 38, 255, 0.28))
    drop-shadow(0 0 18px rgba(0, 212, 255, 0.14));
}

/*
 * Orbit spin: JS (motion-drive) primary; CSS fallback if JS absent.
 * Do not CSS-transform the stage or figure for spin — only SVG <g>.
 */
.orbit-spin-slow,
.orbit-spin-rev {
  transform-box: view-box;
  transform-origin: 50% 50%;
}
html:not(.vw-js-motion) .orbit-spin-slow {
  animation: spin 14s linear infinite;
}
html:not(.vw-js-motion) .orbit-spin-rev {
  animation: spinRev 9s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spinRev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* JS owns orbit spin only — leave wing/blink CSS alive */
html.vw-js-motion .orbit-spin-slow,
html.vw-js-motion .orbit-spin-rev {
  animation: none !important;
}
html.vw-js-motion .site-rail-l .site-rail-strip,
html.vw-js-motion .site-rail-r .site-rail-strip {
  /* strip glow still JS-optional; allow CSS fallback pulse */
}

@media (prefers-reduced-motion: reduce) {
  .ophanim-wing-tl,
  .ophanim-wing-tr,
  .ophanim-wing-bl,
  .ophanim-wing-br,
  .ophanim-blink {
    animation: none !important;
  }
  .ophanim-blink { display: none; }
}

.entry-runes {
  margin: 0;
  display: flex;
  gap: clamp(0.75rem, 3.5vw, 1.35rem);
  flex-wrap: wrap;
  justify-content: center;
  /* Bottom Christ is King — large and readable on phone + desktop */
  font-size: clamp(1.75rem, 8.5vw, 2.7rem);
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 1.2;
}
.entry-runes .r-christ,
.entry-runes .r-king {
  color: var(--void-deep);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 12px rgba(123, 47, 190, 0.85),
    0 0 28px rgba(176, 38, 255, 0.45);
}
.entry-runes .r-is {
  color: var(--void-neon);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 12px rgba(57, 255, 20, 0.75),
    0 0 26px rgba(57, 255, 20, 0.35);
}
.entry-runes span {
  animation: runeBreath 1.8s ease-in-out infinite alternate;
}
.entry-runes .r-is { animation-delay: 0.15s; }
.entry-runes .r-king { animation-delay: 0.3s; }
@keyframes runeBreath {
  from { opacity: 0.88; }
  to { opacity: 1; }
}

/* Enter — sits under title, between upper wings (not bottom) */
.entry-enter {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.8rem 2.2rem 0.9rem;
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  color: var(--void-neon);
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(176, 38, 255, 0.14),
    0 0 28px rgba(57, 255, 20, 0.14);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
  animation: enterPulse 2.4s ease-in-out infinite;
  pointer-events: auto;
}
.entry-enter:hover,
.entry-enter:focus-visible {
  outline: none;
  border-color: rgba(57, 255, 20, 0.75);
  background: rgba(57, 255, 20, 0.08);
  box-shadow:
    0 0 0 1px rgba(176, 38, 255, 0.25),
    0 0 36px rgba(57, 255, 20, 0.22);
  transform: scale(1.03);
}
.entry-enter:active { transform: scale(0.98); }
.entry-enter-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
}
.entry-enter-hint {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: rgba(176, 38, 255, 0.85);
  opacity: 0.9;
}
@keyframes enterPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(176, 38, 255, 0.12), 0 0 22px rgba(57, 255, 20, 0.1); }
  50% { box-shadow: 0 0 0 1px rgba(176, 38, 255, 0.22), 0 0 32px rgba(57, 255, 20, 0.2); }
}

/* ========== NAV ========== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  padding: 0 1.25rem;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(176, 38, 255, 0.18);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--void-neon);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}
.nav-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(176, 38, 255, 0.45));
}
.site-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  justify-content: flex-end;
  align-items: center;
  min-width: 0; /* allow shrink + scroll on mobile */
}
.site-nav .nav-links a {
  color: var(--void-muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.site-nav .nav-links a:hover { color: var(--void-neon); }

/* ========== CONTENT ========== */
.site-after {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
main {
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  width: 100%;
  max-width: min(var(--max), 100%);
  overflow-x: clip;
}
/* Long shell lines / mesh steps — wrap, don't widen the page */
pre, code, .mesh-steps, .cap-list, .feat-list, .tab-body li {
  overflow-wrap: anywhere;
  word-break: break-word;
}
pre {
  max-width: 100%;
  overflow-x: auto;
}
.hero-copy {
  padding: 3.5rem 1rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-copy .eyebrow,
.hero-copy .lede,
.hero-copy .cta-row {
  width: 100%;
}
.hero-cyberdeck {
  width: 100%;
  max-width: min(20em, 100%);
  margin: 0 auto 0.85rem;
  padding: 0 0.25rem;
  text-align: center;
  font-size: clamp(1.45rem, 4.5vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #39FF14 0%, #5AC8FA 45%, #B026FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(57, 255, 20, 0.25));
}
/* Override generic h2 left bias — stay perfectly centered */
.hero-copy h2.hero-cyberdeck {
  margin-left: auto;
  margin-right: auto;
  color: transparent;
}
.hero-subhead {
  font-size: 1.05rem !important;
  color: var(--void-muted) !important;
  margin: 0 auto 0.85rem !important;
  max-width: 28rem !important;
  text-align: center;
}
.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--void-dim);
  font-weight: 600;
}
.accent-purple { color: var(--void-glow); }
.accent-green { color: var(--void-neon); }
.accent-dim { color: var(--void-dim); }
.hero-copy h2,
.section-head h2,
.get h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.lede {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  color: var(--void-muted);
  font-size: 1.05rem;
}
.lede strong { color: var(--void-purple); font-weight: 600; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.95), rgba(50, 215, 75, 0.85));
  color: #061208;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.28);
}
.btn-primary:hover {
  color: #061208;
  box-shadow: 0 0 32px rgba(57, 255, 20, 0.45);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(176, 38, 255, 0.45);
  color: var(--void-glow);
}
.btn-ghost:hover {
  border-color: var(--void-neon);
  color: var(--void-neon);
  background: rgba(57, 255, 20, 0.05);
}
.btn-disabled,
.btn-disabled:hover {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.section-head {
  margin: 2.5rem 0 1.5rem;
  text-align: center;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.card {
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.95), rgba(12, 10, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
}
.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.card p {
  margin: 0;
  color: var(--void-muted);
  font-size: 0.94rem;
}
.card-green { border-top: 2px solid var(--void-neon); }
.card-green h3 { color: var(--void-neon); }
.card-glow { border-top: 2px solid var(--void-glow); }
.card-glow h3 { color: var(--void-glow); }
.card-purple { border-top: 2px solid var(--void-purple); }
.card-purple h3 { color: var(--void-purple); }
.card-cyan { border-top: 2px solid var(--void-cyan); }
.card-cyan h3 { color: var(--void-cyan); }
.card-yellow { border-top: 2px solid var(--void-yellow); }
.card-yellow h3 { color: var(--void-yellow); }
.card-deep { border-top: 2px solid var(--void-deep); }
.card-deep h3 { color: #c4a0f0; }

/* ========== Bottom-nav preview ========== */
.phone-nav-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  padding: 0.75rem 0.85rem;
  border-radius: 18px;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.pn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 3.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: var(--void-dim);
}
.pn-item svg {
  width: 22px;
  height: 22px;
  display: block;
}
.pn-item.c-home { color: var(--void-neon); }
.pn-item.c-decoy { color: var(--void-glow); }
.pn-item.c-war { color: var(--void-purple); }
.pn-item.c-shield { color: var(--void-cyan); }
.pn-item.c-rune,
.pn-item.c-patrol { color: var(--void-yellow); }
.pn-item.c-engine { color: var(--void-glow); }

/* ========== Icon guide cards ========== */
.section-sub {
  max-width: 36rem;
  margin: 0.5rem auto 0;
  color: var(--void-muted);
  font-size: 0.95rem;
}
.section-sub code {
  font-size: 0.8em;
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tab-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left-width: 3px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
@media (max-width: 560px) {
  .tab-card { grid-template-columns: 56px 1fr; }
}
.tab-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.tab-icon svg {
  width: 34px;
  height: 34px;
}
.tab-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.tab-lead {
  margin: 0 0 0.75rem;
  color: var(--void-muted);
  font-size: 0.95rem;
}
.tab-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0 0 0.45rem;
}
.tab-meta .chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid currentColor;
}
.tab-meta .chip-soft {
  border-style: dashed;
  opacity: 0.9;
  letter-spacing: 0.1em;
}
.tab-card-feature {
  border-width: 1px 1px 1px 3px;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 214, 10, 0.06);
}
.tab-card-feature .tab-body h3 {
  font-size: 1.28rem;
}
.rune-pitch {
  color: var(--void-text) !important;
  font-size: 0.98rem !important;
  border-left: 2px solid rgba(255, 214, 10, 0.45);
  padding-left: 0.85rem;
  margin-bottom: 1rem !important;
}
.cap-head {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-yellow);
  font-weight: 700;
}
.rune-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--void-dim);
  line-height: 1.45;
}
/* Big sell callout under Rune pitch */
.rune-note.rune-sell {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--void-text);
  line-height: 1.5;
  border-radius: 10px;
  border: 1px solid rgba(57, 255, 20, 0.28);
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), rgba(0, 212, 255, 0.06));
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.06);
}
.rune-note.rune-sell strong {
  color: var(--void-neon);
}
.cap-list code {
  font-size: 0.85em;
  color: var(--void-yellow);
  background: rgba(255, 214, 10, 0.08);
  border-color: rgba(255, 214, 10, 0.22);
}
.cap-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--void-muted);
  font-size: 0.9rem;
}
.cap-list li { margin: 0.3rem 0; }
.cap-list strong { color: var(--void-text); font-weight: 600; }
.cap-list.tight { font-size: 0.86rem; margin-top: 0.65rem; }
.tab-jump {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
}
.tab-jump a { color: var(--void-electric); }

.accent-home { border-left-color: var(--void-neon); }
.accent-home .tab-icon { color: var(--void-neon); box-shadow: 0 0 20px rgba(57, 255, 20, 0.15); }
.accent-home .chip { color: var(--void-neon); }

.accent-decoy { border-left-color: var(--void-glow); }
.accent-decoy .tab-icon { color: var(--void-glow); box-shadow: 0 0 20px rgba(176, 38, 255, 0.18); }
.accent-decoy .chip { color: var(--void-glow); }

.accent-war { border-left-color: var(--void-purple); }
.accent-war .tab-icon { color: var(--void-purple); box-shadow: 0 0 20px rgba(191, 90, 242, 0.18); }
.accent-war .chip { color: var(--void-purple); }

.accent-shield { border-left-color: var(--void-cyan); }
.accent-shield .tab-icon { color: var(--void-cyan); box-shadow: 0 0 20px rgba(90, 200, 250, 0.16); }
.accent-shield .chip { color: var(--void-cyan); }

.accent-rune { border-left-color: var(--void-yellow); }
.accent-rune .tab-icon { color: var(--void-yellow); box-shadow: 0 0 20px rgba(255, 214, 10, 0.14); }
.accent-rune .chip { color: var(--void-yellow); }

.accent-patrol { border-left-color: var(--void-yellow); }
.accent-patrol .tab-icon { color: var(--void-yellow); box-shadow: 0 0 20px rgba(255, 214, 10, 0.12); }
.accent-patrol .chip { color: var(--void-yellow); }

.accent-engine { border-left-color: var(--void-glow); }
.accent-engine .tab-icon { color: var(--void-glow); box-shadow: 0 0 20px rgba(176, 38, 255, 0.16); }
.accent-engine .chip { color: var(--void-glow); }

.war-depth { margin-top: 2.5rem; }
.chip-row-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}
.wr-chip {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid;
}
.wr-chip.c-arch {
  color: var(--void-purple);
  border-color: rgba(191, 90, 242, 0.55);
  background: rgba(191, 90, 242, 0.1);
}
.wr-chip.c-seraph {
  color: var(--void-glow);
  border-color: rgba(176, 38, 255, 0.55);
  background: rgba(176, 38, 255, 0.12);
}
.wr-chip.c-demon {
  color: #c4a0f0;
  border-color: rgba(123, 47, 190, 0.65);
  background: rgba(123, 47, 190, 0.18);
}
.mini-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
}
.mini-icon svg { width: 28px; height: 28px; }
.mini-icon.c-war { color: var(--void-purple); }
.mini-icon.c-decoy { color: var(--void-glow); }
.mini-icon.c-deep { color: var(--void-deep); }
.war-cards .card h3 { margin-top: 0; }

.protects {
  margin: 3.5rem 0;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(176, 38, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(57, 255, 20, 0.08), transparent 50%),
    var(--void-surface);
  border: 1px solid rgba(176, 38, 255, 0.15);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }

  /* Same links as desktop — compact chip row, scroll instead of wrap/hide */
  .site-nav {
    height: auto;
    min-height: var(--nav-h);
    padding: 0.45rem 0.55rem 0.5rem 0.75rem;
    gap: 0.55rem;
    flex-wrap: nowrap;
  }
  .nav-brand {
    flex-shrink: 0;
  }
  .nav-brand span {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
  .nav-brand img {
    width: 24px;
    height: 24px;
  }
  .site-nav .nav-links {
    display: flex;
    flex-wrap: nowrap;
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.25rem), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.25rem), transparent 100%);
    padding: 0.1rem 0.15rem 0.15rem 0;
  }
  .site-nav .nav-links::-webkit-scrollbar {
    display: none;
  }
  .site-nav .nav-links a {
    flex: 0 0 auto;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    font-weight: 600;
    padding: 0.38rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(176, 38, 255, 0.35);
    background: rgba(18, 18, 20, 0.9);
    color: var(--void-glow);
  }
  .site-nav .nav-links a:hover,
  .site-nav .nav-links a:active {
    color: var(--void-neon);
    border-color: rgba(57, 255, 20, 0.45);
    background: rgba(57, 255, 20, 0.08);
  }
}
.check-list, .x-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li, .x-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: var(--void-muted);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--void-neon);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}
.x-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--void-dim);
}

.get {
  margin: 2rem 0 1rem;
}
.get-panel {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(57, 255, 20, 0.06), transparent 40%),
    linear-gradient(200deg, rgba(176, 38, 255, 0.1), transparent 45%),
    #0f0f12;
  border: 1px solid rgba(57, 255, 20, 0.22);
  box-shadow: 0 0 60px rgba(176, 38, 255, 0.08);
}
.btn-coffee {
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.18), rgba(176, 38, 255, 0.12));
  border-color: rgba(255, 214, 10, 0.55);
  color: var(--void-yellow);
}
.btn-coffee:hover {
  border-color: var(--void-neon);
  color: var(--void-neon);
  background: rgba(255, 214, 10, 0.12);
}
/*
 * Buy / tip CTAs
 * Desktop: clean horizontal row — primary buy, quiet tip, smaller ghosts
 * Mobile: stacked (see max-width 720 block) — keeps the good phone layout
 * No rank insignia on coffee tip
 */
.get-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0.75rem;
  margin: 1.2rem auto 0.85rem;
  max-width: 42rem;
}
.get-cta .btn {
  width: auto;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}
/* Primary purchase — clear hierarchy on wide screens */
.get-cta .btn-primary {
  padding: 0.72rem 1.5rem;
  font-size: 0.92rem;
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.32);
}
/* Tip: same row weight as secondary, not a second fat primary */
.get-cta .btn-coffee {
  padding: 0.65rem 1.2rem;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(255, 214, 10, 0.08);
  border: 1px solid rgba(255, 214, 10, 0.42);
  color: var(--void-yellow);
  box-shadow: none;
}
.get-cta .btn-coffee:hover {
  background: rgba(255, 214, 10, 0.12);
  border-color: rgba(57, 255, 20, 0.5);
  color: var(--void-neon);
}
/* Play / Support — quieter tertiary */
.get-cta .btn-ghost {
  padding: 0.52rem 1rem;
  font-size: 0.8rem;
  font-weight: 550;
  opacity: 0.9;
}

/* ========== Product demo videos ========== */
/* Proportionate frames: phone fills most of width; desktop larger cards */
.phone-video-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: min(520px, 100%);
  margin: 0 auto;
}
.apart-panel .phone-video-wrap,
.tab-body .phone-video-wrap {
  max-width: min(480px, 100%);
}
.phone-video {
  position: relative;
  width: 100%;
  max-width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(57, 255, 20, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.55);
}
@media (min-width: 900px) {
  .phone-video {
    max-width: min(460px, 100%);
  }
  .apart-panel .phone-video-wrap .phone-video,
  .tab-body .phone-video-wrap .phone-video {
    max-width: min(440px, 100%);
  }
}
.phone-video-hero {
  max-width: min(440px, 100%);
  margin: 0 auto 0.35rem;
}
.phone-video-inline {
  margin: 1rem auto 0.35rem;
  max-width: min(440px, 100%);
}
.demo-video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  background: #0a0a0a;
}
/* Corner chip (secondary) */
.video-expand-hint {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 4;
  border: 1px solid rgba(57, 255, 20, 0.65);
  background: rgba(0, 0, 0, 0.8);
  color: var(--void-neon);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
}
.video-expand-hint:hover {
  background: rgba(57, 255, 20, 0.18);
  color: #fff;
}
/* Primary enlarge control — always visible under the clip */
.video-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  max-width: inherit;
  margin: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(57, 255, 20, 0.55);
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.14), rgba(176, 38, 255, 0.12));
  color: var(--void-neon);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.video-expand-btn:hover {
  border-color: var(--void-neon);
  background: rgba(57, 255, 20, 0.22);
  color: #fff;
  transform: translateY(-1px);
}
.video-expand-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.video-cap {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--void-dim);
  letter-spacing: 0.02em;
  text-align: center;
}
.demo-gallery {
  margin: 2.5rem 0 2rem;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem 1.25rem;
  align-items: start;
}
/* Even 2×3 / 3×2 — no orphan single card */
.demo-grid-even {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  gap: 2rem 1.75rem;
}
.demo-grid-even .phone-video {
  max-width: min(460px, 100%);
}
@media (min-width: 900px) {
  .demo-grid-even .phone-video {
    max-width: min(500px, 100%);
  }
}
@media (min-width: 900px) {
  .demo-grid-even {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1280px;
  }
  .demo-grid-even .phone-video {
    max-width: min(400px, 100%);
  }
}
@media (max-width: 560px) {
  .demo-grid-even {
    grid-template-columns: 1fr;
  }
  .demo-grid-even .phone-video {
    max-width: min(92vw, 420px);
  }
}
.demo-card {
  margin: 0;
  text-align: center;
}
.demo-card figcaption {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--void-muted);
  line-height: 1.4;
  padding: 0 0.35rem;
  min-height: 3.2em;
}
.demo-card figcaption strong {
  display: block;
  color: var(--void-neon);
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}

/* Fullscreen enlarge lightbox */
body.lightbox-open {
  overflow: hidden;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}
.video-lightbox[hidden] {
  display: none !important;
}
.video-lightbox-stage {
  width: min(920px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.video-lightbox-player {
  width: 100%;
  max-height: min(86vh, 920px);
  height: auto;
  border-radius: 16px;
  background: #000;
  border: 1px solid rgba(57, 255, 20, 0.35);
  box-shadow: 0 0 60px rgba(176, 38, 255, 0.25);
  object-fit: contain;
}
.video-lightbox-cap {
  margin: 0;
  max-width: 40rem;
  text-align: center;
  color: var(--void-muted);
  font-size: 0.95rem;
}
.video-lightbox-close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.85rem, env(safe-area-inset-right));
  z-index: 2001;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 10, 10, 0.85);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.video-lightbox-close:hover {
  border-color: var(--void-neon);
  color: var(--void-neon);
}
/* Desktop: big stage so phone UI is readable */
@media (min-width: 900px) {
  .video-lightbox-stage {
    width: min(560px, 42vw);
  }
  .video-lightbox-player {
    max-height: 90vh;
    width: min(560px, 42vw);
  }
  .video-expand-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.15rem;
  }
}
@media (min-width: 1200px) {
  .video-lightbox-stage {
    width: min(640px, 38vw);
  }
  .video-lightbox-player {
    width: min(640px, 38vw);
  }
}

/* ========== What sets us apart (big sell) ========== */
.apart {
  margin: 2rem 0 2.25rem;
}
.apart-panel {
  padding: 1.75rem 1.35rem 1.85rem;
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(57, 255, 20, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(176, 38, 255, 0.14), transparent 50%),
    linear-gradient(165deg, #121218, #0a0a0e);
  border: 1px solid rgba(57, 255, 20, 0.28);
  box-shadow:
    0 0 48px rgba(176, 38, 255, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.45);
}
.apart-panel h2 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.apart-lead {
  max-width: 38rem;
  margin: 0 auto 1.35rem;
  color: var(--void-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}
.apart-lead strong { color: var(--void-neon); }
.apart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 1.15rem;
}
.apart-card {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.apart-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: var(--void-glow);
}
.apart-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--void-muted);
  line-height: 1.45;
}
.apart-card-hero {
  grid-column: 1 / -1;
  border: 1px solid rgba(57, 255, 20, 0.35);
  background:
    linear-gradient(120deg, rgba(57, 255, 20, 0.08), transparent 50%),
    rgba(0, 0, 0, 0.45);
}
.apart-card-hero h3 {
  font-size: 1.2rem;
  color: var(--void-neon);
}
.apart-card-hero p {
  font-size: 0.95rem;
  color: var(--void-text);
}
.apart-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--void-yellow);
}

/* Feature strip — fluid, airy, mobile-first (store/web bullets) */
.feat-strip {
  margin: 0.5rem 0 1.75rem;
  padding: 0.25rem 0 0.5rem;
}
.feat-strip .feat-sub {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
.feat-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .feat-flow {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
  }
}
.feat-card {
  position: relative;
  padding: 1.2rem 1.15rem 1.15rem;
  border-radius: 16px;
  text-align: left;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), transparent 42%),
    rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  opacity: 0.85;
  pointer-events: none;
}
.feat-card-rune::before {
  background: linear-gradient(90deg, transparent, var(--void-neon), transparent);
}
.feat-card-armor::before {
  background: linear-gradient(90deg, transparent, #b026ff, transparent);
}
.feat-card-rune {
  border-color: rgba(57, 255, 20, 0.22);
}
.feat-card-armor {
  border-color: rgba(176, 38, 255, 0.28);
}
.feat-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--void-yellow);
}
.feat-card h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 3.8vw, 1.22rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}
.feat-card-rune h3 { color: var(--void-neon); }
.feat-card-armor h3 { color: #e8c4ff; }
.feat-lede {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--void-muted);
}
.feat-lines {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feat-lines li {
  position: relative;
  margin: 0;
  padding: 0.48rem 0 0.48rem 1.05rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--void-text);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.feat-lines li:first-child { border-top: none; padding-top: 0.15rem; }
.feat-lines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--void-neon);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.55);
  opacity: 0.9;
}
.feat-card-armor .feat-lines li::before {
  background: #c77dff;
  box-shadow: 0 0 8px rgba(176, 38, 255, 0.5);
}
.feat-lines li strong {
  color: #fff;
  font-weight: 650;
}
.feat-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--void-neon);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.feat-card-armor .feat-more { color: #d8a8ff; }
.feat-more:hover,
.feat-more:focus-visible {
  text-decoration: underline;
  outline: none;
}

@media (max-width: 719px) {
  .feat-strip {
    margin: 0.15rem 0 1.25rem;
  }
  .feat-card {
    padding: 1.05rem 1rem 1rem;
    border-radius: 14px;
  }
  .feat-lede {
    font-size: 0.86rem;
    margin-bottom: 0.7rem;
  }
  .feat-lines li {
    font-size: 0.86rem;
    padding: 0.42rem 0 0.42rem 1rem;
  }
}

/* Lifetime “support the becoming” banner */
.become-banner {
  position: relative;
  max-width: 40rem;
  margin: 1.35rem auto 1.6rem;
  padding: 1.25rem 1.35rem 1.35rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(176, 38, 255, 0.45);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(176, 38, 255, 0.22), transparent 55%),
    linear-gradient(145deg, rgba(57, 255, 20, 0.06), rgba(0, 0, 0, 0.55) 45%),
    rgba(10, 10, 10, 0.9);
  box-shadow:
    0 0 0 1px rgba(57, 255, 20, 0.08),
    0 0 32px rgba(176, 38, 255, 0.18);
  overflow: hidden;
}
.become-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(57, 255, 20, 0.015) 10px,
      rgba(57, 255, 20, 0.015) 11px
    );
  pointer-events: none;
}
.become-mark {
  position: relative;
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--void-yellow);
}
.become-title {
  position: relative;
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--void-neon);
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
}
.become-line {
  position: relative;
  margin: 0 auto 1.1rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--void-text);
}
.become-line strong { color: #fff; }
.become-line em {
  font-style: normal;
  color: var(--void-glow);
  font-weight: 700;
}
.become-cta {
  position: relative;
}
.apart-vs {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  font-size: 0.9rem;
  color: var(--void-dim);
  line-height: 1.5;
}
.apart-vs strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--void-text);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========== Work from anywhere (mesh how-to) ========== */
.mesh-anywhere {
  margin: 2.75rem 0 1.5rem;
}
.mesh-panel {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(0, 212, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(57, 255, 20, 0.06), transparent 50%),
    rgba(12, 12, 16, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.mesh-lead {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  color: var(--void-muted);
  line-height: 1.55;
  max-width: 42rem;
}
.mesh-lead strong { color: var(--void-electric); }
.mesh-steps {
  margin: 0 0 1.35rem;
  padding: 0 0 0 1.25rem;
  color: var(--void-text);
  font-size: 0.92rem;
  line-height: 1.55;
}
.mesh-steps li {
  margin-bottom: 0.85rem;
  padding-left: 0.25rem;
}
.mesh-steps strong {
  color: var(--void-neon);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
}
.mesh-steps code {
  font-size: 0.82em;
}
.mesh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}
.mesh-card {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mesh-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-yellow);
}
.mesh-card .cap-list {
  font-size: 0.85rem;
}
.mesh-foot {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--void-dim);
  line-height: 1.45;
}
/* Soft Terms gate (not a scare box) */
.mesh-terms-gate {
  margin: 0 0 0.5rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(57, 255, 20, 0.05));
}
.mesh-gate-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.mesh-gate-copy {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--void-muted);
  line-height: 1.55;
  max-width: 38rem;
}
.terms-accept-box {
  margin: 1.25rem 0 1.75rem;
  padding: 1.15rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(57, 255, 20, 0.28);
  background: rgba(57, 255, 20, 0.06);
}
.terms-accept-lead {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--void-muted);
  line-height: 1.5;
}
.terms-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--void-text);
  line-height: 1.45;
  cursor: pointer;
}
.terms-check input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.terms-accept-status {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--void-neon);
}
@media (max-width: 820px) {
  .mesh-grid {
    grid-template-columns: 1fr;
  }
  .mesh-panel {
    padding: 1.1rem 0.95rem 1.25rem;
  }
}

/* ========== Stores (compact: channels + why) ========== */
.stores-home {
  margin: 2.75rem 0 1.5rem;
  padding: 0;
}
.stores-home > .section-head {
  margin-bottom: 1rem;
}
.stores-channels {
  margin-bottom: 1.5rem;
}
.stores-why {
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(176, 38, 255, 0.1), transparent 55%),
    rgba(12, 12, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.stores-why-head {
  margin: 0 0 0.85rem;
}
.stores-why-head h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.stores-why-head .section-sub {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  max-width: 40rem;
}
.hurdle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.65rem;
}
.hurdles-compact .hurdle-card {
  padding: 0.85rem 0.9rem;
}
.hurdle-card {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(176, 38, 255, 0.18);
}
.hurdle-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  color: var(--void-glow);
}
.hurdle-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--void-muted);
  line-height: 1.45;
}
.price {
  margin: 0.5rem 0 1rem;
}
.price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--void-neon);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.35);
  letter-spacing: -0.02em;
}
.price .hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--void-dim);
  font-size: 0.85rem;
}
.get-copy {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  color: var(--void-muted);
}
.fine {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  color: var(--void-dim);
}

/* ========== FOOTER ========== */
.site-foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 1.25rem;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.foot-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.foot-brand strong {
  display: block;
  color: var(--void-neon);
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}
.foot-brand p {
  margin: 0.15rem 0 0;
  color: var(--void-dim);
  font-size: 0.85rem;
}
.foot-links {
  display: flex;
  gap: 1.25rem;
}
.foot-links a { color: var(--void-muted); font-size: 0.9rem; }
.foot-copy {
  margin: 0;
  color: var(--void-dim);
  font-size: 0.8rem;
}

/* ========== PRIVACY PAGE ========== */
.page-privacy {
  min-height: 100svh;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(123, 47, 190, 0.18), transparent 55%),
    var(--void-black);
}
.privacy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
.privacy-wrap h1 {
  margin: 1.5rem 0 0.5rem;
  color: var(--void-neon);
  letter-spacing: 0.06em;
}
.privacy-wrap h2 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--void-glow);
}
.privacy-wrap p, .privacy-wrap li {
  color: var(--void-muted);
}
.privacy-wrap a { color: var(--void-electric); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--void-dim);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.back-link:hover { color: var(--void-neon); }

@media (prefers-reduced-motion: reduce) {
  .orbit-spin-slow,
  .orbit-spin-rev,
  .entry-title,
  .entry-runes span,
  .entry-enter,
  .ophanim-flap,
  .ophanim-wing-tl,
  .ophanim-wing-tr,
  .ophanim-wing-bl,
  .ophanim-wing-br,
  .ophanim-blink {
    animation: none !important;
  }
  .ophanim-blink { display: none; }
  .entry {
    transition: none;
  }
}


/* ========== Desktop Trinity / Celtic side rails ==========
 * Tight pack: [Celtic rail] · small gap · [ophanim] · content edge
 * Two outer rings only — electric blue + purple, fluid (no black disc).
 * No center ring. No wing-flap.
 */
.site-rail {
  display: none;
  pointer-events: none;
}

@media (min-width: 1100px) {
  :root {
    --rail-w: clamp(70px, 6.5vw, 100px);
    --angel-size: clamp(120px, 10vw, 160px);
    --rail-pack-gap: 10px; /* strip ↔ angel */
    --content-col: min(var(--max), calc(100vw - 2.5rem));
    --side-gutter: max(0px, calc((100vw - var(--content-col)) / 2));
  }

  /*
   * Full-viewport rails: pin to viewport top AND bottom (not just 100vh quirks).
   * Pack = rail + gap + angel, tight to content edge.
   */
  .site-rail {
    display: block;
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: auto;
    width: calc(var(--rail-w) + var(--rail-pack-gap) + var(--angel-size));
    /* Explicit full viewport — avoid short 100vh mobile chrome issues on desktop too */
    min-height: 100vh;
    min-height: 100dvh;
    height: auto; /* top+bottom stretch the box */
    z-index: 30;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .site-rail-l {
    left: max(6px, calc(var(--side-gutter) - var(--rail-w) - var(--rail-pack-gap) - var(--angel-size) + 4px));
  }
  .site-rail-r {
    right: max(6px, calc(var(--side-gutter) - var(--rail-w) - var(--rail-pack-gap) - var(--angel-size) + 4px));
  }

  /*
   * Knot strip: full viewport height, straight vertical plait only
   * (source art is mid-side crop — no corner “turn” at bottom).
   */
  .site-rail-strip {
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--rail-w);
    height: auto;
    min-height: 100%;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    padding: 0;
    box-shadow:
      0 0 16px rgba(92, 26, 138, 0.5),
      0 0 36px rgba(58, 15, 92, 0.4);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%; /* one straight strip stretched top→bottom */
  }
  .site-rail-l .site-rail-strip {
    left: 0;
    right: auto;
    background-image: url("/assets/celtic-rail-l.png");
  }
  .site-rail-r .site-rail-strip {
    left: auto;
    right: 0;
    background-image: url("/assets/celtic-rail-r.png");
  }
  html:not(.vw-js-motion) .site-rail-l .site-rail-strip {
    animation: railGlowL 3.2s ease-in-out infinite alternate;
  }
  html:not(.vw-js-motion) .site-rail-r .site-rail-strip {
    animation: railGlowR 3.2s ease-in-out infinite alternate;
  }
  .site-rail-art {
    display: none;
  }

  /* Ophanim snug against content side of the pack */
  .site-rail-angel-stage {
    position: absolute;
    top: 12%;
    z-index: 5;
    width: var(--angel-size);
    height: var(--angel-size);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-rail-l .site-rail-angel-stage {
    right: 0;
    left: auto;
  }
  .site-rail-r .site-rail-angel-stage {
    left: 0;
    right: auto;
  }

  /* Rings + figure co-centered in stage (Chrome-safe: no stage transform) */
  .site-ophanim-orbit {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    pointer-events: none;
    overflow: visible;
  }
  .site-ophanim-orbit .orbit-spin-slow,
  .site-ophanim-orbit .orbit-spin-rev {
    transform-box: view-box;
    transform-origin: 50% 50%;
  }
  html:not(.vw-js-motion) .site-ophanim-orbit .orbit-spin-slow {
    animation: spin 14s linear infinite;
  }
  html:not(.vw-js-motion) .site-ophanim-orbit .orbit-spin-rev {
    animation: spinRev 9s linear infinite;
  }

  .site-rail-angel-stage .ophanim-live {
    left: 3%;
    top: 3%;
    width: 94%;
    height: 94%;
    filter:
      drop-shadow(0 0 10px rgba(176, 38, 255, 0.4))
      drop-shadow(0 0 20px rgba(0, 212, 255, 0.22))
      drop-shadow(0 0 28px rgba(92, 26, 138, 0.45));
  }
  /* Fallback single img if live stack not present */
  .site-rail-ophanim {
    position: absolute;
    z-index: 2;
    left: 3%;
    top: 3%;
    width: 94%;
    height: 94%;
    object-fit: contain;
    filter:
      drop-shadow(0 0 10px rgba(176, 38, 255, 0.4))
      drop-shadow(0 0 20px rgba(0, 212, 255, 0.22))
      drop-shadow(0 0 28px rgba(92, 26, 138, 0.45));
  }
}

@media (min-width: 1400px) {
  :root {
    --rail-w: clamp(80px, 6.8vw, 110px);
    --angel-size: clamp(140px, 9.5vw, 176px);
    --rail-pack-gap: 12px;
  }
  .site-rail-angel-stage {
    top: 11%;
  }
}

@keyframes ophanimBreath {
  from {
    transform: translateY(-2px) scale(0.995);
    filter:
      drop-shadow(0 0 8px rgba(176, 38, 255, 0.35))
      drop-shadow(0 0 16px rgba(0, 212, 255, 0.16))
      drop-shadow(0 0 24px rgba(92, 26, 138, 0.4));
  }
  to {
    transform: translateY(2px) scale(1.015);
    filter:
      drop-shadow(0 0 14px rgba(176, 38, 255, 0.5))
      drop-shadow(0 0 24px rgba(0, 212, 255, 0.28))
      drop-shadow(0 0 34px rgba(123, 47, 190, 0.5));
  }
}

@keyframes railGlowL {
  from {
    box-shadow:
      0 0 12px rgba(92, 26, 138, 0.4),
      0 0 28px rgba(58, 15, 92, 0.3);
    filter: brightness(0.92);
  }
  to {
    box-shadow:
      0 0 22px rgba(176, 38, 255, 0.55),
      0 0 40px rgba(0, 212, 255, 0.22);
    filter: brightness(1.08);
  }
}
@keyframes railGlowR {
  from {
    box-shadow:
      0 0 12px rgba(92, 26, 138, 0.4),
      0 0 28px rgba(58, 15, 92, 0.3);
    filter: brightness(0.92);
  }
  to {
    box-shadow:
      0 0 22px rgba(176, 38, 255, 0.55),
      0 0 40px rgba(0, 212, 255, 0.22);
    filter: brightness(1.08);
  }
}

body.gate .site-rail {
  display: none !important;
}

@media (min-width: 1100px) and (max-width: 1200px) {
  :root {
    --angel-size: 112px;
    --rail-w: 60px;
    --rail-pack-gap: 8px;
  }
  .site-rail-angel-stage {
    top: 14%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-ophanim-orbit .orbit-spin-slow,
  .site-ophanim-orbit .orbit-spin-rev,
  .site-rail-ophanim,
  .site-rail-l .site-rail-strip,
  .site-rail-r .site-rail-strip {
    animation: none !important;
  }
}

/* ========== Mobile compartment compact (≤720px) ==========
 * Shorter scroll: tight sections, 2-col demos, collapsible buy details.
 * Desktop rails/ophanim unchanged.
 */
.get-callout-purple {
  border-left: 3px solid #B026FF;
  padding-left: 0.85rem;
  color: #c8c8c8;
}
.get-callout-green {
  border-left: 3px solid #39FF14;
  padding-left: 0.85rem;
  color: #c8c8c8;
}
.get-compartment {
  margin-top: 1.25rem;
  text-align: left;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.get-compartment > summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 38, 255, 0.4);
  color: var(--void-glow);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  user-select: none;
}
.get-compartment > summary::-webkit-details-marker { display: none; }
.get-compartment > summary::after {
  content: " ▾";
  opacity: 0.7;
}
.get-compartment[open] > summary::after {
  content: " ▴";
}
.get-compartment-body {
  margin-top: 1rem;
}
.get-bullets {
  margin-top: 1rem;
  text-align: left;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop: keep buy details always expanded, hide the disclosure chrome */
@media (min-width: 721px) {
  .get-compartment > summary {
    display: none;
  }
  .get-compartment-body {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  main {
    padding: 0 0.85rem 2.25rem;
  }

  /* --- Hero: one screen-ish --- */
  .hero-copy {
    padding: 1.35rem 0.35rem 0.85rem;
  }
  .hero-cyberdeck {
    font-size: clamp(1.28rem, 6.2vw, 1.65rem);
    margin-bottom: 0.45rem;
  }
  .hero-subhead {
    font-size: 0.92rem !important;
    margin-bottom: 0.55rem !important;
  }
  .mobile-collapse {
    display: none;
  }
  .hero-copy .cta-row {
    gap: 0.45rem;
  }
  .hero-copy .btn {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }

  /* --- Sections: less air --- */
  .section-head {
    margin: 1.25rem 0 0.85rem;
  }
  .section-head h2,
  .get h2,
  .apart-panel h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.55rem);
    margin-bottom: 0.55rem;
  }
  .section-sub,
  .apart-lead {
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }
  .lede {
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
  }

  /* --- Apart: compact cards + shorter hero clip --- */
  .apart-panel {
    padding: 1rem 0.85rem 1.15rem;
  }
  .apart-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }
  .apart-card {
    padding: 0.75rem 0.7rem;
  }
  .apart-card h3 {
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
  }
  .apart-card p {
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .apart-card-hero {
    grid-column: 1 / -1;
  }
  .apart-vs {
    font-size: 0.8rem;
    margin: 0.75rem 0 0.65rem;
  }
  .phone-video-hero,
  .apart-panel .phone-video {
    max-width: min(100%, 300px);
    /* width-only cap — do not crop tall Fold footage with max-height */
    margin-left: auto;
    margin-right: auto;
  }
  /* Fold summary chips must not force page wider than the viewport */
  .site-fold-kicker,
  .site-fold-hint {
    min-width: 0;
    flex-basis: 100%;
  }
  .site-nav {
    max-width: 100%;
    overflow-x: clip;
  }
  .site-nav .nav-links {
    min-width: 0;
  }
  .demo-grid,
  .demo-grid-even,
  .apart-grid,
  .feat-grid {
    max-width: 100%;
  }
  .apart-panel .demo-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .video-cap {
    font-size: 0.78rem;
    margin-top: 0.35rem;
  }

  /* --- Demos: 2-col compartments, not full-width towers --- */
  .demo-gallery {
    margin: 1.25rem 0 1rem;
  }
  .demo-grid-even {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.65rem;
  }
  .demo-grid-even .phone-video,
  .demo-grid-even .phone-video-wrap {
    max-width: 100%;
  }
  .demo-grid-even .demo-video {
    max-height: min(28vh, 220px);
    width: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .demo-card figcaption {
    min-height: 0;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    line-height: 1.3;
    padding: 0 0.15rem;
  }
  .demo-card figcaption strong {
    font-size: 0.78rem;
  }
  .video-expand-btn {
    padding: 0.45rem 0.55rem;
    font-size: 0.72rem;
  }
  .video-expand-hint {
    font-size: 0.62rem;
    padding: 0.25rem 0.4rem;
    top: 0.35rem;
    right: 0.35rem;
  }

  /* --- Icon guide / war room: denser --- */
  .phone-nav-bar {
    margin-bottom: 0.85rem;
    padding: 0.5rem 0.45rem;
    gap: 0.2rem 0.3rem;
  }
  .pn-item {
    min-width: 2.6rem;
    font-size: 0.55rem;
  }
  .pn-item svg {
    width: 18px;
    height: 18px;
  }
  .tab-list {
    gap: 0.65rem;
  }
  .tab-card,
  .card {
    padding: 0.9rem 0.85rem;
  }
  .card h3 {
    font-size: 0.95rem;
  }
  .card p {
    font-size: 0.85rem;
  }
  .protects {
    margin: 1.5rem 0;
    padding: 1.15rem 1rem;
  }
  .war-depth {
    margin-top: 1.25rem;
  }

  /* --- Stores: shorter --- */
  .stores,
  #stores {
    margin-top: 1.25rem;
  }

  /* --- Get it: CTA first, details collapsed on small screens --- */
  .get {
    margin: 1.25rem 0 0.5rem;
  }
  .get-panel {
    padding: 1.35rem 1rem 1.25rem;
  }
  .get-copy-lead {
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
  }
  /* Mobile Get it — stacked compact pills (keep this; desktop uses rules above) */
  .get-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    margin: 0.85rem auto 0.4rem;
    max-width: none;
  }
  .get-cta .btn {
    width: 100%;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 0.95rem;
    font-size: 0.8rem;
  }
  .get-cta .btn-primary {
    padding: 0.55rem 1rem;
    font-size: 0.84rem;
  }
  .get-cta .btn-coffee {
    width: 100%;
    max-width: 18rem;
    white-space: normal;
    text-align: center;
    padding: 0.5rem 0.95rem;
    font-size: 0.8rem;
  }
  .get-cta .btn-ghost {
    padding: 0.48rem 0.9rem;
    font-size: 0.78rem;
  }
  .btn {
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
  }
  .price .amount {
    font-size: 2rem;
  }
  .get-compartment {
    margin-top: 0.85rem;
  }
  .get-compartment-body .get-copy {
    font-size: 0.86rem;
  }
  .get-bullets li {
    font-size: 0.84rem;
    padding: 0.3rem 0 0.3rem 1.35rem;
  }

  /* --- Footer --- */
  .site-foot {
    padding: 1.25rem 1rem 1.75rem;
  }
}

/* Extra-small phones */
@media (max-width: 400px) {
  .apart-grid {
    grid-template-columns: 1fr;
  }
  .demo-grid-even .demo-video {
    max-height: min(26vh, 200px);
  }
}

/* ========== Site folds — click to open more (all viewports) ========== */
.site-fold {
  margin: 0.75rem 0 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(57, 255, 20, 0.22);
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.9));
  overflow: hidden;
}
.site-fold + .site-fold {
  margin-top: 0.65rem;
}
.site-fold > summary.site-fold-sum {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  padding: 0.9rem 1.1rem;
  user-select: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.site-fold > summary.site-fold-sum::-webkit-details-marker { display: none; }
.site-fold > summary.site-fold-sum::marker { content: ""; }
.site-fold > summary.site-fold-sum:hover {
  background: rgba(57, 255, 20, 0.06);
}
.site-fold > summary.site-fold-sum:focus-visible {
  outline: 2px solid var(--void-neon);
  outline-offset: -2px;
}
.site-fold-kicker {
  flex: 1 1 auto;
  min-width: 0; /* was 12rem — forced blank horizontal pan on narrow phones */
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--void-text);
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}
.site-fold-hint {
  flex: 1 1 8rem;
  min-width: 0;
  font-size: 0.82rem;
  color: var(--void-muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.site-fold-chevron {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--void-neon);
  opacity: 0.9;
  white-space: nowrap;
}
.site-fold-chevron::after {
  content: "Expand ▾";
}
.site-fold[open] > summary.site-fold-sum {
  border-bottom: 1px solid rgba(57, 255, 20, 0.14);
  background: rgba(57, 255, 20, 0.04);
}
.site-fold[open] > summary.site-fold-sum .site-fold-chevron::after {
  content: "Close ▴";
}
.site-fold-body {
  padding: 0.85rem 1rem 1.15rem;
}
.site-fold-body > :first-child {
  margin-top: 0;
}
/* Nested inside tab cards / panels */
.tab-body > .site-fold,
.apart-panel > .site-fold,
.mesh-panel > .site-fold,
.stores-why > .site-fold {
  margin-left: 0;
  margin-right: 0;
}
.site-fold.site-fold-soft {
  border-color: rgba(176, 38, 255, 0.28);
}
.site-fold.site-fold-soft > summary.site-fold-sum:hover {
  background: rgba(176, 38, 255, 0.07);
}
.site-fold.site-fold-soft[open] > summary.site-fold-sum {
  border-bottom-color: rgba(176, 38, 255, 0.18);
  background: rgba(176, 38, 255, 0.05);
}
.site-fold.site-fold-soft .site-fold-chevron {
  color: var(--void-glow);
}
/* Hero utility: expand / collapse all */
.fold-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.35rem 0 0.25rem;
}
.fold-toolbar .btn {
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
}

/* ========== b509 sell polish — package pill · get highlights · focus · motion ========== */
.package-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0.35rem 0 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 200, 250, 0.35);
  background:
    linear-gradient(135deg, rgba(90, 200, 250, 0.12), rgba(57, 255, 20, 0.06)),
    rgba(0, 0, 0, 0.35);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 24px rgba(90, 200, 250, 0.08);
}
.package-pill-label {
  color: var(--void-dim);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.package-pill-value {
  color: var(--void-cyan);
  font-weight: 700;
}
.package-pill-sep { color: var(--void-dim); opacity: 0.7; }
.package-pill-meta { color: var(--void-muted); font-size: 0.78rem; }

.get-highlights {
  list-style: none;
  margin: 0.75rem 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.get-highlights li {
  position: relative;
  padding: 0.55rem 0.75rem 0.55rem 2rem;
  border-radius: 10px;
  border: 1px solid rgba(57, 255, 20, 0.14);
  background: rgba(57, 255, 20, 0.04);
  color: var(--void-text);
  font-size: 0.92rem;
  line-height: 1.4;
}
.get-highlights li::before {
  content: "▸";
  position: absolute;
  left: 0.7rem;
  top: 0.55rem;
  color: var(--void-neon);
  font-weight: 700;
}

.get-panel {
  position: relative;
  isolation: isolate;
}
.get-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(90, 200, 250, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 100%, rgba(57, 255, 20, 0.1), transparent 50%);
  pointer-events: none;
}

/* Sharper interactive focus (keyboard + a11y) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--void-neon);
  outline-offset: 3px;
}

/* Product appears after gate hard-cut — subtle fade only on product (gate already gone) */
@media (prefers-reduced-motion: no-preference) {
  body.entered .site-after {
    animation: site-rise 0.28s ease both;
  }
}
@keyframes site-rise {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

/* Card hover lift (subtle, desktop) */
@media (hover: hover) and (pointer: fine) {
  .card,
  .tab-card,
  .hurdle-card {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  }
  .card:hover,
  .tab-card:hover,
  .hurdle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }
}

/* Success / fulfill polish shared class hooks */
.page-privacy .fulfill-box {
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.08);
}
.page-privacy .key-display {
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.15), 0 0 24px rgba(57, 255, 20, 0.06);
}
