@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --surface: #0b0b0b;
  --surface-alt: #101010;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f2f2f2;
  --muted: #b3b3b3;
  --accent: #ff0033;
  --signal: #ff8000;
  --vl-cool: #01ffff;
  --vl-accent-alpha: rgba(255, 0, 51, 0.16);
  --vl-signal-alpha: rgba(255, 128, 0, 0.12);
  --vl-cool-alpha: rgba(1, 255, 255, 0.1);
  --radius: 14px;
  --shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 48px rgba(0, 0, 0, 0.5);
  --ease-snap: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 85% 10%, rgba(255, 0, 51, 0.08), transparent 40%), var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: url('../img/noise.svg');
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  margin: 0.8rem;
  transition: border-color 240ms var(--ease-snap), box-shadow 240ms var(--ease-snap);
}

.hud {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  border: 1px solid transparent;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  transition: color 200ms var(--ease-snap), border-color 200ms var(--ease-snap), background-color 200ms var(--ease-snap), transform 200ms var(--ease-snap);
}

nav a.active,
nav a:hover {
  color: var(--text);
  border-color: var(--line);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.04);
}

.cta-link {
  color: var(--accent);
}

.cta-soon {
  display: inline-block;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-soon--nav {
  margin-left: 0.25rem;
  font-size: 0.58rem;
}

.protocol-strip {
  width: min(1200px, 92vw);
  margin: 0.6rem auto 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: #dedede;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.protocol-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.08) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: protocol-scan 7.5s linear infinite;
  pointer-events: none;
}

.status-live {
  color: var(--signal);
}

.status-active {
  color: #49d17d;
}

main {
  width: min(1200px, 92vw);
  margin: 1rem auto 4rem;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-9 { grid-column: span 9; }
.span-12 { grid-column: span 12; }

.hero {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.card-hud,
.case-card,
.operator-card,
.archive-card,
.page-hero,
.filter-strip,
.matrix-card,
.timeline-card,
.metric-panel,
.manual-toc,
.manual-table {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-snap), border-color 260ms var(--ease-snap), box-shadow 260ms var(--ease-snap), background-color 260ms var(--ease-snap);
}

.card-hud:hover,
.case-card:hover,
.operator-card:hover,
.archive-card:hover,
.page-hero:hover,
.filter-strip:hover,
.matrix-card:hover,
.timeline-card:hover,
.metric-panel:hover,
.manual-toc:hover,
.manual-table:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 24px 50px rgba(0, 0, 0, 0.55);
}

.hero-copy,
.page-hero,
.manual-table {
  padding: clamp(1.2rem, 2vw, 2rem);
}

.eyebrow,
.mono-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 0.7rem;
  letter-spacing: -0.05em;
  font-size: clamp(2rem, 6vw, 4.2rem);
}

h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #dddddd;
  max-width: 58ch;
}

.vl-emphasis {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 0, 51, 0.26);
}

.vl-card-shell {
  position: relative;
  overflow: hidden;
}

.vl-card-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 92% 10%, var(--vl-accent-alpha), transparent 48%);
  opacity: 0.65;
}

.vl-decal-rail {
  position: absolute;
  opacity: 0.68;
  pointer-events: none;
  z-index: 1;
}

.vl-decal-rail--top {
  top: 0.65rem;
  left: 0.95rem;
  width: clamp(180px, 46%, 320px);
}

.vl-decal-rail--inline {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: clamp(150px, 32%, 260px);
  margin-bottom: 0.45rem;
}

.vl-data-corner {
  position: absolute;
  width: 42px;
  height: 42px;
  opacity: 0.32;
  pointer-events: none;
  z-index: 1;
}

.vl-data-corner--tl {
  top: 0.55rem;
  left: 0.5rem;
}

.vl-data-corner--br {
  bottom: 0.5rem;
  right: 0.45rem;
  transform: rotate(180deg);
}

