/* ============================================================
   Coverden | Fable v9 · "Corporate Sharp"
   Physical security for mission-critical infrastructure.
   Light, editorial, precise. One consistent system.
   ============================================================ */

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300; font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700; font-display: swap;
}

:root {
  --navy-deep: #03093b;
  --navy: #040d4c;
  --abyss: #02061e;
  --violet: #6f49fc;
  --violet-bright: #9d82ff;
  --lavender: #d0c5fb;
  --paper: #fbfbff;
  --mist: #f4f3fb;
  --ink: #0a0e2a;
  --muted: rgba(10, 14, 42, 0.62);
  --muted-light: rgba(251, 251, 255, 0.68);
  --line: rgba(10, 14, 42, 0.12);
  --line-strong: rgba(10, 14, 42, 0.2);
  --line-light: rgba(251, 251, 255, 0.16);

  --font-sans: "Gilroy", "Avenir Next", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --pad-x: clamp(24px, 6.5vw, 120px);
  --frame-gap: clamp(10px, 1.2vw, 18px);
  --maxw: 1320px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: clamp(14px, 1.8vw, 22px);

  --z-dock: 20;
  --z-float: 60;
  --z-progress: 70;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 62%, #f3f1fb 100%);
  overflow-x: clip;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--violet); color: #fff; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- type system ---------- */

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 26px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--violet);
}

.display {
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
  max-width: 20ch;
  text-wrap: balance;
}
.display em { font-style: normal; color: var(--violet); }

p { text-wrap: pretty; }

.w-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.w-inner { display: inline-block; will-change: transform; }

.word-particle { color: transparent; }
.word-particle.is-filled { color: var(--violet); transition: color 360ms ease; }
.no-js .word-particle { color: var(--violet); }
.particle-canvas { position: absolute; pointer-events: none; z-index: 2; }

/* ---------- scroll progress ---------- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: var(--z-progress);
  width: 100%;
  height: 2px;
  background: var(--violet);
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---------- nav: dark glass float (kept from v11) ---------- */

.float-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: var(--z-float);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  padding: 8px 10px 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(251, 251, 255, 0.14);
  background: rgba(3, 9, 59, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(2, 6, 30, 0.35);
  transform: translate(-50%, -130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 520ms var(--ease-out), opacity 320ms ease;
}
.float-nav.is-in { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.float-glyph { display: flex; color: var(--violet); }
.float-glyph svg { width: 21px; height: 18px; }
.float-links { position: relative; display: flex; gap: clamp(6px, 1.2vw, 14px); }
.float-links a {
  position: relative;
  z-index: 1;
  padding: 8px 13px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(251, 251, 255, 0.74);
  transition: color 220ms ease;
}
.float-links a:hover, .float-links a.is-active { color: #fff; }
.nav-ink {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  border-radius: 100px;
  background: rgba(111, 73, 252, 0.32);
  opacity: 0;
  transition: transform 420ms var(--ease-out), width 420ms var(--ease-out), opacity 220ms ease;
}
.nav-ink.is-on { opacity: 1; }
.float-cta {
  padding: 11px 18px;
  border-radius: 100px;
  background: var(--violet);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 200ms ease;
  will-change: transform;
}
.float-cta:hover { background: #5d38e8; }

/* ---------- hero: the carved field ---------- */

.hero {
  position: relative;
  padding: calc(var(--frame-gap) + clamp(64px, 8vh, 82px)) var(--frame-gap) var(--frame-gap);
}
.dock-nav {
  position: absolute;
  top: var(--frame-gap);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-dock);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  padding: 13px clamp(22px, 3vw, 40px) 14px;
  border-radius: 100px;
  border: 1px solid rgba(10, 14, 42, 0.08);
  background: rgba(251, 251, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 460ms var(--ease-out), opacity 360ms ease;
}
.dock-nav a {
  position: relative;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  transition: color 200ms ease;
}
.dock-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--violet);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 220ms ease, transform 360ms var(--ease-out);
}
.dock-nav a:hover { color: var(--ink); }
@media (hover: hover) and (pointer: fine) {
  .dock-nav a:hover::after {
    opacity: 0.85;
    transform: scaleX(1);
  }
}
.dock-nav.is-away { transform: translate(-50%, -140%); opacity: 0; }

.hero-stage { position: relative; }
.hero-field {
  position: relative;
  border-radius: clamp(24px, 3vw, 38px);
  overflow: hidden;
  height: clamp(560px, 86vh, 900px);
  background: #39404f;
}
.hero-field video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-mark {
  position: absolute;
  top: 9%;
  right: 7%;
  width: clamp(110px, 13vw, 210px);
  opacity: 0.3;
  mix-blend-mode: soft-light;
  pointer-events: none;
  -webkit-mask: radial-gradient(75% 75% at 50% 50%, #000 40%, transparent 100%);
  mask: radial-gradient(75% 75% at 50% 50%, #000 40%, transparent 100%);
}

/* copy sits in the carve, on paper */
.hero-copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: min(72%, 980px);
}
.hero-copy-main { padding: clamp(10px, 1.4vh, 20px) clamp(18px, 2vw, 30px) clamp(14px, 1.6vh, 22px) 6px; }
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}
.wordmark {
  display: flex;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(3.4rem, 8.6vw, 9.4rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  white-space: nowrap;
  will-change: transform;
}
.wordmark-img { width: clamp(300px, 40vw, 660px); height: auto; display: block; }
.hero-copy-sub {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 400px;
  padding: 4px clamp(18px, 2vw, 30px) clamp(16px, 2vh, 26px) 6px;
}
.hero-lede {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-cta { display: flex; align-items: center; gap: 16px; }
.disc-btn {
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(111, 73, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  transition: background-color 200ms ease;
  will-change: transform;
}
.disc-btn:hover { background: #5d38e8; }
.disc-btn svg { width: 22px; height: 22px; transition: transform 280ms var(--ease-out); }
.disc-btn:hover svg { transform: translate(2px, -2px); }
.hero-cta-note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--muted);
}

/* the chip, carved into the bottom-right corner */
.hero-chip {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 6px 22px;
}
.hero-chip .chip-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #edeaf8;
  color: var(--ink);
}
.hero-chip .chip-thumb svg { width: 26px; }
.hero-chip .chip-text { display: flex; flex-direction: column; gap: 2px; }
.hero-chip strong { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.hero-chip em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--muted);
  transition: color 200ms ease;
}
.hero-chip:hover em { color: var(--violet); }

/* mobile: brand corner leads, image below, copy beneath — mirrors the desktop carve order */
@media (max-width: 900px) {
  .hero-stage { display: flex; flex-direction: column; }
  .hero-copy { display: contents; }
  .hero-copy-main { order: 1; max-width: none; padding: 0 4px clamp(16px, 4vw, 22px); }
  .hero-field { order: 2; height: clamp(340px, 52vh, 520px); }
  .hero-copy-sub { order: 3; max-width: 480px; padding: clamp(18px, 4vw, 24px) 4px 0; }
  .hero-chip { order: 4; position: static; padding: 16px 4px 0; }
  .hero-kicker { margin-bottom: 12px; }
  .wordmark-img { width: clamp(150px, 42vw, 200px); }
}

/* ---------- section frame ---------- */

.capabilities, .approach, .proof, .sectors {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---------- manifesto + emblem window (kept from v11) ---------- */

.manifesto {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(110px, 14vw, 190px) var(--pad-x) clamp(90px, 11vw, 150px);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.manifesto .display { max-width: 24ch; }
.manifesto-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 48px;
  max-width: 58ch;
}
.manifesto-cols p { color: var(--muted); }
.manifesto-cols p::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--violet);
}
.emblem-window { max-width: 480px; justify-self: end; width: 100%; }
.emblem-window-clip {
  position: relative;
  aspect-ratio: 408.36 / 341.59;
  clip-path: url(#emblemClip);
  overflow: hidden;
  background: var(--navy);
}
.emblem-window-clip > img:first-child {
  width: 100%;
  height: 124%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.05);
}
.emblem-window-clip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(111, 73, 252, 0.22), rgba(4, 13, 76, 0.42));
  mix-blend-mode: multiply;
}
.window-logo {
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  width: clamp(86px, 9vw, 124px);
  filter: brightness(0) invert(1);
  opacity: 0.92;
  z-index: 1;
}
.emblem-window figcaption {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.emblem-window figcaption span {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
}
@media (max-width: 980px) {
  .manifesto-grid { grid-template-columns: 1fr; }
  .emblem-window { justify-self: start; }
}

/* ---------- stakes + facility (light) ---------- */

.stakes {
  position: relative;
  margin: 0 var(--frame-gap);
  padding: clamp(80px, 10vw, 150px) var(--pad-x);
  background:
    radial-gradient(120% 130% at 84% 22%, #ece8fb, rgba(236, 232, 251, 0) 58%),
    linear-gradient(165deg, #f4f2fc 0%, #eae6f9 100%);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.stakes-emblem {
  position: absolute;
  right: clamp(-60px, -2vw, 0px);
  top: clamp(60px, 8vw, 120px);
  width: clamp(280px, 34vw, 520px);
  opacity: 0.07;
  pointer-events: none;
  -webkit-mask: linear-gradient(205deg, #000 26%, transparent 74%);
  mask: linear-gradient(205deg, #000 26%, transparent 74%);
}
.stakes-inner { position: relative; max-width: var(--maxw); margin-inline: auto; }
.stakes .display { max-width: 18ch; }
.stakes-lede {
  margin-top: 28px;
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
}
.stakes-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
  gap: clamp(36px, 6vw, 96px);
  align-items: end;
}
.threat-index {
  border-top: 1px solid rgba(10, 14, 42, 0.16);
}
.threat-index li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(10, 14, 42, 0.09);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.threat-index li:last-child { border-bottom: 0; }
.threat-index li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px; height: 8px;
  background: var(--violet);
  opacity: 0.55;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
@media (max-width: 980px) {
  .stakes-top { grid-template-columns: 1fr; align-items: start; }
  .threat-index { max-width: 420px; }
}

/* the rack, folded into the stakes */
.stakes-rack {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  margin-top: clamp(40px, 5vw, 66px);
  padding-top: clamp(34px, 4.5vw, 54px);
}
.stakes-rack .cap-tag { color: var(--violet); }
.stakes-rack h3 {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.schematic-plate {
  position: relative;
  max-width: 360px;
  width: 100%;
  justify-self: center;
  aspect-ratio: 320 / 420;
  background: rgba(251, 251, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(10, 14, 42, 0.07), 0 24px 60px rgba(10, 14, 42, 0.08);
  padding: clamp(14px, 1.6vw, 24px) clamp(14px, 1.6vw, 24px) 62px;
}
.schematic-plate svg { width: 100%; height: 100%; }
[data-schematic] .s {
  stroke: rgba(4, 13, 76, 0.42);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s var(--ease-out);
}
[data-schematic] .s.violet { stroke: var(--violet); }
[data-schematic] .s.glow { filter: drop-shadow(0 0 6px rgba(111, 73, 252, 0.35)); }
[data-schematic].is-drawn .s { stroke-dashoffset: 0; }
[data-schematic] .trace {
  fill: none;
  stroke: var(--violet-bright);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 0.16 0.84;
  stroke-dashoffset: 1;
  opacity: 0;
}
[data-schematic].is-drawn .trace {
  opacity: 1;
  animation: iloTrace 4.4s linear 1.8s infinite;
  filter: drop-shadow(0 0 5px rgba(157, 130, 255, 0.8));
}
@keyframes iloTrace { to { stroke-dashoffset: 0; } }
[data-schematic] .sk-text text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  fill: var(--muted);
  opacity: 0;
  transition: opacity 600ms ease 1s;
}
[data-schematic] .sk-text text:nth-child(2),
[data-schematic] .sk-text text:nth-child(3) { fill: var(--violet); }
[data-schematic].is-drawn .sk-text text { opacity: 1; }
.no-js [data-schematic] .s { stroke-dashoffset: 0; }
.no-js [data-schematic] .sk-text text { opacity: 1; }

@media (max-width: 980px) {
  .stakes-rack { grid-template-columns: 1fr; }
  .schematic-plate { justify-self: start; max-width: 320px; }
}

/* ---------- capabilities ---------- */

.capabilities {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(36px, 5vw, 64px);
}
.cap-head {
  position: relative;
  padding-bottom: clamp(40px, 5.5vw, 72px);
}
.cap-head::after,
.cap:not(:last-child)::after,
.proof::before,
.sectors::before {
  content: "";
  position: absolute;
  height: 12px;
  background:
    linear-gradient(90deg, rgba(122, 91, 255, 0), rgba(122, 91, 255, 0.18), rgba(122, 91, 255, 0)),
    linear-gradient(90deg, rgba(10, 14, 42, 0), rgba(10, 14, 42, 0.14), rgba(10, 14, 42, 0));
  background-size: 100% 1px, 72% 1px;
  background-position: 0 3px, 100% 9px;
  background-repeat: no-repeat;
  opacity: 0.66;
  pointer-events: none;
  animation: trace-drift 4.8s var(--ease-out) infinite;
}
.cap-head::after,
.cap:not(:last-child)::after {
  left: 0;
  right: 0;
  bottom: 0;
}
.cap-sub { margin-top: 24px; color: var(--muted); max-width: 52ch; }

.cap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 110px);
  align-items: stretch;
  padding: clamp(64px, 8vw, 120px) 0;
}
.cap-rev .cap-media { order: 2; }
.cap-rev .cap-copy { order: 1; }
.cap-copy { align-self: stretch; }
.cap-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(340px, 30vw, 480px);
  background: var(--mist);
  box-shadow: 0 30px 70px rgba(10, 14, 42, 0.12);
}
.cap-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}
.cap-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(10, 14, 42, 0.08);
  pointer-events: none;
}

