/* ===============================================================
   BINDZ — v2 (dark shift)
   Deep emerald/ink background · 3D tilted glass showcase · aurora
   =============================================================== */

:root {
  /* Deep brand background: neutral ink with a faint violet lean — no green */
  --bg-0: #0a0a14;
  --bg-1: #0e0e1c;
  --bg-2: #13132a;
  --ink: #eef0f7;
  --ink-soft: #b9bed0;
  --muted: #7f869a;
  --line: rgba(255, 255, 255, 0.08);

  /* Brand spectrum — cyan → indigo → purple → magenta (no teal, no lime) */
  --cy: #22d3ee;
  --bl: #6366f1;
  --pu: #a855f7;
  --mg: #d946ef;
  --te: #818cf8; /* bridge indigo (retained name for legacy refs) */
  --lime: #22d3ee; /* "alive" accent dots/glow — now cyan, no green */
  --hl: #ffffff;   /* clean high-contrast for CTA surfaces */

  --grad-brand: linear-gradient(92deg, #22d3ee 0%, #6366f1 40%, #a855f7 70%, #d946ef 100%);
  --grad-text:  linear-gradient(92deg, #a5e9ff 0%, #22d3ee 30%, #a855f7 70%, #d946ef 95%);

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --topbar-h: 0px;
  --nav-h: 66px;
  --radius: 22px;

  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-io:  cubic-bezier(.65, 0, .35, 1);
}

* { box-sizing: border-box; }
html {
  overflow-x: clip;
}
html, body {
  margin: 0; padding: 0;
  width: 100%;
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* LOADER removed — new hero uses a video element, no frame preload */
@keyframes spin { to { transform: rotate(1turn); } }

/* ---------------- AURORA BG ---------------- */
.aurora {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 90% 10%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(1000px 900px at 0% 100%, rgba(129,140,248,.08), transparent 60%),
    linear-gradient(180deg, #0a0a14 0%, #0e0e1c 50%, #0a0a14 100%);
}
.aurora__blob {
  position: absolute;
  width: 56vmin; height: 56vmin;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  mix-blend-mode: screen;
  animation: drift 22s var(--ease-io) infinite alternate;
}
.aurora__blob--a {
  top: -12%; left: 48%;
  background: radial-gradient(circle, #22d3ee 0%, transparent 60%);
}
.aurora__blob--b {
  bottom: -18%; left: -10%;
  background: radial-gradient(circle, #818cf8 0%, transparent 60%);
  animation-duration: 28s; animation-delay: -6s;
  opacity: .4;
}
.aurora__blob--c {
  top: 30%; right: -10%;
  background: radial-gradient(circle, #a855f7 0%, transparent 60%);
  animation-duration: 32s; animation-delay: -12s;
  opacity: .3;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(6%, 4%, 0) scale(1.08); }
  100% { transform: translate3d(-4%, -3%, 0) scale(.96); }
}
.aurora__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(1100px 700px at 70% 35%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(1100px 700px at 70% 35%, #000 0%, transparent 80%);
}
.aurora__grain {
  position: absolute; inset: 0;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------------- TOPBAR ---------------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--topbar-h);
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #06060c 0%, #0e0e1c 50%, #06060c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d6e0db;
  font-size: 12px; letter-spacing: .04em;
}
.topbar::before,
.topbar::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.topbar::before { left: 0;  background: linear-gradient(90deg, #06060c, transparent); }
.topbar::after  { right: 0; background: linear-gradient(-90deg, #06060c, transparent); }
.topbar__track { width: 100%; overflow: hidden; }
.topbar__strip {
  display: inline-flex; align-items: center; gap: 48px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  padding-left: 48px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 10px; opacity: .82; }
.topbar__item em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px; padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34,211,238,.22), rgba(217,70,239,.22));
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.topbar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 10px #22d3ee, 0 0 22px rgba(34,211,238,.7);
  animation: pulse 1.6s var(--ease-io) infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(1.35); }
}

/* ---------------- NAV ---------------- */
.nav {
  position: fixed;
  top: calc(var(--topbar-h) + 14px);
  left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: center;
  padding: 0 20px;
  pointer-events: none;
  transition: transform .45s var(--ease-out), top .45s var(--ease-out);
  transform-origin: top center;
}
/* Scroll-shrink: lightly scales & tightens the bar after a few px */
.nav.is-scrolled {
  top: calc(var(--topbar-h) + 8px);
  transform: scale(.94);
}
.nav__pill {
  pointer-events: auto;
  position: relative;
  display: flex; align-items: center;
  gap: 24px;
  height: var(--nav-h);
  padding: 8px 10px 8px 22px;
  min-width: min(1220px, 96vw);
  max-width: 1220px;
  border-radius: 22px;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.07) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
          backdrop-filter: blur(22px) saturate(180%);

  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.10) inset,
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 22px 50px -20px rgba(0, 0, 0, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  isolation: isolate;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled .nav__pill {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.10) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 28px 60px -22px rgba(0, 0, 0, 0.75),
    0 4px 10px rgba(0, 0, 0, 0.35);
}

/* Light-mode nav: activates when viewport sits over a data-nav-theme="light"
   section. Inverts glass, darkens text, keeps the animated CTA legible. */
.nav.is-light .nav__pill {
  background:
    linear-gradient(135deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.62) 50%, rgba(255,255,255,.78) 100%);
  border-color: rgba(10,10,20,.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 0 0 1px rgba(10,10,20,.04) inset,
    0 18px 40px -18px rgba(10,10,20,.22),
    0 2px 6px rgba(10,10,20,.08);
}
.nav.is-light .nav__link,
.nav.is-light .nav__signin { color: #3a3f4d; }
.nav.is-light .nav__link:hover { color: #0a0a14; background: rgba(10,10,20,.05); }
.nav.is-light .nav__signin:hover { background: rgba(10,10,20,.06); }
.nav.is-light .nav__cta { color: #0a0a14; background: rgba(10,10,20,.04); }
.nav.is-light .nav__cta:hover { background: rgba(10,10,20,.08); }
.nav.is-light .nav__burger { background: rgba(10,10,20,.06); border-color: rgba(10,10,20,.12); }
.nav.is-light .nav__burger span { background: #0a0a14; }
.nav.is-light .nav__logo--dark  { opacity: 0; }
.nav.is-light .nav__logo--light { opacity: 1; }

.nav__glare {
  position: absolute; inset: -1px;
  border-radius: 999px;
  background:
    radial-gradient(260px 80px at 18% 0%, rgba(34,211,238,.22), transparent 60%),
    radial-gradient(320px 120px at 82% 120%, rgba(217,70,239,.14), transparent 70%),
    radial-gradient(260px 100px at 50% 130%, rgba(129,140,248,.10), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}
.nav__shine {
  position: absolute; top: 0; left: -30%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.15) 50%, transparent 100%);
  filter: blur(6px);
  transform: translateX(-50%) skewX(-18deg);
  opacity: 0;
  transition: transform 1.2s var(--ease-out), opacity .3s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.nav__pill:hover .nav__shine { opacity: .9; transform: translateX(280%) skewX(-18deg); }

/* brand */
.nav__brand {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; flex: 0 0 auto;
  height: 100%; padding-right: 4px;
  transition: transform .25s var(--ease-out), filter .25s var(--ease-out);
}
.nav__brand:hover { transform: translateY(-1px); filter: drop-shadow(0 4px 10px rgba(34,211,238,.35)); }
.nav__logo { height: 22px; width: auto; -webkit-user-select: none;
 user-select: none; -webkit-user-drag: none; transition: opacity .3s var(--ease-out); }
.nav__logo--light { position: absolute; inset: auto; opacity: 0; }
.nav__brand { position: relative; }

/* links */
.nav__links {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  margin-left: 10px; flex: 1; justify-content: center;
}
.nav__link {
  position: relative;
  padding: 9px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .25s var(--ease-out), background .25s var(--ease-out);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav__chev {
  width: 11px;
  height: 8px;
  opacity: .75;
  flex: 0 0 auto;
  color: currentColor;
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out);
}
.nav__link:hover .nav__chev { opacity: 1; transform: translateY(1px); }
.nav__link, .nav__signin, .nav__cta { white-space: nowrap; }

/* actions */
.nav__actions { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 6px; }
.nav__link + .nav__link { position: relative; }
.nav__link + .nav__link::before {
  content: "";
  position: absolute;
  left: -6px; top: 50%;
  width: 1px; height: 20px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.14), rgba(255,255,255,0));
  pointer-events: none;
}
.nav.is-light .nav__link + .nav__link::before {
  background: linear-gradient(180deg, rgba(10,10,20,0), rgba(10,10,20,.14), rgba(10,10,20,0));
}
.nav__signin {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  transition: background .25s var(--ease-out);
}
.nav__signin:hover { background: rgba(255,255,255,.08); }

/* ---------- LANGUAGE SWITCHER ---------- */
.langSw {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 14px;
}
.langSw[hidden] { display: none !important; }
.langSw__trig {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 8px 6px 8px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--ink);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: background .2s var(--ease-out), border-color .2s var(--ease-out);
}
.langSw__flag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 13px;
  border-radius: 2.5px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 1px 2px rgba(0,0,0,.2);
}
.langSw__flag > svg,
.flagIco > svg {
  width: 100%; height: 100%;
  display: block;
}
.nav.is-light .langSw__flag { box-shadow: 0 0 0 1px rgba(10,10,20,.1), 0 1px 2px rgba(0,0,0,.08); }
.langSw__trig:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); }
.nav.is-light .langSw__trig { border-color: rgba(10,10,20,.14); color: #3a3f4d; }
.nav.is-light .langSw__trig:hover { background: rgba(10,10,20,.05); border-color: rgba(10,10,20,.28); }
.langSw__chev {
  width: 9px; height: 9px;
  transition: transform .25s var(--ease-out);
}
.langSw.is-open .langSw__chev { transform: rotate(-180deg); }
.langSw__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  margin: 0; padding: 8px;
  list-style: none;
  background: rgba(14, 17, 30, .94);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  box-shadow:
    0 24px 48px -20px rgba(0,0,0,.7),
    0 12px 24px -14px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  z-index: 40;
}
.langSw.is-open .langSw__menu,
.langSw__menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.langSw__menu li { margin: 0; padding: 0; list-style: none; }
.langSw__menu li + li { margin-top: 2px; }
.langSw__menu button {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  padding: 10px 14px 10px 12px;
  background: transparent;
  border: 0; border-radius: 10px;
  color: rgba(255,255,255,.82);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  transition: background .18s var(--ease-out), color .18s var(--ease-out);
}
.langSw__menu button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: auto;
  background: transparent;
  transition: background .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.langSw__menu button:hover { background: rgba(255,255,255,.06); color: #fff; }
.langSw__menu button[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(34,211,238,.12), rgba(217,70,239,.12));
  color: #fff;
}
.langSw__menu button[aria-selected="true"]::after {
  background: linear-gradient(92deg, #22d3ee 0%, #a855f7 50%, #d946ef 100%);
  box-shadow: 0 0 10px rgba(168,85,247,.55);
}
.langSw__menu .flagIco {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 18px;
  flex: 0 0 auto;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 1px 2px rgba(0,0,0,.3);
}
.langSw__lbl {
  font-family: inherit;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  letter-spacing: 0;
}

@property --navCtaAngle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.nav__cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  height: 42px; padding: 0 16px;
  border-radius: 999px;
  font-weight: 600; font-size: 13px;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: none;
  -webkit-backdrop-filter: blur(14px) saturate(160%);
          backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 10px 24px -10px rgba(34, 211, 238, .35),
    0 2px 8px rgba(217, 70, 239, .22);
  transition: transform .25s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
  isolation: isolate;
}
/* rotating conic-gradient stroke */
.nav__cta::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--navCtaAngle),
    #22d3ee 0%, #a855f7 25%, #d946ef 50%, #a5e9ff 75%, #22d3ee 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: navCtaSpin 4s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes navCtaSpin {
  to { --navCtaAngle: 360deg; }
}
.nav__cta svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.nav__cta:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
  box-shadow:
    0 1px 0 rgba(255,255,255,.22) inset,
    0 16px 32px -12px rgba(34, 211, 238, .5),
    0 4px 14px rgba(217, 70, 239, .32);
}
.nav__cta:hover::before { animation-duration: 1.8s; }
.nav__cta:hover svg { transform: translateX(3px); }

/* ---------- SERVICES MEGA MENU ---------- */
button.nav__link {
  background: none;
  border: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
}
button.nav__link:hover { background: rgba(255,255,255,.06); }
.nav__link--mega { cursor: pointer; }
.nav__link--mega[aria-expanded="true"] {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.nav__link--mega[aria-expanded="true"] .nav__chev {
  transform: rotate(-180deg);
  opacity: 1;
}

/* Scrim that blurs the rest of the page while a mega panel is open.
   Sits at z-index 96 — under the mega panel (98) and the nav (100),
   above page content. Clicks pass through to the global outside-click
   handler which closes the menu. */
.navScrim {
  position: fixed;
  inset: 0;
  z-index: 96;
  pointer-events: none;
  opacity: 0;
  background: rgba(10, 15, 30, .04);
  -webkit-backdrop-filter: blur(10px) saturate(108%);
          backdrop-filter: blur(10px) saturate(108%);
  transition: opacity .32s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
body.is-megaOpen .navScrim {
  opacity: 1;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .navScrim { transition: none; }
}
@media (max-width: 980px) {
  /* Mega menu doesn't open on mobile — scrim never needed there */
  .navScrim { display: none; }
}

.megaNav {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(720px, 94vw);
  margin-top: 12px;
  transform: translateX(-50%) translateY(-10px);
  opacity: 0;
  pointer-events: none;
  z-index: 98;
  transition: opacity .28s var(--ease-out), transform .32s var(--ease-out);
}
.megaNav.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.megaNav__inner {
  position: relative;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(15, 18, 32, .94), rgba(12, 14, 26, .9));
  -webkit-backdrop-filter: blur(24px) saturate(160%);
          backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 12px 30px -18px rgba(0, 0, 0, .55),
    0 34px 64px -22px rgba(0, 0, 0, .78);
  overflow: hidden;
  isolation: isolate;
}
.megaNav__inner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(520px 280px at 0% 0%, rgba(34,211,238,.12), transparent 60%),
    radial-gradient(580px 320px at 110% 110%, rgba(217,70,239,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.megaNav__head {
  position: relative; z-index: 1;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 0 6px 14px;
}
.megaNav__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.megaNav__eyebrowDot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(92deg, #22d3ee, #d946ef);
  box-shadow: 0 0 10px rgba(168,85,247,.55);
}
.megaNav__lede {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
  max-width: 360px;
  text-align: right;
}

.megaNav__grid {
  position: relative; z-index: 1;
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.megaNav__grid > li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.megaNav__card {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 12px;
  row-gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  color: #f5f8ff;
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.megaNav__card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: background .3s var(--ease-out);
  pointer-events: none;
}
.megaNav__card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34,211,238,.45), rgba(217,70,239,.45));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
  pointer-events: none;
}
.megaNav__card:hover,
.megaNav__card:focus-visible {
  background: linear-gradient(135deg, rgba(34,211,238,.07), rgba(217,70,239,.07));
  transform: translateY(-1px);
  outline: none;
}
.megaNav__card:hover::after,
.megaNav__card:focus-visible::after { opacity: 1; }

.megaNav__cardIco {
  grid-column: 1; grid-row: 1 / span 2;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: #eaf6ff;
  background: linear-gradient(135deg, rgba(34,211,238,.2), rgba(217,70,239,.2));
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s var(--ease-out);
}
.megaNav__card:hover .megaNav__cardIco { transform: translateY(-1px) rotate(-2deg); }
.megaNav__cardIco svg { width: 18px; height: 18px; }

.megaNav__cardTtl {
  grid-column: 2; grid-row: 1;
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 14.5px; font-weight: 600; letter-spacing: -.005em;
  color: #f5f8ff;
}
.megaNav__cardDesc {
  grid-column: 2; grid-row: 2;
  font-size: 12.5px; line-height: 1.45;
  color: rgba(255,255,255,.58);
}
.megaNav__cardArrow {
  position: absolute; top: 14px; right: 14px;
  width: 16px; height: 16px;
  color: rgba(255,255,255,.5);
  transform: translateX(-4px);
  opacity: 0;
  transition: transform .25s var(--ease-out), opacity .2s var(--ease-out), color .2s var(--ease-out);
}
.megaNav__cardArrow svg { width: 100%; height: 100%; }
.megaNav__card:hover .megaNav__cardArrow {
  opacity: 1;
  transform: translateX(0);
  color: #a5e9ff;
}

.megaNav__tag {
  display: inline-flex; align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: linear-gradient(92deg, rgba(34,211,238,.28), rgba(217,70,239,.3));
  color: #eafcff;
  border: 1px solid rgba(255,255,255,.16);
}

/* Wide / featured card — sits as a horizontal banner above the grid.
   The parent <li> needs to span both grid columns so the card runs full width. */
.megaNav__grid > li:has(> .megaNav__card--wide) { grid-column: 1 / -1; }
/* When a wide banner is in the grid the remaining cards already pair up cleanly,
   so cancel the orphan-stretch rule that would otherwise widen the last card. */
.megaNav__grid:has(.megaNav__card--wide) > li:last-child:nth-child(odd) { grid-column: auto; }
.megaNav__card--wide {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(34,211,238,.18), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(217,70,239,.18), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-color: rgba(165,233,255,.22);
  margin-bottom: 4px;
}
.nav.is-light .megaNav__card--wide {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(34,211,238,.16), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(217,70,239,.14), transparent 55%),
    linear-gradient(135deg, rgba(10,10,20,.04), rgba(10,10,20,.01));
  border-color: rgba(10,109,138,.22);
}
.megaNav__card--wide .megaNav__cardArrow {
  opacity: .9;
  transform: translateX(0);
}

.megaNav__foot {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 10px 2px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.megaNav__seeAll,
.megaNav__talk {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 4px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color .2s var(--ease-out);
}
.megaNav__seeAll svg, .megaNav__talk svg {
  width: 14px; height: 14px;
  transition: transform .25s var(--ease-out);
}
.megaNav__seeAll:hover, .megaNav__talk:hover { color: #fff; }
.megaNav__seeAll:hover svg, .megaNav__talk:hover svg { transform: translateX(3px); }
.megaNav__talk { color: #a5e9ff; font-weight: 600; }

/* Light theme */
.nav.is-light .megaNav__inner {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,248,255,.94));
  border-color: rgba(10,10,20,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 32px 60px -22px rgba(10,10,20,.18);
}
.nav.is-light .megaNav__eyebrow { color: rgba(10,10,20,.5); }
.nav.is-light .megaNav__lede { color: rgba(10,10,20,.55); }
.nav.is-light .megaNav__card { background: rgba(10,10,20,.02); color: #0a0a14; }
.nav.is-light .megaNav__card:hover,
.nav.is-light .megaNav__card:focus-visible {
  background: linear-gradient(135deg, rgba(34,211,238,.08), rgba(217,70,239,.08));
}
.nav.is-light .megaNav__cardTtl { color: #0a0a14; }
.nav.is-light .megaNav__cardDesc { color: rgba(10,10,20,.55); }
.nav.is-light .megaNav__cardIco {
  color: #3a3f4d;
  background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(217,70,239,.16));
  border-color: rgba(10,10,20,.08);
}
.nav.is-light .megaNav__foot { border-top-color: rgba(10,10,20,.08); }
.nav.is-light .megaNav__seeAll { color: rgba(10,10,20,.7); }
.nav.is-light .megaNav__seeAll:hover { color: #0a0a14; }
.nav.is-light .megaNav__talk { color: #0a6d8a; }

@media (max-width: 980px) {
  .megaNav { display: none; }
}
@media (max-width: 720px) {
  .megaNav__grid { grid-template-columns: 1fr; }
  .megaNav__head { flex-direction: column; align-items: flex-start; }
  .megaNav__lede { text-align: left; }
}

/* burger (mobile) */
.nav__burger {
  display: none;
  position: relative; z-index: 2;
  width: 40px; height: 40px; border-radius: 999px;
  align-items: center; justify-content: center;
  gap: 4px; flex-direction: column;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.nav__burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }

.mobile {
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h) + 24px);
  left: 20px; right: 20px;
  z-index: 95;
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  -webkit-backdrop-filter: blur(22px) saturate(180%);
          backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  opacity: 0; transform: translateY(-12px) scale(.98); pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.mobile.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.mobile a { padding: 12px 16px; border-radius: 14px; font-weight: 500; font-size: 16px; color: var(--ink); }
.mobile a:hover { background: rgba(255,255,255,.08); }
.mobile__cta {
  margin-top: 6px;
  color: #0a0a14 !important;
  background: var(--hl);
  text-align: left;
}

/* Mobile language switcher — pair of flag buttons inside the mobile menu */
.mobile__lang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.mobile__langBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  color: var(--ink);
  font: 500 14px/1.2 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  transition: background .2s var(--ease-out), border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.mobile__langBtn:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}
.mobile__langBtn:active { transform: scale(.98); }
.mobile__langBtn.is-active {
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(217,70,239,.18));
  border-color: rgba(34,211,238,.55);
}
.mobile__langBtn .flagIco {
  width: 22px; height: 14px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-flex;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18) inset;
}
.mobile__langBtn .flagIco svg { width: 100%; height: 100%; display: block; }
.nav.is-light ~ .mobile .mobile__lang { border-top-color: rgba(10,10,20,.10); }
.nav.is-light ~ .mobile .mobile__langBtn {
  color: #0a0a14;
  background: rgba(10,10,20,.04);
  border-color: rgba(10,10,20,.10);
}
.nav.is-light ~ .mobile .mobile__langBtn:hover {
  background: rgba(10,10,20,.08);
  border-color: rgba(10,10,20,.22);
}
.nav.is-light ~ .mobile .mobile__langBtn.is-active {
  background: linear-gradient(135deg, rgba(34,211,238,.20), rgba(217,70,239,.20));
  border-color: rgba(99,102,241,.50);
}

/* Mobile accordion group (Services) */
.mobile__group { display: flex; flex-direction: column; }
.mobile__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  background: transparent; border: 0;
  font-family: inherit; font-size: 16px; font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s var(--ease-out);
}
.mobile__toggle:hover { background: rgba(255,255,255,.08); }
.mobile__chev {
  width: 12px; height: 9px;
  opacity: .65;
  transition: transform .25s var(--ease-out), opacity .2s var(--ease-out);
}
.mobile__toggle[aria-expanded="true"] .mobile__chev {
  transform: rotate(-180deg);
  opacity: 1;
}
.mobile__sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 6px;
  display: flex; flex-direction: column; gap: 2px;
  transition: max-height .35s var(--ease-out), opacity .22s var(--ease-out), padding .3s var(--ease-out);
}
.mobile__toggle[aria-expanded="true"] + .mobile__sub {
  max-height: 720px;
  opacity: 1;
  padding: 4px 6px 8px;
}
.mobile__subItem {
  display: grid !important;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  padding: 10px 14px !important;
  border-radius: 12px;
  background: transparent;
  font-size: 14.5px !important;
  font-weight: 500 !important;
}
.mobile__subItem:hover { background: rgba(255,255,255,.06); }
.mobile__subIco {
  grid-column: 1; grid-row: 1 / span 2;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: #eaf6ff;
  background: linear-gradient(135deg, rgba(34,211,238,.2), rgba(217,70,239,.2));
  border: 1px solid rgba(255,255,255,.1);
}
.mobile__subIco svg { width: 18px; height: 18px; }
.mobile__subItem .mobile__subTtl { grid-column: 2; grid-row: 1; }
.mobile__subItem .mobile__subDesc { grid-column: 2; grid-row: 2; }
.mobile__subTtl {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 14.5px; font-weight: 600;
  color: #f5f8ff;
}
.mobile__subTag {
  padding: 1px 6px; border-radius: 999px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: linear-gradient(92deg, rgba(34,211,238,.28), rgba(217,70,239,.3));
  color: #eafcff;
  border: 1px solid rgba(255,255,255,.16);
}
.mobile__subDesc {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}
.mobile__subSee {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 14px !important;
  margin-top: 2px;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #a5e9ff !important;
}
.mobile__subSee svg { width: 14px; height: 14px; transition: transform .25s var(--ease-out); }
.mobile__subSee:hover svg { transform: translateX(3px); }

.nav.is-light ~ .mobile .mobile__toggle { color: #1a1f2e; }
.nav.is-light ~ .mobile .mobile__toggle:hover { background: rgba(10,10,20,.05); }
.nav.is-light ~ .mobile .mobile__subTtl { color: #0a0a14; }
.nav.is-light ~ .mobile .mobile__subDesc { color: rgba(10,10,20,.55); }
.nav.is-light ~ .mobile .mobile__subIco {
  color: #3a3f4d;
  background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(217,70,239,.16));
  border-color: rgba(10,10,20,.08);
}
.nav.is-light ~ .mobile .mobile__subSee { color: #0a6d8a !important; }

/* Light-theme mobile dropdown (syncs with .nav.is-light via sibling selector) */
.nav.is-light ~ .mobile {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
  border-color: rgba(10,10,20,.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 24px 60px -20px rgba(10,10,20,.25);
}
.nav.is-light ~ .mobile a { color: #1a1f2e; }
.nav.is-light ~ .mobile a:hover { background: rgba(10,10,20,.05); }
.nav.is-light ~ .mobile .mobile__cta {
  background: #0a0a14;
  color: #ffffff !important;
}

/* ---------------- HERO (video revamp) ---------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;   /* grow past 100vh if content is tall */
  overflow: hidden;
  z-index: 1;
  background: #0a0a14;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  /* keep on its own GPU layer — massive perf win when overlays blur */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* ---- OVERLAYS: legibility + tint + vignette + grain ---- */
.hero__overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* --- Sparkle canvas layer (drifting twinkling particles) --- */
.hero__sparkles {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .85;
}

/* --- Cursor-reactive aurora spotlight --- */
.hero__spotlight {
  position: absolute;
  top: 0; left: 0;
  width: 720px; height: 720px;
  margin: -360px 0 0 -360px;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(168, 85, 247, .22) 0%,
      rgba(34, 211, 238, .18) 22%,
      rgba(217, 70, 239, .12) 42%,
      rgba(34, 211, 238, .04) 60%,
      transparent 72%);
  filter: blur(34px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-2000px, -2000px, 0);
  transition: opacity .5s var(--ease-out);
  will-change: transform, opacity;
}
.hero__overlay > span { position: absolute; inset: 0; display: block; }

/* flat black darken — pulls the whole video down by 50% */
.hero__darken {
  background: rgba(0,0,0,.5);
}

/* color multiply tint — pulls any video into our cyan/magenta world */
.hero__tint {
  background:
    linear-gradient(135deg, rgba(34,211,238,.14), transparent 45%),
    linear-gradient(225deg, rgba(217,70,239,.14), transparent 50%);
  opacity: .85;
}

/* edge darkening so text pops on any frame */
.hero__vignette {
  background: radial-gradient(120% 80% at 50% 50%, transparent 40%, rgba(5,5,15,.55) 90%);
}

/* top-dark to bottom-dark gradient for nav + lower UI legibility */
.hero__gradient {
  background:
    linear-gradient(180deg,
      rgba(5,5,15,.75) 0%,
      rgba(5,5,15,.25) 18%,
      rgba(5,5,15,0) 45%,
      rgba(5,5,15,0) 55%,
      rgba(5,5,15,.45) 80%,
      rgba(5,5,15,.9) 100%);
}

/* subtle scanline */
.hero__scan {
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 2px,
    rgba(255,255,255,.02) 2px,
    rgba(255,255,255,.02) 3px
  );
  opacity: .5;
}

/* noise grain — cheap static tile, no blend mode */
.hero__grain {
  opacity: .06;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---- CAPABILITY STACK BAR — sits at bottom of hero ---- */
.hero__stackBar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 18px 0 26px;
  background: linear-gradient(0deg, rgba(5,5,15,.88) 0%, rgba(5,5,15,.4) 60%, transparent 100%);
  pointer-events: none;
}
.hero__stackBar .stack__head {
  display: flex; align-items: baseline; justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.hero__stackBar .stack__mark {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.42);
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
}
.hero__stackBar .stack__mark b {
  font-weight: 500;
  color: rgba(165,233,255,.85);
  font-variant-numeric: tabular-nums;
  letter-spacing: .12em;
  text-shadow: 0 0 10px rgba(34,211,238,.35);
}
.hero__stackBar .stack__label {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255,255,255,.68);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.005em;
  text-transform: none;
}
.hero__stackBar .stack__label em {
  font-style: italic;
  background: linear-gradient(92deg, #a5e9ff, #c084fc 55%, #f0abfc);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: .02em .06em .18em .04em;
  margin: -.02em -.06em -.14em -.04em;
  display: inline-block;
  line-height: 1.22;
}
.hero__stackBar .stack__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  pointer-events: auto;
}
.hero__stackBar .stack__row {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  padding: 4px 0;
  animation: marquee 48s linear infinite;
  will-change: transform;
}

/* ---- CENTER STAGE: eyebrow + title + lede + CTAs ---- */
.hero__stage {
  position: relative;
  z-index: 3;
  min-height: 100vh;       /* at least fill the viewport; grows if content is taller */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* keep first element clear of the fixed topbar + floating nav;
     bottom padding leaves room for the capability stack bar */
  padding: calc(var(--topbar-h) + var(--nav-h) + 90px) clamp(24px, 5vw, 64px) 200px;
  text-align: center;
}
.hero__badge { margin-top: 0; }

/* glassmorph eyebrow pill */
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06) 50%, rgba(255,255,255,.12));
  border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 10px 30px -10px rgba(0,0,0,.6);
  margin-bottom: 34px;
  opacity: 0; transform: translateY(10px);
  animation: heroRise .9s var(--ease-out) .15s both;
}
.hero__badge em {
  font-style: italic;
  font-family: var(--font-serif);
  letter-spacing: -.005em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .02em .06em .18em .04em;
  margin: -.02em -.06em -.14em -.04em;
  display: inline-block;
  line-height: 1.22;
}
.hero__badgeDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cy);
  box-shadow: 0 0 10px var(--cy), 0 0 0 3px rgba(34,211,238,.2);
  animation: pulse 1.8s var(--ease-io) infinite;
}

.hero__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(52px, 7.6vw, 132px);
  line-height: 1;
  letter-spacing: -.035em;
  color: #fff;
}
.hero__title .line {
  display: block;
  overflow: visible;
  padding: .04em .22em .38em;
  margin: 0 -.22em -.32em;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform .6s var(--ease-out);
  will-change: transform;
}
.hero__title .line > span {
  display: inline-block;
  line-height: 1.22;          /* give italic-serif descenders (g, p, y) room inside the box */
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1.1s var(--ease-out), opacity 1.1s var(--ease-out);
  will-change: transform, opacity;
}
@keyframes titleGradShift {
  from { background-position: 0% 50%; }
  to   { background-position: 280% 50%; }
}
.is-ready .hero__title .line:nth-child(1) > span { transition-delay: .25s; transform: translateY(0); opacity: 1; }
.is-ready .hero__title .line:nth-child(2) > span { transition-delay: .40s; transform: translateY(0); opacity: 1; }
.is-ready .hero__title .line:nth-child(3) > span { transition-delay: .55s; transform: translateY(0); opacity: 1; }