.vl-protocol-seal {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.vl-protocol-seal img {
  display: block;
  height: 24px;
  width: auto;
}

.vl-protocol-seal--hero {
  top: 0.65rem;
  right: 0.85rem;
}

.vl-texture-fine::after,
.vl-texture-grit::after,
.vl-texture-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
}

.vl-texture-fine::after {
  background: url('../visual-language/texture-fine.svg') center/240px 240px repeat;
}

.vl-texture-grit::after {
  background: url('../visual-language/texture-grit.svg') center/280px 280px repeat;
  opacity: 0.08;
}

.vl-texture-mesh::after {
  background: url('../visual-language/texture-mesh.svg') center/240px 240px repeat;
  opacity: 0.06;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.btn-primary,
.btn-ghost,
.btn-small {
  display: inline-block;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease-snap), box-shadow 220ms var(--ease-snap), border-color 220ms var(--ease-snap), filter 220ms var(--ease-snap);
}

.btn-with-note {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  line-height: 1.15;
  text-align: center;
}

.btn-note {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  opacity: 0.78;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff2958);
  color: white;
}

.btn-ghost,
.btn-small {
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.02);
}

.btn-small {
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
}

.btn-primary::after,
.btn-ghost::after,
.btn-small::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 50%;
  height: 100%;
  background: linear-gradient(95deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 380ms var(--ease-snap);
}

.btn-primary:hover,
.btn-ghost:hover,
.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover::after,
.btn-ghost:hover::after,
.btn-small:hover::after {
  left: 150%;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px) saturate(150%);
}

.coming-soon-modal {
  position: relative;
  width: min(460px, 100%);
  padding: clamp(1.25rem, 4vw, 2rem);
  overflow: hidden;
}

.coming-soon-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 88% 12%, rgba(255, 0, 51, 0.18), transparent 44%);
}

.coming-soon-modal > * {
  position: relative;
}

.coming-soon-modal h2 {
  margin: 0.45rem 2rem 0 0;
}

.coming-soon-modal p:not(.eyebrow) {
  color: #d4d4d4;
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: border-color 200ms var(--ease-snap), background-color 200ms var(--ease-snap), transform 200ms var(--ease-snap);
}

.modal-close:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.metric-row {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-row article,
.metric-panel {
  padding: 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 220ms var(--ease-snap), transform 220ms var(--ease-snap), background-color 220ms var(--ease-snap);
}

.metric-row article:hover,
.metric-panel:hover {
  border-color: rgba(255, 0, 51, 0.35);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}

.metric {
  margin: 0.45rem 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--accent);
}

.hero-panel {
  min-height: 420px;
}

.signal-frame {
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.signal-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(120%) contrast(120%);
}

.vl-particle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.42;
  background:
    url('../visual-language/particle-dot.svg') 15% 22% / 8px 8px no-repeat,
    url('../visual-language/particle-dot.svg') 72% 16% / 8px 8px no-repeat,
    url('../visual-language/particle-dot.svg') 48% 38% / 8px 8px no-repeat,
    url('../visual-language/particle-dash.svg') 22% 44% / 16px 4px no-repeat,
    url('../visual-language/particle-dash.svg') 68% 34% / 16px 4px no-repeat;
  animation: vl-particle-drift 14s linear infinite;
}

.vl-telemetry-pip {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 14px rgba(255, 128, 0, 0.45);
  z-index: 4;
  animation: vl-pip-pulse 3.6s ease-in-out infinite;
}

.vl-telemetry-pip--a {
  top: 20%;
  left: 8%;
}

.vl-telemetry-pip--b {
  top: 58%;
  left: 82%;
  background: var(--vl-cool);
  box-shadow: 0 0 14px rgba(1, 255, 255, 0.35);
  animation-delay: 1.2s;
}

.signal-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: screen;
  animation: grid-drift 18s linear infinite;
}

.radar-blip-field {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  top: 0.8rem;
  bottom: 36%;
  padding: 0.45rem 0.55rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.radar-blip {
  position: absolute;
  max-width: min(78%, 320px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.24rem 0.46rem;
  background: rgba(0, 0, 0, 0.32);
  color: #d5e3ec;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px) scale(0.985);
  filter: saturate(104%);
  text-shadow: 0 0 10px rgba(210, 235, 255, 0.18);
  box-shadow: 0 0 16px rgba(10, 16, 24, 0.26);
  will-change: opacity, transform;
}

.radar-blip--neutral {
  border-color: rgba(198, 212, 224, 0.28);
  color: #dce6ee;
}

.radar-blip--warn {
  border-color: rgba(255, 128, 0, 0.42);
  color: #ffe6c8;
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.14), rgba(255, 128, 0, 0.04));
  text-shadow: 0 0 10px rgba(255, 165, 86, 0.2);
}

.radar-blip--signal {
  border-color: rgba(1, 255, 255, 0.36);
  color: #d3ffff;
  background: linear-gradient(135deg, rgba(1, 255, 255, 0.12), rgba(1, 255, 255, 0.04));
  text-shadow: 0 0 10px rgba(1, 255, 255, 0.18);
}

.status-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 0, 51, 0.94);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  z-index: 6;
  animation: soft-pulse 2.8s ease-in-out infinite;
}

.status-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.7);
  z-index: 6;
}

.status-copy p {
  margin: 0.5rem 0 0;
  color: #dadada;
  font-size: 0.94rem;
}

.radar-orb {
  position: absolute;
  width: clamp(130px, 22vw, 280px);
  aspect-ratio: 1 / 1;
  top: 10%;
  left: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 95, 95, 0.55), rgba(255, 0, 51, 0.38) 40%, rgba(255, 0, 51, 0.12) 74%, rgba(255, 0, 51, 0) 100%);
  filter: blur(0.2px);
  opacity: 0.95;
  z-index: 3;
  pointer-events: none;
  animation: radar-roam 18s var(--ease-snap) infinite alternate, radar-pulse 3.5s ease-in-out infinite;
  will-change: top, left, opacity;
}

.radar-orb::after {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 51, 0.35);
  animation: radar-ring 3.2s ease-out infinite;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, transparent 38%, rgba(255, 0, 51, 0.1) 39%, transparent 64%),
    linear-gradient(180deg, rgba(255, 0, 51, 0.06), transparent 42%);
  opacity: 0.72;
  animation: sweep-pan 7s linear infinite;
}

.section-head {
  margin: 2rem 0 0.8rem;
}

.mission-matrix,
.timeline-grid,
.case-grid,
.team-grid,
.archive-grid {
  margin-bottom: 1.2rem;
}

.matrix-card,
.timeline-card,
.case-card,
.operator-card,
.archive-card {
  padding: 1rem;
}

.timeline-card {
  border-left: 3px solid rgba(255, 0, 51, 0.6);
}

.matrix-card p,
.timeline-card p,
.case-card p,
.operator-card p,
.archive-card p,
.manual-content p,
.manual-table p,
.manual-table li {
  color: #d4d4d4;
}

.result,
.mission-tag {
  color: var(--signal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
}

.mission-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.operator-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 0.85rem;
  transition: transform 360ms var(--ease-snap), filter 360ms var(--ease-snap);
}

.operator-card:hover img {
  transform: scale(1.02);
  filter: saturate(112%);
}

.operator-photo-cdo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 24%;
}

.operator-photo-cmo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}

.operator-photo-cmo-2 {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
}

