:root {
  --ink: #070907;
  --ink-soft: #10130e;
  --ink-raised: #151913;
  --paper: #eee9dc;
  --paper-dim: #aaa99f;
  --paper-dark: #24271f;
  --phosphor: #c8ff74;
  --phosphor-muted: #7f9f51;
  --discord: #5865f2;
  --discord-hover: #7289ff;
  --archive-paper: #d8d0bf;
  --archive-ink: #171912;
  --line: rgba(200, 255, 116, 0.22);
  --line-neutral: rgba(238, 233, 220, 0.15);
  --display: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(1240px, calc(100vw - 72px));
  --header-height: 88px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--phosphor);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--phosphor);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: none !important;
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.page-atmosphere {
  position: fixed;
  z-index: 90;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-atmosphere__noise,
.page-atmosphere__scan {
  position: absolute;
  inset: 0;
}

.page-atmosphere__noise {
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.page-atmosphere__scan {
  opacity: 0.028;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.5) 3px 4px);
}

.section-index,
.eyebrow {
  margin: 0;
  color: var(--phosphor);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 50%;
  display: grid;
  width: var(--page);
  height: var(--header-height);
  align-items: center;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(238, 233, 220, 0.24);
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: baseline;
  color: var(--phosphor);
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.wordmark strong {
  font-weight: 800;
}

.wordmark small {
  margin-left: 12px;
  color: rgba(238, 233, 220, 0.52);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 36px);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(238, 233, 220, 0.76);
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--phosphor);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.discord-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--discord);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.discord-link svg {
  width: 18px;
  fill: currentColor;
}

.discord-link:hover {
  transform: translateY(-2px);
  background: var(--discord-hover);
  box-shadow: 0 12px 34px rgba(88, 101, 242, 0.28);
}

.discord-link--header {
  min-height: 40px;
  justify-self: end;
  padding: 0 17px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  align-items: end;
}

.hero__media,
.hero__memory-field,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
  overflow: hidden;
  background: #0b0d0a;
}

.hero__media img {
  width: 100%;
  height: calc(100% + 50px);
  transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.035);
  object-fit: cover;
  object-position: 50% center;
  filter: contrast(1.09) saturate(0.83) brightness(0.78);
  transition: transform 100ms linear;
}

.hero__memory-field {
  z-index: -3;
  width: var(--era-split, 43%);
  border-right: 1px solid rgba(200, 255, 116, 0.22);
  background:
    repeating-linear-gradient(0deg, rgba(7, 9, 7, 0.02) 0 5px, rgba(200, 255, 116, 0.09) 5px 6px),
    linear-gradient(90deg, rgba(4, 5, 4, 0.42), rgba(4, 5, 4, 0.12));
  mix-blend-mode: soft-light;
  transition: width 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero__memory-field::after {
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent 10%, var(--phosphor) 48%, transparent 90%);
  box-shadow: 0 0 14px rgba(200, 255, 116, 0.34);
  content: "";
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.96) 0%, rgba(5, 6, 5, 0.8) 35%, rgba(5, 6, 5, 0.25) 63%, rgba(5, 6, 5, 0.45) 100%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.88) 0%, transparent 46%, rgba(5, 6, 5, 0.34) 100%);
}

.hero__content {
  z-index: 2;
  width: var(--page);
  margin: var(--header-height) auto 0;
  padding: clamp(118px, 17vh, 190px) 0 clamp(92px, 13vh, 138px);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero__title {
  max-width: 960px;
  margin: 22px 0 0 -0.055em;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 8.5rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.76;
  text-transform: uppercase;
  text-shadow: 0 14px 46px rgba(0, 0, 0, 0.42);
}

.hero__title span {
  color: var(--phosphor);
  text-shadow: 0 0 28px rgba(200, 255, 116, 0.15);
}

.hero__lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(238, 233, 220, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 34px;
}

.discord-link--hero {
  min-width: 244px;
  padding: 0 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-color: rgba(200, 255, 116, 0.5);
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--phosphor);
}

