:root {
  --ink: #050706;
  --panel: #0b100e;
  --paper: #d8ddd3;
  --muted: #7f8b82;
  --orange: #ff681c;
  --phosphor: #6fe1bb;
  --yellow: #f1db48;
  --line: rgba(216, 221, 211, .18);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }
html { background: var(--ink); color: var(--paper); font-family: var(--mono); }
body { margin: 0; min-height: 100vh; background: var(--ink); }
a { color: inherit; }
button, input, select { font: inherit; }

.landing { overflow: hidden; }
#field { position: fixed; inset: 0; width: 100%; height: 100%; opacity: .52; }
.landing::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 44%, transparent 0 28%, rgba(0,0,0,.4) 74%, rgba(0,0,0,.9) 100%);
}
.landing-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(22px, 4vw, 52px);
}
.eyebrow { margin: 0 0 12px; color: var(--orange); font-size: 11px; letter-spacing: .15em; }
.identity h1 { margin: 0; max-width: 870px; font-size: clamp(28px, 6vw, 82px); line-height: .93; letter-spacing: -.065em; font-weight: 500; }
.primary-index { align-self: center; width: min(960px, 100%); border-top: 1px solid var(--line); }
.primary-index a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(170px, .55fr);
  gap: 18px;
  align-items: baseline;
  padding: clamp(20px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
}
.primary-index a::before { content: attr(data-index); color: var(--muted); font-size: 11px; }
.primary-index a span { font-size: clamp(20px, 3.2vw, 44px); letter-spacing: -.04em; }
.primary-index a small { color: var(--muted); font-size: 11px; line-height: 1.5; }
.primary-index a:hover, .primary-index a:focus-visible { color: var(--orange); padding-left: 10px; outline: none; }
.primary-index a:hover small, .primary-index a:focus-visible small { color: var(--paper); }
.landing-status { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

@media (max-width: 680px) {
  .primary-index a { grid-template-columns: 34px 1fr; }
  .primary-index a small { grid-column: 2; }
  .landing-status span:first-child { display: none; }
  .landing-status { justify-content: flex-end; }
}