.intake,
.manual-newsletter {
  margin-top: 2rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #f0f0f0;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  padding: 0.7rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.page-hero,
.filter-strip {
  margin-bottom: 1rem;
}

.filter-strip {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.archive-actions {
  width: min(1200px, 92vw);
  margin: 0 auto 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

.archive-hero {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 0, 51, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.archive-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
}

.archive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.4;
}

.archive-card--hot {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 0, 51, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.archive-card--cool {
  background:
    radial-gradient(circle at 8% 88%, rgba(1, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.archive-card--warm {
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 128, 0, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.archive-card .case-id {
  display: inline-block;
  padding: 0.22rem 0.45rem;
  margin-right: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 51, 0.55);
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.24), rgba(255, 0, 51, 0.08));
  color: #ffd8e2;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.16);
}

.archive-card--cool .case-id {
  border-color: rgba(1, 255, 255, 0.48);
  background: linear-gradient(135deg, rgba(1, 255, 255, 0.2), rgba(1, 255, 255, 0.06));
  color: #d8ffff;
  box-shadow: 0 0 20px rgba(1, 255, 255, 0.12);
}

.archive-card--warm .case-id {
  border-color: rgba(255, 128, 0, 0.52);
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.24), rgba(255, 128, 0, 0.08));
  color: #ffe7ce;
  box-shadow: 0 0 20px rgba(255, 128, 0, 0.12);
}

.manual-layout {
  margin-top: 1rem;
}

.manual-log,
.manual-content,
.manual-toc,
.manual-table {
  padding: 1rem;
}

.manual-log ul,
.manual-toc ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.manual-log li,
.manual-toc li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem;
  font-family: 'JetBrains Mono', monospace;
  color: #cecece;
  font-size: 0.82rem;
}

.manual-content {
  display: grid;
  gap: 1rem;
}

.manual-content--feature {
  position: relative;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 0, 51, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: clamp(1.25rem, 2.6vw, 2rem);
}

.manual-content--feature h1 {
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  max-width: 18ch;
  margin-bottom: 0.35rem;
}

.manual-content--feature .lead {
  max-width: 62ch;
  margin-top: 0.3rem;
}

.indicator-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  padding: 0.15rem 0 0.35rem;
}

.indicator-chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex: 0 0 auto;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  color: #f1f1f1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.indicator-chip--hot {
  border-color: rgba(255, 0, 51, 0.6);
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.24), rgba(255, 0, 51, 0.08));
  color: #ffe3ea;
}

.indicator-chip--warn {
  border-color: rgba(255, 128, 0, 0.55);
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.2), rgba(255, 128, 0, 0.08));
  color: #fff1df;
}

.indicator-chip--cool {
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: #f2f2f2;
}

.phase-console {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  margin-top: 0.2rem;
}

.phase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.6rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: visible;
}

.phase-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #d4d4d4;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms var(--ease-snap), background-color 180ms var(--ease-snap), color 180ms var(--ease-snap), transform 180ms var(--ease-snap);
}

.phase-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.phase-tab.is-active {
  color: #fff;
  border-color: rgba(255, 0, 51, 0.62);
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.28), rgba(255, 0, 51, 0.12));
}

.phase-panels {
  padding: 1rem 1rem 1.1rem;
}

.phase-panel h2 {
  margin-top: 0.4rem;
}

.phase-panel p {
  margin-bottom: 0;
}

.manual-content h2 {
  margin-top: 0.5rem;
}

.manual-table h2 {
  margin-bottom: 0.8rem;
}

.manual-layout > .manual-table {
  margin-top: 0.5rem;
}

.manual-table ul {
  margin: 0;
  padding-left: 1.1rem;
}

.manual-cta {
  margin-top: 0.7rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.assessment-shell {
  display: grid;
  gap: 1rem;
}

.modules-hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 0, 51, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.modules-filter {
  grid-template-columns: 1.2fr 1fr 1.2fr;
  align-items: stretch;
}

.modules-filter > label,
.modules-filter-note,
.modules-filter-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
}

.modules-filter-note p,
.modules-filter-panel p {
  margin: 0.45rem 0 0;
}

.modules-filter-panel {
  display: grid;
  gap: 0.7rem;
}

.modules-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modules-filter-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ececec;
  background: rgba(255, 255, 255, 0.04);
}

.modules-grid {
  margin-bottom: 1.2rem;
}