.hero__title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.04em;
  letter-spacing: -.03em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* descender clearance for g/y/p in italic serif */
  padding: .04em .08em .22em .05em;
  margin: -.04em -.08em -.18em -.05em;
  display: inline-block;
  line-height: 1.22;
}
.rotator {
  display: inline-block;
  /* extend the background-clip padding-box beyond character bounds so italic
     side-bearings (e.g. leftward hook of 'g', rightward tail of 'r') get a
     gradient fill, not clipped */
  padding: 0 .55em 0 .18em;
  margin: 0 -.55em 0 -.18em;
  background: linear-gradient(92deg,
    #ffffff 0%,
    #a5e9ff 18%,
    #22d3ee 36%,
    #a855f7 54%,
    #d946ef 72%,
    #ffffff 100%);
  background-size: 280% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: titleGradShift 9s linear infinite;
  transition: opacity .35s var(--ease-out), transform .45s var(--ease-out), filter .35s var(--ease-out);
  will-change: opacity, transform, background-position;
}
.rotator.is-out {
  opacity: 0;
  transform: translateY(-.4em);
  filter: blur(6px);
}
.rotator.is-in {
  opacity: 0;
  transform: translateY(.4em);
  filter: blur(6px);
}

.hero__title .tm {
  font-family: var(--font-sans);
  font-size: .28em;
  font-weight: 500;
  vertical-align: super;
  margin-left: .15em;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  line-height: 1;
}

.hero__lede {
  margin: 26px auto 0;
  max-width: 72ch;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(234,240,247,.88);
  opacity: 0; transform: translateY(10px);
  animation: heroRise 1s var(--ease-out) .75s both;
}
.hero__lede em {
  font-style: italic;
  font-family: var(--font-serif);
  color: #fff;
}

.hero__actions {
  margin-top: 34px;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(10px);
  animation: heroRise 1s var(--ease-out) .9s both;
}
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- BOTTOM-LEFT: capability chip rail (glass) ---- */
.hero__chips {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: 28px;
  z-index: 4;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  max-width: 55%;
  opacity: 0; transform: translateY(14px);
  animation: heroRise 1.1s var(--ease-out) 1.1s both;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
          backdrop-filter: blur(16px) saturate(150%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.14) inset,
    0 8px 22px -8px rgba(0,0,0,.5);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.hero__chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
}
.hero__chipDot {
  width: 7px; height: 7px; border-radius: 50%;
  display: inline-block;
}
.hero__chipDot--cy { background: var(--cy); box-shadow: 0 0 8px var(--cy); }
.hero__chipDot--mg { background: var(--mg); box-shadow: 0 0 8px var(--mg); }
.hero__chipDot--pu { background: var(--pu); box-shadow: 0 0 8px var(--pu); }

/* ---- BOTTOM-RIGHT: glass spec panel ---- */
.hero__spec {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 28px;
  z-index: 4;
  min-width: 240px;
  padding: 14px 18px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04) 50%, rgba(255,255,255,.10));
  border: 1px solid rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
          backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 14px 36px -12px rgba(0,0,0,.6);
  font-family: var(--font-mono);
  color: #fff;
  opacity: 0; transform: translateY(14px);
  animation: heroRise 1.1s var(--ease-out) 1.1s both;
}
.hero__specHead {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 10px;
}
.hero__specHead em {
  font-style: normal;
  color: var(--cy);
  letter-spacing: .14em;
}
.hero__specDot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cy);
  box-shadow: 0 0 8px var(--cy);
  animation: pulse 1.8s var(--ease-io) infinite;
}
.hero__specRow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .08em;
  padding: 4px 0;
}
.hero__specRow + .hero__specRow { padding-top: 6px; }
.hero__specKey {
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .2em;
  min-width: 62px;
}
.hero__specBar {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.hero__specBar > span {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--cy), var(--mg));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
  box-shadow: 0 0 10px rgba(217,70,239,.4);
}
.hero__specVal {
  color: #fff; font-weight: 600;
  letter-spacing: .06em;
  min-width: 60px;
  text-align: right;
}

/* ---- SHARED BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 54px; padding: 0 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .25s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out);
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.btn--primary {
  color: #0a0a14;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 0 0 1px rgba(255,255,255,.25) inset,
    0 16px 30px -12px rgba(34, 211, 238, .35),
    0 4px 14px rgba(217, 70, 239, .25);
}
.btn--primary:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 0 0 1px rgba(255,255,255,.35) inset,
    0 22px 40px -14px rgba(34, 211, 238, .5),
    0 6px 18px rgba(217, 70, 239, .35);
}
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost {
  color: var(--ink);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.12) inset,
    0 10px 24px -10px rgba(0,0,0,.5);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.32);
}
.btn--ghost:hover svg { transform: translateY(3px); }

/* scroll cue (centered at bottom of hero, above chips row on wide screens) */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  opacity: 0;
  animation: heroRise 1s var(--ease-out) 1.2s both;
}
.hero__cueLine {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}
.hero__cueLine::after {
  content: "";
  position: absolute;
  top: -16px; left: 0;
  width: 100%; height: 16px;
  background: linear-gradient(180deg, transparent, #fff);
  animation: cueDrop 1.8s var(--ease-io) infinite;
}
@keyframes cueDrop {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(46px); opacity: 0; }
  100% { transform: translateY(46px); opacity: 0; }
}

/* ===============================================================
   CONNECTED CAPABILITIES · dark gradient bridge section
   =============================================================== */
@property --ccDial { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.connCap {
  position: relative;
  z-index: 4;
  padding: clamp(64px, 7vw, 100px) clamp(20px, 4vw, 56px) clamp(64px, 7vw, 100px);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(34,211,238,.10) 0%, transparent 55%),
    radial-gradient(110% 90% at 100% 0%, rgba(168,85,247,.10) 0%, transparent 55%),
    linear-gradient(180deg, #05080f 0%, #07091a 45%, #06091b 100%);
  color: #e7ecf6;
  font-family: var(--font-sans);
  isolation: isolate;
  overflow: hidden;
}
.connCap::before {
  /* fade-in from the hero */
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 120px;
  background: linear-gradient(180deg, rgba(0,0,0,.55), transparent);
  pointer-events: none; z-index: 1;
}

.connCap__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.connCap__blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .5;
  mix-blend-mode: screen;
  will-change: transform;
}
.connCap__blob--a { width: 540px; height: 540px; top: -160px; left: -120px;
  background: radial-gradient(circle, #22d3ee 0%, rgba(34,211,238,0) 70%);
  animation: ccFloat 16s ease-in-out infinite; }
/* Right-side blob kept invisible so the right edge stays the same deep
   navy as the left. No violet cast. */
.connCap__blob--b { display: none; }
.connCap__blob--c { width: 480px; height: 480px; bottom: -180px; left: 30%;
  background: radial-gradient(circle, #d946ef 0%, rgba(217,70,239,0) 70%);
  animation: ccFloat 22s ease-in-out infinite -11s; opacity: .35; }
@keyframes ccFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  33%      { transform: translate3d(40px,-30px,0) scale(1.08); }
  66%      { transform: translate3d(-30px,40px,0) scale(.94); }
}
.connCap__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 50%, transparent 90%);
  opacity: .45;
}
.connCap__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .05; mix-blend-mode: overlay; pointer-events: none;
}

.connCap__inner {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}

/* ------- head ------- */
.connCap__head { max-width: 880px; margin: 0 auto; }
.connCap__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: .22em;
  color: rgba(231,236,246,.58);
  margin: 0 0 22px;
  text-transform: uppercase;
}
.connCap__kickerDot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22d3ee; box-shadow: 0 0 10px #22d3ee, 0 0 24px rgba(34,211,238,.5);
  animation: ccPulse 2.2s ease-in-out infinite;
}
.connCap__kickerSep { color: rgba(231,236,246,.25); margin: 0 4px; }
.connCap__kickerCount { color: rgba(231,236,246,.72); font-variant-numeric: tabular-nums; }

@keyframes ccPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}

.connCap__title {
  font-family: var(--font-sans, Inter);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.032em;
  margin: 0 0 0;
  color: #f4f7fc;
}
.connCap__title em {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(92deg, #ffffff 0%, #a5e9ff 18%, #22d3ee 36%, #a855f7 54%, #d946ef 72%, #ffffff 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: titleGradShift 9s linear infinite;
  /* descender clearance for g/y/p */
  padding: .04em .16em .22em .06em;
  margin: -.04em -.16em -.18em -.06em;
  display: inline-block;
  line-height: 1.22;
}

/* ------- center stage (the big rotator) ------- */
.connCap__stage {
  position: relative;
  width: 100%;
  margin: clamp(32px, 4vw, 56px) 0 clamp(28px, 3vw, 48px);
  min-height: clamp(180px, 20vw, 280px);
  display: grid;
  place-items: center;
}

.connCap__ghostMark {
  position: absolute;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: rgba(231,236,246,.06);
  pointer-events: none;
  -webkit-user-select: none;

  user-select: none;
  line-height: 1;
  font-size: clamp(80px, 14vw, 200px);
  letter-spacing: -.04em;
}
.connCap__ghostMark--l { left: clamp(4px, 3vw, 40px); top: 10%;
  font-size: clamp(36px, 5vw, 72px);
  color: rgba(231,236,246,.1);
  font-weight: 400;
}
.connCap__ghostMark--r {
  right: clamp(-8px, 2vw, 20px); bottom: -8%;
  font-family: var(--font-sans, Inter);
  font-style: normal;
  font-weight: 300;
  color: rgba(168,85,247,.18);
  transform: rotate(-14deg);
}

.connCap__rotatorWrap {
  position: relative;
  width: 100%;
  height: clamp(120px, 14vw, 200px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.connCap__list {
  list-style: none; margin: 0; padding: 0;
  position: absolute; inset: 0;
  pointer-events: none;
}
.connCap__item {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
  font-size: clamp(54px, 9vw, 128px);
  line-height: 1;
  letter-spacing: -.025em;
  opacity: 0;
  filter: blur(28px);
  transform: translateY(22px) scale(.96);
  transition:
    opacity .85s cubic-bezier(.22,.9,.2,1),
    filter .85s cubic-bezier(.22,.9,.2,1),
    transform .85s cubic-bezier(.22,.9,.2,1);
  will-change: opacity, filter, transform;
  background: linear-gradient(92deg, #ffffff 0%, #a5e9ff 18%, #22d3ee 36%, #a855f7 54%, #d946ef 72%, #ffffff 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: titleGradShift 7s linear infinite;
  animation-play-state: paused;
}
.connCap__item.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  animation-play-state: running;
}
.connCap__item.is-prev {
  opacity: 0;
  filter: blur(28px);
  transform: translateY(-22px) scale(.96);
}

/* ------- progress trail ------- */
.connCap__trail {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center;
  gap: 8px;
  padding: 4px 2px;
}
.connCap__trailItem {
  width: 22px; height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  transition: background .5s var(--ease-out), width .5s var(--ease-out);
}
.connCap__trailItem.connCap__trailItem--on {
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  width: 44px;
  box-shadow: 0 0 12px rgba(168,85,247,.5);
}

/* ------- foot ------- */
.connCap__foot {
  max-width: 680px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.connCap__lede {
  font-size: clamp(15px, 1.1vw, 17.5px);
  line-height: 1.62;
  color: rgba(231,236,246,.7);
  margin: 0;
}
.connCap__ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cCBtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.cCBtn svg { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.cCBtn--solid {
  background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
  color: #05080f;
  box-shadow: 0 14px 40px -18px rgba(34,211,238,.6);
}
.cCBtn--solid:hover { transform: translateY(-2px); box-shadow: 0 22px 56px -18px rgba(168,85,247,.55); }
.cCBtn--solid:hover svg { transform: translateX(4px); }
.cCBtn--ghost {
  background: rgba(255,255,255,.05);
  color: #e7ecf6;
  border: 1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.cCBtn--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ------- horizontal auto-scrolling banner (marquee, L→R) ------- */
.connCap__banner {
  position: relative; z-index: 2;
  margin-top: clamp(60px, 7vw, 100px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.connCap__bannerTrack {
  display: flex;
  /* No `gap` here — spacing lives on each card as margin-inline-end so the
     last card of the duplicated set also carries one, which makes the
     -50% translate land exactly on the start of the copy (no half-gap
     jump between loops). No horizontal padding either, same reason. */
  width: max-content;
  padding: 6px 0;
  animation: cCMarquee 48s linear infinite;
  will-change: transform;
}
.connCap__banner:hover .connCap__bannerTrack { animation-play-state: paused; }
/* Half the track = exactly one set worth of cards (incl. the trailing
   margin of the last card of each set). Going from -50% → 0 travels
   cards rightward; when the animation restarts, -50% shows the copy set
   in the exact same on-screen position the original set was at 0%.
   That's what makes the loop seamless. */
@keyframes cCMarquee {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

.cCCard {
  position: relative;
  flex: 0 0 clamp(260px, 22vw, 340px);
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  margin: 0 clamp(14px, 1.6vw, 22px) 0 0;
  overflow: hidden;
  background-color: #0a0f1a;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
  display: flex; align-items: flex-end;
  padding: 18px;
}
.cCCard:hover {
  border-color: rgba(255,255,255,.18);
}
.cCCard img,
.cCCard video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out), filter .4s var(--ease-out);
}
.cCCard:hover img,
.cCCard:hover video {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.02);
}

/* six distinct placeholder palettes (solid-ish, on-brand) */
.cCCard--a { background: linear-gradient(160deg, #0d1b2a 0%, #1b263b 100%); }
.cCCard--b { background: linear-gradient(160deg, #1a1033 0%, #2b1c4d 100%); }
.cCCard--c { background: linear-gradient(160deg, #052c2f 0%, #0a4a4d 100%); }
.cCCard--d { background: linear-gradient(160deg, #2a0a2f 0%, #40184a 100%); }
.cCCard--e { background: linear-gradient(160deg, #1d1a33 0%, #0c1536 100%); }
.cCCard--f { background: linear-gradient(160deg, #08282a 0%, #1b4b4d 100%); }

/* ------- responsive ------- */
@media (max-width: 820px) {
  .connCap__ghostMark--l {
    left: 10px; top: 4%;
    font-size: clamp(22px, 5vw, 32px);
    opacity: .85;
  }
  .connCap__ghostMark--r {
    right: 10px; bottom: 4%;
    font-size: clamp(56px, 16vw, 96px);
  }
  .connCap__rotatorWrap { height: 86px; mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); }
  .connCap__item { font-size: clamp(30px, 9vw, 44px); }
  .connCap__title { font-size: clamp(26px, 7vw, 36px); }
  .cCCard { flex-basis: clamp(170px, 46vw, 220px); border-radius: 16px; padding: 14px; }
  .cCCard__tag { font-size: 9.5px; padding: 5px 8px; }
}
@media (max-width: 480px) {
  .connCap__ghostMark--l { font-size: 20px; }
  .connCap__ghostMark--r { font-size: 72px; }
  .cCCard { flex-basis: 52vw; }
}
@media (prefers-reduced-motion: reduce) {
  .connCap__blob, .connCap__kickerDot, .connCap__bannerTrack { animation: none !important; }
  .connCap__item { transition: none !important; }
}

/* ===============================================================
   AI BRIEFING · light corporate section with animated mock
   =============================================================== */
.aiBrief {
  --aib-bg: #f5f6fb;
  --aib-ink: #0a0f1a;
  --aib-mute: #565c6b;
  --aib-line: #dfe2ec;
  --aib-card: #ffffff;
  --aib-input: #eef0f7;
  --aib-accent: #0a0f1a;
  --aib-grad: linear-gradient(92deg, #22d3ee 0%, #a855f7 50%, #d946ef 100%);
  --aib-skel: #e5e8f2;
  --aib-shadow: 0 34px 64px -32px rgba(10,15,30,.22), 0 14px 28px -14px rgba(10,15,30,.08);

  position: relative;
  z-index: 5;
  background:
    radial-gradient(70% 50% at 85% 40%, rgba(34,211,238,.08) 0%, rgba(34,211,238,0) 70%),
    radial-gradient(60% 50% at 20% 80%, rgba(168,85,247,.08) 0%, rgba(168,85,247,0) 70%),
    var(--aib-bg);
  color: var(--aib-ink);
  padding: clamp(70px, 8vw, 120px) clamp(20px, 4vw, 56px) clamp(56px, 5vw, 80px);
  font-family: var(--font-sans);
  overflow: hidden;
  isolation: isolate;
}
.aiBrief::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 140px;
  background: linear-gradient(180deg, rgba(5,5,15,.18), transparent);
  pointer-events: none;
}
.aiBrief__inner {
  max-width: 1360px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  justify-items: center;
  padding-top: 36px;
}

/* ------- copy ------- */
.aiBrief__copy {
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.aiBrief__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--aib-grad) border-box;
  border: 1px solid transparent;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10.5px;
  letter-spacing: .24em;
  color: var(--aib-ink);
  margin-bottom: 22px;
  box-shadow: 0 10px 26px -16px rgba(15, 20, 40, .25);
}
.aiBrief__badgeDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aib-grad);
  box-shadow: 0 0 0 0 rgba(168, 85, 247, .45);
  animation: aiLivePulse 2.2s ease-out infinite;
}
.aiBrief__badgeTxt { font-weight: 700; }
.aiBrief__badgeSep {
  width: 1px; height: 10px; background: rgba(10,15,30,.14);
}
.aiBrief__badgeSub {
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--aib-mute);
  text-transform: uppercase;
  font-size: 9.5px;
}
.aiBrief__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 0 0 22px;
  color: var(--aib-ink);
}
.aiBrief__title em {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(92deg, #22d3ee 0%, #a855f7 50%, #ec4899 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aiBriefGrad 9s ease-in-out infinite;
  /* descender clearance for g/y/p */
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.2;
}
@keyframes aiBriefGrad {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.aiBrief__pts {
  list-style: none;
  margin: 8px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aiBrief__pts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--aib-ink);
}
.aiBrief__pts li strong {
  font-weight: 600;
  color: var(--aib-ink);
}
.aiBrief__pts li span:last-child { color: var(--aib-mute); }
.aiBrief__pts li span:last-child strong { color: var(--aib-ink); }
.aiBrief__ptsDot {
  flex: 0 0 6px;
  width: 6px; height: 6px; margin-top: 8px;
  border-radius: 50%;
  background: var(--aib-grad);
  background-size: 200% 200%;
  animation: aiBriefGrad 6s ease-in-out infinite;
}
.aiBrief__ghost {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  color: var(--aib-mute);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(10,15,30,.18);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}
.aiBrief__ghost:hover {
  color: var(--aib-ink);
  border-color: var(--aib-ink);
}
.aiBrief__ctas {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.aiBrief__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px 13px 24px;
  border-radius: 999px;
  background: var(--aib-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 12px 26px -14px rgba(10,15,30,.45);
}
.aiBrief__cta::before {
  content: '';
  position: absolute; inset: 0;
  padding: 1.4px;
  border-radius: inherit;
  background: var(--aib-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .8;
  pointer-events: none;
}
.aiBrief__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -16px rgba(10,15,30,.55);
}
.aiBrief__cta span { transition: transform .25s ease; }
.aiBrief__cta:hover span { transform: translateX(3px); }
@keyframes aiLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(168, 85, 247, .45); }
  70%  { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}
.aiBrief__lede {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  max-width: 46ch;
  color: var(--aib-mute);
  margin: 0 0 24px;
}

/* ------- mock: chip wrap ------- */
.aiChipWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.aiChip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--aib-ink);
  border: 1px solid rgba(10,15,30,.1);
  position: relative;
}
.aiChip--on {
  background: #0a0f1a;
  color: #fff;
  border-color: transparent;
}
.aiChip--on::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: var(--aib-grad);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: aiBriefGrad 6s ease-in-out infinite;
  pointer-events: none;
}

/* ------- mock: suggestion card ------- */
.aiSuggest {
  margin-top: 12px;
  padding: 11px 13px 10px;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--aib-grad) border-box;
  background-size: auto, 220% 220%;
  border: 1.2px solid transparent;
  animation: aiBriefGrad 8s ease-in-out infinite;
}
.aiSuggest__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 6px;
}
.aiSuggest__kick {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--aib-mute);
  font-weight: 600;
}
.aiSuggest__kick em {
  font-style: normal;
  font-weight: 700;
  color: var(--aib-ink);
}
.aiSuggest__kick .aiSpark { color: #a855f7; }
.aiSuggest__roll {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(168, 85, 247, .1);
  color: #a855f7;
}
.aiSuggest__roll svg { width: 11px; height: 11px; }
.aiSuggest__txt {
  font-size: 12px;
  line-height: 1.5;
  color: var(--aib-ink);
  margin: 0;
}

/* ------- mock: text box (audience) ------- */
.aiTxtBox {
  background: #f4f6fb;
  border: 1px solid rgba(10,15,30,.08);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--aib-ink);
  line-height: 1.5;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ------- mock: custom dropdown ------- */
.aiDrop { margin-top: 4px; }
.aiDrop__trig {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px 8px 10px;
  background: #fff;
  border: 1.4px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--aib-grad) border-box;
  background-size: auto, 220% 220%;
  animation: aiBriefGrad 8s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, .1);
}
.aiDrop__trigIco {
  flex: 0 0 28px; width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(168, 85, 247, .1);
  display: grid; place-items: center;
  color: #a855f7;
}
.aiDrop__trigIco svg { width: 14px; height: 14px; }
.aiDrop__val {
  flex: 1 1 auto;
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.aiDrop__val strong { font-size: 12.5px; font-weight: 700; letter-spacing: -.005em; color: var(--aib-ink); }
.aiDrop__val em { font-size: 10.5px; color: var(--aib-mute); font-style: normal; margin-top: 1px; }
.aiDrop__tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--aib-grad);
  background-size: 220% 220%;
  animation: aiBriefGrad 6s ease-in-out infinite;
  color: #fff;
}
.aiDrop__panel {
  margin-top: 6px;
  padding: 4px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--aib-grad) border-box;
  background-size: auto, 220% 220%;
  border: 1.2px solid transparent;
  border-radius: 12px;
  animation: aiBriefGrad 9s ease-in-out infinite;
  box-shadow: 0 18px 38px -20px rgba(15, 20, 40, .25);
}
.aiDrop__opt {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 11.5px;
  color: var(--aib-ink);
}
.aiDrop__opt + .aiDrop__opt { margin-top: 2px; }
.aiDrop__opt em { font-style: normal; color: var(--aib-mute); font-size: 10px; margin-left: 6px; }
.aiDrop__opt--on {
  background: linear-gradient(135deg, rgba(34,211,238,.1), rgba(168,85,247,.14) 55%, rgba(236,72,153,.1));
}
.aiDrop__opt--on span:first-child {
  background: var(--aib-grad);
  background-size: 220% 220%;
  animation: aiBriefGrad 6s ease-in-out infinite;
  color: #fff;
}
.aiDrop__optIco {
  flex: 0 0 24px; width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(168, 85, 247, .1);
  color: #a855f7;
  display: grid; place-items: center;
}
.aiDrop__optIco svg { width: 12px; height: 12px; }

/* responsive center tweak */
@media (max-width: 1100px) {
  .aiBrief__inner { grid-template-columns: 1fr; }
  .aiBrief__copy { max-width: 640px; margin: 0 auto; align-items: center; text-align: center; }
  .aiBrief__pts li { text-align: left; }
}

/* ------- stage (right side container) ------- */
.aiBrief__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-top: 30px;
}
.aiBrief__halo {
  position: absolute; inset: -8%;
  background:
    radial-gradient(55% 40% at 50% 50%, rgba(34,211,238,.18) 0%, rgba(34,211,238,0) 70%),
    radial-gradient(45% 35% at 85% 90%, rgba(168,85,247,.22) 0%, rgba(168,85,247,0) 70%),
    radial-gradient(40% 30% at 15% 10%, rgba(217,70,239,.14) 0%, rgba(217,70,239,0) 70%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}
.aiBrief__mock {
  position: absolute; inset: 0;
  z-index: 2;
  font-size: 14px;
  color: var(--aib-ink);
}

/* ------- shared card style ------- */
.aiMock {
  position: absolute;
  background: var(--aib-card);
  border-radius: 14px;
  box-shadow: var(--aib-shadow);
  padding: clamp(18px, 2vw, 26px);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s cubic-bezier(.22,.9,.2,1),
    transform .7s cubic-bezier(.22,.9,.2,1),
    filter .7s cubic-bezier(.22,.9,.2,1),
    background .7s cubic-bezier(.22,.9,.2,1);
  will-change: opacity, transform, filter;
  display: flex; flex-direction: column;
  font-family: var(--font-sans);
}
.aiMock__kicker {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: .24em;
  color: var(--aib-mute);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.aiMock__kickerDot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--aib-grad);
  box-shadow: 0 0 8px rgba(34,211,238,.6);
}
.aiMock__h {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -.012em;
  display: flex; align-items: center; gap: 10px;
}
.aiMock__spark,
.aiSpark {
  background: var(--aib-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-size: 1.1em;
  line-height: 1;
  filter: drop-shadow(0 0 4px rgba(168,85,247,.25));
}
.aiMock__sub {
  font-size: 12.5px;
  color: var(--aib-mute);
  margin: -8px 0 16px;
  line-height: 1.45;
}
.aiMock__sub--tight { margin-top: -6px; }
.aiMock__reco {
  font-size: 13.5px;
  color: var(--aib-mute);
  margin: 0 0 14px;
  line-height: 1.55;
}

/* AI thinking dots */
.aiThinking {
  display: inline-flex; gap: 6px; margin-top: 4px;
}
.aiThinking__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--aib-grad);
  animation: aiBlip 1.2s ease-in-out infinite;
}
.aiThinking__dot:nth-child(2) { animation-delay: .15s; }
.aiThinking__dot:nth-child(3) { animation-delay: .3s; }
@keyframes aiBlip {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(-3px); }
}

/* ------- Row (brief form) ------- */
.aiRow {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
  align-items: start;
}
.aiRow--stack { display: flex; flex-direction: column; gap: 4px; }
.aiRow__lab {
  font-size: 13px; font-weight: 700;
  display: flex; flex-direction: column; gap: 2px;
}
.aiRow__lab em { font-style: normal; font-weight: 400; color: var(--aib-mute); font-size: 11.5px; }
.aiRow__hint { font-size: 11.5px; color: var(--aib-mute); margin-bottom: 6px; font-style: normal; }
.aiRow__inp {
  background: var(--aib-input);
  border-radius: 6px;
  height: 34px;
  padding: 0 12px;
  display: flex; align-items: center;
  font-size: 12.5px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .4s ease;
}
.aiBrief__mock[data-aibstage="2"] .aiRow__inp,
.aiBrief__mock[data-aibstage="3"] .aiRow__inp,
.aiBrief__mock[data-aibstage="4"] .aiRow__inp {
  border-color: rgba(34,211,238,.35);
}
.aiRow__typed {
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  display: inline-block;
  transition: max-width .9s steps(40, end);
}
.aiRow__caret {
  display: inline-block;
  width: 1px; height: 14px;
  background: var(--aib-ink);
  margin-left: 1px;
  animation: aiBlink 1s step-end infinite;
}
@keyframes aiBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.aiRow__opts { display: flex; flex-direction: column; gap: 6px; }
.aiOpt {
  background: var(--aib-input);
  border-radius: 6px;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  transition: background .5s ease, border-color .5s ease;
  border: 1px solid transparent;
}
.aiOpt__rb {
  width: 13px; height: 13px; border-radius: 50%;
  border: 1.5px solid #9096a6;
  position: relative;
  flex-shrink: 0;
}
.aiOpt--pick .aiOpt__rb {
  border-color: #22d3ee;
}
.aiOpt--pick .aiOpt__rb::after {
  content: '';
  position: absolute; inset: 2px;
  border-radius: 50%;
  background: var(--aib-grad);
  transform: scale(0);
  transition: transform .35s cubic-bezier(.2,.9,.2,1.3) .3s;
}

/* ------- Editor toolbar card ------- */
.aiEd {
  background: var(--aib-input);
  border-radius: 6px;
  padding: 10px 12px 18px;
  margin-top: 2px;
}
.aiEd__tb {
  display: flex; gap: 14px;
  font-size: 12.5px;
  color: #3a4254;
}
.aiEd__tb span { opacity: .85; }

/* ------- Clarifying questions ------- */
.aiQ { margin-bottom: 14px; }
.aiQ__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}
.aiQ__head > span { font-size: 12.5px; font-weight: 700; line-height: 1.35; max-width: 70%; }
.aiQ__head em { display: block; font-style: normal; font-weight: 400; color: var(--aib-mute); font-size: 11px; margin-top: 1px; }
.aiQ__skip {
  font-size: 11.5px; color: var(--aib-ink);
  cursor: pointer; white-space: nowrap;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(10,15,30,.05);
  border: 1px solid rgba(10,15,30,.08);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.aiQ__box {
  border: 1px solid var(--aib-line);
  border-radius: 6px;
  min-height: 48px;
  padding: 8px 12px;
  font-size: 12.5px;
  overflow: hidden;
  background: #fbfcfe;
}
.aiQ__typed {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 1.1s steps(50, end);
}

.aiMock__submit {
  align-self: flex-end;
  margin-top: 14px;
  background: var(--aib-ink);
  color: #ffffff;
  padding: 10px 18px 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.005em;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  overflow: hidden;
}
.aiMock__submit::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--aib-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .65;
  pointer-events: none;
}
.aiMock__submit svg { width: 14px; height: 14px; }

