@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --paper: #ffffff;
  --ink: #0f0f0f;
  --muted: #595959;
  --line: rgba(19, 20, 18, 0.2);
  --acid: #c5ff3d;
  --violet: #998bff;
  --raspberry: #df1e4f;
  --terminal: #09100d;
  --terminal-text: #e3f1df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

body:has(.terminal:not(.terminal--done)) {
  overflow: hidden;
}

.terminal {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: grid;
  align-items: start;
  background: #050505;
  color: #d8e8d1;
  opacity: 1;
  transition: opacity 1.1s ease;
}

.terminal.terminal--fade {
  opacity: 0;
  pointer-events: none;
}

.terminal__screen {
  width: 100%;
  padding: clamp(20px, 4vw, 52px);
  font-family: "DM Mono", "Courier New", monospace;
  font-size: clamp(12px, 1.35vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-shadow: 0 0 8px rgba(191, 255, 180, 0.18);
}

.terminal__log,
.terminal__prompt {
  white-space: pre-wrap;
}

.terminal__log {
  min-height: 0;
}

.terminal__prompt {
  margin-top: 0.1em;
}

.terminal__user {
  color: #b9ff99;
}

.terminal__cursor {
  display: inline-block;
  width: 0.58em;
  height: 1.05em;
  margin-left: 0.16em;
  vertical-align: -0.16em;
  background: #b9ff99;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.site {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background:
    linear-gradient(rgba(19, 20, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 20, 18, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 80% 9%, rgba(153, 139, 255, 0.14), transparent 22rem),
  var(--paper);
  background-size: 42px 42px, 42px 42px, auto;
  opacity: 0;
  transition: opacity 1s ease 0.45s;
}

.site.site--visible {
  opacity: 1;
  animation: grid-drift 22s linear infinite;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 22px clamp(20px, 4vw, 62px);
}

.site-header {
  position: sticky;
  z-index: 3;
  top: 0;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid rgba(197, 255, 61, 0.28);
  background: rgba(9, 16, 13, 0.96);
  color: var(--terminal-text);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
}

.pi-badge {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border: 1px solid rgba(197, 255, 61, 0.8);
  border-radius: 4px;
  background: #e8eee3;
  box-shadow: 4px 4px 0 rgba(197, 255, 61, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.pi-badge::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(197, 255, 61, 0.9);
  box-shadow: 0 0 8px rgba(197, 255, 61, 0.85);
  content: "";
  transform: translateY(-25px);
  animation: badge-scan 3.8s ease-in-out infinite;
}

.pi-badge:hover {
  box-shadow: 2px 2px 0 rgba(197, 255, 61, 0.38);
  transform: translate(2px, 2px);
}

.pi-badge img {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.wordmark {
  color: var(--terminal-text);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  color: var(--acid);
}

.wordmark:hover {
  color: var(--acid);
  text-shadow: 2px 0 0 rgba(223, 30, 79, 0.5), -2px 0 0 rgba(153, 139, 255, 0.5);
}

.brand-node {
  align-self: flex-end;
  margin: 0 0 2px -4px;
  color: rgba(227, 241, 223, 0.48);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(15px, 3vw, 42px);
  margin-left: auto;
}

nav a,
.header-status,
.site-footer,
.eyebrow,
.section-label,
.card-top,
.hero__index,
.signal-stamp {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

nav a,
.contact__link,
.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

nav a {
  color: var(--terminal-text);
}

nav a {
  position: relative;
}

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

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(227, 241, 223, 0.62);
}

.header-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 3px rgba(197, 255, 61, 0.16);
}

.header-status b {
  color: var(--raspberry);
  font-size: 9px;
  font-weight: 500;
}

.site-main {
  position: relative;
}

.site-main::before {
  position: absolute;
  top: 0;
  right: clamp(20px, 4vw, 62px);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(19, 20, 18, 0.13), transparent 45%, rgba(19, 20, 18, 0.13));
  content: "";
  pointer-events: none;
}

.site-main {
  padding: 0 clamp(20px, 4vw, 62px);
}

.site.site--visible .site-header {
  animation: header-settle 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site.site--visible .eyebrow,
.site.site--visible .hero__title-row,
.site.site--visible .hero__lower {
  animation: interface-rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site.site--visible .eyebrow {
  animation-delay: 120ms;
}

.site.site--visible .hero__title-row {
  animation-delay: 220ms;
}

.site.site--visible .hero__lower {
  animation-delay: 420ms;
}

.hero {
  min-height: min(820px, calc(100vh - 75px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(48px, 9vw, 135px) 0 clamp(58px, 8vw, 110px);
  position: relative;
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  width: min(100%, 730px);
  color: var(--muted);
}

.eyebrow__code {
  color: var(--raspberry);
}

.eyebrow > span:last-child {
  color: var(--violet);
  font-size: 23px;
  line-height: 0;
}

h1 {
  max-width: 920px;
  margin: auto 0;
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 600;
  letter-spacing: -0.1em;
  line-height: 0.79;
}

.hero__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 90px);
  margin: auto 0;
}

.hero__title-row h1 {
  margin: 0;
}

h1 em {
  color: var(--violet);
  font-style: normal;
}

h1 em::after {
  display: inline-block;
  width: 0.15em;
  height: 0.15em;
  margin: 0 0 0.1em 0.13em;
  border-radius: 50%;
  background: var(--raspberry);
  content: "";
  vertical-align: middle;
}

.hero-orbit {
  position: relative;
  flex: 0 0 clamp(300px, 54vw, 550px);
  width: clamp(300px, 54vw, 550px);
  aspect-ratio: 1;
  color: var(--violet);
  perspective: 700px;
}

.hero-orbit canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-orbit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: pi-float 6s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(223, 30, 79, 0.22));
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(19, 20, 18, 0.22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-orbit::before {
  animation: orbit-spin 22s linear infinite;
}

.hero-orbit::after {
  inset: 9%;
  border-color: rgba(153, 139, 255, 0.45);
  animation: orbit-spin 16s linear infinite reverse;
}

@keyframes pi-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.hero__lower {
  display: grid;
  grid-template-columns: minmax(220px, 380px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.hero__intro {
  max-width: 330px;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.hero__index {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  text-align: right;
}

.hero__index span {
  color: var(--violet);
}

.section-rule {
  display: grid;
  grid-template-columns: minmax(130px, 22%) 1fr;
  gap: 2rem;
  padding: clamp(52px, 8vw, 110px) 0;
  border-top: 1px solid var(--line);
}

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

.signal__content {
  max-width: 780px;
}

.signal__lead {
  max-width: 720px;
  margin: -0.14em 0 0.75em;
  font-size: clamp(32px, 5vw, 72px);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.signal__body {
  max-width: 530px;
  margin: 0;
  color: #4f524b;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.32;
}

.signal__stamp {
  position: relative;
  margin: 65px 0 0;
  color: var(--violet);
  line-height: 1.6;
}

.signal__stamp::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--raspberry);
  content: "";
  animation: datum-blink 1.6s steps(1) infinite;
}

@keyframes datum-blink {
  50% { opacity: 0; }
}

.archive__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
}

.archive-card {
  position: relative;
  min-height: 340px;
  padding: clamp(20px, 3vw, 35px);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.archive-card::after {
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 500ms ease;
}

.archive-card:hover {
  box-shadow: 8px 8px 0 rgba(19, 20, 18, 0.15);
  transform: translateY(-6px);
}

.archive-card:hover::after {
  left: 135%;
}

.archive-card--large {
  grid-row: span 2;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 48% 49%, transparent 49%),
    var(--violet);
}

.archive-card--dark {
  border: 1px solid rgba(197, 255, 61, 0.28);
  background: var(--terminal);
  color: var(--paper);
}

.archive-card--acid {
  min-height: 240px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(19, 20, 18, 0.1) 50%, transparent 51%),
    var(--acid);
  background-size: 28px 100%;
}

.archive-card--grad {
  color: var(--ink);
  min-height: 460px;
  background: linear-gradient(160deg, var(--violet) 0%, var(--acid) 100%);
}

.archive-card--wire {
  border: 1px dashed rgba(197, 255, 61, 0.55);
  background: var(--terminal);
  color: var(--paper);
}

.archive-card--noise {
  background: var(--ink);
  color: var(--acid);
}

.archive-card--grad h2,
.archive-card--wire h2,
.archive-card--noise h2 {
  margin-top: 0;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 0.95;
}

.wire-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(236, 235, 227, 0.28);
  font-size: 96px;
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
}

.card-top {
  display: flex;
  justify-content: space-between;
  color: currentColor;
  font-size: 10px;
  opacity: 0.63;
}

.archive-card h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 87px);
  letter-spacing: -0.09em;
  line-height: 0.82;
}

.archive-card h2 span {
  padding-left: 16%;
}

.archive-card p {
  position: absolute;
  bottom: 30px;
  right: clamp(20px, 3vw, 35px);
  left: clamp(20px, 3vw, 35px);
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

.card-arrow {
  position: absolute;
  right: 32px;
  bottom: 26px;
  font-size: 35px;
}

.orbital-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(236, 235, 227, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -57%);
}

.orbital-mark::before,
.orbital-mark::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(236, 235, 227, 0.6);
  border-radius: 50%;
  content: "";
}

