:root {
  --bg: #050505;
  --surface: #0c0d0d;
  --surface-2: #111313;
  --mint: #cff0ec;
  --mint-soft: #a8d9d3;
  --text: #f3f5f4;
  --muted: #95a29e;
  --line: rgba(207, 240, 236, 0.16);
  --line-strong: rgba(207, 240, 236, 0.36);
  --success: #73e59a;
  --font: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --page: 1180px;
  --pad: clamp(20px, 4vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 7%, rgba(168, 217, 211, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--mint);
  color: var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--mint);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image:
    repeating-radial-gradient(circle at 18% 27%, transparent 0 1px, rgba(255, 255, 255, 0.18) 1.5px 2px, transparent 2.5px 5px),
    repeating-radial-gradient(circle at 76% 71%, transparent 0 1px, rgba(255, 255, 255, 0.12) 1.5px 2px, transparent 2.5px 6px);
  background-size: 107px 113px, 131px 127px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  min-height: 78px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
}

.brand em {
  font-weight: 400;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(0.82) contrast(1.05);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle i,
.nav-toggle i::after {
  display: block;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.nav-toggle i {
  position: relative;
  box-shadow: 0 -4px 0 currentColor, 0 4px 0 currentColor;
}

.nav-toggle i::after {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--mint);
  color: var(--mint);
}

.nav-toggle[aria-expanded="true"] i {
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i::after {
  opacity: 1;
  transform: rotate(90deg);
}

.primary-nav a,
.header-cta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.primary-nav a:hover {
  color: var(--mint);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.header-cta::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(207, 240, 236, 0.7);
  content: "";
}

.header-cta:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) var(--pad);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--mint-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 26px;
  height: 1px;
  background: var(--mint);
}

.hero h1,
.section h2,
.programming h2,
.closing h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 26px;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 0.92;
}

.hero h1 em,
.section h2 em,
.programming h2 em,
.closing h2 em {
  color: var(--mint);
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.ca-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-community {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.hero-community a {
  border-bottom: 1px solid var(--line-strong);
  color: var(--mint-soft);
  text-decoration: none;
}

.hero-community a:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 9px rgba(207, 240, 236, 0.7);
}

.hero-proof li:last-child i {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--mint);
  color: var(--bg);
}

.button-primary:hover {
  background: #e8fffc;
}

.button-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

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

.founder-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 52px;
}

.founder-note img {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(0.78) contrast(1.06);
}

.founder-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.founder-note span {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.broadcast-console {
  position: relative;
  width: 100%;
  padding: clamp(20px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(207, 240, 236, 0.08), transparent 35%),
    var(--surface);
  box-shadow: 24px 28px 0 rgba(207, 240, 236, 0.035);
}

.broadcast-console::after {
  position: absolute;
  right: -84px;
  bottom: -84px;
  width: 220px;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(207, 240, 236, 0.025), 0 0 0 48px rgba(207, 240, 236, 0.018);
  content: "";
  pointer-events: none;
}

.console-topline,
.console-footer,
.ca-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.console-topline {
  margin-bottom: 18px;
  color: var(--muted);
}

.signal-light {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint);
}

.signal-light i,
.ca-badge i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.console-art {
  position: relative;
  min-height: 140px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.console-art > img {
  width: 100%;
  height: clamp(140px, 15vw, 188px);
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: contrast(1.08) saturate(0.78);
}

.console-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.22));
  content: "";
}

.mascot-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 4px;
  border: 1px solid rgba(207, 240, 236, 0.54);
  border-radius: 50%;
  background: #050505;
}

.mascot-badge img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.now-playing {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--line);
}