/* ------- Summary card ------- */
.aiSum { transition: opacity .7s ease; }
.aiSum--skel {
  position: absolute;
  inset: 54px clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px);
  display: flex; flex-direction: column; gap: 10px;
}
.aiSumRow {
  --w: 60%;
  height: 11px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--aib-skel) 0%,
    rgba(34,211,238,.30) 35%,
    rgba(168,85,247,.32) 55%,
    rgba(217,70,239,.28) 70%,
    var(--aib-skel) 100%
  );
  background-size: 220% 100%;
  background-position: 110% 0;
  animation: aiShimmer 1.6s linear infinite;
  position: relative;
  overflow: hidden;
  width: var(--w);
  transform-origin: left center;
}
.aiBrief__mock[data-aibstage="6"] .aiSumRow {
  animation:
    aiLineFill .55s cubic-bezier(.22,.9,.2,1) both,
    aiShimmer 1.4s linear infinite .55s;
}
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(1)  { animation-delay: .00s, .55s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(2)  { animation-delay: .08s, .63s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(3)  { animation-delay: .16s, .71s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(4)  { animation-delay: .24s, .79s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(5)  { animation-delay: .32s, .87s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(6)  { animation-delay: .40s, .95s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(7)  { animation-delay: .48s, 1.03s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(8)  { animation-delay: .56s, 1.11s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(9)  { animation-delay: .64s, 1.19s; }
.aiBrief__mock[data-aibstage="6"] .aiSumRow:nth-child(10) { animation-delay: .72s, 1.27s; }
@keyframes aiShimmer {
  from { background-position: 110% 0; }
  to   { background-position: -110% 0; }
}
@keyframes aiLineFill {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
.aiSum--real {
  position: relative;
  opacity: 0;
  font-size: 12.5px;
  line-height: 1.48;
  display: flex; flex-direction: column; gap: 6px;
  pointer-events: none;
  margin-top: 4px;
}
.aiSum--real p { margin: 0; color: var(--aib-ink); }
.aiSum--real strong { font-weight: 700; }
.aiSum__h { margin-top: 6px !important; }
.aiTags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.aiTag {
  color: var(--aib-ink);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffffff;
  position: relative;
}
.aiTag::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--aib-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}

/* ========= POSITIONING EACH LAYER =========
   Layer A (brief) sits center-upper
   Layer B (possibilities) overlays bottom-left
   Layer C (clarifying) overlays bottom-left bigger
   Layer D (recommendations) center, compact
   Layer E (summary) center, tall
============================================ */
/* Slightly off-axis card layout — differentiates from Superside's flat stack */
.aiMock--a { top: 6%;  right: 0;   width: 88%; transform-origin: top right; }
.aiMock--b { bottom: 8%; left: -2%; width: 68%; transform-origin: bottom left; }
.aiMock--c { top: 14%; left: 3%;   width: 92%; transform-origin: top left; }
.aiMock--d { top: 10%; left: 14%;  width: 72%; transform-origin: center; }
.aiMock--e { top: 8%;  left: 4%;   width: 92%; transform-origin: center; }

/* Per-stage micro-tilt on active cards */
.aiBrief__mock[data-aibstage="1"] .aiMock--a,
.aiBrief__mock[data-aibstage="2"] .aiMock--a { transform: translateY(0) scale(1) rotate(-.6deg); }
.aiBrief__mock[data-aibstage="3"] .aiMock--b { transform: translateY(0) scale(1) rotate(1.2deg); }
.aiBrief__mock[data-aibstage="4"] .aiMock--c { transform: translateY(0) scale(1) rotate(-.8deg); }
.aiBrief__mock[data-aibstage="5"] .aiMock--d { transform: translateY(0) scale(1) rotate(0); }
.aiBrief__mock[data-aibstage="6"] .aiMock--e,
.aiBrief__mock[data-aibstage="7"] .aiMock--e { transform: translateY(0) scale(1) rotate(0); }

/* ========= STAGE STATE MACHINE =========
   1 · empty brief (no typed text, no selection)
   2 · brief with typed text + selected option
   3 · brief dims, 'Let's explore possibilities' slides in
   4 · clarifying questions overlays, textareas type
   5 · everything clears → AI recommendations card appears
   6 · AI summary card with skeleton loader
   7 · skeleton fades, real summary shows
============================================== */

/* defaults: all hidden */
.aiBrief__mock .aiMock { opacity: 0; pointer-events: none; }

/* === STAGE 1 : empty brief === */
.aiBrief__mock[data-aibstage="1"] .aiMock--a,
.aiBrief__mock[data-aibstage="2"] .aiMock--a,
.aiBrief__mock[data-aibstage="3"] .aiMock--a,
.aiBrief__mock[data-aibstage="4"] .aiMock--a {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-.6deg);
}

/* === STAGE 2 : typing + pick === */
.aiBrief__mock[data-aibstage="2"] .aiRow__typed,
.aiBrief__mock[data-aibstage="3"] .aiRow__typed,
.aiBrief__mock[data-aibstage="4"] .aiRow__typed {
  max-width: 260px;
}
.aiBrief__mock[data-aibstage="2"] .aiOpt--pick .aiOpt__rb::after,
.aiBrief__mock[data-aibstage="3"] .aiOpt--pick .aiOpt__rb::after,
.aiBrief__mock[data-aibstage="4"] .aiOpt--pick .aiOpt__rb::after {
  transform: scale(1);
}
.aiBrief__mock[data-aibstage="2"] .aiOpt--pick,
.aiBrief__mock[data-aibstage="3"] .aiOpt--pick,
.aiBrief__mock[data-aibstage="4"] .aiOpt--pick {
  background: linear-gradient(92deg, rgba(34,211,238,.10), rgba(168,85,247,.10) 60%, rgba(217,70,239,.08));
  border-color: rgba(168,85,247,.25);
  box-shadow: inset 0 0 0 1px rgba(34,211,238,.18);
}

/* === STAGE 3 : possibilities overlay, brief dims === */
.aiBrief__mock[data-aibstage="3"] .aiMock--a,
.aiBrief__mock[data-aibstage="4"] .aiMock--a {
  filter: saturate(.5) brightness(.92);
  background: #d6d9e2;
}
.aiBrief__mock[data-aibstage="3"] .aiMock--b {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(1.2deg);
}

/* === STAGE 4 : clarifying questions (supersedes B) === */
.aiBrief__mock[data-aibstage="4"] .aiMock--b {
  opacity: 0;
  transform: translateY(-8px);
}
.aiBrief__mock[data-aibstage="4"] .aiMock--c {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-.8deg);
}
.aiBrief__mock[data-aibstage="4"] .aiQ__typed {
  max-width: 520px;
}

/* === STAGE 5 : clear → AI recommendations === */
.aiBrief__mock[data-aibstage="5"] .aiMock--d {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0);
}

/* === STAGE 6 : AI summary skeleton === */
.aiBrief__mock[data-aibstage="6"] .aiMock--e,
.aiBrief__mock[data-aibstage="7"] .aiMock--e {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0);
}
.aiBrief__mock[data-aibstage="7"] .aiSum--skel { opacity: 0; }
.aiBrief__mock[data-aibstage="7"] .aiSum--real { opacity: 1; }

/* === EXTRAS : step indicator, progress, pilot, sparkle burst === */

/* Floating step indicator */
.aiStep {
  position: absolute;
  top: -28px;
  left: -14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  border-radius: 999px;
  border: 1.2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--aib-grad) border-box;
  box-shadow: 0 14px 32px -14px rgba(10,15,30,.20), 0 3px 10px -3px rgba(10,15,30,.08);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11.5px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--aib-ink);
  transition: transform .9s cubic-bezier(.22,.9,.2,1.15);
  transform: translate3d(0, 0, 0);
}
.aiStep::before { content: none; }
.aiStep__lbl { color: var(--aib-mute); font-weight: 500; }
.aiStep__num {
  font-weight: 700;
  background: var(--aib-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.aiStep__sep {
  width: 1px; height: 12px;
  background: rgba(10,15,30,.15);
  display: inline-block;
}
.aiStep__name {
  position: relative;
  display: inline-block;
  height: 14px;
  min-width: 56px;
  overflow: hidden;
  font-weight: 700;
  color: var(--aib-ink);
}
.aiStep__n {
  position: absolute; left: 0; top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .5s ease, transform .6s cubic-bezier(.22,.9,.2,1.15);
  white-space: nowrap;
}
.aiBrief__mock[data-aibstage="1"] ~ .aiStep .aiStep__n[data-step="1"],
.aiBrief__mock[data-aibstage="2"] ~ .aiStep .aiStep__n[data-step="2"],
.aiBrief__mock[data-aibstage="3"] ~ .aiStep .aiStep__n[data-step="3"],
.aiBrief__mock[data-aibstage="4"] ~ .aiStep .aiStep__n[data-step="4"],
.aiBrief__mock[data-aibstage="5"] ~ .aiStep .aiStep__n[data-step="5"],
.aiBrief__mock[data-aibstage="6"] ~ .aiStep .aiStep__n[data-step="6"],
.aiBrief__mock[data-aibstage="7"] ~ .aiStep .aiStep__n[data-step="7"] { opacity: 1; transform: translateY(0); }
/* aiStep sits outside .aiBrief__mock, so use attribute selector via parent stage binding */
.aiBrief__stage[data-step="1"] .aiStep__n[data-step="1"],
.aiBrief__stage[data-step="2"] .aiStep__n[data-step="2"],
.aiBrief__stage[data-step="3"] .aiStep__n[data-step="3"],
.aiBrief__stage[data-step="4"] .aiStep__n[data-step="4"],
.aiBrief__stage[data-step="5"] .aiStep__n[data-step="5"],
.aiBrief__stage[data-step="6"] .aiStep__n[data-step="6"],
.aiBrief__stage[data-step="7"] .aiStep__n[data-step="7"] { opacity: 1; transform: translateY(0); }

/* Floating AI pilot chip */
.aiPilot {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px -14px rgba(10,15,30,.28);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--aib-ink);
  pointer-events: none;
  transition: top 1s cubic-bezier(.22,.9,.2,1.15), left 1s cubic-bezier(.22,.9,.2,1.15), right 1s cubic-bezier(.22,.9,.2,1.15), bottom 1s cubic-bezier(.22,.9,.2,1.15), opacity .6s ease;
  top: -18px;
  right: 6%;
  opacity: 1;
}
.aiPilot::after {
  content: '';
  position: absolute; inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--aib-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .7;
}
.aiPilot__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--aib-grad);
  box-shadow: 0 0 8px 1px rgba(168,85,247,.55);
  animation: aiPilotPulse 1.6s ease-in-out infinite;
}
@keyframes aiPilotPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.35); filter: brightness(1.3); }
}
.aiBrief__stage[data-step="1"] .aiPilot,
.aiBrief__stage[data-step="2"] .aiPilot { top: -20px; right: 4%; left: auto; bottom: auto; }
.aiBrief__stage[data-step="3"] .aiPilot { top: auto; right: auto; left: -10px; bottom: 32%; }
.aiBrief__stage[data-step="4"] .aiPilot { top: 28%; right: -14px; left: auto; bottom: auto; }
.aiBrief__stage[data-step="5"] .aiPilot { top: 24%; left: 10%; right: auto; bottom: auto; }
.aiBrief__stage[data-step="6"] .aiPilot,
.aiBrief__stage[data-step="7"] .aiPilot { top: auto; right: 4%; left: auto; bottom: -14px; }

/* Top progress bar */
.aiProg {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: rgba(10,15,30,.06);
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.aiProg__fill {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 0%;
  background: var(--aib-grad);
  box-shadow: 0 0 12px rgba(168,85,247,.35);
  transition: width 1s cubic-bezier(.22,.9,.2,1);
  border-radius: 0 6px 6px 0;
}
.aiBrief__mock[data-aibstage="1"] .aiProg__fill { width: 8%; }
.aiBrief__mock[data-aibstage="2"] .aiProg__fill { width: 22%; }
.aiBrief__mock[data-aibstage="3"] .aiProg__fill { width: 38%; }
.aiBrief__mock[data-aibstage="4"] .aiProg__fill { width: 55%; }
.aiBrief__mock[data-aibstage="5"] .aiProg__fill { width: 72%; }
.aiBrief__mock[data-aibstage="6"] .aiProg__fill { width: 88%; }
.aiBrief__mock[data-aibstage="7"] .aiProg__fill { width: 100%; }

/* Sparkle burst on stage 7 (draft ready) */
.aiSparkBurst {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity .3s ease;
}
.aiBrief__mock[data-aibstage="7"] .aiSparkBurst { opacity: 1; }
.aiSparkBurst span {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aib-grad);
  top: 12%; left: 50%;
  opacity: 0;
  filter: blur(.4px);
}
.aiBrief__mock[data-aibstage="7"] .aiSparkBurst span {
  animation: aiBurst 1.1s cubic-bezier(.2,.85,.2,1) forwards;
}
.aiSparkBurst span:nth-child(1) { --tx: -130px; --ty:  -70px; animation-delay: .0s; }
.aiSparkBurst span:nth-child(2) { --tx:  130px; --ty:  -60px; animation-delay: .05s; }
.aiSparkBurst span:nth-child(3) { --tx: -190px; --ty:   40px; animation-delay: .1s; }
.aiSparkBurst span:nth-child(4) { --tx:  210px; --ty:   20px; animation-delay: .14s; }
.aiSparkBurst span:nth-child(5) { --tx:  -60px; --ty: -140px; animation-delay: .18s; }
.aiSparkBurst span:nth-child(6) { --tx:   60px; --ty: -130px; animation-delay: .08s; }
@keyframes aiBurst {
  0%   { transform: translate3d(0,0,0) scale(.2); opacity: 0; }
  25%  { opacity: 1; }
  100% { transform: translate3d(var(--tx), var(--ty), 0) scale(1); opacity: 0; }
}

/* Stage 7 tag stagger-pop */
.aiTag {
  opacity: 0;
  transform: translateY(8px) scale(.85);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.85,.2,1.35);
}
.aiBrief__mock[data-aibstage="7"] .aiTag { opacity: 1; transform: translateY(0) scale(1); }
.aiBrief__mock[data-aibstage="7"] .aiTag:nth-child(1) { transition-delay: .35s; }
.aiBrief__mock[data-aibstage="7"] .aiTag:nth-child(2) { transition-delay: .45s; }
.aiBrief__mock[data-aibstage="7"] .aiTag:nth-child(3) { transition-delay: .55s; }

/* Smoother card pop-in with blur + scale */
.aiMock {
  filter: blur(6px);
  transform: translateY(30px) scale(.94);
  transition:
    opacity .75s cubic-bezier(.22,.9,.2,1),
    transform .8s cubic-bezier(.2,.9,.2,1.12),
    filter .55s ease;
}
.aiBrief__mock[data-aibstage="1"] .aiMock--a,
.aiBrief__mock[data-aibstage="2"] .aiMock--a,
.aiBrief__mock[data-aibstage="3"] .aiMock--a,
.aiBrief__mock[data-aibstage="4"] .aiMock--a,
.aiBrief__mock[data-aibstage="3"] .aiMock--b,
.aiBrief__mock[data-aibstage="4"] .aiMock--c,
.aiBrief__mock[data-aibstage="5"] .aiMock--d,
.aiBrief__mock[data-aibstage="6"] .aiMock--e,
.aiBrief__mock[data-aibstage="7"] .aiMock--e {
  filter: blur(0);
}

/* Halo slow drift for parallax feel */
.aiBrief__halo { animation: aiHaloDrift 14s ease-in-out infinite; }
@keyframes aiHaloDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(2%, -2%, 0) scale(1.04); }
}

/* Active card gradient ring */
.aiMock--a, .aiMock--b, .aiMock--c, .aiMock--d, .aiMock--e {
  isolation: isolate;
}
.aiMock::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34,211,238,.4), rgba(168,85,247,.3) 50%, rgba(217,70,239,.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.aiBrief__mock[data-aibstage="1"] .aiMock--a::before,
.aiBrief__mock[data-aibstage="2"] .aiMock--a::before,
.aiBrief__mock[data-aibstage="3"] .aiMock--b::before,
.aiBrief__mock[data-aibstage="4"] .aiMock--c::before,
.aiBrief__mock[data-aibstage="5"] .aiMock--d::before,
.aiBrief__mock[data-aibstage="6"] .aiMock--e::before,
.aiBrief__mock[data-aibstage="7"] .aiMock--e::before { opacity: .85; }

/* ------- responsive ------- */
@media (max-width: 960px) {
  .aiBrief__inner { grid-template-columns: 1fr; gap: 50px; }
  .aiBrief__stage { margin: 0 auto; max-width: 520px; }
  .aiBrief__rule { max-width: 100%; }
}
@media (max-width: 600px) {
  .aiMock { font-size: 11.5px; }
  .aiMock__h { font-size: 14px; }
  .aiRow__typed { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .aiSumRow::after { animation: none !important; }
  .aiRow__caret { animation: none !important; }
  .aiBrief__halo { animation: none !important; }
  .aiSparkBurst span { animation: none !important; }
}

/* ===============================================================
   PURE SYSTEM · light-mode section (white break after dark hero)
   =============================================================== */
.pureSys {
  position: relative;
  z-index: 5;
  background: #ffffff;
  color: #0a0a14;
  padding: clamp(80px, 9vw, 140px) clamp(20px, 4vw, 56px) clamp(80px, 8vw, 130px);
  font-family: var(--font-sans);
  isolation: isolate;
}
/* subtle top fade so transition from dark hero feels intentional */
.pureSys::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(5,5,15,.06), transparent);
  pointer-events: none;
}
.pureSys__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* --- Head row: headline + aside (paragraph & CTAs) --- */
.pureSys__head {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(36px, 4vw, 60px);
}
.pureSys__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #5b6273;
}
.pureSys__kickerDot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(34,211,238,.8);
}
.pureSys__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #0a0a14;
}
.pureSys__title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  background: linear-gradient(92deg, #22d3ee 0%, #6366f1 45%, #a855f7 75%, #d946ef 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  /* descender clearance for g/y/p */
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.2;
}
.pureSys__aside { padding-top: 10px; }
.pureSys__copy {
  margin: 0 0 24px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: #474a57;
  max-width: 42ch;
}
.pureSys__ctas { display: flex; flex-wrap: wrap; gap: 10px; }

.pSBtn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), box-shadow .3s var(--ease-out), color .25s var(--ease-out);
}
.pSBtn svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.pSBtn--solid {
  background: #0a0a14;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(10,10,20,.5);
}
.pSBtn--solid:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -12px rgba(10,10,20,.6); }
.pSBtn--solid:hover svg { transform: translateX(3px); }
.pSBtn--ghost {
  background: #fff;
  color: #0a0a14;
  border: 1px solid rgba(10,10,20,.18);
}
.pSBtn--ghost:hover { background: #f5f6fa; border-color: rgba(10,10,20,.3); }

/* --- Card grid · reference-style asymmetric layout ---
   A = tall left (rows 1-2)
   B = wide top-right (cols 2-3)
   C = bottom-middle
   D = bottom-right */
.pureSys__grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  grid-template-rows: minmax(280px, auto) minmax(280px, auto);
  gap: 20px;
}
.pCard--a { grid-row: 1 / 3; grid-column: 1 / 2; }
.pCard--b { grid-row: 1; grid-column: 2 / 4; }
.pCard--c { grid-row: 2; grid-column: 2 / 3; }
.pCard--d { grid-row: 2; grid-column: 3 / 4; }

.pCard {
  position: relative;
  border-radius: 28px;
  padding: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  will-change: transform;
}
.pCard:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(10,10,20,.18); }

