/* ============================================================================
   Actual Agentic Attackers — title screen
   Persistent title (left). Hard-cut action sequence (right).
   Full-screen flash + centerpiece beat. Loops.
   ========================================================================== */

:root {
  --black:   #000;
  --ink:     #08090c;
  --white:   #ffffff;
  --soft:    rgba(255, 255, 255, 0.95);
  --dim:     rgba(255, 255, 255, 0.85);
  --faint:   rgba(255, 255, 255, 0.42);
  --hair:    rgba(255, 255, 255, 0.32);
  --red:     #ff1f30;
  --red-mid: #ff3a4a;
  --red-low: #cc1020;
  --pan-orange: #fa582d;
  --cortex-green: #00cc66;

  --display: "Helvetica Neue Condensed Bold", "HelveticaNeue-CondensedBold", "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  --serif:   Georgia, "Iowan Old Style", "Source Serif Pro", "Times New Roman", serif;
  --mono:    "SFMono-Regular", "JetBrains Mono", Consolas, "Liberation Mono", monospace;
  --brand:   "Inter", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  font-family: var(--mono);
  background: #000;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 42% at 26% 50%, rgba(22, 24, 30, 0.78) 0%, rgba(8, 9, 12, 0.5) 45%, rgba(0,0,0,0) 75%),
    #000;
  isolation: isolate;
}

.bars {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background:
    linear-gradient(180deg, #000 0 5.5vh, transparent 5.5vh calc(100% - 5.5vh), #000 calc(100% - 5.5vh));
}

.vignette {
  position: absolute;
  inset: 5.5vh 0;
  z-index: 47;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 88% at 50% 50%, transparent 55%, rgba(0,0,0,0.10) 88%, rgba(0,0,0,0.22) 100%);
  mix-blend-mode: multiply;
}

.scanlines {
  position: absolute;
  inset: 5.5vh 0;
  z-index: 48;
  pointer-events: none;
  background: repeating-linear-gradient(180deg,
    rgba(0,0,0,0) 0 2px,
    rgba(0,0,0,0.12) 2px 3px);
  mix-blend-mode: multiply;
  opacity: 0.38;
}

