:root {
  color-scheme: dark;
  --ink-950: #080a0c;
  --ink-900: #0d1013;
  --ink-850: #13171b;
  --ink-800: #191e23;
  --ink-700: #282f35;
  --mist-100: #f2eee5;
  --mist-200: #d7d1c5;
  --mist-400: #9b9b96;
  --blood-700: #7f1d22;
  --blood-600: #a3292f;
  --blood-500: #c43b40;
  --amber-500: #d49a3a;
  --green-500: #4fbd81;
  --blue-500: #5f99d6;
  --radius-sm: 0.45rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.35rem;
  --shadow-deep: 0 1.5rem 4rem rgb(0 0 0 / 35%);
  --content: 74rem;
}

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

[hidden] {
  display: none !important;
}

html {
  min-width: 20rem;
  scroll-padding-top: 5.8rem;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--mist-100);
  background:
    radial-gradient(circle at 78% 10%, rgb(127 29 34 / 18%), transparent 27rem),
    linear-gradient(135deg, rgb(255 255 255 / 2%) 25%, transparent 25%) 0 0 / 1.5rem 1.5rem,
    var(--ink-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.85rem;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  color: var(--ink-950);
  background: var(--mist-100);
  font-weight: 800;
  transition: transform 150ms ease;
}

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

:focus-visible {
  outline: 0.18rem solid var(--amber-500);
  outline-offset: 0.2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.shell {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  background: rgb(8 10 12 / 88%);
  backdrop-filter: blur(1rem);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.8rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  transform: rotate(3deg);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 0.25rem;
  color: var(--mist-100);
  background: linear-gradient(145deg, var(--blood-500), var(--blood-700));
  box-shadow: 0.25rem 0.25rem 0 var(--ink-700);
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--mist-400);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding-inline: 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--mist-200);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 720;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgb(255 255 255 / 7%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--amber-500);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 0.16rem;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 42rem;
  align-items: center;
  padding-block: 6.5rem;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: 3rem;
  width: min(42vw, 31rem);
  aspect-ratio: 1;
  content: "";
  transform: rotate(-8deg);
  border: 1px solid rgb(255 255 255 / 8%);
  background:
    linear-gradient(90deg, transparent 47%, rgb(255 255 255 / 8%) 48% 52%, transparent 53%),
    linear-gradient(transparent 47%, rgb(255 255 255 / 8%) 48% 52%, transparent 53%);
  box-shadow: inset 0 0 5rem rgb(127 29 34 / 20%);
}

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

.hero--marketing {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: clamp(2rem, 6vw, 6rem);
}

.hero--marketing::after {
  display: none;
}

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

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

h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  letter-spacing: -0.068em;
  text-transform: uppercase;
}

.hero--marketing h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 7.5vw, 6.8rem);
}

.lede {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--mist-200);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--blood-600);
  box-shadow: 0.22rem 0.22rem 0 var(--ink-700);
  text-decoration: none;
  font-weight: 820;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translate(-0.08rem, -0.08rem);
  background: var(--blood-500);
}

.button.secondary {
  color: var(--mist-100);
  background: var(--ink-800);
}

.button[disabled] {
  color: var(--mist-400);
  background: var(--ink-700);
  box-shadow: none;
  cursor: not-allowed;
}

.button[disabled]:hover {
  transform: none;
}

.phase-note {
  display: flex;
  max-width: 46rem;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 2.4rem;
  padding: 1rem 1.1rem;
  border-left: 0.24rem solid var(--amber-500);
  color: var(--mist-200);
  background: rgb(255 255 255 / 4%);
  font-size: 0.93rem;
}

.phase-note strong {
  color: var(--mist-100);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin: 2.6rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 0.15rem;
  min-width: 8rem;
}

.hero-facts strong {
  color: var(--mist-400);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts span {
  color: var(--mist-100);
  font-size: 0.92rem;
  font-weight: 760;
}

.hero-radar {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  transform: rotate(-2deg);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-md);
  background:
    repeating-radial-gradient(circle at center, transparent 0 3.8rem, rgb(255 255 255 / 8%) 3.85rem 3.95rem),
    linear-gradient(90deg, transparent 49.8%, rgb(255 255 255 / 9%) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgb(255 255 255 / 9%) 50%, transparent 50.2%),
    linear-gradient(145deg, rgb(127 29 34 / 22%), rgb(255 255 255 / 2%));
  box-shadow: inset 0 0 6rem rgb(0 0 0 / 58%), var(--shadow-deep);
}