/* per-row figure variants: one cutout language, placed uniquely */
.cap.cap-media-wide { grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.62fr); }
.cap-media-wide .cap-media img { filter: saturate(0.66) hue-rotate(-8deg) contrast(1.03) brightness(1.02); }
.cap.cap-map-wide { grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.68fr); }
.cap-media.map {
  min-height: 0;
  width: 100%;
  align-self: stretch;
}
.cap-media.map img { height: 100%; width: 100%; object-fit: cover; object-position: center; }

/* the caption chips that live in the carves */
.cap-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.cap-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-bright);
  box-shadow: 0 0 8px rgba(157, 130, 255, 0.8);
  animation: chipPulse 2.6s ease-in-out infinite;
}
@keyframes chipPulse { 50% { opacity: 0.35; } }
.chip-bl { left: 0; bottom: 0; padding: 12px 18px 4px 2px; }
.chip-tr { right: 0; top: 0; padding: 4px 2px 12px 18px; }
.chip-tl { left: 0; top: 0; padding: 4px 18px 12px 2px; }
.chip-br { right: 0; bottom: 0; padding: 12px 2px 4px 18px; }

/* until the carve lands (mobile, no-js): a quiet pill over the image */
[data-notch]:not(.is-carved) .cap-chip {
  padding: 8px 14px 8px 11px;
  border-radius: 100px;
  background: rgba(2, 6, 30, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(251, 251, 255, 0.9);
}
[data-notch]:not(.is-carved) .chip-bl { left: 14px; bottom: 14px; }
[data-notch]:not(.is-carved) .chip-tr { right: 14px; top: 14px; }
[data-notch]:not(.is-carved) .chip-tl { left: 14px; top: 14px; }
[data-notch]:not(.is-carved) .chip-br { right: 14px; bottom: 14px; }

.cap-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 26px;
}
.cap-tag span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  padding: 4px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
}
.cap-tag em { font-style: normal; color: var(--muted); }
.cap h3 em, .stakes-rack h3 em { font-style: normal; color: var(--violet); }
.cap h3 {
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.cap-lede {
  margin-top: 22px;
  max-width: 50ch;
  font-size: 1.05rem;
  color: var(--muted);
}
.cap-list {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
  max-width: 460px;
}
.cap-list li {
  padding: 13px 2px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.cap-list li:last-child { border-bottom: 0; }
.cap-list li::before {
  content: "";
  display: inline-block;
  width: 11px; height: 9px;
  margin-right: 13px;
  background: var(--violet);
  opacity: 0.75;
  vertical-align: -0.05em;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: opacity 240ms ease;
}
.cap-list li { transition: color 240ms ease; }
.cap-list li:hover { color: var(--violet); }
.cap-list li:hover::before { opacity: 1; }

/* ---------- approach ---------- */

.approach {
  padding-top: clamp(90px, 11vw, 150px);
  padding-bottom: clamp(90px, 11vw, 150px);
}
.steps-wrap { position: relative; margin-top: clamp(44px, 6vw, 76px); }
.steps-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; }
.steps-line path { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.steps li { padding-top: 28px; }
.steps li i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--violet);
}
.steps h3 { margin-top: 14px; font-size: 1.55rem; font-weight: 700; letter-spacing: -0.01em; }
.steps p { margin-top: 14px; color: var(--muted); font-size: 15.5px; }
.no-js .steps-line path { stroke-dashoffset: 0; }

