/* =========================================================
   UNDISCLOSED — Brand stylesheet
   Dark, restrained, editorial. Built around the gradient mark.
   ========================================================= */

:root {
  --void:        #050508;
  --ink:         #0a0a12;
  --panel:       #0d0d18;
  --line:        rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);

  --silver:      #f1f2f8;
  --ash:         #a3a6b8;
  --shadow:      #5a5d72;
  --whisper:     #3a3c4d;

  --violet-deep:  #0e1142;
  --violet:       #4d4ff8;
  --violet-soft:  #6b6efb;
  --violet-light: #b9bcff;

  --max:    1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--void);
  color: var(--silver);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::selection {
  background: var(--violet);
  color: #fff;
}

img { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button { font: inherit; cursor: pointer; }

/* ---------- Grain overlay (subtle film-like texture) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Layout primitives ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.rule {
  height: 1px;
  background: var(--line);
  margin: 0;
  border: 0;
}

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
}

.eyebrow .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 10px var(--violet-soft);
  animation: pulse 3.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(36px, 5.5vw, 76px);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.018em;
  line-height: 1.15;
}

h4 {
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: 0;
  line-height: 1.25;
}

p {
  margin: 0;
  line-height: 1.55;
  color: var(--ash);
  font-size: clamp(15px, 1.15vw, 17px);
}

.lede {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--silver);
  font-weight: 300;
  letter-spacing: -0.005em;
}

/* .serif class kept for backwards-compat in markup, but no italic.
   All emphasis is now visually uniform with surrounding sans. */
.serif,
em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  letter-spacing: inherit;
}

/* Gradient text accent (mirrors the wordmark) */
.grad {
  background: linear-gradient(
    100deg,
    #f1f2f8 0%,
    #d4d6ff 30%,
    #8c8ffa 55%,
    #4d4ff8 75%,
    #1c1f7a 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,5,8,1) 0%, rgba(5,5,8,0.85) 60%, rgba(5,5,8,0) 100%);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  /* No backdrop-filter — it creates an isolation that breaks mix-blend-mode below. */
}

.nav.is-scrolled {
  background: rgba(5, 5, 8, 0.96);
  border-bottom-color: var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Brand wordmark — inline SVG with PNG used as a luminance mask.
   Renders the wordmark in any color. Reliable across browsers. */
.brand-mark {
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
}
.brand-mark svg { display: block; height: 100%; width: auto; }
.brand-mark .fg {
  fill: #fff;
}

.nav__brand .brand-mark { height: 42px; }
.foot__brand .brand-mark { height: 52px; margin-bottom: 28px; }
@media (max-width: 760px) {
  .nav__brand .brand-mark { height: 30px; }
}

.nav__links {
  display: flex;
  gap: 38px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav__links a {
  color: var(--ash);
  position: relative;
  padding: 6px 0;
}

.nav__links a:hover { color: var(--silver); }

.nav__links a.is-active {
  color: var(--silver);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--violet-soft);
  box-shadow: 0 0 8px var(--violet);
}

.nav__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--line-strong);
  padding: 11px 18px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}