.hero-radar::before {
  position: absolute;
  inset: -30%;
  content: "";
  background: conic-gradient(from 205deg at 50% 50%, transparent 0 30deg, rgb(196 59 64 / 32%) 45deg, transparent 65deg);
  animation: radar-sweep 7s linear infinite;
}

.hero-radar::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgb(255 255 255 / 2%) 5px);
  pointer-events: none;
}

.radar-crosshair {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 0.85rem;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid var(--amber-500);
}

.radar-contact {
  position: absolute;
  z-index: 1;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--blood-500);
  box-shadow: 0 0 0 0.35rem rgb(196 59 64 / 16%), 0 0 1rem var(--blood-500);
}

.radar-contact--one {
  top: 26%;
  left: 68%;
}

.radar-contact--two {
  top: 66%;
  left: 27%;
}

.radar-contact--three {
  top: 73%;
  left: 63%;
}

.radar-label {
  position: absolute;
  z-index: 2;
  left: 1rem;
  color: var(--mist-400);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.15em;
}

.radar-label--top {
  top: 0.9rem;
}

.radar-label--bottom {
  bottom: 0.9rem;
  color: var(--blood-500);
}

.section {
  padding-block: 5.5rem;
  border-top: 1px solid rgb(255 255 255 / 7%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 30rem);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.section-heading p {
  margin-bottom: 0.25rem;
  color: var(--mist-400);
}

.feature-grid,
.lobby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.lobby-card,
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 2%));
  box-shadow: var(--shadow-deep);
}

.feature-card {
  min-height: 15rem;
  padding: 1.4rem;
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.5rem;
  height: 0.2rem;
  content: "";
  background: var(--blood-500);
}

.feature-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--mist-400);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--mist-400);
}

.section--gameplay {
  background: linear-gradient(180deg, rgb(255 255 255 / 2%), transparent);
}

.feature-grid--gameplay .feature-card:nth-child(2)::before {
  background: var(--amber-500);
}

.feature-grid--gameplay .feature-card:nth-child(3)::before {
  background: var(--green-500);
}

.section--phase {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
}

.section--phase::after {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 28rem;
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 6%);
  content: "";
  transform: rotate(18deg);
}

.phase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 32rem);
  gap: clamp(2.5rem, 8vw, 7rem);
}

.phase-layout h2,
.download-copy h2 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.phase-copy,
.download-copy > p {
  max-width: 42rem;
  color: var(--mist-400);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  color: var(--mist-100);
  font-weight: 820;
  text-underline-offset: 0.3rem;
}

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

.phase-specs,
.release-meta {
  margin: 0;
}

.phase-specs {
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.phase-specs div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.phase-specs dt,
.release-meta dt,
.release-kicker {
  color: var(--mist-400);
  font-size: 0.69rem;
  font-weight: 790;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase-specs dd {
  margin: 0;
  color: var(--mist-100);
  font-weight: 740;
}

.section--download {
  background:
    radial-gradient(circle at 18% 100%, rgb(127 29 34 / 15%), transparent 25rem),
    var(--ink-950);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 32rem);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.download-message {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--mist-400);
  font-size: 0.84rem;
}

.release-panel {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgb(255 255 255 / 6%), rgb(255 255 255 / 2%));
  box-shadow: var(--shadow-deep);
}

.release-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
}

.release-kicker {
  margin-bottom: 0.2rem;
}

.release-panel h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.release-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.65rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--amber-500);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.release-status::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  content: "";
  background: currentColor;
}

.release-status[data-status="available"] {
  color: var(--green-500);
}

.release-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 1.4rem;
}