.status-disc {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--mint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.now-playing div:nth-child(2) {
  min-width: 0;
}

.now-playing span,
.release-meta span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.now-playing strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing .date-stamp {
  margin: 0;
  color: var(--mint);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 14px 0 10px;
  border: 1px solid var(--line);
}

.readiness-grid > div {
  padding: 10px 11px;
  border-right: 1px solid var(--line);
}

.readiness-grid > div:last-child {
  border-right: 0;
}

.readiness-grid dt,
.readiness-grid dd {
  margin: 0;
}

.readiness-grid dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.readiness-grid dd {
  margin-top: 2px;
  color: var(--mint-soft);
  font-size: 10px;
  font-weight: 700;
}

.readiness-grid > div:last-child dd {
  color: var(--muted);
}

.countdown {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.countdown > div {
  min-width: 0;
  padding: 15px 8px 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.countdown > div:last-child {
  border-right: 0;
}

.countdown strong {
  display: block;
  color: var(--mint);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-footer {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--muted);
}

.console-footer span:first-child {
  color: var(--mint);
}

.broadcast-console.launch-window .console-footer span:first-child,
.broadcast-console.launch-window .countdown strong {
  color: var(--success);
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  min-height: 64px;
  padding: 16px var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--mint-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.signal-strip i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
}

.dial-section {
  padding-top: clamp(100px, 12vw, 150px);
}

.dial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 34px clamp(48px, 8vw, 100px);
  align-items: end;
  margin-bottom: 58px;
}

.dial-intro .section-label {
  grid-column: 1 / -1;
}

.dial-intro h2 {
  margin-top: 0;
}

.dial-intro > p:last-child {
  max-width: 520px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
}

.dial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.station-tabs {
  border-top: 1px solid var(--line-strong);
}

.station-tab {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: center;
  width: 100%;
  min-height: 108px;
  padding: 21px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  transition: background 160ms ease, color 160ms ease, padding 160ms ease;
}

.station-tab:hover {
  padding-left: 25px;
  background: rgba(207, 240, 236, 0.055);
}

.station-tab > span {
  grid-row: 1 / span 2;
  color: var(--mint-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.station-tab strong {
  align-self: end;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.station-tab small {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.station-tab::after {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--mint);
  content: "→";
  font-size: 16px;
}

.station-tab.is-active,
.station-tab[aria-selected="true"] {
  background: var(--mint);
  color: #07100f;
}

.station-tab.is-active > span,
.station-tab.is-active small,
.station-tab.is-active::after,
.station-tab[aria-selected="true"] > span,
.station-tab[aria-selected="true"] small,
.station-tab[aria-selected="true"]::after {
  color: rgba(5, 5, 5, 0.62);
}

.tuner-panel {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(140deg, rgba(207, 240, 236, 0.08), transparent 42%),
    var(--surface);
}

.tuner-panel::before {
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 390px;
  height: 390px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(207, 240, 236, 0.02), 0 0 0 72px rgba(207, 240, 236, 0.015);
  content: "";
  pointer-events: none;
}

.tuner-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tuner-head > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-soft);
}

.tuner-head i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.tuner-display {
  position: relative;
  z-index: 1;
  margin-top: clamp(46px, 7vw, 76px);
}

.tuner-display > p:first-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tuner-display h3 {
  margin: 0;
  color: var(--mint);
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 74px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.tuner-display strong {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.tuner-display > p:last-child {
  max-width: 560px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tuner-spectrum {
  position: relative;
  z-index: 1;
  display: flex;
  height: 48px;
  align-items: end;
  gap: 4px;
  margin: auto 0 25px;
  padding-top: 24px;
  opacity: 0.7;
}

.tuner-spectrum i {
  display: block;
  width: 3px;
  height: 24%;
  background: var(--mint);
}

.tuner-spectrum i:nth-child(3n + 1) { height: 78%; }
.tuner-spectrum i:nth-child(4n + 2) { height: 45%; }
.tuner-spectrum i:nth-child(5n) { height: 100%; }
.tuner-spectrum i:nth-child(7n) { height: 62%; }

.tuner-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.button-disabled,
.button-disabled:disabled {
  border-color: var(--line);
  background: rgba(207, 240, 236, 0.055);
  color: var(--muted);
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
}

.tuner-disclaimer {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.section {
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(96px, 12vw, 158px) var(--pad);
}

.section h2,
.programming h2 {
  margin: 18px 0 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: start;
}

.manifesto-copy {
  padding-top: 24px;
}

.manifesto-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.manifesto-copy .lead {
  color: var(--text);
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.45;
}

.manifesto-copy .pull-quote {
  margin-top: 40px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-strong);
  color: var(--mint);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
}

.principles {
  padding-top: 0;
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.principle-list {
  border-top: 1px solid var(--line-strong);
}

.principle-list article {
  display: grid;
  grid-template-columns: 52px minmax(230px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list article > span {
  padding-top: 4px;
  color: var(--mint-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.principle-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.05;
}

.principle-list p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.protocol-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(207, 240, 236, 0.065), transparent 32%),
    #090a0a;
}

.protocol-inner {
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 142px) var(--pad);
}

.protocol-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 30px clamp(54px, 9vw, 120px);
  align-items: end;
}

.protocol-heading .section-label {
  grid-column: 1 / -1;
}

.protocol-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.protocol-heading h2 em {
  color: var(--mint);
  font-weight: 400;
}

.protocol-heading > p:last-child {
  max-width: 570px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.protocol-grid article {
  min-height: 280px;
  padding: 30px clamp(20px, 3vw, 34px) 34px;
  border-right: 1px solid var(--line);
}

.protocol-grid article:first-child {
  padding-left: 0;
}

.protocol-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.protocol-grid span {
  color: var(--mint-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.protocol-grid h3 {
  margin: 64px 0 14px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.8vw, 37px);
  font-weight: 400;
  line-height: 1.04;
}

.protocol-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.protocol-ledger {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px 44px;
  align-items: center;
  padding: 26px 30px;
  background: var(--mint);
  color: #07100f;
}

.protocol-ledger p {
  margin: 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.protocol-ledger p span {
  display: block;
  margin-bottom: 4px;
  color: #050505;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.protocol-ledger nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.protocol-ledger a {
  border-bottom: 1px solid rgba(5, 5, 5, 0.34);
  color: #050505;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.protocol-ledger a:hover {
  border-color: #050505;
}

.programming {
  background: var(--mint);
  color: #07100f;
}

.programming-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 9vw, 120px);
  align-items: center;
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 128px) var(--pad);
}

.cover-wrap {
  position: relative;
  max-width: 460px;
  box-shadow: 22px 24px 0 rgba(5, 5, 5, 0.14);
}

.cover-wrap > img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 5, 5, 0.4);
  object-fit: cover;
}

.cover-sticker {
  position: absolute;
  right: -28px;
  top: -28px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.programming .section-label {
  color: rgba(5, 5, 5, 0.64);
}

.programming h2 em {
  color: #274d48;
}

.release-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, 0.25);
}

.release-meta span {
  color: rgba(5, 5, 5, 0.58);
}

.release-meta strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(20px, 2.4vw, 29px);
}

.release-meta p,
.programming-note {
  color: rgba(5, 5, 5, 0.68);
}

.release-meta p {
  margin: 3px 0 0;
  font-size: 13px;
}

.programming-note {
  max-width: 610px;
  margin: 30px 0 0;
  font-size: 16px;
}

.token-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 9vw, 120px);
  align-items: start;
}