.nav__cta:hover {
  border-color: var(--violet-soft);
  background: rgba(77, 79, 248, 0.08);
  color: #fff;
}

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--silver);
  background: transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn .arr {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.btn:hover .arr { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(110deg, #2a2dc4 0%, #4d4ff8 50%, #7174ff 100%);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 60px -20px rgba(77, 79, 248, 0.55);
}

.btn--primary:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 70px -20px rgba(77, 79, 248, 0.7);
}

.btn--ghost:hover {
  border-color: var(--violet-soft);
  color: #fff;
  background: rgba(77, 79, 248, 0.06);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

/* ----- Hero with live operations console (the headline visual) ----- */
.hero--console .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 980px) {
  .hero--console .wrap { grid-template-columns: 1fr; gap: 40px; }
}

.hero--console .hero__content { max-width: none; }
.hero--console .hero__title {
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 300;
}
.hero--console .hero__sub {
  font-size: clamp(15px, 1.15vw, 18px);
  max-width: 38ch;
  margin-top: 12px;
}

/* Cycling title — single inline element, content swapped via JS.
   No min-height, no absolute positioning. Layout flows naturally. */
.cycle {
  display: inline;
  transition: opacity 0.4s ease;
}
.cycle b { font-weight: 400; color: var(--violet-light); }
.cycle.is-fading { opacity: 0; }

.console {
  background: linear-gradient(180deg, rgba(13,13,28,0.92), rgba(8,8,18,0.96));
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(77, 79, 248, 0.08),
    0 40px 100px -30px rgba(77, 79, 248, 0.45),
    0 0 80px -10px rgba(20, 22, 100, 0.55);
  isolation: isolate;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(120, 124, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 124, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
  pointer-events: none;
}

.console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(77, 79, 248, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.console > * { position: relative; z-index: 1; }

.console__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

.console__live {
  color: var(--violet-light);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.console__live::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 10px var(--violet-soft);
  animation: livepulse 1.8s ease-out infinite;
}
.console__clock { color: var(--shadow); font-variant-numeric: tabular-nums; }

.console__body { padding: 22px 22px 14px; }

.console__incident {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 8px;
  font-weight: 400;
}

.console__incident-title {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--silver);
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.console__lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 380px;
}

.console__line {
  display: grid;
  grid-template-columns: 78px 76px 1fr;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ash);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.console__line.is-in { opacity: 1; transform: none; }
.console__line .ts { color: var(--shadow); font-variant-numeric: tabular-nums; padding-top: 1px; }

.console__line .tag {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-light);
  padding: 1px 0 0;
  font-weight: 500;
}
.console__line .tag--escalate { color: #ff9b8a; }
.console__line .tag--legal    { color: #c8b6ff; }
.console__line .tag--brief    { color: #b9bcff; }
.console__line .tag--detail   { color: #ffd28a; }
.console__line .tag--trace    { color: #8be0d4; }
.console__line .tag--enrich   { color: #c8b6ff; }
.console__line .tag--activate { color: #ffb86c; }
.console__line .tag--coord    { color: #ff9b8a; }
.console__line .tag--monitor  { color: #6dd4a4; }
.console__line .tag--contain  { color: #ff7a4d; }

.console__line .text b { color: #fff; font-weight: 500; }

.console__line .text { color: var(--silver); line-height: 1.45; }
.console__line .text small {
  display: block;
  font-size: 11.5px;
  color: var(--ash);
  margin-top: 2px;
}

.console__foot {
  border-top: 1px solid var(--line);
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
  background: linear-gradient(0deg, rgba(77, 79, 248, 0.06), transparent);
}
.console__foot .console__elapsed {
  color: var(--silver);
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
}

.console__status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 500;
  color: #6dd4a4;
}
.console__status::before { content: "✓"; }
.console__status.is-active {
  color: var(--violet-light);
}
.console__status.is-active::before { content: "◆"; }

@media (max-width: 540px) {
  .console__line { grid-template-columns: 60px 64px 1fr; gap: 8px; font-size: 11.5px; }
}

/* Portrait fills right 55% with strong dark fade on the left */
.hero__portrait {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  z-index: 1;
  background-position: 30% center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.68) brightness(0.78) contrast(1.05);
}
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #050508 0%,
    rgba(5,5,8,0.92) 18%,
    rgba(5,5,8,0.45) 45%,
    rgba(5,5,8,0.20) 75%,
    rgba(5,5,8,0.55) 100%
  );
}
.hero__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,8,0.7) 0%,
    transparent 35%,
    transparent 70%,
    rgba(5,5,8,0.5) 100%
  );
  z-index: 1;
}
@media (max-width: 880px) {
  .hero__portrait {
    width: 100%;
    opacity: 0.35;
  }
}

/* When portrait is present, constrain content to left half */
.hero--portrait .hero__content { max-width: 56%; }
@media (max-width: 880px) {
  .hero--portrait .hero__content { max-width: 100%; }
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__canvas::before,
.hero__canvas::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
}

.hero__canvas::before {
  width: 60vw;
  height: 60vw;
  left: -10vw;
  bottom: -20vw;
  background: radial-gradient(closest-side, #2a2cc8 0%, rgba(42,44,200,0) 70%);
}

.hero__canvas::after {
  width: 55vw;
  height: 55vw;
  right: -15vw;
  top: -10vw;
  background: radial-gradient(closest-side, #5d60ff 0%, rgba(93,96,255,0) 70%);
  opacity: 0.45;
}

/* The signature swept gradient — pure CSS. Mirrors the brand image
   without bleeding the wordmark behind copy. */
.hero__sweep {
  position: absolute;
  inset: -5%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 18% 85%, rgba(120, 124, 255, 0.45), transparent 60%),
    radial-gradient(ellipse 70% 50% at 82% 18%, rgba(90, 94, 248, 0.38), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(34, 36, 160, 0.32), transparent 70%),
    conic-gradient(from 215deg at 50% 60%, transparent 0deg, rgba(140, 144, 255, 0.18) 60deg, transparent 140deg, rgba(40, 44, 200, 0.22) 220deg, transparent 320deg);
  filter: blur(40px) saturate(120%);
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 95% 80% at center, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 95% 80% at center, #000 30%, transparent 90%);
  animation: drift 28s ease-in-out infinite alternate;
}

/* A second, sharper highlight — the signature crescent sweep */
.hero__sweep::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 1200px at 30% 110%, rgba(180, 184, 255, 0.22), transparent 45%),
    radial-gradient(circle 900px at 75% -10%, rgba(150, 154, 255, 0.18), transparent 50%);
  filter: blur(20px);
}

@keyframes drift {
  0%   { transform: scale(1.05) translate3d(-1.5%, 0, 0); }
  100% { transform: scale(1.12) translate3d(2%, -1%, 0); }
}

.hero__content {
  position: relative;
  z-index: 3;
}

.hero__eyebrow {
  margin-bottom: 36px;
}

.hero__title {
  font-size: clamp(46px, 7.6vw, 112px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  font-weight: 300;
  max-width: 17ch;
}

.hero__title em {
  font-style: normal;
  font-weight: 400;
}

.hero__sub {
  margin-top: 36px;
  max-width: 56ch;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ash);
  line-height: 1.5;
  font-weight: 300;
}

.hero__cta {
  margin-top: 56px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__features {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 56ch;
}
.hero__features li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(14.5px, 1.05vw, 16px);
  color: var(--silver);
  font-weight: 300;
  line-height: 1.4;
}
.hero__features li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 8px var(--violet-soft);
  transform: translateY(-2px);
}

.hero__meta {
  position: absolute;
  bottom: 32px; left: var(--gutter); right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--whisper);
  z-index: 3;
}

.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 720px) {
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Section primitives ---------- */
.section {
  position: relative;
  padding: clamp(56px, 7vw, 110px) 0;
}

.section--tight { padding: clamp(40px, 5vw, 72px) 0; }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.section__label { color: var(--violet-light); }
.section__title {
  color: var(--silver);
  margin: 0;
  max-width: none;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.015em;
}
.section__lead {
  margin: 6px 0 0;
  max-width: 70ch;
  color: var(--ash);
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.55;
  font-weight: 300;
}

/* ---------- Quote / Pillar block ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  background: var(--void);
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.5s var(--ease);
}

.pillar:hover { background: #07070d; }

.pillar__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--whisper);
  letter-spacing: 0.18em;
}

.pillar__title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--silver);
  line-height: 1.15;
}


.pillar p { color: var(--ash); }

@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 30px 24px; }
}

/* ---------- Capability grid ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cap {
  background: var(--void);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.cap__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cap:hover { background: #07070d; }

.cap:hover .cap__hint { opacity: 1; transform: translateY(0); }

.cap__icon {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--violet-light);
  display: block;
}
.cap__icon path,
.cap__icon circle,
.cap__icon line,
.cap__icon polyline,
.cap__icon polygon,
.cap__icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.cap:hover .cap__icon { color: #d6d8ff; }

.cap h4 {
  color: var(--silver);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.cap p {
  color: var(--ash);
  font-size: 14.5px;
  line-height: 1.55;
}

.cap__hint {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
  opacity: 0.5;
  transform: translateY(4px);
  transition: all 0.4s var(--ease);
}

@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .cap-grid { grid-template-columns: 1fr; }
  .cap {
    min-height: 0;
    padding: 30px 28px;
  }
}

/* ---------- Editorial spread (philosophy) ---------- */
.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}

@media (max-width: 880px) { .spread { grid-template-columns: 1fr; } }

.spread__l {
  position: sticky;
  top: 120px;
}

.spread__l h2 {
  color: var(--silver);
}

.spread__l p {
  margin-top: 24px;
  color: var(--ash);
  max-width: 32ch;
}

.tenets { display: flex; flex-direction: column; gap: 56px; }

.tenet {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.tenet__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--violet-light);
  margin-bottom: 14px;
}

.tenet h3 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.1;
  max-width: 18ch;
}


.tenet p {
  margin-top: 18px;
  color: var(--ash);
  max-width: 48ch;
}

/* ---------- Quotes / Pull quotes ---------- */
.pull {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}

.pull__quote {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--silver);
  max-width: 22ch;
  margin: 0 auto;
}

.pull__attr {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
}

/* ---------- CTA panel ---------- */
.cta-panel {
  position: relative;
  padding: clamp(56px, 8vw, 110px) clamp(36px, 6vw, 90px);
  margin-top: 40px;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(77, 79, 248, 0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(34, 36, 160, 0.22), transparent 50%),
    var(--ink);
  overflow: hidden;
  border-radius: 2px;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, rgba(77,79,248,0.0) 0%, rgba(77,79,248,0.4) 50%, rgba(77,79,248,0) 100%);
  z-index: -1;
  filter: blur(40px);
  opacity: 0.4;
}

.cta-panel h2 {
  max-width: 18ch;
  color: var(--silver);
  font-weight: 300;
}


.cta-panel p {
  max-width: 48ch;
  margin-top: 28px;
  color: var(--ash);
  font-size: clamp(16px, 1.3vw, 19px);
}

.cta-panel .btn {
  margin-top: 48px;
}

/* ---------- Form (access page) ---------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 48px;
}

@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 10px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
}

.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--silver);
  font-family: var(--sans);
  font-size: 17px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
  min-height: 44px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--whisper);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--violet-soft);
}

.field textarea { min-height: 120px; }

.form__submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.form__note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--whisper);
  max-width: 36ch;
}

/* ---------- Footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter) 36px;
  margin-top: 60px;
  position: relative;
}

.foot__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

@media (max-width: 880px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .foot__top { grid-template-columns: 1fr; }
}


.foot__tag {
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  color: var(--ash);
  max-width: 36ch;
  line-height: 1.5;
}

.foot__col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
  margin: 0 0 22px 0;
  font-weight: 400;
}

.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.foot__col a { color: var(--ash); font-size: 14px; }
.foot__col a:hover { color: var(--silver); }

.foot__compliance {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.compliance-badge__check {
  color: var(--violet-light);
  font-size: 11px;
  line-height: 1;
}

.foot__bot {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--whisper);
}

.foot__bot .glyph {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.foot__bot .glyph::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 8px var(--violet);
  animation: pulse 3.4s ease-in-out infinite;
}

/* ---------- Reveal-on-scroll
   Only hide if JS has set body.js — guarantees content shows if JS fails. */