.orbital-mark::after {
  inset: -15px 25px;
  transform: rotate(44deg);
}

.orbital-mark span {
  position: absolute;
  top: 12px;
  left: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
}

.orbital-mark b {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--acid);
  font-size: 45px;
  font-weight: 400;
  transform: translate(-50%, -54%);
}

.waveform {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 80px;
  margin-top: 14%;
}

.waveform i {
  display: block;
  width: 5px;
  height: 32%;
  border-radius: 5px;
  background: var(--ink);
  transform-origin: center;
  animation: pulse 1.3s ease-in-out infinite alternate;
}

.waveform i:nth-child(2n) { height: 68%; animation-delay: -0.3s; }
.waveform i:nth-child(3n) { height: 95%; animation-delay: -0.7s; }
.waveform i:nth-child(4n) { height: 47%; animation-delay: -0.5s; }

@keyframes pulse {
  to { transform: scaleY(0.42); }
}

.manifesto__text {
  max-width: 780px;
}

.manifesto__text p {
  margin: -0.2em 0 0.8em;
  font-size: clamp(27px, 4vw, 56px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.manifesto__text p + p {
  color: var(--muted);
}

.ticker {
  grid-column: 1 / -1;
  margin-top: 55px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0 10px;
  color: var(--violet);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  white-space: nowrap;
}

.ticker span {
  display: inline-block;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.banner {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 9px 0 8px;
  color: var(--acid);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  white-space: nowrap;
  background: rgba(9, 16, 13, 0.96);
}

.banner__track {
  display: inline-block;
  will-change: transform;
}

@keyframes grid-drift {
  to { background-position: 42px 42px, -42px 42px, 0 0; }
}

@keyframes badge-scan {
  0%, 18% { transform: translateY(-25px); opacity: 0; }
  30% { opacity: 1; }
  58%, 100% { transform: translateY(47px); opacity: 0; }
}

@keyframes header-settle {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes interface-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glitch-hue {
  0%, 88%, 100% { filter: none; }
  90% { filter: drop-shadow(2px 0 0 rgba(223, 30, 79, 0.6)) drop-shadow(-2px 0 0 rgba(153, 139, 255, 0.6)); }
  92% { filter: none; }
  94% { filter: drop-shadow(2px 0 0 rgba(197, 255, 61, 0.6)) drop-shadow(-2px 0 0 rgba(223, 30, 79, 0.6)); }
}

h1 {
  animation: glitch-hue 9s steps(1) infinite;
}

h1 em::after {
  animation: core-pulse 3.4s ease-in-out infinite;
}

@keyframes core-pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(153, 139, 255, 0.12); }
  50% { box-shadow: 0 0 0 14px rgba(153, 139, 255, 0.03), 0 0 22px rgba(153, 139, 255, 0.4); }
}

.contact {
  align-items: end;
  padding-bottom: clamp(75px, 12vw, 170px);
}

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

.contact h2 {
  margin: -0.15em 0 0;
  font-size: clamp(55px, 10vw, 145px);
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.contact__link {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  text-transform: uppercase;
}

.contact__link span {
  color: var(--violet);
  font-size: 22px;
}

.site-footer {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.reveal--show {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@keyframes card-pop {
  0% { transform: translateY(22px) scale(0.97); }
  100% { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 700px) {
  .site-header {
    gap: 12px;
    min-height: 66px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  nav {
    display: none;
  }

  .header-status {
    font-size: 9px;
  }

  .brand-node {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 62px);
    padding-top: 35px;
  }

  h1 {
    font-size: clamp(66px, 20vw, 120px);
  }

  .hero__title-row {
    align-items: flex-end;
    gap: 10px;
  }

  .hero-orbit {
    flex-basis: clamp(82px, 24vw, 125px);
    width: clamp(82px, 24vw, 125px);
    margin-bottom: 7px;
  }

  .hero__lower {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__index {
    text-align: left;
  }

  .section-rule {
    display: block;
  }

  .section-label {
    margin-bottom: 42px;
  }

  .signal__stamp {
    margin-top: 40px;
  }

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

  .archive-card--large {
    min-height: 390px;
    grid-row: auto;
  }

  .archive-card--dark,
  .archive-card--acid {
    min-height: 290px;
  }

  .contact__row {
    display: block;
  }

  .contact__link {
    display: inline-block;
    margin-top: 40px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 24px;
  }
}

/* Keep the desktop composition airy at large viewport sizes. */
@media (min-width: 701px) {
  .terminal__screen {
    padding: clamp(12px, 2.35vw, 31px);
    font-size: clamp(7px, 0.79vw, 11px);
  }

  .site {
    background-size: 25px 25px, 25px 25px, auto;
  }

  .site.site--visible {
    animation-name: grid-drift-small;
  }

  .site-header,
  .site-footer {
    gap: 1.18rem;
    padding: 13px clamp(12px, 2.35vw, 36px);
  }

  .site-header {
    min-height: 45px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .pi-badge {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .pi-badge img {
    width: 17px;
    height: 17px;
  }

  .wordmark {
    font-size: clamp(11px, 1.18vw, 17px);
  }

  .brand-node {
    margin-bottom: 1px;
    font-size: 5px;
  }

  nav {
    gap: clamp(9px, 1.76vw, 25px);
  }

  nav a,
  .header-status,
  .site-footer,
  .eyebrow,
  .section-label,
  .card-top,
  .hero__index,
  .signal-stamp {
    font-size: 6.5px;
  }

  .header-status {
    gap: 4px;
  }

  .header-status i {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 0 2px rgba(197, 255, 61, 0.16);
  }

  .header-status b {
    font-size: 5px;
  }

  .site-main {
    padding-right: clamp(12px, 2.35vw, 36px);
    padding-left: clamp(12px, 2.35vw, 36px);
  }

  .site-main::before {
    right: clamp(12px, 2.35vw, 36px);
  }

  .hero {
    min-height: min(482px, calc(100vh - 44px));
    padding-top: clamp(28px, 5.3vw, 79px);
    padding-bottom: clamp(34px, 4.7vw, 65px);
  }

@keyframes glide-y {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 14px)); }
}

.hero-corner {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--raspberry);
  opacity: 0.55;
  pointer-events: none;
}

.hero-corner--tl { top: 18%; left: 4%; animation: glide-y 5s ease-in-out infinite; }
.hero-corner--bl { bottom: 22%; left: 12%; background: var(--violet); animation: glide-y 6.5s ease-in-out infinite reverse; }
.hero-corner--tr { top: 30%; right: 6%; background: var(--acid); animation: glide-y 7s ease-in-out infinite; }

.grid-bump {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.grid-bump::before {
  position: absolute;
  right: -20%;
  bottom: -30%;
  left: -20%;
  height: 60%;
  background-image: radial-gradient(rgba(19, 20, 18, 0.18) 1px, transparent 1.5px);
  background-size: 22px 22px;
  content: "";
  transform: translateY(0);
  animation: grid-bump 14s linear infinite;
}

@keyframes grid-bump {
  to { transform: translateY(60px); }
}

.eyebrow {
    width: min(100%, 430px);
  }

  .eyebrow > span:last-child {
    font-size: 13.5px;
  }

  h1 {
    max-width: 541px;
    font-size: clamp(42px, 8.24vw, 129px);
  }

  .hero__title-row {
    gap: clamp(12px, 2.94vw, 53px);
  }

  .hero-orbit {
    flex-basis: clamp(71px, 10.59vw, 162px);
    width: clamp(71px, 10.59vw, 162px);
  }

  .hero__lower {
    grid-template-columns: minmax(130px, 224px) auto;
    gap: 1.18rem;
  }

  .hero__intro {
    max-width: 194px;
    font-size: 9.4px;
  }

  .hero__index {
    line-height: 1.7;
  }

  .section-rule {
    grid-template-columns: minmax(76px, 13%) 1fr;
    gap: 1.18rem;
    padding-top: clamp(31px, 4.7vw, 65px);
    padding-bottom: clamp(31px, 4.7vw, 65px);
  }

  .signal__content,
  .manifesto__text {
    max-width: 459px;
  }

  .signal__lead {
    max-width: 423px;
    font-size: clamp(19px, 2.94vw, 42px);
  }

  .signal__body {
    max-width: 312px;
    font-size: clamp(10px, 1.18vw, 14px);
  }

  .signal__stamp {
    margin-top: 38px;
  }

  .archive__grid {
    gap: 8px;
  }

  .archive-card {
    min-height: 200px;
    padding: clamp(12px, 1.76vw, 20px);
  }

  .archive-card--acid {
    min-height: 141px;
  }

  .archive-card--noise {
    min-height: 260px;
  }

  .archive-card--grad {
    min-height: 300px;
  }

  .card-top {
    font-size: 6px;
  }

  .archive-card h2 {
    font-size: clamp(24px, 3.53vw, 51px);
  }

  .archive-card p {
    bottom: 18px;
    right: clamp(12px, 1.76vw, 20px);
    left: clamp(12px, 1.76vw, 20px);
    font-size: 8.8px;
  }

  .card-arrow {
    right: 19px;
    bottom: 15px;
    font-size: 21px;
  }

  .orbital-mark {
    width: 88px;
    height: 88px;
  }

  .orbital-mark::before {
    inset: 13px;
  }

  .orbital-mark::after {
    inset: -9px 15px;
  }

  .orbital-mark span {
    top: 7px;
    left: 12px;
    width: 6px;
    height: 6px;
  }

  .orbital-mark b {
    font-size: 26px;
  }

  .waveform {
    gap: 3px;
    height: 47px;
  }

  .waveform i {
    width: 3px;
  }

  .manifesto__text p {
    font-size: clamp(16px, 2.35vw, 33px);
  }

  .ticker {
    margin-top: 32px;
    padding-top: 7px;
    padding-bottom: 6px;
    font-size: 6.5px;
  }

  .contact {
    padding-bottom: clamp(44px, 7.06vw, 100px);
  }

  .contact h2 {
    font-size: clamp(32px, 5.88vw, 85px);
  }

  .contact__link {
    padding-bottom: 3px;
    font-size: 7.6px;
  }

  .contact__link span {
    font-size: 13px;
  }
}

@keyframes grid-drift-small {
  to {
    background-position: 25px 25px, -25px 25px, 0 0;
  }
}