/* Full-card click target — sits above media + copy, no visual change */
.pCard__link {
  position: absolute; inset: 0; z-index: 4;
  border-radius: inherit;
  text-indent: -9999px;
  overflow: hidden;
  outline-offset: -4px;
}
.pCard__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -6px;
}
.pCard:hover { cursor: pointer; }
/* Hover arrow indicator — top-right, fades in on hover */
.pCard__arrow {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(10,10,20,.06);
  color: rgba(10,10,20,.6);
  opacity: 0; transform: translate(6px, -6px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), background .3s, color .3s;
  z-index: 3;
  pointer-events: none;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.pCard__arrow svg { width: 14px; height: 14px; }
.pCard:hover .pCard__arrow {
  opacity: 1; transform: translate(0, 0);
  background: #0a0a14; color: #fff;
}
/* Dark-card variants get a different default arrow tint */
.pCard--peach .pCard__arrow,
.pCard--violet .pCard__arrow {
  background: rgba(255,255,255,.85);
  color: #0a0a14;
}

/* BINDZ palette tints — soft pulls of hero cyan/violet/magenta */
.pCard--cyan   {
  background: linear-gradient(160deg, #e9f6fb 0%, #dcf0f9 100%);
  color: #0a1720;
}
.pCard--violet {
  background: linear-gradient(160deg, #efe9f7 0%, #e6dbf3 100%);
  color: #170a1f;
}
.pCard--blush  {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(217,70,239,.07) 0%, transparent 55%),
    radial-gradient(100% 70% at 0% 100%, rgba(34,211,238,.06) 0%, transparent 55%),
    linear-gradient(160deg, #ffffff 0%, #fbf6fa 100%);
  color: #1f0a17;
}
.pCard--peach {
  background: linear-gradient(160deg, #fbe7d6 0%, #f5d4b9 100%);
  color: #2a140a;
}

.pCard__copy { max-width: 44ch; }
.pCard__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.pCard--dark .pCard__title { color: #fff; }
.pCard__body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: inherit;
  opacity: .75;
}

/* --- Media placeholder: solid tinted box, labelled for now ---
   Each card writes its description to data-placeholder; we surface a
   faint caption so you know what to generate. */
.pCard__media {
  position: relative;
  flex: 1;
  min-height: 160px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,0,0,.05), rgba(0,0,0,.02));
  border: 1px dashed rgba(10,10,20,.14);
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden;
}
.pCard__media::before {
  content: attr(data-placeholder);
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(10,10,20,.35);
  padding: 4px 8px;
  background: rgba(255,255,255,.7);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.pCard--dark .pCard__media {
  background: linear-gradient(135deg, rgba(34,211,238,.06), rgba(168,85,247,.06));
  border-color: rgba(255,255,255,.12);
}
.pCard--dark .pCard__media::before {
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
}

/* tall card A: media expands to fill, copy sits at bottom */
.pCard--a { justify-content: space-between; }
.pCard--a .pCard__media { order: -1; min-height: 260px; }
.pCard--a .pCard__tag {
  position: absolute;
  bottom: 18px; left: 18px;
  font-weight: 600; font-size: 22px;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

/* wide card B: two-column layout at desktop — copy left, media right */
.pCard--b {
  flex-direction: row;
  align-items: stretch;
  gap: 28px;
}
.pCard--b .pCard__copy { flex: 0 0 42%; padding-top: 6px; }
.pCard--b .pCard__media { flex: 1; min-height: 200px; }

/* --- Responsive: collapse to single column on tablet/mobile --- */
@media (max-width: 960px) {
  .pureSys__head { grid-template-columns: 1fr; gap: 24px; }
  .pureSys__title br { display: none; }
  .pureSys__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .pCard--a, .pCard--b, .pCard--c, .pCard--d {
    grid-row: auto; grid-column: auto;
  }
  .pCard--b { flex-direction: column; gap: 18px; }
  .pCard--b .pCard__copy { flex: none; }
  .pCard--a .pCard__media { min-height: 220px; }
  /* Code (pCard--c) and Market intel (pCard--d) should share the same
     media box height on mobile — slightly taller than default so both
     feel proportionate to the other two. */
  .pCard--c .pCard__media,
  .pCard--d .pCard__media { min-height: 240px; }
}

/* --- Italic em in card titles (gradient accent) --- */
.pCard__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(92deg, #22d3ee 0%, #6366f1 45%, #a855f7 75%, #d946ef 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  /* extend the painting box so descender tails of g/y/p/j aren't clipped */
  padding: .04em .06em .22em .04em;
  margin: -.04em -.06em -.18em -.04em;
  display: inline-block;
  line-height: 1.22;
}
.pCard--dark .pCard__title em {
  background: linear-gradient(92deg, #a5e9ff 0%, #22d3ee 35%, #a855f7 70%, #d946ef 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* --- Empty media placeholder (user will drop images in later) --- */
.pureSys .pCard__media { position: relative; }
.pureSys .pCard__media::before { display: none; }

.pCard__media--empty {
  position: relative;
  min-height: 220px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(10,10,20,.03), rgba(10,10,20,.01));
  border: 1px dashed rgba(10,10,20,.14);
  overflow: hidden;
}
.pCard__media--empty::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 30% 20%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(50% 40% at 85% 85%, rgba(10,10,20,.05), transparent 60%);
  pointer-events: none;
}
.pCard--dark .pCard__media--empty {
  background:
    radial-gradient(140% 100% at 20% 0%, rgba(34,211,238,.08) 0%, transparent 55%),
    radial-gradient(120% 90% at 80% 100%, rgba(168,85,247,.10) 0%, transparent 55%),
    linear-gradient(160deg, #0c1524 0%, #080c18 60%, #03050c 100%);
  border-color: rgba(255,255,255,.1);
}
.pCard--dark .pCard__media--empty::after {
  background:
    radial-gradient(60% 40% at 30% 20%, rgba(34,211,238,.12), transparent 60%),
    radial-gradient(50% 40% at 85% 85%, rgba(217,70,239,.12), transparent 60%);
}
.pCard--a .pCard__media--empty { min-height: 280px; }

/* --- Intel Feed (Market intel card kinetic typography) --- */
.pCard__media--feed {
  position: relative;
  flex: 1;
  min-height: 200px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(217,70,239,.10) 0%, transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(34,211,238,.10) 0%, transparent 60%),
    linear-gradient(160deg, #ffffff 0%, #faf0f3 100%);
  border: 1px solid rgba(10,10,20,.06);
}
/* --- Kinetic typography (Market intel card) --- */
.pCard__media--kinetic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 26px 28px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
}
.kinetic {
  margin: 0;
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #0a0a14;
  text-wrap: balance;
}
.kinetic__chunk {
  display: inline-block;
  white-space: nowrap;
}
.kinetic__stage {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  min-width: 3.2em;
  min-height: 1.2em;
  line-height: 1.2;
  padding: 0 0 .12em 0;
  overflow: hidden;
}
.kinetic__word {
  display: inline-block;
  font-style: italic;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1.2;
}
.kinetic__word > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9em) rotate(10deg);
  will-change: opacity, transform, filter;
  background: linear-gradient(92deg, #22d3ee 0%, #a855f7 50%, #d946ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.kinetic__word.is-in > span {
  animation: kLetterIn .55s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--i) * 45ms);
}
.kinetic__word.is-out > span {
  animation: kLetterOut .38s cubic-bezier(.4,.05,.8,.1) forwards;
  animation-delay: calc(var(--i) * 28ms);
}
@keyframes kLetterIn {
  0%   { opacity: 0; transform: translateY(0.9em) rotate(10deg); filter: blur(4px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}
@keyframes kLetterOut {
  0%   { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-0.9em) rotate(-8deg); filter: blur(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .kinetic__word > span {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* --- Filled media (real imagery, cover-fill) --- */
.pCard__media--fill {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  background: transparent;
}
.pCard__media--fill img,
.pCard__media--fill video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle breathing zoom on the Code card image */
.pCard--c .pCard__media--fill img {
  transform-origin: center center;
  animation: pCardZoom 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes pCardZoom {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .pCard--c .pCard__media--fill img { animation: none; }
}
.pCard--dark .pCard__media--fill { border-color: rgba(255,255,255,.08); }
.pCard--a .pCard__media--fill { min-height: 280px; }
.pCard--b .pCard__media--fill { flex: 1; min-height: 200px; }

/* ===============================================================
   THE SHIFT · 3-card value prop grid + capability stack marquee
   =============================================================== */
.shift {
  position: relative;
  z-index: 4;
  padding: 108px clamp(20px, 4vw, 48px) 88px;
  background: linear-gradient(180deg, #0a0a14 0%, #040e0b 50%, #06060c 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  isolation: isolate;
}
.shift__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.shift__orb {
  position: absolute;
  width: 52vmin; height: 52vmin;
  border-radius: 50%;
  filter: blur(110px);
  mix-blend-mode: screen;
  opacity: .35;
}
.shift__orb--a {
  top: 10%; left: -12%;
  background: radial-gradient(circle, #22d3ee 0%, transparent 60%);
  animation: drift 24s var(--ease-io) infinite alternate;
}
.shift__orb--b {
  bottom: -18%; right: -8%;
  background: radial-gradient(circle, #a855f7 0%, transparent 60%);
  animation: drift 32s var(--ease-io) -10s infinite alternate-reverse;
}
.shift__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(1200px 800px at 50% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(1200px 800px at 50% 20%, #000 0%, transparent 75%);
}

.shift__inner {
  position: relative; z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
}

.shift__head {
  max-width: 1100px;
  margin: 0 auto 54px;
  text-align: center;
}
.shift__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  margin: 0 0 22px;
}
.shift__kickerDot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(34,211,238,.6);
  animation: pulse 1.8s var(--ease-io) infinite;
}
.shift__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
}
.shift__title .sline { display: block; }
.shift__title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.04em;
  letter-spacing: -.025em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* descender clearance for g/y/p */
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.2;
}

/* -------- 3-card grid -------- */
.shift__grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.sCard {
  position: relative;
  height: 620px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02) 55%, rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
          backdrop-filter: blur(14px) saturate(150%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.12) inset,
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 40px 80px -30px rgba(0,0,0,.75),
    0 14px 30px -18px rgba(34,211,238,.15);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .4s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a.sCard:focus-visible {
  outline: 2px solid rgba(165,233,255,.7);
  outline-offset: 4px;
}
.sCard:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,.16) inset,
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 60px 100px -30px rgba(0,0,0,.85),
    0 24px 50px -20px rgba(34,211,238,.28),
    0 20px 40px -18px rgba(217,70,239,.22);
}

.sCard__media {
  position: relative;
  flex: 1;
  overflow: hidden;
  background:
    radial-gradient(520px 420px at 30% 20%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(420px 320px at 90% 90%, rgba(217,70,239,.08), transparent 60%),
    linear-gradient(160deg, #13132a, #0a0a14);
}
.sCard__glow {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(360px 240px at 50% 30%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(420px 280px at 80% 80%, rgba(217,70,239,.14), transparent 60%);
  opacity: .55;
  filter: blur(20px);
  transition: opacity .6s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.sCard:hover .sCard__glow { opacity: .9; }
.sCard__glow--ai {
  background:
    radial-gradient(420px 300px at 50% 50%, rgba(168,85,247,.25), transparent 60%),
    radial-gradient(420px 280px at 80% 80%, rgba(217,70,239,.18), transparent 60%);
}

.sCard__label {
  position: relative;
  padding: 26px 28px 28px;
  font-family: var(--font-sans);
  z-index: 2;
}
.sCard__label h3 {
  margin: 0;
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.sCard__label em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

.sCard__label--lime {
  background: linear-gradient(180deg, #ece4ff 0%, #ddd2ff 100%);
  color: #1a1533;
}
.sCard__label--lime em {
  background: linear-gradient(92deg, #5a2acf, #9333ea 60%, #c026d3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.2;
}

.sCard__label--teal {
  background: linear-gradient(180deg, #1b1c3d 0%, #121333 100%);
  color: #b9c5e8;
  border-top: 1px solid rgba(255,255,255,.06);
}
.sCard__label--teal h3 { color: #eaf1ee; }
.sCard__label--teal em {
  background: linear-gradient(92deg, #a5e9ff, #22d3ee 50%, #c084fc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.2;
}

.sCard__label--cream {
  background: linear-gradient(180deg, #f2ecd9 0%, #ece3cc 100%);
  color: #18152a;
}
.sCard__label--cream h3 {
  font-size: clamp(22px, 1.8vw, 30px);
}
.sCard__label--cream em {
  background: linear-gradient(92deg, #1b2a7a, #5a2acf 55%, #a020c9);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.2;
}
/* ---------- full-bleed empty media placeholder (user drops image later) ---------- */
.sCard__media--empty {
  background:
    radial-gradient(520px 420px at 30% 20%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(420px 320px at 90% 90%, rgba(217,70,239,.08), transparent 60%),
    linear-gradient(160deg, #13132a, #0a0a14);
}
.sCard__media--empty::before {
  content: '';
  position: absolute; inset: 18px;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}
.sCard--ai .sCard__media--empty {
  background:
    radial-gradient(520px 420px at 30% 20%, rgba(168,85,247,.14), transparent 60%),
    radial-gradient(420px 320px at 90% 90%, rgba(217,70,239,.12), transparent 60%),
    linear-gradient(160deg, #1a0d2b, #0e0618);
}

/* ---------- full-bleed video media ---------- */
.sCard__media--video {
  position: relative;
  background: #0e0618;
}
.sCard__media--video::before {
  /* drop the dashed placeholder border when a video is in place */
  display: none;
}
.sCard__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform .8s var(--ease-out), filter .4s var(--ease-out);
}
.sCard:hover .sCard__video {
  transform: scale(1.03);
  filter: saturate(1.06) brightness(1.02);
}
.sCard__media--video .sCard__glow {
  /* keep the soft glow on top of the video for brand color tint */
  z-index: 1;
  mix-blend-mode: screen;
  opacity: .35;
}
.sCard:hover .sCard__media--video .sCard__glow { opacity: .6; }

/* ---------- CARD 1 — plan / billing UI ---------- */
.plan {
  position: absolute;
  inset: 30px 22px 30px 22px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 18px;
  transform: perspective(900px) rotateY(-6deg) rotateX(6deg);
  transition: transform .7s var(--ease-out);
}
.sCard--plan:hover .plan {
  transform: perspective(900px) rotateY(-2deg) rotateX(2deg) translateY(-4px);
}
.plan__window {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .1em;
  color: rgba(255,255,255,.55);
}
.plan__dots { display: inline-flex; gap: 5px; }
.plan__dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.plan__dots i:nth-child(1) { background: #ff5f57; opacity: .55; }
.plan__dots i:nth-child(2) { background: #febc2e; opacity: .55; }
.plan__dots i:nth-child(3) { background: #28c840; opacity: .55; }
.plan__url { opacity: .7; }

.plan__tabs {
  position: relative;
  display: flex; gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.plan__tab {
  position: relative; z-index: 2;
  flex: 1;
  padding: 10px 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border-radius: 999px;
  transition: color .4s var(--ease-out);
  text-align: center;
}
.plan__tab.is-on { color: #0a0a14; }
.plan__tabGlow {
  position: absolute;
  top: 5px; bottom: 5px;
  width: calc((100% - 10px) / 3);
  left: calc(5px + (100% - 10px) / 3);
  border-radius: 999px;
  background: var(--lime);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.4) inset,
    0 8px 18px -6px rgba(34,211,238,.6);
  transition: left .55s var(--ease-out), background .3s var(--ease-out);
  z-index: 1;
}
.sCard--plan:hover .plan__tabGlow {
  animation: tabCycle 4.5s var(--ease-io) infinite;
}
@keyframes tabCycle {
  0%, 20%  { left: 5px; }
  30%, 55% { left: calc(5px + (100% - 10px) / 3); }
  65%, 90% { left: calc(5px + 2 * (100% - 10px) / 3); }
  100%     { left: 5px; }
}

.plan__meter {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.plan__meterTop {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.plan__meterPct {
  color: var(--lime);
  font-weight: 600;
}
.plan__bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.plan__bar i {
  position: absolute; inset: 0;
  width: 68%;
  background: linear-gradient(90deg, #22d3ee, #a855f7 60%, #d946ef);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(168,85,247,.4);
  transform-origin: left;
  animation: plBarIdle 3.8s var(--ease-io) infinite alternate;
}
.sCard--plan:hover .plan__bar i { animation: plBarFill 3s var(--ease-io) infinite alternate; }
@keyframes plBarIdle {
  0%   { width: 62%; }
  100% { width: 70%; }
}
@keyframes plBarFill {
  0%   { width: 32%; }
  100% { width: 88%; }
}
.plan__meterSub {
  margin-top: 10px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.plan__meterSub strong { color: #fff; font-weight: 700; letter-spacing: .02em; }
.plan__meterSub span { opacity: .55; }

.plan__list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.plan__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  font-size: 13px;
  color: var(--ink-soft);
}
.plan__check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lime);
  position: relative; flex: 0 0 auto;
  box-shadow: 0 0 0 2px rgba(34,211,238,.18);
}
.plan__check::after {
  content: "";
  position: absolute; left: 4px; top: 5px;
  width: 4px; height: 7px;
  border-right: 2px solid #0a0a14;
  border-bottom: 2px solid #0a0a14;
  transform: rotate(45deg);
}

.plan__pill {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.plan__pill em {
  font-style: normal;
  color: var(--lime);
  font-weight: 600;
  margin-left: 2px;
}
.plan__pillDot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(34,211,238,.8);
  animation: pulse 1.8s var(--ease-io) infinite;
}

/* ---------- CARD 2 — globe of talent ---------- */
.globe {
  position: absolute;
  inset: 18px;
  z-index: 2;
}
.globe__svg {
  width: 100%; height: 100%;
  animation: globeSpin 60s linear infinite;
  transform-origin: center;
}
@keyframes globeSpin {
  to { transform: rotate(1turn); }
}
.globe__arc {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  opacity: 0;
  transition: stroke-dashoffset 1.3s var(--ease-out), opacity .6s var(--ease-out);
}
.sCard--talent:hover .globe__arc {
  opacity: 1;
  stroke-dashoffset: 0;
}
.sCard--talent:hover .globe__arc--2 { transition-delay: .15s; }
.sCard--talent:hover .globe__arc--3 { transition-delay: .3s; }

.node {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.node i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime);
  box-shadow:
    0 0 0 3px rgba(34,211,238,.18),
    0 0 12px rgba(34,211,238,.6);
  animation: nodePulse 2.4s var(--ease-io) infinite;
  flex: 0 0 10px;
}
.node:nth-child(2) i { background: var(--cy); box-shadow: 0 0 0 3px rgba(34,211,238,.18), 0 0 12px rgba(34,211,238,.6); animation-delay: -.3s; }
.node:nth-child(3) i { background: var(--mg); box-shadow: 0 0 0 3px rgba(217,70,239,.18), 0 0 12px rgba(217,70,239,.6); animation-delay: -.6s; }
.node:nth-child(4) i { background: var(--cy); box-shadow: 0 0 0 3px rgba(34,211,238,.18), 0 0 12px rgba(34,211,238,.6); animation-delay: -.9s; }
.node:nth-child(5) i { background: var(--pu); box-shadow: 0 0 0 3px rgba(168,85,247,.2), 0 0 12px rgba(168,85,247,.6); animation-delay: -1.2s; }
.node:nth-child(6) i { background: var(--te); box-shadow: 0 0 0 3px rgba(129,140,248,.18), 0 0 12px rgba(129,140,248,.6); animation-delay: -1.5s; }
@keyframes nodePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.3); }
}
.node em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .08em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(5,19,15,.7);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.sCard--talent:hover .node em {
  opacity: 1; transform: translateY(0);
}
.sCard--talent:hover .node:nth-child(8) em  { transition-delay: .05s; }
.sCard--talent:hover .node:nth-child(9) em  { transition-delay: .1s; }
.sCard--talent:hover .node:nth-child(10) em { transition-delay: .15s; }
.sCard--talent:hover .node:nth-child(11) em { transition-delay: .2s; }
.sCard--talent:hover .node:nth-child(12) em { transition-delay: .25s; }
.sCard--talent:hover .node:nth-child(13) em { transition-delay: .3s; }

.talentMeta {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  display: flex; justify-content: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  z-index: 4;
}
.talentMeta strong { color: #fff; font-weight: 700; }
.talentMeta__sep { opacity: .4; }

/* ---------- CARD 3 — AI-first workflow ---------- */
.sCard--ai { border-color: rgba(168,85,247,.16); }
.sCard--ai .sCard__media {
  background:
    radial-gradient(520px 400px at 50% 30%, rgba(168,85,247,.15), transparent 60%),
    radial-gradient(420px 300px at 85% 80%, rgba(217,70,239,.12), transparent 60%),
    linear-gradient(160deg, #16162d, #0a0a14);
}
.ai__corner {
  position: absolute;
  top: 16px; left: 18px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .16em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}
.ai__status {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .18em;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
}
.ai__status i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(34,211,238,.7);
  animation: pulse 1.8s var(--ease-io) infinite;
}

.ai__paths {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .35;
  transition: opacity .6s var(--ease-out);
}
.sCard--ai:hover .ai__paths { opacity: 1; }
.ai__p {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 1.2s var(--ease-out);
  filter: drop-shadow(0 0 8px rgba(168,85,247,.4));
}
.sCard--ai:hover .ai__p { stroke-dashoffset: 0; }
.sCard--ai:hover .ai__p--2 { transition-delay: .1s; }
.sCard--ai:hover .ai__p--3 { transition-delay: .2s; }
.sCard--ai:hover .ai__p--4 { transition-delay: .3s; }

.ai__frame {
  position: absolute;
  left: 50%; top: 50%;
  width: 130px; height: 160px;
  transform: translate(-50%, -50%) rotate(-2deg);
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 1px 0 rgba(255,255,255,.15) inset,
    0 20px 40px -12px rgba(0,0,0,.7),
    0 0 0 1px rgba(168,85,247,.08);
  transition: transform .7s var(--ease-out), box-shadow .5s var(--ease-out);
}
.sCard--ai:hover .ai__frame {
  transform: translate(-50%, -50%) rotate(0) scale(1.04);
  box-shadow:
    0 1px 0 rgba(255,255,255,.2) inset,
    0 30px 60px -14px rgba(0,0,0,.85),
    0 0 0 1px rgba(168,85,247,.3),
    0 0 40px -5px rgba(168,85,247,.35);
}
.ai__avatar {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.15), transparent 60%),
    linear-gradient(180deg, #233348 0%, #1a2838 40%, #131f2b 100%);
}
.ai__avatarHead {
  position: absolute;
  left: 50%; top: 32%;
  width: 58px; height: 58px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, #c9b791, #93785a 45%, #604b38 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.ai__avatarBody {
  position: absolute;
  left: 50%; bottom: -10px;
  width: 110px; height: 80px;
  transform: translateX(-50%);
  border-radius: 55px 55px 0 0;
  background: linear-gradient(180deg, #b5432d, #8a2d1e);
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.ai__scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 2px,
    rgba(255,255,255,.04) 2px,
    rgba(255,255,255,.04) 3px
  );
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.ai__frameCap {
  position: absolute;
  left: 8px; bottom: 8px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: .2em;
  color: rgba(255,255,255,.7);
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(0,0,0,.5);
}
.ai__frameDot {
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  z-index: 3;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.ai__frameDot--tl { top: -3px; left: -3px; }
.ai__frameDot--tr { top: -3px; right: -3px; }
.ai__frameDot--bl { bottom: -3px; left: -3px; }
.ai__frameDot--br { bottom: -3px; right: -3px; }
.sCard--ai:hover .ai__frameDot { opacity: 1; }

.ai__chip {
  position: absolute;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; letter-spacing: .02em;
  color: #1a0f22;
  background: #f6a5ec;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.45) inset,
    0 10px 22px -6px rgba(217,70,239,.55);
  opacity: 0;
  transform: translateY(6px) scale(.9);
  transition: opacity .4s var(--ease-out), transform .45s var(--ease-out);
}
.ai__chip--a { top: 16%; left: 5%; }
.ai__chip--b { top: 16%; right: 4%; background: #bff3e0; box-shadow: 0 0 0 1px rgba(255,255,255,.45) inset, 0 10px 22px -6px rgba(129,140,248,.55); }
.ai__chip--c { bottom: 22%; left: 4%; background: #c6ecff; box-shadow: 0 0 0 1px rgba(255,255,255,.45) inset, 0 10px 22px -6px rgba(34,211,238,.55); }
.ai__chip--d { bottom: 22%; right: 4%; background: #e0d4ff; box-shadow: 0 0 0 1px rgba(255,255,255,.45) inset, 0 10px 22px -6px rgba(168,85,247,.55); }
.sCard--ai:hover .ai__chip {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sCard--ai:hover .ai__chip--a { transition-delay: .25s; }
.sCard--ai:hover .ai__chip--b { transition-delay: .45s; }
.sCard--ai:hover .ai__chip--c { transition-delay: .65s; }
.sCard--ai:hover .ai__chip--d { transition-delay: .85s; }

.ai__cursor {
  position: absolute;
  left: calc(62% - 10px);
  top: calc(55% - 10px);
  width: 22px; height: 22px;
  z-index: 4;
  opacity: 0;
  transform: translate(0, 0);
  transition: opacity .3s var(--ease-out);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
  pointer-events: none;
}
.sCard--ai:hover .ai__cursor {
  opacity: 1;
  animation: cursorTrip 3.5s var(--ease-io) .3s infinite;
}
@keyframes cursorTrip {
  0%   { transform: translate(0, 0) rotate(0); }
  20%  { transform: translate(32%, -28%) rotate(14deg); }
  40%  { transform: translate(-42%, -30%) rotate(-10deg); }
  60%  { transform: translate(-48%, 34%) rotate(-18deg); }
  80%  { transform: translate(34%, 36%) rotate(10deg); }
  100% { transform: translate(0, 0) rotate(0); }
}

.ai__hint {
  position: absolute;
  left: 50%; bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,.15);
  transition: opacity .3s var(--ease-out), transform .4s var(--ease-out);
}
.sCard--ai:hover .ai__hint { opacity: 0; transform: translateX(-50%) translateY(6px); }

/* ---------- CAPABILITY STACK MARQUEE ---------- */
.stack {
  margin: 96px auto 0;
  max-width: 1320px;
  position: relative;
}
.stack__head {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 22px;
}
.stack__head .stack__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(34,211,238,.7);
  animation: pulse 1.8s var(--ease-io) infinite;
}
.stack__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.stack__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.stack__row {
  /* No `gap` here — spacing lives on each chip as margin-inline-end so
     the LAST chip of the duplicated set also carries trailing space.
     That makes the -50% translate land exactly at the start of the
     duplicate copy with no visible jump on loop. */
  display: inline-flex; align-items: center;
  white-space: nowrap;
  padding: 4px 0;
  animation: marquee 48s linear infinite;
  will-change: transform;
}
.stack__chip {
  display: inline-flex; align-items: center; gap: 10px;
  margin-inline-end: 12px;          /* the only horizontal spacing — see comment above */
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 8px 18px -10px rgba(0,0,0,.4);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.stack__chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
}
a.stack__chip:focus-visible {
  outline: 2px solid rgba(165,233,255,.7);
  outline-offset: 3px;
}
.stack__ico {
  width: 20px; height: 20px;
  flex: 0 0 20px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  filter: drop-shadow(0 0 6px currentColor);
}
.stack__ico svg {
  width: 100%; height: 100%;
  display: block;
  color: inherit;
}
.stack__ico--cy { color: #22d3ee; }
.stack__ico--mg { color: #d946ef; }
.stack__ico--te { color: #818cf8; }
.stack__ico--pu { color: #a855f7; }
.stack__ico--li { color: #f0abfc; }

/* fine-tune responsive for the shift grid */
/* iPad / tablets: keep all 3 cards visible side-by-side, just shrink them.
   No more 2+1 layout — the cards become narrower but stay in a row. */
@media (max-width: 1100px) {
  .shift__grid3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .sCard { height: clamp(420px, 58vw, 560px); border-radius: 22px; }
  .sCard__label { padding: 14px 16px; }
  .sCard__label h3 { font-size: clamp(15px, 1.6vw, 20px); }
}
@media (max-width: 820px) {
  .shift__grid3 { gap: 10px; }
  .sCard { height: clamp(360px, 56vw, 460px); border-radius: 18px; }
  .sCard__label { padding: 12px 12px; }
  .sCard__label h3 { font-size: clamp(13px, 1.8vw, 17px); }
}
@media (max-width: 720px) {
  .shift { padding: 80px 20px 72px; }
  .shift__head { margin-bottom: 40px; }
  .shift__grid3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* Stacked, but keep the same desktop card proportions (~426x620 → 0.687)
     so each card is a tall vertical rectangle, not a squashed wide one. */
  .sCard {
    height: auto;
    aspect-ratio: 213 / 310;
    border-radius: 20px;
  }
  .sCard__media { min-height: 0; }
  .sCard--ai .sCard__label { flex-direction: column; align-items: flex-start; }
  .plan { inset: 22px 18px; }
  .stack { margin-top: 72px; }
}

/* reveal helpers */
.fade-up { opacity: 0; transform: translateY(14px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.is-ready .fade-up { opacity: 1; transform: translateY(0); }
.is-ready .delay-1 { transition-delay: .55s; }
.is-ready .delay-2 { transition-delay: .7s; }
.is-ready .delay-3 { transition-delay: .85s; }
.is-ready .delay-4 { transition-delay: 1s; }

/* ===============================================================
   § 3 · ENGINE — Custom AI creative, inversed layout (mock left, copy right)
   Light cream panel. Dark mock reel auto-cycles 5 scenes.
   =============================================================== */
.engine {
  --eg-bg: #f5f6fb;
  --eg-ink: #0a0f1a;
  --eg-ink-soft: #3b4256;
  --eg-mute: #565c6b;
  --eg-line: #dfe2ec;
  --eg-card: #ffffff;
  --eg-card-soft: #eef0f7;
  --eg-hot: #d946ef;
  --eg-hot-soft: #fbd1f3;
  --eg-cy: #22d3ee;
  --eg-purple: #a855f7;
  --eg-grad: linear-gradient(92deg, #22d3ee 0%, #a855f7 50%, #d946ef 100%);
  --eg-shadow: 0 34px 64px -32px rgba(10,15,30,.22), 0 14px 28px -14px rgba(10,15,30,.08);

  position: relative;
  z-index: 5;
  background:
    radial-gradient(70% 50% at 85% 40%, rgba(34,211,238,.08) 0%, rgba(34,211,238,0) 70%),
    radial-gradient(60% 50% at 20% 80%, rgba(168,85,247,.08) 0%, rgba(168,85,247,0) 70%),
    var(--eg-bg);
  color: var(--eg-ink);
  padding: clamp(80px, 8vw, 140px) clamp(20px, 4vw, 56px) clamp(70px, 6vw, 110px);
  font-family: var(--font-sans);
  overflow: hidden;
  isolation: isolate;
}
.engine::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 140px;
  background: linear-gradient(180deg, rgba(5,5,15,.10), transparent);
  pointer-events: none;
}

.engine__inner {
  position: relative; z-index: 2;
  max-width: 1380px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* ============ LEFT · BINDZ Pod stage — clean light card ============ */
.engine__stage {
  position: relative;
  /* Sized for 4-row roster + brand head + foot (was 5/4 for the old 5-row pod) */
  aspect-ratio: 3 / 2;
  width: 100%;
  max-width: 640px;
  justify-self: start;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--eg-shadow);
  border: 1px solid var(--eg-line);
  background: var(--eg-card);
  isolation: isolate;
}
.engine__screen {
  position: absolute; inset: 0;
  overflow: hidden;
  color: var(--eg-ink);
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 2.4vw, 26px);
  gap: clamp(10px, 1.4vw, 16px);
}

/* ---- ambient layers (very subtle over a white card) ---- */
.eStg__aurora,
.eStg__grid,
.eStg__grain,
.eStg__orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.eStg__aurora {
  background:
    radial-gradient(55% 42% at 12% 8%, rgba(168, 85, 247, .14), transparent 65%),
    radial-gradient(60% 45% at 95% 92%, rgba(34, 211, 238, .14), transparent 65%),
    radial-gradient(70% 50% at 55% 50%, rgba(217, 70, 239, .05), transparent 70%);
  opacity: .95;
  animation: eStgAurora 18s ease-in-out infinite alternate;
}
@keyframes eStgAurora {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 1.5%, 0) scale(1.04); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.02); }
}
.eStg__grid {
  background-image:
    linear-gradient(to right,  rgba(10,15,30,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,15,30,.04) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
  mask-image: radial-gradient(120% 90% at 50% 40%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 30%, transparent 85%);
  opacity: .8;
}
.eStg__grain {
  display: none; /* card is already clean */
}
.eStg__orb {
  width: 240px; height: 240px;
  inset: auto;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .45;
}
.eStg__orb--a {
  left: -70px; top: -60px;
  background: radial-gradient(circle, rgba(168, 85, 247, .32), transparent 70%);
  animation: eStgOrbA 14s ease-in-out infinite alternate;
}
.eStg__orb--b {
  right: -70px; bottom: -70px;
  background: radial-gradient(circle, rgba(34, 211, 238, .32), transparent 70%);
  animation: eStgOrbB 16s ease-in-out infinite alternate;
}
@keyframes eStgOrbA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(14px, 10px, 0) scale(1.08); }
}
@keyframes eStgOrbB {
  from { transform: translate3d(0, 0, 0) scale(1.04); }
  to   { transform: translate3d(-18px, -10px, 0) scale(1); }
}

/* ---- top row: brand + live ---- */
.eStg__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.eStg__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eStg__brandIco {
  width: clamp(36px, 4.6vw, 44px);
  height: clamp(36px, 4.6vw, 44px);
  border-radius: 12px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--eg-line);
  box-shadow: 0 6px 14px -10px rgba(10, 15, 30, .18);
  overflow: hidden;
  padding: 6px;
}
.eStg__brandIco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.eStg__brandTxt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.eStg__brandKicker {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--eg-mute);
}
.eStg__brandTitle {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--eg-ink);
}
.eStg__brandTitle em {
  font-family: var(--font-serif, "Times New Roman", serif);
  font-style: italic;
  font-weight: 400;
  background: var(--eg-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.22;
}

.eStg__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--eg-line);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--eg-ink);
  box-shadow: 0 6px 14px -10px rgba(10, 15, 30, .2);
}
.eStg__liveDot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--eg-grad);
  box-shadow: 0 0 0 0 rgba(168, 85, 247, .5);
  animation: eStgLivePulse 2s ease-out infinite;
}
@keyframes eStgLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(168, 85, 247, .5); }
  70%  { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

/* ---- pod roster ---- */
.eStg__roster {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, .7vw, 8px);
  flex: 1 1 auto;
  align-self: stretch;
  justify-content: center;
}
.eRow {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-areas: "num name tag";
  align-items: center;
  column-gap: clamp(10px, 1.4vw, 16px);
  padding: clamp(8px, 1.1vw, 12px) clamp(14px, 1.8vw, 18px);
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--eg-line);
  box-shadow: 0 1px 0 rgba(10, 15, 30, .02);
  transition: background .45s var(--ease-out), border-color .45s var(--ease-out), box-shadow .45s var(--ease-out), transform .45s var(--ease-out);
  overflow: hidden;
}
.eRow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--eg-grad);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  pointer-events: none;
}
.eRow__num {
  grid-area: num;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--eg-mute);
  opacity: .6;
  transition: color .45s var(--ease-out), opacity .45s var(--ease-out);
}
.eRow__name {
  grid-area: name;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--eg-ink);
  transition: color .45s var(--ease-out);
}
.eRow__tag {
  grid-area: tag;
  font-family: var(--font-sans);
  font-size: clamp(11px, 1.25vw, 13px);
  font-weight: 400;
  color: var(--eg-mute);
  font-style: italic;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .45s var(--ease-out), opacity .45s var(--ease-out);
}
.eRow__meter, .eRow__meterFill { display: none; }

.eRow--active {
  background: #fff;
  box-shadow:
    0 12px 28px -18px rgba(168, 85, 247, .35),
    0 4px 12px -8px rgba(34, 211, 238, .22);
  transform: translateX(2px);
}
.eRow--active::before { opacity: 1; }
.eRow--active .eRow__num { opacity: 1; color: var(--eg-hot); }
.eRow--active .eRow__name { color: var(--eg-ink); }
.eRow--active .eRow__tag  { color: var(--eg-ink-soft); }

/* ---- bottom row: status + pill ---- */
.eStg__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: clamp(6px, 1vw, 10px);
  border-top: 1px solid var(--eg-line);
}
.eStg__status {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: -.005em;
  color: var(--eg-ink-soft);
}
.eStg__statusLbl { color: var(--eg-mute); font-weight: 400; }
.eStg__statusVal { color: var(--eg-ink); font-weight: 600; }
.eStg__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background:
    linear-gradient(var(--eg-card), var(--eg-card)) padding-box,
    var(--eg-grad) border-box;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--eg-ink);
  box-shadow: 0 10px 22px -14px rgba(168, 85, 247, .3);
}
.eStg__pillSpark {
  display: inline-flex;
  width: 14px; height: 14px;
  color: var(--eg-hot);
  filter: drop-shadow(0 0 4px rgba(217, 70, 239, .35));
  animation: eStgSparkSpin 4.2s linear infinite;
}
.eStg__pillSpark svg { width: 100%; height: 100%; }
@keyframes eStgSparkSpin {
  to { transform: rotate(360deg); }
}

/* -------- background palette morph layers (all dark, different aurora tints) -------- */
.eBg {
  position: absolute; inset: 0;
  pointer-events: none;
  transition: none;
  will-change: opacity, transform;
}
.eBg--dark {
  background:
    radial-gradient(90% 60% at 20% 10%, rgba(168,85,247,.18), transparent 60%),
    radial-gradient(90% 60% at 90% 90%, rgba(34,211,238,.10), transparent 60%),
    linear-gradient(160deg, #07150f 0%, #03100b 100%);
  opacity: 1;
}
/* Cyan-tinted dark scene (scene C — "few feel on-brand") */
.eBg--lime {
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(34,211,238,.32), transparent 60%),
    radial-gradient(70% 50% at 80% 80%, rgba(88,28,135,.3), transparent 60%),
    linear-gradient(160deg, #051f20 0%, #06121a 100%);
  opacity: 0;
}
/* Magenta-tinted dark scene (scene D — product hero) */
.eBg--cream {
  background:
    radial-gradient(80% 60% at 70% 30%, rgba(217,70,239,.30), transparent 60%),
    radial-gradient(70% 60% at 20% 80%, rgba(34,211,238,.20), transparent 60%),
    linear-gradient(160deg, #0f0a18 0%, #060413 100%);
  opacity: 0;
}
.eBg--grain {
  background-image:
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  opacity: .35;
  mix-blend-mode: overlay;
}

/* -------- generic text lines (sans-serif titles) -------- */
.eLine {
  position: absolute;
  left: 8%;
  width: 84%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35em;
  font-weight: 600;
  font-size: clamp(24px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  will-change: opacity, transform;
}
.eLine span { display: inline-block; }
.eLine em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  background: linear-gradient(92deg, #a5e9ff, #c084fc 55%, #f0abfc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .04em .08em .2em .18em;
  margin: -.04em -.08em -.16em 0;
  display: inline-block;
  line-height: 1.22;
}
.eLine--title.eLine[data-el="lnA1"] { top: 34%; }
.eLine--title.eLine[data-el="lnA2"] { top: 48%; }
.eLine--figma {
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.1;
  white-space: nowrap;
}
.eLine--figma.eLine[data-el="lnF1"] { top: 22%; }
.eLine--figma.eLine[data-el="lnF2"] { top: 34%; }

/* -------- big italic serif display ("1,000s") -------- */
.eBig {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translate3d(-50%, 10px, 0);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 13vw, 190px);
  line-height: .95;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, #a5e9ff 0%, #c084fc 55%, #f0abfc 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0;
  white-space: nowrap;
  will-change: opacity, transform;
}
.eSmall {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate3d(-50%, 10px, 0);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 30px);
  letter-spacing: -.01em;
  color: #fff;
  opacity: 0;
  will-change: opacity, transform;
}

/* -------- image pile (C) — rounded tiles fly in from edges -------- */
.ePile {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ePile__cell {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(90px, 13vw, 150px);
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
  transform: translate3d(calc(-50% + var(--tx)), calc(-50% + var(--ty)), 0) rotate(var(--tr)) scale(0);
  opacity: 0;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.7);
  will-change: opacity, transform, filter;
}
.eCap {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate3d(-50%, 12px, 0);
  font-weight: 600;
  font-size: clamp(22px, 3.4vw, 46px);
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  opacity: 0;
  white-space: nowrap;
  will-change: opacity, transform;
}

/* -------- cursor (vector triangle, solid ink) -------- */
.eCursor {
  position: absolute;
  top: 56%; left: 50%;
  width: 22px; height: 24px;
  transform: translate3d(-50%, -50%, 0) scale(.9);
  opacity: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  will-change: opacity, transform;
}
.eCursor svg { width: 100%; height: 100%; display: block; }
.eCursor__tap {
  position: absolute;
  top: 56%; left: 50%;
  width: 10px; height: 10px;
  transform: translate3d(-50%, -50%, 0) scale(0);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  opacity: 0;
  will-change: opacity, transform;
}

/* -------- product selection (D) -------- */
.eProd {
  position: absolute;
  top: 50%; right: 10%;
  width: clamp(180px, 30vw, 320px);
  aspect-ratio: 1;
  transform: translate3d(40px, -50%, 0) scale(.94);
  opacity: 0;
  will-change: opacity, transform;
}
.eProd__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.06);
}
.eProd__corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1.5px solid #22d3ee;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(34,211,238,.5));
}
.eProd__corner--tl { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.eProd__corner--tr { top: -6px; right: -6px; border-left: 0; border-bottom: 0; }
.eProd__corner--bl { bottom: -6px; left: -6px; border-right: 0; border-top: 0; }
.eProd__corner--br { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }

/* -------- aurora pill (D + F) -------- */
.ePill {
  position: absolute;
  top: 48%; left: 10%;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(168,85,247,.18));
  border: 1px solid rgba(165,233,255,.35);
  color: #eaf8ff;
  font-weight: 600;
  font-size: clamp(12px, 1.2vw, 17px);
  letter-spacing: -.005em;
  transform: translate3d(-30px, -50%, 0);
  opacity: 0;
  box-shadow: 0 14px 40px -14px rgba(34,211,238,.55), 0 0 0 1px rgba(217,70,239,.15) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  will-change: opacity, transform;
}
.ePill--gen {
  top: auto; left: auto;
  bottom: 18%; right: 18%;
  transform: translate3d(0, 20px, 0);
}
.ePill__spark {
  width: 16px; height: 16px;
  display: inline-grid; place-items: center;
  color: #a5e9ff;
  filter: drop-shadow(0 0 6px rgba(34,211,238,.7));
}
.ePill__spark svg { width: 14px; height: 14px; display: block; }

/* -------- output stack (E) — italic serif big words -------- */
.eStack {
  position: absolute;
  inset: 8% 8% auto;
  pointer-events: none;
}
.eStack__kicker {
  display: block;
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  font-size: clamp(10px, 1.1vw, 14px);
  letter-spacing: .18em;
  color: #ff9ad4;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  will-change: opacity, transform;
}
.eStack__list {
  display: flex; flex-direction: column;
  gap: .02em;
  margin-top: 8px;
}
.eStack__w {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: rgba(255,154,212,.22);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  will-change: opacity, transform, color;
}
.eStack__w--hot { color: #ff9ad4; }

/* -------- end card (G) — real logo + tag -------- */
.eEnd__logo {
  position: absolute;
  top: 40%; left: 50%;
  width: clamp(140px, 22vw, 260px);
  height: auto;
  transform: translate3d(-50%, -50%, 0) scale(.92);
  opacity: 0;
  filter: drop-shadow(0 8px 28px rgba(34,211,238,.35)) drop-shadow(0 0 40px rgba(217,70,239,.22));
  will-change: opacity, transform;
}
.eEnd__tag {
  position: absolute;
  top: 66%; left: 50%;
  transform: translate3d(-50%, 8px, 0);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 26px);
  background: linear-gradient(92deg, #a5e9ff, #c084fc 55%, #f0abfc);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: 0;
  white-space: nowrap;
  will-change: opacity, transform;
}
.eEnd__tag em { font-style: italic; }
.eEnd__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 90%; aspect-ratio: 1;
  transform: translate3d(-50%, -50%, 0) scale(.6);
  background: radial-gradient(circle, rgba(34,211,238,.28), rgba(217,70,239,.18) 40%, transparent 65%);
  filter: blur(40px);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

/* -------- ambient particles (drift always) -------- */
.eParticle {
  position: absolute;
  top: var(--py); left: var(--px);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(165,233,255,.7);
  opacity: 0;
  pointer-events: none;
  filter: blur(.5px) drop-shadow(0 0 4px rgba(34,211,238,.6));
  will-change: opacity, transform;
}

/* ============ RIGHT · copy ============ */
.engine__copy {
  max-width: 540px;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start;
}
.engine__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background:
    linear-gradient(var(--eg-card), var(--eg-card)) padding-box,
    var(--eg-grad) border-box;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--eg-ink);
  box-shadow: 0 6px 14px -8px rgba(13,31,24,.18);
  margin: 0 0 22px;
}
.engine__badgeDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--eg-hot);
  box-shadow: 0 0 10px rgba(217,70,239,.55);
  animation: pulse 1.8s var(--ease-io) infinite;
}
.engine__badgeSep {
  width: 1px; height: 10px;
  background: rgba(13,31,24,.2);
}
.engine__badgeSub {
  color: var(--eg-ink-soft);
  letter-spacing: .14em;
  font-weight: 500;
}

.engine__title {
  margin: 0 0 18px;
  font-size: clamp(36px, 3.8vw, 62px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--eg-ink);
}
.engine__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  background: var(--eg-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* descender clearance for g/y/p */
  padding: .04em .12em .22em .04em;
  margin: -.04em -.12em -.18em -.04em;
  display: inline-block;
  line-height: 1.22;
}
.engine__lede {
  margin: 0 0 22px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--eg-ink-soft);
  max-width: 52ch;
}

.engine__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--eg-ink);
}
.engine__list li {
  display: flex; align-items: center; gap: 12px;
  line-height: 1.5;
}
.engine__liIco {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(var(--eg-card), var(--eg-card)) padding-box,
    var(--eg-grad) border-box;
  border: 1px solid transparent;
  color: var(--eg-ink);
}
.engine__liIco svg { width: 12px; height: 12px; }

.engine__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
}
.engine__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--eg-ink);
  color: #f3f1e8;
  font-size: 14px; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none;
  border: 1px solid var(--eg-ink);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  box-shadow: 0 14px 28px -12px rgba(13,31,24,.4);
}
.engine__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -14px rgba(13,31,24,.45);
}
.engine__cta span { transition: transform .25s ease; }
.engine__cta:hover span { transform: translateX(3px); }

.engine__ctaGhost {
  display: inline-flex; align-items: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--eg-ink);
  font-size: 13.5px; font-weight: 500; letter-spacing: -.005em;
  text-decoration: none;
  border: 1px solid rgba(13,31,24,.2);
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out);
}
.engine__ctaGhost:hover {
  background: rgba(13,31,24,.05);
  border-color: rgba(13,31,24,.35);
}

/* engine · responsive */
@media (max-width: 980px) {
  .engine__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .engine__stage {
    max-width: 100%;
    justify-self: stretch;
    order: 2;
  }
  .engine__copy { order: 1; }
}
@media (max-width: 640px) {
  /* Let the card grow to fit its contents instead of cropping them with
     a fixed aspect-ratio — "reviewed by humans" was being cut off. */
  .engine__stage { aspect-ratio: auto; }
  .engine__screen {
    position: relative;
    inset: auto;
    padding: 18px 16px 20px;
    gap: 12px;
  }
  .eRow {
    grid-template-columns: auto auto 1fr;
    grid-template-areas: "num name tag";
    column-gap: 10px;
  }
  .eRow__meter { display: none; }
  .eStg__foot { flex-wrap: wrap; gap: 10px; padding-bottom: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .eStg__aurora, .eStg__orb--a, .eStg__orb--b,
  .eStg__liveDot, .eStg__pillSpark { animation: none !important; }
  .eRow { transition: none !important; }
  .eRow__meterFill { transition: none !important; }
}

/* ===============================================================
   § 4 · PROCESS — sticky horizontal storyboard, 4 steps
   =============================================================== */
.process {
  position: relative;
  z-index: 4;
  height: 420vh;
  background: linear-gradient(180deg, #06060c 0%, #0a0a14 30%, #0a0a14 70%, #06060c 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  isolation: isolate;
}
.process__bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.process__orb {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vmin; height: 70vmin;
  border-radius: 50%;
  filter: blur(140px);
  mix-blend-mode: screen;
  opacity: .22;
  background: radial-gradient(circle, #6366f1 0%, transparent 60%);
  animation: drift 36s var(--ease-io) infinite alternate;
}
.process__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(1400px 800px at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(1400px 800px at 50% 30%, #000 0%, transparent 80%);
}

.process__head {
  position: relative; z-index: 2;
  padding: 120px clamp(20px, 4vw, 48px) 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.process__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  margin: 0 0 22px;
}
.process__kickerDot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(34,211,238,.7);
  animation: pulse 1.8s var(--ease-io) infinite;
}
.process__title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
}
.process__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.04em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* descender clearance for g/y/p */
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.2;
}
.process__lede {
  margin: 0 auto;
  max-width: 58ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
}

.process__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--topbar-h) + var(--nav-h) + 18px);
}