.hero-console {
  position: absolute;
  z-index: 2;
  right: max(36px, calc((100vw - min(1240px, calc(100vw - 72px))) / 2));
  bottom: 114px;
  width: min(340px, 26vw);
  border: 1px solid rgba(200, 255, 116, 0.32);
  background: rgba(6, 8, 6, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  font-family: var(--mono);
  backdrop-filter: blur(9px);
}

.hero-console__bar {
  display: flex;
  padding: 10px 13px;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  color: var(--phosphor);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.hero-console dl {
  margin: 0;
  padding: 8px 13px;
}

.hero-console dl div {
  display: flex;
  padding: 6px 0;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(238, 233, 220, 0.1);
  gap: 16px;
  font-size: 0.66rem;
}

.hero-console dt {
  color: rgba(238, 233, 220, 0.48);
  text-transform: uppercase;
}

.hero-console dd {
  margin: 0;
  color: var(--paper);
  text-align: right;
}

.hero-console > p {
  display: flex;
  margin: 0;
  padding: 11px 13px;
  align-items: center;
  gap: 9px;
  color: rgba(238, 233, 220, 0.64);
  font-size: 0.61rem;
  text-transform: uppercase;
}

.hero-console > p span,
.signal-room__status span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 11px rgba(200, 255, 116, 0.64);
  animation: signal-pulse 2.2s ease-in-out infinite;
}

.hero__era {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  min-height: 44px;
  padding-inline: max(36px, calc((100vw - min(1240px, calc(100vw - 72px))) / 2));
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(238, 233, 220, 0.14);
  color: rgba(238, 233, 220, 0.42);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-intro {
  padding-block: clamp(104px, 14vw, 188px) clamp(82px, 10vw, 136px);
}

.archive-intro__heading {
  display: grid;
  margin-top: 26px;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: 64px;
}

.archive-intro h2,
.lineage h2,
.signal-room h2,
.alexai h2,
.source-ledger h2,
.final-call h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.6vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 0.83;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.archive-intro__heading > div {
  max-width: 500px;
  padding-bottom: 7px;
  color: var(--paper-dim);
}

.archive-intro__heading p {
  margin: 0;
}

.archive-intro__heading p + p {
  margin-top: 18px;
}

.evidence-wall {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 10vw, 142px);
  background:
    linear-gradient(90deg, rgba(200, 255, 116, 0.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(200, 255, 116, 0.028) 1px, transparent 1px),
    #151713;
  background-size: 54px 54px;
}

.evidence-wall::before {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.42' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.evidence-wall__rail {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 38px;
  align-items: center;
  border-bottom: 1px solid rgba(200, 255, 116, 0.17);
  color: rgba(200, 255, 116, 0.5);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.evidence-wall__rail span {
  width: var(--page);
  margin: auto;
}

.evidence-wall__grid {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: repeat(12, 1fr);
  gap: 34px 28px;
}

.evidence-sheet {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 52px);
  color: var(--archive-ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.13), rgba(0, 0, 0, 0.025)),
    var(--archive-paper);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.24);
}

.evidence-sheet::before {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 72px;
  height: 19px;
  transform: translateX(-50%) rotate(-1deg);
  background: rgba(176, 168, 143, 0.48);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  content: "";
}

.evidence-sheet--origin {
  grid-column: 1 / span 7;
  transform: rotate(-0.55deg);
}

.evidence-sheet--server {
  margin-top: 72px;
  grid-column: 8 / span 5;
  transform: rotate(0.7deg);
}

.evidence-sheet--config {
  margin-top: 22px;
  grid-column: 2 / span 5;
  transform: rotate(0.5deg);
}

.evidence-sheet--rule {
  grid-column: 7 / span 6;
  transform: rotate(-0.45deg);
}