.module-card {
  padding: 1.1rem 1.1rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  border-color: rgba(255, 255, 255, 0.16);
}

.module-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.module-logo {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
}

.module-type {
  border: 1px solid rgba(255, 0, 51, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffd8e2;
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.2), rgba(255, 0, 51, 0.08));
}

.module-card > p {
  margin: 0;
  color: #d6d6d6;
  line-height: 1.45;
}

.module-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #e8e8e8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
}

.module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
}

.module-link[aria-disabled='true'] {
  cursor: default;
  opacity: 0.92;
}

.about-hero {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.about-hero-copy {
  padding: clamp(1.25rem, 2.6vw, 2.2rem);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 0, 51, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.about-hero-stats {
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.about-hero-stats article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem;
}

.about-hero-stats .metric {
  margin-top: 0.4rem;
}

.about-mission {
  margin-bottom: 1rem;
}

.about-mission-copy,
.about-operating {
  padding: 1.1rem;
}

.about-mission-copy p {
  color: #d5d5d5;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.about-principles article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.7rem;
}

.about-principles h3 {
  margin-top: 0.35rem;
  font-size: 1rem;
}

.about-principles p {
  margin: 0.35rem 0 0;
  color: #d7d7d7;
  font-size: 0.9rem;
}

.about-roster {
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}

.about-roster-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.about-roster-head .lead {
  margin: 0.45rem 0 0;
  font-size: 1rem;
}

.about-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.about-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  background: rgba(255, 255, 255, 0.03);
  color: #d6d6d6;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 200ms var(--ease-snap), color 200ms var(--ease-snap), transform 200ms var(--ease-snap), background-color 200ms var(--ease-snap);
}

.about-filter:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.about-filter.is-active {
  border-color: rgba(255, 0, 51, 0.65);
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.25), rgba(255, 0, 51, 0.08));
}

.about-card-grid {
  margin-bottom: 0;
}

.about-profile-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
  padding: 0.9rem;
  cursor: pointer;
  transition: transform 260ms var(--ease-snap), border-color 260ms var(--ease-snap), box-shadow 260ms var(--ease-snap);
}

.about-profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-profile-card.is-active {
  border-color: rgba(255, 0, 51, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 0, 51, 0.18), 0 22px 44px rgba(0, 0, 0, 0.54);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 0, 51, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.about-profile-card:focus-visible,
.about-filter:focus-visible,
.about-linkedin:focus-visible {
  outline: 2px solid rgba(255, 0, 51, 0.5);
  outline-offset: 2px;
}

.about-profile-photo {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 0.7rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.03);
}

.about-profile-card h3 {
  margin-top: 0.25rem;
}

.about-role,
.about-focus {
  margin: 0.3rem 0 0;
  color: #d4d4d4;
}

.about-focus {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bbbbbb;
}

.vl-profile-focus {
  position: relative;
  padding-left: 0.95rem;
}

.vl-profile-focus::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36rem;
  width: 10px;
  height: 10px;
  background: url('../visual-language/annotation-marker.svg') center/10px 10px no-repeat;
  opacity: 0.85;
}

.about-expanded {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 0, 51, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  animation: about-panel-in 300ms var(--ease-snap);
}

.about-expanded-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
}

.about-expanded-media img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-expanded-role {
  margin: 0.28rem 0 0;
  color: #f0f0f0;
}

.about-expanded-focus {
  margin: 0.3rem 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  color: #cfcfcf;
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-expanded-bio {
  margin: 0;
  color: #d8d8d8;
  line-height: 1.5;
}

.about-expanded-content {
  position: relative;
}

.about-expanded-content > .vl-protocol-seal {
  top: 0.1rem;
  right: 0.1rem;
}

.about-expanded-content > .vl-protocol-seal img {
  height: 22px;
}

.about-expanded-panels {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-list-panel,
.about-badge-panel,
.about-history-panel,
.about-link-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem;
  background: rgba(0, 0, 0, 0.32);
}

.about-list-panel ul,
.about-history-panel ul {
  margin: 0.45rem 0 0;
  padding-left: 1.05rem;
  color: #e2e2e2;
}

.about-achievements {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 51, 0.45);
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.24), rgba(255, 0, 51, 0.08));
  color: #ffe2ea;
  padding: 0.3rem 0.55rem;
  font-size: 0.68rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.achievement-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 225, 234, 0.9);
  box-shadow: 0 0 10px rgba(255, 0, 51, 0.28);
}