/* rail */
.process__rail {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px clamp(20px, 4vw, 48px) 18px;
  width: 100%;
  z-index: 3;
}
.process__stop {
  position: relative;
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 8px 4px;
  color: rgba(255,255,255,.45);
  font-family: var(--font-sans);
  transition: color .4s var(--ease-out);
  cursor: pointer;
}
.process__stop:hover { color: rgba(255,255,255,.75); }
.process__stop.is-on { color: #fff; }
.process__stopNum {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .2em;
  opacity: .8;
}
.process__stopLbl {
  font-size: 14px; font-weight: 500; letter-spacing: -.01em;
}
.process__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process__line {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  right: clamp(20px, 4vw, 48px);
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.process__lineFill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #22d3ee, #6366f1 40%, #a855f7 70%, #d946ef);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .15s linear;
  box-shadow: 0 0 12px rgba(168,85,247,.4);
}

/* viewport + track */
.process__viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.process__track {
  display: flex;
  width: 400vw;
  height: 100%;
  will-change: transform;
  transition: transform .1s linear;
}
.step {
  flex: 0 0 100vw;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px clamp(24px, 5vw, 80px) 60px;
  overflow: hidden;
}
.step__watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(240px, 44vw, 640px);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  pointer-events: none;
  -webkit-user-select: none;

  user-select: none;
  z-index: 0;
}
.step__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}
.step__phase {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.step__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 22ch;
}
.step__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.04em;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* descender clearance for g/y/p */
  padding: .04em .08em .2em .04em;
  margin: -.04em -.08em -.16em -.04em;
  display: inline-block;
  line-height: 1.2;
}
.step__lede {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.step__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 18px;
  margin-top: 6px;
}
.step__panel {
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
          backdrop-filter: blur(14px) saturate(150%);
}
.step__panelLbl {
  margin: 0 0 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.step__panelLbl span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cy);
  box-shadow: 0 0 8px rgba(34,211,238,.7);
}
.step__panel ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.step__panel li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.step__panel li::before {
  content: "";
  position: absolute;
  left: 2px; top: 6px;
  width: 5px; height: 9px;
  border-right: 1.5px solid var(--cy);
  border-bottom: 1.5px solid var(--cy);
  transform: rotate(45deg);
  transform-origin: center;
  filter: drop-shadow(0 0 4px rgba(34,211,238,.45));
}

.step__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.step__splitSide {
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
          backdrop-filter: blur(14px) saturate(150%);
}
.step__splitSide--ai {
  background:
    radial-gradient(260px 180px at 20% 20%, rgba(34,211,238,.12), transparent 60%),
    linear-gradient(160deg, rgba(34,211,238,.04), rgba(255,255,255,.015));
  border-color: rgba(34,211,238,.22);
}
.step__splitSide--hu {
  background:
    radial-gradient(260px 180px at 80% 20%, rgba(217,70,239,.12), transparent 60%),
    linear-gradient(160deg, rgba(217,70,239,.04), rgba(255,255,255,.015));
  border-color: rgba(217,70,239,.22);
}
.step__splitLbl {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
}
.step__splitSide--ai .step__splitLbl {
  color: #a5e9ff;
}
.step__splitSide--hu .step__splitLbl {
  color: #f5b4f0;
}
.step__splitSide ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.step__splitSide li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
}
.step__splitSide--ai li::before {
  content: "◇";
  position: absolute; left: 0; top: 0;
  color: var(--cy);
  font-size: 11px;
  line-height: 1.6;
}
.step__splitSide--hu li::before {
  content: "◆";
  position: absolute; left: 0; top: 0;
  color: var(--mg);
  font-size: 11px;
  line-height: 1.6;
}

.step__foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  padding-top: 6px;
  border-top: 1px dashed rgba(255,255,255,.08);
  margin-top: 6px;
}
.step__time {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.step__time span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(34,211,238,.7);
  animation: pulse 1.8s var(--ease-io) infinite;
}
.step__cue {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* process responsive */
@media (max-width: 1100px) {
  .step__cols { grid-template-columns: 1fr; }
  .step__split { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  /* process on mobile: horizontal swipe with scroll-snap (no long vertical stack) */
  .process { height: auto; }
  .process__pin {
    position: static;
    height: auto;
    overflow: visible;
    padding-top: 0;
  }
  .process__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .process__viewport::-webkit-scrollbar { display: none; }
  .process__track {
    flex-direction: row;
    width: max-content;
    transform: none !important;
    gap: 0;
    padding-bottom: 0;
  }
  .step {
    flex: 0 0 100vw;
    width: 100vw;
    min-height: auto;
    padding: 36px 22px 44px;
    align-items: flex-start;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .step__content { max-width: 100%; }
  .step__watermark { font-size: clamp(180px, 56vw, 320px); opacity: .8; }
  .process__rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 14px 16px 12px;
    position: sticky;
    top: calc(var(--topbar-h) + var(--nav-h));
    background: rgba(6,6,12,.88);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    z-index: 3;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .process__stop { justify-content: center; padding: 8px 0; cursor: pointer; }
  .process__stopLbl { display: none; }
  .process__line { bottom: 2px; }
  .process__head { padding: 72px 20px 20px; }
  .step__title { font-size: clamp(26px, 7vw, 36px); }
  .step__lede { font-size: 14.5px; }
  .step__cue.is-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px; font-weight: 600; letter-spacing: 0;
    text-transform: none;
    color: #fff;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(168,85,247,.16));
    border: 1px solid rgba(255,255,255,.18);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
            backdrop-filter: blur(10px) saturate(160%);
    box-shadow:
      0 1px 0 rgba(255,255,255,.18) inset,
      0 10px 24px -10px rgba(168,85,247,.45),
      0 4px 12px rgba(34,211,238,.18);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .3s ease, background .3s ease;
  }
  .step__cue.is-cta em {
    font-family: var(--font-serif); font-style: italic; font-weight: 400;
    background: var(--grad-text);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin: 0 -.05em;
  }
  .step__cue.is-cta .step__cueArrow {
    transition: transform .25s ease;
    display: inline-block;
  }
  .step__cue.is-cta:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(34,211,238,.24), rgba(168,85,247,.24));
  }
  .step__cue.is-cta:hover .step__cueArrow { transform: translateX(3px); }
  .step__cue.is-cta:active { transform: translateY(0) scale(.98); }
  .step__foot { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .step__split { grid-template-columns: 1fr; gap: 16px; }
  .step__panel { padding: 18px 18px; }
  .step__cols { gap: 18px; }
}
@media (max-width: 480px) {
  .process__rail { padding: 16px 12px 14px; }
  .process__stopNum { font-size: 11px; }
  .step { padding: 32px 16px; }
  .step__phase { font-size: 11px; }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1100px) {
  .hero__stage { padding: calc(var(--topbar-h) + var(--nav-h) + 30px) 24px 200px; }
  .hero__spec { min-width: 210px; padding: 12px 14px; }
  .hero__chips { max-width: 60%; }
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: inline-flex; margin-left: auto; }
  .nav__pill { min-width: 0; width: 100%; padding: 8px 10px 8px 18px; gap: 10px; justify-content: space-between; }
  /* Glare was tuned in fixed px for a 1220px desktop pill — on narrow
     mobile widths those peaks land on (or past) the rounded corners and
     show up as bright cyan blobs at top-left with dim corners elsewhere.
     Retune with %-based sizes so the glow scales with the pill, and
     match the parent's 22px radius (iOS Safari leaks backdrop-filter
     children out of mismatched rounded corners). */
  .nav__glare {
    border-radius: 22px;
    background:
      radial-gradient(75% 130% at 18% 50%, rgba(34,211,238,.16), transparent 68%),
      radial-gradient(80% 130% at 82% 55%, rgba(217,70,239,.12), transparent 72%),
      radial-gradient(90% 120% at 50% 115%, rgba(129,140,248,.09), transparent 70%);
  }
  .hero__spec { display: none; }
  .hero__chips { max-width: 100%; justify-content: center; left: 0; right: 0; bottom: 20px; padding: 0 16px; }
  .hero__cue { display: none; }
}
@media (max-width: 560px) {
  .hero__title { font-size: clamp(44px, 12vw, 72px); }
  .hero__badge { font-size: 10.5px; padding: 8px 14px; }
  .btn { height: 48px; padding: 0 18px; font-size: 14px; }
  .topbar { font-size: 11px; }
  .hero__chips .hero__chip { font-size: 10px; padding: 6px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__video { display: none; }
}

/* =============================================================
   BRIEF MODAL · BINDZ-styled, feels-AI multi-step wizard
   ============================================================= */

:root {
  --bm-bg: #f7f8fc;
  --bm-surf: #ffffff;
  --bm-ink: #0a0f1a;
  --bm-mute: #5a6375;
  --bm-line: #e4e8f1;
  --bm-input: #f1f3f9;
  --bm-grad: linear-gradient(135deg, #1e9fe0 0%, #6d5cf0 55%, #b247e8 100%);
  --bm-grad-soft: linear-gradient(135deg, rgba(30,159,224,.14), rgba(109,92,240,.14) 55%, rgba(178,71,232,.12));
  --bm-accent: #6d5cf0;
  --bm-accent-2: #1e9fe0;
  --bm-shadow: 0 50px 100px -30px rgba(10,15,30,.55), 0 18px 40px -20px rgba(10,15,30,.3);
  --bm-ease: cubic-bezier(.22,.9,.2,1.06);
}

@keyframes bmGradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.bm-grad-anim {
  background-image: var(--bm-grad);
  background-size: 220% 220%;
  animation: bmGradShift 7s ease-in-out infinite;
}

.briefM {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 40px);
  font-family: var(--font-sans);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s;
}
.briefM.is-open { opacity: 1; visibility: visible; }

.briefM__backdrop {
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 40%, rgba(168,85,247,.18), rgba(5,10,20,.85) 60%);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  cursor: pointer;
}

.briefM__card {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(840px, 94vh);
  height: 100%;
  border-radius: 22px;
  background: var(--bm-bg);
  box-shadow: var(--bm-shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  transform: translateY(24px) scale(.97);
  opacity: 0;
  transition: transform .55s var(--bm-ease), opacity .45s ease;
}
.briefM.is-open .briefM__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.briefM__card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34,211,238,.55), rgba(168,85,247,.45) 50%, rgba(217,70,239,.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}

.briefM__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(10,15,30,.05);
  color: var(--bm-ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.briefM__close svg { width: 14px; height: 14px; }
.briefM__close:hover { background: rgba(10,15,30,.1); transform: rotate(90deg); }

/* ------- Left rail ------- */
.briefM__side {
  padding: 32px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fc 100%);
  border-right: 1px solid var(--bm-line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.briefM__side::before {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(168,85,247,.35), rgba(34,211,238,.25), transparent);
}
.briefM__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.briefM__brandMark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: #ffffff;
  display: grid; place-items: center;
  box-shadow: 0 10px 22px -14px rgba(10,15,30,.35), 0 0 0 1px rgba(10,15,30,.06);
  overflow: hidden;
}
.briefM__brandMark img {
  width: 72%; height: 72%;
  object-fit: contain;
  display: block;
}
.briefM__brandLbl {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: .1em;
  line-height: 1.35;
  color: var(--bm-ink);
  font-weight: 700;
  text-transform: uppercase;
}
.briefM__brandLbl em { font-style: italic; font-weight: 400; color: var(--bm-mute); }

.briefM__steps {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 2px;
  counter-reset: brief;
}
.briefM__st {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--bm-mute);
  font-weight: 500;
  transition: background .35s ease, color .35s ease, transform .35s var(--bm-ease), box-shadow .3s ease;
  position: relative;
}
.briefM__st.is-clickable { cursor: pointer; }
.briefM__st.is-clickable:hover:not(.is-active) {
  background: rgba(10,15,30,.035);
  color: var(--bm-ink);
}
.briefM__st.is-clickable:hover:not(.is-active) .briefM__stN {
  background: rgba(109,92,240,.1);
  color: var(--bm-accent);
}
.briefM__st > span:last-child { transition: color .35s ease; }
.briefM__stN {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10.5px;
  color: var(--bm-mute);
  background: rgba(10,15,30,.04);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .35s ease, color .35s ease;
}
.briefM__st.is-active {
  background: #ffffff;
  color: var(--bm-ink);
  transform: translateX(2px);
  box-shadow: 0 6px 18px -8px rgba(10,15,30,.18);
}
.briefM__st.is-active .briefM__stN {
  background-image: var(--bm-grad);
  background-size: 220% 220%;
  animation: bmGradShift 6s ease-in-out infinite;
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(109,92,240,.55);
}
.briefM__st.is-done { color: var(--bm-ink); }
.briefM__st.is-done .briefM__stN {
  color: var(--bm-accent);
  background: rgba(109,92,240,.1);
}
.briefM__st.is-done .briefM__stN::before {
  content: '✓ ';
}

.briefM__tip {
  margin-top: auto;
  position: relative;
  padding: 14px 14px 14px 34px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--bm-line);
  position: relative;
  font-size: 12px;
  line-height: 1.5;
  color: var(--bm-mute);
  box-shadow: 0 8px 20px -14px rgba(10,15,30,.2);
  transition: opacity .3s ease;
}
.briefM__tipTxt {
  margin: 0;
  transition: opacity .45s ease, transform .45s var(--bm-ease), filter .45s ease;
  will-change: opacity, transform;
}
.briefM__tip.is-swap .briefM__tipTxt {
  opacity: 0;
  transform: translateY(-4px);
  filter: blur(2px);
}
.briefM__tipDot {
  position: absolute;
  top: 18px; left: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bm-grad);
  box-shadow: 0 0 10px 2px rgba(168,85,247,.5);
  animation: bmPulse 1.8s ease-in-out infinite;
}
@keyframes bmPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.25); filter: brightness(1.3); }
}

/* ------- Main pane ------- */
.briefM__main {
  position: relative;
  padding: 62px clamp(24px, 4vw, 56px) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.briefM__prog {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(10,15,30,.06);
}
.briefM__progFill {
  display: block;
  height: 100%;
  width: 0%;
  background-image: var(--bm-grad);
  background-size: 220% 220%;
  animation: bmGradShift 6s ease-in-out infinite;
  box-shadow: 0 0 14px rgba(109,92,240,.55);
  transition: width .7s var(--bm-ease);
  border-radius: 0 6px 6px 0;
}

/* ------- Screens ------- */
.briefM__screen {
  position: absolute;
  inset: 62px clamp(24px, 4vw, 56px) 84px;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  pointer-events: none;
  transition: opacity .5s ease, transform .55s var(--bm-ease), filter .45s ease;
  overflow-y: auto;
}
.briefM__screen.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}
.briefM__screen.is-prev {
  opacity: 0;
  transform: translateY(-20px);
  filter: blur(6px);
}

.briefM__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bm-ink);
  margin-bottom: 14px;
}
.briefM__spark {
  background: var(--bm-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-size: 14px;
  filter: drop-shadow(0 0 3px rgba(168,85,247,.3));
}
.briefM__h {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.12;
  color: var(--bm-ink);
  margin: 0 0 10px;
}
.briefM__sub {
  font-size: 14.5px;
  color: var(--bm-mute);
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 52ch;
}

/* ------- Cards (large radio options) ------- */
.briefM__opts--cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.briefOpt {
  text-align: left;
  background: var(--bm-surf);
  border: 1px solid var(--bm-line);
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .3s var(--bm-ease), border-color .3s ease, box-shadow .3s ease;
  font-family: inherit;
}
.briefOpt:hover {
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.35);
  box-shadow: 0 14px 32px -18px rgba(168,85,247,.45);
}
.briefOpt__ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(30,159,224,.10), rgba(109,92,240,.12), rgba(178,71,232,.10));
  background-size: 220% 220%;
  animation: bmGradShift 10s ease-in-out infinite;
  color: var(--bm-ink);
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease, transform .35s var(--bm-ease);
}
.briefOpt__ico svg {
  width: 22px;
  height: 22px;
  display: block;
}
.briefOpt:hover .briefOpt__ico { transform: scale(1.04) rotate(-2deg); }
.briefOpt__body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.briefOpt__t { font-size: 15px; font-weight: 700; color: var(--bm-ink); }
.briefOpt__s { font-size: 12.5px; color: var(--bm-mute); line-height: 1.4; }
.briefOpt__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--bm-line);
  position: relative;
  flex-shrink: 0;
  transition: border-color .3s ease, background .3s ease;
}
.briefOpt__check::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--bm-grad);
  transform: scale(0);
  transition: transform .3s cubic-bezier(.2,.9,.2,1.35);
}
.briefOpt.is-picked {
  border-color: transparent;
  background:
    linear-gradient(var(--bm-surf), var(--bm-surf)) padding-box,
    var(--bm-grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 18px 40px -18px rgba(168,85,247,.55);
}
.briefOpt.is-picked .briefOpt__check { border-color: transparent; }
.briefOpt.is-picked .briefOpt__check::after { transform: scale(1); }
.briefOpt.is-picked .briefOpt__ico {
  background-image: var(--bm-grad);
  background-size: 220% 220%;
  animation: bmGradShift 5s ease-in-out infinite;
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(109,92,240,.6);
}

/* ------- Chips (multi-select) ------- */
.briefM__opts--chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.briefChip {
  background: var(--bm-surf);
  border: 1px solid var(--bm-line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bm-ink);
  cursor: pointer;
  position: relative;
  transition: transform .25s var(--bm-ease), border-color .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  font-family: inherit;
}
.briefChip::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: var(--bm-grad);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
}
.briefChip:hover {
  transform: translateY(-1px);
  border-color: rgba(168,85,247,.3);
}
.briefChip.is-picked {
  background: #0a0f1a;
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -14px rgba(10,15,30,.55);
}
.briefChip.is-picked::before {
  opacity: 1;
  animation: bmGradShift 6s ease-in-out infinite;
}

/* ------- Text fields ------- */
.briefM__fld {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.briefM__fldLbl {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bm-ink);
  letter-spacing: .01em;
}
.briefM__fldLbl em {
  font-style: normal;
  font-weight: 400;
  color: var(--bm-mute);
}
.briefM__inp, .briefM__ta, .briefM__sel {
  width: 100%;
  background: var(--bm-surf);
  border: 1px solid var(--bm-line);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--bm-ink);
  font-family: inherit;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  appearance: none;
}
.briefM__ta { min-height: 110px; resize: vertical; line-height: 1.5; }
.briefM__ta--small { min-height: 70px; }
.briefM__ta {
  scrollbar-width: thin;
  scrollbar-color: rgba(109,92,240,.45) transparent;
}
.briefM__ta::-webkit-scrollbar { width: 10px; height: 10px; }
.briefM__ta::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
  margin: 6px 0;
}
.briefM__ta::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(109,92,240,.55), rgba(212,120,255,.5));
  border-radius: 10px;
  border: 2px solid var(--bm-surf);
  background-clip: padding-box;
  transition: background .25s ease;
}
.briefM__ta::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(109,92,240,.8), rgba(212,120,255,.75));
  background-clip: padding-box;
}
.briefM__ta::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
.briefM__ta::-webkit-scrollbar-corner { background: transparent; }
.briefM__fld--loose { margin-top: 18px; }
.briefM__sel {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4 l4 4 l4 -4' stroke='%230a0f1a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.briefM__inp:focus, .briefM__ta:focus, .briefM__sel:focus {
  outline: none;
  border-color: transparent;
  background:
    linear-gradient(var(--bm-surf), var(--bm-surf)) padding-box,
    var(--bm-grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 0 4px rgba(109,92,240,.14);
}
.briefM__inp::placeholder, .briefM__ta::placeholder {
  color: #9aa3b7;
  font-style: normal;
  opacity: 1;
}
.briefM__taHint, .briefM__fldHint {
  font-size: 11.5px;
  color: var(--bm-mute);
  margin-top: 4px;
}

/* ---------- Custom dropdown ---------- */
.briefDrop { position: relative; }
.briefDrop__trig {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 12px;
  background: var(--bm-surf);
  border: 1px solid var(--bm-line);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  color: var(--bm-ink);
  font-family: inherit;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  min-height: 58px;
}
.briefDrop__trig:hover {
  border-color: rgba(109, 92, 240, .35);
  background: #fafbff;
}
.briefDrop__trigIco {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bm-grad-soft);
  background-size: 220% 220%;
  animation: bmGradShift 9s ease-in-out infinite;
  color: var(--bm-accent);
}
.briefDrop__trigIco svg { width: 18px; height: 18px; }
.briefDrop__val {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.briefDrop__valTtl {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bm-ink);
  letter-spacing: -.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.briefDrop.is-empty .briefDrop__valTtl { color: #9aa3b7; font-weight: 500; }
.briefDrop__valSub {
  font-size: 11.5px;
  color: var(--bm-mute);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.briefDrop__chev {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--bm-mute);
  transition: transform .25s ease, color .25s ease;
}
.briefDrop.is-open .briefDrop__chev {
  transform: rotate(180deg);
  color: var(--bm-accent);
}
.briefDrop.is-open .briefDrop__trig {
  border-color: transparent;
  background:
    linear-gradient(var(--bm-surf), var(--bm-surf)) padding-box,
    var(--bm-grad) border-box;
  background-size: auto, 220% 220%;
  border: 1.5px solid transparent;
  animation: bmGradShift 8s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(109, 92, 240, .14);
}
.briefDrop__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background:
    linear-gradient(var(--bm-surf), var(--bm-surf)) padding-box,
    var(--bm-grad) border-box;
  background-size: auto, 220% 220%;
  border: 1.2px solid transparent;
  animation: bmGradShift 9s ease-in-out infinite;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 48px -18px rgba(20, 30, 60, .28), 0 4px 14px -6px rgba(20, 30, 60, .18);
  z-index: 40;
  max-height: 320px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px) scale(.985);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .22s var(--bm-ease), transform .22s var(--bm-ease);
}
.briefDrop.is-open .briefDrop__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.briefDrop__opt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  color: var(--bm-ink);
  font-family: inherit;
  transition: background .18s ease, color .18s ease;
  position: relative;
}
.briefDrop__opt + .briefDrop__opt { margin-top: 2px; }
.briefDrop__opt:hover {
  background: linear-gradient(135deg, rgba(30,159,224,.08), rgba(109,92,240,.09) 55%, rgba(178,71,232,.07));
}
.briefDrop__opt.is-selected {
  background: linear-gradient(135deg, rgba(30,159,224,.14), rgba(109,92,240,.16) 55%, rgba(178,71,232,.12));
}
.briefDrop__opt.is-selected::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(109, 92, 240, .3);
  pointer-events: none;
}
.briefDrop__optIco {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(109, 92, 240, .08);
  color: var(--bm-accent);
  transition: background .18s ease, color .18s ease, transform .3s var(--bm-ease);
}
.briefDrop__opt:hover .briefDrop__optIco,
.briefDrop__opt.is-selected .briefDrop__optIco {
  background: var(--bm-grad);
  background-size: 220% 220%;
  animation: bmGradShift 7s ease-in-out infinite;
  color: #fff;
  transform: scale(1.04) rotate(-2deg);
}
.briefDrop__optIco svg { width: 17px; height: 17px; }
.briefDrop__optBody {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.briefDrop__optTtl {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bm-ink);
  letter-spacing: -.005em;
}
.briefDrop__optSub {
  font-size: 11.5px;
  color: var(--bm-mute);
  margin-top: 1px;
  line-height: 1.4;
}
.briefDrop__optTag {
  flex: 0 0 auto;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--bm-grad);
  background-size: 220% 220%;
  animation: bmGradShift 7s ease-in-out infinite;
  color: #fff;
  white-space: nowrap;
}

.briefM__suggest {
  margin-top: 14px;
  padding: 16px 18px 14px;
  border-radius: 14px;
  background:
    linear-gradient(var(--bm-surf), var(--bm-surf)) padding-box,
    var(--bm-grad) border-box;
  background-size: auto, 220% 220%;
  border: 1.2px solid transparent;
  animation: bmGradShift 8s ease-in-out infinite;
  font-size: 13.5px;
  color: var(--bm-ink);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .45s var(--bm-ease);
  position: relative;
  overflow: hidden;
}
.briefM__suggest.is-show {
  opacity: 1;
  transform: translateY(0);
}
.briefM__suggestHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.briefM__suggestKick {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background-image: var(--bm-grad);
  background-size: 220% 220%;
  animation: bmGradShift 5s ease-in-out infinite;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.briefM__suggestSpark {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: var(--bm-grad);
  background-size: 220% 220%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 0.6 L9.6 6.4 L15.4 8 L9.6 9.6 L8 15.4 L6.4 9.6 L0.6 8 L6.4 6.4 Z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 0.6 L9.6 6.4 L15.4 8 L9.6 9.6 L8 15.4 L6.4 9.6 L0.6 8 L6.4 6.4 Z'/></svg>") center/contain no-repeat;
  animation: bmGradShift 5s ease-in-out infinite, bmSparkSpin 5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, .35));
}
@keyframes bmSparkSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%      { transform: rotate(180deg) scale(1.2); }
}
.briefM__suggestRoll {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid var(--bm-line);
  background: var(--bm-surf);
  color: var(--bm-mute);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .35s var(--bm-ease), color .25s ease, border-color .25s ease, background .25s ease;
}
.briefM__suggestRoll svg { width: 13px; height: 13px; }
.briefM__suggestRoll:hover {
  color: var(--bm-accent);
  border-color: rgba(109,92,240,.4);
  background: rgba(109,92,240,.06);
}
.briefM__suggestRoll:active { transform: rotate(-180deg); }
.briefM__suggestRoll.is-spin { animation: bmSpinOnce .6s var(--bm-ease); }
@keyframes bmSpinOnce {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.briefM__suggestTxt {
  margin: 0 0 10px;
  color: var(--bm-ink);
  min-height: 21px;
}
.briefM__suggestTxt .briefM__caret {
  display: inline-block;
  width: 2px; height: 1em;
  vertical-align: -2px;
  background: var(--bm-accent);
  margin-left: 2px;
  animation: bmCaretBlink .9s steps(2) infinite;
}
@keyframes bmCaretBlink { 50% { opacity: 0; } }
.briefM__suggestUse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 14px;
  border: 1px solid rgba(109,92,240,.25);
  background: rgba(109,92,240,.06);
  color: var(--bm-accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, color .25s ease, border-color .25s ease;
}
.briefM__suggestUse svg { width: 14px; height: 14px; transition: transform .3s var(--bm-ease); }
.briefM__suggestUse:hover {
  background: rgba(109,92,240,.12);
  border-color: rgba(109,92,240,.5);
}
.briefM__suggestUse:hover svg { transform: translateX(3px); }
.briefM__suggestUse.is-used {
  background: rgba(34,211,238,.1);
  border-color: rgba(34,211,238,.35);
  color: #0891b2;
}

.briefM__aiNote {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background:
    linear-gradient(var(--bm-surf), var(--bm-surf)) padding-box,
    var(--bm-grad) border-box;
  background-size: auto, 220% 220%;
  animation: bmGradShift 9s ease-in-out infinite, bmNoteIn .6s var(--bm-ease);
  border: 1.2px solid transparent;
  font-size: 12.5px;
  color: var(--bm-ink);
}
@keyframes bmNoteIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.briefM__aiNoteDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bm-accent);
  box-shadow: 0 0 0 0 rgba(109,92,240,.45);
  animation: bmNoteDot 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes bmNoteDot {
  0%   { box-shadow: 0 0 0 0 rgba(109,92,240,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(109,92,240,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,92,240,0); }
}
.briefM__aiNoteTxt { flex: 1; line-height: 1.45; }
.briefM__aiNoteTxt strong { font-weight: 700; color: var(--bm-accent); }
.briefM__aiNoteClear {
  font-size: 11.5px;
  color: var(--bm-mute);
  background: none; border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color .25s ease, background .25s ease;
}
.briefM__aiNoteClear:hover { color: var(--bm-ink); background: rgba(10,15,30,.04); }
.briefM__aiNote.is-hidden { display: none; }

/* pulse halo on freshly AI-picked chips */
.briefChip.is-ai {
  position: relative;
  animation: bmAiChipPulse 2.6s ease-out 2;
}
@keyframes bmAiChipPulse {
  0%   { box-shadow: 0 0 0 0 rgba(109,92,240,.0), 0 6px 18px -8px rgba(109,92,240,.5); }
  35%  { box-shadow: 0 0 0 6px rgba(109,92,240,.18), 0 10px 22px -8px rgba(109,92,240,.55); }
  100% { box-shadow: 0 0 0 0 rgba(109,92,240,0), 0 0 0 0 rgba(109,92,240,0); }
}

.briefM__fld--check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;

  user-select: none;
  font-size: 13px;
  color: var(--bm-mute);
}
.briefM__fld--check input { accent-color: var(--bm-accent); width: 16px; height: 16px; }

.briefM__fld--url {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height .45s ease, opacity .3s ease, margin .3s ease;
}
.briefM__fld--url.is-show {
  max-height: 90px;
  opacity: 1;
  margin-bottom: 16px;
}

/* ------- Drafting screen ------- */
.briefM__screen--draft { display: flex; align-items: center; justify-content: center; }
.briefM__draft {
  text-align: center;
  padding: 40px 20px;
}
.briefM__draftOrb {
  position: relative;
  width: 150px; height: 150px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.6), transparent 60%), var(--bm-grad);
  box-shadow: 0 30px 80px -24px rgba(168,85,247,.6);
  animation: bmOrb 3s ease-in-out infinite;
}
.briefM__draftOrb span {
  position: absolute; inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  animation: bmOrbRing 2.4s ease-in-out infinite;
}
.briefM__draftOrb span:nth-child(2) { inset: 20px; animation-delay: .4s; }
.briefM__draftOrb span:nth-child(3) { inset: 32px; animation-delay: .8s; }
@keyframes bmOrb {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.08) rotate(180deg); }
}
@keyframes bmOrbRing {
  0%, 100% { opacity: 0; transform: scale(.9); }
  50%      { opacity: 1; transform: scale(1.08); }
}
.briefM__draftH {
  font-size: 22px;
  font-weight: 500;
  color: var(--bm-ink);
  margin: 0 0 8px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.briefM__dots { display: inline-flex; gap: 3px; }
.briefM__dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bm-grad);
  display: inline-block;
  animation: bmBlip 1.2s ease-in-out infinite;
}
.briefM__dots i:nth-child(2) { animation-delay: .15s; }
.briefM__dots i:nth-child(3) { animation-delay: .3s; }
@keyframes bmBlip {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(-3px); opacity: 1; }
}
.briefM__draftP {
  font-size: 14px;
  color: var(--bm-mute);
  margin: 0;
  max-width: 40ch;
  margin-left: auto; margin-right: auto;
  transition: opacity .4s ease;
}

/* ------- Review screen ------- */
.briefM__screen--review { padding-right: 0; }
.briefM__summary {
  background: var(--bm-surf);
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid var(--bm-line);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bm-ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(10,15,30,.2);
}
.briefM__summary::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--bm-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .5;
  pointer-events: none;
}
.briefSum__row { display: flex; flex-direction: column; gap: 4px; }
.briefSum__lbl {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bm-mute);
}
.briefSum__val { font-weight: 500; }
.briefSum__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.briefSum__tag {
  padding: 5px 12px;
  background: var(--bm-surf);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--bm-ink);
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(.85);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2,.85,.2,1.35);
}
.briefSum__tag::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--bm-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .8;
}
.briefM__screen--review.is-active .briefSum__tag {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.briefM__screen--review.is-active .briefSum__tag:nth-child(1) { transition-delay: .25s; }
.briefM__screen--review.is-active .briefSum__tag:nth-child(2) { transition-delay: .35s; }
.briefM__screen--review.is-active .briefSum__tag:nth-child(3) { transition-delay: .45s; }
.briefM__screen--review.is-active .briefSum__tag:nth-child(4) { transition-delay: .55s; }

.briefM__sparkBurst {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 10px; height: 10px;
  pointer-events: none;
  z-index: 2;
}
.briefM__sparkBurst span {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bm-grad);
  top: 0; left: 0;
  opacity: 0;
  filter: blur(.4px);
}
.briefM__screen--review.is-active .briefM__sparkBurst span {
  animation: bmBurst 1.2s cubic-bezier(.2,.85,.2,1) forwards;
}
.briefM__sparkBurst span:nth-child(1) { --tx: -140px; --ty:  -60px; animation-delay: .0s; }
.briefM__sparkBurst span:nth-child(2) { --tx:  150px; --ty:  -40px; animation-delay: .06s; }
.briefM__sparkBurst span:nth-child(3) { --tx: -210px; --ty:   40px; animation-delay: .12s; }
.briefM__sparkBurst span:nth-child(4) { --tx:  230px; --ty:   30px; animation-delay: .18s; }
.briefM__sparkBurst span:nth-child(5) { --tx:  -60px; --ty: -150px; animation-delay: .24s; }
.briefM__sparkBurst span:nth-child(6) { --tx:   80px; --ty: -140px; animation-delay: .30s; }
.briefM__sparkBurst span:nth-child(7) { --tx: -180px; --ty: -100px; animation-delay: .10s; }
.briefM__sparkBurst span:nth-child(8) { --tx:  190px; --ty: -110px; animation-delay: .22s; }
@keyframes bmBurst {
  0%   { transform: translate3d(0,0,0) scale(.2); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate3d(var(--tx), var(--ty), 0) scale(1); opacity: 0; }
}