.grain {
  position: absolute;
  inset: -4%;
  z-index: 49;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 23% 31%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 74% 62%, rgba(0, 0, 0, 0.5) 0 1px, transparent 1px 5px);
  background-size: 170px 170px, 230px 230px;
  animation: grain 0.6s steps(2, end) infinite;
}
@keyframes grain {
  0%   { transform: translate3d(0, 0, 0); }
  25%  { transform: translate3d(-1.2%, 0.7%, 0); }
  50%  { transform: translate3d(0.8%, -0.8%, 0); }
  75%  { transform: translate3d(-0.6%, -0.5%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.stage.shake { animation: shake 320ms cubic-bezier(.36,.07,.19,.97); }
@keyframes shake {
  0%, 100% { transform: translate3d(0, 0, 0); }
  16% { transform: translate3d(-8px, 3px, 0); }
  34% { transform: translate3d(7px, -4px, 0); }
  52% { transform: translate3d(-4px, 5px, 0); }
  72% { transform: translate3d(3px, -1px, 0); }
}

/* Low-luminance climax wash. Keep this soft: scene 0 has no pre-roll warning. */
.screen-flash {
  position: fixed;
  inset: 0;
  z-index: 51;
  background: #4d050b;
  opacity: 0;
  pointer-events: none;
}
.screen-flash.fire { animation: screen-flash 620ms ease-out; }
@keyframes screen-flash {
  0%   { opacity: 0; }
  34%  { opacity: 0.34; }
  100% { opacity: 0; }
}

/* ============================================================================
   TITLE LOCKUP
   ========================================================================== */

.title {
  position: absolute;
  left: clamp(28px, 5vw, 96px);
  top: 50%;
  transform: translateY(-50%);
  /* lifted above the vignette (47). At z 48 the scanlines still paint
     over the title (later in DOM, same z) and the grain overlay still
     reads — so the CRT vibe stays — but the vignette's multiply darkening
     no longer drags the white text toward grey at the edges. */
  z-index: 48;
  width: min(46vw, 680px);
}
.title.flicker-out-a {
  animation: flicker-out-a 1500ms ease-in-out forwards;
}
@keyframes flicker-out-a {
  0%   { opacity: 1;    filter: blur(0); }
  20%  { opacity: 0.68; filter: blur(0.2px); }
  36%  { opacity: 0.9;  filter: blur(0); }
  62%  { opacity: 0.3;  filter: blur(0.8px); }
  78%  { opacity: 0.46; filter: blur(0.5px); }
  100% { opacity: 0;    filter: blur(2px); }
}

.title__h {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(60px, 6.4vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.008em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.05),
    0 18px 60px rgba(0, 0, 0, 0.72);
}

.title__h .word {
  display: block;
  white-space: nowrap;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(5px);
  animation: word-in 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.title__h .word:nth-child(1) { animation-delay: 200ms; }
.title__h .word:nth-child(2) { animation-delay: 580ms; }
.title__h .word:nth-child(3) { animation-delay: 960ms; }

@keyframes word-in {
  0%   { opacity: 0; transform: translateY(12px); filter: blur(5px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.title__h .word--glitch::before,
.title__h .word--glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
}
.title__h .word--glitch::before {
  color: var(--red-mid);
  mix-blend-mode: screen;
  animation: glitch-r 16s ease-in-out 2200ms infinite;
}
.title__h .word--glitch::after {
  color: rgba(110, 200, 255, 0.65);
  mix-blend-mode: screen;
  animation: glitch-b 16s ease-in-out 2200ms infinite;
}
@keyframes glitch-r {
  0%, 96%, 100% { opacity: 0; transform: translate3d(0, 0, 0); }
  97%  { opacity: 0.95; transform: translate3d(4px, -1px, 0); }
  98%  { opacity: 0;    transform: translate3d(-2px, 2px, 0); }
  99%  { opacity: 0.7;  transform: translate3d(5px, 0, 0); }
}
@keyframes glitch-b {
  0%, 96%, 100% { opacity: 0; transform: translate3d(0, 0, 0); }
  97%  { opacity: 0.65; transform: translate3d(-4px, 1px, 0); }
  98%  { opacity: 0; }
  99%  { opacity: 0.5;  transform: translate3d(-5px, 0, 0); }
}

/* ============================================================================
   BRANDMARK (palo alto + cortex), bottom-left
   ========================================================================== */

.brandmark {
  position: absolute;
  left: clamp(28px, 5vw, 96px);
  bottom: clamp(6vh, 6.5vh, 64px);
  /* lifted above the vignette so the logos read pure white */
  z-index: 48;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 60px;
}
.brandmark.brandmark--above {
  z-index: 53;
}
/* the brandmark element itself flickers offline; its two logos also drop
   on slightly different rhythms so they don't look synced */
.brandmark.flicker-out-b {
  animation: flicker-out-b 1500ms ease-in-out forwards;
}
@keyframes flicker-out-b {
  0%   { opacity: 1; }
  18%  { opacity: 0.62; }
  34%  { opacity: 0.92; }
  58%  { opacity: 0.22; }
  76%  { opacity: 0.38; }
  100% { opacity: 0; }
}
.brandmark.flicker-out-b .brand-wrap:nth-child(3) {
  /* cortex drops a touch later, with its own rhythm */
  animation: brand-flicker-out-alt 1600ms ease-in-out 140ms forwards;
}
@keyframes brand-flicker-out-alt {
  0%   { opacity: 1; }
  24%  { opacity: 0.74; }
  42%  { opacity: 0.95; }
  66%  { opacity: 0.28; }
  82%  { opacity: 0.4; }
  100% { opacity: 0; }
}

.brandmark__logo {
  display: block;
  width: auto;
}
.brandmark__logo--pan    { height: 55px; }
.brandmark__logo--cortex { height: 30px; }

/* scene 0 (cold open) — logos bumped 20% larger.
   The brandmark gets `.brandmark--clean` from scene 1 onward; without it
   we're in the cold-open glitch state, so target the inverse for a clean
   scope. */
.brandmark:not(.brandmark--clean) .brandmark__logo--pan    { height: 66px; }
.brandmark:not(.brandmark--clean) .brandmark__logo--cortex { height: 36px; }

.brandmark__sep {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--hair);
}

/* fade-in with glitch flicker — fires on mount */
.brandmark .brand--enter {
  animation: brand-flicker 1300ms ease-out forwards;
}
/* clean fade-in variant — used on slides where the logos should arrive
   quietly rather than glitch in */
.brandmark.brandmark--clean .brand--enter {
  animation: brand-fade-clean 600ms ease forwards;
}
@keyframes brand-fade-clean {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes brand-flicker {
  0%   { opacity: 0; }
  18%  { opacity: 0.42; }
  32%  { opacity: 0.12; }
  52%  { opacity: 0.78; }
  68%  { opacity: 0.46; }
  84%  { opacity: 1; }
  100% { opacity: 1; }
}

/* one-shot chromatic glitch ghost on the wordmarks */
.brandmark .brand--enter::before,
.brandmark .brand--enter::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 26px;
}

/* ============================================================================
   ACTION STAGE
   ========================================================================== */

.act {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50vw;
  /* lifted above the vignette so the placard / email / data cards
     read pure white. Scanlines still paint across at z 48 (later DOM). */
  z-index: 48;
  overflow: hidden;
}
.act.flicker-out-c {
  animation: flicker-out-c 1700ms ease-in-out forwards;
}
@keyframes flicker-out-c {
  0%   { opacity: 1;    filter: blur(0); }
  20%  { opacity: 0.58; filter: blur(0.3px); }
  38%  { opacity: 0.88; filter: blur(0); }
  64%  { opacity: 0.24; filter: blur(0.9px); }
  80%  { opacity: 0.36; filter: blur(0.6px); }
  100% { opacity: 0;    filter: blur(1.8px); }
}

.act__frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 8vh clamp(28px, 4vw, 72px);
}

.scene {
  position: absolute;
  left: clamp(28px, 4vw, 72px);
  right: clamp(28px, 4vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  animation: cut 100ms ease-out, drift 7s ease-out both;
}

@keyframes cut   { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes drift {
  0%   { translate: 0 0; }
  100% { translate: 0 -6px; }
}

/* ----- placard ------------------------------------------------------- */

/* Northvane stamps in at the same cadence as the title words —
   inherits the word-in keyframe so it feels like a 4th beat */
.s-placard {
  top: 14vh;
  opacity: 0;
  animation: word-in 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-placard__rule {
  display: block;
  width: 40px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--white);
  opacity: 0.85;
}
.s-placard__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: condensed;
  font-size: clamp(40px, 4.4vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.006em;
  color: var(--white);
}
.s-placard__sub {
  margin: 22px 0 0;
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--white);
}

/* ----- email subject (typed) ----------------------------------------- */

.s-email { top: 14vh; transform: none; }

.s-email__label {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--white);
}

.s-email__line {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(22px, 2.1vw, 38px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: var(--white);
}

.s-email__cur::after {
  content: "▍";
  display: inline-block;
  margin-left: 2px;
  color: var(--white);
  animation: caret 0.7s steps(2, end) infinite;
}

/* ----- agent chat (please hack → reverse shell) --------------------- */

.s-agent {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.4vh, 44px);
  animation: cut 100ms ease-out;
}

.s-agent__msg {
  opacity: 0;
  animation: fade-up-msg 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-agent__msg:nth-child(1) { animation-delay: 120ms; }
.s-agent__msg:nth-child(2) { animation-delay: 1500ms; }

@keyframes fade-up-msg {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.s-agent__role {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white);
}

.s-agent__text {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(16px, 1.5vw, 26px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--white);
}

.s-agent__shell {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  opacity: 0;
  transition: opacity 320ms ease;
}
.s-agent__shell.show { opacity: 1; }
.s-agent__shell.show::after {
  content: "▍";
  display: inline-block;
  margin-left: 4px;
  color: var(--white);
  animation: caret 0.7s steps(2, end) infinite;
  vertical-align: baseline;
}

.s-agent__cur::after {
  content: "▍";
  display: inline-block;
  margin-left: 2px;
  color: var(--white);
  animation: caret 0.7s steps(2, end) infinite;
}
.s-agent__cur.done { visibility: hidden; }

/* ----- terminal ------------------------------------------------------ */

.s-terminal {
  top: auto;
  bottom: 12vh;
  transform: none;
  font-family: var(--mono);
  font-size: clamp(18px, 1.7vw, 30px);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--white);
  word-break: break-all;
  line-height: 1.45;
}
.s-terminal__line::after {
  content: "▍";
  display: inline-block;
  margin-left: 2px;
  color: var(--white);
  animation: caret 0.7s steps(2, end) infinite;
}
@keyframes caret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ----- data ---------------------------------------------------------- */

.s-data { text-align: right; }
.s-data__label {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--white);
}
.s-data__value {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(28px, 3.4vw, 60px);
  letter-spacing: 0.002em;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}

/* ----- topology ------------------------------------------------------ */

.s-topology { animation: cut 100ms ease-out; width: 100%; max-width: 880px; }
.s-topology svg { width: 100%; height: auto; display: block; overflow: visible; }

/* Nodes and links are driven by JS class toggles (runTopology in coldopen.js)
   and CSS transitions. Multi-keyframe animations on SVG paths were rendering
   inconsistently across Chrome/Edge versions, especially the diagonal up-going
   directory path; transitions are bulletproof. */

.s-topology .node circle {
  fill: #08090c;
  stroke: #ffffff;
  stroke-width: 1.8;
  opacity: 0;
  transition: opacity 380ms ease-out,
              stroke 600ms ease-out,
              filter 600ms ease-out;
}
.s-topology .node text {
  fill: #ffffff;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 380ms ease-out;
}
.s-topology .node.shown circle,
.s-topology .node.shown text { opacity: 1; }
.s-topology .node.burned circle {
  stroke: var(--red);
  filter: drop-shadow(0 0 8px rgba(255, 31, 48, 0.55));
}

.s-topology .link {
  stroke: #ffffff;
  stroke-width: 2.2;
  fill: none;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  transition: stroke-dashoffset 540ms ease-out,
              stroke 600ms ease-out,
              stroke-width 600ms ease-out,
              filter 600ms ease-out;
}
.s-topology .link.drawn { stroke-dashoffset: 0; }
.s-topology .link.burned {
  stroke: var(--red);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 8px rgba(255, 31, 48, 0.65));
}
.s-topology .link-fill {
  fill: #ffffff;
  opacity: 0;
  transition: opacity 540ms ease-out,
              fill 600ms ease-out,
              filter 600ms ease-out;
}
.s-topology .link-fill.drawn { opacity: 1; }
.s-topology .link-fill.burned {
  fill: var(--red);
  filter: drop-shadow(0 0 8px rgba(255, 31, 48, 0.65));
}

/* ----- chat ---------------------------------------------------------- */

.s-chat { top: auto; bottom: 14vh; transform: none; }
.s-chat__quote {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.003em;
  color: var(--white);
}
.s-chat__attr {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(20px, 1.7vw, 32px);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--white);
}

/* ----- punch --------------------------------------------------------- */

.s-punch { top: 12vh; transform: none; }
.s-punch__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(56px, 6.4vw, 122px);
  line-height: 0.88;
  letter-spacing: -0.012em;
  color: var(--white);
}
.s-punch__state {
  margin: 22px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 46px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================================================
   CENTERPIECE — full-screen "who authorized that write?"
   ========================================================================== */

.centerpiece {
  position: fixed;
  inset: 5.5vh 0;
  /* lifted above the vignette (47) so the multiply darkening at the
     left/right edges doesn't read through onto terminal text. The scanlines
     (48) and grain (49) sit above the centerpiece and still wash across
     the main content for the CRT feel. */
  z-index: 48;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 clamp(24px, 8vw, 160px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 800ms ease;
}
.centerpiece.show { opacity: 1; }
.centerpiece.centerpiece--intro {
  inset: 0;
  z-index: 52;
  place-items: stretch;
  text-align: left;
  padding: 0;
  opacity: 1;
  transition: none;
}
.centerpiece.centerpiece--ethics {
  inset: 0;
  z-index: 52;
  place-items: stretch;
  text-align: left;
  padding: 0;
  opacity: 1;
  transition: none;
}
.centerpiece.centerpiece--blue-placeholder {
  inset: 0;
  z-index: 52;
  place-items: stretch;
  text-align: left;
  padding: 0;
  opacity: 1;
  transition: none;
}

/* the slow grow: 6.5s gentle camera-dolly from 0.92 → 1.08, no bounce */
.centerpiece__quote {
  margin: 0 0 40px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 116px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--red);
  text-shadow: 0 0 36px rgba(255, 31, 48, 0.42);
  transform: scale(0.92);
  opacity: 0;
  animation: centerpiece-grow 6500ms cubic-bezier(0.22, 0.6, 0.2, 1) forwards;
}
.centerpiece__attr {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(20px, 1.8vw, 34px);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fade-up 1400ms ease 900ms forwards;
}

@keyframes centerpiece-grow {
  0%   { opacity: 0;   transform: scale(0.92); filter: blur(8px); }
  18%  { opacity: 0.6; filter: blur(3px); }
  40%  { opacity: 0.95; filter: blur(0); }
  100% { opacity: 1;   transform: scale(1.08); filter: blur(0); }
}
@keyframes fade-up {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================================
   Presenter slides — render inside the centerpiece container so they inherit
   the full-screen centred layout. Logos persist independently in the
   brandmark element.
   ========================================================================== */

.slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1100px;
}

/* ----- slide: NO CAMERAS PLEASE — header alone ----------------------- */

.slide__h {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(58px, 6.4vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.006em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fade-up 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 200ms forwards;
}

/* ----- slide: dramatization disclaimer — film-credit feel ----------- */

.slide--dramatization {
  gap: clamp(20px, 2.8vh, 38px);
  max-width: 1400px;
}

.slide__line {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: condensed;
  font-style: normal;
  font-size: clamp(34px, 3.2vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.002em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fade-up 1500ms cubic-bezier(0.22, 0.7, 0.2, 1) forwards;
}
.slide__line:nth-child(1) { animation-delay: 400ms; }
.slide__line:nth-child(2) { animation-delay: 1900ms; }
.slide__line:nth-child(3) { animation-delay: 3400ms; }

/* ----- slide: PLEASE HACK — Claude-Code-style terminal recreation -- */

/* fixed-bound viewport: top/bottom clear of letterbox, well above logos.
   flex-end + overflow:hidden = newest content sits at the bottom and older
   lines scroll off the top */
.slide--please-hack {
  position: absolute;
  top: 8vh;
  bottom: 22vh;
  left: 50%;
  transform: translateX(-50%);
  width: 92vw;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-align: left;
  padding: 0;
}

.ph-stream {
  font-family: var(--mono);
  font-size: clamp(22px, 1.85vw, 34px);
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.ph-line {
  white-space: pre-wrap;
  min-height: 1em;
}

.ph-line--user {
  color: var(--white);
  margin: 0 0 0.6em;
}
.ph-line--user::before {
  content: "> ";
  color: var(--white);
}

.ph-line--agent {
  color: var(--white);
  margin: 0.45em 0 0.15em;
  padding-left: 1.4em;
  position: relative;
}
.ph-line--agent::before {
  content: "⏺";
  position: absolute;
  left: 0;
  color: var(--white);
}

.ph-line--tool {
  margin: 0.35em 0 0.15em;
  padding-left: 1.4em;
  position: relative;
  color: var(--white);
}
.ph-line--tool::before {
  content: "⏺";
  position: absolute;
  left: 0;
  color: var(--white);
}
.ph-line--tool .ph-tool-name { color: var(--white); }
.ph-line--tool .ph-tool-args { color: var(--white); }

.ph-line--output {
  margin: 0.1em 0 0.2em;
  padding-left: 2.0em;
  position: relative;
  color: var(--white);
  font-size: 0.92em;
}
.ph-line--output::before {
  content: "⎿";
  position: absolute;
  left: 0.85em;
  color: var(--white);
}

/* per-character reveal so typing doesn't reflow at word-wrap boundaries */
.ph-char { opacity: 0; }
.ph-char.show { opacity: 1; }

/* phrase highlight — chars typed inside [[…]] markers flash red as they
   reveal, then settle back to white. Each char fires its own animation
   on .show, so the glow rolls through the phrase in time with the typing. */
.ph-char.glow.show {
  animation: ph-flash 2400ms ease-out forwards;
}
@keyframes ph-flash {
  0%   { color: var(--white); text-shadow: 0 0 0 transparent; }
  8%   { color: var(--red);   text-shadow: 0 0 12px rgba(255, 31, 48, 0.90); }
  55%  { color: var(--red);   text-shadow: 0 0 8px  rgba(255, 31, 48, 0.55); }
  100% { color: var(--white); text-shadow: 0 0 0 transparent; }
}

/* ----- elapsed clock — top-right of slide 4 ------------------------- */

.ph-clock {
  position: fixed;
  top: calc(5.5vh + clamp(18px, 3vh, 38px));
  right: clamp(28px, 4vw, 80px);
  z-index: 13;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--mono);
  color: var(--white);
  opacity: 0;
  animation: fade-up 700ms ease 200ms forwards;
}
.ph-clock__label {
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white);
}
.ph-clock__time {
  font-size: clamp(22px, 2.0vw, 36px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.ph-clock__col {
  display: inline-block;
  margin: 0 1px;
  animation: blink 1s steps(2, end) infinite;
}

/* ----- dramatic popouts — centred, big, fire on key moments --------- */

.ph-popout {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 14;
  opacity: 0;
  animation: popout-fade 2500ms ease forwards;
}
.ph-popout__text {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(56px, 6.4vw, 134px);
  line-height: 0.96;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--red);
  text-shadow:
    0 0 36px rgba(255, 31, 48, 0.7),
    0 0 90px rgba(255, 31, 48, 0.35);
  text-align: center;
  white-space: pre-line;
  transform: scale(0.94);
  filter: blur(8px);
  animation: popout-grow 2500ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes popout-fade {
  0%   { opacity: 0; }
  9%   { opacity: 1; }
  82%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes popout-grow {
  0%   { transform: scale(0.94); filter: blur(8px); }
  9%   { transform: scale(1.0);  filter: blur(0); }
  82%  { transform: scale(1.03); filter: blur(0); }
  100% { transform: scale(1.06); filter: blur(2px); }
}

/* ----- VCR fast-forward effect ----------------------------------------- */

.stage.ff-active {
  animation: ff-jitter 0.05s linear infinite;
}
@keyframes ff-jitter {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(0.6px, 0); }
}

.ff-symbol {
  position: fixed;
  top: 12vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(48px, 5vw, 100px);
  color: var(--white);
  letter-spacing: 0.06em;
  z-index: 60;
  pointer-events: none;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.85);
  animation: ff-blink 0.18s steps(2, end) infinite;
}
@keyframes ff-blink {
  0%, 50%   { opacity: 0.95; }
  51%, 100% { opacity: 0.28; }
}

/* horizontal tracking bar travelling vertically — classic VCR FF artifact */
.ff-tracking {
  position: fixed;
  inset: 5.5vh 0;
  z-index: 48;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 44%,
      rgba(255, 255, 255, 0.18) 48%,
      rgba(120, 180, 255, 0.12) 50%,
      rgba(255, 220, 220, 0.16) 52%,
      transparent 56%,
      transparent 100%
    );
  background-size: 100% 240%;
  background-repeat: no-repeat;
  animation: ff-tracking-bar 0.22s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.85;
}
@keyframes ff-tracking-bar {
  0%   { background-position: 0 -120%; }
  100% { background-position: 0 120%; }
}

/* faster scanline + faint chromatic shimmer during FF */
.stage.ff-active .scanlines {
  animation: ff-scan-fast 0.6s linear infinite;
  opacity: 0.85;
}
@keyframes ff-scan-fast {
  from { background-position: 0 0; }
  to   { background-position: 0 -8px; }
}

/* ============================================================================
   responsive
   ========================================================================== */

@media (max-width: 980px) {
  .title { width: 88vw; left: 6vw; top: 12vh; transform: none; }
  .title__h { font-size: clamp(46px, 11vw, 88px); }
  .act { left: 0; right: 0; top: auto; bottom: 6vh; height: 36vh; width: 100%; }
  .brandmark {
    left: 6vw;
    right: 6vw;
    bottom: 7vh;
    gap: 14px;
  }
  .brandmark__logo--pan { height: 40px; }
  .brandmark__logo--cortex { height: 22px; }
  .brandmark:not(.brandmark--clean) .brandmark__logo--pan { height: 48px; }
  .brandmark:not(.brandmark--clean) .brandmark__logo--cortex { height: 26px; }
  .brandmark__sep { height: 26px; }
  .s-blue-placeholder {
    padding-left: 76px;
    padding-right: 22px;
  }
  .s-blue-placeholder__title {
    font-size: clamp(30px, 8.2vw, 50px);
    line-height: 0.98;
  }
  .s-placard__title, .s-punch__title { font-size: clamp(34px, 7vw, 68px); }
  .centerpiece__quote { font-size: clamp(30px, 7vw, 64px); }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .stage.shake, .scene,
  .title__h .word, .title__h .word--glitch::before, .title__h .word--glitch::after,
  .s-topology .link, .s-topology .link-fill, .s-topology .node circle, .s-topology .node text,
  .s-topology .node.compromise circle, .s-terminal__line::after,
  .brandmark .brand--enter, .centerpiece, .centerpiece__quote, .centerpiece__attr,
  .screen-flash,
  .s-ransom--dying, .s-ransom--dying::before, .s-ransom--dying::after,
  .s-ransom--dying > * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
    filter: none !important;
  }
}

/* ============================================================================
   SCENES 5-16 — story scenes
   Each scene renders into the centerpiece container. Source marks sit in the
   bottom-right corner; the brandmark stays in the bottom-left.
   ========================================================================== */

/* ----- shared: source citation mark -------------------------------- */

.src-mark {
  position: fixed;
  right: clamp(28px, 5vw, 96px);
  bottom: clamp(6vh, 6.5vh, 64px);
  height: 60px;
  z-index: 11;
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: clamp(15px, 1.2vw, 22px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  animation: src-fade 900ms ease 700ms forwards;
}
.src-mark::before {
  content: "src · ";
  opacity: 0.95;
}
@keyframes src-fade { to { opacity: 1; } }

/* ----- shared: typewriter line ------------------------------------- */

.tw {
  white-space: pre-wrap;
  display: inline-block;
}
.tw .ch { opacity: 0; }
.tw .ch.show { opacity: 1; }
.tw .cur::after {
  content: "▍";
  display: inline-block;
  margin-left: 1px;
  color: var(--white);
  animation: caret 0.7s steps(2, end) infinite;
}

/* ============================================================================
   SCENE 5 — Operator dossier
   ========================================================================== */

.s-operator {
  width: min(86vw, 1180px);
  display: grid;
  grid-template-columns: minmax(160px, 22vw) 1fr;
  gap: clamp(34px, 5.5vw, 88px);
  align-items: center;
}

.s-operator__silhouette {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse at 50% 30%, #14161c 0%, #06070b 70%, #02030a 100%);
  border: 1px solid var(--hair);
  overflow: hidden;
}
.s-operator__silhouette::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 14% 18% at 50% 30%, #1e2129 0%, transparent 65%),
    linear-gradient(180deg, transparent 38%, #02030a 60%);
  clip-path: polygon(50% 12%, 38% 38%, 30% 100%, 70% 100%, 62% 38%);
}

.s-operator__dossier { color: var(--white); }
.s-operator__handle {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(64px, 7vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 clamp(18px, 2.4vh, 28px);
}
.s-operator__attrs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: clamp(20px, 3vw, 44px);
  row-gap: clamp(8px, 1.4vh, 16px);
  font-family: var(--mono);
  font-size: clamp(16px, 1.28vw, 23px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.s-operator__attrs dt { color: var(--white); }
.s-operator__attrs dd { color: var(--white); margin: 0; }

.s-operator__row { display: contents; opacity: 0; animation: fade-up 700ms ease forwards; }
.s-operator__row:nth-child(1) { animation-delay: 700ms; }
.s-operator__row:nth-child(2) { animation-delay: 950ms; }
.s-operator__row:nth-child(3) { animation-delay: 1200ms; }
.s-operator__row:nth-child(4) { animation-delay: 1450ms; }
.s-operator__handle { opacity: 0; animation: fade-up 900ms ease 200ms forwards; }
.s-operator__silhouette { opacity: 0; animation: fade-up 1100ms ease 100ms forwards; }

/* ============================================================================
   SCENE 6 — Chat with the model (free tier)
   ========================================================================== */

.s-modelchat {
  width: min(82vw, 1080px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vh, 28px);
  font-family: var(--mono);
  font-size: clamp(15px, 1.3vw, 22px);
  line-height: 1.5;
  text-align: left;
}
.s-modelchat__bubble {
  padding: clamp(14px, 1.6vh, 22px) clamp(18px, 2.2vw, 28px);
  border: 1px solid var(--hair);
  background: rgba(8, 9, 13, 0.6);
  opacity: 0;
  animation: fade-up 600ms ease forwards;
}
.s-modelchat__bubble--user { color: var(--white); }
.s-modelchat__bubble--model { color: var(--soft); border-color: rgba(255,255,255,0.22); }
.s-modelchat__role {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================================================
   SCENE 7 — Recon (small business). Faithful reproduction of recon.mp4
   restaged. ChatGPT-style activity feed + sources panel.
   ========================================================================== */

.s-recon {
  width: min(92vw, 1500px);
  height: 70vh;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(18px, 2.2vw, 32px);
  font-family: var(--mono);
  text-align: left;
}
.s-recon__pane {
  border: 1px solid var(--hair);
  background: rgba(8, 9, 13, 0.65);
  padding: clamp(18px, 2vh, 28px) clamp(20px, 2.2vw, 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-recon__head {
  font-size: clamp(11px, 0.85vw, 14px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--hair);
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.s-recon__body {
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--white);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.s-recon__row {
  opacity: 0;
  animation: fade-up 380ms ease forwards;
}
.s-recon__row .key {
  display: inline-block;
  min-width: 9em;
  color: var(--white);
}
.s-recon__row .val { color: var(--white); }
.s-recon__src-row {
  opacity: 0;
  animation: fade-up 320ms ease forwards;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(12px, 0.95vw, 15px);
}
.s-recon__src-row::before {
  content: "○";
  color: var(--soft);
  font-size: 0.7em;
}
.s-recon__src-count {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: condensed;
  font-size: clamp(28px, 3vw, 56px);
  color: var(--white);
}

/* ============================================================================
   SCENE 8 — Chat groups scrolling
   ========================================================================== */

.s-groupchat {
  width: min(86vw, 1180px);
  height: 70vh;
  font-family: var(--mono);
  font-size: clamp(21px, 1.9vw, 34px);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-left: 1px solid var(--hair);
  padding-left: clamp(18px, 2vw, 32px);
}
.s-groupchat__msg {
  margin: 8px 0;
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: fade-up 320ms ease forwards;
}
.s-groupchat__who {
  flex-shrink: 0;
  min-width: 6em;
  color: var(--white);
  opacity: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82em;
}
.s-groupchat__msg .text { color: var(--white); opacity: 1; }
.s-groupchat__msg--alert .text { color: var(--red); }
.s-groupchat__msg--alert .s-groupchat__who { color: var(--red); opacity: 1; }

/* ============================================================================
   SCENE 8 — News cycle (he watched the news)
   ========================================================================== */

.s-news {
  position: absolute;
  inset: 8vh 0 18vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(40px, 7vw, 140px);
  text-align: left;
}
.s-news__card {
  max-width: 1200px;
  opacity: 0;
  animation: news-cycle 6200ms cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes news-cycle {
  0%   { opacity: 0; transform: translateY(16px) scale(1.000); }
  12%  { opacity: 1; transform: translateY(2px)  scale(1.005); }
  88%  { opacity: 1; transform: translateY(-8px) scale(1.028); }
  100% { opacity: 0; transform: translateY(-14px) scale(1.032); }
}
.s-news__src {
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 18px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: clamp(20px, 2.6vh, 32px);
}
.s-news__headline {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: condensed;
  font-size: clamp(40px, 4.4vw, 90px);
  line-height: 1.06;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
}

/* ============================================================================
   SCENE 9 — XBOW browser (legacy; kept for reference)
   ========================================================================== */

.s-xbow {
  width: min(86vw, 1280px);
  height: 70vh;
  border: 1px solid var(--hair);
  background: #0a0b10;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--brand);
  text-align: left;
}
.s-xbow__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--hair);
}
.s-xbow__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--hair); }
.s-xbow__url {
  margin-left: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--soft);
}
.s-xbow__page {
  flex: 1;
  padding: clamp(38px, 6vh, 80px) clamp(38px, 5vw, 90px);
  overflow: hidden;
}
.s-xbow__hero {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(42px, 5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0 0 24px;
  text-transform: none;
}
.s-xbow__sub {
  font-size: clamp(15px, 1.3vw, 22px);
  line-height: 1.5;
  color: var(--soft);
  max-width: 720px;
  margin: 0 0 clamp(28px, 4vh, 56px);
}
.s-xbow__pricecard {
  display: inline-block;
  padding: clamp(20px, 2.5vh, 32px) clamp(28px, 3vw, 48px);
  border: 1px solid var(--hair);
  background: rgba(255,255,255,0.04);
}
.s-xbow__pricecard .label {
  display: block;
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 13px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.s-xbow__pricecard .price {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(40px, 4.4vw, 84px);
  letter-spacing: -0.005em;
  color: var(--white);
}
.s-xbow__pricecard .price small { font-size: 0.4em; margin-left: 8px; letter-spacing: 0.18em; text-transform: uppercase; }

.s-xbow.closing { animation: xbow-close 320ms ease forwards; }
@keyframes xbow-close {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.985); }
}

/* ============================================================================
   SCENE 9 — Phishing (faithful recreation of phishing_email.mp4)
   Left: ph-line terminal stream. Right: rendered email in a viewport that
   slow-scrolls upward after the conversation completes.
   ========================================================================== */

.s-phish2 {
  position: absolute;
  inset: 8vh 0 18vh;
  width: 100%;
  font-family: var(--mono);
  color: var(--white);
}
/* shared vertical sizing — the terminal panel stays a little wider than
   the email viewport so the larger terminal copy keeps its rhythm without
   crowding the rendered message. */
.s-phish2__panel,
.s-phish2__email-wrap {
  position: absolute;
  top: 6%;
  bottom: 6%;
}
.s-phish2__panel {
  left: clamp(36px, 4vw, 80px);
  width: min(46vw, 720px);
  text-align: left;
  display: flex;
  align-items: center;
}
.s-phish2__panel .ph-stream {
  font-size: clamp(17px, 1.45vw, 26px);
  line-height: 1.5;
  color: var(--white);
  width: 100%;
}
.s-phish2__email-wrap {
  right: clamp(36px, 4vw, 80px);
  width: min(44vw, 700px);
  overflow: hidden;
  /* no box around the email — just the rendered content occupying the
     same vertical window as the terminal */
}
.s-phish2__email {
  padding: clamp(20px, 3vh, 40px) clamp(8px, 1vw, 16px);
  font-family: var(--brand);
  font-size: clamp(17px, 1.32vw, 24px);
  line-height: 1.6;
  color: var(--white);
  text-align: left;
  transform: translateY(0);
  animation: phish-scroll 48s linear 1500ms forwards;
}
@keyframes phish-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-36%); }
}
.s-phish2__label {
  font-family: var(--mono);
  font-size: 0.78em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.s-phish2__email-meta {
  font-family: var(--mono);
  font-size: 0.95em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.s-phish2__email-meta div { margin-bottom: 6px; color: var(--white); }
.s-phish2__email-meta .k { min-width: 4em; display: inline-block; color: var(--white); }
.s-phish2__email-body p { margin: 0 0 14px; color: var(--white); }
.s-phish2__email .flag { color: var(--red); font-weight: 800; margin: 0 3px; }
.s-phish2__sig { font-style: italic; margin-top: 22px; color: var(--white); }

/* ============================================================================
   SCENE 10 — Phishing (legacy canted-pane layout; retained for reference)
   ========================================================================== */

.s-phish {
  width: min(92vw, 1500px);
  height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 40px);
  text-align: left;
  perspective: 1400px;
}
.s-phish__pane {
  border: 1px solid var(--hair);
  background: rgba(8, 9, 13, 0.7);
  padding: clamp(18px, 2vh, 28px) clamp(22px, 2.4vw, 32px);
  font-family: var(--mono);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform-origin: center;
}
.s-phish__pane--prompt { transform: rotateY(2.2deg) rotateX(-1.2deg); }
.s-phish__pane--mail   { transform: rotateY(-2.4deg) rotateX(0.6deg); }
.s-phish__head {
  font-size: clamp(11px, 0.85vw, 14px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--hair);
  padding-bottom: 10px;
}
.s-phish__prompt {
  font-size: clamp(14px, 1.15vw, 19px);
  line-height: 1.5;
  color: var(--white);
}
.s-phish__assist {
  margin-top: 14px;
  font-size: clamp(13px, 1.05vw, 17px);
  line-height: 1.5;
  color: var(--soft);
}
.s-phish__mail {
  font-family: var(--brand);
  color: var(--white);
}
.s-phish__mail .meta {
  font-size: clamp(11px, 0.85vw, 14px);
  color: var(--white);
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 14px;
  font-family: var(--mono);
}
.s-phish__mail .subject {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: condensed;
  font-size: clamp(22px, 2.2vw, 38px);
  letter-spacing: -0.003em;
  margin: 0 0 18px;
}
.s-phish__mail .body {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--soft);
}

/* ============================================================================
   SCENE 11 — Capability upgrade
   ========================================================================== */

.s-upgrade {
  width: min(86vw, 1240px);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vh, 38px);
  text-align: left;
  font-family: var(--mono);
}
.s-upgrade__launch {
  padding: clamp(20px, 2.4vh, 32px) clamp(24px, 2.6vw, 40px);
  border: 1px solid var(--hair);
  background: rgba(8, 9, 13, 0.7);
  opacity: 0;
  animation: fade-up 700ms ease 200ms forwards;
}
.s-upgrade__label {
  font-size: clamp(11px, 0.85vw, 14px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.s-upgrade__model {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(38px, 4.4vw, 84px);
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
}
.s-upgrade__terminal {
  font-family: var(--mono);
  font-size: clamp(17px, 1.5vw, 26px);
  line-height: 1.55;
  padding: clamp(20px, 2.4vh, 32px) clamp(24px, 2.6vw, 40px);
  background: #04060a;
  border: 1px solid var(--hair);
  color: var(--white);
  opacity: 0;
  animation: fade-up 700ms ease 1500ms forwards;
}
.s-upgrade__terminal .prompt { color: var(--soft); margin-right: 8px; }
.s-upgrade__terminal .stamp { color: var(--white); font-size: 0.85em; margin-left: 14px; }
.s-upgrade__terminal .ok { color: #6ee07a; }
.s-upgrade--drops {
  width: min(80vw, 1120px);
}
.s-upgrade__drops {
  display: grid;
  gap: clamp(16px, 2vh, 26px);
}
.s-upgrade__drops div {
  padding: 0 0 clamp(12px, 1.5vh, 18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(44px, 5.4vw, 104px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: fade-up 620ms ease forwards;
}
.s-upgrade__drops div:nth-child(1) { animation-delay: 250ms; }
.s-upgrade__drops div:nth-child(2) { animation-delay: 900ms; }
.s-upgrade__drops div:nth-child(3) { animation-delay: 1550ms; }
.s-upgrade__drops div:nth-child(4) { animation-delay: 2200ms; }

/* ============================================================================
   SCENE 12 — Target picking chat
   ========================================================================== */

.s-target-chat {
  width: min(86vw, 1220px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vh, 22px);
  font-family: var(--mono);
  text-align: left;
  transform: translateY(-4vh);
}
.s-target-chat__bubble {
  padding: clamp(14px, 1.6vh, 22px) clamp(18px, 2.2vw, 28px);
  border: 1px solid var(--hair);
  background: rgba(8, 9, 13, 0.6);
  font-size: clamp(17px, 1.5vw, 26px);
}
.s-target-chat__bubble--user { color: var(--white); }
.s-target-chat__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.s-target-chat__item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--hair);
  color: var(--soft);
  font-size: clamp(14px, 1.08vw, 18px);
  opacity: 0;
  animation: fade-up 280ms ease forwards;
}
.s-target-chat__item.picked {
  background: rgba(255, 31, 48, 0.12);
  border-color: var(--red);
  color: var(--white);
  padding-left: 14px;
  padding-right: 14px;
  margin: 0 -14px;
  animation: pick-highlight 380ms ease forwards;
}
@keyframes pick-highlight {
  0%   { background: rgba(255, 31, 48, 0); }
  60%  { background: rgba(255, 31, 48, 0.36); }
  100% { background: rgba(255, 31, 48, 0.12); }
}
.s-target-chat__score { color: var(--white); font-variant-numeric: tabular-nums; }
.s-target-chat__item.picked .s-target-chat__score { color: var(--red); opacity: 1; }

/* ============================================================================
   SCENE 13 — Northvane dossier (recon at scale)
   Same chassis as Scene 7 but denser, more sources, more rows
   ========================================================================== */

/* reuses .s-recon */

/* ============================================================================
   SCENE 14 — Attack chain on Northvane (please-hack-style cuts)
   ========================================================================== */

.s-attack {
  position: absolute;
  top: 8vh;
  bottom: 22vh;
  left: 50%;
  transform: translateX(-50%);
  width: 92vw;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-align: left;
}
.s-attack__stream {
  font-family: var(--mono);
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.5;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.s-attack__line {
  white-space: pre-wrap;
  min-height: 1em;
}
.s-attack__line--user { color: var(--white); margin: 0 0 0.5em; }
.s-attack__line--user::before { content: "> "; color: var(--soft); }
.s-attack__line--agent { color: var(--soft); margin: 0.4em 0 0.1em; padding-left: 1.4em; position: relative; }
.s-attack__line--agent::before { content: "⏺"; position: absolute; left: 0; color: var(--soft); }
.s-attack__line--tool { color: var(--white); margin: 0.3em 0 0.1em; padding-left: 1.4em; position: relative; }
.s-attack__line--tool::before { content: "⏺"; position: absolute; left: 0; color: var(--white); }
.s-attack__line--out { color: var(--white); margin: 0.1em 0 0.2em; padding-left: 2em; position: relative; font-size: 0.9em; }
.s-attack__line--out::before { content: "⎿"; position: absolute; left: 0.85em; color: var(--white); }

/* ============================================================================
   SCENE 15 — Defender SOC tiled view
   ========================================================================== */

.s-defender {
  width: min(94vw, 1600px);
  height: 76vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 24px);
  font-family: var(--mono);
  text-align: left;
}
.s-defender__tile {
  border: 1px solid var(--hair);
  background: rgba(8, 9, 13, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.s-defender__head {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hair);
  font-size: clamp(10px, 0.78vw, 13px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}
.s-defender__body {
  flex: 1;
  padding: 12px 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(11px, 0.95vw, 16px);
  color: var(--white);
}
.s-defender__alert {
  display: flex;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  opacity: 0;
  animation: fade-up 280ms ease forwards;
}
.s-defender__alert .ts { color: var(--white); min-width: 4em; font-variant-numeric: tabular-nums; }
.s-defender__alert .sev { min-width: 4em; }
.s-defender__alert .sev--low { color: var(--white); }
.s-defender__alert .sev--med { color: var(--amber, #f5b54a); }
.s-defender__alert .sev--hi  { color: var(--red); }
.s-defender__alert .msg { color: var(--white); flex: 1; }

/* ============================================================================
   SCENE 16 — WHAM ransom screen
   ========================================================================== */

.s-wham {
  position: fixed;
  inset: 5.5vh 0;
  z-index: 13;
  background: #04050a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  font-family: var(--mono);
  text-align: left;
}
.s-wham__skull {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(80px, 11vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 0 40px rgba(255, 31, 48, 0.6);
  margin: 0 0 clamp(28px, 4vh, 56px);
  animation: wham-flash 280ms steps(2, end) 1;
}
.s-wham__body {
  max-width: 980px;
  font-size: clamp(15px, 1.3vw, 22px);
  line-height: 1.55;
  color: var(--white);
}
.s-wham__body p { margin: 0 0 14px; }
.s-wham__addr {
  margin-top: clamp(28px, 4vh, 56px);
  font-size: clamp(12px, 1vw, 16px);
  letter-spacing: 0.18em;
  color: var(--white);
  word-break: break-all;
}
.s-wham__deadline {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  border: 1px solid var(--red);
  font-family: var(--display);
  font-weight: 800;
  font-stretch: condensed;
  font-size: clamp(20px, 2vw, 36px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

@keyframes wham-flash {
  0%   { color: var(--white); text-shadow: 0 0 60px rgba(255,255,255,0.6); }
  50%  { color: var(--red);   text-shadow: 0 0 60px rgba(255,31,48,0.9); }
  100% { color: var(--red);   text-shadow: 0 0 40px rgba(255, 31, 48, 0.6); }
}

/* ============================================================================
   INCIDENT SEQUENCE — Scenes 13-19
   ========================================================================== */

.s-incident,
.s-triage,
.s-bridge,
.s-outage,
.s-picture {
  font-family: var(--mono);
  color: var(--white);
  text-align: left;
}

.s-incident {
  position: absolute;
  inset: 7vh 4vw 18vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 34px);
}
.s-incident__clock,
.s-triage__stamp {
  position: absolute;
  top: -34px;
  left: 0;
  font-size: clamp(12px, 1.1vw, 18px);
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.s-incident__pane,
.s-triage__ticket,
.s-triage__noise,
.s-bridge__transcript,
.s-bridge__tool,
.s-bridge__storm,
.s-outage__board,
.s-outage__calls,
.s-picture__card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.19);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018) 36%, rgba(255,31,48,0.025)),
    rgba(4, 6, 10, 0.78);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.055);
}
.s-incident__pane::before,
.s-triage__ticket::before,
.s-triage__noise::before,
.s-bridge__transcript::before,
.s-outage__board::before,
.s-outage__calls::before,
.s-picture__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.027) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.42;
}
.s-incident__pane {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.s-incident__pane--attack {
  border-color: rgba(255,255,255,0.24);
}
.s-incident__pane--defender {
  border-color: rgba(255,31,48,0.24);
}
.s-incident__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  font-size: clamp(10px, 0.82vw, 14px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.s-incident__head span:last-child {
  color: rgba(255,255,255,0.42);
}
.s-incident__stream,
.s-incident__signals {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: clamp(12px, 1.6vw, 22px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.s-incident__attack-line,
.s-incident__signal {
  opacity: 0;
  animation: incident-row-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-incident__attack-line {
  font-size: clamp(14px, 1.28vw, 23px);
  line-height: 1.34;
  text-shadow: 0 0 28px rgba(255,255,255,0.08);
}
.s-incident__attack-line--user::before { content: "> "; color: rgba(255,255,255,0.72); }
.s-incident__attack-line--agent { color: rgba(255,255,255,0.8); padding-left: 18px; }
.s-incident__attack-line--agent::before { content: "agent "; color: var(--red); }
.s-incident__attack-line--out { color: #7ee787; padding-left: 34px; }
.s-incident__attack-line--out::before { content: "ok "; color: rgba(126,231,135,0.72); }
.s-incident__signal {
  display: grid;
  grid-template-columns: 4.2em 6.4em minmax(0, 1fr);
  gap: 10px;
  padding: 8px 10px;
  border-left: 2px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.045);
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.28;
}
.s-incident__signal .ts,
.s-bridge__line .ts,
.s-triage__noise-row .ts,
.s-outage__call .ts,
.s-picture__card .ts {
  color: rgba(255,255,255,0.58);
  font-variant-numeric: tabular-nums;
}
.s-incident__signal .tool {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.76);
}
.s-incident__signal--low { border-color: rgba(255,255,255,0.22); }
.s-incident__signal--med { border-color: #f5b54a; }
.s-incident__signal--hi,
.s-incident__signal--critical {
  border-color: var(--red);
  background: rgba(255,31,48,0.12);
}
.s-incident__tempo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(9px, 0.75vw, 12px);
  color: rgba(255,255,255,0.58);
  text-align: center;
}
.s-incident__pulse {
  width: 4px;
  height: 46vh;
  background: linear-gradient(180deg, transparent, rgba(255,31,48,0.35), var(--red), rgba(255,31,48,0.35), transparent);
  box-shadow: 0 0 38px rgba(255,31,48,0.56);
  animation: incident-pulse 900ms ease-in-out infinite;
}
@keyframes incident-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.82); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes incident-row-in {
  0% { opacity: 0; transform: translateY(9px); filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.s-triage {
  position: absolute;
  inset: 8vh 4vw 18vh;
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.16fr) minmax(320px, 0.82fr);
  gap: clamp(16px, 2vw, 28px);
}
.s-triage__ticket,
.s-triage__noise {
  overflow: hidden;
  padding: clamp(16px, 1.8vw, 26px);
}
.s-triage__label,
.s-outage__label {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.62);
  font-size: clamp(10px, 0.82vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.s-triage__ticket h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(24px, 3.8vh, 44px);
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(38px, 4vw, 72px);
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--red);
  text-transform: uppercase;
}
.s-triage__meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: clamp(12px, 0.98vw, 16px);
  color: rgba(255,255,255,0.76);
}
.s-triage__lenses {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
}
.s-triage__lens {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    rgba(4,6,10,0.7);
  opacity: 0;
  animation: incident-row-in 460ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-triage__lens::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.34);
}
.s-triage__lens--medium::after { background: #f5b54a; }
.s-triage__lens--warn::after { background: var(--red); box-shadow: 0 0 24px rgba(255,31,48,0.55); }
.s-triage__lens-tool {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(11px, 0.85vw, 14px);
}
.s-triage__lens-text {
  line-height: 1.28;
  font-size: clamp(13px, 1vw, 18px);
}
.s-triage__noise {
  display: flex;
  flex-direction: column;
}
#triage-noise-stream {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  overflow: hidden;
}
.s-triage__noise-row {
  display: grid;
  grid-template-columns: 4.4em 6.2em minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: clamp(12px, 0.94vw, 16px);
  line-height: 1.3;
  animation: incident-row-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-triage__noise-row .who {
  color: #f5b54a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.s-bridge {
  align-self: start;
  width: min(100%, 1400px);
  height: min(64vh, 576px);
  margin-top: clamp(44px, 5.7vh, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.s-bridge--noise {
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.s-bridge__title {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.26);
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.s-bridge__title span {
  font-size: clamp(12px, 1vw, 16px);
  color: rgba(255,255,255,0.72);
}
.s-bridge__title strong {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 78px);
  font-weight: 900;
  font-stretch: condensed;
  letter-spacing: 0;
  color: var(--red);
}
.s-bridge__transcript,
.s-bridge__tools {
  min-height: 0;
  overflow: hidden;
}
.s-bridge__transcript {
  padding: clamp(12px, 1.5vw, 22px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.s-bridge__line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4.4em 5em minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.32;
  animation: incident-row-in 240ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-bridge__line .who {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.s-bridge__tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
.s-bridge__tool {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 12px;
  padding: 10px 12px;
  animation: incident-row-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-bridge__tool .name {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(11px, 0.8vw, 14px);
}
.s-bridge__tool .status {
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-size: clamp(10px, 0.75vw, 12px);
}
.s-bridge__tool .detail {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.78);
  font-size: clamp(12px, 0.92vw, 16px);
  line-height: 1.28;
}
.s-bridge__tool--critical,
.s-bridge__storm--critical {
  border-color: var(--red);
  background: rgba(255,31,48,0.13);
}
.s-bridge__tool--warn,
.s-bridge__tool--delay,
.s-bridge__storm--warn {
  border-color: rgba(245,181,74,0.74);
}
.s-bridge__tools--storm {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 10px;
}
.s-bridge__storm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: 12px;
  animation: storm-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-bridge__storm span {
  color: rgba(255,255,255,0.58);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(10px, 0.78vw, 12px);
}
.s-bridge__storm strong {
  margin-top: 10px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.25;
  font-size: clamp(12px, 1vw, 17px);
}
.s-bridge__participant-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.s-bridge__participant-strip span {
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.64);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(9px, 0.72vw, 12px);
}
@keyframes storm-in {
  0% { opacity: 0; transform: translate3d(0, 14px, 0) scale(0.98); filter: blur(2px); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

.s-outage {
  align-self: start;
  width: min(100%, 1420px);
  height: min(64vh, 576px);
  margin-top: clamp(44px, 5.7vh, 64px);
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.08fr) minmax(300px, 0.88fr);
  gap: clamp(14px, 1.8vw, 28px);
}
.s-outage__board,
.s-outage__calls {
  overflow: hidden;
  padding: clamp(14px, 1.6vw, 22px);
}
.s-outage__service {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.s-outage__service .name {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(11px, 0.9vw, 15px);
}
.s-outage__service .state {
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}
.s-outage__service .detail {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.64);
  line-height: 1.28;
}
.s-outage__service--down .state,
.s-outage__service--down .detail {
  color: var(--red);
}
.s-outage__service--warn .state {
  color: #f5b54a;
}
.s-outage__map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,31,48,0.22), transparent 31%),
    radial-gradient(circle at 72% 30%, rgba(255,255,255,0.07), transparent 20%),
    #030407;
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
  box-shadow: inset 0 0 80px rgba(255,31,48,0.06), 0 22px 70px rgba(0,0,0,0.42);
}
.s-outage__map::before,
.s-outage__map::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255,31,48,0.16);
  animation: outage-ring 1800ms ease-in-out infinite;
}
.s-outage__map::after {
  inset: 27%;
  animation-delay: 480ms;
}
.s-outage__feeder {
  position: absolute;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(255,31,48,0.7);
  transform-origin: left center;
  animation: feeder-fail 1200ms ease-in-out infinite;
}
.s-outage__feeder--a { left: 18%; top: 35%; width: 58%; transform: rotate(18deg); }
.s-outage__feeder--b { left: 28%; top: 55%; width: 48%; transform: rotate(-12deg); animation-delay: 180ms; }
.s-outage__feeder--c { left: 42%; top: 68%; width: 35%; transform: rotate(24deg); animation-delay: 360ms; }
.s-outage__station {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 16px 20px;
  border: 1px solid var(--red);
  background: rgba(0,0,0,0.82);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  box-shadow: 0 0 70px rgba(255,31,48,0.28);
}
.s-outage__coord,
.s-outage__pcap {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.62);
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: clamp(9px, 0.74vw, 12px);
}
.s-outage__coord--a { left: 9%; top: 12%; }
.s-outage__coord--b { right: 8%; bottom: 8%; color: var(--red); border-color: rgba(255,31,48,0.36); }
.s-outage__pcap { left: 10%; bottom: 16%; color: #f5b54a; border-color: rgba(245,181,74,0.44); }
@keyframes feeder-fail {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 1; }
}
@keyframes outage-ring {
  0%, 100% { opacity: 0.18; transform: scale(0.96); }
  50% { opacity: 0.56; transform: scale(1.02); }
}
.s-outage__calls {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
}
.s-outage__call {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4.4em 6.6em minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.32;
}
.s-outage__call .who {
  color: #f5b54a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.s-outage__call--command .who,
.s-outage__call--command span:last-child {
  color: var(--red);
}

.s-picture {
  align-self: start;
  width: min(100%, 1420px);
  height: min(64vh, 576px);
  margin-top: clamp(44px, 5.7vh, 64px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 1.8vw, 26px);
}
.s-picture__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.s-picture__header span {
  color: rgba(255,255,255,0.62);
  font-size: clamp(11px, 0.9vw, 15px);
}
.s-picture__header strong {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(34px, 4.2vw, 78px);
  letter-spacing: 0;
  color: var(--white);
}
.s-picture__grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}
.s-picture__overload {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 28px);
}
.s-picture__grid--overload {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.s-picture__rings {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,31,48,0.22), transparent 29%),
    radial-gradient(circle at 52% 48%, rgba(255,255,255,0.08), transparent 18%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    rgba(4,6,10,0.78);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  box-shadow:
    inset 0 0 120px rgba(255,31,48,0.09),
    0 22px 70px rgba(0,0,0,0.42);
}
.s-picture__rings::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, transparent 0 47%, rgba(255,31,48,0.18) 49%, transparent 52%),
    linear-gradient(180deg, transparent 0 31%, rgba(255,255,255,0.05) 32%, transparent 34%),
    linear-gradient(180deg, transparent 0 68%, rgba(255,255,255,0.04) 69%, transparent 71%);
  opacity: 0.78;
}
.s-picture__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,31,48,0.62);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 42px rgba(255,31,48,0.18);
  animation: overload-ring 2400ms ease-in-out infinite;
}
.s-picture__ring--2 { width: 54%; animation-delay: 220ms; opacity: 0.76; }
.s-picture__ring--3 { width: 72%; animation-delay: 440ms; opacity: 0.54; }
.s-picture__ring--4 { width: 92%; animation-delay: 660ms; opacity: 0.34; }
.s-picture__call-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 8px;
  min-width: min(52%, 230px);
  padding: 18px 22px;
  border: 1px solid var(--red);
  background: rgba(0,0,0,0.78);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  box-shadow: 0 0 78px rgba(255,31,48,0.35);
}
.s-picture__call-core span {
  color: rgba(255,255,255,0.66);
  font-size: clamp(10px, 0.8vw, 13px);
}
.s-picture__call-core strong {
  font-size: clamp(20px, 2vw, 36px);
  font-weight: 700;
}
@keyframes overload-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.34; }
  48% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.9; }
}
.s-picture__card {
  min-height: 126px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  animation: picture-card-in 360ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-picture__card--warn {
  border-color: rgba(245,181,74,0.68);
}
.s-picture__card--critical {
  border-color: rgba(255,31,48,0.82);
  background:
    linear-gradient(135deg, rgba(255,31,48,0.14), rgba(255,255,255,0.018) 42%, rgba(255,31,48,0.04)),
    rgba(4, 6, 10, 0.82);
}
.s-picture__card .tool,
.s-picture__card .text,
.s-picture__card .ts,
.s-picture__card .metric {
  position: relative;
  z-index: 1;
}
.s-picture__card--metric {
  min-height: 0;
  justify-content: start;
  gap: 10px;
}
.s-picture__card .metric {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 72px);
  line-height: 0.86;
  font-weight: 900;
  font-stretch: condensed;
  color: var(--red);
}
.s-picture__card .tool {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(10px, 0.74vw, 12px);
}
.s-picture__card .text {
  font-size: clamp(12px, 1vw, 17px);
  line-height: 1.32;
}
.s-picture__card--metric .text {
  color: rgba(255,255,255,0.72);
}
@keyframes picture-card-in {
  0% { opacity: 0; transform: translateY(14px) rotate(-1deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}
.s-picture__path-wrap {
  display: grid;
  gap: 9px;
}
.s-picture__path-wrap--static {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
}
.s-picture__path-label {
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(10px, 0.82vw, 13px);
}
.s-picture__path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 380ms ease, transform 380ms ease;
}
.s-picture__path.show {
  opacity: 1;
  transform: translateY(0);
}
.s-picture__path span {
  position: relative;
  padding: 12px 10px;
  border: 1px solid var(--red);
  background: rgba(255,31,48,0.12);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(10px, 0.8vw, 13px);
  box-shadow: 0 0 24px rgba(255,31,48,0.1);
}
.s-picture__path span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 9px;
  height: 1px;
  background: var(--red);
}
.s-picture__static-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  height: 42px;
}
.s-picture__static-bars span {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,31,48,0.24);
  background:
    linear-gradient(90deg, rgba(255,31,48,0.18), rgba(255,255,255,0.035), rgba(255,31,48,0.08)),
    rgba(4,6,10,0.72);
}
.s-picture__static-bars span::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-80%);
  background: linear-gradient(90deg, transparent, rgba(255,31,48,0.55), transparent);
  animation: overload-scan 1400ms ease-in-out infinite;
}
.s-picture__static-bars span:nth-child(2n)::before { animation-delay: 160ms; }
.s-picture__static-bars span:nth-child(3n)::before { animation-delay: 360ms; }
@keyframes overload-scan {
  0% { transform: translateX(-100%); opacity: 0; }
  24% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.s-cine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--white);
  font-family: var(--mono);
  text-align: left;
  background: #000;
}
.s-cine::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--shot-bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.18) brightness(0.62);
  transform: scale(1.018);
  animation: cine-drift 18s ease-in-out infinite alternate;
}
.s-cine::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 76% at 50% 45%, transparent 34%, rgba(0,0,0,0.54) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.76), transparent 34%, transparent 64%, rgba(0,0,0,0.78)),
    linear-gradient(180deg, rgba(0,0,0,0.64), transparent 24%, transparent 70%, rgba(0,0,0,0.86));
}
.s-cine__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 50%, rgba(255,31,48,0.16), transparent 24%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 9px);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.s-cine--quiet .s-cine__shade {
  opacity: 0.28;
}
.s-cine--dm .s-cine__shade {
  background:
    radial-gradient(circle at 58% 48%, rgba(255,255,255,0.24), transparent 12%),
    radial-gradient(circle at 70% 55%, rgba(255,31,48,0.18), transparent 22%);
}
.s-cine--noise .s-cine__shade,
.s-cine--overload .s-cine__shade {
  opacity: 0.95;
  background:
    radial-gradient(circle at 54% 46%, rgba(255,31,48,0.28), transparent 30%),
    linear-gradient(110deg, transparent 0 46%, rgba(255,31,48,0.26) 48%, transparent 52%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 7px);
}
.s-cine__time {
  position: absolute;
  z-index: 3;
  left: clamp(58px, 8vw, 128px);
  top: clamp(58px, 9vh, 104px);
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 16px;
  text-shadow: 0 0 28px rgba(255,31,48,0.5);
}
.s-cine__time b {
  color: rgba(255,255,255,0.62);
  font-weight: 400;
}
.s-cine__title {
  position: absolute;
  z-index: 3;
  right: clamp(60px, 8vw, 132px);
  top: clamp(88px, 14vh, 150px);
  max-width: min(760px, 70vw);
  color: var(--red);
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: right;
  text-shadow: 0 0 48px rgba(255,31,48,0.46);
}
.s-cine--dm .s-cine__title {
  left: clamp(58px, 8vw, 128px);
  right: auto;
  top: clamp(142px, 21vh, 210px);
  text-align: left;
}
.s-cine__fragments {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}
.s-cine__frag {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w, auto);
  max-width: 520px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.018)),
    rgba(2,4,8,0.66);
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  line-height: 1.22;
  box-shadow: 0 18px 48px rgba(0,0,0,0.38);
  opacity: 0;
  transform: translate3d(-50%, -20px, 0) rotate(var(--r));
  animation: cine-frag-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--d) forwards;
}
.s-cine__frag--dim {
  color: rgba(255,255,255,0.48);
  border-color: rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.46);
}
.s-cine__frag--white {
  color: var(--white);
}
.s-cine__frag--red {
  color: var(--red);
  border-color: rgba(255,31,48,0.55);
  background:
    linear-gradient(135deg, rgba(255,31,48,0.17), rgba(255,255,255,0.018)),
    rgba(3,4,7,0.72);
  text-shadow: 0 0 28px rgba(255,31,48,0.55);
}
.s-cine__frag--lg {
  font-size: 22px;
  padding: 16px 20px;
}
.s-cine__frag--xl {
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 108px);
  font-weight: 900;
  font-stretch: condensed;
  letter-spacing: 0;
  line-height: 0.9;
  border-width: 0;
  background: transparent;
  box-shadow: none;
}
.s-cine__frag--xxl {
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 148px);
  font-weight: 900;
  font-stretch: condensed;
  letter-spacing: 0;
  line-height: 0.84;
  border-color: rgba(255,31,48,0.18);
  background: rgba(0,0,0,0.28);
}
.s-cine--noise .s-cine__frag,
.s-cine--overload .s-cine__frag {
  animation:
    cine-frag-in 360ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--d) forwards,
    cine-frag-shake 900ms steps(2, end) calc(var(--d) + 360ms) infinite;
}
.s-cine__static {
  position: absolute;
  z-index: 2;
  left: clamp(58px, 8vw, 128px);
  right: clamp(58px, 8vw, 128px);
  bottom: clamp(112px, 15vh, 170px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 8px;
  height: 34px;
  opacity: 0.58;
}
.s-cine__static span {
  overflow: hidden;
  border: 1px solid rgba(255,31,48,0.22);
  background: rgba(255,31,48,0.08);
}
.s-cine__static span::before {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,31,48,0.62), transparent);
  animation: cine-static-scan 1500ms ease-in-out infinite;
}
.s-cine__static span:nth-child(3n)::before { animation-delay: 220ms; }
.s-cine__static span:nth-child(4n)::before { animation-delay: 420ms; }
.s-cine__call {
  position: absolute;
  z-index: 4;
  left: clamp(74px, 9vw, 148px);
  bottom: clamp(144px, 20vh, 212px);
  width: min(760px, 56vw);
  display: grid;
  gap: 9px;
  padding: 18px 22px;
  border-left: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(90deg, rgba(0,0,0,0.62), transparent);
}
.s-cine__line {
  display: grid;
  grid-template-columns: 4.4em 5.6em minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.28;
  opacity: 0;
  transform: translateY(10px);
  animation: cine-line-in 340ms ease var(--d) forwards;
}
.s-cine__line .ts {
  color: rgba(255,255,255,0.52);
  font-variant-numeric: tabular-nums;
}
.s-cine__line .who {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.s-cine__call-dots {
  position: absolute;
  z-index: 3;
  right: clamp(80px, 11vw, 172px);
  bottom: clamp(134px, 19vh, 202px);
  display: flex;
  gap: 10px;
}
.s-cine__call-dots span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,31,48,0.64);
  box-shadow: 0 0 34px rgba(255,31,48,0.5);
  animation: cine-dot 900ms ease-in-out infinite;
}
.s-cine__call-dots span:nth-child(2) { animation-delay: 120ms; }
.s-cine__call-dots span:nth-child(3) { animation-delay: 240ms; }
.s-cine__call-dots span:nth-child(4) { animation-delay: 360ms; }
.s-cine__call-dots span:nth-child(5) { animation-delay: 480ms; }
@keyframes cine-drift {
  from { transform: scale(1.018) translate3d(-6px, 0, 0); }
  to { transform: scale(1.045) translate3d(8px, -5px, 0); }
}
@keyframes cine-frag-in {
  0% { opacity: 0; transform: translate3d(-50%, -28px, 0) rotate(calc(var(--r) - 3deg)); filter: blur(5px); }
  100% { opacity: 1; transform: translate3d(-50%, 0, 0) rotate(var(--r)); filter: blur(0); }
}
@keyframes cine-frag-breathe {
  0%, 100% { filter: brightness(0.92); }
  50% { filter: brightness(1.18); }
}
@keyframes cine-frag-shake {
  0%, 100% { transform: translate3d(-50%, 0, 0) rotate(var(--r)); }
  34% { transform: translate3d(calc(-50% + 2px), -1px, 0) rotate(calc(var(--r) + 0.8deg)); }
  67% { transform: translate3d(calc(-50% - 2px), 1px, 0) rotate(calc(var(--r) - 0.6deg)); }
}
@keyframes cine-static-scan {
  0% { transform: translateX(-100%); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: translateX(160%); opacity: 0; }
}
@keyframes cine-line-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cine-dot {
  0%, 100% { transform: scale(0.68); opacity: 0.38; }
  50% { transform: scale(1); opacity: 1; }
}