.achievement-badge--alt {
  border-color: rgba(255, 128, 0, 0.48);
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.22), rgba(255, 128, 0, 0.08));
  color: #ffeedb;
}

.achievement-badge--alt::before {
  background: rgba(255, 230, 198, 0.9);
  box-shadow: 0 0 10px rgba(255, 128, 0, 0.25);
}

.about-history-panel li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
}

.about-history-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 12px;
  height: 12px;
  background: url('../visual-language/timeline-glyph-pack.svg') center/12px 12px no-repeat;
  opacity: 0.75;
}

.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.62rem;
  background: rgba(255, 255, 255, 0.03);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #efefef;
  width: fit-content;
}

.about-linkedin img {
  width: 14px;
  height: 14px;
}

.about-cta {
  margin-top: 1rem;
  padding: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.about-cta p {
  color: #d8d8d8;
}

.about-cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.assessment-intro {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 0, 51, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.assessment-intro h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  max-width: 14ch;
}

.assessment-intro-meta {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.assessment-intro-meta article {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
}

.assessment-intro-meta p {
  margin: 0.35rem 0 0;
  color: #d7d7d7;
}

.assessment-wizard {
  padding: clamp(1rem, 2.4vw, 1.8rem);
  position: relative;
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 0, 51, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.assessment-wizard.has-success {
  min-height: clamp(460px, 72vh, 820px);
}

.step-progress {
  display: grid;
  gap: 0.5rem;
}

.step-progress h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.progress-fill {
  height: 100%;
  width: 14.29%;
  background: linear-gradient(90deg, rgba(255, 0, 51, 0.82), rgba(255, 128, 0, 0.75));
  transition: width 280ms var(--ease-snap);
}

.assessment-error {
  min-height: 1.2rem;
  margin: 0;
  color: #ff6f8f;
  font-size: 0.85rem;
}

.assessment-step {
  display: none;
  gap: 0.85rem;
}

.assessment-step.is-active {
  display: grid;
}

.assessment-help {
  margin: 0;
  color: #d9d9d9;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.constraint-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 180ms var(--ease-snap), transform 180ms var(--ease-snap), background-color 180ms var(--ease-snap);
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: #e6e6e6;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

.choice-card:has(input:checked) {
  border-color: rgba(255, 0, 51, 0.62);
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.2), rgba(255, 0, 51, 0.07));
}

.choice-card:has(input:focus-visible) {
  outline: 2px solid rgba(255, 0, 51, 0.45);
  outline-offset: 2px;
}

.choice-card.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.char-count {
  margin: 0;
  text-align: right;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.consent-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 0.3rem;
  color: #e1e1e1;
  font-size: 0.9rem;
}

.consent-row input {
  margin-top: 0.2rem;
}

.snapshot-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem;
}

.response-grid {
  margin: 0.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.response-grid div {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
}

.response-grid dt {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #acacac;
}

.response-grid dd {
  margin: 0.35rem 0 0;
  color: #f0f0f0;
  font-size: 0.93rem;
}

.assessment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.success-card {
  display: grid;
  gap: 0.9rem;
}

.assessment-wizard.has-success .success-card {
  position: absolute;
  inset: clamp(0.85rem, 2vw, 1.3rem);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 0, 51, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: clamp(1rem, 2vw, 1.4rem);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
}

.success-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

#success-summary {
  white-space: pre-line;
}

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

footer {
  width: min(1200px, 92vw);
  margin: 0 auto 2rem;
  color: #888;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal,
.reveal-delay,
.reveal-delay-2 {
  opacity: 0;
  transform: translateY(18px);
  animation: settle 0.6s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 26%;
}

.reveal-delay {
  animation-delay: 0.1s;
}

.reveal-delay-2 {
  animation-delay: 0.2s;
}

@keyframes settle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes protocol-scan {
  to {
    transform: translateX(120%);
  }
}

@keyframes grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 24px 0, 0 24px;
  }
}

