:root {
  --red: #d71935;
  --red-hot: #ff2949;
  --red-deep: #6d0718;
  --black: #030203;
  --ink: #080609;
  --panel: rgba(10, 7, 11, 0.74);
  --white: #f8f5f7;
  --muted: #aaa3aa;
  --line: rgba(255, 255, 255, 0.14);
  --line-red: rgba(255, 41, 73, 0.36);
  --shell: 1220px;
  --pad: clamp(1.15rem, 4vw, 3.2rem);
  --display: "Arial Narrow", "Roboto Condensed", Impact, "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--white);
  background: var(--red);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(100%, calc(var(--shell) + (var(--pad) * 2)));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.scene {
  position: fixed;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  background: #030203;
}

.scene canvas,
.scene-fallback,
.scene-vignette,
.scene-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene canvas {
  display: block;
  opacity: 0;
  transition: opacity 900ms ease;
}

.scene.scene-ready canvas {
  opacity: 1;
}

.scene-fallback {
  background:
    radial-gradient(circle at 72% 43%, rgba(215, 25, 53, 0.28), transparent 3%, rgba(92, 5, 20, 0.28) 12%, transparent 33%),
    radial-gradient(circle at 72% 43%, transparent 0 19%, rgba(255, 41, 73, 0.14) 19.2% 19.5%, transparent 20% 28%, rgba(255, 41, 73, 0.08) 28.2% 28.5%, transparent 29%),
    linear-gradient(145deg, #090509, #030203 58%);
}

.scene.scene-ready .scene-fallback {
  opacity: 0;
}

.scene-vignette {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 2, 3, 0.96) 0%, rgba(3, 2, 3, 0.72) 34%, transparent 67%),
    linear-gradient(180deg, rgba(3, 2, 3, 0.62), transparent 22%, transparent 68%, rgba(3, 2, 3, 0.9));
}

.scene-grain {
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(3, 2, 3, 0.88), rgba(3, 2, 3, 0.4));
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 5.7rem;
  display: grid;
  grid-template-columns: 13rem 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand img {
  width: 184px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a {
  padding-block: 0.7rem;
  color: #d6d0d5;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--white);
}

.system-state {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-state span,
.privacy-line span {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 1rem rgba(255, 41, 73, 0.8);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.hero-layout {
  min-height: calc(100svh - 3.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.55fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: 9rem;
  padding-bottom: 4.5rem;
}

.hero-copy {
  max-width: 55rem;
}

.eyebrow,
.section-label,
.hub-mode {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.hub-mode {
  color: var(--red-hot);
}

.eyebrow span {
  padding-inline: 0.45rem;
  color: rgba(255, 255, 255, 0.36);
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 1.6rem;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8.5vw, 8.6rem);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -0.072em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: var(--white);
}

.hero h1 strong {
  color: var(--red-hot);
  font-weight: inherit;
  text-shadow: 0 0 2.5rem rgba(215, 25, 53, 0.22);
}

.hero-intro {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: #c4bdc3;
  font-size: clamp(1.03rem, 1.6vw, 1.25rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 2.5rem rgba(215, 25, 53, 0.2);
}

.button-primary:hover {
  border-color: var(--red-hot);
  background: #c31531;
}

.button-quiet {
  background: rgba(3, 2, 3, 0.42);
  backdrop-filter: blur(8px);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.signal-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 4, 8, 0.69);
  box-shadow: 1rem 1rem 0 rgba(109, 7, 24, 0.28), 0 1.4rem 5rem rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.signal-card::before,
.signal-card::after {
  content: "";
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  pointer-events: none;
}

.signal-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--red-hot);
  border-left: 2px solid var(--red-hot);
}

.signal-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--red-hot);
  border-bottom: 2px solid var(--red-hot);
}

.signal-card-head {
  min-height: 3.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.signal-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.signal-live i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 0.3rem rgba(255, 41, 73, 0.12);
}

.signal-card dl {
  margin: 0;
}

.signal-card dl > div {
  display: grid;
  grid-template-columns: 6.3rem 1fr;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.signal-card dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-card dd {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.5;
}

.signal-card > p {
  margin: 0;
  padding: 0.95rem 1.1rem 1.1rem;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.signal-strip {
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(151, 10, 34, 0.88);
  backdrop-filter: blur(12px);
}

.signal-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.5vw, 2.4rem);
  padding: 0.8rem var(--pad);
  font-family: var(--mono);
  font-size: clamp(0.59rem, 1.1vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.signal-track i {
  width: 0.28rem;
  height: 0.28rem;
  flex: 0 0 auto;
  background: var(--white);
  transform: rotate(45deg);
}

.section {
  position: relative;
  padding-block: clamp(6rem, 11vw, 10rem);
}

.section-label {
  margin-bottom: 1.1rem;
}

.section h2 {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.6vw, 6.2rem);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -0.058em;
  line-height: 0.92;
  text-transform: uppercase;
}

.status-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(3, 2, 3, 0.94), rgba(8, 3, 6, 0.84));
  backdrop-filter: blur(20px);
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(8rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.status-index {
  min-height: 16rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.3rem;
  color: rgba(255, 255, 255, 0.22);
}

.status-index span {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.status-index i {
  width: 1px;
  min-height: 8rem;
  flex: 1;
  background: linear-gradient(var(--red-hot), transparent);
}

.status-index small {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.status-copy > p:not(.section-label) {
  max-width: 50rem;
  color: #bbb4ba;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.status-grid article {
  min-height: 13rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.016);
}

.status-grid article > span {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--red-hot);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 900;
}

.status-grid h3 {
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.status-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.event-section {
  overflow: hidden;
  color: #171015;
  background: rgba(249, 246, 248, 0.97);
}

.event-section .section-label {
  color: var(--red);
}

.event-section::after {
  content: "";
  position: absolute;
  width: 38rem;
  aspect-ratio: 1;
  right: -25rem;
  bottom: -27rem;
  border: 6rem solid rgba(215, 25, 53, 0.08);
  border-radius: 50%;
}

.split-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(19rem, 0.66fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.event-copy > p {
  color: #443a42;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.principle {
  display: grid;
  grid-template-columns: 4.3rem 1fr;
  gap: 1.1rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(23, 16, 21, 0.18);
}

.principle b {
  width: 4.3rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 950;
}

.principle strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.89rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.principle p {
  margin: 0;
  color: #5b5058;
  font-size: 0.84rem;
}

.hubs-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(109, 7, 24, 0.13), transparent 30%),
    rgba(4, 3, 5, 0.9);
  backdrop-filter: blur(18px);
}

.section-heading {
  max-width: 57rem;
  margin-bottom: 3.8rem;
}

.section-heading > p:last-child {
  max-width: 45rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hub-grid article {
  position: relative;
  min-height: 24rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005));
}

.hub-grid article:nth-child(2) {
  background: linear-gradient(145deg, rgba(109, 7, 24, 0.27), rgba(255, 255, 255, 0.018));
}

.hub-grid article::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--red-hot);
  border-bottom: 2px solid var(--red-hot);
}