.s-incident-plate {
  --plate-position: center;
  --plate-brightness: 0.82;
  --plate-contrast: 1.05;
  --plate-glow-x: 50%;
  --plate-glow-y: 48%;
  --plate-glow: 0.12;
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  font-family: var(--mono);
  text-align: left;
  background: #000;
}
.s-incident-plate__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--plate-position);
  filter: grayscale(1) contrast(var(--plate-contrast)) brightness(var(--plate-brightness));
  transform: scale(1.006);
}
.s-incident-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 64% 58% at var(--plate-glow-x) var(--plate-glow-y), rgba(255,31,48,var(--plate-glow)), transparent 44%),
    radial-gradient(ellipse 82% 76% at 50% 46%, transparent 34%, rgba(0,0,0,0.42) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0.04) 32%, rgba(0,0,0,0.04) 66%, rgba(0,0,0,0.52)),
    linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.02) 24%, rgba(0,0,0,0.08) 66%, rgba(0,0,0,0.58)),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 8px);
}
.s-incident-plate__time,
.s-incident-plate__placard {
  position: absolute;
  z-index: 2;
}
.s-incident-plate__time {
  left: clamp(58px, 8vw, 128px);
  top: clamp(58px, 9vh, 104px);
  display: flex;
  align-items: center;
  min-height: 32px;
  padding-left: 24px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(0,0,0,0.72);
}
.s-incident-plate__time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255,31,48,0.88);
  background: rgba(255,31,48,0.32);
  box-shadow: 0 0 28px rgba(255,31,48,0.52);
  transform: translateY(-50%);
}
.s-incident-plate__placard {
  display: grid;
  gap: 10px;
  width: min(720px, calc(100vw - 220px));
  min-height: 138px;
  padding: 22px 28px 26px;
  border-left: 2px solid rgba(255,31,48,0.96);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.76), rgba(0,0,0,0.44) 58%, rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(255,31,48,0.09), rgba(255,255,255,0.018));
  box-shadow:
    0 26px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.s-incident-plate--left .s-incident-plate__placard {
  left: clamp(58px, 8vw, 128px);
  bottom: clamp(128px, 18vh, 190px);
}
.s-incident-plate--right .s-incident-plate__placard {
  right: clamp(58px, 8vw, 128px);
  bottom: clamp(128px, 18vh, 190px);
  border-right: 2px solid rgba(255,31,48,0.96);
  border-left: 0;
  text-align: right;
  background:
    linear-gradient(270deg, rgba(0,0,0,0.76), rgba(0,0,0,0.44) 58%, rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(255,31,48,0.09), rgba(255,255,255,0.018));
}
.s-incident-plate__placard span {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}
.s-incident-plate__placard strong {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(58px, 10vh, 118px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 34px rgba(255,31,48,0.54),
    0 8px 28px rgba(0,0,0,0.78);
}
.s-incident-plate__placard em {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: 0;
}
.s-incident-plate--sui {
  --plate-position: 42% 50%;
  --plate-brightness: 0.78;
  --plate-glow-x: 23%;
  --plate-glow-y: 56%;
  --plate-glow: 0.1;
}
.s-incident-plate--nina {
  --plate-position: 54% 54%;
  --plate-brightness: 0.8;
  --plate-glow-x: 72%;
  --plate-glow-y: 58%;
  --plate-glow: 0.1;
}
.s-incident-plate--bridge {
  --plate-position: 49% 48%;
  --plate-brightness: 0.74;
  --plate-glow-x: 62%;
  --plate-glow-y: 42%;
  --plate-glow: 0.14;
}
.s-incident-plate--noise {
  --plate-position: 52% 48%;
  --plate-brightness: 0.92;
  --plate-contrast: 1.05;
  --plate-glow-x: 66%;
  --plate-glow-y: 46%;
  --plate-glow: 0.2;
}
.s-incident-plate--noise::after {
  background:
    radial-gradient(ellipse 64% 58% at var(--plate-glow-x) var(--plate-glow-y), rgba(255,31,48,var(--plate-glow)), transparent 44%),
    radial-gradient(ellipse 82% 76% at 50% 46%, transparent 34%, rgba(0,0,0,0.34) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.46), rgba(0,0,0,0.04) 30%, rgba(0,0,0,0.04) 66%, rgba(0,0,0,0.5)),
    linear-gradient(180deg, rgba(0,0,0,0.24), rgba(0,0,0,0.02) 28%, rgba(0,0,0,0.06) 66%, rgba(0,0,0,0.56)),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 8px);
}
.s-incident-plate--ot {
  --plate-position: 58% 50%;
  --plate-brightness: 0.78;
  --plate-contrast: 1.1;
  --plate-glow-x: 74%;
  --plate-glow-y: 48%;
  --plate-glow: 0.18;
}
.s-incident-plate--ot .s-incident-plate__placard strong {
  font-size: clamp(82px, 16vh, 188px);
  line-height: 0.78;
}
.s-incident-plate--overload {
  --plate-position: 41% 48%;
  --plate-brightness: 0.78;
  --plate-contrast: 1.08;
  --plate-glow-x: 30%;
  --plate-glow-y: 50%;
  --plate-glow: 0.17;
}
.s-incident-plate--overload .s-incident-plate__placard strong,
.s-incident-plate--bridge .s-incident-plate__placard strong {
  font-size: clamp(48px, 8.4vh, 96px);
  line-height: 0.9;
}

@media (max-width: 900px) {
  .s-incident-plate__time {
    left: 34px;
    top: 44px;
    font-size: 14px;
  }
  .s-incident-plate__placard {
    width: calc(100vw - 68px);
    min-height: 112px;
    padding: 18px 22px 20px;
  }
  .s-incident-plate--left .s-incident-plate__placard,
  .s-incident-plate--right .s-incident-plate__placard {
    left: 34px;
    right: auto;
    bottom: 104px;
    text-align: left;
    border-right: 0;
    border-left: 2px solid rgba(255,31,48,0.96);
    background:
      linear-gradient(90deg, rgba(0,0,0,0.76), rgba(0,0,0,0.44) 58%, rgba(0,0,0,0)),
      linear-gradient(180deg, rgba(255,31,48,0.09), rgba(255,255,255,0.018));
  }
  .s-incident-plate__placard strong {
    font-size: clamp(46px, 9vh, 82px);
  }
  .s-incident-plate--ot .s-incident-plate__placard strong {
    font-size: clamp(68px, 14vh, 122px);
  }
  .s-incident-plate--overload .s-incident-plate__placard strong,
  .s-incident-plate--bridge .s-incident-plate__placard strong {
    font-size: clamp(40px, 7.5vh, 68px);
  }
}

.s-ransom {
  --ransom-block: "Nimbus Sans Narrow", "Arial Narrow", "Helvetica Neue Condensed Black", "Liberation Sans Narrow", Arial, sans-serif;
  --ransom-mono: "Nimbus Mono PS", "Noto Sans Mono", Consolas, "DejaVu Sans Mono", "Liberation Mono", monospace;
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: clamp(52px, 6vw, 104px) clamp(64px, 8vw, 144px);
  background: #0000aa;
  color: #ffffff;
  font-family: var(--ransom-mono);
  text-align: left;
}
.s-ransom::before,
.s-ransom::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.s-ransom::before {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.18) 0 1px, transparent 1px 17px);
}
.s-ransom::after {
  inset: clamp(18px, 2.1vw, 34px);
  border: 6px double #ffffff;
}
.s-ransom--dying {
  animation: ransom-fade-black 900ms linear forwards;
}
.s-ransom--dying::before {
  animation: ransom-layer-fade 900ms linear forwards;
}
.s-ransom--dying::after {
  animation: ransom-layer-fade 900ms linear forwards;
}
.s-ransom--dying > * {
  animation: ransom-layer-fade 900ms linear forwards;
}
.s-ransom--blackout {
  background: #000000;
}
.s-ransom--blackout::before,
.s-ransom--blackout::after,
.s-ransom--blackout > * {
  opacity: 0;
}
@keyframes ransom-fade-black {
  0%   { background: #0000aa; }
  100% { background: #000000; }
}
@keyframes ransom-layer-fade {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
.s-james-email {
  position: fixed;
  inset: 0;
  z-index: 81;
  display: grid;
  place-items: center;
  padding: clamp(56px, 9vh, 122px) clamp(28px, 7vw, 104px);
  background: #000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}
.s-james-email.show {
  opacity: 1;
}
.s-james-email__card {
  width: min(82vw, 920px);
  min-height: clamp(390px, 48vh, 500px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 9, 12, 0.97);
  box-shadow: 0 20px 74px rgba(0, 0, 0, 0.82);
  color: var(--white);
  font-family: var(--brand);
}
.s-james-email__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}
.s-james-email__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.s-james-email__dots span {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.44);
}
.s-james-email__compose-title {
  font-family: var(--mono);
  font-size: clamp(9px, 0.72vw, 12px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.s-james-email__meta {
  display: grid;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.s-james-email__meta div {
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.s-james-email__meta div:first-child {
  border-top: 0;
}
.s-james-email__meta span {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: clamp(9px, 0.7vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.s-james-email__meta strong {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 450;
}
.s-james-email__body {
  min-height: clamp(250px, 31vh, 350px);
  padding: clamp(26px, 3.2vw, 42px) clamp(30px, 4vw, 54px);
  color: var(--white);
  font-size: clamp(20px, 1.7vw, 31px);
  line-height: 1.45;
}
.s-james-email__body p {
  min-height: 1.45em;
  margin: 0 0 0.55em;
}
.s-james-email__cursor::after {
  content: "▍";
  display: inline-block;
  margin-left: 3px;
  color: var(--white);
  animation: caret 0.78s steps(2, end) infinite;
}
.s-james-email__cursor.is-hidden {
  display: none;
}
.s-james-email__brand {
  position: absolute;
  left: clamp(28px, 5vw, 96px);
  bottom: clamp(6vh, 6.5vh, 64px);
  display: flex;
  align-items: center;
  gap: 28px;
  height: 60px;
  opacity: 0;
  animation: brand-fade-clean 900ms ease 120ms forwards;
}
.s-james-email__brand .brandmark__logo--pan { height: 55px; }
.s-james-email__brand .brandmark__logo--cortex { height: 30px; }

/* ----- presenter intro --------------------------------------------------- */

.s-intro {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 5.5vh clamp(40px, 8vw, 160px);
}
.s-intro--out {
  opacity: 0;
  transition: opacity 260ms ease;
}
.s-intro__name {
  position: absolute;
  top: clamp(60px, 10vh, 108px);
  left: clamp(44px, 7vw, 112px);
  font-family: var(--brand);
  font-size: clamp(34px, 3.35vw, 52px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.94);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 1050ms ease-out,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}
.s-intro__name.show {
  opacity: 1;
  transform: translateY(0);
}
.s-intro-roles {
  width: min(94vw, 1360px);
  text-align: left;
  color: var(--white);
}
.s-intro-roles__list {
  display: grid;
  gap: clamp(18px, 2.3vh, 28px);
}
.s-intro-roles__row {
  display: grid;
  grid-template-columns: clamp(150px, 18vw, 240px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3.4vw, 54px);
  min-height: 66px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition:
    opacity 860ms ease-out,
    transform 940ms cubic-bezier(0.16, 1, 0.3, 1);
}
.s-intro-roles__row.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.s-intro-roles__row--primary {
  min-height: 78px;
  margin-bottom: clamp(6px, 1vh, 12px);
}
.s-intro-roles__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.s-intro-roles__logo {
  display: block;
  width: auto;
  max-width: min(100%, 190px);
  max-height: 58px;
  object-fit: contain;
}
.s-intro-roles__row--primary .s-intro-roles__logo {
  max-width: 86px;
  max-height: 74px;
}
.s-intro-roles__row:nth-child(2) .s-intro-roles__logo {
  max-height: 62px;
}
.s-intro-roles__row:nth-child(3) .s-intro-roles__logo {
  max-width: 176px;
  max-height: 44px;
}
.s-intro-roles__row:nth-child(4) .s-intro-roles__logo {
  max-width: 73.5px;
  max-height: 73.5px;
}
.s-intro-roles__role {
  font-family: var(--brand);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.s-intro-roles__row--primary .s-intro-roles__role {
  font-size: clamp(29px, 3.1vw, 48px);
  font-weight: 760;
}

/* ----- blue-side shared header ------------------------------------------- */

.blue-slide-header {
  position: absolute;
  top: clamp(72px, 9vh, 104px);
  left: clamp(62px, 6.3vw, 116px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--mono);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  text-align: left;
}
.blue-slide-header__act {
  color: var(--cortex-green);
}
.blue-slide-header__name::before {
  content: "/";
  margin: 0 12px 0 14px;
  color: rgba(255, 255, 255, 0.34);
}

/* ----- ethics ------------------------------------------------------------- */

.s-ethics {
  position: relative;
  display: grid;
  align-content: start;
  width: 100%;
  min-height: 100%;
  padding: clamp(94px, 12vh, 132px) clamp(62px, 6.3vw, 116px) clamp(138px, 16vh, 164px);
  color: var(--white);
  text-align: left;
}
.s-ethics::before {
  content: "";
  position: absolute;
  inset: 5.5vh 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 204, 102, 0.10), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 120px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 52%, transparent 92%);
}
.s-ethics__label,
.s-ethics__index {
  font-family: var(--mono);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s-ethics__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, calc((100% - clamp(52px, 6.4vw, 104px)) * 0.46)) minmax(0, 1fr);
  gap: clamp(52px, 6.4vw, 104px);
  align-content: start;
  max-width: 1420px;
}
.s-ethics__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7.2vw, 122px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.78;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.s-ethics__title-wrap {
  position: relative;
}
.s-ethics__signal {
  width: min(100%, 260px);
  height: 3px;
  margin-top: clamp(22px, 3vh, 32px);
  background: linear-gradient(90deg, var(--cortex-green), rgba(0, 204, 102, 0.16), transparent);
  box-shadow: 0 0 22px rgba(0, 204, 102, 0.18);
}
.s-ethics__thesis {
  align-self: end;
  max-width: 1040px;
  padding-left: clamp(26px, 2.8vw, 42px);
  border-left: 2px solid rgba(0, 204, 102, 0.86);
}
.s-ethics__label {
  margin: 0 0 clamp(14px, 1.8vh, 20px);
  color: var(--cortex-green);
}
.s-ethics__thesis p {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(25px, 2.65vw, 43px);
  font-weight: 710;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}
.s-ethics__sections {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(52px, 6.4vw, 104px);
  align-items: start;
  margin-top: clamp(18px, 2.4vh, 28px);
  padding-top: clamp(15px, 2vh, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.s-ethics__section {
  display: grid;
  grid-template-columns: clamp(42px, 4.4vw, 64px) minmax(0, 1fr);
  column-gap: clamp(18px, 2.5vw, 34px);
  row-gap: clamp(12px, 1.6vh, 18px);
}
.s-ethics__head {
  grid-column: 2;
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(19px, 1.55vw, 27px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--cortex-green);
}
.s-ethics__index {
  grid-row: 1 / span 2;
  color: rgba(255, 255, 255, 0.38);
  padding-top: 0.2em;
}
.s-ethics__list {
  grid-column: 2;
  display: grid;
  gap: clamp(8px, 1.05vh, 12px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--brand);
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 660;
  line-height: 1.12;
  letter-spacing: 0;
}
.s-ethics__list li {
  position: relative;
  padding-left: clamp(22px, 2.2vw, 34px);
}
.s-ethics__list li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: clamp(10px, 1vw, 14px);
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
}

/* ----- blue-side title placeholders -------------------------------------- */

.s-blue-placeholder {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.5vh, 28px);
  width: 100%;
  min-height: 100%;
  padding: clamp(54px, 7vh, 86px) clamp(76px, 8.8vw, 168px) clamp(128px, 14vh, 156px);
  color: var(--white);
  text-align: left;
}
.s-blue-placeholder::before {
  content: "";
  position: absolute;
  inset: 5.5vh 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 204, 102, 0.12), rgba(255,255,255,0.03) 28%, transparent 64%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 116px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.68), rgba(0,0,0,0.22) 58%, transparent 94%);
}
.s-blue-placeholder--section {
  align-content: end;
  padding-top: clamp(70px, 10vh, 130px);
  padding-bottom: clamp(148px, 18vh, 206px);
}
.s-blue-placeholder--center {
  place-items: center;
  align-content: center;
  padding: 0 clamp(34px, 6vw, 96px);
  text-align: center;
}
.s-blue-placeholder--center::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 204, 102, 0.08), transparent 34%),
    linear-gradient(90deg, transparent, rgba(0, 204, 102, 0.055) 50%, transparent);
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.82) 24%, rgba(0,0,0,0.82) 74%, transparent);
}
.s-blue-placeholder--section::before {
  background:
    linear-gradient(90deg, rgba(0, 204, 102, 0.18), rgba(0, 204, 102, 0.045) 34%, transparent 72%),
    radial-gradient(circle at 78% 24%, rgba(0, 204, 102, 0.105), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 116px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.38) 58%, transparent 96%);
}
.s-blue-placeholder__rail {
  position: absolute;
  left: clamp(36px, 4.2vw, 72px);
  top: 22vh;
  bottom: 22vh;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--cortex-green) 20%, rgba(0, 204, 102, 0.2) 72%, transparent);
  box-shadow: 0 0 24px rgba(0, 204, 102, 0.2);
}
.s-blue-placeholder--section .s-blue-placeholder__rail {
  top: 14vh;
  bottom: 14vh;
  width: 3px;
  box-shadow: 0 0 34px rgba(0, 204, 102, 0.34);
}
.s-blue-placeholder__act-mark {
  position: absolute;
  right: clamp(42px, 6vw, 118px);
  top: clamp(58px, 8vh, 98px);
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(96px, 15vw, 270px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.035);
}
.s-blue-placeholder__title {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 124px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.s-blue-placeholder--section .s-blue-placeholder__title {
  max-width: 1320px;
  font-size: clamp(76px, 9vw, 158px);
  line-height: 0.84;
}
.s-blue-placeholder--center .s-blue-placeholder__title {
  max-width: 1120px;
  font-size: clamp(58px, 7vw, 118px);
  line-height: 0.92;
  animation: blue-center-title-in 1400ms cubic-bezier(.16, 1, .3, 1) 180ms forwards;
}
@keyframes blue-center-title-in {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@media (max-width: 980px) {
  .s-blue-placeholder {
    padding-left: 76px;
    padding-right: 22px;
  }
  .s-blue-placeholder__title {
    max-width: 270px;
    font-size: clamp(30px, 8.2vw, 50px);
    line-height: 0.98;
    text-wrap: initial;
  }
  .s-blue-placeholder--section {
    padding-bottom: 156px;
  }
  .s-blue-placeholder--center {
    padding: 0 28px;
  }
  .s-blue-placeholder__act-mark {
    right: 16px;
    top: 82px;
    font-size: 92px;
  }
  .s-blue-placeholder--section .s-blue-placeholder__title {
    max-width: 286px;
    font-size: clamp(48px, 12.4vw, 72px);
    line-height: 0.9;
  }
  .s-blue-placeholder--center .s-blue-placeholder__title {
    max-width: 320px;
    font-size: clamp(46px, 12vw, 72px);
    line-height: 0.92;
  }
  .blue-slide-header {
    left: 28px;
    top: 62px;
  }
}

/* ----- reusable blue-side content frames --------------------------------- */

.s-blue-frame {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(18px, 2.2vh, 30px);
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(112px, 14vh, 148px) clamp(72px, 7.3vw, 132px) clamp(126px, 15vh, 166px);
  color: var(--white);
  text-align: left;
}
.s-blue-frame::before {
  content: "";
  position: absolute;
  inset: 5.5vh 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 204, 102, 0.11), transparent 36%),
    radial-gradient(circle at 78% 42%, rgba(0, 204, 102, 0.075), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 116px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.70), rgba(0,0,0,0.25) 70%, transparent 96%);
}
.s-blue-frame__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(10px, 1.4vh, 16px);
  max-width: 1020px;
}
.s-blue-frame__kicker {
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 204, 102, 0.92);
}
.s-blue-frame__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.75vw, 84px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.s-blue-frame__lede {
  margin: 0;
  max-width: 780px;
  font-family: var(--brand);
  font-size: clamp(24px, 2.35vw, 40px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}

.s-defender-advantage {
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: clamp(34px, 4.6vw, 82px);
}
.s-defender-advantage__copy {
  max-width: 390px;
}
.s-defender-advantage__copy .s-blue-frame__title {
  font-size: clamp(38px, 3.95vw, 68px);
  line-height: 0.94;
}
.s-defender-advantage__stage {
  position: relative;
  z-index: 1;
  min-height: clamp(330px, 47vh, 500px);
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 48% 50%, rgba(0,204,102,0.09), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    rgba(2,5,8,0.68);
  background-size: auto, 92px 92px, 92px 92px, auto;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -90px 120px rgba(0,0,0,0.28);
  overflow: hidden;
}
.s-defender-advantage__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(0,204,102,0.10) 0 1px, transparent 1px 10px),
    radial-gradient(circle at 50% 50%, rgba(0,204,102,0.10), transparent 34%);
  mask-image: radial-gradient(circle at 50% 50%, black 0 28%, transparent 54%);
  opacity: 0.78;
}
.s-defender-advantage__label {
  position: absolute;
  z-index: 4;
  top: clamp(20px, 2.2vw, 32px);
  font-family: var(--mono);
  font-size: clamp(10px, 0.76vw, 13px);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}