.release-meta div {
  min-width: 0;
  padding-block: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.release-meta div:nth-child(odd):not(.release-meta__checksum) {
  padding-right: 0.8rem;
}

.release-meta div:nth-child(even) {
  padding-left: 0.8rem;
  border-left: 1px solid rgb(255 255 255 / 8%);
}

.release-meta .release-meta__checksum {
  grid-column: 1 / -1;
}

.release-meta dd {
  overflow-wrap: anywhere;
  margin: 0.3rem 0 0;
  color: var(--mist-100);
  font-size: 0.9rem;
  font-weight: 720;
}

.release-meta__checksum dd {
  color: var(--mist-400);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

.requirements {
  margin: 0;
  padding: 1rem 1.4rem 1.3rem;
  color: var(--mist-400);
  font-size: 0.78rem;
}

.requirements strong {
  color: var(--mist-200);
}

.page-hero {
  padding-block: 5rem 3rem;
}

.page-hero h1 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.page-hero .lede {
  margin-bottom: 0;
}

.listener-page {
  background:
    radial-gradient(circle at 82% 9%, rgb(127 29 34 / 22%), transparent 28rem),
    linear-gradient(120deg, rgb(255 255 255 / 2%) 1px, transparent 1px) 0 0 / 3rem 3rem,
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px) 0 0 / 3rem 3rem,
    var(--ink-950);
}

.listener-page .site-header {
  border-bottom-color: rgb(196 59 64 / 24%);
  background: rgb(6 8 10 / 92%);
}

.listener-page .brand-mark {
  background:
    url("./media/hellgrad-skull.png") center / 86% no-repeat,
    linear-gradient(145deg, var(--blood-500), var(--blood-700));
  color: transparent;
}

.listener-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 34rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(4rem, 8vw, 7rem);
  isolation: isolate;
}

.listener-hero::before {
  position: absolute;
  z-index: -1;
  right: 0;
  width: min(50vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid rgb(196 59 64 / 8%);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5rem rgb(196 59 64 / 2%), 0 0 0 10rem rgb(196 59 64 / 1%);
}

.listener-hero__copy {
  position: relative;
  z-index: 1;
}

.listener-hero h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.listener-hero__caveat {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--amber-500);
  color: var(--mist-400);
  background: rgb(212 154 58 / 6%);
  font-size: 0.82rem;
}

.listener-hero__caveat strong {
  color: var(--amber-500);
}

.listener-hero__screen {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 0.25rem;
  background: #050505;
  box-shadow: 0 2.5rem 7rem rgb(0 0 0 / 58%);
}

.listener-hero__screen::before,
.listener-hero__screen::after {
  position: absolute;
  z-index: 2;
  width: 1.4rem;
  height: 1.4rem;
  content: "";
  pointer-events: none;
}

.listener-hero__screen::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--blood-500);
  border-left: 2px solid var(--blood-500);
}

.listener-hero__screen::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--amber-500);
  border-bottom: 2px solid var(--amber-500);
}

.listener-hero__screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.listener-hero__screen figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border-top: 1px solid rgb(255 255 255 / 9%);
  color: var(--mist-400);
  background: rgb(8 10 12 / 98%);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.listener-hero__screen figcaption strong {
  color: var(--amber-500);
}

.listener-page .notice-card {
  position: relative;
  overflow: hidden;
  border-color: rgb(255 255 255 / 11%);
  border-left-color: var(--blood-500);
  background:
    linear-gradient(120deg, rgb(185 32 37 / 15%), transparent 48%),
    rgb(12 15 18 / 96%);
  box-shadow: var(--shadow-deep);
}

.listener-page .live-toolbar {
  border-color: rgb(79 189 129 / 17%);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

.listener-page .summary-item {
  border-color: rgb(255 255 255 / 10%);
  background: linear-gradient(145deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 2%));
}

.live-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: var(--radius-sm);
  background: var(--ink-850);
}

.live-state,
.refresh-state {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--mist-200);
  font-size: 0.88rem;
  font-weight: 700;
}

.live-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0.32rem rgb(79 189 129 / 13%);
  animation: breathe 2s ease-in-out infinite;
}

.summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.notice-card {
  margin: 0 0 2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgb(255 255 255 / 8%);
  border-left: 3px solid var(--blood-500);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgb(185 32 37 / 12%), rgb(12 15 18 / 92%));
}

.notice-card h2 {
  margin-top: 0.35rem;
}

.notice-card details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.notice-card summary {
  cursor: pointer;
  color: var(--mist-100);
  font-weight: 700;
}

.notice-card li + li {
  margin-top: 0.45rem;
}