/* ------- Done screen ------- */
.briefM__screen--done { display: flex; align-items: center; justify-content: center; }
.briefM__done {
  text-align: center;
  padding: 40px 20px;
  max-width: 420px;
  margin: 0 auto;
}
.briefM__doneRing {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--bm-grad);
  color: #fff;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  box-shadow: 0 22px 50px -18px rgba(168,85,247,.6);
  animation: bmDonePop .65s cubic-bezier(.2,.85,.2,1.35) both;
}
.briefM__doneRing svg { width: 42px; height: 42px; }
.briefM__doneRing svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: bmCheck .6s .35s ease forwards;
}
@keyframes bmDonePop {
  from { transform: scale(.3); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
@keyframes bmCheck {
  to { stroke-dashoffset: 0; }
}
.briefM__doneBtn {
  margin-top: 22px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--bm-ink);
  color: #fff;
  border: none;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.briefM__doneBtn::before {
  content: '';
  position: absolute; inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: var(--bm-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .85;
}
.briefM__doneBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(10,15,30,.5);
}

/* ------- Footer ------- */
.briefM__foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--bm-line);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}
.briefM__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s ease, background .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.briefM__nav svg { width: 14px; height: 14px; }
.briefM__nav--back {
  background: transparent;
  color: var(--bm-mute);
}
.briefM__nav--back:hover { color: var(--bm-ink); }
.briefM__nav--back[disabled] { opacity: 0; pointer-events: none; }
.briefM__nav--next {
  background: var(--bm-ink);
  color: #fff;
  position: relative;
  padding-right: 22px;
}
.briefM__nav--next::before {
  content: '';
  position: absolute; inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: var(--bm-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .85;
}
.briefM__nav--next:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(10,15,30,.5);
}
.briefM__nav--next[disabled] {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}
.briefM__nav--next[disabled]:hover {
  transform: none;
  box-shadow: 0 12px 32px -14px rgba(10,15,30,.45);
}

/* Missing-field pulse: triggered when user clicks disabled submit */
.briefM__fld.is-flash,
.briefM__opts.is-flash {
  animation: bmFlashMissing 0.75s ease;
  position: relative;
}
.briefM__fld.is-flash::after,
.briefM__opts.is-flash::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  border: 1.5px solid rgba(236, 72, 153, 0);
  pointer-events: none;
  animation: bmFlashMissingRing 0.75s ease;
}
@keyframes bmFlashMissing {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
@keyframes bmFlashMissingRing {
  0%   { border-color: rgba(236, 72, 153, 0); box-shadow: 0 0 0 0 rgba(236,72,153,.4); }
  40%  { border-color: rgba(236, 72, 153, .8); box-shadow: 0 0 0 4px rgba(236,72,153,.14); }
  100% { border-color: rgba(236, 72, 153, 0); box-shadow: 0 0 0 0 rgba(236,72,153,0); }
}
.briefM__count {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bm-mute);
}
.briefM__count b {
  background-image: var(--bm-grad);
  background-size: 220% 220%;
  animation: bmGradShift 6s ease-in-out infinite;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: 13px;
}

/* Step 1 is single-select, cards auto-advance, so hide Next */
.briefM[data-step="1"] .briefM__nav--next { opacity: 0; pointer-events: none; transform: translateX(14px); }
.briefM[data-step="1"] .briefM__foot { justify-content: center; }
.briefM[data-step="1"] .briefM__nav--back { display: none; }

/* Review + done: hide the step counter */
.briefM[data-step="review"] .briefM__count,
.briefM[data-step="done"] .briefM__count { opacity: 0; }
.briefM[data-step="done"] .briefM__nav { display: none; }
.briefM[data-step="done"] .briefM__foot { justify-content: center; }

/* Lock scroll when modal open */
body.briefM-open { overflow: hidden; }

/* Responsive */
@media (max-width: 780px) {
  .briefM__card { grid-template-columns: 1fr; }
  .briefM__side { display: none; }
  .briefM__main { padding-top: 40px; }
  .briefM__screen { inset: 40px 20px 84px; }
  .briefM__opts--cards { grid-template-columns: 1fr; }
}

/* ===============================================================
   CHAT FAB · floating icon button (bottom-right, fixed)
   Placeholder for the future chatbot — no logic wired yet.
   =============================================================== */
.chatFab {
  position: fixed;
  right: clamp(16px, 2.2vw, 28px);
  bottom: clamp(16px, 2.2vw, 28px);
  width: 50px; height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  z-index: 90;
  display: inline-flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 18px 28px rgba(5, 10, 26, .45))
          drop-shadow(0 6px 14px rgba(34, 211, 238, .22));
  transition: transform .35s var(--ease-out, cubic-bezier(.2,.8,.2,1)),
              filter .35s var(--ease-out, cubic-bezier(.2,.8,.2,1));
  animation: chatFabFloat 4.8s ease-in-out infinite;
}
.chatFab:hover {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 22px 34px rgba(5, 10, 26, .5))
          drop-shadow(0 10px 22px rgba(34, 211, 238, .35))
          drop-shadow(0 6px 14px rgba(217, 70, 239, .28));
}
.chatFab:active { transform: translateY(-1px) scale(.98); }
.chatFab:focus-visible {
  outline: 2px solid rgba(165, 233, 255, .8);
  outline-offset: 4px;
}
.chatFab__ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(34,211,238,.0) 0deg,
    rgba(34,211,238,.55) 80deg,
    rgba(217,70,239,.55) 170deg,
    rgba(168,85,247,.45) 260deg,
    rgba(34,211,238,.0) 360deg);
  filter: blur(6px);
  opacity: .85;
  animation: chatFabSpin 7s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.chatFab__inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(34,211,238,.18) 0%, transparent 55%),
    radial-gradient(120% 120% at 80% 90%, rgba(217,70,239,.18) 0%, transparent 55%),
    linear-gradient(160deg, #0b1422 0%, #070b16 60%, #03050c 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 1px 0 rgba(255,255,255,.14) inset,
    0 0 0 1px rgba(165,233,255,.14);
  overflow: hidden;
  z-index: 1;
}
.chatFab__inner::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255,255,255,.18), transparent 70%);
  pointer-events: none;
}
.chatFab img {
  position: relative;
  width: 52%; height: 52%;
  object-fit: contain;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.45));
  animation: chatFabBreathe 3.4s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes chatFabBreathe {
  0%, 100% { transform: scale(1); opacity: .92; }
  50%      { transform: scale(1.08); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .chatFab img { animation: none; }
}

/* Pulse dot removed — was reading as a stray dark blob behind the icon */

@keyframes chatFabFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@keyframes chatFabSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .chatFab, .chatFab__ring { animation: none; }
}

/* ---------------------------------------------------------------
   Dutch-only title typography
   `text-wrap: balance` spreads words across lines so no single-word
   widow is left alone at the bottom. English is left untouched.
   --------------------------------------------------------------- */
html[lang="nl"] .hero__title,
html[lang="nl"] .pureSys__title,
html[lang="nl"] .shift__title,
html[lang="nl"] .shift__title .sline,
html[lang="nl"] .aiBrief__title,
html[lang="nl"] .engine__title,
html[lang="nl"] .process__title,
html[lang="nl"] .step__title,
html[lang="nl"] .connCap__title,
html[lang="nl"] .pCard__title,
html[lang="nl"] .pureSys__copy,
html[lang="nl"] .engine__lede,
html[lang="nl"] .process__lede,
html[lang="nl"] .aiBrief__lede {
  text-wrap: balance;
}

/* Drop the hard <br> in .pureSys__title for Dutch so the line flows
   freely and `text-wrap: balance` can do its job without being pinned
   to a bad split point. */
html[lang="nl"] .pureSys__title br { display: none; }

@media (max-width: 520px) {
  .chatFab { width: 44px; height: 44px; }
}


/* ==================================================================
   § 5 · TEAM / BIO
   Light palette matching aiBrief & engine. Two-card grid with
   gradient-ring avatars, verified badge, quote + copy + meta + links.
   ================================================================== */

.team {
  --tm-bg: #f5f6fb;
  --tm-ink: #0a0f1a;
  --tm-ink-soft: #3b4256;
  --tm-mute: #565c6b;
  --tm-line: #dfe2ec;
  --tm-card: #ffffff;
  --tm-card-soft: #eef0f7;
  --tm-cy: #22d3ee;
  --tm-purple: #a855f7;
  --tm-hot: #d946ef;
  --tm-grad: linear-gradient(92deg, #22d3ee 0%, #a855f7 50%, #d946ef 100%);
  --tm-shadow: 0 34px 64px -32px rgba(10,15,30,.22), 0 14px 28px -14px rgba(10,15,30,.08);

  position: relative;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 56px) clamp(72px, 9vw, 128px);
  color: var(--tm-ink);
  background:
    radial-gradient(60% 45% at 85% 15%, rgba(34,211,238,.09) 0%, rgba(34,211,238,0) 70%),
    radial-gradient(55% 45% at 10% 85%, rgba(168,85,247,.09) 0%, rgba(168,85,247,0) 70%),
    var(--tm-bg);
  overflow: hidden;
  isolation: isolate;
}

.team__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.team__orb {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  mix-blend-mode: multiply;
}
.team__orb--a {
  top: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(34,211,238,.28), rgba(34,211,238,0) 70%);
}
.team__orb--b {
  bottom: -280px;
  left: -220px;
  background: radial-gradient(circle, rgba(217,70,239,.24), rgba(217,70,239,0) 70%);
}

.team__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.team__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.team__title {
  font-family: var(--font-display, inherit);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--tm-ink);
}
.team__title em {
  font-style: italic;
  font-family: var(--font-serif, Georgia, serif);
  background: var(--tm-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.team__lede {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--tm-mute);
  margin: 0;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .team__grid { grid-template-columns: 1fr; }
}

/* ---- Single bio card ---- */
.bio {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: 26px;
  background: var(--tm-card);
  box-shadow: var(--tm-shadow);
  transition: transform .4s ease, box-shadow .4s ease;
}
.bio::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--tm-line);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  transition: background .4s ease;
}
.bio::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--tm-grad);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 2;
}
.bio:hover {
  transform: translateY(-4px);
  box-shadow: 0 44px 80px -32px rgba(10,15,30,.28), 0 20px 40px -14px rgba(10,15,30,.12);
}
.bio:hover::after { opacity: 1; }

@media (max-width: 560px) {
  .bio {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
    text-align: left;
  }
}

/* ---- Avatar ---- */
.bio__avatar {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  box-shadow: 0 14px 28px -14px rgba(15,18,34,.35);
  flex-shrink: 0;
}
.bio__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(15,18,34,.08);
}
.bio__avatarGlow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,.35), rgba(168,85,247,.25) 55%, transparent 72%);
  filter: blur(18px);
  opacity: .7;
  z-index: -1;
  pointer-events: none;
}
.bio__badge {
  position: absolute;
  right: -2px;
  bottom: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a0f1a;
  color: #22d3ee;
  border: 3px solid var(--tm-card);
  box-shadow: 0 6px 16px -4px rgba(10,15,30,.4);
}
.bio__badge svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 560px) {
  .bio__avatar { width: 120px; height: 120px; }
}

/* ---- Body ---- */
.bio__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.bio__role {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tm-mute);
  margin: 0;
}

.bio__name {
  font-family: var(--font-display, inherit);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--tm-ink);
}
.bio__name em {
  font-style: italic;
  font-family: var(--font-serif, Georgia, serif);
  background: var(--tm-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bio__quote {
  font-family: var(--font-serif, Georgia, serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--tm-ink-soft);
  margin: 6px 0 0;
  padding-left: 14px;
  border-left: 2px solid;
  border-image: var(--tm-grad) 1;
}

.bio__copy {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--tm-mute);
  margin: 0;
}

.bio__meta {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bio__meta li {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .04em;
  padding: 6px 10px;
  background: var(--tm-card-soft);
  border: 1px solid var(--tm-line);
  border-radius: 999px;
  color: var(--tm-ink-soft);
}

.bio__links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.bio__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tm-card-soft);
  border: 1px solid var(--tm-line);
  color: var(--tm-ink-soft);
  transition: all .25s ease;
}
.bio__link svg {
  width: 16px;
  height: 16px;
}
.bio__link:hover {
  background: var(--tm-ink);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}


/* ==================================================================
   § 6 · CONTACT
   Two-column: copy/list on the left, form card on the right.
   Same light palette as team.
   ================================================================== */

.contact {
  --ct-bg: #0b0d1c;
  --ct-ink: #f3f4fb;
  --ct-ink-soft: #b6bbcc;
  --ct-mute: #8a8fa3;
  --ct-line: rgba(255,255,255,.08);
  --ct-line-strong: rgba(255,255,255,.14);
  --ct-card: rgba(255,255,255,.04);
  --ct-card-soft: rgba(255,255,255,.05);
  --ct-grad: linear-gradient(92deg, #22d3ee 0%, #a855f7 50%, #d946ef 100%);
  --ct-shadow: 0 40px 80px -36px rgba(0,0,0,.55), 0 16px 32px -18px rgba(0,0,0,.35);

  position: relative;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 56px);
  color: var(--ct-ink);
  background:
    radial-gradient(60% 45% at 15% 15%, rgba(34,211,238,.10) 0%, rgba(34,211,238,0) 70%),
    radial-gradient(55% 45% at 90% 85%, rgba(168,85,247,.10) 0%, rgba(168,85,247,0) 70%),
    linear-gradient(180deg, #0e1022 0%, #12142c 50%, #0a0c1c 100%);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,.05);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 50% 0%, rgba(217,70,239,.08), transparent 70%),
    radial-gradient(35% 30% at 0% 100%, rgba(34,211,238,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 55% at 50% 50%, #000 0%, transparent 85%);
  -webkit-mask-image: radial-gradient(70% 55% at 50% 50%, #000 0%, transparent 85%);
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

@media (max-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---- Left side copy ---- */
.contact__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__kicker {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ct-mute);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid var(--ct-line);
  border-radius: 999px;
  background: var(--ct-card);
}
.contact__kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ct-grad);
}

.contact__title {
  font-family: var(--font-display, inherit);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
.contact__title em {
  font-style: italic;
  font-family: var(--font-serif, Georgia, serif);
  background: var(--ct-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Italic serif descenders (f, g, y, p, j) get clipped by the
     gradient-fill box when line-height is tight. Extend the paint box
     with padding and compensate visually with negative margin. */
  display: inline-block;
  padding: .04em .06em .24em .04em;
  margin: -.04em -.06em -.2em -.04em;
  line-height: 1.2;
}

.contact__lede {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--ct-mute);
  margin: 0;
}

.contact__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__itemIco {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ct-card);
  border: 1px solid var(--ct-line-strong);
  color: var(--ct-ink);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 8px 18px -10px rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact__itemIco svg {
  width: 18px;
  height: 18px;
}
.contact__itemLbl {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ct-mute);
  margin: 0 0 2px;
}
.contact__itemVal {
  font-size: 16px;
  color: var(--ct-ink);
  text-decoration: none;
  font-weight: 500;
}
a.contact__itemVal:hover {
  background: var(--ct-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- Right side form ---- */
.contact__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid var(--ct-line-strong);
  box-shadow: var(--ct-shadow), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 560px) {
  .contact__form { padding: 22px; }
}

.contact__formHead {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ct-ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--ct-line-strong);
  margin-bottom: 4px;
}
.contact__formDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34,211,238,.18);
  animation: contactDotPulse 2.2s ease-in-out infinite;
}
@keyframes contactDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,211,238,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(34,211,238,.05); }
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) {
  .contact__row { grid-template-columns: 1fr; }
}

.contact__fld {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__fldLbl {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ct-mute);
}
.contact__fldOpt {
  font-style: normal;
  text-transform: none;
  letter-spacing: .04em;
  color: #9aa0ae;
  margin-left: 4px;
}
.contact__fld input,
.contact__fld textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ct-ink);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ct-line-strong);
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  font-family: inherit;
}
.contact__fld textarea {
  resize: vertical;
  min-height: 110px;
}
/* ---- Custom dropdown (ctSel) ---- */
.ctSel {
  position: relative;
  width: 100%;
}
.ctSel__btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ct-ink);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ct-line-strong);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.ctSel__btn:hover {
  background: rgba(255,255,255,.05);
}
.ctSel__btn:focus-visible,
.ctSel.is-open .ctSel__btn {
  outline: none;
  background: rgba(255,255,255,.06);
  border-color: rgba(34,211,238,.55);
  box-shadow: 0 0 0 3px rgba(34,211,238,.18);
}
.ctSel__chev {
  width: 16px;
  height: 16px;
  color: var(--ct-ink-soft);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.ctSel.is-open .ctSel__chev {
  transform: rotate(180deg);
  color: var(--ct-ink);
}
.ctSel__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #12152a;
  border: 1px solid var(--ct-line-strong);
  border-radius: 12px;
  box-shadow:
    0 24px 48px -20px rgba(0,0,0,.7),
    0 12px 28px -14px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 20;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  max-height: 260px;
  overflow-y: auto;
}
.ctSel.is-open .ctSel__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ctSel__opt {
  padding: 10px 12px;
  font-size: 15px;
  color: var(--ct-ink-soft);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .15s ease, color .15s ease;
}
.ctSel__opt::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
  transition: background .15s ease, box-shadow .15s ease;
}
.ctSel__opt:hover,
.ctSel__opt.is-focus {
  background: rgba(255,255,255,.05);
  color: var(--ct-ink);
}
.ctSel__opt.is-on {
  color: var(--ct-ink);
}
.ctSel__opt.is-on::before {
  background: var(--ct-grad);
  box-shadow: 0 0 10px rgba(168,85,247,.5);
}
.ctSel__menu::-webkit-scrollbar { width: 8px; }
.ctSel__menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.12);
  border-radius: 8px;
}
.contact__fld input::placeholder,
.contact__fld textarea::placeholder { color: #70748a; }
.contact__fld input:focus,
.contact__fld textarea:focus {
  outline: none;
  background: rgba(255,255,255,.06);
  border-color: rgba(34,211,238,.55);
  box-shadow: 0 0 0 3px rgba(34,211,238,.18);
}

@property --ctSendAngle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.contact__send {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  margin-top: 4px;
  overflow: hidden;
  isolation: isolate;
  -webkit-backdrop-filter: blur(14px) saturate(160%);
          backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.12) inset,
    0 14px 28px -14px rgba(34, 211, 238, .35),
    0 4px 14px rgba(217, 70, 239, .22);
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease;
}
/* rotating conic-gradient stroke */
.contact__send::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--ctSendAngle),
    #22d3ee 0%, #a855f7 25%, #d946ef 50%, #a5e9ff 75%, #22d3ee 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: ctSendSpin 4s linear infinite;
  pointer-events: none;
}
@keyframes ctSendSpin {
  to { --ctSendAngle: 360deg; }
}
.contact__send > * { position: relative; z-index: 1; }
.contact__send svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}
.contact__send:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,.2) inset,
    0 18px 36px -14px rgba(168,85,247,.55),
    0 6px 18px rgba(34,211,238,.3);
}
.contact__send:hover::before { animation-duration: 1.8s; }
.contact__send:hover svg { transform: translateX(3px); }

.contact__note {
  font-size: 12.5px;
  color: var(--ct-mute);
  margin: 6px 0 0;
  text-align: center;
}


/* ==================================================================
   § 7 · SITE FOOTER
   Dark + gradient. Oversized BINDZ wordmark + 4-col links + bar.
   ================================================================== */

.siteFoot {
  --sf-bg: #070b16;
  --sf-ink: #ffffff;
  --sf-ink-soft: #c8cbd6;
  --sf-mute: #8a8f9e;
  --sf-line: rgba(255,255,255,.09);
  --sf-line-strong: rgba(255,255,255,.18);
  --sf-cy: #22d3ee;
  --sf-purple: #a855f7;
  --sf-hot: #d946ef;
  --sf-grad: linear-gradient(92deg, #22d3ee 0%, #a855f7 50%, #d946ef 100%);

  position: relative;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 56px) 28px;
  color: var(--sf-ink);
  background:
    radial-gradient(70% 55% at 85% 20%, rgba(34,211,238,.18) 0%, rgba(34,211,238,0) 70%),
    radial-gradient(70% 55% at 10% 90%, rgba(217,70,239,.18) 0%, rgba(217,70,239,0) 70%),
    linear-gradient(180deg, #05080f 0%, var(--sf-bg) 60%, #03050b 100%);
  overflow: hidden;
  isolation: isolate;
}

/* ---- Background layers ---- */
.siteFoot__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.siteFoot__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: .55;
  mix-blend-mode: screen;
}
.siteFoot__orb--a {
  width: 720px; height: 720px;
  top: -260px; right: -180px;
  background: radial-gradient(circle, rgba(34,211,238,.35), rgba(34,211,238,0) 70%);
}
.siteFoot__orb--b {
  width: 640px; height: 640px;
  bottom: -220px; left: -160px;
  background: radial-gradient(circle, rgba(217,70,239,.28), rgba(217,70,239,0) 70%);
}
.siteFoot__orb--c {
  width: 520px; height: 520px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(168,85,247,.22), rgba(168,85,247,0) 70%);
}
.siteFoot__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000 0%, transparent 75%);
}

.siteFoot__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---- Hero statement ---- */
.siteFoot__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--sf-line);
}

.siteFoot__logo {
  display: block;
  width: clamp(320px, 52vw, 680px);
  height: auto;
  margin: 0 auto;
  filter:
    blur(18px)
    drop-shadow(0 0 40px rgba(34,211,238,.28))
    drop-shadow(0 0 80px rgba(217,70,239,.22));
  opacity: 0;
  transform: translateY(14px) scale(.96);
  transition:
    filter 1.4s cubic-bezier(.22, .9, .35, 1),
    opacity 1.2s cubic-bezier(.22, .9, .35, 1),
    transform 1.4s cubic-bezier(.22, .9, .35, 1);
  will-change: filter, opacity, transform;
  -webkit-user-select: none;

  user-select: none;
  pointer-events: none;
}
.siteFoot__logo.is-in {
  filter:
    blur(0)
    drop-shadow(0 0 40px rgba(34,211,238,.28))
    drop-shadow(0 0 80px rgba(217,70,239,.22));
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .siteFoot__logo {
    filter:
      drop-shadow(0 0 40px rgba(34,211,238,.28))
      drop-shadow(0 0 80px rgba(217,70,239,.22));
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.siteFoot__tag {
  font-family: var(--font-display, inherit);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--sf-ink-soft);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.siteFoot__tag em {
  font-style: italic;
  font-family: var(--font-serif, Georgia, serif);
  background: var(--sf-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- 12-column grid ---- */
.siteFoot__cols {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(40px, 5vw, 72px);
  padding: clamp(44px, 5.5vw, 72px) 0;
  border-bottom: 1px solid var(--sf-line);
}
.siteFoot__col { grid-column: span 3; }

@media (max-width: 900px) {
  .siteFoot__cols { gap: 36px 28px; }
  .siteFoot__col { grid-column: span 6; }
}

/* Mobile: 12-col grid with hierarchy, not a flat left-aligned stack */
@media (max-width: 520px) {
  .siteFoot__cols {
    gap: 28px 18px;
    padding: 40px 0 36px;
  }
  .siteFoot__col:nth-child(1) { grid-column: 1 / 7; }
  .siteFoot__col:nth-child(2) { grid-column: 7 / 13; text-align: right; align-items: flex-end; }
  .siteFoot__col:nth-child(3) {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    padding-top: 20px;
    margin-top: 4px;
    border-top: 1px solid var(--sf-line);
  }
  .siteFoot__col--cta {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid var(--sf-line);
  }
  .siteFoot__col:nth-child(2) ul { align-items: flex-end; }
  .siteFoot__col:nth-child(2) a { display: inline-block; }
  .siteFoot__col:nth-child(3) ul { align-items: center; }
  .siteFoot__col--cta .siteFoot__cta { margin: 0 auto; }
  .siteFoot__col--cta .siteFoot__ctaCopy { max-width: 28ch; margin: 0 auto; }
  .siteFoot__col ul { gap: 12px; }
  .siteFoot__col a { font-size: 14px; }
  .siteFoot__colTtl { font-size: 10.5px; }
}
@media (max-width: 360px) {
  .siteFoot__col a { font-size: 13.5px; }
}

.siteFoot__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.siteFoot__colTtl {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sf-mute);
  margin: 0 0 4px;
}
.siteFoot__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.siteFoot__col a {
  color: var(--sf-ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.siteFoot__col a:hover {
  color: #fff;
  transform: translateX(3px);
}

/* ---- CTA column ---- */
.siteFoot__col--cta {
  gap: 16px;
}
.siteFoot__ctaCopy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--sf-ink-soft);
  margin: 0;
}
@property --sfCtaAngle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
a.siteFoot__cta,
.siteFoot__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 12px;
  padding: 14px 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  width: fit-content;
  isolation: isolate;
  -webkit-backdrop-filter: blur(14px) saturate(160%);
          backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.14) inset,
    0 14px 28px -14px rgba(34,211,238,.35),
    0 4px 14px rgba(217,70,239,.22);
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease;
}
/* rotating conic-gradient stroke (same pattern as nav__cta) */
.siteFoot__cta::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--sfCtaAngle),
    #22d3ee 0%, #a855f7 25%, #d946ef 50%, #a5e9ff 75%, #22d3ee 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: sfCtaSpin 4s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes sfCtaSpin {
  to { --sfCtaAngle: 360deg; }
}
.siteFoot__cta > * { position: relative; z-index: 1; }
.siteFoot__cta svg {
  width: 18px; height: 18px;
  transition: transform .25s ease;
}
.siteFoot__cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,.22) inset,
    0 18px 36px -14px rgba(168,85,247,.55),
    0 6px 18px rgba(34,211,238,.3);
}
.siteFoot__cta:hover::before { animation-duration: 1.8s; }
.siteFoot__cta:hover svg { transform: translateX(3px); }

/* ---- Bottom bar ---- */
.siteFoot__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(36px, 4vw, 56px);
  flex-wrap: wrap;
  gap: 14px;
}
.siteFoot__copy {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--sf-mute);
  margin: 0;
}
.siteFoot__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.siteFoot__legal a {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--sf-mute);
  text-decoration: none;
  transition: color .2s ease;
}
.siteFoot__legal a:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .contact__formDot { animation: none; }
}

/* ===============================================================
   Market intel card · Option A — Pulse chart (replaces kinetic type)
   =============================================================== */

.pCard__media--intel {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(10,10,20,.05);
}

.intel {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  font-family: var(--font-sans);
  color: #0a0a14;
  gap: 12px;
}
.intel__topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6a6a78;
}
.intel__tag { display: inline-flex; align-items: center; gap: 7px; min-width: 0; }
.intel__metric { color: #3a3a4a; white-space: nowrap; }
.intel__range {
  color: #8a8a98;
  white-space: nowrap;
  padding: 3px 7px;
  border: 1px dashed rgba(10,10,20,.14);
  border-radius: 999px;
  flex: 0 0 auto;
}

.intel--pulse .intel__chart {
  position: relative;
  flex: 1;
  min-height: 140px;
  border-radius: 10px;
}
.intel--pulse .intel__svg {
  position: absolute; inset: 0 40px 0 0;
  width: calc(100% - 40px); height: 100%;
  overflow: visible;
}
.intel--pulse .intel__yaxis {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: #a0a0ac;
  padding: 2px 0 2px 4px;
  border-left: 1px dashed rgba(10,10,20,.08);
  text-align: left;
}
.intel--pulse .intel__yaxis span { line-height: 1; }
.intel--pulse .intel__pins {
  position: absolute; inset: 0 40px 0 0;
  pointer-events: none;
}
.intel--pulse .intel__pulse {
  animation: intelCursorPulse 1.6s var(--ease-out) infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes intelCursorPulse {
  0%   { r: 5;  opacity: .9; stroke-width: 1.5; }
  100% { r: 18; opacity: 0;  stroke-width: .5; }
}

.intel .pin {
  position: absolute;
  transform: translate(-50%, -100%);
  padding: 6px 9px 7px;
  border-radius: 8px;
  background: #0a0a14;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(10,10,20,.6);
  opacity: 0;
  animation: intelPinIn .5s var(--ease-out) forwards;
}
.intel .pin::after {
  content: "";
  position: absolute;
  left: 50%; top: 100%;
  width: 1px; height: 14px;
  background: linear-gradient(180deg, #0a0a14, rgba(10,10,20,0));
  transform: translateX(-50%);
}
.intel .pin__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  background: #d946ef;
  box-shadow: 0 0 0 2px rgba(217,70,239,.3);
}
.intel .pin__co { color: #d946ef; font-weight: 600; }
.intel .pin--out { animation: intelPinOut .4s var(--ease-out) forwards; }
@keyframes intelPinIn {
  0%   { opacity: 0; transform: translate(-50%, -80%) scale(.92); filter: blur(3px); }
  100% { opacity: 1; transform: translate(-50%, -100%) scale(1); filter: blur(0); }
}
@keyframes intelPinOut {
  0%   { opacity: 1; transform: translate(-50%, -100%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -115%) scale(.95); }
}

.intel--pulse .intel__foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(10,10,20,.08);
}
.intel__foot-cell { display: flex; flex-direction: column; gap: 2px; }
.intel__foot-k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  color: #6a6a78;
}
.intel__foot-v {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.intel__foot-v--up   { color: #10b981; }
.intel__foot-v--dn   { color: #ef4444; }
.intel__foot-v--flat { color: #6a6a78; }

@media (prefers-reduced-motion: reduce) {
  .intel--pulse .intel__pulse, .intel .pin { animation: none !important; }
  .intel .pin { opacity: 1; }
}

@media (max-width: 720px) {
  .intel { padding: 14px 14px; gap: 10px; }
  .intel__topbar { font-size: 9.5px; }
  .intel--pulse .intel__chart { min-height: 120px; }
  .intel--pulse .intel__svg { inset: 0 34px 0 0; width: calc(100% - 34px); }
  .intel--pulse .intel__pins { inset: 0 34px 0 0; }
  .intel--pulse .intel__yaxis { width: 30px; font-size: 9px; }
  .intel--pulse .intel__foot { gap: 6px; padding-top: 8px; }
  .intel__foot-k { font-size: 8.5px; letter-spacing: .1em; }
  .intel__foot-v { font-size: 12px; }
  .intel .pin { font-size: 9px; padding: 5px 7px 6px; }
}
@media (max-width: 480px) {
  .intel--pulse .intel__foot { grid-template-columns: repeat(2, 1fr); row-gap: 8px; }
  .intel--pulse .intel__foot-cell:nth-child(n+3) {
    border-top: 1px dashed rgba(10,10,20,.06);
    padding-top: 6px;
  }
}

/* ---------------------------------------------------------------
   Market intel card · narrow-card tuning (pCard--d is ~320-360px)
   Tightens type + clamps pins so nothing overflows the card.
   --------------------------------------------------------------- */
.pCard--d .intel { padding: 14px 14px; gap: 8px; }
.pCard--d .intel__topbar { font-size: 9px; letter-spacing: .06em; gap: 8px; }
.pCard--d .intel__tag { gap: 5px; }
.pCard--d .intel__metric { font-size: 9px; }
.pCard--d .intel__range {
  font-size: 8px;
  padding: 2px 6px;
  letter-spacing: .04em;
}

.pCard--d .intel--pulse .intel__chart { min-height: 120px; }
.pCard--d .intel--pulse .intel__svg   { inset: 0 30px 0 0; width: calc(100% - 30px); }
.pCard--d .intel--pulse .intel__pins  { inset: 0 30px 0 0; }
.pCard--d .intel--pulse .intel__yaxis {
  width: 26px;
  font-size: 8.5px;
  padding: 2px 0 2px 3px;
}

/* pins: smaller, allow wrap, clamp vertical so they don't crash into header */
.pCard--d .intel .pin {
  font-size: 8.5px;
  padding: 4px 6px 5px;
  letter-spacing: 0;
  white-space: normal;
  max-width: 132px;
  text-align: left;
  line-height: 1.2;
}
.pCard--d .intel .pin__dot { width: 5px; height: 5px; margin-right: 4px; }

/* footer: compact 4-col that actually fits */
.pCard--d .intel--pulse .intel__foot {
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding-top: 8px;
}
.pCard--d .intel__foot-k {
  font-size: 7.5px;
  letter-spacing: .06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pCard--d .intel__foot-v { font-size: 11px; }

/* ===============================================================
   SERVICE DETAIL page · light editorial (Saatchi-inspired)
   Scoped under body.svcPage so nothing bleeds into the homepage.
   =============================================================== */
body.svcPage {
  --paper:     #f6f5f2;
  --paper-2:   #ebe8e2;
  --ink-d:     #0a0a14;
  --ink-m:     #3a3f4d;
  --ink-mm:    #6b7280;
  --ink-line:  rgba(10, 10, 20, .10);
  --ink-line-s:rgba(10, 10, 20, .05);
  background: var(--paper);
  color: var(--ink-d);
}
body.svcPage::before{
  content:""; position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(34,211,238,.05), transparent 60%),
    radial-gradient(1000px 600px at -5% 110%, rgba(217,70,239,.04), transparent 65%);
  pointer-events: none;
}
body.svcPage .siteFoot { position: relative; z-index: 2; }

.svcD { position: relative; z-index: 1; }
.svcD__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* ---------- HEAD ---------- */
.svcD__head {
  padding: clamp(80px, 12vh, 140px) 0 clamp(20px, 3vh, 44px);
}
.svcD__bread {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mm);
  margin-bottom: clamp(48px, 9vh, 96px);
}
.svcD__bread a { transition: color .25s var(--ease-out); }
.svcD__bread a:hover { color: var(--ink-d); }
.svcD__bread span[aria-current] { color: var(--ink-d); }
.svcD__bread span[aria-hidden] { opacity: .45; }

.svcD__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mm);
  margin: 0 0 clamp(20px, 3vh, 28px);
}
.svcD__kicker span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  font-size: 10.5px;
  color: var(--ink-d);
  background: rgba(10,10,20,.02);
}

.svcD__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(56px, 11vw, 168px);
  line-height: .92;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(28px, 4vh, 48px);
  color: var(--ink-d);
  text-wrap: balance;
}
.svcD__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(92deg, #22d3ee 0%, #6366f1 25%, #a855f7 50%, #d946ef 75%, #22d3ee 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding: .08em .14em .42em .1em;
  margin: -.08em -.14em -.42em -.1em;
  animation: titleGradShift 9s linear infinite;
}