/* ---------- proof ---------- */

.proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 56px);
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(90px, 11vw, 150px);
}
.proof::before,
.sectors::before {
  left: var(--pad-x);
  right: var(--pad-x);
  top: 0;
}
.stat { position: relative; padding-top: 26px; border-top: 2px solid var(--violet); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.stat strong {
  display: block;
  font-weight: 300;
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat strong span { color: var(--violet); }
.stat-note { margin-top: 14px; font-size: 14px; line-height: 1.55; color: var(--muted); max-width: 26ch; }

/* ---------- sectors ---------- */

.sectors {
  position: relative;
  padding-top: clamp(90px, 11vw, 150px);
  padding-bottom: clamp(100px, 13vw, 180px);
}
.sectors-sub { margin-top: 24px; color: var(--muted); max-width: 60ch; }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 6vw, 80px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sector {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  transition: background-color 900ms ease;
}
.sector:hover { background: var(--mist); transition-duration: 240ms; }
.sector.is-lit { background: #f0edfc; }
.sector.featured h3 { color: var(--ink); }
.sector-i {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--violet);
}
.sector h3 {
  margin-top: 26px;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.sector p { margin-top: 14px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ---------- footer ---------- */

.footer {
  position: relative;
  margin: var(--frame-gap);
  padding: clamp(32px, 4vw, 50px) var(--pad-x) clamp(18px, 2vw, 26px);
  background: linear-gradient(168deg, #1a2158 0%, #0e1342 100%);
  color: #fff;
  border-radius: var(--radius);
}
.footer-chip {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 4px 14px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 200ms ease;
}
.footer-chip:hover { color: var(--violet); }
.footer-chip svg { width: 15px; color: var(--violet); }
.footer:not(.is-carved) .footer-chip { color: var(--lavender); padding: 18px 22px; }
.footer:not(.is-carved) .footer-chip svg { color: var(--lavender); }
.footer-cta {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: clamp(32px, 5vw, 90px);
  align-items: end;
  padding-bottom: clamp(22px, 2.8vw, 36px);
  border-bottom: 1px solid var(--line-light);
}
.footer-cta .display { color: #fff; max-width: 16ch; }
.footer-cta-copy p {
  margin-top: 18px;
  color: var(--muted-light);
  max-width: 42ch;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.58;
}
.footer-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-form { align-items: center; }
.footer-form .disc-btn { flex: 0 0 auto; width: 56px; height: 56px; }
.footer-form-note {
  flex-basis: 100%;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-bright);
}
.footer-form-status {
  flex-basis: 100%;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--violet-bright);
}
.footer-form-status strong {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-form-status.is-error {
  color: #d28a91;
}
.footer-form input {
  flex: 1 1 200px;
  height: 52px;
  border: 1px solid rgba(111, 73, 252, 0.55);
  border-radius: 7px;
  background: rgba(251, 251, 255, 0.07);
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.footer-form input::placeholder { color: rgba(208, 197, 251, 0.75); }
.footer-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(111, 73, 252, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.15fr) repeat(3, minmax(110px, auto)) minmax(150px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(24px, 3vw, 38px) 0;
}
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-light);
  max-width: 32ch;
}
.footer-grid h4,
.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 18px;
}
.footer-grid nav { display: flex; flex-direction: column; gap: 11px; }
.footer-grid nav a {
  position: relative;
  align-self: flex-start;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(251, 251, 255, 0.78);
  transition: color 200ms ease;
}
.footer-grid nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--violet-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.footer-grid nav a:hover { color: #fff; }
.footer-grid nav a:hover::after { transform: scaleX(1); }
.footer-contact .footer-mail {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--lavender);
  border-bottom: 1px solid rgba(208, 197, 251, 0.35);
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}
.footer-contact .footer-mail:hover { color: #fff; border-color: #fff; }
.footer-grid .footer-langs, .footer-langs { display: flex; flex-direction: row; gap: 16px; margin-top: 16px; }
.footer-langs a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted-light);
  transition: color 200ms ease;
}
.footer-langs a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--violet-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.footer-langs a:hover { color: #fff; }
.footer-langs a:hover::after { transform: scaleX(1); }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 251, 255, 0.5);
}

/* ---------- reveal defaults (JS adds visible state) ---------- */
/* nothing hidden by default: motion enhances an already-visible page */

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .cap { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 48px); padding: clamp(56px, 9vw, 90px) 0; }
  .cap-rev .cap-media, .cap-rev .cap-copy { order: 0; }
  .cap-media { aspect-ratio: 16 / 10; max-width: 560px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps-line { display: none; }
  .proof { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .wordmark { font-size: clamp(3.8rem, 16vw, 9rem); }
  .footer-cta { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .float-cta { display: none; }
  .dock-nav { gap: 14px; padding: 13px 18px 15px; width: max-content; max-width: calc(100% - 24px); }
  .dock-nav a { font-size: 11.5px; }
  .float-links a { padding: 7px 9px; font-size: 12px; }
  .proof { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --pad-x: clamp(24px, 6.5vw, 34px); }
  .float-nav {
    top: max(12px, env(safe-area-inset-top));
    width: calc(100vw - 32px);
    max-width: 680px;
    justify-content: center;
    padding: 9px 12px;
  }
  .float-nav.is-mobile-hidden {
    transform: translate(-50%, -140%);
    opacity: 0;
    pointer-events: none;
  }
  .dock-nav.is-mobile-hidden {
    transform: translate(-50%, -140%);
    opacity: 0;
    pointer-events: none;
  }
  .float-glyph { display: none; }
  .float-links {
    width: 100%;
    justify-content: center;
    gap: clamp(5px, 2vw, 10px);
  }
  .float-links .nav-ink {
    display: none;
  }
  .float-links a {
    padding: 8px clamp(5px, 1.6vw, 9px);
    border-radius: 0;
    font-size: clamp(11.5px, 3.05vw, 13px);
    white-space: nowrap;
  }
  .float-links a::after {
    content: "";
    position: absolute;
    left: clamp(5px, 1.6vw, 9px);
    right: clamp(5px, 1.6vw, 9px);
    bottom: 3px;
    height: 1px;
    background: rgba(251, 251, 255, 0.9);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 260ms var(--ease-out);
  }
  .float-links a.is-active::after {
    transform: scaleX(1);
  }
  .dock-nav {
    width: calc(100vw - 32px);
    max-width: 680px;
    justify-content: center;
    gap: clamp(8px, 2.4vw, 16px);
    padding-inline: 12px;
    overflow: hidden;
  }
  .dock-nav a {
    flex: 0 1 auto;
    min-width: 0;
    padding: 8px clamp(5px, 1.6vw, 9px);
    font-size: clamp(11.5px, 3.2vw, 13.5px);
    white-space: nowrap;
  }
  .svcb-hero {
    padding-top: max(112px, calc(env(safe-area-inset-top) + 94px));
  }

  .cap,
  .cap.cap-media-wide,
  .cap.cap-map-wide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 52px 0;
  }
  .cap-rev .cap-media,
  .cap-rev .cap-copy {
    order: 0;
  }
  .cap-media {
    width: 100%;
    min-height: 0;
    max-width: none;
    aspect-ratio: 4 / 3;
  }
  .cap-media img {
    height: 100%;
    transform: none;
  }
  .cap h3 {
    max-width: 11.5ch;
    font-size: clamp(2rem, 10.5vw, 2.75rem);
  }
  .cap-lede,
  .cap-list {
    max-width: none;
  }
  .cap-chip {
    max-width: calc(100% - 28px);
    overflow-wrap: anywhere;
  }

  .board {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .tile,
  .t-01,
  .t-info,
  .t-wide,
  .t-managed {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .mg-groups {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding: 18px 0 12px;
  }
  .footer-grid h4,
  .footer-heading { margin-bottom: 10px; }
  .footer-grid nav { gap: 8px; }
  .footer {
    margin: 12px;
    padding-top: 24px;
    padding-bottom: 16px;
    border-radius: 24px;
  }
  .footer-chip { display: none; }
  .footer-cta {
    display: block;
    padding-bottom: 18px;
  }
  .footer-cta .display {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.02;
  }
  .footer-cta-copy p {
    margin-top: 12px;
    max-width: 34ch;
    font-size: 14px;
    line-height: 1.5;
  }
  .footer-form {
    margin-top: 16px;
    gap: 9px 10px;
  }
  .footer-form input {
    flex-basis: 100%;
    height: 46px;
  }
  .footer-form .disc-btn {
    width: 48px;
    height: 48px;
  }
  .footer-form-note {
    flex-basis: auto;
    font-size: 9.5px;
    letter-spacing: 0.13em;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-brand {
    display: grid;
    gap: 10px;
  }
  .footer-brand img {
    width: 142px;
    height: auto;
  }
  .footer-brand p {
    margin-top: 0;
    max-width: none;
    font-size: 13px;
    line-height: 1.45;
  }
  .footer-grid nav {
    min-width: 0;
  }
  .footer-grid nav[aria-label="Capabilities"] {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }
  .footer-grid nav[aria-label="Capabilities"] .footer-heading {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }
  .footer-grid nav[aria-label="Capabilities"] a:nth-of-type(1) {
    order: 2;
  }
  .footer-grid nav[aria-label="Capabilities"] a:nth-of-type(2) {
    order: 1;
  }
  .footer-grid nav[aria-label="Capabilities"] a:nth-of-type(3) {
    order: 4;
  }
  .footer-grid nav[aria-label="Capabilities"] a:nth-of-type(4) {
    order: 3;
  }
  .footer-grid nav a,
  .footer-contact .footer-mail {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .footer-grid nav a {
    font-size: 13px;
    line-height: 1.35;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
  }
  .footer-contact h4 {
    width: 100%;
    margin-bottom: 0;
  }
  .footer-contact .footer-mail {
    font-size: 13.5px;
  }
  .footer-contact .li-btn {
    margin-top: 0;
    width: 28px;
    height: 28px;
  }
  .footer-contact .footer-langs {
    margin-top: 0;
    gap: 12px;
  }
  .footer-base {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 13px;
    padding-top: 14px;
    font-size: 10.5px;
    letter-spacing: 0.07em;
    line-height: 1.5;
  }
  .footer-base span {
    display: inline-flex;
    flex-wrap: wrap;
  }
  .sector {
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
  }
  .tree {
    padding: 13px 14px 12px;
  }
  .tree-head {
    align-items: flex-start;
    white-space: normal;
  }
  .tree li {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    align-items: start;
    font-size: 10.5px;
    line-height: 1.45;
  }
  .tree li b {
    justify-self: start;
    margin-left: 20px;
  }
  .cap-media::before,
  .about-plate::before,
  .tile-inset-photo::before {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    z-index: 3;
    width: 30px;
    height: 30px;
    background: var(--bg);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    pointer-events: none;
  }
  .t-info .cap-chip {
    position: static;
    justify-self: start;
    align-self: start;
    margin-top: 4px;
    padding: 8px 14px 8px 11px;
    max-width: 100%;
  }
  [data-notch]:not(.is-carved) .t-info .cap-chip {
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
  }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .steps-line path { stroke-dashoffset: 0; }
  .scroll-progress { display: none; }
  .word-particle { color: var(--violet); }
}

/* ---------- services page: the board ---------- */

.svcb-hero {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: calc(var(--frame-gap) + clamp(48px, 6vh, 66px)) var(--pad-x) clamp(22px, 3vh, 30px);
}
.svcb-hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.svcb-hero .hero-kicker { margin-bottom: 12px; }
.svc-title {
  font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.svc-title em { font-style: normal; color: var(--violet); }
.svc-lede { margin-top: 12px; max-width: 56ch; color: var(--muted); font-size: 15px; }
.svcb-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 2;
  text-align: right;
  color: var(--muted);
  white-space: nowrap;
}

.board {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--pad-x) clamp(48px, 6vh, 72px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.tile {
  position: relative;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 1.8vw, 26px);
  border-radius: 26px;
  background: rgba(10, 14, 42, 0.045);
}
.tile-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.tile-head span { color: var(--violet); }
.tile h2 {
  margin-top: 12px;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
}
.tile-sub { margin-top: 8px; font-size: 13px; line-height: 1.5; color: var(--muted); }
.tile-items { margin-top: auto; padding-top: 18px; list-style: none; }
.tile-items li {
  position: relative;
  padding: 6px 0 6px 21px;
  font-size: 13px;
  color: var(--ink);
}
.tile-items li::before {
  content: "";
  position: absolute;
  left: 1px; top: calc(6px + 0.8em);
  width: 11px; height: 9px;
  background: var(--violet);
  opacity: 0.75;
  transform: translateY(-50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.t-01 {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  background: linear-gradient(150deg, rgba(208, 197, 251, 0.38), rgba(208, 197, 251, 0.16));
}
.t-01 .tile-copy { display: flex; flex-direction: column; }

.plan-min { align-self: center; width: 100%; padding: 8px 2px 26px 0; }
.plan-min .plan-svg { display: block; width: 100%; height: auto; }
.plan-svg .ring {
  fill: none;
  stroke: rgba(4, 13, 76, 0.32);
  stroke-width: 1.4;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.plan-svg .r2 { transition-delay: 0.18s; }
.plan-svg .r3 { transition-delay: 0.36s; }
.plan-svg .r4 { stroke: var(--violet); stroke-width: 1.6; transition-delay: 0.54s; }
.plan-svg .rack-ticks {
  fill: none;
  stroke: rgba(111, 73, 252, 0.55);
  stroke-width: 1.1;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.9s ease 1.05s;
}
.plan-svg .plan-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  fill: rgba(4, 13, 76, 0.48);
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}
.plan-svg .route {
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.3s cubic-bezier(0.4, 0, 0.2, 1) 1.05s;
}
.plan-svg .ctrl circle { fill: var(--violet); opacity: 0; transition: opacity 0.6s ease 2.1s; }
.plan.drawn .ring, .plan.drawn .rack-ticks, .plan.drawn .route { stroke-dashoffset: 0; }
.plan.drawn .plan-label { opacity: 1; }
.plan.drawn .ctrl circle { opacity: 1; }

.t-cta { background: #040D4C; }
.t-cta .tile-head { color: rgba(251, 251, 255, 0.55); }
.t-cta .tile-head span { color: #D0C5FB; }
.t-cta h2 { color: #FBFBFF; }
.t-cta .tile-sub { color: rgba(251, 251, 255, 0.66); }
.disc-link {
  margin-top: auto;
  align-self: flex-start;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(111, 73, 252, 0.55);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.disc-link svg { width: 20px; height: 20px; }
.disc-link:hover { transform: translate(2px, -2px); }

@media (max-width: 1180px) {
  .tile { grid-column: span 6; }
  .t-01 { grid-column: span 12; }
}
@media (max-width: 700px) {
  .tile, .t-01 { grid-column: span 12; }
  .t-01 { grid-template-columns: 1fr; }
  .plan-min { max-width: 320px; padding-bottom: 8px; }
  .svcb-hero-row { flex-direction: column; align-items: flex-start; }
  .svcb-meta { text-align: left; }
}

/* ---------- v20: groups, info card, tree, managed band, light footer ---------- */

.board-part { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 16px; margin-top: clamp(34px, 5vh, 58px); }
.board-part:first-child { margin-top: 0; }
.board-part strong { order: 1; font-size: 15px; font-weight: 650; letter-spacing: -0.01em; color: var(--violet); white-space: nowrap; }
.board-part::after { content: ""; order: 2; flex: 1; height: 1px; background: rgba(10, 14, 42, 0.12); align-self: center; }
.board-part span { order: 3; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.t-info {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(24px, 3vw, 56px);
  background: linear-gradient(205deg, rgba(208, 197, 251, 0.3) 0%, rgba(224, 219, 250, 0.14) 46%, rgba(251, 251, 255, 0.5) 100%);
}
.t-info h2 em { font-style: normal; color: var(--violet); }

.t-wide { grid-column: span 6; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); gap: 18px; }
.t-wide .tile-copy { display: flex; flex-direction: column; }

.tree { align-self: center; width: 100%; background: #fff; border: 1px solid rgba(10, 14, 42, 0.1); border-radius: 16px; padding: 14px 16px 12px; }
.tree-head { display: flex; justify-content: space-between; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(10, 14, 42, 0.1); font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--violet); }
.tree ul { list-style: none; margin-top: 8px; }
.tree li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 4px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tree-line {
  min-width: 0;
  overflow-wrap: anywhere;
}
.tree li i { font-style: normal; color: rgba(10, 14, 42, 0.35); white-space: pre; }
.tree li b { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.tree li b::before { content: ""; width: 6px; height: 6px; border-radius: 50%; }
.tree .ok { color: var(--muted); }
.tree .ok::before { background: rgba(4, 13, 76, 0.22); }
.tree .risk { color: var(--violet); }
.tree .risk::before { background: var(--violet); }
.tree li:nth-child(1) { transition-delay: 0.15s; }
.tree li:nth-child(2) { transition-delay: 0.3s; }
.tree li:nth-child(3) { transition-delay: 0.45s; }
.tree li:nth-child(4) { transition-delay: 0.6s; }
.tree li:nth-child(5) { transition-delay: 0.75s; }
.tree.drawn li { opacity: 1; transform: none; }

.t-managed { grid-column: span 12; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.9fr); gap: clamp(24px, 3vw, 56px); }
.mg-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 32px); align-content: center; }
.mg-groups h3 { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--violet); padding-bottom: 9px; border-bottom: 1px solid rgba(10, 14, 42, 0.12); }
.mg-groups ul { list-style: none; margin-top: 9px; }
.mg-groups li { padding: 3.5px 0; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.02em; color: var(--muted); }

/* chips appear only once their notch is carved (kills the pill flash) */
@media (min-width: 901px) {
  [data-notch] .cap-chip { opacity: 0; transition: opacity 400ms ease 120ms; }
  [data-notch].is-carved .cap-chip { opacity: 1; }
}

/* hero watermark eases in after the film paints (kills the sky flash) */
@keyframes heroMarkIn { from { opacity: 0; } }
.hero-mark { animation: heroMarkIn 1100ms ease 600ms backwards; }

.footer-light {
  width: min(calc(100% - 2 * var(--frame-gap)), calc(var(--maxw) - 2 * var(--pad-x)));
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(208, 197, 251, 0.42), rgba(208, 197, 251, 0.16));
  color: var(--ink);
}
.footer-light .footer-cta { border-bottom-color: rgba(10, 14, 42, 0.14); }
.footer-light .footer-cta .display { color: var(--ink); }
.footer-light .footer-cta-copy p { color: var(--muted); }
.footer-light .footer-form input { background: #fff; color: var(--ink); border-color: rgba(111, 73, 252, 0.5); }
.footer-light .footer-form input::placeholder { color: rgba(4, 13, 76, 0.4); }
.footer-light .footer-form-note { color: var(--violet); }
.footer-light .footer-form-status { color: var(--violet); }
.footer-light .footer-form-status.is-error { color: #a4525a; }
.footer-light .footer-brand img { filter: none; opacity: 1; }
.footer-light .footer-brand p { color: var(--muted); }
.footer-light .footer-grid h4,
.footer-light .footer-heading { color: var(--violet); }
.footer-light .footer-grid nav a { color: rgba(4, 13, 76, 0.72); }
.footer-light .footer-grid nav a:hover { color: var(--ink); }
.footer-light .footer-contact .footer-mail { color: var(--violet); border-color: rgba(111, 73, 252, 0.4); }
.footer-light .footer-contact .footer-mail:hover { color: var(--ink); border-color: var(--ink); }
.footer-light .footer-langs a { color: var(--muted); }
.footer-light .footer-langs a:hover { color: var(--ink); }
.footer-light .footer-base { color: rgba(4, 13, 76, 0.5); border-top-color: rgba(10, 14, 42, 0.14); }
.footer-light .footer-chip, .footer-light:not(.is-carved) .footer-chip { color: var(--muted); }
.footer-light .footer-chip:hover { color: var(--violet); }

@media (max-width: 1180px) {
  .t-wide { grid-column: span 12; }
  .t-managed, .t-info { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .t-wide { grid-template-columns: 1fr; }
  .mg-groups { grid-template-columns: 1fr; }
  .board-part span { display: none; }
}

/* ---------- v21: field notes (blog) ---------- */

.s4 { grid-column: span 4; }
.s6 { grid-column: span 6; }
.s12 { grid-column: span 12; }
a.tile { text-decoration: none; color: inherit; }
a.tile h2 { transition: color 240ms ease; }
a.tile:hover h2 { color: var(--violet); }
.tile-hook { margin-top: 8px; font-size: 13px; line-height: 1.55; color: var(--muted); }
.tile-go {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tile-go svg { width: 15px; height: 15px; color: rgba(10, 14, 42, 0.35); transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1), color 240ms ease; }
a.tile:hover .tile-go svg { color: var(--violet); transform: translate(2px, -2px); }
.t-feat { background: linear-gradient(150deg, rgba(208, 197, 251, 0.38), rgba(208, 197, 251, 0.16)); }
.t-feat h2 { font-size: clamp(22px, 2.3vw, 30px); max-width: 30ch; }
.t-feat .tile-hook { max-width: 68ch; font-size: 14px; }

.article-head { max-width: 880px; margin-inline: auto; padding: calc(var(--frame-gap) + clamp(84px, 10vh, 108px)) var(--pad-x) clamp(28px, 4vh, 40px); }
.article-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--violet); margin-bottom: 16px; }
.article-head h1 { font-weight: 700; font-size: clamp(2rem, 3.5vw, 2.9rem); line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); max-width: 24ch; }
.article-dek { margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 58ch; }
.article-meta { margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(10, 14, 42, 0.12); display: flex; flex-wrap: wrap; gap: 8px 22px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.article { max-width: 880px; margin-inline: auto; padding: 0 var(--pad-x) clamp(40px, 5vh, 56px); }
.article > * { max-width: 660px; }
.article p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.75; color: rgba(10, 14, 42, 0.82); }
.article h2 { margin: 36px 0 14px; font-size: 21px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.article .pull { margin: 30px 0; padding: 4px 0 4px 22px; border-left: 2px solid var(--violet); font-size: 19px; line-height: 1.5; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.article ul { margin: 0 0 18px; list-style: none; }
.article ul li { position: relative; padding: 5px 0 5px 25px; font-size: 15.5px; line-height: 1.6; color: rgba(10, 14, 42, 0.82); }
.article ul li::before { content: ""; position: absolute; left: 2px; top: calc(5px + 0.8em); width: 12px; height: 10px; background: var(--violet); opacity: 0.8; transform: translateY(-50%); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat; }

.monday { position: relative; margin: 44px 0 0; max-width: 660px; background: linear-gradient(150deg, rgba(208, 197, 251, 0.34), rgba(208, 197, 251, 0.14)); border-radius: 22px; padding: clamp(22px, 2.6vw, 30px); }
.monday h2 { margin: 0 0 12px; font-size: 17px; }
.monday ul { margin: 0; }
.monday ul li { font-weight: 500; color: var(--ink); font-size: 14.5px; }

.article-nav { max-width: 880px; margin-inline: auto; padding: 0 var(--pad-x) clamp(48px, 6vh, 72px); display: flex; justify-content: space-between; gap: 18px; }
.article-nav a { display: flex; flex-direction: column; gap: 6px; max-width: 42%; text-decoration: none; }
.article-nav a span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.article-nav a strong { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); transition: color 240ms ease; }
.article-nav a:hover strong { color: var(--violet); }
.article-nav .next { text-align: right; align-items: flex-end; }

@media (max-width: 1180px) { .s4 { grid-column: span 6; } }
@media (max-width: 700px) { .s4, .s6 { grid-column: span 12; } .article-nav { flex-direction: column; } .article-nav a { max-width: none; } }

/* ---------- v22: case files + about ---------- */

.case-card {
  margin: 4px 0 30px;
  max-width: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
  border: 1px solid rgba(10, 14, 42, 0.12);
  border-radius: 16px;
  padding: 16px 20px;
  background: #fff;
  box-shadow: 0 20px 50px -44px rgba(4, 13, 76, 0.4);
}
.case-row { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; }
.case-row span { flex: 0 0 86px; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.case-row strong { font-weight: 500; color: var(--ink); }
.redact {
  position: relative;
  display: inline-block;
  min-width: var(--w, 11ch);
  height: 15px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, rgba(9, 16, 58, 0.85) 0 16px, rgba(9, 16, 58, 0.72) 16px 17px);
}
.redact i { position: absolute; inset: 0; display: grid; place-items: center; font-style: normal; font-size: 7.5px; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(208, 197, 251, 0.6); }

.about-plate {
  position: relative;
  width: min(calc(100% - 2 * var(--frame-gap)), calc(var(--maxw) - 2 * var(--pad-x)));
  margin: 0 auto clamp(16px, 2.4vh, 24px);
  border-radius: 26px;
  overflow: hidden;
  height: clamp(300px, 46vh, 500px);
}
.about-plate img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; filter: saturate(1.04) contrast(1.02); }
.about-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(111, 73, 252, 0.32) 0%, rgba(111, 73, 252, 0.1) 46%, rgba(208, 197, 251, 0.06) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.about-plate figcaption.plate-note {
  position: absolute;
  left: 22px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 251, 255, 0.85);
  text-shadow: 0 1px 10px rgba(4, 13, 76, 0.5);
}
@media (max-width: 700px) { .case-card { grid-template-columns: 1fr; } }

@media (max-width: 700px) {
  .article .cap-chip.chip-tr {
    display: none;
  }
}

/* v23: case card sizing inside article flow */
.article .case-card p { margin: 0; font-size: 11px; line-height: 1.5; }
.article .case-card .case-row span { font-size: 9.5px; }


/* ---------- v25 ---------- */

.cap-media.map img { transform: none; scale: 1 !important; }

/* neutral grade for the user-supplied guard photo */
.cap-media-wide .cap-media img { filter: contrast(1.02); }

/* consent bar */
.consent {
  position: fixed;
  left: 50%; bottom: 18px;
  z-index: 90;
  transform: translate(-50%, 130%);
  opacity: 0;
  width: min(92vw, 640px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px 14px 20px;
  border-radius: 18px;
  background: rgba(251, 251, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(10, 14, 42, 0.12);
  box-shadow: 0 24px 60px -24px rgba(4, 13, 76, 0.35);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}
.consent.is-up { transform: translate(-50%, 0); opacity: 1; }
.consent p { flex: 1; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.consent p a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.consent-actions { display: flex; gap: 8px; }
.consent-actions button {
  font: 600 12.5px/1 var(--font-sans);
  letter-spacing: 0.01em;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.consent-accept { background: var(--violet); color: #fff; }
.consent-accept:hover { background: #5d38e8; }
.consent-decline { background: transparent; color: var(--muted); border-color: rgba(10, 14, 42, 0.16); }
.consent-decline:hover { color: var(--ink); border-color: rgba(10, 14, 42, 0.34); }

/* footer legal row */
.footer-legal {
  display: flex;
  gap: 22px;
  justify-content: center;
  padding: 16px 0 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-legal a { color: rgba(251, 251, 255, 0.55); transition: color 200ms ease; }
.footer-legal a:hover { color: #fff; }
.footer-light .footer-legal a { color: rgba(4, 13, 76, 0.5); }
.footer-light .footer-legal a:hover { color: var(--ink); }

/* classy micro flags */
.flag {
  display: inline-block;
  width: 16px; height: 11px;
  margin-right: 9px;
  border-radius: 2.5px;
  vertical-align: -1px;
  box-shadow: inset 0 0 0 1px rgba(10, 14, 42, 0.14);
  opacity: 0.92;
}

/* photo tile (analyst) */
.tile-photo { position: relative; padding: 0; overflow: hidden; min-height: 280px; }
.tile-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: saturate(0.9) contrast(1.02); }
.tile-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(111, 73, 252, 0.18), rgba(111, 73, 252, 0) 55%); mix-blend-mode: screen; pointer-events: none; }
.s9 { grid-column: span 9; }
@media (max-width: 1180px) { .s9 { grid-column: span 12; } }

/* about rhythm: three clear parts */
.about-plate { margin-bottom: clamp(44px, 6.5vh, 76px); }
.about-plate img { transform: scaleX(-1); }
#who .t-info { margin-bottom: clamp(22px, 3.5vh, 44px); }

/* ---------- v26 ---------- */

/* sector consoles */
.sector { position: relative; }
.sector p { transition: opacity 320ms ease; }
.sector.is-logging p { opacity: 0.08; }
.sector-log {
  position: absolute;
  left: clamp(28px, 3vw, 44px);
  right: clamp(28px, 3vw, 44px);
  bottom: clamp(14px, 1.6vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(4, 13, 76, 0.62);
  pointer-events: none;
}
.sector-log span { display: block; animation: logIn 360ms ease both; }
.sector-log span::before { content: "› "; color: var(--violet); }
@keyframes logIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* puzzle continuity: a lip that would snap into the notch above */
.tile-tab::before {
  content: "";
  position: absolute;
  top: -13px;
  right: 24px;
  width: clamp(110px, 12vw, 175px);
  height: 13px;
  background: inherit;
  border-radius: 12px 12px 0 0;
}
@media (max-width: 900px) { .tile-tab::before { display: none; } }

/* compliance tile with the analyst at its side */
.tile-inset-photo { position: relative; border-radius: 14px; overflow: hidden; min-height: 240px; }
.tile-inset-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; filter: saturate(0.9) contrast(1.02); }
.tile-inset-photo img[data-parallax] {
  top: -6%;
  bottom: auto;
  height: 112%;
  will-change: transform;
}
.tile-inset-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(111, 73, 252, 0.16), rgba(111, 73, 252, 0) 55%); mix-blend-mode: screen; }

/* ---------- v27 ---------- */

/* map: plain artwork, top shade neutralized */
.cap-media.map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(251, 251, 255, 0.4), rgba(251, 251, 255, 0) 14%);
  pointer-events: none;
}

/* float CTA: one slow underline, no shake */
.float-cta { position: relative; }
.float-cta::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 9px;
  height: 1px;
  background: rgba(251, 251, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 140ms ease;
}
.float-cta:hover::after { opacity: 1; transform: scaleX(1); }

/* sectors: the title steps aside for the console */
.sector h3 { transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1); }
.sector.is-logging h3 { transform: translateY(-16px); }

/* blog: back to the board */
.back-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid rgba(10, 14, 42, 0.18);
  color: var(--ink);
  transition: color 220ms ease, border-color 220ms ease, transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.back-disc svg { width: 17px; height: 17px; }
.back-disc:hover { color: var(--violet); border-color: rgba(111, 73, 252, 0.5); transform: translate(-2px, -2px); }

/* services tree: status tags */
.tree li b { padding: 2px 8px; border-radius: 6px; justify-content: flex-end; white-space: nowrap; }
.tree .ok { color: #47775a; background: rgba(76, 128, 94, 0.1); }
.tree .ok::before { background: #58936e; }
.tree .flag {
  display: inline-flex;
  width: auto;
  height: auto;
  margin-right: 0;
  border-radius: 6px;
  vertical-align: baseline;
  box-shadow: none;
  color: #a4525a;
  background: rgba(184, 85, 92, 0.1);
}
.tree .flag::before { background: #b8666c; }
.tree .risk { color: var(--violet); background: rgba(111, 73, 252, 0.09); animation: riskText 2.6s ease-in-out infinite; }
.tree .risk::before { animation: riskPulse 2.2s ease-in-out infinite; }
@keyframes riskPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes riskText { 0%, 100% { opacity: 1; } 50% { opacity: 0.62; } }

/* ---------- v28 ---------- */

/* trusted-by band: quiet wordmarks, a light that roams */
.trust { position: relative; max-width: var(--maxw); margin-inline: auto; padding: clamp(30px, 4vh, 46px) var(--pad-x) clamp(78px, 11vh, 110px); }
.trust::after {
  content: "";
  position: absolute;
  right: var(--pad-x);
  bottom: 24px;
  width: min(28vw, 230px);
  height: 12px;
  background:
    linear-gradient(90deg, rgba(122, 91, 255, 0), rgba(122, 91, 255, 0.18), rgba(122, 91, 255, 0)),
    linear-gradient(90deg, rgba(10, 14, 42, 0), rgba(10, 14, 42, 0.14), rgba(10, 14, 42, 0));
  background-size: 100% 1px, 72% 1px;
  background-position: 0 3px, 100% 9px;
  background-repeat: no-repeat;
  opacity: 0.72;
  animation: trace-drift 4.8s var(--ease-out) infinite;
}
.trust-kicker { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px clamp(28px, 4vw, 56px); border-top: 1px solid rgba(10, 14, 42, 0.1); padding-top: 22px; }
.trust-row li { font-weight: 650; font-size: clamp(15px, 1.3vw, 18px); letter-spacing: -0.01em; color: rgba(4, 13, 76, 0.32); transition: color 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1); }
.trust-row li span { font-weight: 500; font-size: 0.72em; letter-spacing: 0.02em; color: rgba(4, 13, 76, 0.3); }
.trust-row li.is-lit { color: rgba(4, 13, 76, 0.78); transform: translateY(-2px); }
.trust-row li.is-lit span { color: rgba(4, 13, 76, 0.55); }

/* approach breathes closer to governance */
.approach { padding-top: clamp(40px, 5vw, 68px); }

/* blog hover peek */
.tile-mid { flex: 1; display: grid; }
.tile-mid > * { grid-area: 1 / 1; }
.tile-peek { opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 260ms; pointer-events: none; }
.tile-peek ul { list-style: none; margin-top: 8px; }
.tile-peek li { position: relative; padding: 2.5px 0 2.5px 16px; font-size: 12.5px; line-height: 1.5; color: rgba(4, 13, 76, 0.78); }
.tile-peek li::before { content: ""; position: absolute; left: 0; top: calc(2.5px + 0.75em); width: 10px; height: 8px; background: var(--violet); opacity: 0.75; transform: translateY(-50%); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 408.36 341.59'%3E%3Cpath d='m332.72 190.95-128.54 74.21-128.5-74.21v-103.5L0 43.74v150.01c0 25.32 13.51 48.71 35.43 61.37l133.32 76.97c21.93 12.66 48.94 12.66 70.87 0l133.32-76.97c21.92-12.66 35.43-36.05 35.43-61.37V43.74l-75.64 43.71v103.5Z'/%3E%3Cpath d='M295.92 21.33 204.18 74.31 112.45 21.33 75.64 0v87.44l128.54 74.15 128.54-74.15V.07Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.tile-tags { margin-top: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); }
@media (hover: hover) {
  a.tile:hover .tile-hook { opacity: 0; visibility: hidden; transition-delay: 500ms, 680ms; }
  a.tile:hover .tile-peek { opacity: 1; visibility: visible; transform: none; transition-delay: 500ms, 500ms, 0s; }
  .tile-hook { transition: opacity 180ms ease, visibility 0s linear 0s; }
}

/* blog subject rail */
.board-filter { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 4px 22px; padding-bottom: 4px; }
.board-filter button {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  position: relative;
  transition: color 220ms ease;
}
.board-filter button::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--violet); transform: scaleX(0); transform-origin: left; transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1); }
.board-filter button:hover { color: var(--ink); }
.board-filter button.is-active { color: var(--violet); }
.board-filter button.is-active::after { transform: scaleX(1); }
.tile.is-filtered { display: none; }

/* legal links inline in trimmed footers */
.fb-legal a { color: inherit; transition: color 200ms ease; }
.footer .fb-legal a:hover { color: #fff; }
.footer-light .fb-legal a:hover { color: var(--ink); }

/* the LinkedIn mark: quiet square, violet when it matters */
.li-btn {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  margin-left: 2px;
  vertical-align: -8px;
  border-radius: 8px;
  border: 1px solid rgba(251, 251, 255, 0.22);
  color: rgba(251, 251, 255, 0.62);
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.li-btn svg { width: 13px; height: 13px; }
.li-btn:hover { color: #fff; background: #0A66C2; border-color: #0A66C2; transform: translateY(-1px); animation: liBrand 700ms ease 1.3s forwards; }
.footer-light .li-btn { border-color: rgba(4, 13, 76, 0.22); color: rgba(4, 13, 76, 0.55); }
.footer-light .li-btn:hover { color: #fff; background: #0A66C2; border-color: #0A66C2; animation: liBrand 700ms ease 1.3s forwards; }
@keyframes liBrand { to { background: var(--violet); border-color: var(--violet); } }
.footer-contact .li-btn { margin-top: 14px; width: 30px; height: 30px; }
.footer-contact .li-btn svg { width: 15px; height: 15px; }

/* contact page */
.contact-wrap { max-width: var(--maxw); margin-inline: auto; padding: 0 var(--pad-x) clamp(48px, 6vh, 72px); display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); gap: clamp(28px, 4vw, 64px); align-items: stretch; }
.contact-plate { position: relative; border-radius: clamp(22px, 2.6vw, 32px); overflow: hidden; min-height: 480px; background: #cfd3de; }
.contact-plate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% 55%; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-field { display: flex; flex-direction: column; gap: 6px; }
.f-field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.f-field input, .f-field select, .f-field textarea {
  border: 1px solid rgba(10, 14, 42, 0.16);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  font: 500 14.5px/1.4 var(--font-sans);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.f-field textarea { resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(111, 73, 252, 0.14); }
.f-err { display: none; font-size: 12px; color: #a4525a; }
.f-field.is-bad input, .f-field.is-bad textarea { border-color: rgba(184, 85, 92, 0.65); }
.f-field.is-bad .f-err, .f-consent.is-bad .f-err { display: block; }
.f-consent { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; color: var(--muted); }
.f-consent a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.f-consent input { accent-color: var(--violet); margin-right: 8px; }
.f-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-top: 4px; }
.f-actions .disc-btn { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%; order: 2; }
.f-actions .disc-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
}
.f-done {
  margin-top: -4px;
  text-align: right;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--violet);
}
.f-done strong {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } .contact-plate { min-height: 300px; } .f-row { grid-template-columns: 1fr; } }

/* v30 */
.article-cta { max-width: 660px; margin: 22px 0 0; padding-top: 16px; border-top: 1px solid rgba(10, 14, 42, 0.1); font-size: 14px; color: var(--muted); }
.article-cta a { color: var(--violet); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* v31 */
.tile-sub-tags { margin-left: auto; font-size: 9.5px; letter-spacing: 0.16em; color: rgba(4, 13, 76, 0.42); }

/* v32 */
/* kill the first-paint flash: entrance elements start hidden once JS is on */
@media (prefers-reduced-motion: no-preference) {
  body:not(.no-js) [data-wordmark],
  body:not(.no-js) [data-hero-rise],
  body:not(.no-js) [data-carve-c],
  body:not(.no-js) [data-dock-nav] a { opacity: 0; }
}
/* article CTA with the house disc */
.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.article-cta span { flex: 1; }
.cta-disc { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--violet); color: #fff; box-shadow: 0 12px 26px -12px rgba(111, 73, 252, 0.55); transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.cta-disc svg { width: 15px; height: 15px; }
.cta-disc:hover { transform: translate(2px, -2px); }
/* contact: Submit beside the disc, same line */
.f-actions .footer-form-note { flex-basis: auto; }

/* v34 */
.article-cta a.cta-disc { color: #fff; text-decoration: none; }
/* footer nav: wrap allowed, underline hugs each line exactly */
.footer-grid nav a { white-space: normal; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color 200ms ease, text-decoration-color 320ms ease; }
.footer-grid nav a::after { display: none; }
.footer-grid nav a:hover { text-decoration-color: var(--violet-bright); }
/* LinkedIn mark centered with its row */
.footer-base span { display: inline-flex; align-items: center; gap: 8px; }
.li-btn { vertical-align: middle; margin-left: 0; }
/* explicit Submit beside the disc */
.f-actions .footer-form-note { flex-basis: auto; color: var(--ink); font-weight: 600; letter-spacing: 0.14em; }

@media (max-width: 700px) {
  .svcb-hero {
    padding-top: max(136px, calc(env(safe-area-inset-top) + 116px));
  }
  .footer-cta {
    padding-bottom: 16px;
  }
  .footer-cta .display {
    max-width: 13ch;
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }
  .footer-cta-copy p {
    margin-top: 10px;
    font-size: 13.5px;
  }
  .footer-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
  }
  .footer-form input {
    min-width: 0;
    flex-basis: auto;
  }
  .footer-form .disc-btn {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-form-note {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    display: none;
  }
  .footer-contact .li-btn {
    margin-top: 0;
    width: 28px;
    height: 28px;
  }
  .tree li {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    align-items: start;
    font-size: 10.5px;
    line-height: 1.45;
  }
  .tree li b {
    justify-self: start;
    margin-left: 20px;
    white-space: nowrap;
  }
}

@media (max-width: 700px) {
  .dock-nav {
    width: calc(100vw - 32px);
    max-width: 680px;
    gap: clamp(8px, 2.4vw, 16px);
    padding: 9px 12px;
  }
  .dock-nav a {
    -webkit-tap-highlight-color: transparent;
    border-radius: 999px;
    transition: background-color 180ms ease, color 180ms ease;
    font-size: clamp(11px, 3.05vw, 13px);
  }
  .dock-nav a:active {
    background: rgba(111, 73, 252, 0.1);
    color: var(--ink);
  }
  .svcb-hero {
    padding-top: max(80px, calc(env(safe-area-inset-top) + 66px));
  }
  .hero-field {
    height: clamp(360px, 50vh, 500px);
    border-radius: 28px;
  }
  @supports (clip-path: polygon(0 0)) {
    .hero-field {
      clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 78px),
        calc(100% - 178px) calc(100% - 78px),
        calc(100% - 178px) 100%,
        0 100%
      );
    }
  }
  .hero-copy-sub { order: 4; }
  .hero-chip {
    order: 3;
    position: relative;
    align-self: flex-end;
    margin-top: -58px;
    margin-bottom: 20px;
    padding: 10px 16px 0 14px;
    gap: 10px;
    z-index: 3;
  }
  .hero-chip .chip-thumb {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .hero-chip strong { font-size: 14px; }
  .hero-chip em { font-size: 11.5px; }

  .cap-media img[data-parallax] {
    height: 112%;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .cap-media.map img[data-parallax] {
    height: 112%;
  }

  .trust {
    text-align: center;
    padding-top: 34px;
  }
  .trust-kicker {
    margin-bottom: 14px;
  }
  .trust-row {
    justify-content: center;
    gap: 12px 18px;
    padding-top: 18px;
  }
  .trust-row li {
    font-size: 14px;
  }
  .trust-row li:nth-child(6) {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.1;
  }
  .trust-row li:nth-child(6) span {
    display: block;
    font-size: 0.68em;
  }

  .consent {
    bottom: 10px;
    width: min(88vw, 360px);
    gap: 8px;
    padding: 8px 9px 8px 11px;
    border-radius: 13px;
  }
  .consent p {
    font-size: 10.5px;
    line-height: 1.3;
  }
  .consent-actions {
    gap: 5px;
  }
  .consent-actions button {
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 11px;
  }

  .board-part strong {
    color: var(--violet);
  }
  .tree .flag {
    animation: flagBlink 1.35s ease-in-out infinite;
  }
  @keyframes flagBlink {
    0%, 100% {
      color: #a4525a;
      background: rgba(184, 85, 92, 0.12);
      box-shadow: 0 0 0 0 rgba(184, 85, 92, 0);
    }
    50% {
      color: #8f3842;
      background: rgba(184, 85, 92, 0.22);
      box-shadow: 0 0 0 3px rgba(184, 85, 92, 0.08);
    }
  }

  .sector.featured h3 {
    color: var(--ink);
  }
  .sector.is-lit,
  .sector:hover {
    background: var(--paper);
  }
  .sector h3 {
    transition-duration: 980ms;
  }
  .sector.is-logging h3 {
    transform: translateY(-12px);
  }
  .sector-log {
    bottom: 10px;
    font-size: 10px;
  }
}

@media (max-width: 700px) {
  .hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "mark chip"
      "field field"
      "kicker kicker"
      "lede lede";
    align-items: center;
    gap: 15px 14px;
    padding-top: 4px;
  }
  .hero-copy {
    display: contents;
  }
  .hero-copy-main {
    display: contents;
  }
  .hero-kicker {
    grid-area: kicker;
    justify-self: center;
    max-width: none;
    padding: 0;
    margin: 2px 0 0;
    text-align: center;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    line-height: 1.55;
  }
  .wordmark {
    grid-area: mark;
    padding-left: 4px;
  }
  .wordmark-img {
    width: clamp(148px, 42vw, 196px);
  }
  .hero-copy-sub {
    display: contents;
  }
  .hero-cta {
    display: none;
  }
  .hero-lede {
    grid-area: lede;
    max-width: none;
    width: calc(100% - 24px);
    margin-top: 0;
    margin-inline: auto;
    padding: 0;
    text-align: justify;
    text-align-last: left;
    font-size: 13.8px;
    line-height: 1.55;
  }
  .hero-field {
    grid-area: field;
    height: auto;
    aspect-ratio: 1.58;
    margin-top: 2px;
    border-radius: 22px;
    clip-path: none !important;
  }
  .hero-chip {
    grid-area: chip;
    position: static;
    justify-self: end;
    margin: 0;
    padding: 0;
    gap: 7px;
  }
  .hero-chip .chip-thumb {
    display: none;
  }
  .hero-chip strong {
    font-size: 12px;
  }
  .hero-chip em {
    font-size: 10px;
  }

  .trust {
    position: relative;
    padding-bottom: clamp(50px, 14vw, 68px);
  }
  .trust::after {
    content: "";
    position: absolute;
    right: var(--pad-x);
    bottom: 18px;
    width: min(48vw, 190px);
    height: 12px;
    background:
      linear-gradient(90deg, rgba(122, 91, 255, 0), rgba(122, 91, 255, 0.18), rgba(122, 91, 255, 0)),
      linear-gradient(90deg, rgba(10, 14, 42, 0), rgba(10, 14, 42, 0.14), rgba(10, 14, 42, 0));
    background-size: 100% 1px, 72% 1px;
    background-position: 0 3px, 100% 9px;
    background-repeat: no-repeat;
    opacity: 0.72;
    animation: trace-drift 4.8s var(--ease-out) infinite;
  }

  .manifesto {
    padding-top: clamp(54px, 16vw, 72px);
  }

  .threat-index li:last-child {
    border-bottom: 0;
  }

  .approach {
    padding-top: 42px;
    padding-bottom: 52px;
  }
  .approach > .kicker {
    margin-bottom: 10px;
  }
  .approach .display {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 0.98;
  }
  .steps-wrap {
    margin-top: 22px;
  }
  .steps {
    gap: 10px;
  }
  .steps li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 2px 14px;
    align-items: baseline;
    padding: 12px 0;
    border-top: 1px solid rgba(10, 14, 42, 0.1);
  }
  .steps li:last-child {
    border-bottom: 0;
  }
  .steps li i {
    grid-row: 1 / span 2;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .steps h3 {
    margin-top: 0;
    font-size: 1.08rem;
  }
  .steps p {
    margin-top: 2px;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-inline: var(--pad-x);
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(208, 197, 251, 0.34), rgba(251, 251, 255, 0.82));
    box-shadow: inset 0 0 0 1px rgba(10, 14, 42, 0.06);
  }
  .proof::before {
    display: none;
  }
  .stat {
    padding: 12px 10px;
    border-top: 0;
    border-radius: 15px;
    background: rgba(251, 251, 255, 0.68);
  }
  .stat-label {
    margin-bottom: 7px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .stat strong {
    font-size: clamp(1.25rem, 6.8vw, 1.68rem);
    white-space: nowrap;
  }
  .stat-note {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.35;
  }
  .sectors {
    margin-top: 22px;
  }
}

@keyframes trace-drift {
  0%, 100% { transform: translateX(-8px); opacity: 0.42; }
  45% { transform: translateX(8px); opacity: 0.82; }
}

@media (prefers-reduced-motion: reduce) {
  .trust::after {
    animation: none;
  }
}
/* article inline figure (F-01) */
.article-fig { position: relative; max-width: 660px; margin: 28px 0; border-radius: 20px; overflow: hidden; }
.article-fig img { display: block; width: 100%; height: auto; aspect-ratio: 1200 / 1207; filter: saturate(0.92); }
/* accessibility: skip link + visible focus */
.skip-link { position: absolute; left: -9999px; top: 12px; z-index: 200; padding: 10px 16px; border-radius: 10px; background: var(--violet); color: #fff; font: 600 13px/1 var(--font-sans); }
.skip-link:focus { left: 12px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }
