:root {
  color-scheme: dark;
  --bg: #080b0c;
  --card: #111719;
  --line: #263033;
  --ink: #edf7f1;
  --muted: #84928d;
  --acid: #b8ff43;
  --cyan: #43f0d2;
  --orange: #ff9e52;
  --red: #ff6f78;
}
* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 0, #14261f 0, transparent 35%),
    linear-gradient(145deg, #080b0c, #0b1012 55%, #050707);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  min-height: 100vh;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
main {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 36px 0 64px;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 210px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font:
    700 11px/1.3 ui-monospace,
    SFMono-Regular,
    monospace;
  letter-spacing: 0.18em;
}
.hero h1 {
  font-size: clamp(64px, 11vw, 138px);
  line-height: 0.78;
  margin: 0;
  letter-spacing: -0.075em;
  font-weight: 900;
}
.hero h1 span {
  color: var(--acid);
}
.tagline {
  max-width: 570px;
  color: #b9c5c0;
  font-size: 16px;
  margin: 28px 0 0;
}
.fly {
  position: relative;
  width: 240px;
  height: 170px;
  filter: drop-shadow(0 0 24px rgba(184, 255, 67, 0.15));
}
.body {
  position: absolute;
  width: 38px;
  height: 105px;
  left: 101px;
  top: 32px;
  border-radius: 50%;
  background: linear-gradient(#d6ff70, #4b7420);
  box-shadow: inset 0 0 0 5px #182215;
}
.wing {
  position: absolute;
  width: 96px;
  height: 76px;
  top: 38px;
  border: 2px solid rgba(67, 240, 210, 0.8);
  background: radial-gradient(
    circle at 60% 60%,
    rgba(67, 240, 210, 0.25),
    rgba(67, 240, 210, 0.02)
  );
  border-radius: 75% 25% 60% 35%;
}
.wing.left {
  left: 15px;
  transform: rotate(-24deg);
  animation: wing-left 1.8s ease-in-out infinite;
}
.wing.right {
  right: 15px;
  transform: scaleX(-1) rotate(-24deg);
  animation: wing-right 1.8s ease-in-out infinite;
}
.pulse {
  position: absolute;
  left: 112px;
  top: 70px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}
.p2 {
  animation-delay: 1.1s;
}
@keyframes wing-left {
  50% {
    transform: rotate(-13deg) scaleY(0.9);
  }
}
@keyframes wing-right {
  50% {
    transform: scaleX(-1) rotate(-13deg) scaleY(0.9);
  }
}
@keyframes pulse {
  to {
    transform: scale(7);
    opacity: 0;
  }
}
.truth {
  margin: 20px 0;
  padding: 13px 16px;
  border: 1px solid #544b29;
  background: #1d1b10;
  color: #e5dba9;
  font:
    600 12px/1.5 ui-monospace,
    monospace;
}
.grid {
  display: grid;
  gap: 14px;
}
.overview {
  grid-template-columns: repeat(4, 1fr);
  margin: 14px 0;
}
.card,
.panel {
  background: linear-gradient(
    155deg,
    rgba(20, 28, 30, 0.96),
    rgba(11, 16, 17, 0.96)
  );
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
.card {
  padding: 18px;
}
.card p {
  margin: 0 0 13px;
  color: var(--muted);
  font:
    700 10px ui-monospace,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card strong {
  display: block;
  font-size: 26px;
  overflow-wrap: anywhere;
}
.card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.status-card strong {
  color: var(--acid);
}
.columns {
  grid-template-columns: 1.1fr 0.9fr;
}
.panel {
  padding: 22px;
  min-height: 380px;
}
.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.panel h2 {
  margin: 0;
  font-size: 25px;
}
.badge {
  border: 1px solid #41504a;
  border-radius: 999px;
  padding: 7px 10px;
  color: #b5c3bd;
  font:
    700 10px ui-monospace,
    monospace;
}
.badge.neural {
  color: var(--acid);
  border-color: #536d2e;
}
.badge.warning {
  color: var(--orange);
  border-color: #6a4c2c;
}
.candidate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.candidate:first-child {
  border-top: 0;
}
.candidate strong {
  font:
    700 14px ui-monospace,
    monospace;
}
.candidate small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}
.candidate .result {
  font:
    800 10px ui-monospace,
    monospace;
}
.pass {
  color: var(--acid);
}
.fail {
  color: var(--red);
}
.brain-visual {
  height: 190px;
  position: relative;
  overflow: hidden;
  border: 1px solid #263732;
  border-radius: 10px;
  background: radial-gradient(circle, #172a24, #090e0f 65%);
}
#brain {
  width: 100%;
  height: 100%;
}
.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--acid);
}
.decision {
  margin-top: 14px;
  padding: 15px;
  border-left: 3px solid var(--acid);
  background: #151c16;
  font:
    800 14px ui-monospace,
    monospace;
}
.scientific {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.life-panel {
  margin-top: 14px;
  min-height: 0;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
}
.event {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c1112;
}
.event b {
  display: block;
  color: var(--cyan);
  font:
    700 11px ui-monospace,
    monospace;
}
.event span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 7px;
}
.event code {
  display: block;
  color: #66736e;
  font-size: 9px;
  margin-top: 8px;
  overflow: hidden;
}
.error {
  color: var(--red);
}
.funding-panel {
  min-height: 0;
  margin: 14px 0;
}
.gmgn-panel {
  min-height: 0;
  margin: 14px 0;
}
.gmgn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gmgn-grid > div {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c1211;
}
.gmgn-grid p {
  margin: 0 0 9px;
  color: var(--muted);
  font: 700 10px ui-monospace, monospace;
  letter-spacing: 0.1em;
}
.gmgn-grid strong {
  display: block;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.gmgn-grid small,
.gmgn-fields {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}
.gmgn-fields {
  margin-bottom: 0;
}
.gmgn-rehearsal {
  margin-top: 14px;
  padding: 15px;
  border: 1px dashed #3d5048;
  border-radius: 10px;
  background: #0a100f;
}
.rehearsal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.rehearsal-head p {
  margin: 0 0 7px;
  color: var(--muted);
  font: 700 10px ui-monospace, monospace;
  letter-spacing: 0.1em;
}
.rehearsal-head strong {
  font: 700 13px ui-monospace, monospace;
}
.rehearsal-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  color: #b9c5c0;
  font: 700 11px ui-monospace, monospace;
}
.rehearsal-line span,
.rehearsal-line strong {
  white-space: nowrap;
}
.rehearsal-line i {
  color: var(--acid);
  font-style: normal;
}
.rehearsal-line strong {
  color: var(--orange);
}
.gmgn-rehearsal > small {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
}
.route-public-snapshot {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid #273b35;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(67, 240, 210, 0.05), rgba(10, 16, 15, 0.92));
}
.route-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}
.route-snapshot-grid > div {
  min-width: 0;
  padding: 10px;
  border: 1px solid #263730;
  border-radius: 8px;
  background: rgba(6, 10, 9, 0.52);
}
.route-snapshot-grid small,
.route-public-snapshot > small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.route-snapshot-grid strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  font: 700 11px ui-monospace, monospace;
  color: var(--acid);
}
.route-snapshot-grid strong.warning {
  color: var(--orange);
}
.route-public-snapshot > small {
  margin-top: 11px;
  font-size: 12px;
}
.route-line {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 15px;
  border: 1px solid #34423d;
  border-radius: 10px;
  background: #0c1211;
}
.route-line span {
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 7px;
  background: #15201c;
  color: #d9e7df;
  font:
    700 11px ui-monospace,
    monospace;
}
.route-line i {
  color: var(--acid);
  font-style: normal;
}
.funding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.funding-grid > div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.funding-grid p {
  margin: 0 0 9px;
  color: var(--muted);
  font:
    700 10px ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}