.s-defender-advantage__label--signals { left: clamp(24px, 2.6vw, 42px); }
.s-defender-advantage__label--control { right: clamp(28px, 3vw, 50px); }
.s-defender-advantage__sources {
  position: absolute;
  z-index: 5;
  left: clamp(24px, 2.6vw, 42px);
  top: 25%;
  width: clamp(170px, 16vw, 250px);
  display: grid;
  gap: 10px;
}
.s-defender-advantage__source {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(151,170,184,0.18);
  background: rgba(5,10,14,0.74);
  opacity: 0;
  transform: translateX(-12px);
  animation: blue-row-in 720ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-defender-advantage__source span,
.s-defender-advantage__action-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--cortex-green);
}
.s-defender-advantage__source strong {
  font-family: var(--brand);
  font-size: clamp(15px, 1.02vw, 18px);
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.s-defender-advantage__flow {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}
.s-defender-advantage__line {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.s-defender-advantage__line--muted {
  stroke: url(#defender-flow-muted);
  stroke-width: 2.2;
  opacity: 0.76;
}
.s-defender-advantage__line--green {
  stroke: url(#defender-flow-green);
  stroke-width: 3;
  opacity: 0.88;
}
.s-defender-advantage__line--main {
  stroke-width: 5;
}
.s-defender-advantage__ring {
  fill: none;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
}
.s-defender-advantage__ring--outer {
  stroke: rgba(0,204,102,0.44);
  stroke-width: 1.2;
  stroke-dasharray: 2 7;
}
.s-defender-advantage__ring--inner {
  stroke: rgba(255,255,255,0.36);
  stroke-width: 1;
}
.s-defender-advantage__core {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: clamp(170px, 16vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,204,102,0.62);
  background:
    linear-gradient(135deg, rgba(0,204,102,0.15), rgba(0,204,102,0.035)),
    rgba(0,0,0,0.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 0 70px rgba(0,204,102,0.20);
  text-align: center;
  text-transform: uppercase;
}
.s-defender-advantage__core span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.76vw, 13px);
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--cortex-green);
}
.s-defender-advantage__core strong {
  font-family: var(--brand);
  font-size: clamp(26px, 2.35vw, 42px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--white);
}
.s-defender-advantage__actions {
  position: absolute;
  z-index: 5;
  right: clamp(28px, 3vw, 50px);
  top: 29%;
  width: clamp(190px, 18vw, 290px);
  padding: 18px;
  border: 1px solid rgba(0,204,102,0.34);
  background:
    linear-gradient(135deg, rgba(0,204,102,0.11), rgba(255,255,255,0.018)),
    rgba(5,10,14,0.78);
}
.s-defender-advantage__action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.s-defender-advantage__action-grid span {
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.24);
  font-family: var(--brand);
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 740;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  opacity: 0;
  transform: translateY(10px);
  animation: blue-row-in 700ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}

.s-scale-loop__stage,
.s-alert-graph__stage,
.s-shock-absorber__stage,
.s-exposure-time__stage {
  position: relative;
  z-index: 1;
  min-height: clamp(250px, 36vh, 400px);
}
.s-scale-loop__stage {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) 90px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}
.s-scale-loop__old {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.035);
}
.s-scale-loop__old span {
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.44);
}
.s-scale-loop__old i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.66);
  box-shadow: 0 0 24px rgba(255,255,255,0.14);
}
.s-scale-loop__old i + i {
  margin-top: 74px;
  border-color: rgba(255,31,48,0.82);
  box-shadow: 0 0 24px rgba(255,31,48,0.28);
}
.s-scale-loop__arrow {
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), var(--cortex-green));
  box-shadow: 0 0 22px rgba(0,204,102,0.24);
}
.s-scale-loop__loop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 15px);
}
.s-scale-loop__step {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(0,204,102,0.26);
  background: linear-gradient(180deg, rgba(0,204,102,0.09), rgba(255,255,255,0.025));
  opacity: 0;
  transform: translateY(16px);
  animation: blue-row-in 900ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-scale-loop__step strong,
.s-exposure-time__controls strong,
.s-shock-absorber__membrane strong {
  font-family: var(--brand);
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 780;
  line-height: 1;
  color: var(--cortex-green);
}
.s-scale-loop__step span,
.s-exposure-time__controls span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
}

.s-alert-graph__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.36fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
}
.s-alert-graph__shards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}
.s-alert-graph__shard {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.035);
  opacity: 0;
  transform: translateY(12px);
  animation: blue-row-in 780ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-alert-graph__shard strong,
.s-attack-unit__step span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cortex-green);
}
.s-alert-graph__shard span,
.s-attack-unit__step strong {
  font-family: var(--brand);
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 650;
  line-height: 1.12;
}
.s-alert-graph__core {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0,204,102,0.18), transparent 60%),
    rgba(4, 7, 11, 0.74);
  box-shadow: 0 0 54px rgba(0,204,102,0.22);
}
.s-alert-graph__core span {
  width: min-content;
  font-family: var(--display);
  font-size: clamp(31px, 3.1vw, 52px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.s-attack-unit__timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: clamp(18px, 2vh, 28px);
}
.s-attack-unit__timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,31,48,0.24), rgba(0,204,102,0.72));
  box-shadow: 0 0 22px rgba(0,204,102,0.18);
}
.s-attack-unit__step {
  position: relative;
  min-height: clamp(118px, 18vh, 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 1.6vw, 22px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4, 7, 11, 0.76);
  opacity: 0;
  transform: translateY(14px);
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-attack-unit__object {
  position: relative;
  z-index: 1;
  justify-self: center;
  margin-top: clamp(14px, 2.4vh, 30px);
  padding: clamp(11px, 1.2vw, 16px) clamp(28px, 4vw, 62px);
  border: 1px solid rgba(0,204,102,0.6);
  background: rgba(0,204,102,0.08);
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 46px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 1;
  text-transform: uppercase;
}

.s-context-spine__rails {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, 0.6fr);
  gap: clamp(12px, 1.4vw, 22px);
  align-items: stretch;
}
.s-context-spine__rail {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: clamp(230px, 34vh, 350px);
  padding: clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(4,7,11,0.66);
  opacity: 0;
  transform: translateY(14px);
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-context-spine__rail strong {
  margin-bottom: 8px;
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
  text-transform: capitalize;
}
.s-context-spine__rail span {
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.035);
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  animation: blue-row-in 660ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-context-spine__merge {
  display: grid;
  place-items: center;
  min-height: clamp(230px, 34vh, 350px);
  padding: 24px;
  border: 2px solid rgba(0,204,102,0.64);
  background: radial-gradient(circle, rgba(0,204,102,0.18), rgba(4,7,11,0.78) 62%);
  font-family: var(--display);
  font-size: clamp(33px, 3.4vw, 60px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.s-shock-absorber__stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(280px, 0.5fr) minmax(300px, 0.54fr);
  gap: clamp(18px, 2.5vw, 42px);
  align-items: stretch;
  min-height: clamp(230px, 33vh, 330px);
}
.s-shock-absorber__queue,
.s-shock-absorber__membrane,
.s-shock-absorber__humans {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.64);
  min-height: 100%;
}
.s-shock-absorber__queue {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 6px;
  padding: 14px;
}
.s-shock-absorber__queue span {
  padding: 8px 8px;
  border: 1px solid rgba(255,31,48,0.35);
  color: rgba(255,255,255,0.62);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: blue-row-in 560ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-shock-absorber__membrane {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: clamp(14px, 1.6vw, 22px);
  border-color: rgba(0,204,102,0.48);
  box-shadow: inset 0 0 60px rgba(0,204,102,0.08);
}
.s-shock-absorber__membrane strong {
  display: block;
  padding: 10px 14px;
  border-left: 2px solid rgba(0,204,102,0.82);
  background: rgba(0,204,102,0.07);
  opacity: 0;
  transform: translateX(14px);
  animation: blue-row-in 760ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-shock-absorber__humans {
  display: grid;
  place-items: center;
  padding: 28px;
  border-color: rgba(255,255,255,0.24);
}
.s-shock-absorber__humans span {
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 64px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.s-exposure-time__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 3.4vw, 58px);
  min-height: clamp(250px, 34vh, 360px);
}
.s-exposure-time__paths {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 22% 50%, rgba(255,31,48,0.12), transparent 24%),
    radial-gradient(circle at 78% 48%, rgba(0,204,102,0.12), transparent 25%),
    rgba(4,7,11,0.64);
}
.s-exposure-time__path {
  position: absolute;
  left: 12%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,31,48,0.74), rgba(255,255,255,0.18), rgba(0,204,102,0.48));
  box-shadow: 0 0 18px rgba(255,31,48,0.20);
  opacity: 0;
  transform-origin: left center;
  animation: exposure-path-in 900ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-exposure-time__path--1 { top: 20%; transform: rotate(6deg); }
.s-exposure-time__path--2 { top: 31%; transform: rotate(-9deg); }
.s-exposure-time__path--3 { top: 43%; transform: rotate(13deg); opacity: 0.18; }
.s-exposure-time__path--4 { top: 55%; transform: rotate(-4deg); }
.s-exposure-time__path--5 { top: 67%; transform: rotate(9deg); opacity: 0.18; }
.s-exposure-time__path--6 { top: 77%; transform: rotate(-12deg); opacity: 0.18; }
.s-exposure-time__path--7 { top: 88%; transform: rotate(3deg); }
.s-exposure-time__controls {
  display: grid;
  gap: 12px;
  align-content: center;
}
.s-exposure-time__controls article {
  display: grid;
  grid-template-columns: minmax(96px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 1.7vw, 24px);
  border: 1px solid rgba(0,204,102,0.28);
  background: rgba(0,204,102,0.055);
  opacity: 0;
  transform: translateX(16px);
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}

.s-blue-frame__source {
  position: absolute;
  right: clamp(34px, 5.5vw, 92px);
  bottom: clamp(42px, 6vh, 76px);
  z-index: 2;
  max-width: min(520px, 40vw);
  font-family: var(--mono);
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-align: right;
}

.s-layer-stack__stage,
.s-interface-shift__stage,
.s-platform-build__stage,
.s-receipts__ledger,
.s-truth-check__stage,
.s-policy-path__stage,
.s-skill-loop__stage,
.s-agent-fail__loop,
.s-tool-chain__chain,
.s-workflow-harness__stage {
  position: relative;
  z-index: 1;
  min-height: clamp(250px, 36vh, 390px);
}
.s-layer-stack__stage {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.54fr);
  gap: clamp(24px, 3.2vw, 58px);
  min-height: clamp(230px, 31vh, 320px);
}
.s-layer-stack__stream {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-content: center;
  padding: clamp(14px, 1.6vw, 22px);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.64);
}
.s-layer-stack__stream span {
  padding: 10px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  animation: blue-row-in 560ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-layer-stack__layers {
  display: grid;
  gap: 8px;
  align-content: start;
}
.s-layer-stack__layers article,
.s-receipts__ledger article,
.s-agent-fail__loop article,
.s-tool-chain__chain article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 1.7vw, 24px);
  border: 1px solid rgba(0,204,102,0.28);
  background: rgba(0,204,102,0.055);
  opacity: 0;
  transform: translateY(14px);
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-layer-stack__layers strong,
.s-receipts__ledger strong,
.s-agent-fail__loop strong,
.s-tool-chain__chain strong {
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 780;
  line-height: 1;
}
.s-layer-stack__layers span,
.s-receipts__ledger span,
.s-agent-fail__loop span,
.s-tool-chain__chain span {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: clamp(10px, 0.76vw, 12px);
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.s-layer-stack__layers article {
  min-height: 68px;
  padding: 11px 16px;
}
.s-layer-stack__layers strong {
  font-size: clamp(18px, 1.55vw, 26px);
}
.s-layer-stack__layers span {
  margin-top: 8px;
  font-size: clamp(9px, 0.66vw, 10px);
}

.s-interface-shift__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 40px);
  align-items: stretch;
}
.s-interface-shift__panel {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(20px, 2.2vw, 34px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.66);
}
.s-interface-shift__panel span,
.s-truth-check__stage span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.s-interface-shift__panel strong,
.s-truth-check__stage strong {
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 62px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-interface-shift__panel--new {
  border-color: rgba(0,204,102,0.48);
  box-shadow: inset 0 0 60px rgba(0,204,102,0.06);
}
.s-interface-shift__panel code {
  display: block;
  font-family: var(--mono);
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
}
.s-interface-shift__bridge {
  display: grid;
  place-items: center;
  border-left: 2px solid rgba(0,204,102,0.72);
  border-right: 2px solid rgba(0,204,102,0.72);
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(20px, 1.9vw, 32px);
  font-weight: 760;
  line-height: 1;
  text-align: center;
}

.s-platform-build__stage {
  display: grid;
  place-items: center;
}
.s-platform-build__core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(220px, 24vw, 360px);
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.72);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,204,102,0.18), rgba(4,7,11,0.86) 62%);
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 62px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}
.s-platform-build__ring {
  position: absolute;
  display: grid;
  min-width: clamp(150px, 16vw, 220px);
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.76);
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-platform-build__ring--1 { left: 9%; top: 11%; }
.s-platform-build__ring--2 { right: 10%; top: 16%; }
.s-platform-build__ring--3 { left: 13%; bottom: 12%; }
.s-platform-build__ring--4 { right: 12%; bottom: 10%; }
.s-platform-build__ring strong {
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 1;
}
.s-platform-build__ring span,
.s-receipts__ledger code {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
}

.s-receipts__ledger,
.s-agent-fail__loop,
.s-tool-chain__chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}
.s-receipts__ledger article {
  min-height: clamp(190px, 30vh, 300px);
}
.s-receipts__ledger code {
  margin-top: 28px;
  color: rgba(0,204,102,0.8);
}

.s-truth-check__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3.3vw, 58px);
}
.s-truth-check__answer,
.s-truth-check__evidence {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 3vw, 46px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.66);
}
.s-truth-check__answer {
  border-color: rgba(255,255,255,0.16);
}
.s-truth-check__evidence {
  border-color: rgba(0,204,102,0.58);
  background: rgba(0,204,102,0.055);
}
.s-truth-check__stage p {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 680;
  color: rgba(255,255,255,0.72);
}

.s-policy-path__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 3.4vw, 60px);
  align-items: center;
}
.s-policy-path__path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.s-policy-path__path span {
  min-height: 230px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.64);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 15px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s-policy-path__path span:nth-child(4),
