:root {
  color-scheme: dark;
  --ink: #0a0a0a;
  --paper: #e7dfce;
  --muted: #a6a095;
  --line: rgba(231, 223, 206, 0.16);
  --lime: #c8e346;
  --violet: #a77de8;
  --peach: #e98670;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--ink); }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 60% 43%, rgba(112, 105, 84, 0.055), transparent 24rem),
    var(--ink);
  color: var(--paper);
  font-family: "DM Mono", ui-monospace, monospace;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.28;
  content: "";
  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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 3.3rem 4.8rem 3rem;
}

.header, .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.wordmark { color: var(--paper); text-decoration: none; }
.entry-number { color: var(--muted); }

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 30rem);
  align-items: center;
  gap: 4rem;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 3rem 0 6rem;
}

.copy { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.8rem, 8vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

.subline {
  margin: 2rem 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.2vw, 0.94rem);
}

.enter-link {
  display: inline-flex;
  gap: 2.2rem;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  color: var(--paper);
  font-size: 0.73rem;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.enter-link:hover, .enter-link:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.signal {
  position: relative;
  height: min(34vw, 31rem);
  min-height: 22rem;
  opacity: 0.85;
}

.signal span { position: absolute; display: block; }
.orb { border-radius: 50%; filter: blur(0.1px); }
.orb-one { top: 18%; left: 37%; width: 10rem; aspect-ratio: 1; border: 1px solid rgba(200, 227, 70, 0.25); background: radial-gradient(circle, rgba(200, 227, 70, 0.65), rgba(200, 227, 70, 0.1) 14%, transparent 53%); box-shadow: 0 0 4rem rgba(200, 227, 70, 0.12); }
.orb-two { top: 45%; left: 12%; width: 4.5rem; aspect-ratio: 1; background: radial-gradient(circle at 45% 40%, rgba(167, 125, 232, 0.75), rgba(167, 125, 232, 0.06) 55%, transparent 70%); }
.orb-three { top: 58%; right: 2%; width: 6.3rem; aspect-ratio: 1; background: radial-gradient(circle at 47% 45%, rgba(233, 134, 112, 0.7), rgba(233, 134, 112, 0.06) 50%, transparent 70%); }
.stem { width: 1px; background: linear-gradient(var(--lime), transparent); transform-origin: bottom; opacity: 0.53; }
.stem-one { bottom: 7%; left: 50%; height: 65%; }
.stem-two { bottom: 6%; left: 22%; height: 36%; background: linear-gradient(var(--violet), transparent); }
.stem-three { bottom: 3%; right: 12%; height: 29%; background: linear-gradient(var(--peach), transparent); }
.pixel { width: 5px; height: 5px; background: var(--lime); box-shadow: 9px 9px 0 -1px var(--peach), -11px 17px 0 -1px var(--violet); }
.pixel-one { top: 12%; left: 58%; }
.pixel-two { top: 43%; right: 8%; transform: rotate(45deg); background: var(--peach); }
.pixel-three { bottom: 16%; left: 60%; width: 3px; height: 3px; background: var(--violet); }
.pixel-four { bottom: 28%; left: 34%; width: 3px; height: 3px; }

.footer {
  border-top: 1px solid var(--line);
  padding-top: 1.7rem;
  color: var(--muted);
  font-size: 0.68rem;
}

@media (max-width: 700px) {
  .page { padding: 1.7rem 1.5rem; }
  .intro { grid-template-columns: 1fr; gap: 1rem; padding: 5rem 0 2rem; }
  .signal { height: 17rem; min-height: 0; width: min(100%, 22rem); margin-left: auto; }
  h1 { font-size: clamp(3.7rem, 19vw, 5.2rem); }
  .footer { font-size: 0.61rem; }
}