.funding-grid strong {
  display: block;
  font-size: 15px;
  overflow-wrap: anywhere;
}
.funding-grid small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}
.custody-warning {
  border-color: #5d482f !important;
  background: #1a140e;
}
.custody-warning strong {
  color: var(--orange);
}
@media (max-width: 800px) {
  main {
    width: min(100% - 20px, 620px);
    padding-top: 20px;
  }
  .hero {
    min-height: 250px;
  }
  .fly {
    position: absolute;
    right: -30px;
    top: 32px;
    opacity: 0.28;
    transform: scale(0.7);
  }
  .hero h1 {
    font-size: 68px;
  }
  .overview {
    grid-template-columns: repeat(2, 1fr);
  }
  .columns {
    grid-template-columns: 1fr;
  }
  .card strong {
    font-size: 17px;
  }
  .funding-grid {
    grid-template-columns: 1fr;
  }
  .gmgn-grid {
    grid-template-columns: 1fr;
  }
  .rehearsal-head {
    display: block;
  }
  .rehearsal-head .badge {
    display: inline-block;
    margin-top: 10px;
  }
  .rehearsal-line {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .route-snapshot-grid {
    grid-template-columns: 1fr;
  }
  .route-line {
    gap: 6px;
  }
  .route-line span {
    padding: 7px 8px;
  }
}