.evidence-sheet__stamp,
.evidence-sheet time {
  display: block;
  margin: 0;
  color: #557334;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.evidence-sheet time {
  margin-top: 22px;
  color: rgba(23, 25, 18, 0.55);
}

.evidence-sheet h2,
.evidence-sheet h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.evidence-sheet h3 {
  font-size: clamp(2.25rem, 3.6vw, 3.7rem);
}

.evidence-sheet > p:not(.evidence-sheet__stamp) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(23, 25, 18, 0.76);
}

.evidence-sheet code,
.lineage code {
  font-family: var(--mono);
}

.evidence-sheet pre {
  margin: 28px 0 0;
  padding: 22px;
  overflow: auto;
  border-left: 4px solid var(--phosphor-muted);
  background: #191c16;
  color: var(--phosphor);
  font-family: var(--mono);
  font-size: clamp(0.67rem, 1vw, 0.8rem);
  line-height: 1.75;
}

.evidence-sheet blockquote {
  margin: 28px 0 0;
  color: #1b2015;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.evidence-sheet__links {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(23, 25, 18, 0.25);
}

.evidence-sheet__links a,
.evidence-sheet__single-link {
  display: flex;
  padding: 12px 0;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 25, 18, 0.17);
  color: #303b22;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.evidence-sheet__links a:hover,
.evidence-sheet__single-link:hover {
  color: #11150d;
}

.evidence-sheet__single-link {
  margin-top: 28px;
  border-top: 1px solid rgba(23, 25, 18, 0.25);
}

.lineage {
  display: grid;
  padding-block: clamp(120px, 15vw, 200px);
  align-items: start;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  gap: clamp(70px, 9vw, 150px);
}

.lineage__copy > p:not(.section-index):not(.lineage__note) {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--paper-dim);
  font-size: 1.05rem;
}

.lineage h2 {
  margin-top: 22px;
}

.lineage__note {
  max-width: 580px;
  margin: 48px 0 0;
  padding: 20px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--phosphor-muted);
  color: rgba(238, 233, 220, 0.55);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.7;
}

.lineage__note span {
  color: var(--phosphor);
  text-transform: uppercase;
}

.lineage__trace {
  display: grid;
  margin-top: 26px;
  align-items: center;
  grid-template-columns: 1fr 62px 1fr 62px 1fr;
}

.lineage__trace div {
  display: grid;
  min-height: 190px;
  padding: 24px 18px;
  border-top: 1px solid var(--line-neutral);
  border-bottom: 1px solid var(--line-neutral);
  align-content: center;
  text-align: center;
}

.lineage__trace strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 0.9;
}