.svcD__lede {
  max-width: 820px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-m);
  margin: 0 0 clamp(48px, 7vh, 88px);
  font-weight: 400;
}

/* head · lede right-formatted below the title */
.svcD__lede--right {
  max-width: 560px;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

/* head · service tag sits top-left opposite the lede, sharing first-line baseline */
.svcD__heroRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
}
.svcD__heroLabel {
  flex: 0 0 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.2;
  color: var(--ink-d);
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--ink-d);
}
.svcD__heroRow .svcD__lede {
  margin: 0;
}
@media (max-width: 900px) {
  .svcD__heroRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .svcD__lede--right {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .svcD__heroLabel {
    font-size: 15px;
  }
}

/* ---------- MEDIA · contained 16:9 with a few micro-animations ---------- */
.svcD__media {
  max-width: 1320px;
  margin: 0 auto clamp(80px, 12vh, 140px);
  padding: 0 clamp(20px, 4vw, 56px);
  position: relative;
}
.svcD__mediaFrame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow:
    0 40px 80px -40px rgba(10,10,20,.35),
    0 1px 0 rgba(10,10,20,.06);
  isolation: isolate;
}
.svcD__mediaFrame img,
.svcD__mediaFrame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  animation: svcMediaPan 24s var(--ease-io) infinite alternate;
  transition: filter .5s var(--ease-out);
}
.svcD__mediaFrame video { animation: none; transform: none; }
@keyframes svcMediaPan {
  0%   { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.10) translate3d(-1.5%,-1%,0); }
}
.svcD__media:hover .svcD__mediaFrame img { filter: brightness(1.06) saturate(1.06); }

/* ---------- BODY (Saatchi offset two-col) ---------- */
.svcD__body {
  padding: 0 0 clamp(100px, 14vh, 160px);
}
.svcD__bodyInner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
}
.svcD__bodyL { position: sticky; top: 120px; }
.svcD__bodyKick {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mm);
  margin: 0 0 14px;
}
.svcD__bodyNote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  color: var(--ink-d);
  margin: 0;
}
.svcD__bodyR { max-width: 720px; }
.svcD__bodyR p {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.65;
  color: var(--ink-m);
  margin: 0 0 1.2em;
}
.svcD__bodyR p:last-child { margin-bottom: 0; }
.svcD__bodyR .svcD__lead {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--ink-d);
  margin-bottom: 1em;
  font-weight: 500;
}
.svcD__bodyR em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-d);
}

@media (max-width: 900px){
  .svcD__bodyInner { grid-template-columns: 1fr; gap: 28px; }
  .svcD__bodyL { position: static; }
}

/* ---------- section head (reused) ---------- */
.svcD__sectHead {
  max-width: 900px;
  margin: 0 0 clamp(40px, 6vh, 64px);
}
.svcD__sectKick {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mm);
  margin: 0 0 12px;
}
.svcD__sectTitle {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink-d);
  text-wrap: balance;
}
.svcD__sectTitle em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400; letter-spacing: -0.015em;
  background: linear-gradient(92deg, #22d3ee 0%, #a855f7 60%, #d946ef 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- SHIP grid ---------- */
.svcD__ship {
  padding: clamp(80px, 10vh, 120px) 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.svcD__shipGrid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.svcD__shipCard {
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--ink-line);
  padding: clamp(28px, 3vw, 40px);
  min-height: 260px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .3s var(--ease-out);
}
.svcD__shipCard:hover { background: #fbfbf7; }
.svcD__shipN {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em;
  color: var(--ink-mm);
  margin-bottom: auto;
  padding-bottom: 56px;
}
.svcD__shipCard h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-d);
  margin: 0 0 10px;
}
.svcD__shipCard p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-m);
  margin: 0;
}
.svcD__shipIco {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: url(#bindzIconGrad);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 20px;
  transition: transform .7s var(--ease-out);
  transform-origin: 22px 22px;
}
.svcD__shipCard:hover .svcD__shipIco {
  transform: rotate(-6deg) scale(1.06);
}

@media (max-width: 900px){
  .svcD__shipGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .svcD__shipGrid { grid-template-columns: 1fr; }
  .svcD__shipCard { min-height: 180px; }
  .svcD__shipN { padding-bottom: 32px; }
}

/* ---------- STATS ---------- */
.svcD__stats {
  padding: clamp(80px, 10vh, 120px) 0;
  border-top: 1px solid var(--ink-line);
}
.svcD__statsInner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 80px);
}
.svcD__stat { border-top: 1px solid var(--ink-line); padding-top: 24px; }
.svcD__statN {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  color: var(--ink-d);
}
.svcD__statK {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.35;
  color: var(--ink-d);
  margin: 0 0 6px;
  font-weight: 500;
}
.svcD__statS {
  font-size: 13.5px; line-height: 1.5;
  color: var(--ink-mm);
  margin: 0;
}

@media (max-width: 960px){
  .svcD__statsInner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 640px){
  .svcD__statsInner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- PROCESS ---------- */
.svcD__proc {
  padding: clamp(80px, 10vh, 120px) 0;
  border-top: 1px solid var(--ink-line);
}
.svcD__procList {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--ink-line);
}
.svcD__procList li {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  gap: clamp(20px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(24px, 3vh, 36px) 0;
  border-bottom: 1px solid var(--ink-line);
  transition: background .25s var(--ease-out);
}
.svcD__procList li:hover { background: rgba(10,10,20,.02); }
.svcD__procN {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .12em;
  color: var(--ink-mm);
}
.svcD__procList h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-d);
  margin: 0 0 6px;
}
.svcD__procList p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-m);
  margin: 0;
  max-width: 640px;
}
.svcD__procTime {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mm);
  text-align: right;
  justify-self: end;
}

@media (max-width: 780px){
  .svcD__procList li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    row-gap: 8px;
  }
  .svcD__procTime { grid-column: 2; text-align: left; justify-self: start; }
}

/* ---------- RELATED ---------- */
.svcD__rel {
  padding: clamp(80px, 10vh, 120px) 0;
  border-top: 1px solid var(--ink-line);
}
.svcD__relGrid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.svcD__relCard {
  display: flex; flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--ink-line);
  background: var(--paper);
  min-height: 300px;
  position: relative; overflow: hidden;
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.svcD__relCard::before{
  content:""; position: absolute; inset: auto auto 0 0; width: 100%; height: 2px;
  background: linear-gradient(92deg, #22d3ee, #a855f7, #d946ef);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .5s var(--ease-out);
}
.svcD__relCard:hover {
  border-color: rgba(10,10,20,.2);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(10,10,20,.25);
}
.svcD__relCard:hover::before { transform: scaleX(1); }
.svcD__relK {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mm);
  margin-bottom: auto;
  padding-bottom: 48px;
}
.svcD__relT {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-d);
  margin: 0 0 10px;
}
.svcD__relT em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(92deg, #22d3ee, #a855f7 60%, #d946ef);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.svcD__relC {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-m);
  margin: 0 0 22px;
}
.svcD__relGo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-d);
}
.svcD__relGo svg {
  width: 14px; height: 14px;
  transition: transform .3s var(--ease-out);
}
.svcD__relCard:hover .svcD__relGo svg { transform: translateX(4px); }

@media (max-width: 900px){
  .svcD__relGrid { grid-template-columns: 1fr; }
  .svcD__relCard { min-height: 220px; }
  .svcD__relK { padding-bottom: 24px; }
}

/* ---------- CTA ---------- */
.svcD__cta {
  padding: clamp(100px, 14vh, 160px) 0 clamp(120px, 16vh, 180px);
  border-top: 1px solid var(--ink-line);
  text-align: center;
}
.svcD__ctaInner {
  max-width: 900px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.svcD__ctaTitle {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: .98;
  letter-spacing: -0.03em;
  color: var(--ink-d);
  margin: 0 0 20px;
  text-wrap: balance;
}
.svcD__ctaTitle em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(92deg, #22d3ee, #a855f7 60%, #d946ef);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.svcD__ctaCopy {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-m);
  margin: 0 0 36px;
}
.svcD__ctaBtns {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.svcD__ctaBtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .3s var(--ease-out);
  white-space: nowrap;
}
.svcD__ctaBtn svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.svcD__ctaBtn--solid {
  background: var(--ink-d); color: var(--paper);
}
.svcD__ctaBtn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(10,10,20,.5);
}
.svcD__ctaBtn--solid:hover svg { transform: translateX(3px); }
.svcD__ctaBtn--ghost {
  background: transparent; color: var(--ink-d);
  border: 1px solid var(--ink-line);
}
.svcD__ctaBtn--ghost:hover {
  background: rgba(10,10,20,.04);
  border-color: rgba(10,10,20,.2);
}

/* ---------- Reveal-on-scroll system (scoped to svcPage) ---------- */
body.svcPage .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .85s var(--ease-out),
    transform .85s var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
body.svcPage .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  body.svcPage .reveal,
  body.svcPage .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .svcD__mediaFrame img { animation: none; transform: none; }
}

/* Title word split — each word animates in with its own delay */
.svcD__title .sw {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotateX(-12deg);
  transform-origin: 50% 100%;
  transition:
    opacity .75s var(--ease-out),
    transform .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms + 80ms);
}
.svcD__title.is-in .sw {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.svcD__title .sw-space { display: inline-block; width: .28em; }
/* keep the bg-clip gradient on <em> words after the split wraps them */
.svcD__title em .sw {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  background: linear-gradient(92deg, #22d3ee 0%, #6366f1 25%, #a855f7 50%, #d946ef 75%, #22d3ee 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding: .06em .12em .42em .08em;
  margin: -.06em -.12em -.42em -.08em;
  overflow: visible;
  animation: titleGradShift 9s linear infinite;
}

/* Small hover on breadcrumb — a tiny underline wipe */
.svcD__bread a {
  position: relative;
}
.svcD__bread a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .35s var(--ease-out);
}
.svcD__bread a:hover::after { transform: scaleX(1); }

/* Kicker number: subtle idle pulse — one beat every few seconds */
.svcD__kicker span { position: relative; overflow: hidden; }
.svcD__kicker span::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(34,211,238,.4);
  animation: svcKickerPing 4.5s var(--ease-io) infinite;
}
@keyframes svcKickerPing {
  0%, 80%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); }
  85%           { box-shadow: 0 0 0 6px rgba(34,211,238,.14); }
  95%           { box-shadow: 0 0 0 10px rgba(34,211,238,0); }
}

/* Ship card: gradient bar on hover (mirrors related cards) */
.svcD__shipCard { overflow: hidden; }
.svcD__shipCard::before {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: linear-gradient(92deg, #22d3ee, #a855f7, #d946ef);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .5s var(--ease-out);
}
.svcD__shipCard:hover::before { transform: scaleX(1); }
.svcD__shipCard h3 {
  transition: transform .35s var(--ease-out);
}
.svcD__shipCard:hover h3 { transform: translateX(4px); }

/* Process row: animated left accent line on hover */
.svcD__procList li { position: relative; }
.svcD__procList li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 0; height: 1px;
  background: linear-gradient(92deg, #22d3ee, #a855f7);
  transition: width .45s var(--ease-out);
}
.svcD__procList li:hover::before { width: 40px; }
.svcD__procList li:hover .svcD__procN { transform: translateX(48px); transition: transform .45s var(--ease-out); }
.svcD__procList li .svcD__procN { transition: transform .45s var(--ease-out); }

/* CTA buttons: animated shine sweep on solid */
.svcD__ctaBtn--solid { position: relative; overflow: hidden; }
.svcD__ctaBtn--solid::after {
  content: ""; position: absolute; top: 0; left: -30%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  transform: translateX(-50%) skewX(-18deg);
  transition: transform .9s var(--ease-out);
  pointer-events: none;
}
.svcD__ctaBtn--solid:hover::after { transform: translateX(320%) skewX(-18deg); }

/* Related card image-like accent on header */
.svcD__relK { position: relative; display: inline-flex; align-items: center; }
.svcD__relK::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: linear-gradient(135deg, #22d3ee, #d946ef);
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(34,211,238,.45);
  transition: box-shadow .5s var(--ease-out);
}
.svcD__relCard:hover .svcD__relK::before { box-shadow: 0 0 0 4px rgba(34,211,238,.2); }



/* ===============================================================
   BLOG page (landing) + ARTICLE page
   Both share the light editorial palette and inherit svcPage tokens.
   Scoped under .blogPage and .articlePage so they do not bleed.
   =============================================================== */

body.blogPage,
body.articlePage {
  --paper:     #f6f5f2;
  --paper-2:   #ebe8e2;
  --ink-d:     #0a0a14;
  --ink-m:     #3a3f4d;
  --ink-mm:    #6b7280;
  --ink-line:  rgba(10, 10, 20, .10);
  --ink-line-s:rgba(10, 10, 20, .05);
  background: var(--paper);
  color: var(--ink-d);
}

body.blogPage::before,
body.articlePage::before {
  content:""; position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(34,211,238,.06), transparent 60%),
    radial-gradient(1000px 600px at -5% 110%, rgba(217,70,239,.05), transparent 65%);
  pointer-events: none;
}

body.blogPage .siteFoot,
body.articlePage .siteFoot { position: relative; z-index: 2; }

.blog, .art { position: relative; z-index: 1; }

.blog__inner,
.art__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* =========== BLOG · HEAD =========== */
.blog__head {
  padding: clamp(110px, 16vh, 180px) 0 clamp(40px, 6vh, 72px);
  position: relative;
}
.blog__head .blog__inner { max-width: 1080px; }

.blog__kick {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mm);
  margin: 0 0 clamp(24px, 4vh, 32px);
}
.blog__kick span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  font-size: 10.5px; color: var(--ink-d);
}

.blog__ttl {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 112px);
  line-height: .95;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(24px, 4vh, 36px);
  color: var(--ink-d);
  text-wrap: balance;
}
.blog__ttl em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  color: var(--ink-d);
}

.blog__lead {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-m);
  max-width: 680px;
  margin: 0;
}

.blog__headDecor {
  position: absolute; right: clamp(20px, 5vw, 80px); top: clamp(140px, 18vh, 220px);
  display: flex; gap: 14px; opacity: .5;
}
.blog__headDecor .blog__headDot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--ink-d);
  animation: blogDot 3.2s ease-in-out infinite;
}
.blog__headDecor .blog__headDot:nth-child(2) { animation-delay: .4s; }
.blog__headDecor .blog__headDot:nth-child(3) { animation-delay: .8s; }
@keyframes blogDot {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(-6px); opacity: .9; }
}

/* Hero band image */
.blog__heroBand {
  position: relative;
  margin: clamp(32px, 6vw, 64px) clamp(20px, 4vw, 48px) 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21 / 8;
  background: var(--paper-2);
}
.blog__heroBand img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02);
  transition: transform 1.6s var(--ease-out);
}
.blog__heroBand:hover img { transform: scale(1.06); }
.blog__heroBandOverlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,20,0) 40%, rgba(10,10,20,.45) 100%);
  pointer-events: none;
}
.blog__heroBandCap {
  position: absolute; left: 24px; bottom: 22px; right: 24px;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.blog__heroBandTag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
}
.blog__heroBandDate { opacity: .85; }
@media (max-width: 720px) {
  .blog__heroBand { aspect-ratio: 4 / 3; border-radius: 18px; }
  .blog__heroBandCap { left: 16px; right: 16px; bottom: 16px; font-size: 11px; }
}

/* Section header rail */
.blog__sectHead {
  display: flex; align-items: center; gap: 16px;
  margin: 0 0 clamp(24px, 3vh, 40px);
}
.blog__sectKick {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mm);
}
.blog__sectLine {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--ink-line), transparent 85%);
}

/* =========== BLOG · FEATURED POST =========== */
.blog__featuredWrap {
  padding: clamp(12px, 2vh, 24px) 0 clamp(60px, 8vh, 100px);
}

.blogFeat {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  background: var(--paper-2);
  border: 1px solid var(--ink-line);
  border-radius: 24px;
  padding: clamp(18px, 2vw, 28px);
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease-out);
}
.blogFeat:hover {
  transform: translateY(-3px);
  border-color: rgba(168,85,247,.35);
  box-shadow: 0 30px 60px -30px rgba(10,10,20,.25);
}

.blogFeat__media {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d9dbe6, #b8bed0);
}
.blogFeat__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .8s var(--ease-out);
}
.blogFeat:hover .blogFeat__media img { transform: scale(1.06); }

.blogFeat__badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; padding: 6px 10px;
  background: var(--ink-d);
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(10,10,20,.4);
}

.blogFeat__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(8px, 1.5vw, 24px) clamp(4px, 1vw, 16px);
  gap: clamp(14px, 2vh, 20px);
}

.blogTag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--ink-line);
  background: rgba(10,10,20,.03);
  color: var(--ink-d);
}
.blogTag--ai    { border-color: rgba(168,85,247,.35);  background: rgba(168,85,247,.08); }
.blogTag--brand { border-color: rgba(168,85,247,.35);  background: rgba(168,85,247,.08); }
.blogTag--web   { border-color: rgba(99,102,241,.35);  background: rgba(99,102,241,.08); }
.blogTag--craft { border-color: rgba(217,70,239,.35);  background: rgba(217,70,239,.08); }
.blogTag--cases { border-color: rgba(129,140,248,.35); background: rgba(129,140,248,.08); }
.blogTag--play  { border-color: rgba(45,212,191,.40);  background: rgba(45,212,191,.08); }

/* ===========================================================
   BLOG PLACEHOLDER IMAGES
   ===========================================================
   Drop-in replacement for an <img>. Renders a category tinted
   gradient block with a small label describing the real frame
   that belongs there, so the layout is honest about being
   unfinished. Remove these once we have final art. */
.blogPh {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 3vw, 30px);
  color: #fff;
  background: linear-gradient(135deg, #14142a 0%, #232340 50%, #16162c 100%);
  isolation: isolate;
}
.blogPh::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(65% 85% at 12% 8%, rgba(168,85,247,.22), transparent 60%),
    radial-gradient(60% 80% at 92% 92%, rgba(34,211,238,.16), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.blogPh::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35) 100%),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,255,255,.025) 22px 23px);
  pointer-events: none;
  z-index: 0;
}
.blogPh > * { position: relative; z-index: 1; }
.blogPh__kick {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.blogPh__ttl {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.28;
  letter-spacing: -0.008em;
  color: #fff;
}
.blogPh--ai     { background: linear-gradient(135deg, #110620 0%, #2e0f48 50%, #1a0a2c 100%); }
.blogPh--brand  { background: linear-gradient(135deg, #160826 0%, #3e1a4a 50%, #20103a 100%); }
.blogPh--web    { background: linear-gradient(135deg, #060e26 0%, #12265c 50%, #0c1836 100%); }
.blogPh--craft  { background: linear-gradient(135deg, #1e062a 0%, #48104f 50%, #28083a 100%); }
.blogPh--cases  { background: linear-gradient(135deg, #08142c 0%, #123260 50%, #0a1a3c 100%); }

/* Fill the parent when used inside a fixed-ratio wrapper */
.blogCard__media .blogPh {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}
.art__cover .blogPh {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
}
.art__fig .blogPh {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  box-shadow: 0 30px 60px -30px rgba(10,10,20,.25);
}

.blogFeat__ttl {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-d);
  margin: 0;
  text-wrap: balance;
}
.blogFeat__ttl em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  color: var(--ink-d);
}

.blogFeat__exc {
  font-family: var(--font-sans);
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.65;
  color: var(--ink-m);
  margin: 0;
}

.blogFeat__arrow {
  display: inline-flex; align-items: center; justify-content: flex-start;
  margin-top: 6px;
  color: var(--ink-d);
  transition: transform .45s var(--ease-out), color .3s var(--ease-out);
}
.blogFeat__arrow svg { width: clamp(72px, 11vw, 120px); height: auto; }
.blogFeat:hover .blogFeat__arrow { transform: translateX(14px); }

.blogFeat__meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-mm);
}
.blogFeat__dot {
  width: 4px; height: 4px; border-radius: 999px; background: var(--ink-line);
}
.blogFeat__author { color: var(--ink-d); font-weight: 600; }

.blogFeat__cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-d);
  padding: 10px 18px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.blogFeat__cta svg { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.blogFeat:hover .blogFeat__cta {
  background: #0a0a14; color: #fff; border-color: #0a0a14;
}
.blogFeat:hover .blogFeat__cta svg { transform: translateX(4px); }

/* =========== BLOG · FILTER CHIPS =========== */
.blog__filter {
  padding: clamp(8px, 2vh, 24px) 0 clamp(20px, 3vh, 32px);
}

.blog__chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.blogChip {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-mm);
  cursor: pointer;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.blogChip:hover {
  color: var(--ink-d);
  border-color: rgba(10,10,20,.2);
  transform: translateY(-1px);
}
.blogChip.is-active {
  background: #0a0a14;
  color: #fff;
  border-color: #0a0a14;
}

/* =========== BLOG · GRID =========== */
.blog__grid {
  padding: clamp(12px, 2vh, 24px) 0 clamp(60px, 8vh, 100px);
}
.blogCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 36px);
}
.blogCard.is-hidden { display: none; }

.blogCard {
  position: relative;
  border-radius: 20px;
  transition: transform .5s var(--ease-out);
}
.blogCard__a {
  display: flex; flex-direction: column;
  height: 100%;
  color: inherit; text-decoration: none;
}
.blogCard__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #d9dbe6, #b8bed0);
  margin-bottom: 18px;
}
.blogCard__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .8s var(--ease-out);
}
.blogCard__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(10,10,20,.08));
  pointer-events: none;
}
.blogCard:hover .blogCard__media img { transform: scale(1.06); }

.blogCard__body {
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 4px;
}
.blogCard__ttl {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink-d);
  margin: 0;
  text-wrap: balance;
  transition: color .3s var(--ease-out);
}
.blogCard:hover .blogCard__ttl {
  background: linear-gradient(92deg, #6366f1 0%, #a855f7 60%, #d946ef 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.blogCard__exc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-m);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogCard__meta {
  margin-top: 6px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-mm);
}
.blogCard__meta span:first-child { color: var(--ink-d); font-weight: 600; }
.blogCard__dot {
  width: 3px; height: 3px; border-radius: 999px; background: var(--ink-line);
}

.blog__empty {
  padding: clamp(40px, 6vh, 80px) 0;
  text-align: center;
  color: var(--ink-mm);
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: .08em;
}

.blog__more {
  margin-top: clamp(30px, 4vh, 56px);
  display: flex; justify-content: center;
}
.blogMore {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 24px;
  border: 1px dashed var(--ink-line);
  border-radius: 999px;
  color: var(--ink-mm);
  background: transparent;
  cursor: not-allowed;
}
.blogMore svg { width: 16px; height: 16px; opacity: .6; }

/* =========== BLOG · NEWSLETTER =========== */
.blog__news {
  padding: clamp(30px, 5vh, 60px) 0 clamp(80px, 12vh, 140px);
}
.blogNews {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 5vw, 72px);
  border-radius: 28px;
  background: #0a0a14;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.blogNews__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blogNews__orb {
  position: absolute; width: 440px; height: 440px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .45;
}
.blogNews__orb--a { top: -120px; left: -80px;  background: #22d3ee; }
.blogNews__orb--b { bottom: -180px; right: -80px; background: #d946ef; }
.blogNews__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
}
.blogNews__copy, .blogNews__form { position: relative; z-index: 1; }
.blogNews__ttl em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  background: linear-gradient(92deg, #22d3ee, #a855f7, #d946ef);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.blogNews__kick {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin: 0 0 14px;
  position: relative;
}
.blogNews__ttl {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 14px;
  text-wrap: balance;
  position: relative;
}
.blogNews__lead {
  font-family: var(--font-sans);
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 540px;
  position: relative;
}
.blogNews__form {
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.blogNews__label { display: block; }
.blogNews__input {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.blogNews__input::placeholder { color: rgba(255,255,255,.45); }
.blogNews__input:focus { border-color: rgba(168,85,247,.6); background: rgba(255,255,255,.07); }

.blogNews__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(92deg, #22d3ee, #6366f1, #a855f7, #d946ef);
  color: #fff;
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.blogNews__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -15px rgba(168,85,247,.5);
}
.blogNews__btn svg { width: 16px; height: 16px; }

.blogNews__ok {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .08em;
  color: #22d3ee;
}

/* Reveal tuned to blog/article pages */
body.blogPage .reveal,
body.articlePage .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s var(--ease-out) var(--d, 0ms),
              transform .8s var(--ease-out) var(--d, 0ms);
  will-change: opacity, transform;
}
body.blogPage .reveal.is-in,
body.articlePage .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.blogPage .reveal, body.blogPage .reveal.is-in,
  body.articlePage .reveal, body.articlePage .reveal.is-in {
    opacity: 1; transform: none; transition: none;
  }
}

/* ===============================================================
   ARTICLE PAGE · long form
   =============================================================== */

.art__progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #6366f1, #a855f7, #d946ef);
  transform: scaleX(0); transform-origin: left center;
  z-index: 120;
  transition: transform .15s linear;
}

.art__head {
  padding: clamp(110px, 15vh, 170px) 0 clamp(24px, 4vh, 40px);
}
.art__head .art__inner { max-width: 920px; }

.art__date {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-mm);
  margin: 0 0 clamp(18px, 3vh, 28px);
}

.art__ttl {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(38px, 6.5vw, 88px);
  line-height: .98;
  letter-spacing: -0.035em;
  color: var(--ink-d);
  margin: 0 0 clamp(32px, 5vh, 56px);
  text-wrap: balance;
}
.art__ttl em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  color: var(--ink-d);
}

.art__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.art__author {
  display: flex; align-items: center; gap: 14px;
}
.art__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cfd3e3, #e9ebf3);
  color: var(--ink-m);
  border: 1px solid var(--ink-line);
  flex-shrink: 0;
}
.art__avatar svg { width: 26px; height: 26px; }
.art__authorMeta { display: flex; flex-direction: column; gap: 2px; }
.art__authorName {
  margin: 0; font-family: var(--font-sans);
  font-size: 14.5px; color: var(--ink-d); font-weight: 500;
}
.art__authorName span { font-weight: 700; text-decoration: underline; text-decoration-color: var(--ink-line); text-underline-offset: 4px; }
.art__authorRole {
  margin: 0; font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .08em;
  color: var(--ink-mm);
}

.art__share {
  display: flex; align-items: center; gap: 10px;
  padding: 0; margin: 0; list-style: none;
}
.art__share a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--ink-line);
  color: var(--ink-m);
  transition: background .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.art__share a svg { width: 18px; height: 18px; }
.art__share a:hover {
  background: #0a0a14; color: #fff; border-color: #0a0a14;
  transform: translateY(-2px);
}

/* ---------- COVER ---------- */
.art__coverWrap { padding: clamp(12px, 2vh, 24px) 0 clamp(40px, 6vh, 72px); }
.art__cover {
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #d9dbe6, #b8bed0);
  box-shadow: 0 40px 80px -40px rgba(10,10,20,.3);
}
.art__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.art__coverGlow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle at 50% 100%, rgba(168,85,247,.25), transparent 55%);
  pointer-events: none;
}

/* ---------- BODY LAYOUT (sticky TOC + article) ---------- */
.art__bodyWrap { padding: clamp(30px, 5vh, 70px) 0 clamp(40px, 6vh, 80px); }
.art__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(40px, 5vw, 100px);
  align-items: start;
}

/* --- TOC --- */
.art__toc {
  position: sticky; top: 104px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(235,232,226,.6);
  border: 1px solid var(--ink-line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-height: calc(100vh - 128px);
  overflow-y: auto;
}
.art__tocKick {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mm);
  margin: 0 0 14px;
}
.art__tocList {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
  border-left: 1px solid var(--ink-line);
}
.art__tocList li { position: relative; }
.art__tocList a {
  display: block;
  padding: 8px 14px 8px 16px;
  font-family: var(--font-sans);
  font-size: 13.5px; line-height: 1.45;
  color: var(--ink-mm);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.art__tocList a:hover { color: var(--ink-d); }
.art__tocList a.is-active {
  color: var(--ink-d);
  border-left-color: var(--ink-d);
  font-weight: 600;
}

.art__tocCta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-line);
}
.art__tocCta p {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 13px; line-height: 1.5;
  color: var(--ink-m);
}
.art__tocBtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: #0a0a14;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.art__tocBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -12px rgba(10,10,20,.35);
}
.art__tocBtn svg { width: 14px; height: 14px; }

/* --- ARTICLE BODY --- */
.art__body {
  font-family: var(--font-sans);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-d);
  max-width: 720px;
}
.art__body p { margin: 0 0 1.4em; color: var(--ink-m); }
.art__body p strong { color: var(--ink-d); font-weight: 700; }

.art__tldr {
  margin: 0 0 clamp(40px, 5vh, 56px);
  padding: 28px 32px;
  border-radius: 18px;
  background: #0a0a14;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.art__tldr::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(480px 200px at 0% 0%, rgba(168,85,247,.14), transparent 70%),
    radial-gradient(480px 200px at 100% 100%, rgba(217,70,239,.12), transparent 70%);
  pointer-events: none;
}
.art__tldr .art__tldrLabel {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: .24em; text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 14px;
  font-weight: 600;
  opacity: .95;
}
.art__tldr p:last-child {
  position: relative;
  margin: 0;
  font-size: 17px; line-height: 1.75;
  color: #ffffff;
}