@keyframes soft-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 0, 51, 0);
  }
}

@keyframes radar-roam {
  0% {
    top: 10%;
    left: 12%;
  }
  22% {
    top: 12%;
    left: 58%;
  }
  44% {
    top: 28%;
    left: 56%;
  }
  66% {
    top: 34%;
    left: 24%;
  }
  84% {
    top: 24%;
    left: 10%;
  }
  100% {
    top: 16%;
    left: 44%;
  }
}

@keyframes radar-pulse {
  0%, 100% {
    opacity: 0.84;
    filter: blur(0.2px) saturate(100%);
  }
  50% {
    opacity: 1;
    filter: blur(0.3px) saturate(115%);
  }
}

@keyframes radar-ring {
  0% {
    transform: scale(0.82);
    opacity: 0.66;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@keyframes sweep-pan {
  0% {
    transform: translateY(-3%) translateX(-2%);
    opacity: 0.45;
  }
  50% {
    transform: translateY(2%) translateX(1%);
    opacity: 0.65;
  }
  100% {
    transform: translateY(-3%) translateX(-2%);
    opacity: 0.45;
  }
}

@keyframes about-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vl-particle-drift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate3d(-1.8%, 1.2%, 0);
    opacity: 0.45;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.3;
  }
}

@keyframes vl-pip-pulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes radar-blip-life {
  0% {
    opacity: 0;
    transform: translateY(4px) scale(0.985);
  }
  18% {
    opacity: 0.78;
    transform: translateY(0) scale(1);
  }
  76% {
    opacity: 0.78;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-2px) scale(0.995);
  }
}

@media (max-width: 960px) {
  .span-3,
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-9,
  .span-12 {
    grid-column: span 12;
  }

  .intake,
  .manual-newsletter,
  .filter-strip,
  .about-principles,
  .assessment-intro-meta,
  .choice-grid,
  .constraint-grid,
  .conversion-grid,
  .response-grid,
  .about-expanded-grid,
  .about-expanded-panels {
    grid-template-columns: 1fr;
  }

  .modules-filter {
    grid-template-columns: 1fr;
  }

  .module-top {
    grid-template-columns: auto 1fr;
  }

  .module-type {
    grid-column: span 2;
    justify-self: start;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .about-roster-head,
  .about-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-actions,
  .about-cta-actions > * {
    width: 100%;
    text-align: center;
  }

  .protocol-strip,
  .archive-actions {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius);
  }

  .assessment-actions > * {
    width: 100%;
    text-align: center;
  }

  .manual-content--feature h1 {
    max-width: 100%;
  }

  .indicator-chip {
    white-space: normal;
    min-width: 100%;
    flex: 1 0 100%;
  }

  .radar-blip-field {
    left: 0.55rem;
    right: 0.55rem;
    top: 0.6rem;
    bottom: 42%;
  }

  .vl-protocol-seal--hero {
    top: 0.7rem;
    right: 0.65rem;
  }

  .vl-protocol-seal img {
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-delay,
  .reveal-delay-2 {
    opacity: 1;
    transform: none;
    animation: none;
  }

  * {
    scroll-behavior: auto;
    transition: none !important;
    animation: none !important;
  }

  .radar-blip {
    opacity: 0.3 !important;
    transform: none !important;
  }

  .vl-particle-field,
  .vl-telemetry-pip {
    display: none !important;
    animation: none !important;
  }
}