.reveal { opacity: 1; transform: none; transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
body.js .reveal { opacity: 0; transform: translateY(16px); }
body.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.js .reveal { opacity: 1; transform: none; }
}

/* ---------- Tickline (subtle moving label band) ---------- */
.tickline {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--void);
}

.tickline__inner {
  display: flex;
  gap: 60px;
  padding: 22px 0;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--shadow);
  animation: ticker 60s linear infinite;
}

.tickline__inner span { display: inline-flex; align-items: center; gap: 12px; }
.tickline__inner span::before { content: "◆"; color: var(--violet); font-size: 8px; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TACTICAL CHROME — operator/SCIF/SOC ops vibes
   ============================================================ */

/* Classified-style bracketed label: [ EYES ONLY · TIER ALPHA ] */
.tac {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(13, 13, 24, 0.6);
  white-space: nowrap;
}

.tac--live { color: var(--violet-light); border-color: rgba(139, 143, 255, 0.4); }

.tac .live {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 10px var(--violet-soft), 0 0 0 0 rgba(139, 143, 255, 0.6);
  animation: livepulse 1.8s ease-out infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 10px var(--violet-soft), 0 0 0 0 rgba(139, 143, 255, 0.6); }
  70%  { box-shadow: 0 0 10px var(--violet-soft), 0 0 0 10px rgba(139, 143, 255, 0); }
  100% { box-shadow: 0 0 10px var(--violet-soft), 0 0 0 0 rgba(139, 143, 255, 0); }
}

/* Tactical readout strip — dense monospace, separators */
.opsbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(77,79,248,0.04), transparent 30%, transparent 70%, rgba(77,79,248,0.04)),
    var(--ink);
  padding: 14px var(--gutter);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.opsbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.opsbar > * { position: relative; }
.opsbar .sep { color: var(--whisper); }
.opsbar .live { color: var(--violet-light); }
.opsbar .key { color: var(--shadow); }

/* Corner-bracket frame for tactical panels */
.brk { position: relative; }
.brk::before, .brk::after,
.brk > .brk-bl, .brk > .brk-br {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--violet-soft);
  pointer-events: none;
  opacity: 0.7;
}
.brk::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.brk::after  { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.brk > .brk-bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.brk > .brk-br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* Coordinates / data readout */
.coord {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shadow);
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
.coord b { color: var(--ash); font-weight: 400; }

/* Tactical grid backdrop */
.grid-bg {
  position: relative;
  isolation: isolate;
}
.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 124, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 124, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at center, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at center, #000, transparent 80%);
  z-index: -1;
}