.art__sect {
  padding-top: clamp(12px, 2vh, 20px);
  scroll-margin-top: 100px;
}

.art__sectKick {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-mm);
  margin: 0 0 14px;
  padding: 5px 12px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  background: rgba(10,10,20,.02);
}

.art__lead {
  font-size: 21px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink-d);
  letter-spacing: -0.01em;
  margin: 0 0 1.4em;
}

.art__body h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink-d);
  margin: 0 0 .8em;
  text-wrap: balance;
}
.art__body h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink-d);
  margin: 2em 0 .7em;
  letter-spacing: -0.012em;
}

.art__list,
.art__listNum {
  margin: 0 0 1.5em;
  padding: 0 0 0 1.2em;
  color: var(--ink-m);
}
.art__list li,
.art__listNum li { margin-bottom: .6em; line-height: 1.65; }

.art__list { list-style: none; padding-left: 0; }
.art__list li {
  position: relative;
  padding-left: 28px;
}
.art__list li::before {
  content: ""; position: absolute;
  left: 4px; top: .7em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, #22d3ee, #a855f7);
}

.art__listNum {
  list-style: none; padding-left: 0;
  counter-reset: artlist;
}
.art__listNum li {
  position: relative;
  padding-left: 46px;
  counter-increment: artlist;
}
.art__listNum li::before {
  content: counter(artlist, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-d);
  background: var(--paper-2);
  border: 1px solid var(--ink-line);
  width: 32px; height: 32px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}

.art__fig {
  margin: clamp(32px, 5vh, 48px) 0;
  padding: 0;
}
.art__fig img {
  width: 100%; border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, #d9dbe6, #b8bed0);
  box-shadow: 0 30px 60px -30px rgba(10,10,20,.25);
}
.art__fig figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px; line-height: 1.55;
  color: var(--ink-mm);
  letter-spacing: .02em;
  padding-left: 14px;
  border-left: 2px solid var(--ink-line);
}

.art__pull {
  margin: clamp(36px, 5vh, 52px) 0;
  padding: 0 0 0 28px;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #22d3ee, #a855f7, #d946ef) 1;
}
.art__pull p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.32;
  color: var(--ink-d);
  margin: 0;
  text-wrap: balance;
}

.art__callout {
  margin: clamp(32px, 4vh, 44px) 0;
  padding: 28px 32px;
  border-radius: 18px;
  background: var(--paper-2);
  border: 1px solid var(--ink-line);
}
.art__calloutKick {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mm);
  margin: 0 0 14px;
}
.art__callout ul {
  margin: 0; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.art__callout li {
  position: relative; padding-left: 32px;
  color: var(--ink-m); font-size: 15.5px; line-height: 1.55;
}
.art__callout li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22d3ee, #a855f7);
}
.art__callout li::after {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M5.5 10.25 L8.75 13.5 L14.5 7.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/20px no-repeat;
}

/* Author block at end */
.art__authorBlock {
  margin: clamp(56px, 8vh, 80px) 0 clamp(24px, 4vh, 40px);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  background: var(--paper-2);
  border-radius: 20px;
  border: 1px solid var(--ink-line);
}
.art__authorBlockAv {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cfd3e3, #e9ebf3);
  color: var(--ink-m);
}
.art__authorBlockAv svg { width: 38px; height: 38px; }
.art__authorBlockName {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 700; color: var(--ink-d);
}
.art__authorBlockRole {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mm);
}
.art__authorBlockBio {
  margin: 0 0 16px;
  font-size: 14.5px; line-height: 1.65; color: var(--ink-m);
}
.art__authorBlockTags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.art__tag {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-d);
  background: rgba(10,10,20,.04);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
}

.art__breadBottom {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 20px 0 8px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .08em;
  color: var(--ink-mm);
  border-top: 1px solid var(--ink-line);
}
.art__breadBottom a { color: var(--ink-m); transition: color .3s var(--ease-out); }
.art__breadBottom a:hover { color: var(--ink-d); }
.art__breadBottom span[aria-current] {
  color: var(--ink-d);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- CTA card ---------- */
.art__cta { padding: clamp(40px, 6vh, 80px) 0; }
.artCta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 28px;
  background: #0a0a14;
  color: #fff;
}
.artCta__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.artCta__orb {
  position: absolute; width: 440px; height: 440px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .45;
}
.artCta__orb--a { top: -120px; left: -80px;  background: #22d3ee; }
.artCta__orb--b { bottom: -180px; right: -80px; background: #d946ef; }
.artCta__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
}
.artCta__copy { position: relative; }
.artCta__kick {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 14px;
}
.artCta__ttl {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
}
.artCta__ttl em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  background: linear-gradient(92deg, #22d3ee, #a855f7, #d946ef);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.artCta__lead {
  font-family: var(--font-sans);
  font-size: 15.5px; line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-width: 540px;
}
.artCta__btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  background: #fff;
  color: #0a0a14;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  flex-shrink: 0;
}
.artCta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -15px rgba(255,255,255,.25);
}
.artCta__btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.artCta__btn:hover svg { transform: translateX(4px); }

/* =====================================================================
   SERVICE PAGE · direct CTA block, sits above footer on every svcD page
   Layout mirrors .artCta but with two buttons (mailto + start a brief)
   ===================================================================== */
.svcD__cta { padding: clamp(40px, 7vh, 96px) 0 clamp(56px, 9vh, 120px); }
.svcCta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 2.5vw, 32px);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  border-radius: 28px;
  background: #0a0a14;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
}
.svcCta__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.svcCta__orb {
  position: absolute; width: 440px; height: 440px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .45;
}
.svcCta__orb--a { top: -120px; left: -80px;   background: #22d3ee; }
.svcCta__orb--b { bottom: -180px; right: -80px; background: #d946ef; }
.svcCta__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
}
.svcCta__copy { position: relative; }
.svcCta__kick {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 14px;
}
.svcCta__ttl {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
}
.svcCta__ttl em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  background: linear-gradient(92deg, #22d3ee, #a855f7, #d946ef);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.svcCta__lead {
  font-family: var(--font-sans);
  font-size: 15.5px; line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin: 0 auto;
  max-width: 600px;
}
.svcCta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
}
.svcCta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out), border-color .3s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
}
.svcCta__btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.svcCta__btn:hover { transform: translateY(-2px); }
.svcCta__btn:hover svg { transform: translateX(4px); }

.svcCta__btn--primary {
  background: #fff;
  color: #0a0a14;
}
.svcCta__btn--primary:hover {
  box-shadow: 0 18px 40px -15px rgba(255,255,255,.25);
}

.svcCta__btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.svcCta__btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.32);
}

@media (max-width: 720px) {
  .svcCta__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .svcCta__btn { justify-content: center; }
}

/* ---------- Related section ---------- */
.art__related {
  padding: clamp(40px, 6vh, 80px) 0 clamp(80px, 12vh, 140px);
}
.art__relatedTtl {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink-d);
  margin: 0 0 clamp(28px, 4vh, 48px);
  text-wrap: balance;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .art__layout { grid-template-columns: 1fr; gap: 40px; }
  .art__toc {
    position: relative; top: auto;
    max-height: none;
  }
  .art__tocList {
    flex-direction: row; flex-wrap: wrap;
    border-left: none;
  }
  .art__tocList a {
    border-left: none;
    border-bottom: 2px solid transparent;
  }
  .art__tocList a.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--ink-d);
  }
  .blogCards { grid-template-columns: repeat(2, 1fr); }
  .blogFeat { grid-template-columns: 1fr; }
  .blogFeat__media { aspect-ratio: 16 / 10; }
  .blogNews { grid-template-columns: 1fr; padding: 32px; }
}

@media (max-width: 720px) {
  .blog__headDecor { display: none; }
  .blogCards { grid-template-columns: 1fr; }
  .artCta { grid-template-columns: 1fr; text-align: left; }
  .artCta__btn { align-self: flex-start; }
  .art__tldr { padding: 22px 24px; }
  .art__callout { padding: 22px 24px; }
  .art__authorBlock { grid-template-columns: 1fr; padding: 24px; }
  .art__meta { flex-direction: column; align-items: flex-start; }
  .blogFeat { padding: 14px; }
  .blogFeat__body { padding: 6px 6px 14px; }
}

/* =================== CHATBOT · BINDZ concierge =================== */
#botix { position: fixed; right: 22px; bottom: 22px; z-index: 9000; font-family: var(--font-sans); }
#botix * { box-sizing: border-box; }

/* Floating trigger */
.botix__trig {
  position: relative;
  width: 60px; height: 60px; border-radius: 999px; border: 0;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 45%, #a855f7 75%, #d946ef 100%);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(99,102,241,.55), 0 4px 12px rgba(10,10,20,.25);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  padding: 0;
}
.botix__trig::before {
  content: ""; position: absolute; inset: -6px; border-radius: inherit;
  background: linear-gradient(135deg, #22d3ee, #a855f7, #d946ef);
  filter: blur(16px); opacity: .55; z-index: -1;
  animation: botixPulse 3.4s ease-in-out infinite;
}
@keyframes botixPulse {
  0%, 100% { opacity: .4; transform: scale(.96); }
  50% { opacity: .75; transform: scale(1.08); }
}
.botix__trig:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 40px -10px rgba(168,85,247,.6), 0 6px 18px rgba(10,10,20,.3); }
.botix__trig img { width: 30px; height: 30px; object-fit: contain; display: block; }
.botix__trig svg { width: 22px; height: 22px; }
.botix__trig .x { display: none; }
#botix.is-open .botix__trig { background: linear-gradient(135deg, #0891b2 0%, #4338ca 45%, #7e22ce 75%, #a21caf 100%); }
#botix.is-open .botix__trig::before { opacity: .35; animation: none; }
#botix.is-open .botix__trig .logo { display: none; }
#botix.is-open .botix__trig .x { display: block; }

/* Panel */
.botix__panel {
  position: absolute; right: 0; bottom: 76px;
  width: 380px; max-width: calc(100vw - 32px);
  height: 560px; max-height: calc(100vh - 120px);
  background: #f6f5f2; border-radius: 20px;
  box-shadow: 0 30px 70px -20px rgba(10,10,20,.35), 0 8px 24px rgba(10,10,20,.12);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(.97); pointer-events: none;
  transition: opacity .35s ease, transform .45s cubic-bezier(.22,1,.36,1);
}
#botix.is-open .botix__panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

/* Glow under the panel */
.botix__glow {
  position: absolute; left: 50%; bottom: -40px; transform: translateX(-50%);
  width: 110%; height: 100px; pointer-events: none; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(99,102,241,.55) 0%, rgba(168,85,247,.35) 35%, rgba(217,70,239,.2) 60%, transparent 75%);
  filter: blur(30px); opacity: 0;
  transition: opacity .5s ease .15s;
}
#botix.is-open .botix__glow { opacity: 1; }

.botix__head {
  position: relative; padding: 14px 16px 14px; color: #fff; overflow: hidden;
  background: #0a0a14;
}
.botix__head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(34,211,238,.42), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(217,70,239,.38), transparent 55%);
  pointer-events: none;
}
.botix__head::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.botix__headTop { position: relative; display: flex; align-items: center; gap: 11px; z-index: 1; }

/* Identity block: avatar + name + status */
.botix__pfp {
  position: relative;
  flex: 0 0 40px; width: 40px; height: 40px;
  display: block;
  border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(168,85,247,.55), 0 1px 0 rgba(255,255,255,.18) inset;
  overflow: visible;
}
.botix__pfp svg { width: 100%; height: 100%; display: block; border-radius: 999px; }
.botix__pfpDot {
  position: absolute; right: 1px; bottom: 1px;
  width: 10px; height: 10px;
  background: #22c55e;
  border: 2px solid #0a0a14;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: botixPulse 2.4s ease-out infinite;
}
@keyframes botixPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  60%, 100% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.botix__id {
  display: flex; flex-direction: column; gap: 1px;
  min-width: 0;
}
.botix__idName {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 15px;
  letter-spacing: -.005em;
  color: #ffffff;
  line-height: 1.15;
}
.botix__idSub {
  margin: 0;
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-mono);
  font-weight: 500; font-size: 10.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.botix__onlineDot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 999px;
  box-shadow: 0 0 6px rgba(34,197,94,.7);
}

.botix__close {
  margin-left: auto; width: 32px; height: 32px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .2s ease;
  flex-shrink: 0;
}
.botix__close:hover { background: rgba(255,255,255,.18); }
.botix__close svg { width: 14px; height: 14px; }

/* Body — messages anchor to the bottom (chat flows upward like iMessage) */
.botix__body {
  flex: 1; overflow-y: auto;
  padding: 18px 14px 14px;
  background: #ecebe4;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(34,211,238,.09), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(168,85,247,.09), transparent 50%),
    radial-gradient(circle at 50% 40%, rgba(217,70,239,.05), transparent 55%);
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* stack from the bottom */
  min-height: 0;               /* allow flex-end while still scrollable */
}
.botix__body::-webkit-scrollbar { width: 6px; }
.botix__body::-webkit-scrollbar-thumb { background: rgba(10,10,20,.15); border-radius: 3px; }

/* Subtle fade gradient at the top of the body so older messages feel like
   they're rolling out of frame instead of getting hard-cut */
.botix__body::before {
  content: ''; position: sticky; top: 0; left: 0; right: 0;
  height: 24px; margin: -18px -14px 0;
  background: linear-gradient(180deg, #ecebe4, transparent);
  pointer-events: none; z-index: 2;
}

.botix__row {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px;
  flex-shrink: 0;
  animation: botixRowIn .42s cubic-bezier(.22,1,.36,1) both;
}
@keyframes botixRowIn {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.botix__row.is-bot { justify-content: flex-start; }
.botix__row.is-user { justify-content: flex-end; margin-bottom: 14px; }
.botix__row:last-child { margin-bottom: 0; }

.botix__avatar {
  flex: 0 0 28px; width: 28px; height: 28px; border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 2px 6px -2px rgba(99,102,241,.45);
  margin-top: 2px;
  overflow: hidden;
}
.botix__avatar svg { width: 100%; height: 100%; display: block; border-radius: 999px; }
.botix__avatar img { width: 15px; height: 15px; object-fit: contain; display: block; filter: brightness(0) invert(1); }

.botix__stack { display: flex; flex-direction: column; max-width: calc(100% - 40px); }
.botix__row.is-user .botix__stack { align-items: flex-end; max-width: 80%; }

/* Bot card = glassmorph box containing message + replies */
.botix__row.is-bot .botix__stack {
  background: linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.7));
  border-radius: 16px;
  border-top-left-radius: 4px;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 6px 20px -8px rgba(10,10,20,.12),
    0 0 0 1px rgba(10,10,20,.03);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
          backdrop-filter: blur(16px) saturate(140%);
  overflow: hidden;
}

.botix__bub {
  padding: 12px 15px; font-size: 13.5px; line-height: 1.55;
  color: #0a0a14;
}
.botix__row.is-user .botix__bub {
  background: linear-gradient(135deg, rgba(34,211,238,.92), rgba(99,102,241,.92), rgba(168,85,247,.92));
  color: #fff;
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 6px 18px -6px rgba(99,102,241,.5);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
          backdrop-filter: blur(10px) saturate(140%);
  font-size: 13.5px;
}
.botix__bub em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.botix__bub strong { font-weight: 600; }
.botix__bub a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* Replies inside the bot card */
.botix__opts {
  display: flex; flex-direction: column; gap: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.5);
}
.botix__opt {
  background: transparent; color: #0a0a14;
  border: 0;
  border-bottom: 1px solid rgba(10,10,20,.06);
  padding: 11px 15px; border-radius: 0;
  font-family: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: background .22s ease, color .22s ease, padding .22s ease; line-height: 1.3;
  text-decoration: none; text-align: left;
  display: block;
  width: 100%;
  position: relative;
}
.botix__opt:last-child { border-bottom: 0; }
.botix__opt:hover {
  background: linear-gradient(90deg, rgba(99,102,241,.1), rgba(168,85,247,.06) 60%, transparent);
  color: #4f46e5;
  padding-left: 19px;
}
.botix__opt.is-primary {
  background: linear-gradient(135deg, rgba(34,211,238,.9), rgba(99,102,241,.9), rgba(168,85,247,.9));
  color: #fff;
  font-weight: 600;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  text-shadow: 0 1px 2px rgba(10,10,20,.12);
}
.botix__opt.is-primary:hover {
  background: linear-gradient(135deg, #0891b2, #4338ca, #7e22ce);
  color: #fff;
  padding-left: 19px;
}

/* Compose footer — real input, free-text escape hatch */
.botix__compose {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.6) 30%, rgba(255,255,255,.85));
  border-top: 1px solid rgba(10,10,20,.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.botix__composeBox {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(10,10,20,.08);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 2px 6px -3px rgba(10,10,20,.08);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.botix__composeBox:focus-within {
  border-color: rgba(99,102,241,.5);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,.1), 0 1px 0 rgba(255,255,255,.8) inset;
}
.botix__composeBox .ico {
  width: 14px; height: 14px; flex: 0 0 14px;
  color: rgba(10,10,20,.4);
  transition: color .25s ease;
}
.botix__composeBox:focus-within .ico { color: #6366f1; }
.botix__composeInp {
  flex: 1; min-width: 0;
  border: 0; background: transparent; outline: none;
  font-family: var(--font-sans);
  font-size: 13px; line-height: 1.4;
  color: #0a0a14;
  padding: 0;
}
.botix__composeInp::placeholder { color: rgba(10,10,20,.45); }
.botix__composeSend {
  width: 38px; height: 38px; border-radius: 999px;
  border: 0; flex-shrink: 0;
  background: linear-gradient(135deg, #22d3ee, #6366f1, #a855f7);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -6px rgba(99,102,241,.5), 0 1px 0 rgba(255,255,255,.25) inset;
  transition: transform .2s ease, box-shadow .25s ease, opacity .2s ease;
}
.botix__composeSend:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(99,102,241,.6);
}
.botix__composeSend:disabled {
  opacity: .35;
  cursor: not-allowed;
  background: linear-gradient(135deg, #94a3b8, #64748b);
  box-shadow: none;
}
.botix__composeSend svg { width: 14px; height: 14px; }
.botix__composeFoot {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 6px 14px 10px;
  background: rgba(255,255,255,.85);
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(10,10,20,.4);
}
.botix__composeFoot .dot {
  width: 4px; height: 4px; border-radius: 999px; background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,.6);
}

/* Typing dots */
.botix__row.is-typing .botix__bub { padding: 6px 10px; }
.botix__typing { display: inline-flex; gap: 4px; padding: 4px 2px; }
.botix__typing span {
  width: 6px; height: 6px; border-radius: 999px; background: rgba(10,10,20,.35);
  animation: botixDot 1.2s ease-in-out infinite;
}
.botix__typing span:nth-child(2) { animation-delay: .15s; }
.botix__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes botixDot {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 640px) {
  #botix { right: 14px; bottom: 14px; }
  .botix__panel { width: calc(100vw - 28px); height: calc(100vh - 100px); bottom: 70px; }
  .botix__trig { width: 54px; height: 54px; }
}

/* =================================================
   MOBILE REFINEMENT · tighten sizing, hierarchy, spacing at ≤520px
   ================================================= */
@media (max-width: 520px) {
  html, body { overflow-x: hidden; }

  /* Hero — reduce oversized type and padding */
  .hero__title { font-size: clamp(38px, 10.5vw, 56px); letter-spacing: -.025em; }
  .hero__stage { padding: calc(var(--topbar-h) + var(--nav-h) + 48px) 20px 140px; }
  .hero__badge { font-size: 10.5px; padding: 8px 14px; margin-bottom: 22px; }
  .hero__lede, .hero__copy { font-size: 15px; }

  /* Service page hero */
  .svcHero__title, .svcD__heroTitle { font-size: clamp(36px, 10vw, 54px) !important; letter-spacing: -.02em; }
  .svcHero, .svcD__hero { padding-left: 20px; padding-right: 20px; }
  .svcD__stat { padding-top: 18px; }
  .svcD__statN { font-size: clamp(44px, 11vw, 64px); }
  .svcD__shipGrid { gap: 20px; }
  .svcD__shipCard { min-height: auto; }
  .svcD__sidebar { position: static !important; margin-bottom: 24px; }

  /* Contact section */
  .contact__title { font-size: clamp(30px, 8vw, 40px); letter-spacing: -.015em; }
  .contact__inner { gap: 28px; }

  /* Intel / numbered timelines / process */
  .intel__title, .process__title, .team__title, .proof__title, .stack__title,
  .blogHero__title, .articleHero__title {
    font-size: clamp(30px, 8vw, 44px) !important; letter-spacing: -.02em;
  }

  /* General section padding trim (skip process so horizontal swipe is edge-to-edge) */
  section:not(#process) { padding-left: 20px !important; padding-right: 20px !important; }
  #process { padding-left: 0 !important; padding-right: 0 !important; }
  .intel, .process, .team, .proof, .stack, .services, .contact,
  .svcD__stats, .svcD__ship, .svcD__case, .svcD__proc, .blogFeat, .blogGrid {
    padding-top: clamp(56px, 10vw, 80px) !important;
    padding-bottom: clamp(56px, 10vw, 80px) !important;
  }

  /* Brief modal — full bleed on mobile */
  .briefM__card { grid-template-columns: 1fr !important; max-width: calc(100vw - 24px); }
  .briefM__side { display: none; }
  .briefM__main { padding: 24px 18px !important; }
  .briefM input, .briefM textarea { font-size: 16px !important; }

  /* Blog cards */
  .blogFeat__grid, .blogGrid__grid { grid-template-columns: 1fr !important; gap: 24px; }

  /* Nav CTA shrink */
  .nav__cta { padding: 10px 16px; font-size: 13px; }

  /* Footer inner padding (siteFoot block already at 520px above — reinforce) */
  .siteFoot { padding-left: 20px; padding-right: 20px; }
  .siteFoot__hero { padding-bottom: 28px; }
  .siteFoot__logo { width: clamp(220px, 58vw, 320px); }
  .siteFoot__tag { font-size: 14.5px; }
  .siteFoot__bar { padding-top: 24px; }
  .siteFoot__legal { gap: 14px; }
  .siteFoot__legal a, .siteFoot__copy { font-size: 10.5px; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 34px; }
  .contact__title, .intel__title, .process__title, .team__title {
    font-size: 26px !important;
  }
}

/* ===================================================================
   COOKIE CONSENT BANNER · glassmorph + colorful glow, bottom-right float
   ===================================================================
   Layout: a frosted-glass card pinned to the bottom-right corner.
   Visual stack (bottom up):
     ::before  =  rotating conic gradient ring sitting outside the card
                  edge — gives a slow shimmer that catches the eye
                  without screaming.
     base bg   =  multi-radial cyan/violet/magenta wash on dark glass
                  with backdrop-filter blur.
     ::after   =  soft pulsing aura (cyan→violet→magenta) behind the
                  card to plant a glow on the page.
     content   =  cookie SVG (orbital sparkles + chip pop animation)
                  + copy + actions.
   Entry: fade + slide up from the corner with a small spring.
*/
.ckBnr {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  width: min(400px, calc(100vw - 28px));
  padding: 18px 20px 18px 18px;
  border-radius: 24px;
  z-index: 90;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  color: #f2f4fb;
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(34,211,238,.16), transparent 55%),
    radial-gradient(140% 100% at 100% 100%, rgba(217,70,239,.14), transparent 60%),
    radial-gradient(80% 100% at 100% 0%, rgba(129,140,248,.10), transparent 60%),
    linear-gradient(155deg, rgba(18,22,40,.82), rgba(8,10,22,.88));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 0 0 1px rgba(165,233,255,.10),
    0 30px 60px -18px rgba(0,0,0,.7),
    0 10px 28px -10px rgba(34,211,238,.28),
    0 8px 24px -10px rgba(217,70,239,.24);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
          backdrop-filter: blur(24px) saturate(170%);
  isolation: isolate;
  /* Spring entry from bottom-right corner */
  opacity: 0;
  transform: translateY(28px) translateX(8px) scale(.94);
  pointer-events: none;
  transition:
    opacity .55s cubic-bezier(.22,.61,.36,1),
    transform .65s cubic-bezier(.34,1.56,.64,1);
}
.ckBnr[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  pointer-events: auto;
}

/* Slow rotating conic gradient ring — shimmers around the card edge.
   Animation: animate the gradient's `from` angle via the @property
   `--ckSpin` so only the colour positions travel around the border.
   Animating `transform: rotate` here would spin the whole rectangle box
   (visibly tilted), which is the wrong effect on a non-square frame. */
@property --ckSpin {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.ckBnr::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--ckSpin),
    transparent 0deg,
    rgba(34,211,238,.55) 60deg,
    rgba(129,140,248,.65) 130deg,
    rgba(217,70,239,.55) 200deg,
    transparent 280deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: ckBnrSpin 12s linear infinite;
  pointer-events: none;
  z-index: -1;
}

/* Pulsing aura behind the card */
.ckBnr::after {
  content: '';
  position: absolute;
  inset: -22px -28px -28px -22px;
  border-radius: 36px;
  background:
    radial-gradient(60% 70% at 20% 20%, rgba(34,211,238,.28), transparent 70%),
    radial-gradient(60% 70% at 80% 80%, rgba(217,70,239,.22), transparent 70%),
    radial-gradient(60% 70% at 80% 20%, rgba(129,140,248,.18), transparent 70%);
  filter: blur(22px);
  opacity: .65;
  animation: ckBnrAura 4.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -2;
}

@keyframes ckBnrSpin { to { --ckSpin: 360deg; } }
@keyframes ckBnrAura {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.06); }
}

.ckBnr__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(242,244,251,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.ckBnr__close:hover {
  color: #fff;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  transform: rotate(90deg);
}
.ckBnr__close svg { width: 11px; height: 11px; }

.ckBnr__cookie {
  position: relative;
  width: 64px; height: 64px;
  margin: 2px 0 0;
  flex-shrink: 0;
  filter:
    drop-shadow(0 10px 18px rgba(0,0,0,.5))
    drop-shadow(0 4px 14px rgba(34,211,238,.42))
    drop-shadow(0 3px 12px rgba(217,70,239,.34));
  animation: ckCookieEnter .9s cubic-bezier(.34,1.56,.64,1) both;
}
.ckBnr__cookie::before {
  /* Soft glow disc behind the cookie */
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(168,85,247,.45), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  animation: ckCookieGlow 3.2s ease-in-out infinite;
}
.ckBnr__cookie svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.ckBnr__cookieBody {
  transform-origin: 32px 32px;
  animation: ckWobble 5.4s ease-in-out infinite;
}
.ckBnr__chip {
  transform-origin: center;
  animation: ckChipPop 3.4s ease-in-out infinite;
}
.ckBnr__chip--1 { animation-delay: -.2s; }
.ckBnr__chip--2 { animation-delay: -.8s; }
.ckBnr__chip--3 { animation-delay: -1.4s; }
.ckBnr__chip--4 { animation-delay: -2s; }
.ckBnr__chip--5 { animation-delay: -2.6s; }
.ckBnr__crumb {
  animation: ckCrumbOrbit 4.2s linear infinite;
  transform-origin: 32px 32px;
}
.ckBnr__crumb--1 { animation-delay: -.0s; }
.ckBnr__crumb--2 { animation-delay: -1.05s; }
.ckBnr__crumb--3 { animation-delay: -2.1s; }
.ckBnr__crumb--4 { animation-delay: -3.15s; }

@keyframes ckWobble {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50%      { transform: rotate(6deg)  scale(1.03); }
}
@keyframes ckChipPop {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.18); filter: brightness(1.2); }
}
/* Crumbs now orbit around the cookie centre and fade in/out */
@keyframes ckCrumbOrbit {
  0%   { transform: rotate(0deg)   translateX(28px) rotate(0deg);   opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: rotate(360deg) translateX(28px) rotate(-360deg); opacity: 0; }
}
@keyframes ckCookieGlow {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.12); }
}
@keyframes ckCookieEnter {
  0%   { transform: scale(.4) rotate(-180deg); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: scale(1) rotate(0deg);     opacity: 1; }
}

.ckBnr__body { min-width: 0; padding-right: 6px; position: relative; z-index: 1; }
.ckBnr__title {
  margin: 2px 0 4px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700; font-size: 14.5px;
  letter-spacing: -.01em;
  color: #fff;
  /* Subtle gradient shimmer on the headline */
  background: linear-gradient(92deg, #ffffff 0%, #c8f1ff 35%, #f5d2ff 70%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ckTitleShine 6s linear infinite;
}
@keyframes ckTitleShine {
  0%   { background-position: 0% 50%; }
  100% { background-position: -220% 50%; }
}
.ckBnr__copy {
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(240,245,255,.74);
}
.ckBnr__copy a {
  color: #a5e9ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(165,233,255,.35);
  transition: color .2s, border-color .2s;
}
.ckBnr__copy a:hover { color: #fff; border-color: #fff; }

.ckBnr__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.ckBnr__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px;
  padding: 0 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s, color .2s;
}
.ckBnr__btn--accept {
  /* Solid background on both states so `background` tweens smoothly on
     hover — gradients can't transition to a solid color. */
  color: #0a0a14;
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 10px 20px -8px rgba(34,211,238,.35),
    0 4px 10px -4px rgba(217,70,239,.25);
}
.ckBnr__btn--accept:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(255,255,255,.85);
  color: #05050c;
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 16px 28px -10px rgba(34,211,238,.55),
    0 6px 14px -4px rgba(217,70,239,.4);
}
.ckBnr__btn--accept:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 6px 14px -6px rgba(34,211,238,.4),
    0 2px 6px -2px rgba(217,70,239,.3);
}
.ckBnr__btn--ghost {
  color: rgba(240,245,255,.82);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.ckBnr__btn--ghost:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.26);
  color: #fff;
}

/* Mobile: anchor to bottom, near-full width, tight padding */
@media (max-width: 560px) {
  .ckBnr {
    left: 10px; right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    width: auto;
    grid-template-columns: 44px 1fr;
    padding: 12px 14px 12px 12px;
    gap: 10px;
    border-radius: 18px;
  }
  .ckBnr__cookie { width: 44px; height: 44px; margin: 2px 0 0; }
  .ckBnr__title { font-size: 13px; margin-top: 0; }
  .ckBnr__copy { font-size: 12px; margin-bottom: 10px; }
  .ckBnr__btn { height: 30px; padding: 0 12px; font-size: 11.5px; }
  .ckBnr__close { top: 8px; right: 8px; width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .ckBnr, .ckBnr::before, .ckBnr::after, .ckBnr__close,
  .ckBnr__cookie, .ckBnr__cookie::before,
  .ckBnr__cookieBody, .ckBnr__chip, .ckBnr__crumb,
  .ckBnr__title {
    animation: none !important;
    transition: none !important;
  }
}

/* ===================================================================
   LEGAL DOC · prose styles on top of the svcD shell (cookies page)
   =================================================================== */
.legalDoc .svcD__head { padding-bottom: 12px; }
.legalDoc__prose h2 {
  margin: 28px 0 10px;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink-strong, #0a0a14);
}
.legalDoc__prose h2:first-child { margin-top: 0; }
.legalDoc__prose h3 {
  margin: 20px 0 6px;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--ink-strong, #0a0a14);
}
.legalDoc__prose p {
  margin: 0 0 12px;
  font-size: clamp(14.5px, 1.3vw, 16px);
  line-height: 1.65;
  color: rgba(10,10,20,.75);
}
.legalDoc__prose p a {
  color: #0a0a14;
  text-decoration: none;
  border-bottom: 1px solid rgba(10,10,20,.28);
  transition: border-color .2s, color .2s;
}
.legalDoc__prose p a:hover { border-color: #0a0a14; }
.legalDoc__prose em {
  font-family: var(--font-serif, 'Libre Baskerville', Georgia, serif);
  font-style: italic;
  color: rgba(10,10,20,.88);
}
.legalDoc__back {
  margin-top: 32px !important;
  padding-top: 20px;
  border-top: 1px solid rgba(10,10,20,.1);
  font-size: 13.5px !important;
}
.legalDoc__back a {
  border-bottom: none !important;
  color: rgba(10,10,20,.65) !important;
  transition: color .2s !important;
}
.legalDoc__back a:hover { color: #0a0a14 !important; }