.s-policy-path__path span:nth-child(5) {
  border-color: rgba(255,31,48,0.42);
}
.s-policy-path__gate {
  display: grid;
  place-items: center;
  gap: 12px;
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.68);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,204,102,0.16), rgba(4,7,11,0.82) 62%);
  text-align: center;
}
.s-policy-path__gate strong {
  font-family: var(--display);
  font-size: clamp(36px, 3.6vw, 62px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-policy-path__gate span {
  max-width: 190px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.s-skill-loop__stage {
  display: grid;
  place-items: center;
}
.s-skill-loop__center {
  display: grid;
  place-items: center;
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.68);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,204,102,0.16), rgba(4,7,11,0.84) 62%);
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 62px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-skill-loop__node {
  position: absolute;
  min-width: clamp(140px, 15vw, 220px);
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.76);
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 780;
  line-height: 1;
  text-align: center;
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-skill-loop__node--1 { left: 18%; top: 12%; }
.s-skill-loop__node--2 { right: 18%; top: 14%; }
.s-skill-loop__node--3 { right: 16%; bottom: 13%; }
.s-skill-loop__node--4 { left: 16%; bottom: 12%; }

.s-agent-fail__loop {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.s-agent-fail__loop article,
.s-tool-chain__chain article {
  min-height: clamp(210px, 32vh, 320px);
}
.s-agent-fail__loop article:nth-child(2),
.s-tool-chain__chain article:nth-child(4) {
  border-color: rgba(245,181,74,0.66);
}
.s-agent-fail__loop article:nth-child(3),
.s-tool-chain__chain article:nth-child(5) {
  border-color: rgba(255,31,48,0.58);
}
.s-tool-chain__chain {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.s-workflow-harness__stage {
  display: grid;
  place-items: center;
}
.s-workflow-harness__agent {
  display: grid;
  place-items: center;
  width: min(680px, 58vw);
  height: clamp(190px, 30vh, 290px);
  border: 2px solid rgba(0,204,102,0.62);
  background: rgba(0,204,102,0.055);
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 76px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-workflow-harness__probe {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.84);
  font-family: var(--mono);
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-workflow-harness__probe--1 { left: 13%; top: 16%; }
.s-workflow-harness__probe--2 { right: 13%; top: 18%; }
.s-workflow-harness__probe--3 { left: 10%; bottom: 18%; }
.s-workflow-harness__probe--4 { right: 10%; bottom: 16%; }
.s-workflow-harness__probe--5 { left: 50%; bottom: 6%; transform: translateX(-50%); }

.s-lab-camera__stack,
.s-red-blue-trace__rows,
.s-purple-timeline__stage,
.s-case-receipts__panel,
.s-prompt-io__stage,
.s-indirect-injection__stage,
.s-tool-supply__chain,
.s-govern-loop__stage,
.s-critical-conversations__pillars,
.s-real-advantage__graph {
  position: relative;
  z-index: 1;
  min-height: clamp(250px, 36vh, 390px);
}
.s-lab-camera__stack {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: minmax(210px, 1fr) auto;
  align-content: start;
  gap: 10px;
}
.s-lab-camera__stack article,
.s-critical-conversations__pillars article,
.s-tool-supply__chain article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(210px, 31vh, 320px);
  padding: clamp(16px, 1.7vw, 24px);
  border: 1px solid rgba(0,204,102,0.28);
  background: rgba(0,204,102,0.055);
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-lab-camera__stack strong,
.s-critical-conversations__pillars strong,
.s-tool-supply__chain strong {
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}
.s-lab-camera__stack span,
.s-critical-conversations__pillars span,
.s-tool-supply__chain span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.s-lab-camera__record {
  position: relative;
  grid-column: 1 / -1;
  justify-self: center;
  padding: 11px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(4,7,11,0.82);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.s-red-blue-trace__rows {
  display: grid;
  gap: 6px;
  align-content: center;
  margin-top: clamp(16px, 2vh, 26px);
}
.s-red-blue-trace__row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(4,7,11,0.66);
  opacity: 0;
  animation: blue-row-in 680ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-red-blue-trace__row--red {
  border-color: rgba(255,31,48,0.42);
}
.s-red-blue-trace__row--blue {
  border-color: rgba(0,204,102,0.42);
}
.s-red-blue-trace__row strong {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cortex-green);
}
.s-red-blue-trace__row--red strong {
  color: var(--red);
}
.s-red-blue-trace__row span {
  font-family: var(--mono);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.25;
  color: rgba(255,255,255,0.78);
}
.s-red-blue-trace__row code {
  color: var(--cortex-green);
  font-family: var(--mono);
  margin-right: 12px;
}

.s-purple-timeline__stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(180px, 1fr) auto;
  gap: clamp(10px, 1.2vw, 18px);
}
.s-purple-timeline__stage article {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0,204,102,0.32);
  background: rgba(0,204,102,0.055);
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-purple-timeline__stage strong {
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 94px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.84;
}
.s-purple-timeline__stage span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.s-purple-timeline__line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.s-purple-timeline__line span {
  padding: 11px 12px;
  border-top: 2px solid rgba(0,204,102,0.58);
  background: rgba(255,255,255,0.035);
}

.s-case-receipts__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.56fr);
  gap: clamp(20px, 2.8vw, 48px);
}
.s-case-receipts__case,
.s-case-receipts__calls {
  border: 1px solid rgba(0,204,102,0.34);
  background: rgba(0,204,102,0.055);
  padding: clamp(20px, 2.4vw, 36px);
}
.s-case-receipts__case {
  display: grid;
  align-content: center;
  gap: 20px;
}
.s-case-receipts__case span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}
.s-case-receipts__case strong {
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 70px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-case-receipts__case code {
  font-family: var(--mono);
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
.s-case-receipts__calls {
  display: grid;
  align-content: center;
  gap: 10px;
}
.s-case-receipts__calls span {
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(4,7,11,0.56);
  font-family: var(--mono);
  font-size: clamp(11px, 0.8vw, 13px);
  color: rgba(255,255,255,0.68);
}
.s-blue-case-summary {
  max-width: min(920px, 64vw);
  gap: 0;
}
.s-blue-case-summary li {
  grid-template-columns: 44px minmax(120px, 0.2fr) minmax(0, 1fr);
  padding: clamp(7px, 0.75vw, 11px) 0;
}
.s-blue-case-summary li > strong,
.s-aplt-context li > strong {
  font-size: clamp(20px, 1.65vw, 30px);
  line-height: 0.95;
}
.s-blue-case-summary li > p,
.s-aplt-context li > p {
  font-size: clamp(12px, 0.82vw, 15px);
  line-height: 1.16;
}

.s-prompt-io__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 42px);
  align-items: center;
}
.s-prompt-io__stage article {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: clamp(210px, 31vh, 320px);
  padding: clamp(20px, 2.4vw, 36px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.66);
}
.s-prompt-io__stage article:last-child {
  border-color: rgba(0,204,102,0.48);
}
.s-prompt-io__stage strong {
  font-family: var(--display);
  font-size: clamp(38px, 3.9vw, 70px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-prompt-io__stage span {
  font-family: var(--brand);
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 650;
  line-height: 1.12;
  color: rgba(255,255,255,0.72);
}
.s-prompt-io__core {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.68);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,204,102,0.16), rgba(4,7,11,0.82) 62%);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 56px);
  font-weight: 900;
  font-stretch: condensed;
  text-transform: uppercase;
}

.s-indirect-injection__stage {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(240px, 0.58fr) minmax(240px, 0.58fr);
  gap: 10px;
  align-items: center;
}
.s-indirect-injection__stage > span,
.s-indirect-injection__gate,
.s-indirect-injection__agent {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.64);
  font-family: var(--mono);
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.s-indirect-injection__stage > span {
  border-color: rgba(245,181,74,0.46);
  opacity: 0;
  animation: blue-row-in 720ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-indirect-injection__gate {
  border-color: rgba(255,31,48,0.52);
  color: var(--red);
}
.s-indirect-injection__agent {
  border-color: rgba(0,204,102,0.56);
  color: var(--cortex-green);
}

.s-tool-supply__chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}

.s-govern-loop__stage {
  display: grid;
  place-items: center;
}
.s-govern-loop__center {
  display: grid;
  place-items: center;
  width: clamp(200px, 24vw, 360px);
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.68);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,204,102,0.16), rgba(4,7,11,0.84) 62%);
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 62px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}
.s-govern-loop__node {
  position: absolute;
  min-width: clamp(160px, 16vw, 240px);
  padding: 16px 22px;
  border: 1px solid rgba(0,204,102,0.38);
  background: rgba(0,204,102,0.055);
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 780;
  line-height: 1;
  text-align: center;
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-govern-loop__node--1 { left: 17%; top: 12%; }
.s-govern-loop__node--2 { right: 17%; top: 14%; }
.s-govern-loop__node--3 { right: 16%; bottom: 13%; }
.s-govern-loop__node--4 { left: 16%; bottom: 12%; }

.s-critical-conversations__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}
.s-real-advantage__graph {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 26% 54%, rgba(255,31,48,0.12), transparent 24%),
    radial-gradient(circle at 72% 48%, rgba(0,204,102,0.15), transparent 30%),
    rgba(4,7,11,0.62);
}
.s-real-advantage__red {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,31,48,0.9);
  box-shadow: 0 0 13px rgba(255,31,48,0.45);
  opacity: 0;
  animation: blue-dot-in 620ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-real-advantage__red:nth-of-type(4n+1) { left: 18%; top: 22%; }
.s-real-advantage__red:nth-of-type(4n+2) { left: 27%; top: 54%; }
.s-real-advantage__red:nth-of-type(4n+3) { left: 36%; top: 36%; }
.s-real-advantage__red:nth-of-type(4n+4) { left: 44%; top: 72%; }
.s-real-advantage__graph span {
  position: absolute;
  right: clamp(42px, 7vw, 118px);
  min-width: 190px;
  padding: 13px 18px;
  border: 1px solid rgba(0,204,102,0.42);
  background: rgba(0,204,102,0.075);
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 760;
  text-align: center;
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-real-advantage__graph span:nth-of-type(1) { top: 12%; }
.s-real-advantage__graph span:nth-of-type(2) { top: 28%; }
.s-real-advantage__graph span:nth-of-type(3) { top: 44%; }
.s-real-advantage__graph span:nth-of-type(4) { top: 60%; }
.s-real-advantage__graph span:nth-of-type(5) { top: 76%; }

.s-questions {
  place-items: center;
  align-content: center;
  text-align: center;
}
.s-questions__mark {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(70px, 9vw, 160px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.88;
  text-transform: uppercase;
}

@keyframes blue-row-in {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes blue-dot-in {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes exposure-path-in {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 0.92;
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 980px) {
  .s-blue-frame {
    padding: 92px 28px 142px;
    gap: 24px;
  }
  .s-blue-frame__title {
    font-size: clamp(34px, 8.55vw, 55px);
  }
  .s-defender-advantage,
  .s-defender-advantage__stage,
  .s-scale-loop__stage,
  .s-alert-graph__stage,
  .s-shock-absorber__stage,
  .s-exposure-time__stage,
  .s-context-spine__rails {
    grid-template-columns: 1fr;
  }
  .s-scale-loop__loop,
  .s-alert-graph__shards,
  .s-attack-unit__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .s-scale-loop__arrow {
    display: none;
  }
}

/* ----- slide 25: single combat ------------------------------------------- */

.s-single-combat {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
  text-align: left;
}
.s-single-combat::before {
  content: "";
  position: absolute;
  inset: 5.5vh 0 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 31% 54%, rgba(255, 31, 48, 0.11), transparent 27%),
    radial-gradient(circle at 72% 55%, rgba(67, 160, 255, 0.10), transparent 22%),
    linear-gradient(90deg, rgba(0, 204, 102, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 116px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.68), rgba(0,0,0,0.28) 64%, transparent 96%);
}
.s-single-combat__title {
  position: absolute;
  left: clamp(62px, 6.3vw, 116px);
  right: clamp(42px, 6vw, 118px);
  top: clamp(124px, 15vh, 164px);
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.55vw, 72px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.s-single-combat__mesh {
  position: absolute;
  left: clamp(44px, 5vw, 96px);
  right: clamp(44px, 5vw, 96px);
  top: clamp(168px, 22vh, 226px);
  bottom: clamp(112px, 14vh, 154px);
  z-index: 1;
}
.s-single-combat__mesh svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.s-single-combat__link {
  fill: none;
  opacity: 0;
  stroke-linecap: round;
  stroke-width: 1.7;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: single-combat-link-in 780ms cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: var(--delay);
}
.s-single-combat__link--bridge {
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}
.s-single-combat__link--red {
  stroke: rgba(255, 31, 48, 0.34);
  filter: drop-shadow(0 0 6px rgba(255, 31, 48, 0.18));
}
.s-single-combat__link--blue {
  stroke: rgba(67, 160, 255, 0.42);
  filter: drop-shadow(0 0 7px rgba(67, 160, 255, 0.2));
}
.s-single-combat__node circle {
  fill: #05080c;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.72);
  animation: single-combat-node-in 720ms cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: var(--delay);
}
.s-single-combat__node--red circle {
  stroke: var(--red);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 10px rgba(255, 31, 48, 0.48));
}
.s-single-combat__node--blue circle {
  stroke: #43a0ff;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 10px rgba(67, 160, 255, 0.48));
}
.s-single-combat__node--seed circle {
  stroke-width: 3;
}
@keyframes single-combat-link-in {
  from {
    opacity: 0;
    stroke-dashoffset: 620;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes single-combat-node-in {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ----- slide 26: build the thing ----------------------------------------- */

.s-build-thing {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.s-build-thing::before {
  content: "";
  position: absolute;
  inset: 5.5vh 0 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 204, 102, 0.095), transparent 32%),
    linear-gradient(90deg, transparent, rgba(0, 204, 102, 0.055) 50%, transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 116px);
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.82) 24%, rgba(0,0,0,0.82) 76%, transparent);
}
.s-build-thing__stage {
  position: absolute;
  inset: clamp(132px, 17vh, 178px) clamp(54px, 6vw, 104px) clamp(132px, 17vh, 178px);
  z-index: 1;
  --build-line-gap: clamp(82px, 10vh, 112px);
  --build-enter-gap: clamp(116px, 13vh, 148px);
}
.s-build-thing__line {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: clamp(210px, 20vw, 280px) minmax(0, 1fr);
  column-gap: clamp(14px, 1.8vw, 24px);
  width: min(1080px, 100%);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 3.72vw, 54px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -38%);
  filter: blur(8px);
  transition:
    opacity 780ms cubic-bezier(.16, 1, .3, 1),
    top 900ms cubic-bezier(.16, 1, .3, 1),
    transform 780ms cubic-bezier(.16, 1, .3, 1),
    filter 780ms cubic-bezier(.16, 1, .3, 1);
}
.s-build-thing__verb {
  color: var(--cortex-green);
}
.s-build-thing__phrase {
  min-width: 0;
  color: var(--white);
}
.s-build-thing__line--audit {
  top: calc(50% + 26px);
}
.s-build-thing__line--manage {
  top: calc(50% + var(--build-line-gap) + 26px);
}
.s-build-thing__line.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0);
}
.s-build-thing__line--primary.is-up {
  top: calc(50% - var(--build-line-gap));
}
.s-build-thing__line--audit.is-visible {
  top: 50%;
}
.s-build-thing__line--manage.is-visible {
  top: calc(50% + var(--build-line-gap));
}

/* ----- slide 24: evidence bridge ----------------------------------------- */

.s-evidence-bridge {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: clamp(22px, 2.8vh, 34px);
  width: 100%;
  min-height: 100%;
  padding: clamp(112px, 14vh, 148px) clamp(74px, 7.4vw, 132px) clamp(126px, 15vh, 166px);
  color: var(--white);
  text-align: left;
}
.s-evidence-bridge::before {
  content: "";
  position: absolute;
  inset: 5.5vh 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 204, 102, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 116px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.70), rgba(0,0,0,0.24) 68%, transparent 96%);
}
.s-evidence-bridge__head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}
.s-evidence-bridge__tag,
.s-evidence-bridge__proof cite {
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s-evidence-bridge__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.6vw, 80px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.s-evidence-bridge__rows {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: clamp(12px, 1.5vh, 18px);
  align-self: start;
  max-width: 1380px;
}
.s-evidence-bridge__row {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 0.56fr);
  gap: clamp(30px, 4.6vw, 82px);
  align-items: center;
  min-height: clamp(66px, 8vh, 94px);
  padding: clamp(10px, 1.25vh, 16px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(12px) scale(0.992);
  animation: evidence-row-in 980ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-evidence-bridge__row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.s-evidence-bridge__tag {
  margin-bottom: 0;
  color: rgba(0, 204, 102, 0.92);
  font-size: clamp(19px, 1.8vw, 32px);
  font-family: var(--brand);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}
.s-evidence-bridge__claim h3 {
  margin: 0;
  max-width: 760px;
  font-family: var(--brand);
  font-size: clamp(25px, 2.45vw, 44px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.s-evidence-bridge__proof {
  display: grid;
  gap: 5px;
  padding-left: clamp(20px, 2.4vw, 34px);
  border-left: 2px solid rgba(0, 204, 102, 0.82);
}
.s-evidence-bridge__metric {
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 48px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}
.s-evidence-bridge__proof p {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.84);
}
.s-evidence-bridge__proof cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.46);
}
@keyframes evidence-row-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .s-evidence-bridge {
    align-content: start;
    gap: 24px;
    padding: 86px 28px 142px;
  }
  .s-evidence-bridge__head h2 {
    font-size: clamp(38px, 10vw, 62px);
  }
  .s-evidence-bridge__row {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 17px 0;
  }
  .s-evidence-bridge__claim h3 {
    font-size: clamp(22px, 6.4vw, 34px);
  }
  .s-evidence-bridge__tag {
    font-size: clamp(22px, 6.2vw, 32px);
  }
  .s-evidence-bridge__proof {
    padding-left: 18px;
  }
  .s-evidence-bridge__metric {
    font-size: clamp(31px, 8.2vw, 46px);
  }
}

.s-ransom__chrome {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: min(100%, 1540px);
  align-self: center;
  padding: 6px 11px;
  border: 2px solid #ffffff;
  background: #ffff00;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: var(--ransom-block);
  font-size: clamp(14px, 1.12vw, 21px);
  font-weight: 900;
}
.s-ransom__main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  width: min(100%, 1540px);
  align-self: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: clamp(34px, 4.2vw, 76px);
  align-items: center;
}
.s-ransom__warn {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 8px;
  background: #c0c0c0;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: var(--ransom-mono);
  font-size: clamp(16px, 1.45vw, 28px);
  font-weight: 700;
}
.s-ransom h1 {
  max-width: 1050px;
  margin: 0 0 24px;
  font-family: var(--ransom-block);
  font-stretch: condensed;
  font-weight: 900;
  font-size: clamp(50px, 5.8vw, 110px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: none;
}
.s-ransom__mast p {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-family: var(--ransom-mono);
  font-size: clamp(17px, 1.32vw, 24px);
  line-height: 1.25;
}
.s-ransom__panel {
  border: 3px solid #ffffff;
  background: #c0c0c0;
  color: #000000;
  padding: 16px;
  box-shadow: none;
  transform: none;
}
.s-ransom__timer-label {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: clamp(14px, 1.1vw, 20px);
  margin-bottom: 8px;
}
.s-ransom__timer {
  font-family: var(--ransom-mono);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 82px);
  line-height: 1;
  color: #0000aa;
  font-variant-numeric: tabular-nums;
}
.s-ransom__amount {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 2px solid #000000;
  font-family: var(--ransom-block);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 58px);
  color: #000000;
}
.s-ransom__wallet {
  margin-top: 12px;
  word-break: break-all;
  color: #000000;
  font-family: var(--ransom-mono);
  font-size: clamp(12px, 0.95vw, 16px);
}
.s-ransom__proof {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1540px);
  align-self: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}
.s-ransom__proof div {
  border: 2px solid #ffffff;
  background: #000000;
  padding: 9px 10px;
}
.s-ransom__proof span {
  display: block;
  margin-bottom: 6px;
  color: #ffff00;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: clamp(11px, 0.88vw, 15px);
}
.s-ransom__proof strong {
  font-family: var(--ransom-block);
  font-size: clamp(20px, 2vw, 38px);
  font-weight: 900;
  color: #ffffff;
}
.s-ransom__instructions {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1540px);
  align-self: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  color: #000000;
  font-family: var(--ransom-mono);
  font-size: clamp(12px, 0.95vw, 17px);
  line-height: 1.25;
}
.s-ransom__instructions p {
  margin: 0;
  padding: 9px 10px;
  background: #c0c0c0;
  border: 2px solid #ffffff;
}