.hub-number {
  margin-bottom: clamp(4rem, 9vw, 8rem);
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--display);
  font-size: 4.2rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.hub-mode {
  margin-bottom: 0.7rem;
  font-size: 0.58rem;
}

.hub-grid h3 {
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  font-weight: 950;
  letter-spacing: -0.048em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hub-grid article > p:last-child {
  margin: 0;
  color: #aaa3aa;
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  padding-block: 2.8rem;
  border-top: 1px solid var(--line);
  background: rgba(3, 2, 3, 0.96);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner img {
  width: 198px;
  height: auto;
  margin-bottom: 0.85rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.privacy-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-align: right;
}

.noscript-note {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  max-width: 30rem;
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--black);
  font-size: 0.78rem;
}

#lab-status,
#event,
#hubs {
  scroll-margin-top: 1rem;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(215, 25, 53, 0.22), transparent 32rem),
    repeating-linear-gradient(90deg, transparent 0 4.9rem, rgba(255, 255, 255, 0.025) 5rem),
    var(--black);
}

.error-shell {
  position: relative;
  width: min(100% - 2.5rem, 52rem);
  padding-block: 4rem;
}

.error-logo {
  width: 190px;
  height: auto;
  margin-bottom: 4rem;
}

.error-code {
  position: absolute;
  z-index: -1;
  top: 45%;
  right: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--display);
  font-size: clamp(12rem, 32vw, 25rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.7;
  transform: translateY(-50%);
}

.error-shell h1 {
  max-width: 9ch;
  margin-bottom: 1.2rem;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.error-shell > p:not(.eyebrow, .error-code) {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    align-content: center;
    gap: 3.5rem;
    padding-top: 9rem;
  }

  .signal-card {
    width: min(100%, 39rem);
  }

  .scene-vignette {
    background:
      linear-gradient(180deg, rgba(3, 2, 3, 0.7), rgba(3, 2, 3, 0.36) 45%, rgba(3, 2, 3, 0.88)),
      linear-gradient(90deg, rgba(3, 2, 3, 0.78), transparent);
  }

  .status-grid,
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .status-grid article,
  .hub-grid article {
    min-height: auto;
  }

  .hub-number {
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 6rem;
    gap: 1rem;
  }

  .brand img {
    width: 154px;
  }

  .system-state {
    font-size: 0.54rem;
  }

  .hero-layout {
    padding-top: 8.2rem;
    padding-bottom: 3.2rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-card dl > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .signal-track {
    width: 100%;
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .status-layout {
    grid-template-columns: 1fr;
  }

  .status-index {
    min-height: auto;
    align-items: center;
    flex-direction: row;
  }

  .status-index span {
    font-size: 5rem;
  }

  .status-index i {
    width: auto;
    min-width: 4rem;
    min-height: 1px;
    background: linear-gradient(90deg, var(--red-hot), transparent);
  }

  .status-index small {
    writing-mode: initial;
  }

  .principle {
    grid-template-columns: 3.7rem 1fr;
  }

  .principle b {
    width: 3.7rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-line {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .signal-card,
  .status-grid,
  .status-grid article,
  .hub-grid,
  .hub-grid article,
  .button {
    border: 1px solid CanvasText;
  }

  .system-state span,
  .signal-live i,
  .privacy-line span {
    forced-color-adjust: none;
  }
}

@media print {
  .scene,
  .primary-nav,
  .hero-actions,
  .signal-strip,
  .status-index {
    display: none;
  }

  body,
  .status-section,
  .event-section,
  .hubs-section,
  .site-footer {
    color: #000;
    background: #fff;
  }

  .site-header {
    position: static;
    background: #000;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout,
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