.token-heading > p:last-child {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
}

.ca-box {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.ca-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), transparent 80%);
  content: "";
}

.ca-head {
  margin-bottom: 18px;
  color: var(--muted);
}

.ca-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint-soft);
}

.ca-badge.ok {
  color: var(--success);
}

.ca-box.identity-error {
  border-color: rgba(255, 166, 166, 0.52);
}

.ca-box.identity-error .ca-badge {
  color: #ffa6a6;
}

.ca-value {
  display: block;
  width: 100%;
  padding: 18px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  background: #070808;
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(11px, 1.35vw, 14px);
  line-height: 1.55;
}

.ca-actions {
  margin-top: 18px;
}

.text-link {
  padding: 10px 2px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.ca-actions [aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
}

.token-warning {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.token-warning a {
  color: var(--mint);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 9vw, 120px);
  padding-top: 0;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--mint);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 46px 26px 0;
  color: var(--muted);
  font-size: 14px;
}

.closing {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 12%, rgba(5, 5, 5, 0.8) 58%, rgba(5, 5, 5, 0.46)),
    url("/assets/banner.jpg") center / cover no-repeat;
}

.closing::after {
  position: absolute;
  right: -6vw;
  bottom: -20vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(207, 240, 236, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 4vw rgba(207, 240, 236, 0.025), 0 0 0 8vw rgba(207, 240, 236, 0.018);
  content: "";
}

.closing-inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 150px) var(--pad);
}