@media (max-width: 900px) {
  .s-ransom {
    padding: 46px 28px;
  }

  .s-incident,
  .s-bridge,
  .s-outage,
  .s-ransom__main,
  .s-ransom__proof,
  .s-ransom__instructions {
    grid-template-columns: 1fr;
  }

  .s-incident__tempo { display: none; }
  .s-picture__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .s-picture__path { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .s-intro-roles {
    width: min(90vw, 720px);
  }
  .s-intro-roles__row,
  .s-intro-roles__row--primary {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    justify-items: stretch;
    min-height: 58px;
  }
  .s-intro-roles__logo-wrap {
    justify-content: center;
  }
  .s-intro-roles__row--primary .s-intro-roles__logo {
    max-width: 70px;
    max-height: 62px;
  }
  .s-intro-roles__role,
  .s-intro-roles__row--primary .s-intro-roles__role {
    font-size: clamp(18px, 4.5vw, 30px);
  }
}

/* ============================================================================
   SCENE 6 — OSINT recon (recreation of recon.mp4)
   ChatGPT-style: prompt + reply bubbles on the left, live activity feed
   on the right. Sources counter ticks up with each non-thinking entry.
   ========================================================================== */

.s-osint-recon {
  position: absolute;
  inset: 6vh 0 12vh;
  width: 100%;
  display: flex;
  font-family: var(--brand);
  color: var(--white);
  text-align: left;
  padding: 0 clamp(28px, 3.5vw, 72px);
  gap: clamp(24px, 2.4vw, 48px);
}
.s-osint-recon__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 24px);
  overflow: hidden;
}
.s-osint-recon__bubble {
  padding: clamp(14px, 1.6vh, 22px) clamp(18px, 2vw, 28px);
  border-radius: 18px;
  font-size: clamp(19px, 1.55vw, 28px);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(6px);
  animation: fade-up 600ms ease forwards;
}
.s-osint-recon__bubble--user {
  align-self: flex-end;
  max-width: 78%;
  background: rgba(60, 60, 70, 0.55);
}
.s-osint-recon__bubble--agent {
  max-width: 96%;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.s-osint-recon__qs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.s-osint-recon__activity {
  width: clamp(300px, 28vw, 460px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vh, 16px);
  font-size: clamp(17px, 1.3vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: clamp(16px, 1.6vw, 28px);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.s-osint-recon__activity.show {
  opacity: 1;
  transform: translateX(0);
}
.s-osint-recon__activity-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 18px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding-bottom: clamp(8px, 1vh, 14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.s-osint-recon__activity-list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vh, 14px);
  overflow: hidden;
}
.s-osint-recon__activity-item {
  display: flex;
  gap: 10px;
  align-items: baseline;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(4px);
  animation: fade-up 380ms ease forwards;
}
.s-osint-recon__activity-icon {
  flex-shrink: 0;
  width: 1.1em;
  font-size: 0.95em;
  text-align: center;
}

/* [[…]] phrases inside activity rows reuse the same red-flash that the
   terminal lines use. Animation fires once when the row enters the DOM. */
.s-osint-recon__activity-item .glow {
  display: inline;
  animation: ph-flash 2400ms ease-out forwards;
}

/* report card — the payoff. Lands after the activity finishes. */
.s-osint-recon__report {
  margin-top: clamp(14px, 2vh, 24px);
  padding: clamp(18px, 2.4vh, 28px) clamp(20px, 2.4vw, 32px);
  font-family: var(--mono);
  font-size: clamp(19px, 1.5vw, 27px);
  line-height: 1.55;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(8, 9, 13, 0.85);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 31, 48, 0.18);
  opacity: 0;
  transform: translateY(8px);
  animation: fade-up 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-osint-recon__report-head {
  font-size: 0.78em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: clamp(12px, 1.4vh, 18px);
  padding-bottom: clamp(8px, 1vh, 14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}
.s-osint-recon__report-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  animation: fade-up 480ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-osint-recon__report-row:last-child { border-bottom: none; }
.s-osint-recon__report-row .k {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.86em;
  color: var(--white);
  flex-shrink: 0;
}
.s-osint-recon__report-row .v {
  text-align: right;
  color: var(--white);
}

/* ============================================================================
   SCENE 7 — Cirrus asks the AI how to hack (Claude-Code-style stream + canted evidence)
   ========================================================================== */

.s-pentest {
  position: absolute;
  inset: 8vh 0 18vh;
  width: 100%;
  font-family: var(--mono);
  color: var(--white);
  perspective: 1800px;
}
.s-pentest__panel {
  position: absolute;
  left: clamp(28px, 4vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 760px);
  text-align: left;
}
.s-pentest__panel .ph-stream {
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.5;
}

/* scene 5 + scene 7 canted-doc — bigger, pulled inward, gentler perspective */
.s-pentest .canted-doc,
.s-groupchat-scene .canted-doc {
  right: clamp(220px, 19vw, 380px);
  height: clamp(528px, 80vh, 1080px);
  animation: canted-in--pentest 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 800ms forwards;
}
@keyframes canted-in--pentest {
  0%   { opacity: 0; transform: translateY(-50%) perspective(1800px) rotateY(-26deg) rotateX(4deg) rotateZ(-1deg) translateX(30px); }
  100% { opacity: 1; transform: translateY(-50%) perspective(1800px) rotateY(-16deg) rotateX(2deg) rotateZ(-0.5deg); }
}

/* ============================================================================
   SCENE 6 (legacy) — OSINT prompt (kept for reference; not currently rendered)
   ========================================================================== */

.s-osint {
  position: absolute;
  inset: 8vh 0 18vh;
  width: 100%;
  font-family: var(--brand);
  color: var(--white);
  perspective: 1600px;
}
.s-osint__panel {
  position: absolute;
  left: clamp(28px, 6vw, 96px);
  top: 50%;
  transform: translateY(-50%);
  width: min(50vw, 700px);
  display: flex;
  flex-direction: column;
}
.s-osint__hero {
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 clamp(20px, 3vh, 36px);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fade-up 700ms ease 200ms forwards;
  text-align: left;
}
.s-osint__box {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.32);
  background: #1c1c1f;
  border-radius: 28px;
  padding: 22px 26px 14px;
  text-align: left;
  opacity: 0;
  animation: fade-up 700ms ease 600ms forwards;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.s-osint__prompt {
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.55;
  color: var(--white);
  min-height: 4.5em;
}
.s-osint__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--white);
}
.s-osint__controls .pills { display: flex; gap: 10px; align-items: center; }
.s-osint__controls .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
}
.s-osint__send {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

/* ============================================================================
   SCENE 7 — Compromise outcome + canted Anthropic Aug 2025 evidence
   ========================================================================== */

.s-compromise {
  position: absolute;
  inset: 8vh 0 22vh;
  width: 100%;
  perspective: 1600px;
}
.s-compromise__haul {
  position: absolute;
  left: clamp(28px, 4vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: min(48vw, 720px);
  font-family: var(--mono);
  text-align: left;
}
.s-compromise__title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: clamp(40px, 4.4vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0 0 clamp(8px, 1.2vh, 16px);
}
.s-compromise__sub {
  font-size: clamp(16px, 1.35vw, 22px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 clamp(28px, 4vh, 44px);
}
.s-compromise__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vh, 20px);
  font-size: clamp(19px, 1.7vw, 30px);
  color: var(--white);
}
.s-compromise__list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 10px;
  opacity: 0;
  animation: fade-up 380ms ease forwards;
}
.s-compromise__list li .k { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.88em; }
.s-compromise__list li .v {
  color: var(--red);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 22px rgba(255,31,48,0.42);
}

/* threat-intel sidebar (right side of scene 6 — replaces the canted-doc) */
.s-compromise__intel {
  position: absolute;
  right: clamp(28px, 4vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 640px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vh, 28px);
  font-family: var(--mono);
  text-align: left;
}
.s-compromise__intel-item {
  border-left: 2px solid var(--white);
  padding: 4px 0 6px 18px;
  opacity: 0;
  animation: fade-up 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.s-compromise__intel-src {
  font-size: clamp(14px, 1.18vw, 19px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.s-compromise__intel-text {
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.45;
  color: var(--white);
}
.s-compromise__intel-key {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255,31,48,0.42);
}

/* shared canted-document treatment — image rendered in perspective on the
   right edge of the stage, like an isometric document in evidence */
.canted-doc {
  position: absolute;
  right: clamp(24px, 3.5vw, 72px);
  top: 50%;
  height: clamp(320px, 72%, 680px);
  transform: translateY(-50%) perspective(1500px) rotateY(-26deg) rotateX(4deg) rotateZ(-1deg);
  transform-origin: center right;
  box-shadow:
    -30px 40px 90px rgba(0, 0, 0, 0.7),
    -2px 0 0 rgba(255,255,255,0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: canted-in 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 800ms forwards;
}
.canted-doc img {
  height: 100%;
  width: auto;
  display: block;
}
@keyframes canted-in {
  0%   { opacity: 0; transform: translateY(-50%) perspective(1500px) rotateY(-40deg) rotateX(8deg) rotateZ(-2deg) translateX(40px); }
  100% { opacity: 1; transform: translateY(-50%) perspective(1500px) rotateY(-26deg) rotateX(4deg) rotateZ(-1deg); }
}

/* ============================================================================
   SCENE 8 — chat groups + canted Anthropic Nov 2025 evidence
   reuses .s-groupchat from the earlier definition; just adds the canted-doc
   ========================================================================== */

/* ============================================================================
   PRACTICE CAPTIONS
   ========================================================================== */

.practice-caption {
  position: fixed;
  left: 50%;
  bottom: clamp(22px, 5vh, 62px);
  z-index: 90;
  width: min(1100px, calc(100vw - 32px));
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  font-family: var(--brand);
  color: var(--white);
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.practice-caption.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.practice-caption__top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.64);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: clamp(10px, 0.9vw, 13px);
  text-transform: uppercase;
}

.practice-caption__badge {
  color: var(--red);
  font-weight: 800;
}

.practice-caption__scene {
  color: rgba(255, 255, 255, 0.72);
}

.practice-caption__text {
  min-height: 2.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.6vw, 22px) clamp(16px, 2.8vw, 38px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(15, 15, 18, 0.92), rgba(0, 0, 0, 0.86)),
    rgba(0, 0, 0, 0.84);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.62);
  font-size: clamp(18px, 2.15vw, 34px);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
  text-shadow:
    0 2px 0 #000,
    0 0 22px rgba(0, 0, 0, 0.9);
}

.practice-caption__bar {
  width: 100%;
  height: 3px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.practice-caption__progress {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--red);
}

@media (max-width: 720px) {
  .practice-caption {
    bottom: 18px;
    width: calc(100vw - 20px);
  }

  .practice-caption__text {
    min-height: 2.7em;
    font-size: clamp(20px, 7vw, 34px);
  }
}

/* ============================================================================
   CALGARY 2026 REBUILD — Act II+ compact slide vocabulary
   These styles layer on top of the existing blue-side frame system.
   ========================================================================== */

.s-logo-blue {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.s-logo-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,204,102,0.11), transparent 31%),
    linear-gradient(90deg, transparent, rgba(0,204,102,0.06), transparent);
}
.s-logo-blue__lockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  opacity: 1;
}
.s-logo-blue__lockup span {
  width: 1px;
  height: clamp(42px, 5vh, 68px);
  background: rgba(255,255,255,0.38);
}
.s-logo-blue__lockup img {
  display: block;
  width: auto;
}
.s-logo-blue__pan {
  height: clamp(118px, 13vh, 172px);
}
.s-logo-blue__cortex {
  height: clamp(68px, 7.6vh, 100px);
}

.s-defender-triad {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto 1fr;
  gap: 0;
  padding-top: clamp(108px, 13vh, 140px);
}
.s-defender-triad__copy {
  grid-row: 1;
  max-width: none;
}
.s-defender-triad__points {
  grid-row: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 64px);
}
.s-defender-triad__point {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vh, 18px);
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-defender-triad__num {
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 204, 102, 0.92);
}
.s-defender-triad__point strong {
  font-family: var(--display);
  font-size: clamp(44px, 4.5vw, 84px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}
.s-foundation__block,
.s-hit-list__metrics article,
.s-hazards__cards article,
.s-guardrails__steps article,
.s-ai-security-basics__loop article,
.s-mythos__stats article,
.s-basic-weapon__triad article,
.s-improving__timeline article,
.s-too-many__grid span {
  border: 1px solid rgba(0,204,102,0.28);
  background: rgba(0,204,102,0.055);
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-foundation__block span,
.s-improving__timeline span,
.s-basic-weapon__triad span,
.s-ai-security-basics__loop span,
.s-hazards__cards span,
.s-guardrails__steps span,
.s-mythos__stats span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.s-foundation__block strong,
.s-improving__timeline strong,
.s-basic-weapon__triad strong,
.s-ai-security-basics__loop strong,
.s-hazards__cards strong,
.s-guardrails__steps strong {
  font-family: var(--display);
  font-size: clamp(44px, 4.5vw, 84px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.86;
  text-transform: uppercase;
  color: var(--white);
}

.s-sar-tool__diagram {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 51vh, 560px);
}
.s-sar-tool__solution {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: clamp(112px, 10.5vw, 158px);
  padding: clamp(16px, 2.25vw, 28px) clamp(26px, 3.35vw, 46px);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.66);
  color: rgba(255,255,255,0.86);
  font-family: var(--mono);
  font-size: clamp(11px, 0.78vw, 13px);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.s-sar-tool__solution img {
  width: clamp(44px, 4.05vw, 66px);
  height: clamp(44px, 4.05vw, 66px);
  object-fit: contain;
  filter: invert(1);
  opacity: 0.88;
}
.s-sar-tool__word {
  position: absolute;
  color: var(--cortex-green);
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.s-sar-tool__word--telemetry { left: 8%; top: 14%; }
.s-sar-tool__word--detections { right: 7%; top: 18%; }
.s-sar-tool__word--rules { left: 50%; bottom: -2%; transform: translateX(-50%); }
.s-sar-tool__diagram svg,
.s-legacy-map__stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.s-sar-tool__link,
.s-legacy-map__stage svg path {
  fill: none;
  stroke: rgba(0,204,102,0.54);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.s-sar-tool__core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(190px, 20vw, 310px);
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.68);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,204,102,0.16), rgba(4,7,11,0.86) 62%);
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}
.s-sar-tool__node {
  position: absolute;
  display: grid;
  gap: 10px;
  min-width: clamp(210px, 21vw, 320px);
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.78);
}
.s-sar-tool__node--sense { left: 4%; top: 8%; }
.s-sar-tool__node--analyze { right: 4%; top: 8%; }
.s-sar-tool__node--respond { left: 50%; bottom: 0; transform: translateX(-50%); }
.s-sar-tool__node strong,
.s-grounded-adapter__cols strong,
.s-ueba__stage strong,
.s-nlp__answer span,
.s-fake-ide__window strong {
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(24px, 2.2vw, 38px);
  font-weight: 780;
  line-height: 1;
}
.s-sar-tool__node span,
.s-grounded-adapter__cols span,
.s-fake-ide__window span,
.s-ueba__stage span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.s-legacy-map__stage {
  position: relative;
  z-index: 1;
  min-height: clamp(370px, 52vh, 560px);
}
.s-legacy-map__tool {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: clamp(86px, 8vw, 124px);
  padding: 12px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.66);
  color: rgba(255,255,255,0.86);
  font-family: var(--mono);
  font-size: clamp(10px, 0.72vw, 12px);
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-legacy-map__tool--1 { left: 7%; top: 9%; }
.s-legacy-map__tool--2 { left: 24%; top: 31%; }
.s-legacy-map__tool--3 { left: 11%; bottom: 11%; }
.s-legacy-map__tool--4 { left: 46%; top: 12%; }
.s-legacy-map__tool--5 { right: 28%; bottom: 15%; }
.s-legacy-map__tool--6 { right: 10%; top: 18%; }
.s-legacy-map__tool--7 { right: 8%; bottom: 8%; }
.s-legacy-map__tool--8 { left: 57%; top: 45%; }
.s-legacy-map__tool img {
  width: clamp(30px, 2.6vw, 44px);
  height: clamp(30px, 2.6vw, 44px);
  object-fit: contain;
  filter: invert(1);
  opacity: 0.88;
}

.s-foundation__blocks,
.s-improving__timeline,
.s-basic-weapon__triad,
.s-hazards__cards,
.s-guardrails__steps,
.s-ai-security-basics__loop,
.s-mythos__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
}
.s-foundation__blocks {
  min-height: clamp(370px, 52vh, 560px);
  align-items: center;
}
.s-foundation__block {
  min-height: clamp(220px, 30vh, 320px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(20px, 2.5vh, 34px);
  padding: clamp(20px, 2.2vw, 32px);
  text-align: center;
}
.s-foundation__block i {
  width: clamp(52px, 5vw, 78px);
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.7);
  transform: rotate(45deg);
}
.s-possibilities__stage {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: clamp(400px, 58vh, 620px);
  gap: clamp(24px, 3vh, 40px);
}
.s-possibilities__tools {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
}
.s-possibilities__tools span,
.s-too-many__grid span {
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.66);
  font-family: var(--mono);
  font-size: clamp(12px, 0.92vw, 15px);
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  animation: blue-row-in 700ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-possibilities__base {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.s-possibilities__base strong {
  padding: 18px 22px;
  border: 1px solid rgba(0,204,102,0.42);
  background: rgba(0,204,102,0.075);
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}

.s-ueba__stage,
.s-illusion-skill__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.s-ueba__stage article,
.s-illusion-skill__stage article {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: clamp(210px, 31vh, 320px);
  padding: clamp(16px, 1.8vw, 26px);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(4,7,11,0.66);
}
.s-ueba__stage article:nth-child(2),
.s-illusion-skill__stage article:nth-child(2) {
  border-color: rgba(245,181,74,0.6);
}
.s-ueba__stage article:nth-child(4),
.s-illusion-skill__stage article:nth-child(3) {
  border-color: rgba(0,204,102,0.46);
}
.s-illusion-skill__stage strong {
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 62px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-illusion-skill__stage span {
  font-family: var(--brand);
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 680;
  color: rgba(255,255,255,0.72);
}

.s-nlp__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
}
.s-nlp__question,
.s-nlp__answer {
  min-height: clamp(230px, 33vh, 340px);
  padding: clamp(20px, 2.4vw, 36px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.66);
}
.s-nlp__question {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(38px, 3.8vw, 68px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
}
.s-nlp__answer {
  display: grid;
  gap: 10px;
  align-content: center;
  border-color: rgba(0,204,102,0.46);
}
.s-nlp__answer span {
  padding: 12px 14px;
  border: 1px solid rgba(0,204,102,0.28);
  background: rgba(0,204,102,0.055);
}
.s-nlp__arrow {
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.16), var(--cortex-green));
}

.s-agent-loop2__stage,
.s-grounded-adapter__cols,
.s-proof-image__figure,
.s-fake-ide__window,
.s-hit-list__metrics,
.s-too-many__grid,
.s-carlini__quote,
.s-all-it-takes__stage {
  position: relative;
  z-index: 1;
}
.s-agent-loop2__stage {
  min-height: clamp(330px, 47vh, 520px);
}
.s-agent-loop2__center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(210px, 24vw, 370px);
  aspect-ratio: 1;
  border: 2px solid rgba(0,204,102,0.68);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,204,102,0.16), rgba(4,7,11,0.86) 62%);
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(31px, 3.3vw, 58px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}
.s-agent-loop2__node {
  position: absolute;
  min-width: clamp(140px, 15vw, 220px);
  padding: 15px 20px;
  border: 1px solid rgba(0,204,102,0.38);
  background: rgba(0,204,102,0.06);
  color: var(--cortex-green);
  font-family: var(--brand);
  font-size: clamp(20px, 1.9vw, 32px);
  font-weight: 780;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-agent-loop2__node--1 { left: 14%; top: 18%; }
.s-agent-loop2__node--2 { left: 50%; top: 4%; transform: translateX(-50%); }
.s-agent-loop2__node--3 { right: 14%; top: 18%; }
.s-agent-loop2__node--4 { right: 19%; bottom: 12%; }
.s-agent-loop2__node--5 { left: 19%; bottom: 12%; }

.s-grounded-adapter__cols {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.18fr) minmax(0, 0.9fr);
  gap: clamp(12px, 1.4vw, 22px);
  align-items: center;
  min-height: clamp(370px, 52vh, 560px);
}
.s-grounded-adapter__cols article {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2.2vh, 30px);
  min-height: clamp(230px, 32vh, 330px);
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.66);
}
.s-grounded-adapter__middle {
  border-color: rgba(0,204,102,0.58) !important;
  background: rgba(0,204,102,0.07) !important;
}
.s-grounded-adapter__cols em {
  font-family: var(--brand);
  font-size: clamp(18px, 1.55vw, 26px);
  font-style: normal;
  font-weight: 670;
  line-height: 1.1;
  color: rgba(255,255,255,0.72);
}

.s-proof-image {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  align-content: center;
  align-items: center;
}
.s-proof-image__figure {
  margin: 0;
  min-height: clamp(360px, 54vh, 610px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(4,7,11,0.64);
  overflow: hidden;
}
.s-proof-image__figure img {
  display: block;
  max-width: 96%;
  max-height: clamp(340px, 52vh, 590px);
  object-fit: contain;
}
.s-proof-image--tall .s-proof-image__figure img {
  max-height: clamp(390px, 62vh, 700px);
}

.s-improving__timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.s-frontier-llm {
  gap: clamp(18px, 2vh, 28px);
}
.s-frontier-llm .s-blue-frame__title {
  font-size: clamp(48px, 4.45vw, 78px);
}
.s-frontier-llm__stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(18px, 2.2vh, 30px);
  width: 100%;
  max-width: none;
}
.s-frontier-llm__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  min-height: clamp(132px, 18vh, 190px);
  padding: 0 clamp(26px, 3vw, 58px) clamp(10px, 1.2vh, 16px);
  overflow: hidden;
}
.s-frontier-llm__track::before,
.s-frontier-llm__track::after {
  content: "";
  position: absolute;
  left: clamp(54px, 5vw, 88px);
  right: clamp(54px, 5vw, 88px);
  pointer-events: none;
}
.s-frontier-llm__track::before {
  top: 54%;
  height: 22px;
  border: 1px solid rgba(0,204,102,0.38);
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(0,204,102,0.18) 5% 22%, transparent 22% 27%, rgba(0,204,102,0.18) 27% 46%, transparent 46% 51%, rgba(0,204,102,0.18) 51% 72%, transparent 72% 77%, rgba(0,204,102,0.18) 77% 100%),
    rgba(4,7,11,0.58);
  box-shadow: 0 0 32px rgba(0,204,102,0.16);
  transform: translateY(-50%);
}
.s-frontier-llm__track::after {
  top: 54%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,204,102,0.18), rgba(255,255,255,0.72), rgba(0,204,102,0.36));
  transform: translateY(-50%);
}
.s-frontier-llm__marker {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  color: var(--white);
}
.s-frontier-llm__marker span {
  font-family: var(--brand);
  font-size: clamp(30px, 2.8vw, 54px);
  font-weight: 520;
  line-height: 1;
}
.s-frontier-llm__marker i {
  position: relative;
  z-index: 1;
  width: clamp(15px, 1.4vw, 24px);
  aspect-ratio: 1;
  border: 3px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  background: var(--cortex-green);
  box-shadow: 0 0 20px rgba(0,204,102,0.6);
}
.s-frontier-llm__marker::after {
  content: "";
  width: 2px;
  flex: 1;
  min-height: 76px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(0,204,102,0.08));
}
.s-frontier-llm__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
}
.s-frontier-llm__card {
  min-width: 0;
  min-height: clamp(230px, 28vh, 310px);
  display: grid;
  align-content: start;
  gap: clamp(9px, 1vh, 14px);
  padding: clamp(18px, 1.65vw, 26px);
  border: 1px solid rgba(0,204,102,0.32);
  background:
    linear-gradient(135deg, rgba(0,204,102,0.09), rgba(255,255,255,0.025)),
    rgba(4,7,11,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.s-frontier-llm__card > span {
  font-family: var(--mono);
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.52);
}
.s-frontier-llm__card strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(30px, 2.35vw, 44px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.94;
  text-transform: uppercase;
}
.s-frontier-llm__card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.s-frontier-llm__card li {
  position: relative;
  padding-left: 20px;
  font-family: var(--brand);
  font-size: clamp(17px, 1.18vw, 23px);
  font-weight: 650;
  line-height: 1.12;
  color: rgba(255,255,255,0.82);
}
.s-frontier-llm__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cortex-green);
}
.s-frontier-llm__tlp {
  position: absolute;
  right: clamp(72px, 7.3vw, 132px);
  bottom: clamp(54px, 7vh, 86px);
  z-index: 2;
  color: rgba(255,255,255,0.82);
  font-family: var(--brand);
  font-size: clamp(18px, 1.5vw, 28px);
  font-weight: 820;
  letter-spacing: 0;
}
.s-rating-table__rows,
.s-rating-table__grid,
.s-scale-evidence__split,
.s-mass-scale__stage {
  position: relative;
  z-index: 1;
}
.s-rating-table__rows {
  display: grid;
  gap: 10px;
}
.s-rating-table__rows article {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 42px);
  align-items: center;
  min-height: clamp(68px, 8.5vh, 98px);
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.66);
  opacity: 0;
  animation: blue-row-in 780ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-rating-table__rows strong,