.summary-item {
  padding: 0.85rem 1rem;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: var(--radius-sm);
  color: var(--mist-400);
  background: rgb(255 255 255 / 3%);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.summary-item strong {
  display: block;
  color: var(--mist-100);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.lobby-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lobby-card {
  padding: 1.25rem;
  box-shadow: none;
}

.lobby-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.lobby-card h2 {
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
}

.lobby-mode {
  margin: 0;
  color: var(--mist-400);
  font-size: 0.88rem;
}

.status-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.62rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-badge::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  content: "";
  background: currentColor;
}

.status-badge[data-status="waiting"] {
  color: var(--green-500);
}

.status-badge[data-status="starting"] {
  color: var(--amber-500);
}

.status-badge[data-status="in_progress"] {
  color: var(--blue-500);
}

.lobby-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: 0.7rem;
  margin: 0;
}

.lobby-meta div {
  min-width: 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.lobby-meta dt {
  color: var(--mist-400);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lobby-meta dd {
  overflow: hidden;
  margin: 0.15rem 0 0;
  color: var(--mist-100);
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty-state {
  grid-column: 1 / -1;
  padding: clamp(2rem, 6vw, 4.5rem) 1.5rem;
  border: 1px dashed rgb(255 255 255 / 16%);
  border-radius: var(--radius-md);
  text-align: center;
  background: rgb(255 255 255 / 2%);
}

.empty-state h2 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}

.empty-state p {
  max-width: 35rem;
  margin: 0 auto;
  color: var(--mist-400);
}

.empty-state .button {
  margin-top: 1.1rem;
}

.login-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
  padding-bottom: 6rem;
}

.login-context {
  padding-top: 2rem;
}

.login-context h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.panel {
  padding: clamp(1.3rem, 4vw, 2rem);
}

.panel h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.muted {
  color: var(--mist-400);
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
}

.field label {
  color: var(--mist-200);
  font-size: 0.85rem;
  font-weight: 760;
}

.field input {
  width: 100%;
  min-height: 3rem;
  padding-inline: 0.85rem;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-sm);
  color: var(--mist-100);
  background: var(--ink-950);
}

.field input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.panel .button {
  width: 100%;
  margin-top: 1.2rem;
}

.security-note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: var(--mist-400);
  font-size: 0.79rem;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid rgb(255 255 255 / 7%);
  color: var(--mist-400);
  font-size: 0.84rem;
}

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

.footer-inner p {
  margin: 0;
}

@keyframes breathe {
  50% {
    opacity: 0.5;
    transform: scale(0.82);
  }
}

@keyframes radar-sweep {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 52rem) {
  .section-heading,
  .login-wrap,
  .hero--marketing,
  .phase-layout,
  .download-layout {
    grid-template-columns: 1fr;
  }

  .hero--marketing {
    padding-bottom: 4rem;
  }

  .hero-radar {
    width: min(100%, 28rem);
  }

  .listener-hero {
    grid-template-columns: 1fr;
    padding-block: 3.5rem;
  }

  .listener-hero__screen {
    width: min(100%, 38rem);
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 1.5rem;
  }

  .login-context {
    padding-top: 0;
  }
}

@media (max-width: 42rem) {
  html {
    scroll-padding-top: 8.5rem;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.9rem;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero {
    min-height: 35rem;
    padding-block: 4.5rem;
  }

  .hero::after {
    right: -12rem;
    opacity: 0.55;
    width: 26rem;
  }

  .hero--marketing h1 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .listener-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .listener-hero__screen figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

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

  .summary-row,
  .lobby-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 30rem) {
  html {
    scroll-padding-top: 11rem;
  }

  .shell {
    width: min(calc(100% - 1.2rem), var(--content));
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
    padding-inline: 0.45rem;
    font-size: 0.82rem;
  }

  .brand-copy {
    font-size: 0.8rem;
  }

  .lobby-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .lobby-meta {
    grid-template-columns: 1fr;
  }

  .phase-specs div,
  .release-meta {
    grid-template-columns: 1fr;
  }

  .release-meta .release-meta__checksum {
    grid-column: auto;
  }

  .release-meta div:nth-child(odd):not(.release-meta__checksum),
  .release-meta div:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