.lineage__trace span {
  margin-top: 12px;
  color: rgba(238, 233, 220, 0.44);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lineage__trace .lineage__trace-focus {
  border-color: var(--phosphor);
  background: rgba(200, 255, 116, 0.045);
}

.lineage__trace-focus strong {
  color: var(--phosphor);
}

.lineage__trace i {
  height: 1px;
  background: var(--phosphor-muted);
}

.lineage__records {
  display: grid;
  margin-top: 42px;
  grid-column: 2;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.lineage__records article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.lineage__records article > span,
.lineage__records a {
  color: var(--phosphor-muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lineage__records p {
  margin: 16px 0 0;
  color: var(--paper-dim);
  font-size: 0.84rem;
}

.lineage__records blockquote {
  margin: 14px 0 20px;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.signal-room {
  position: relative;
  overflow: hidden;
  padding-block: clamp(108px, 13vw, 180px);
  background:
    radial-gradient(circle at 50% 40%, rgba(200, 255, 116, 0.055), transparent 36%),
    linear-gradient(180deg, #0d100d, #070907 76%);
}

.signal-room::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--phosphor-muted), transparent);
  content: "";
}

.signal-room__header {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
}

.signal-room h2 {
  margin-top: 22px;
}

.signal-room__lede {
  max-width: 500px;
  color: var(--paper-dim);
}

.signal-room__lede > p:first-child {
  margin: 0;
}

.signal-room__status {
  display: flex;
  margin: 26px 0 0;
  align-items: center;
  gap: 10px;
  color: var(--phosphor-muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-grid {
  display: grid;
  margin-top: 68px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 16px;
}

.roster-node {
  position: relative;
  display: grid;
  min-height: 192px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(200, 255, 116, 0.18);
  background:
    linear-gradient(180deg, rgba(200, 255, 116, 0.055), transparent 34%),
    #0e120e;
  box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.55);
  align-content: end;
  grid-column: span 2;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.roster-node:nth-child(1),
.roster-node:nth-child(10) { grid-column: 2 / span 2; }
.roster-node:nth-child(2),
.roster-node:nth-child(11) { grid-column: 4 / span 2; }
.roster-node:nth-child(3),
.roster-node:nth-child(12) { grid-column: 6 / span 2; }
.roster-node:nth-child(4),
.roster-node:nth-child(13) { grid-column: 8 / span 2; }
.roster-node:nth-child(5) { grid-column: 1 / span 2; }
.roster-node:nth-child(6) { grid-column: 3 / span 2; }
.roster-node:nth-child(7) { grid-column: 5 / span 2; }
.roster-node:nth-child(8) { grid-column: 7 / span 2; }
.roster-node:nth-child(9) { grid-column: 9 / span 2; }

.roster-node::after {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(200, 255, 116, 0.14) 4px 5px);
  content: "";
  pointer-events: none;
}

.roster-node:hover,
.roster-node:focus-within {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(200, 255, 116, 0.58);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.64), 0 14px 36px rgba(0, 0, 0, 0.28), 0 0 18px rgba(200, 255, 116, 0.06);
}

.roster-node__index {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 12px;
  color: var(--phosphor);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.roster-node__fallback-avatar,
.roster-node__avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.roster-node__fallback-avatar {
  display: grid;
  opacity: 0.5;
  align-items: center;
  color: rgba(200, 255, 116, 0.32);
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.roster-node__avatar {
  opacity: 0.56;
  object-fit: cover;
  filter: grayscale(1) sepia(0.2) hue-rotate(40deg) saturate(0.55) contrast(1.18) brightness(0.62);
}

.roster-node::before {
  position: absolute;
  z-index: 1;
  inset: 32% 0 0;
  background: linear-gradient(transparent, rgba(5, 7, 5, 0.92) 72%);
  content: "";
}

.roster-node strong,
.roster-node small,
.roster-node__name,
.roster-node__archetype {
  position: relative;
  z-index: 3;
  display: block;
}

.roster-node strong,
.roster-node__name {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.roster-node small,
.roster-node__archetype {
  margin-top: 9px;
  color: var(--phosphor-muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.historical-roll {
  display: grid;
  margin-top: 84px;
  padding-top: 30px;
  overflow: visible;
  border-top: 1px solid var(--line);
  align-items: start;
  grid-template-columns: 0.8fr 1.5fr auto;
  gap: 38px;
}

.historical-roll h3 {
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.historical-roll div > p:last-child,
.historical-roll__names {
  margin: 12px 0 0;
  color: rgba(238, 233, 220, 0.48);
  font-size: 0.72rem;
}

.historical-roll__names {
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(238, 233, 220, 0.7);
  font-family: var(--mono);
  line-height: 1.9;
}

.historical-roll > a {
  color: var(--phosphor-muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.alexai {
  padding-block: clamp(112px, 14vw, 196px);
  background: var(--paper);
  color: var(--paper-dark);
}

.alexai__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(70px, 10vw, 158px);
}

.alexai__terminal {
  position: relative;
  padding: 28px;
  border: 8px solid #20231d;
  background:
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(200, 255, 116, 0.04) 5px 6px),
    #090c09;
  box-shadow: 0 32px 80px rgba(22, 25, 19, 0.22), inset 0 0 60px rgba(200, 255, 116, 0.035);
  color: var(--phosphor);
  font-family: var(--mono);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  line-height: 1.8;
}

.alexai__terminal::after {
  position: absolute;
  right: 40px;
  bottom: -20px;
  left: 40px;
  height: 12px;
  background: #171a15;
  box-shadow: 0 12px 0 -3px #2c3027;
  content: "";
}

.alexai__terminal > div {
  display: flex;
  margin: -28px -28px 24px;
  padding: 10px 14px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 255, 116, 0.2);
  color: rgba(200, 255, 116, 0.58);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.alexai__terminal p {
  margin: 5px 0;
}

.alexai__terminal b {
  display: inline-block;
  animation: cursor-blink 1.1s steps(1) infinite;
}

.alexai .section-index {
  color: #597632;
}

.alexai h2 {
  margin-top: 22px;
}

.alexai__copy > p:not(.section-index) {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(36, 39, 31, 0.75);
  font-size: 1.05rem;
}

.alexai__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 170ms ease, background-color 170ms ease, color 170ms ease;
}

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

.button--phosphor {
  background: #26331b;
  color: var(--phosphor);
}

.alexai .text-link {
  color: #334621;
}

.signal {
  position: relative;
  display: grid;
  min-height: min(980px, 100svh);
  isolation: isolate;
  overflow: hidden;
  align-items: center;
}

.signal__media,
.signal__veil {
  position: absolute;
  inset: 0;
}

.signal__media {
  z-index: -3;
}

.signal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.1) brightness(0.72);
}

.signal__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.97) 0%, rgba(5, 6, 5, 0.84) 38%, rgba(5, 6, 5, 0.22) 70%, rgba(5, 6, 5, 0.52) 100%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.7), transparent 56%);
}

.signal__content {
  padding-block: 110px;
}

.signal__lineage {
  margin: 36px 0 0;
  color: rgba(238, 233, 220, 0.5);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal__title {
  display: flex;
  max-width: 760px;
  margin: 8px 0 0 -0.065em;
  align-items: baseline;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(10rem, 22vw, 19rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.7;
}

.signal__title strong {
  color: var(--phosphor);
  font-weight: inherit;
}

.signal__headline {
  margin: 32px 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
}

.signal__copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(238, 233, 220, 0.72);
}

.signal__truth {
  margin: 24px 0 0;
  color: var(--phosphor);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.discord-link--signal {
  min-height: 52px;
  padding: 0 24px;
}

.button--ghost {
  min-height: 52px;
  border: 1px solid rgba(238, 233, 220, 0.34);
  color: var(--paper);
}

.button--ghost:hover {
  border-color: var(--phosphor);
  color: var(--phosphor);
}

.source-ledger {
  padding-block: clamp(110px, 14vw, 188px);
}

.source-ledger__heading {
  display: grid;
  margin-top: 24px;
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 74px;
}

.source-ledger__heading p {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--paper-dim);
}

.source-ledger__links {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line-neutral);
}

.source-ledger__links a {
  display: grid;
  min-height: 78px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-neutral);
  align-items: center;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  transition: color 160ms ease, padding-left 160ms ease;
}

.source-ledger__links a:hover {
  padding-left: 12px;
  color: var(--phosphor);
}

.source-ledger__links span {
  color: var(--phosphor-muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.source-ledger__links b {
  font-family: var(--mono);
  font-size: 1rem;
}

.final-call {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 15vw, 190px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 100%, rgba(200, 255, 116, 0.09), transparent 42%),
    #090b08;
  text-align: center;
}

.final-call__inner {
  display: grid;
  justify-items: center;
}

.final-call h2 {
  max-width: 1040px;
  margin-top: 25px;
}

.final-call__inner > p:not(.section-index) {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--paper-dim);
}

.discord-link--final {
  min-width: 275px;
  min-height: 58px;
  margin-top: 38px;
  padding: 0 26px;
}

.site-footer {
  display: grid;
  padding-block: 48px 42px;
  border-top: 1px solid var(--line-neutral);
  align-items: start;
  grid-template-columns: auto 1fr auto;
  gap: 22px 42px;
}

.wordmark--footer {
  grid-row: span 2;
}

.site-footer > p {
  margin: 0;
  color: rgba(238, 233, 220, 0.45);
  font-size: 0.74rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: rgba(238, 233, 220, 0.64);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--phosphor);
}