.s-rating-table__grid div,
.s-rating-table__grid span:nth-child(4n+2) {
  color: var(--cortex-green);
}
.s-rating-table__rows strong {
  font-family: var(--display);
  font-size: clamp(31px, 3.2vw, 58px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.88;
  text-transform: uppercase;
}
.s-rating-table__rows span {
  font-family: var(--brand);
  font-size: clamp(18px, 1.6vw, 27px);
  font-weight: 670;
  line-height: 1.12;
  color: rgba(255,255,255,0.84);
}
.s-rating-table__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(180px, 0.9fr) minmax(130px, 0.55fr) minmax(0, 1.2fr);
  border: 1px solid rgba(255,255,255,0.2);
}
.s-rating-table__grid--3col {
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 1fr) minmax(160px, 0.6fr);
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.s-rating-table__grid--3col div,
.s-rating-table__grid--3col span,
.s-rating-table__grid--3col span:nth-child(3n+2) {
  color: rgba(255,255,255,0.84);
}

.s-rating-table__grid div,
.s-rating-table__grid span {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  font-family: var(--mono);
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.22;
}
.s-rating-table__grid div {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,204,102,0.06);
}
.s-rating-table__grid span {
  color: rgba(255,255,255,0.82);
  background: rgba(4,7,11,0.62);
  opacity: 0;
  animation: blue-row-in 560ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-rating-table--compact {
  gap: clamp(12px, 1.5vh, 20px);
  padding-top: clamp(112px, 12vh, 136px);
  padding-bottom: clamp(102px, 11vh, 128px);
}
.s-rating-table--compact .s-blue-frame__title {
  max-width: 1280px;
  font-size: clamp(38px, 4.0vw, 70px);
  line-height: 0.92;
}
.s-rating-table--compact .s-rating-table__rows {
  gap: 8px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.s-rating-table--compact .s-rating-table__rows article {
  grid-template-columns: minmax(330px, 0.3fr) minmax(0, 1fr);
  min-height: clamp(60px, 7.5vh, 84px);
  padding: 9px 18px;
}
.s-rating-table--compact .s-rating-table__rows strong {
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: 0.92;
}
.s-rating-table--compact .s-rating-table__rows span {
  font-size: clamp(16px, 1.25vw, 22px);
}
.s-scale-evidence__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.68fr);
  gap: clamp(22px, 3vw, 52px);
}
.s-scale-evidence__timeline,
.s-scale-evidence__claims {
  display: grid;
  gap: 9px;
}
.s-scale-evidence__timeline article,
.s-scale-evidence__claims article {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(4,7,11,0.66);
  opacity: 0;
  animation: blue-row-in 720ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-scale-evidence__timeline strong {
  display: block;
  margin-bottom: 6px;
  color: #f5b54a;
  font-family: var(--mono);
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.s-scale-evidence__timeline span,
.s-scale-evidence__claims span,
.s-mass-scale__stage span {
  font-family: var(--brand);
  font-size: clamp(15px, 1.18vw, 20px);
  font-weight: 650;
  line-height: 1.18;
  color: rgba(255,255,255,0.78);
}
.s-scale-evidence__claims article {
  min-height: 118px;
  border-color: rgba(0,204,102,0.3);
  background: rgba(0,204,102,0.055);
}
.s-scale-evidence__claims strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cortex-green);
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 54px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-mass-scale__stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
}
.s-mass-scale__stage article {
  min-height: clamp(220px, 33vh, 350px);
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(0,204,102,0.3);
  background: rgba(0,204,102,0.055);
}
.s-mass-scale__stage strong {
  font-family: var(--display);
  font-size: clamp(70px, 8vw, 140px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.8;
}
.s-mass-scale__line {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 6px 0 0;
  font-family: var(--brand);
  font-size: clamp(24px, 2.2vw, 38px);
  font-weight: 720;
  line-height: 1.08;
}
.s-improving__timeline article,
.s-basic-weapon__triad article,
.s-mythos__stats article,
.s-hazards__cards article,
.s-guardrails__steps article,
.s-ai-security-basics__loop article {
  min-height: clamp(210px, 32vh, 340px);
  display: grid;
  align-content: space-between;
  padding: clamp(18px, 2vw, 30px);
}
.s-mythos__stats article strong,
.s-hit-list__metrics strong,
.s-all-it-takes__price {
  font-family: var(--display);
  font-size: clamp(72px, 8vw, 142px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.8;
}
.s-carlini__quote {
  max-width: 1120px;
  padding-left: clamp(28px, 3vw, 46px);
  border-left: 2px solid rgba(0,204,102,0.82);
}
.s-carlini__quote p {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(26px, 2.9vw, 50px);
  font-weight: 760;
  line-height: 1.06;
  color: rgba(255,255,255,0.92);
}
.s-carlini__quote span {
  display: block;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.s-too-many__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.s-all-it-takes__stage {
  min-height: clamp(330px, 48vh, 520px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 4vw, 70px);
  align-content: center;
  align-items: center;
}
.s-all-it-takes__stage blockquote {
  margin: 0;
}
.s-all-it-takes__stage p {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(28px, 2.6vw, 48px);
  font-weight: 720;
  line-height: 1.1;
  color: rgba(255,255,255,0.92);
}
.s-all-it-takes__stage cite {
  display: block;
  margin-top: clamp(18px, 2vh, 28px);
  color: rgba(255,255,255,0.62);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 15px);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.s-fake-ide__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  min-height: clamp(390px, 56vh, 620px);
}
.s-fake-ide__brief {
  display: grid;
  align-content: center;
  gap: clamp(22px, 3vh, 36px);
}
.s-fake-ide__brief strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 88px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}
.s-fake-ide__brief ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.s-fake-ide__brief li {
  position: relative;
  padding-left: 20px;
  font-family: var(--brand);
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 640;
  line-height: 1.15;
  color: rgba(255,255,255,0.82);
}
.s-fake-ide__brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cortex-green);
}
.s-fake-ide__window {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
  min-height: clamp(320px, 48vh, 540px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.75);
  overflow: hidden;
}
.s-fake-ide__window aside,
.s-fake-ide__window main,
.s-fake-ide__window section {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(16px, 1.8vw, 26px);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.s-fake-ide__window section {
  border-right: 0;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.s-fake-ide__tabs {
  display: flex;
  gap: 8px;
  margin: -8px -8px 18px;
}
.s-fake-ide__tabs span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.s-fake-ide__window code {
  display: block;
  font-family: var(--mono);
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.s-basic-weapon__triad {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(240px, 1fr) auto;
}
.s-basic-weapon__body {
  display: grid;
  gap: clamp(20px, 3vh, 40px);
}
.s-basic-weapon__note {
  justify-self: end;
  color: var(--red);
  font-family: var(--mono);
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.s-hit-list__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.s-hit-list__metrics article {
  min-height: clamp(150px, 22vh, 230px);
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
}
.s-hit-list__metrics strong {
  font-size: clamp(38px, 4.3vw, 76px);
}
.s-hit-list__metrics span {
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.s-aplt-context {
  max-width: min(920px, 64vw);
  gap: 0;
}
.s-aplt-context li {
  grid-template-columns: 42px minmax(120px, 0.2fr) minmax(0, 1fr);
  padding: clamp(5px, 0.62vw, 9px) 0;
}

.s-ai-security-basics__loop {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.s-shape-secops {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto 1fr;
  gap: 0;
  padding-top: clamp(108px, 13vh, 140px);
}
.s-shape-secops__copy {
  grid-row: 1;
  max-width: none;
}
.s-shape-secops__points {
  grid-row: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4.4vw, 88px);
}
.s-shape-secops__point {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vh, 18px);
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-shape-secops__num {
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 204, 102, 0.92);
}
.s-shape-secops__point strong {
  font-family: var(--display);
  font-size: clamp(44px, 4.5vw, 84px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}
.s-shape-secops__point p {
  margin: 0;
  max-width: 32ch;
  font-family: var(--brand);
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255,255,255,0.74);
}

.s-foundation__block img,
.s-possibilities__tools img,
.s-possibilities__base img {
  width: clamp(54px, 5vw, 82px);
  height: clamp(54px, 5vw, 82px);
  object-fit: contain;
  filter: invert(1);
  opacity: 0.88;
}
.s-foundation__block img {
  justify-self: center;
}
.s-possibilities__tools span {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.s-possibilities__tools img {
  width: clamp(36px, 3.2vw, 54px);
  height: clamp(36px, 3.2vw, 54px);
}
.s-possibilities__base strong {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}
.s-possibilities__base img {
  width: clamp(32px, 3vw, 46px);
  height: clamp(32px, 3vw, 46px);
}

.s-grounded-adapter__cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.s-grounded-adapter__cols li {
  position: relative;
  padding-left: 18px;
  font-family: var(--brand);
  font-size: clamp(17px, 1.3vw, 23px);
  font-weight: 620;
  line-height: 1.16;
  color: rgba(255,255,255,0.86);
}
.s-grounded-adapter__cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cortex-green);
}

.s-carlini--prompt {
  align-content: center;
}
.s-carlini__prompt {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: clamp(20px, 3vh, 40px) 0 0;
  padding: clamp(16px, 1.6vw, 26px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.72);
  color: rgba(255,255,255,0.88);
  font-family: var(--mono);
  font-size: clamp(14px, 1.15vw, 20px);
  line-height: 1.4;
  white-space: pre-wrap;
}
.s-carlini__prompt code {
  font-family: inherit;
}
.s-too-many--unprompted {
  grid-template-columns: minmax(0, 0.6fr) minmax(420px, 0.72fr);
  align-items: center;
}
.s-too-many--unprompted .s-blue-frame__copy {
  grid-column: 1 / -1;
}
.s-too-many__unprompted {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.s-too-many__unprompted article {
  padding: 0;
  border: 0;
  background: transparent;
}
.s-too-many__unprompted strong {
  display: block;
  margin-bottom: 12px;
  color: var(--cortex-green);
  font-family: var(--display);
  font-size: clamp(82px, 9vw, 156px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.78;
}
.s-too-many__unprompted span {
  font-family: var(--brand);
  font-size: clamp(22px, 1.9vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}
.s-too-many__receipt,
.s-mythos__graph {
  position: relative;
  z-index: 1;
  margin: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}
.s-too-many__receipt img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(320px, 56vh, 580px);
  object-fit: contain;
  object-position: center;
}
.s-mythos__graph {
  height: clamp(430px, 62vh, 700px);
}
.s-mythos__graph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.s-mass-scale__quote {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(29px, 2.55vw, 48px);
  font-weight: 740;
  line-height: 1.16;
  color: rgba(255,255,255,0.92);
}
.s-mass-scale__quote strong {
  color: var(--red);
}
.s-scale-evidence__claims--wide {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}
.s-scale-evidence .s-blue-frame__copy,
.s-scale-evidence .s-blue-frame__lede {
  max-width: min(1180px, 68vw);
}
.s-scale-evidence__claims--wide article {
  min-height: auto;
  padding: clamp(18px, 2vw, 28px);
}
.s-scale-evidence__claims--wide article:nth-child(3) {
  grid-column: 1 / -1;
}
.s-scale-evidence__claims--wide strong {
  font-size: clamp(22px, 1.68vw, 32px);
  line-height: 1;
}
.s-scale-evidence__claims--wide span {
  font-size: clamp(14px, 1.02vw, 18px);
  line-height: 1.22;
}
.s-all-it-takes__stage pre {
  margin: 0;
}
.s-all-it-takes__stage code {
  display: block;
  padding: clamp(16px, 1.6vw, 24px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,7,11,0.72);
  color: rgba(255,255,255,0.84);
  font-family: var(--mono);
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.3;
  white-space: pre-wrap;
}

.s-foundation .s-foundation__block,
.s-possibilities .s-possibilities__tools span,
.s-possibilities .s-possibilities__base strong,
.s-scale-evidence .s-scale-evidence__claims article,
.s-red-blue-trace .s-red-blue-trace__row,
.s-purple-timeline .s-purple-timeline__stage article {
  opacity: 1;
  animation: none;
  transform: none;
  filter: none;
}
.s-foundation .s-foundation__block {
  min-width: 0;
  overflow: hidden;
}
.s-foundation .s-foundation__block strong {
  font-size: clamp(40px, 3.6vw, 66px);
  line-height: 0.9;
}
.s-blue-frame [style*="--delay"] {
  opacity: 1;
  animation: none;
  filter: none;
}

@media (max-width: 980px) {
  .s-proof-image,
  .s-nlp__stage,
  .s-fake-ide__stage,
  .s-fake-ide__window {
    grid-template-columns: 1fr;
  }
  .s-defender-triad__points,
  .s-foundation__blocks,
  .s-improving__timeline,
  .s-basic-weapon__triad,
  .s-hit-list__metrics,
  .s-hazards__cards,
  .s-guardrails__steps,
  .s-ai-security-basics__loop,
  .s-grounded-adapter__cols,
  .s-too-many__grid,
  .s-ueba__stage,
  .s-illusion-skill__stage,
  .s-possibilities__tools,
  .s-possibilities__base,
  .s-mythos__stats {
    grid-template-columns: 1fr;
  }
  .s-rating-table__rows article,
  .s-rating-table__grid,
  .s-scale-evidence__split,
  .s-mass-scale__stage,
  .s-shape-secops__points,
  .s-too-many--unprompted {
    grid-template-columns: 1fr;
  }
}

/* ----- act section title slide ------------------------------------------ */

.s-act-header {
  position: relative;
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(96px, 12vh, 132px) clamp(72px, 7.3vw, 132px) clamp(148px, 18vh, 206px);
  color: var(--white);
  text-align: left;
}
.s-act-header::before {
  content: "";
  position: absolute;
  inset: 5.5vh 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 204, 102, 0.18), rgba(0, 204, 102, 0.045) 34%, transparent 72%),
    radial-gradient(circle at 78% 24%, rgba(0, 204, 102, 0.105), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 116px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.38) 58%, transparent 96%);
}
.s-act-header__act-mark {
  position: absolute;
  right: clamp(-30px, -2vw, -8px);
  top: clamp(20px, 4vh, 60px);
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(280px, 42vw, 720px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(0, 204, 102, 0.07);
  user-select: none;
}
.s-act-header__rail {
  position: absolute;
  left: clamp(36px, 4.2vw, 72px);
  top: 14vh;
  bottom: 14vh;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--cortex-green) 20%, rgba(0, 204, 102, 0.2) 72%, transparent);
  box-shadow: 0 0 34px rgba(0, 204, 102, 0.34);
}
.s-act-header__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(14px, 2vh, 24px);
  max-width: 1320px;
}
.s-act-header__kicker {
  font-family: var(--mono);
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 204, 102, 0.92);
}
.s-act-header__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(96px, 11vw, 200px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  animation: blue-center-title-in 1400ms cubic-bezier(.16, 1, .3, 1) 180ms backwards;
}

/* ----- shared clean numbered point list (acts III–X content) ----------- */

.s-blue-frame--points {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto 1fr;
  gap: 0;
  padding-top: clamp(108px, 13vh, 140px);
}
.s-blue-frame--points > .s-blue-frame__copy {
  grid-row: 1;
  max-width: none;
}
.s-blue-frame--points > .s-points {
  grid-row: 3;
  align-self: start;
}
.s-blue-frame--points > .s-blue-frame__source {
  grid-row: 4;
  align-self: end;
}
.s-points {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 3vw, 56px);
}
.s-points--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.s-points--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.s-points--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.s-points--stack {
  max-width: min(980px, 72vw);
  gap: clamp(16px, 2vh, 24px);
}
.s-points--stack li {
  display: grid;
  grid-template-columns: 64px minmax(210px, 0.32fr) minmax(0, 1fr);
  align-items: baseline;
  column-gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(14px, 1.55vw, 22px) 0;
  border-top: 1px solid rgba(255,255,255,0.13);
}
.s-points--stack li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.13);
}
.s-points--columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 0.42fr));
  column-gap: clamp(52px, 7vw, 112px);
  row-gap: 0;
  max-width: min(980px, 72vw);
}
.s-points--columns-2 li {
  min-height: clamp(56px, 7vh, 78px);
}

.s-points li {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vh, 14px);
  opacity: 0;
  animation: blue-row-in 820ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-points li > span {
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 204, 102, 0.92);
}
.s-points li > strong {
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 60px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}
.s-points li > p {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255,255,255,0.74);
}
.s-points.s-points--stack li {
  display: grid;
}
.s-points.s-aplt-context {
  max-width: min(980px, 72vw);
  gap: 0;
}
.s-aplt-context {
  grid-row: 3;
  justify-self: center;
  align-self: start;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) clamp(44px, 6vw, 92px) minmax(340px, 1fr);
  max-width: min(1060px, 76vw);
  width: 100%;
}
.s-aplt-context .s-points {
  gap: 0;
  max-width: none;
}
.s-aplt-context__gutter {
  background: rgba(0,0,0,0.5);
}
.s-aplt-context li {
  grid-template-columns: 42px minmax(150px, 0.34fr) minmax(0, 1fr);
  padding: clamp(5px, 0.62vw, 9px) 0;
  min-height: clamp(56px, 7vh, 78px);
}
.s-points.s-blue-case-summary {
  justify-self: center;
  max-width: min(900px, 62vw);
  width: 100%;
  gap: 0;
}
.s-points.s-blue-case-summary li {
  grid-template-columns: 48px minmax(180px, 0.3fr) minmax(0, 1fr);
  padding: clamp(9px, 0.95vw, 14px) 0;
}
.s-aplt-context li > strong,
.s-points.s-blue-case-summary li > strong {
  font-size: clamp(20px, 1.65vw, 30px);
  line-height: 0.95;
}
.s-aplt-context li > p,
.s-points.s-blue-case-summary li > p {
  font-size: clamp(12px, 0.82vw, 15px);
  line-height: 1.16;
}
.s-points.s-blue-case-summary li > strong {
  font-size: clamp(24px, 2vw, 36px);
}
.s-points.s-blue-case-summary li > p {
  font-size: clamp(14px, 1vw, 18px);
}

@media (max-width: 980px) {
  .s-points--3,
  .s-points--4,
  .s-points--5,
  .s-points--stack {
    grid-template-columns: 1fr;
  }
  .s-points--stack {
    max-width: none;
  }
  .s-points--columns-2 {
    columns: 1;
  }
  .s-points--stack li {
    grid-template-columns: 1fr;
  }
}


/* ----- AI Cyber Capability Curve (Act VI) ------------------------------- */

.s-capability-curve {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: clamp(20px, 3vh, 40px);
  padding-top: clamp(96px, 11vh, 124px);
  padding-bottom: clamp(58px, 7vh, 88px);
  background: #000;
}
.s-capability-curve::before {
  display: none;
}
.s-capability-curve__copy {
  grid-row: 1;
  max-width: none;
}
.s-capability-curve__panel {
  grid-row: 2;
  position: relative;
  z-index: 1;
  margin: 0 10%;
  padding: 1.5rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-capability-curve__chart {
  position: relative;
  width: 100%;
  height: clamp(300px, 50vh, 520px);
}
.s-capability-curve__canvas {
  width: 100% !important;
  height: 100% !important;
}
.s-capability-curve__legend {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: #B4B2A9;
  font-family: var(--brand);
}
.s-capability-curve__legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.s-capability-curve__legend i {
  width: 20px;
  height: 2px;
  display: inline-block;
}
.s-capability-curve__legend-tick {
  width: 0 !important;
  height: 14px !important;
  border-left: 2px solid #FAC775;
}

/* ----- generic vertical centering for blue-frame content ---------------- */

.s-blue-frame--vcenter {
  grid-template-rows: auto 1fr auto 1fr;
  gap: 0;
}
.s-blue-frame--vcenter > .s-blue-frame__copy {
  grid-row: 1;
}
.s-blue-frame--vcenter > .s-blue-frame__copy ~ * {
  grid-row: 3;
}

.s-fake-ide__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: minmax(280px, auto) minmax(280px, auto);
  gap: clamp(16px, 2vh, 28px) clamp(36px, 4vw, 80px);
  align-content: center;
  position: relative;
  z-index: 1;
}
.s-fake-ide__features li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  animation: blue-row-in 720ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--delay);
}
.s-fake-ide__features li > span {
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 204, 102, 0.92);
}
.s-fake-ide__features li > strong {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}
.s-fake-ide__features li > p {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255,255,255,0.74);
}

.s-real-advantage__line {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 84px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--white);
}

.s-thank-you {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  background: #000;
}
.s-thank-you img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