/* Scanning line animation (one per page max) */
.scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-soft), transparent);
  opacity: 0.5;
  pointer-events: none;
  animation: scan 6s linear infinite;
}
@keyframes scan {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* Photo card — cinematic embed */
.photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--ink);
  isolation: isolate;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.65) brightness(0.78) contrast(1.05) hue-rotate(-8deg);
  transition: transform 8s ease;
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 8, 0.85) 0%,
    rgba(5, 5, 8, 0.35) 40%,
    rgba(5, 5, 8, 0.0) 70%
  );
  pointer-events: none;
}
.photo:hover img { transform: scale(1.04); }

.photo__caption {
  position: absolute;
  left: 22px; bottom: 18px; right: 22px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.photo__caption b { color: var(--silver); font-weight: 400; }

.photo--full {
  aspect-ratio: 21 / 9;
}
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--square { aspect-ratio: 1 / 1; }
.photo--wide { aspect-ratio: 16 / 9; }

.soc-band-section {
  padding: 0;
  margin-block: 60px;
}
.soc-band {
  position: relative;
  min-height: 420px;
}
.soc-band__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.soc-band__eyebrow {
  margin-bottom: 18px;
  color: var(--ash);
}
.soc-band__title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 300;
  max-width: 18ch;
  color: #fff;
  line-height: 1.05;
}
.soc-band__text {
  max-width: 30ch;
  color: var(--silver);
  font-size: 15px;
}
@media (max-width: 700px) {
  .soc-band-section {
    margin-block: 42px;
  }
  .soc-band.photo--full {
    aspect-ratio: auto;
  }
  .soc-band {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .soc-band img {
    height: clamp(260px, 74vw, 340px);
    flex: none;
  }
  .soc-band::after {
    bottom: auto;
    height: clamp(260px, 74vw, 340px);
  }
  .soc-band__content {
    position: relative;
    padding: 26px 22px 28px;
    align-items: flex-start;
    gap: 18px;
    background:
      linear-gradient(180deg, rgba(8, 8, 18, 0.98), rgba(5, 5, 8, 0.98));
  }
  .soc-band__title {
    font-size: clamp(28px, 9vw, 38px);
    max-width: 13ch;
  }
  .soc-band__text {
    max-width: none;
    font-size: 14.5px;
  }
}

/* Travel Intelligence — world map spotlight */
.travel {
  margin-top: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}
.globe {
  align-self: start;
  position: relative;
  aspect-ratio: 1920 / 1254;
  width: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(77, 79, 248, 0.16), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(20, 22, 100, 0.28), transparent 55%),
    var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
}
/* World map: PNG silhouette tinted brand violet via mask. */
.globe__map {
  position: absolute;
  inset: 0;
  background-color: rgba(140, 144, 255, 0.32);
  -webkit-mask-image: url("/assets/img/world-map.png");
          mask-image: url("/assets/img/world-map.png");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  pointer-events: none;
  z-index: 1;
}
.globe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 124, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 124, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}
.globe::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 50%, transparent 50%, rgba(5, 5, 8, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Marker anchors at (xPct, yPct). Dot is centered on the anchor;
   label floats above or below it without shifting the dot. */
.globe__marker {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 3;
  pointer-events: none;
}
.globe__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow:
    0 0 14px var(--violet-soft),
    0 0 0 0 rgba(139, 143, 255, 0.6);
  transform: translate(-50%, -50%);
  animation: livepulse 2.2s ease-out infinite;
}
.globe__label {
  position: absolute;
  top: 12px;
  left: 0;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
  background: rgba(8, 8, 18, 0.88);
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 1px;
  backdrop-filter: blur(6px);
}
.globe__marker--top .globe__label {
  top: auto;
  bottom: 12px;
}
.globe__readout {
  position: absolute;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
  pointer-events: none;
  z-index: 3;
}
.globe__readout--tl { top: 16px; left: 18px; display: flex; flex-direction: column; gap: 6px; color: var(--ash); }
.globe__readout--tr {
  top: 16px;
  right: 18px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
}
.globe__readout--bottom {
  bottom: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
}
.globe__readout b { color: var(--silver); font-weight: 400; }
.globe__readout .live { color: var(--violet-light); display: inline-flex; align-items: center; gap: 8px; }
.globe__readout .live::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 8px var(--violet-soft);
  animation: livepulse 1.8s ease-out infinite;
}

