:root {
  --bg: #071017;
  --bg-deep: #040a0f;
  --panel: #0d1821;
  --panel-raised: #111f2a;
  --edge: #20313e;
  --edge-bright: #385062;
  --text: #dbe7ef;
  --bright: #ffffff;
  --muted: #a8bac6;
  --quiet: #8298a7;
  --amber: #f59e0b;
  --red: #ef4444;
  --green: #34d399;
  --cyan: #66c7de;
  --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
  border-radius: 4px;
  background: var(--bright);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(83, 116, 137, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 116, 137, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.ambient-one {
  top: 90px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: rgba(56, 130, 154, 0.1);
}

.ambient-two {
  top: 550px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: rgba(245, 158, 11, 0.045);
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(1440px, calc(100% - 64px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(56, 80, 98, 0.55);
}

.wordmark {
  width: max-content;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.wordmark strong {
  color: var(--amber);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a,
.text-link,
.site-footer a,
.footer-link {
  transition: color 160ms ease;
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover,
.footer-link:hover {
  color: var(--bright);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.dialog-close:focus-visible,
.footer-link:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.button-primary {
  background: var(--bright);
  color: var(--bg-deep);
}

.button-primary:hover {
  background: #dfe9ef;
}

.button-secondary {
  border-color: var(--edge-bright);
  background: rgba(13, 24, 33, 0.68);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--muted);
  background: var(--panel-raised);
}

.button-compact {
  min-height: 36px;
  padding: 0 15px;
  font-size: 11px;
}

.hero {
  width: min(1440px, calc(100% - 64px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 64px;
  padding: 78px 0 96px;
}

.eyebrow,
.dialog-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.08);
}

.hero h1 {
  max-width: 740px;
  margin: 26px 0 0;
  color: var(--bright);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  margin-top: 16px;
  color: #8ca2b0;
  font-size: 0.67em;
  line-height: 1.06;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: #a8bac6;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 42px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof i {
  width: 10px;
  height: 10px;
  display: inline-block;
}

.proof-rule {
  border: 2px solid var(--cyan);
  transform: rotate(45deg);
}

.proof-human {
  border-radius: 50%;
  background: var(--amber);
}

.proof-record {
  border: 2px solid var(--green);
  border-radius: 2px;
}

.hero-console {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(56, 80, 98, 0.82);
  border-radius: 4px;
  background: rgba(7, 16, 23, 0.9);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.035), transparent 30%);
}

.console-topline,
.console-feed {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--edge);
  padding: 0 15px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.console-brand {
  color: var(--text);
}

.demo-chip {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
}

.demo-chip i,
.feed-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.console-time {
  min-width: 76px;
  margin-left: 16px;
  color: var(--muted);
  text-align: right;
}

.console-map {
  position: relative;
  aspect-ratio: 1.44;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 44%, rgba(41, 91, 106, 0.12), transparent 30%),
    linear-gradient(rgba(63, 91, 108, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 91, 108, 0.08) 1px, transparent 1px),
    #08131b;
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.map-lines {
  width: 100%;
  height: 100%;
}

.region-line {
  fill: rgba(24, 46, 59, 0.18);
  stroke: #314a59;
  stroke-width: 1.2;
}

.region-line.faint {
  fill: none;
  opacity: 0.48;
  stroke-width: 0.8;
}

.storm-track,
.storm-track-glow {
  fill: none;
  stroke: url(#trackGradient);
  stroke-dasharray: 7 8;
  stroke-width: 2;
}

.storm-track-glow {
  opacity: 0.28;
  filter: blur(5px);
  stroke-width: 8;
}

.range {
  fill: none;
  stroke-width: 1;
  transform-origin: center;
}

.range-outer { stroke: rgba(245, 158, 11, 0.48); stroke-dasharray: 4 5; }
.range-mid { stroke: rgba(245, 158, 11, 0.68); }
.range-inner { stroke: rgba(239, 68, 68, 0.78); }
.site-pulse { fill: rgba(102, 199, 222, 0.18); stroke: rgba(102, 199, 222, 0.5); }
.site-core { fill: var(--cyan); }

.map-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label strong { color: var(--text); }
.map-label span { color: var(--muted); }
.site-label { top: 34%; left: 73%; }
.track-label { bottom: 23%; left: 9%; }

.threat-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: min(310px, calc(100% - 28px));
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: 3px;
  background: rgba(9, 18, 25, 0.93);
  padding: 13px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.card-kicker {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.threat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
}

.severity-icon {
  width: 27px;
  height: 27px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(245, 158, 11, 0.64);
  border-radius: 50%;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
}

.threat-title strong,
.threat-title span {
  display: block;
}

.threat-title strong { color: var(--bright); font-size: 12px; }
.threat-title span { margin-top: 3px; color: var(--muted); font-size: 9px; }

.threat-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 14px;
}

.threat-metrics div {
  border-left: 1px solid var(--edge);
  padding-left: 8px;
}

.threat-metrics span,
.threat-metrics strong {
  display: block;
  font-family: var(--mono);
}

.threat-metrics span { color: var(--quiet); font-size: 7px; letter-spacing: 0.07em; }
.threat-metrics strong { margin-top: 4px; color: var(--text); font-size: 9px; }
.threat-metrics .amber { color: var(--amber); }

.threat-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  margin-top: 12px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pending-chip {
  border: 1px solid rgba(245, 158, 11, 0.48);
  border-radius: 2px;
  padding: 3px 5px;
  color: var(--amber);
}

.guidance-chip {
  width: 100%;
  color: var(--cyan);
  font-size: 6px;
}

.card-progress {
  height: 2px;
  margin-top: 12px;
  overflow: hidden;
  background: var(--edge);
}

.card-progress i {
  display: block;
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--red));
}

.console-feed {
  min-height: 50px;
  justify-content: space-between;
  border-top: 1px solid var(--edge);
  border-bottom: 0;
  color: var(--muted);
}

.console-caption {
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(32, 49, 62, 0.7);
  padding: 0 15px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feed-status,
.feed-status span,
.feed-event {
  display: flex;
  align-items: center;
}

.feed-status { gap: 14px; }
.feed-status span { gap: 5px; }
.feed-status i { color: var(--green); }
.feed-event { gap: 12px; }
.feed-event strong { color: var(--amber); }
.event-time { color: var(--quiet); }

.watch-queue {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 206px;
  overflow: hidden;
  border: 1px solid rgba(56, 80, 98, 0.9);
  border-radius: 3px;
  background: rgba(7, 16, 23, 0.9);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}

.watch-queue-head,
.watch-queue-row {
  display: grid;
  align-items: center;
  font-family: var(--mono);
}

.watch-queue-head {
  min-height: 31px;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--edge);
  padding: 0 10px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.watch-queue-head strong {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  font-size: 8px;
}

.watch-queue-row {
  min-height: 44px;
  grid-template-columns: 6px 1fr auto;
  gap: 8px;
  border-bottom: 1px solid rgba(32, 49, 62, 0.72);
  padding: 0 10px;
}

.watch-queue-row:last-child { border-bottom: 0; }
.watch-queue-row i { width: 5px; height: 5px; border-radius: 50%; }
.watch-queue-row .queue-alert { background: var(--red); }
.watch-queue-row .queue-watch { border: 1px solid var(--amber); }
.watch-queue-row span { color: var(--muted); font-size: 7px; line-height: 1.35; }
.watch-queue-row span b { display: block; margin-bottom: 2px; color: var(--text); font-size: 8px; }
.watch-queue-row > strong { color: var(--amber); font-size: 8px; }

.statement-section,
.capabilities-section,
.principles-section,
.final-cta,
.site-footer {
  width: min(1280px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.statement-section {
  border-top: 1px solid var(--edge);
  padding: 112px 0 128px;
}

.section-index {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.statement-copy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-top: 28px;
}

.overline,
.section-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.statement-copy h2,
.section-heading h2,
.principles-panel h2,
.final-cta h2 {
  margin: 0;
  color: var(--bright);
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 84px;
}

.workflow-rail::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--amber), var(--green));
  opacity: 0.44;
}

.workflow-rail article {
  position: relative;
  padding-right: 28px;
}

.workflow-rail article > span {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--edge-bright);
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.workflow-rail h3 {
  margin: 24px 0 0;
  color: var(--bright);
  font-size: 18px;
}

.workflow-rail p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.capabilities-section {
  padding: 112px 0 128px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.section-heading h2 {
  max-width: 760px;
  margin-top: 28px;
}

.section-heading > p {
  margin: 0 0 3px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 68px;
}

.capability-card {
  min-height: 370px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 40%),
    rgba(13, 24, 33, 0.75);
  padding: 32px;
}

.capability-wide {
  grid-column: span 2;
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.capability-config {
  grid-column: span 2;
  min-height: 250px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.config-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
  min-height: 120px;
  border-left: 1px solid var(--edge);
  padding-left: 35px;
}

.config-tags span {
  border: 1px solid var(--edge-bright);
  border-radius: 2px;
  padding: 9px 11px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.capability-number {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
}

.capability-card h3 {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--bright);
  font-size: 27px;
  letter-spacing: -0.025em;
}

.capability-card p {
  max-width: 470px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.mini-queue {
  overflow: hidden;
  border: 1px solid var(--edge-bright);
  border-radius: 3px;
  background: #09131b;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.queue-head,
.queue-row {
  display: grid;
  align-items: center;
  font-family: var(--mono);
}

.queue-head {
  min-height: 42px;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--edge);
  padding: 0 14px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.queue-head strong {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.queue-row {
  min-height: 64px;
  grid-template-columns: 8px 1fr auto;
  gap: 12px;
  border-bottom: 1px solid rgba(32, 49, 62, 0.72);
  padding: 0 14px;
}

.queue-row:last-child { border-bottom: 0; }
.queue-row i { width: 6px; height: 6px; border-radius: 50%; }
.queue-row span { color: var(--muted); font-size: 8px; }
.queue-row span strong { display: block; margin-bottom: 4px; color: var(--text); font-size: 10px; }
.queue-row b { color: var(--muted); font-size: 9px; }
.queue-row.critical i { background: var(--red); }
.queue-row.critical b { color: var(--red); }
.queue-row.watch i { border: 1px solid var(--amber); }
.queue-row.watch b { color: var(--amber); }
.queue-row.handled { opacity: 0.52; }
.queue-row.handled i { background: var(--green); }

.handoff-visual {
  position: absolute;
  right: 32px;
  bottom: 34px;
  left: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--edge);
  padding-top: 24px;
}

.handoff-visual div span,
.handoff-visual div strong { display: block; font-family: var(--mono); }
.handoff-visual div span { color: var(--quiet); font-size: 8px; }
.handoff-visual div strong { margin-top: 7px; color: var(--text); font-size: 11px; }
.handoff-visual i { color: var(--amber); font-style: normal; }
.handoff-visual div:last-child { text-align: right; }

.matrix-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.04);
  filter: blur(30px);
}

.matrix-visual {
  position: absolute;
  right: 36px;
  bottom: 31px;
  width: 200px;
  height: 145px;
  border-bottom: 1px solid var(--edge-bright);
  border-left: 1px solid var(--edge-bright);
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(56, 80, 98, 0.35) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(56, 80, 98, 0.35) 50%, transparent 50.5%);
}

.axis { position: absolute; color: var(--quiet); font-family: var(--mono); font-size: 7px; letter-spacing: 0.08em; }
.axis-y { left: -39px; top: 53px; transform: rotate(-90deg); }
.axis-x { right: 0; bottom: -18px; }
.matrix-visual b { position: absolute; top: 10px; left: 12px; color: var(--amber); font-family: var(--mono); font-size: 7px; letter-spacing: 0.08em; }
.matrix-dot { position: absolute; width: 9px; height: 9px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 0 0 16px currentColor; }
.dot-one { top: 28px; left: 42px; color: var(--amber); }
.dot-two { top: 49px; left: 122px; color: var(--red); }
.dot-three { top: 102px; left: 158px; color: var(--green); }
.dot-four { top: 89px; left: 74px; color: var(--cyan); }

.verification-visual {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--edge);
  border-radius: 3px;
  background: #09131b;
}

.verification-visual div { padding: 17px; border-right: 1px solid var(--edge); }
.verification-visual div:last-child { border-right: 0; }
.verification-visual span,
.verification-visual strong { display: block; font-family: var(--mono); }
.verification-visual span { color: var(--quiet); font-size: 7px; }
.verification-visual strong { margin-top: 8px; color: var(--green); font-size: 13px; }

.replay-visual {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--edge);
  padding-top: 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.replay-visual button { width: 28px; height: 28px; border: 1px solid var(--edge-bright); border-radius: 50%; background: transparent; color: var(--text); }
.replay-visual div { height: 2px; background: var(--edge); }
.replay-visual div i { display: block; width: 58%; height: 100%; background: var(--amber); }
.replay-visual strong { color: var(--amber); }

.principles-section {
  padding: 90px 0 130px;
}

.principles-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--edge);
  background: linear-gradient(135deg, rgba(18, 34, 45, 0.86), rgba(7, 16, 23, 0.9));
  padding: 72px;
}