.closing h2 {
  margin: 22px 0 44px;
  font-size: clamp(70px, 10vw, 136px);
  line-height: 0.82;
}

.closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.closing-links a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.closing-links a:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: 28px var(--pad) 40px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-brand {
  font-size: 20px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    right: var(--pad);
    left: var(--pad);
    z-index: 10;
    margin-left: 0;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    background: rgba(8, 9, 9, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 760px;
  }

  .broadcast-console {
    max-width: 680px;
  }

  .manifesto,
  .token-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .dial-intro,
  .protocol-heading {
    grid-template-columns: 1fr;
  }

  .dial-intro .section-label,
  .protocol-heading .section-label {
    grid-column: auto;
  }

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

  .station-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--line);
  }

  .station-tab {
    grid-template-columns: 30px minmax(0, 1fr);
    border-right: 1px solid var(--line);
  }

  .station-tab::after {
    display: none;
  }

  .protocol-ledger {
    grid-template-columns: 1fr;
  }

  .protocol-ledger nav {
    justify-content: flex-start;
  }

  .manifesto-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .programming-inner {
    gap: 58px;
  }

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

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 20px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    gap: 10px;
    min-height: 68px;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    padding: 9px 11px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    gap: 58px;
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(52px, 16vw, 76px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .founder-note {
    margin-top: 38px;
  }

  .broadcast-console {
    box-shadow: 12px 14px 0 rgba(207, 240, 236, 0.035);
  }

  .console-art > img {
    height: 136px;
  }

  .now-playing {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .date-stamp {
    display: none !important;
  }

  .signal-strip {
    justify-content: flex-start;
    gap: 14px;
    overflow: hidden;
    white-space: nowrap;
  }

  .signal-strip span:nth-of-type(n + 4),
  .signal-strip i:nth-of-type(n + 4) {
    display: none;
  }

  .dial-intro {
    margin-bottom: 38px;
  }

  .station-tabs {
    grid-template-columns: 1fr;
  }

  .station-tab {
    min-height: 88px;
  }

  .tuner-panel {
    min-height: 420px;
  }

  .protocol-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .protocol-grid article,
  .protocol-grid article:first-child,
  .protocol-grid article:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .protocol-grid article:last-child {
    border-bottom: 0;
  }

  .protocol-grid h3 {
    margin-top: 32px;
  }

  .protocol-ledger {
    padding: 24px 20px;
  }

  .section h2,
  .programming h2 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .section-intro {
    display: block;
    margin-bottom: 38px;
  }

  .principle-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 18px;
  }

  .principle-list article > span {
    grid-row: 1 / span 2;
  }

  .principle-list p {
    grid-column: 2;
  }

  .programming-inner {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .cover-wrap {
    width: calc(100% - 22px);
    max-width: 520px;
  }

  .cover-sticker {
    right: -22px;
    top: -22px;
    width: 78px;
    height: 78px;
    font-size: 9px;
  }

  .faq-heading br {
    display: none;
  }

  .closing {
    background-position: 62% center;
  }

  .closing h2 {
    font-size: clamp(66px, 21vw, 100px);
  }
}

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }

  .console-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .mascot-badge img {
    width: 44px;
    height: 44px;
  }

  .countdown strong {
    font-size: 25px;
  }

  .countdown span {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .console-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .tuner-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .tuner-display h3 {
    font-size: 46px;
  }

  .tuner-actions .button,
  .tuner-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .principle-list article {
    grid-template-columns: 1fr;
  }

  .principle-list article > span,
  .principle-list p {
    grid-column: auto;
    grid-row: auto;
  }

  .ca-actions .button {
    width: 100%;
  }

  .ca-actions {
    align-items: stretch;
  }

  .text-link {
    flex: 1;
    text-align: center;
  }

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

  .site-footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .header-cta {
    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;
  }
}