.travel-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.travel-stack__col {
  min-width: 0;
  padding-block: clamp(16px, 2vw, 26px);
}
.travel-stack__col:first-child { padding-top: 0; }
.travel-stack__col:last-child { padding-bottom: 0; }
.travel-stack__col + .travel-stack__col {
  border-top: 1px solid var(--line);
}
.travel-stack__arrow { display: none; }

.travel-stack__head {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.travel-stack__when {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.travel-stack__when::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 8px var(--violet-soft);
  flex: none;
}
.travel-stack__sep {
  color: var(--whisper);
  font-size: 12px;
  line-height: 1;
  flex: none;
}
.travel-stack__title {
  color: var(--silver);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
  min-width: 0;
  flex: 1;
  white-space: normal;
}
.travel-stack ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.travel-stack li {
  font-size: 14.5px;
  color: var(--ash);
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.45;
}
.travel-stack li::before {
  content: "›";
  color: var(--violet-light);
  font-family: var(--mono);
  flex: none;
  opacity: 0.7;
}
@media (max-width: 1000px) {
  .travel { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .globe__label { font-size: 8.5px; padding: 3px 6px; }
  .globe__readout { font-size: 9.5px; gap: 8px; }
  .globe__readout--tl,
  .globe__readout--tr {
    display: none;
  }
  .globe__readout--bottom {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: flex-start;
  }
  .globe__readout--bottom span:not(.live) {
    display: none;
  }
}
.globe__readout--bottom { flex-wrap: wrap; row-gap: 8px; column-gap: 16px; }

/* Threats — visual threat matrix */
.threat-visual {
  margin: clamp(28px, 4vw, 54px) 0 clamp(22px, 3vw, 34px);
  min-height: 180px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(77, 79, 248, 0.08), transparent 42%),
    linear-gradient(rgba(120, 124, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 124, 255, 0.035) 1px, transparent 1px),
    rgba(7, 7, 14, 0.72);
  background-size: auto, 34px 34px, 34px 34px, auto;
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr) minmax(170px, 0.42fr);
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  position: relative;
}
.threat-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 50%, rgba(107, 110, 251, 0.18), transparent 36%);
  pointer-events: none;
}
.threat-radar {
  position: relative;
  width: clamp(132px, 15vw, 188px);
  aspect-ratio: 1;
  justify-self: center;
}
.threat-radar__ring,
.threat-radar__axis,
.threat-radar__node,
.threat-radar__core {
  position: absolute;
  pointer-events: none;
}
.threat-radar__ring {
  border: 1px solid rgba(185, 188, 255, 0.18);
  border-radius: 50%;
  inset: 0;
}
.threat-radar__ring--mid { inset: 21%; }
.threat-radar__ring--inner { inset: 40%; border-color: rgba(185, 188, 255, 0.28); }
.threat-radar__axis {
  background: rgba(185, 188, 255, 0.14);
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}
.threat-radar__axis--x {
  top: 50%;
  bottom: auto;
  left: 0;
  right: 0;
  width: auto;
  height: 1px;
}
.threat-radar__node {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 18px var(--violet-soft);
}
.threat-radar__node--a { left: 64%; top: 19%; }
.threat-radar__node--b { left: 21%; top: 44%; }
.threat-radar__node--c { left: 73%; top: 69%; }
.threat-radar__node--d { left: 44%; top: 78%; }
.threat-radar__core {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(185, 188, 255, 0.45);
  border-radius: 50%;
  left: calc(50% - 9px);
  top: calc(50% - 9px);
  box-shadow: inset 0 0 16px rgba(107, 110, 251, 0.35), 0 0 20px rgba(107, 110, 251, 0.3);
}
.threat-visual__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  background: var(--line);
}
.threat-visual__flow span {
  min-height: 76px;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 8, 0.86);
  color: var(--silver);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}
.threat-visual__readout {
  position: relative;
  z-index: 1;
  justify-self: end;
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 3vw, 42px);
}
.threat-visual__readout span,
.threat-visual__readout b {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
}
.threat-visual__readout span {
  color: var(--shadow);
  font-size: 10px;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}