.site-footer__legal {
  max-width: 820px;
  font-size: 0.64rem !important;
  line-height: 1.65;
}

.site-footer__code {
  justify-self: end;
  color: rgba(200, 255, 116, 0.4) !important;
  font-family: var(--mono);
  font-size: 0.58rem !important;
  letter-spacing: 0.06em;
}

.scroll-progress {
  position: fixed;
  z-index: 150;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(238, 233, 220, 0.06);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--phosphor);
  box-shadow: 0 0 8px rgba(200, 255, 116, 0.38);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 720ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js .hero__eyebrow,
.js .hero__title,
.js .hero__lede,
.js .hero__actions,
.js .hero-console {
  animation: hero-enter 720ms cubic-bezier(0.16, 0.82, 0.24, 1) both;
}

.js .hero__title { animation-delay: 80ms; }
.js .hero__lede { animation-delay: 170ms; }
.js .hero__actions { animation-delay: 260ms; }
.js .hero-console { animation-delay: 360ms; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes signal-pulse {
  0%, 100% { opacity: 0.42; transform: scale(0.84); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes cursor-blink {
  0%, 47% { opacity: 1; }
  48%, 100% { opacity: 0; }
}

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 52px, 960px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-console {
    display: none;
  }

  .hero__content {
    padding-bottom: 112px;
  }

  .evidence-sheet--origin,
  .evidence-sheet--server,
  .evidence-sheet--config,
  .evidence-sheet--rule {
    margin-top: 0;
    grid-column: span 6;
  }

  .lineage {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .lineage__records {
    margin-top: -12px;
    grid-column: 1;
  }

  .roster-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .roster-node,
  .roster-node:nth-child(n) {
    grid-column: auto;
  }

  .historical-roll {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .historical-roll > a {
    grid-column: 2;
  }

  .alexai__inner {
    gap: 72px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 32px);
    --header-height: 72px;
  }

  .site-header {
    gap: 14px;
  }

  .wordmark {
    font-size: 0.92rem;
  }

  .wordmark small,
  .discord-link--header svg {
    display: none;
  }

  .discord-link--header {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.61rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero__media img {
    object-position: 56% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(5, 6, 5, 0.94), rgba(5, 6, 5, 0.44)),
      linear-gradient(0deg, rgba(5, 6, 5, 0.94) 0%, rgba(5, 6, 5, 0.22) 68%);
  }

  .hero__memory-field {
    width: 48%;
  }

  .hero__content {
    padding: 116px 0 92px;
  }

  .hero__eyebrow {
    font-size: 0.61rem;
  }

  .hero__title {
    margin-top: 18px;
    font-size: clamp(4.55rem, 23vw, 7.5rem);
    line-height: 0.79;
  }

  .hero__lede {
    margin-top: 24px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .discord-link--hero {
    width: 100%;
  }

  .text-link--hero {
    width: max-content;
  }

  .hero__era {
    min-height: 38px;
    padding-inline: 16px;
    font-size: 0.46rem;
  }

  .archive-intro__heading,
  .signal-room__header,
  .source-ledger__heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .archive-intro h2,
  .lineage h2,
  .signal-room h2,
  .alexai h2,
  .source-ledger h2,
  .final-call h2 {
    font-size: clamp(3.35rem, 16.5vw, 5.4rem);
  }

  .archive-intro__heading > *,
  .lineage > *,
  .lineage__trace > *,
  .lineage__records > *,
  .signal-room__header > *,
  .roster-grid > *,
  .historical-roll > *,
  .alexai__inner > *,
  .source-ledger__heading > *,
  .source-ledger__links > *,
  .source-ledger__links a > * {
    min-width: 0;
  }

  .evidence-wall {
    padding-top: 80px;
  }

  .evidence-wall__grid {
    display: block;
  }

  .evidence-sheet {
    margin: 0 0 28px !important;
    padding: 30px 24px;
    transform: none !important;
  }

  .evidence-sheet h2,
  .evidence-sheet h3 {
    font-size: clamp(2.75rem, 14vw, 4.3rem);
  }

  .evidence-sheet blockquote {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .evidence-sheet pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  .lineage {
    padding-block: 112px;
    gap: 46px;
  }

  .lineage__trace {
    grid-template-columns: 1fr;
  }

  .lineage__trace div {
    min-height: 130px;
  }

  .lineage__trace i {
    width: 1px;
    height: 32px;
    justify-self: center;
  }

  .lineage__records {
    grid-template-columns: 1fr;
  }

  .signal-room {
    padding-block: 108px;
  }

  .roster-grid {
    margin-top: 48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .roster-node {
    min-height: 166px;
    padding: 13px;
  }

  .roster-node strong,
  .roster-node__name {
    font-size: clamp(0.95rem, 4.5vw, 1.12rem);
    letter-spacing: -0.035em;
  }

  .roster-node small,
  .roster-node__archetype {
    font-size: 0.45rem;
  }

  .historical-roll {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .historical-roll > a {
    grid-column: 1;
  }

  .alexai__inner {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .alexai__terminal {
    grid-row: 2;
  }

  .alexai__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button--phosphor {
    width: 100%;
  }

  .alexai .text-link {
    width: max-content;
  }

  .signal {
    min-height: 860px;
  }

  .signal__media img {
    object-position: 58% center;
  }

  .signal__veil {
    background:
      linear-gradient(90deg, rgba(5, 6, 5, 0.94), rgba(5, 6, 5, 0.45)),
      linear-gradient(0deg, rgba(5, 6, 5, 0.9), transparent 54%);
  }

  .signal__content {
    padding-block: 96px;
  }

  .signal__title {
    margin-top: 18px;
    font-size: clamp(8.3rem, 43vw, 12rem);
    letter-spacing: -0.12em;
  }

  .signal__headline {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .signal__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .discord-link--signal,
  .button--ghost {
    width: 100%;
  }

  .source-ledger__links {
    margin-top: 50px;
  }

  .source-ledger__links a {
    min-height: 88px;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
  }

  .source-ledger__links span {
    grid-column: 1 / -1;
  }

  .final-call {
    text-align: left;
  }

  .final-call__inner {
    justify-items: start;
  }

  .discord-link--final {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .wordmark--footer {
    grid-row: auto;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .site-footer__code {
    justify-self: start;
  }
}

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

  .roster-node {
    min-height: 154px;
  }

  .hero__era span:last-child {
    text-align: right;
  }
}

@media (max-width: 760px) and (max-height: 640px) {
  .hero {
    min-height: 640px;
  }

  .hero__content {
    padding: 58px 0 90px;
  }

  .hero__title {
    margin-top: 12px;
    font-size: clamp(2.9rem, 14vw, 3.5rem);
  }

  .hero__lede {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero__era {
    display: none;
  }
}

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

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

  .hero__media img {
    transform: scale(1.035);
  }

  .js [data-reveal],
  .js [data-reveal].is-revealed,
  .js .hero__eyebrow,
  .js .hero__title,
  .js .hero__lede,
  .js .hero__actions,
  .js .hero-console {
    opacity: 1;
    transform: none;
  }
}