.principles-panel::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(102, 199, 222, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(102, 199, 222, 0.025), 0 0 0 160px rgba(102, 199, 222, 0.012);
}

.principles-panel h2 {
  max-width: 800px;
  margin-top: 28px;
}

.principles-panel > p {
  max-width: 750px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.principle-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.principle-list div {
  min-height: 165px;
  border-top: 1px solid var(--edge-bright);
  padding: 22px 20px 0 0;
}

.principle-list span { color: var(--quiet); font-family: var(--mono); font-size: 8px; }
.principle-list strong { display: block; margin-top: 26px; color: var(--bright); font-size: 18px; }
.principle-list p { margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  border-top: 1px solid var(--edge);
  padding: 110px 0;
}

.final-cta h2 { margin-top: 26px; }
.final-cta p { max-width: 610px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.final-actions { display: flex; gap: 12px; }

.site-footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--edge);
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.footer-wordmark { color: var(--text); font-size: 14px; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; align-items: center; gap: 22px; }
.footer-link { border: 0; background: transparent; color: inherit; cursor: pointer; padding: 0; font: inherit; }

.legal-page {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-page h1 {
  margin: 28px 0 12px;
  color: var(--bright);
  font-size: 42px;
  letter-spacing: -0.04em;
}

.legal-page p { margin: 16px 0; }

.access-dialog {
  width: min(650px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid var(--edge-bright);
  border-radius: 5px;
  background: var(--panel);
  color: var(--text);
  padding: 0;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.7);
}

.access-dialog::backdrop {
  background: rgba(1, 6, 10, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  padding: 40px;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--edge);
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
}

.access-dialog h2 {
  margin: 20px 0 0;
  color: var(--bright);
  font-size: 33px;
  letter-spacing: -0.035em;
}

.dialog-intro {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

#access-form {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

#access-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

#access-form label > span em {
  color: var(--quiet);
  font-style: normal;
  font-weight: 500;
}

#access-form input,
#access-form textarea {
  width: 100%;
  border: 1px solid var(--edge);
  border-radius: 3px;
  background: var(--bg);
  color: var(--text);
  padding: 11px 12px;
  resize: vertical;
}

#access-form input:hover,
#access-form textarea:hover {
  border-color: var(--edge-bright);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.consent-row input {
  width: 14px !important;
  margin-top: 2px;
  accent-color: var(--amber);
}

.consent-row span {
  margin: 0 !important;
  font-family: var(--display) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.form-note {
  border-left: 2px solid var(--edge-bright);
  color: var(--quiet);
  padding-left: 11px;
  font-size: 10px;
  line-height: 1.55;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-result {
  min-height: 18px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .range-outer {
    animation: radar-pulse 4s ease-out infinite;
  }

  .site-pulse {
    animation: site-pulse 2.6s ease-in-out infinite;
  }

  .storm-cell {
    animation: cell-drift 7s ease-in-out infinite alternate;
  }

  .cell-two {
    animation-delay: -2.4s;
  }

  .hero-console {
    animation: console-enter 700ms ease-out both;
  }

  @keyframes radar-pulse {
    0% { opacity: 0.78; transform: scale(0.86); }
    75%, 100% { opacity: 0.08; transform: scale(1.16); }
  }

  @keyframes site-pulse {
    50% { opacity: 0.45; transform: scale(1.5); }
  }

  @keyframes cell-drift {
    to { transform: translate(12px, -6px); }
  }

  @keyframes console-enter {
    from { opacity: 0; transform: translateY(18px); }
  }
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { max-width: 850px; }
  .hero-console { width: 100%; max-width: 900px; justify-self: center; }
  .statement-copy { grid-template-columns: 1fr; gap: 8px; }
  .workflow-rail { grid-template-columns: repeat(3, 1fr); gap: 42px 20px; }
  .workflow-rail::before { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 700px; }
  .final-cta { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 800px) {
  .site-header,
  .hero,
  .statement-section,
  .capabilities-section,
  .principles-section,
  .final-cta,
  .site-footer {
    width: min(100% - 34px, 680px);
  }

  .site-header { min-height: 66px; }
  .text-link { display: none; }
  .hero { min-height: auto; gap: 52px; padding: 72px 0 80px; }
  .hero h1 { font-size: clamp(42px, 12vw, 62px); }
  .hero-lede { font-size: 16px; }
  .hero-proof { display: grid; }
  .console-map { aspect-ratio: 1.08; }
  .map-lines { transform: none; }
  .threat-card { width: calc(100% - 20px); right: 10px; bottom: 10px; }
  .track-label { display: none; }
  .console-feed { align-items: flex-start; flex-direction: column; gap: 8px; padding: 11px; }
  .feed-status { flex-wrap: wrap; }
  .statement-section,
  .capabilities-section { padding: 82px 0; }
  .workflow-rail { grid-template-columns: 1fr; gap: 34px; }
  .workflow-rail article { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; padding-right: 0; }
  .workflow-rail h3 { margin-top: 2px; }
  .workflow-rail p { grid-column: 2; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-wide,
  .capability-config { grid-column: auto; grid-template-columns: 1fr; gap: 45px; }
  .config-tags { border-top: 1px solid var(--edge); border-left: 0; padding: 22px 0 0; }
  .capability-card { min-height: 390px; padding: 25px; }
  .principles-panel { padding: 42px 25px; }
  .principle-list { grid-template-columns: 1fr; }
  .principle-list div { min-height: auto; padding-bottom: 16px; }
  .final-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 17px; padding: 30px 0; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (max-width: 540px) {
  .header-actions .button { min-height: 34px; padding: 0 11px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .console-brand { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .console-time { display: none; }
  .console-caption { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; padding-top: 5px; padding-bottom: 5px; }
  .watch-queue { width: 178px; }
  .threat-metrics { gap: 3px; }
  .site-label { top: 26%; left: 67%; }
  .mini-queue { margin: 0 -10px; }
  .matrix-visual { right: 25px; bottom: 35px; width: 180px; }
  .verification-visual { grid-template-columns: 1fr; }
  .verification-visual div { border-right: 0; border-bottom: 1px solid var(--edge); padding: 11px; }
  .verification-visual div:last-child { border-bottom: 0; }
  .dialog-shell { padding: 34px 22px 26px; }
  .form-grid { grid-template-columns: 1fr; }
}