.threat-visual__readout b {
  color: var(--violet-light);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
}
.threat-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.threat-item {
  --threat-level: 62%;
  min-height: 300px;
  padding: clamp(24px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 82% 18%, rgba(107, 110, 251, 0.1), transparent 42%),
    var(--void);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.threat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 124, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 124, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.threat-item:hover {
  background:
    radial-gradient(circle at 82% 18%, rgba(107, 110, 251, 0.17), transparent 46%),
    #07070d;
}
.threat-item:hover::before { opacity: 1; }
.threat-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.threat-item__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--violet-light);
  padding-top: 4px;
}
.threat-item__signal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  min-width: 92px;
  color: var(--violet-light);
}
.threat-item__signal b {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.threat-item__signal i {
  position: relative;
  display: block;
  width: 88px;
  height: 17px;
  opacity: 0.9;
  background:
    linear-gradient(90deg, transparent 0 12%, currentColor 12% 14%, transparent 14% 24%, currentColor 24% 27%, transparent 27% 38%, currentColor 38% 41%, transparent 41% 57%, currentColor 57% 59%, transparent 59% 74%, currentColor 74% 77%, transparent 77%),
    linear-gradient(180deg, transparent calc(50% - 1px), rgba(185, 188, 255, 0.18) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px));
}
.threat-item__signal i::before,
.threat-item__signal i::after {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
}
.threat-item__signal i::before {
  right: 0;
  width: 5px;
  height: 5px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
.threat-item__signal i::after {
  left: 0;
  width: 3px;
  height: 3px;
  border: 1px solid currentColor;
  opacity: 0.72;
}
.threat-item--critical .threat-item__signal { color: #ffb86c; }
.threat-item--high .threat-item__signal { color: var(--violet-light); }
.threat-item--medium .threat-item__signal { color: #8be0d4; }
.threat-item__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.threat-item h3 {
  color: var(--silver);
  font-size: clamp(20px, 1.75vw, 25px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.12;
}
.threat-item p {
  color: var(--ash);
  font-size: 14.5px;
  line-height: 1.5;
}
.threat-item__chips {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.threat-item__chips span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 8px;
}
.threat-item__meter {
  position: relative;
  z-index: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.threat-item__meter span {
  display: block;
  width: var(--threat-level);
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
  box-shadow: 0 0 18px rgba(107, 110, 251, 0.65);
}
.threat-item--critical { --threat-level: 92%; }
.threat-item--high { --threat-level: 78%; }
.threat-item--medium { --threat-level: 64%; }
.threat-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: clamp(26px, 3.5vw, 42px);
}
.threat-note p {
  color: var(--silver);
  max-width: 56ch;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 300;
}
.threat-note a {
  flex: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-light);
}
.threat-note a:hover { color: var(--silver); }

@media (max-width: 820px) {
  .threat-visual {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .threat-visual__readout {
    justify-self: stretch;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }
  .threat-list { grid-template-columns: 1fr; }
  .threat-item {
    min-height: 0;
  }
  .threat-note {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .threat-visual__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .threat-item {
    padding: 24px 22px;
  }
}

/* Reality section — integrated portrait + text layout */
.reality {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.reality__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  border-radius: 2px;
  min-height: 520px;
}
.reality__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.55) brightness(0.78) contrast(1.05);
}
.reality__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,8,0.0) 50%, rgba(5,5,8,0.5) 100%),
    linear-gradient(90deg, rgba(5,5,8,0.4) 0%, rgba(5,5,8,0.0) 30%);
  pointer-events: none;
}
.reality__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.reality__head {
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--silver);
  margin: 0;
}
.reality__lede {
  color: var(--silver);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  font-weight: 300;
  max-width: 58ch;
}
.reality-points {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reality-point {
  background: var(--void);
  padding: 22px 0;
}
.reality-point__label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 10px;
}
.reality-point p {
  color: var(--ash);
  font-size: clamp(14.5px, 1.08vw, 16px);
  line-height: 1.55;
  max-width: 62ch;
}
@media (max-width: 880px) {
  .reality { grid-template-columns: 1fr; }
  .reality__media { min-height: 360px; }
}

/* Scenario card — vivid operational example */
.scenario {
  background: linear-gradient(180deg, rgba(13,13,24,0.9), rgba(8,8,16,0.95));
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.scenario:hover {
  border-color: rgba(139, 143, 255, 0.35);
  background: linear-gradient(180deg, rgba(15,15,30,0.95), rgba(10,10,20,1));
}
.scenario__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-light);
}
.scenario__title {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--silver);
}

.scenario__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.scenario__step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.45;
}
.scenario__step .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shadow);
  padding-top: 3px;
}
.scenario__step .val { color: var(--ash); }
.scenario__step .val b { color: var(--silver); font-weight: 500; }

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .scenarios-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px)  { .scenarios-grid { grid-template-columns: 1fr; } }

/* Coordination model — partners list */
.coord-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .coord-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .coord-grid { grid-template-columns: 1fr; } }
.coord-grid > div {
  background: var(--void);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 130px;
}
.coord-grid h5 {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: -0.005em;
}
.coord-grid p {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ash);
  margin: 0;
}
@media (max-width: 540px) {
  .coord-grid > div {
    min-height: 0;
    padding: 24px 22px;
  }
}

/* Side-by-side image + text composition */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__txt { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.split__txt h2 { font-weight: 300; }

@media (max-width: 880px) {
  .split, .split--reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* Tactical "REDACTED" inline */
.redact {
  display: inline-block;
  background: var(--silver);
  color: transparent;
  user-select: none;
  letter-spacing: 0;
  padding: 0 6px;
  border-radius: 1px;
  position: relative;
  top: -1px;
}

/* Hero tactical readout */
.hero__tac {
  position: absolute;
  top: 110px; left: var(--gutter);
  z-index: 4;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 760px) { .hero__tac { position: static; margin-bottom: 28px; } }

/* ---------- Cursor-aware spotlight (subtle) ---------- */
.spotlight {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 30%),
    rgba(77, 79, 248, 0.06),
    transparent 60%
  );
  transition: background 0.4s ease-out;
  mix-blend-mode: screen;
}

/* ---------- Page header (interior) ---------- */
.phead {
  position: relative;
  padding-top: 200px;
  padding-bottom: clamp(60px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.phead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(77,79,248,0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(20, 22, 100, 0.4), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.phead__inner { position: relative; z-index: 1; }

.phead__eye { margin-bottom: 28px; }

.phead h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.035em;
  max-width: 18ch;
  line-height: 1.0;
}


.phead p {
  margin-top: 32px;
  max-width: 56ch;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ash);
  line-height: 1.5;
  font-weight: 300;
}

/* ---------- Lists / Source manifests ---------- */
.manifest {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
  margin-top: 60px;
}

@media (max-width: 760px) { .manifest { grid-template-columns: 1fr; gap: 50px; } }

.manifest__group h4 {
  color: var(--silver);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.manifest__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manifest__group li {
  font-size: 14.5px;
  color: var(--ash);
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.4;
}

.manifest__group li::before {
  content: "—";
  color: var(--whisper);
  flex: none;
}

/* ---------- Highlight feature (TrustPing style) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) { .feature { grid-template-columns: 1fr; gap: 40px; } }

.feature__txt h3 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--silver);
  line-height: 1.05;
  max-width: 14ch;
}


.feature__eye { margin-bottom: 24px; }

.feature__txt p {
  margin-top: 24px;
  max-width: 44ch;
  color: var(--ash);
  font-size: 17px;
  line-height: 1.55;
}

/* visualisation card (decorative) */
.viz {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgba(77,79,248,0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(20, 22, 100, 0.35), transparent 60%),
    var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.viz::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(120, 124, 255, 0.35), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(40, 44, 200, 0.4), transparent 60%),
    conic-gradient(from 180deg at 50% 50%, transparent, rgba(120, 124, 255, 0.12), transparent, rgba(40, 44, 200, 0.18), transparent);
  filter: blur(30px);
  opacity: 0.7;
  animation: drift 26s ease-in-out infinite alternate;
  z-index: 1;
}

.viz__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--violet) 55%, var(--violet-deep));
  box-shadow:
    0 0 80px rgba(77, 79, 248, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  z-index: 3;
  transform: translate(-50%, -50%);
}

.viz__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(185, 188, 255, 0.16);
  z-index: 2;
  /* small dot riding the ring */
}
.viz__ring::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 12px var(--violet-soft);
  transform: translateX(-50%);
}
.viz__ring--1 { width: 180px; height: 180px; margin: -90px 0 0 -90px; animation: spin 22s linear infinite; }
.viz__ring--2 { width: 280px; height: 280px; margin: -140px 0 0 -140px; animation: spin 36s linear infinite reverse; border-style: dashed; opacity: 0.7; }
.viz__ring--3 { width: 380px; height: 380px; margin: -190px 0 0 -190px; animation: spin 48s linear infinite; opacity: 0.45; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---------- Compact two-column (philosophy intro) ---------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  padding-block: clamp(40px, 5vw, 72px);
}

@media (max-width: 880px) { .duo { grid-template-columns: 1fr; gap: 40px; } }

.duo__l h2 {
  font-weight: 300;
  color: var(--silver);
}


.duo__r p {
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ash);
  line-height: 1.55;
  font-weight: 300;
}

.duo__r p + p { margin-top: 24px; }
.duo__r p .grad { color: var(--violet-light); }
