: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;
  /* System stacks first for non-blocking webfont swap; named faces resolve when ready. */
  --font: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --page: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 3px;
  --radius-ctl: 999px;
  --dur: 180ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Time Gods token aliases (SIGNAL seal) */
  --tg-void: var(--bg);
  --tg-panel: var(--surface);
  --tg-panel-2: var(--surface-2);
  --tg-ink: var(--text);
  --tg-muted: var(--muted);
  --tg-seal: var(--mint);
  --tg-seal-soft: var(--mint-soft);
  --tg-line: var(--line);
  --tg-line-strong: var(--line-strong);
  --tg-ok: var(--success);
  --tg-max: var(--page);
  --tg-pad: var(--pad);
  --tg-radius: var(--radius);
  --tg-radius-ctl: var(--radius-ctl);
  --tg-mono: var(--mono);
  --tg-sans: var(--font);
  --tg-serif: var(--serif);
  --tg-dur: var(--dur);
  --tg-ease: var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(96px + env(safe-area-inset-top, 0px));
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

::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:not(:focus-visible) {
  outline: none;
}

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

/* Sticky header clearance for in-page destinations (Music, Feed, FAQ, …) */
#main,
#top,
section[id],
article[id] {
  scroll-margin-top: calc(96px + env(safe-area-inset-top, 0px));
}

.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: max(12px, env(safe-area-inset-top, 0px));
  left: max(12px, env(safe-area-inset-left, 0px));
  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;
  contain: strict;
  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;
}

@media (max-width: 760px) {
  .grain {
    opacity: 0.08;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-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
    max(var(--pad), env(safe-area-inset-right, 0px))
    0
    max(var(--pad), env(safe-area-inset-left, 0px));
}

.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: var(--radius);
  background: #101010;
  object-fit: contain;
}

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

.primary-nav a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
}

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

/* Compact secondary destinations — Apple-style primary focus */
.nav-more {
  position: relative;
}

.nav-more > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  list-style: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
  user-select: none;
}

.nav-more > summary::-webkit-details-marker {
  display: none;
}

.nav-more > summary::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
  opacity: 0.85;
}

.nav-more[open] > summary,
.nav-more > summary:hover,
.nav-more > summary:focus-visible {
  color: var(--mint);
}

.nav-more[open] > summary::after {
  margin-top: 2px;
  transform: rotate(225deg);
}

.nav-more-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 168px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(8, 9, 9, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-more-panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
}

.nav-more-panel a:hover,
.nav-more-panel a:focus-visible {
  background: rgba(207, 240, 236, 0.06);
  color: var(--mint);
  outline: none;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(115, 229, 154, 0.16);
}

.tg-alert-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: center;
  padding: 10px max(var(--pad), env(safe-area-inset-right, 0px)) 10px max(var(--pad), env(safe-area-inset-left, 0px));
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--muted);
}

.tg-alert-rail strong {
  color: var(--mint);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 12px;
  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-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  margin-left: 8px;
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-ctl);
  color: var(--text);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.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);
}

.release-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 44px;
  padding:
    11px
    max(var(--pad), env(safe-area-inset-right, 0px), calc((100vw - var(--page)) / 2))
    11px
    max(var(--pad), env(safe-area-inset-left, 0px), calc((100vw - var(--page)) / 2));
  background: var(--mint);
  color: #050505;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.release-alert > span:first-child {
  padding: 4px 7px;
  background: #050505;
  color: var(--mint);
}

.release-alert strong {
  overflow: hidden;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-alert > span:last-child {
  border-bottom: 1px solid rgba(5, 5, 5, 0.4);
}

.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: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero-brand-lockup > img {
  width: 68px;
  height: 68px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #101010;
}

.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;
  text-wrap: balance;
}

.hero h1 {
  max-width: 13.5em;
  margin: 22px 0 24px;
  font-size: clamp(54px, 6.6vw, 92px);
  line-height: 0.94;
}

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

.hero-lede {
  max-width: 36em;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.62;
  text-wrap: pretty;
}

.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-safety {
  max-width: 590px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.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: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  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[data-state="staged"] i {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--muted);
}

.hero-proof li[data-state="beta"] i {
  background: #d8c892;
  box-shadow: 0 0 9px rgba(216, 200, 146, 0.55);
}

.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:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.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;
}

.mascot-badge span {
  position: absolute;
  right: calc(100% + 8px);
  bottom: 50%;
  padding: 5px 7px;
  transform: translateY(50%);
  border: 1px solid rgba(207, 240, 236, 0.42);
  background: rgba(5, 5, 5, 0.92);
  color: var(--mint-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.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(44px, 5.6vw, 70px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}

.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(84px, 10.5vw, 140px) var(--pad);
}

.section h2,
.programming h2 {
  max-width: 14em;
  margin: 16px 0 0;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1;
}

.section > .section-lede,
.section > p.lead,
.manifesto-copy p,
.manifesto-copy .lead {
  text-wrap: pretty;
}

.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 {
  max-width: 14em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.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;
}

.program-status {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.25fr) auto;
  gap: 24px 36px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  background: #050606;
}

.program-status span {
  display: block;
  margin-bottom: 6px;
  color: var(--mint-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-status strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 400;
  line-height: 1.08;
}

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

.program-status > a {
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.program-status > a:hover {
  border-color: var(--mint);
  background: rgba(207, 240, 236, 0.06);
}

.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;
}

.release-platform {
  padding: clamp(82px, 10vw, 128px) var(--pad);
  background:
    linear-gradient(180deg, var(--mint) 0, var(--mint) 39%, #070808 39%, #070808 100%);
  color: #07100f;
}

.release-intro,
.beta-app {
  width: min(100%, var(--page));
  margin: 0 auto;
}

.release-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.release-poster {
  position: relative;
  box-shadow: 22px 24px 0 rgba(5, 5, 5, 0.15);
}

.release-poster > a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.42);
  background: #050505;
}

.release-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: filter 220ms ease, transform 320ms ease;
}

.release-poster > a:hover img {
  filter: brightness(0.72);
  transform: scale(1.012);
}

.release-play {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background: var(--mint);
  color: #050505;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-play i {
  font-size: 9px;
  font-style: normal;
}

.explicit-badge {
  display: inline-grid;
  padding: 7px 9px 6px;
  border: 2px solid #f3f5f4;
  background: #050505;
  color: #f3f5f4;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.release-poster > .explicit-badge {
  position: absolute;
  right: -18px;
  top: -18px;
  z-index: 2;
}

.explicit-badge strong {
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.01em;
}

.explicit-badge span {
  padding-top: 4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.release-copy .section-label {
  color: rgba(5, 5, 5, 0.6);
}

.release-copy h2 {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.release-copy h2 em {
  color: #274d48;
  font-weight: 400;
}

.release-lede {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(5, 5, 5, 0.7);
  font-size: 16px;
}

.release-credits {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 3px solid #050505;
  background: rgba(5, 5, 5, 0.055);
}

.release-credits strong {
  margin-bottom: 3px;
  font-size: 10px;
  letter-spacing: 0.025em;
}

.release-credits span {
  color: rgba(5, 5, 5, 0.65);
  font-size: 10px;
}

.release-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 32px 0 0;
  border-top: 1px solid rgba(5, 5, 5, 0.24);
  border-left: 1px solid rgba(5, 5, 5, 0.24);
}

.release-facts div {
  padding: 15px 16px;
  border-right: 1px solid rgba(5, 5, 5, 0.24);
  border-bottom: 1px solid rgba(5, 5, 5, 0.24);
}

.release-facts dt {
  color: rgba(5, 5, 5, 0.54);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-facts dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.release-intro .button-primary,
.button-dark {
  background: #050505;
  color: var(--mint);
}

.release-intro .button-primary:hover,
.button-dark:hover {
  background: #1a211f;
}

.button-dark {
  border-color: #050505;
}

.release-manifest-link {
  padding: 9px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.32);
  color: #050505;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.beta-app {
  margin-top: clamp(92px, 12vw, 150px);
  overflow: hidden;
  border: 1px solid rgba(207, 240, 236, 0.31);
  background: #090a0a;
  color: var(--text);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.4);
}

.beta-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  background: #0d0f0f;
}

.beta-topbar > div span,
.beta-topbar > div strong {
  display: block;
}

.beta-topbar > div span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.beta-topbar > div strong {
  margin-top: 3px;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.wallet-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 240px;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.wallet-chip i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #6d7774;
}

.beta-app[data-state="unlocked"] .wallet-chip {
  border-color: rgba(115, 229, 154, 0.42);
  color: var(--success);
}

.beta-app[data-state="unlocked"] .wallet-chip i {
  background: var(--success);
  box-shadow: 0 0 10px rgba(115, 229, 154, 0.7);
}

.beta-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 680px;
}

.beta-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  background: #070808;
}

.beta-rail-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 17px;
  text-decoration: none;
}

.beta-rail-brand img {
  width: 34px;
  height: 34px;
}

.beta-rail-nav {
  display: grid;
  gap: 5px;
  margin-top: 36px;
}

.beta-rail-nav span,
.beta-rail-nav a {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 9px;
  color: #7d8985;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.beta-rail-nav span.is-active,
.beta-rail-nav a:hover {
  background: rgba(207, 240, 236, 0.08);
  color: var(--text);
}

.beta-rail-nav i {
  color: var(--mint-soft);
  font-style: normal;
  text-align: center;
}

.beta-rail-nav b {
  color: var(--mint-soft);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.beta-security {
  margin-top: auto;
  padding: 15px 12px;
  border: 1px solid var(--line);
  background: rgba(207, 240, 236, 0.025);
}

.beta-security span,
.beta-security strong {
  display: block;
}

.beta-security span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beta-security strong {
  margin-top: 4px;
  color: var(--mint-soft);
  font-size: 11px;
}

.beta-security p {
  margin: 6px 0 0;
  color: #74807c;
  font-size: 8px;
  line-height: 1.5;
}

.beta-content {
  min-width: 0;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 85% 0, rgba(207, 240, 236, 0.08), transparent 22rem),
    #0a0b0b;
}

.beta-release-head {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.beta-release-head > img {
  width: 112px;
  height: 112px;
  border: 1px solid var(--line-strong);
  object-fit: cover;
}

.beta-release-head > div > span {
  color: var(--mint-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beta-release-head h3 {
  margin: 5px 0 3px;
  font-size: clamp(24px, 3.3vw, 42px);
  letter-spacing: -0.04em;
  line-height: 0.93;
}

.beta-release-head p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.beta-release-head .beta-credit {
  margin-top: 5px;
  color: #74807c;
  font-size: 8px;
}

.explicit-badge-small {
  transform: scale(0.82);
  transform-origin: right bottom;
}

.beta-gate {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 38px;
  align-items: center;
  min-height: 360px;
  padding: 44px 0 20px;
}

.gate-copy > span {
  color: var(--mint-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gate-copy h4 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.91;
}

.gate-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.gate-action {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: #0d0f0f;
}

.gate-action .button {
  width: 100%;
}

.wallet-picker {
  display: grid;
  gap: 6px;
}

.wallet-picker span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wallet-picker select {
  width: 100%;
  padding: 11px 34px 11px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #070808;
  color: var(--text);
  font: inherit;
  font-size: 11px;
}

.gate-action p {
  min-height: 34px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.beta-app[data-state="error"] .gate-action p {
  color: #ffb2b2;
}

.beta-app[data-state="working"] .gate-action p {
  color: var(--mint-soft);
}

.gate-action > a {
  color: var(--mint-soft);
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.gate-safety {
  grid-column: 1 / -1;
  display: flex;
  gap: 9px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #7f8c88;
  font-size: 9px;
}

.gate-safety i {
  color: var(--success);
  font-style: normal;
}

.beta-unlocked {
  padding-top: 28px;
}

.unlocked-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 13px 15px;
  border: 1px solid rgba(115, 229, 154, 0.28);
  background: rgba(115, 229, 154, 0.055);
}

.unlocked-banner span,
.unlocked-banner strong,
.unlocked-banner button {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.unlocked-banner span {
  color: var(--success);
}

.unlocked-banner strong {
  color: var(--text);
}

.unlocked-banner button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.holder-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #000;
}

.video-load-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  width: min(90%, 280px);
  padding: 12px 16px;
  border: 1px solid var(--mint-soft);
  background: rgba(5, 5, 5, 0.92);
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.video-load-button:hover,
.video-load-button:focus-visible {
  background: var(--mint);
  color: #050505;
}

.video-load-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.holder-video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.media-quality {
  position: absolute;
  top: 13px;
  right: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(5, 5, 5, 0.84);
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  pointer-events: none;
}

.media-quality strong {
  color: var(--mint);
}

.holder-track {
  display: grid;
  grid-template-columns: 28px 62px minmax(0, 1fr) auto auto;
  gap: 13px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #0c0e0e;
}

.holder-track img {
  width: 62px;
  height: 62px;
  object-fit: cover;
}

.track-number,
.track-quality,
.track-duration {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.track-title strong,
.track-title span {
  display: block;
}

.track-title strong {
  font-size: 11px;
}

.track-title span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.track-quality {
  text-align: center;
}

.track-quality strong {
  color: var(--mint);
  font-size: 14px;
}

#holder-audio {
  display: block;
  width: 100%;
  margin-top: 10px;
  accent-color: var(--mint);
}

.media-status {
  margin: 8px 0 0;
  color: #77837f;
  font-size: 8px;
  letter-spacing: 0.03em;
}

.caption-note {
  margin: 6px 0 0;
  color: #8d9a96;
  font-size: 9px;
}

.holder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.provenance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.provenance-grid article {
  padding: 16px;
  background: #090a0a;
}

.provenance-grid span,
.provenance-grid strong {
  display: block;
}

.provenance-grid span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.provenance-grid strong {
  margin-top: 5px;
  color: var(--mint-soft);
  font-size: 10px;
}

.provenance-grid p {
  margin: 4px 0 0;
  color: #6f7b77;
  font-size: 8px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.account-grid > article {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--line);
  background: #090a0a;
}

.account-grid > article > span {
  display: block;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-grid > article > strong {
  display: block;
  margin-top: 7px;
  color: var(--mint-soft);
  font-size: 11px;
}

.account-grid > article > p {
  margin: 6px 0 0;
  color: #77837f;
  font-size: 8px;
}

.wallet-profile > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.wallet-profile img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #101111;
}

.wallet-profile p {
  min-width: 0;
  margin: 0;
}

.wallet-profile strong,
.wallet-profile small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wallet-profile strong {
  color: var(--mint-soft);
  font-size: 11px;
}

.wallet-profile small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
}

.wallet-profile > a,
.account-links a {
  color: var(--mint-soft);
  font-size: 8px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.wallet-profile > a {
  display: inline-block;
  margin-top: 12px;
}

.account-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
}

.tip-status button {
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: #626c69;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beta-caveat {
  margin: 0;
  padding: 15px 22px;
  border-top: 1px solid var(--line);
  background: #070808;
  color: #727d79;
  font-size: 8px;
  line-height: 1.6;
}

.community-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 13% 15%, rgba(207, 240, 236, 0.08), transparent 25rem),
    #0a0b0b;
}

.community-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 128px) var(--pad);
}

.community-heading h2 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

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

.community-heading > p:last-of-type {
  max-width: 500px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feed-policy-card {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(207, 240, 236, 0.28);
  background:
    linear-gradient(145deg, rgba(207, 240, 236, 0.08), transparent 55%),
    #080a0a;
}

.feed-policy-card > div:first-child span,
.feed-policy-card > div:first-child strong,
.feed-policy-card footer b,
.feed-policy-card footer span {
  display: block;
}

.feed-policy-card > div:first-child span {
  color: var(--mint-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feed-policy-card > div:first-child strong {
  margin-top: 7px;
  font-size: 13px;
}

.feed-policy-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.feed-policy-modes span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: #aebbb7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-policy-card > p {
  margin: 15px 0 0;
  color: #7e8b87;
  font-size: 10px;
  line-height: 1.65;
}

.feed-policy-card footer {
  display: grid;
  gap: 4px;
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feed-policy-card footer b {
  color: #b9f8d6;
}

.feed-policy-card footer span {
  color: #697571;
}

.feed-policy-card footer a {
  width: fit-content;
  margin-top: 7px;
  color: var(--mint);
}

.content-policy {
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(207, 240, 236, 0.025);
}

.content-policy span,
.content-policy strong {
  display: block;
}

.content-policy span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-policy strong {
  margin-top: 5px;
  color: var(--mint-soft);
  font-size: 11px;
}

.content-policy p {
  margin: 7px 0 0;
  color: #77837f;
  font-size: 9px;
}

.community-post {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0d0f0f;
  box-shadow: 18px 20px 0 rgba(207, 240, 236, 0.03);
}

.community-feed-list {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.local-node-card {
  overflow: hidden;
  border: 1px solid rgba(207, 240, 236, 0.34);
  background:
    radial-gradient(circle at 100% 0, rgba(207, 240, 236, 0.12), transparent 36%),
    #090b0b;
  box-shadow: 18px 20px 0 rgba(207, 240, 236, 0.03);
}

.local-node-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.local-node-card > header span,
.local-node-card > header strong {
  display: block;
}

.local-node-card > header span,
.local-node-card > header b {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-node-card > header span {
  color: var(--mint-soft);
}

.local-node-card > header strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.local-node-card > header b {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: #86928e;
}

.local-node-card[data-state="ready"] > header b {
  border-color: rgba(130, 255, 184, 0.28);
  color: #b9f8d6;
}

.local-node-card > p {
  margin: 0;
  padding: 20px 22px 0;
  color: #7f8b87;
  font-size: 11px;
  line-height: 1.7;
}

.local-node-card form {
  padding: 20px 22px 22px;
}

.local-node-card form > label,
.local-node-card form div label {
  display: block;
  margin-bottom: 7px;
  color: #76827e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-node-card textarea,
.local-node-card select,
.local-node-card form button {
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--text);
  background: #050606;
  font: inherit;
}

.local-node-card textarea {
  display: block;
  width: 100%;
  min-height: 116px;
  padding: 14px;
  resize: vertical;
  font-size: 13px;
  line-height: 1.6;
}

.local-node-card textarea:focus,
.local-node-card select:focus,
.local-node-card form button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.local-node-card form > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(210px, 1.3fr);
  gap: 8px 12px;
  margin-top: 14px;
}

.local-node-card form div label {
  grid-column: 1 / -1;
  margin: 0;
}

.local-node-card select,
.local-node-card form button {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.local-node-card form button {
  border-color: var(--mint);
  color: #06100e;
  background: var(--mint);
  cursor: pointer;
}

.local-node-card form button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.local-draft-list {
  display: grid;
  gap: 1px;
  padding: 1px 22px 22px;
  background: var(--line);
}

.local-draft-list[hidden] {
  display: none;
}

.local-draft {
  padding: 14px;
  background: #070909;
}

.local-draft span {
  color: #6f7b77;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.local-draft p {
  margin: 8px 0 12px;
  color: #c0cbc8;
  font-size: 12px;
  white-space: pre-wrap;
}

.local-draft button {
  padding: 0;
  border: 0;
  color: #76827e;
  background: none;
  font-size: 8px;
  text-decoration: underline;
  cursor: pointer;
}

.local-draft .local-publish {
  margin-right: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(207, 240, 236, 0.42);
  color: var(--mint);
  text-decoration: none;
  text-transform: uppercase;
}

.local-draft .local-publish:disabled {
  cursor: wait;
  opacity: 0.5;
}

.local-node-card > footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px 12px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  color: #65706d;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.local-node-card > footer code {
  overflow: hidden;
  color: #9caaa6;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.local-node-card > footer b {
  grid-column: 1 / -1;
  color: #6e7a76;
}

.public-relay-card {
  overflow: hidden;
  border: 1px solid rgba(207, 240, 236, 0.2);
  background:
    linear-gradient(135deg, rgba(207, 240, 236, 0.035), transparent 46%),
    #070808;
}

.public-relay-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.public-relay-card > header span,
.public-relay-card > header strong {
  display: block;
}

.public-relay-card > header span,
.public-relay-card > header b,
.public-relay-card > footer {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-relay-card > header span {
  color: var(--mint-soft);
}

.public-relay-card > header strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.public-relay-card > header b {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(245, 184, 95, 0.28);
  color: #d5a565;
}

.public-relay-card[data-state="ready"] > header b {
  border-color: rgba(130, 255, 184, 0.28);
  color: #b9f8d6;
}

.public-relay-card > p {
  margin: 0;
  padding: 20px 22px;
  color: #7f8b87;
  font-size: 11px;
  line-height: 1.7;
}

.public-relay-feed {
  display: grid;
  gap: 1px;
  padding: 1px 22px 22px;
  background: var(--line);
}

.public-relay-feed[hidden] {
  display: none;
}

.public-relay-post {
  padding: 15px;
  background: #070909;
}

.public-relay-post span,
.public-relay-post code {
  color: #6f7b77;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.public-relay-post p {
  margin: 8px 0;
  color: #c7d2cf;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.public-relay-post code {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-relay-card > footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 15px 22px;
  border-top: 1px solid var(--line);
}

.public-relay-card > footer button {
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  color: var(--mint);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.public-relay-card > footer button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.public-relay-card > footer a {
  color: #9caaa6;
}

.public-relay-card > footer b {
  margin-left: auto;
  color: #65706d;
}

@media (max-width: 600px) {
  .local-node-card > header {
    display: grid;
  }

  .local-node-card > header b {
    width: fit-content;
  }

  .local-node-card form > div {
    grid-template-columns: 1fr;
  }

  .public-relay-card > header {
    display: grid;
  }

  .public-relay-card > header b,
  .public-relay-card > footer b {
    width: fit-content;
    margin-left: 0;
  }
}

.community-post-culture .post-media {
  max-width: 440px;
}

.community-post-culture .post-media img {
  aspect-ratio: 1;
}

.post-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  padding: 22px 12px;
  border-right: 1px solid var(--line);
  background: #080909;
}

.post-rail img {
  width: 34px;
  height: 34px;
}

.post-rail span {
  color: var(--mint-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.post-content {
  min-width: 0;
  padding: clamp(20px, 3vw, 32px);
}

.post-content > header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 12px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.05em;
}

.post-content > header > span {
  color: var(--mint-soft);
  font-weight: 800;
  text-transform: uppercase;
}

.post-content > header strong {
  color: var(--text);
  font-size: 9px;
}

.post-content > header i {
  color: var(--success);
  font-size: 7px;
  font-style: normal;
  text-transform: uppercase;
}

.post-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.post-labels span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  color: var(--mint-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-content h3 {
  margin: 18px 0 0;
  font-size: clamp(20px, 2.8vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.post-content > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.post-media {
  position: relative;
  display: block;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.post-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: filter 180ms ease;
}

.post-media:hover img {
  filter: brightness(0.7);
}

.post-media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: var(--mint);
  color: #050505;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-media i {
  font-style: normal;
}

.post-content > footer {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  align-items: center;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.post-content > footer a,
.post-content > footer span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.post-content > footer a:hover {
  color: var(--mint);
}

.post-content > footer span {
  margin-left: auto;
  color: #66716d;
}

.live-bridge-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(207, 240, 236, 0.055), transparent 38%),
    radial-gradient(circle at 82% 18%, rgba(207, 240, 236, 0.13), transparent 26rem),
    #050606;
}

.live-bridge-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(207, 240, 236, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207, 240, 236, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
  content: "";
}

.live-bridge-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(88px, 11vw, 148px) var(--pad);
}

.live-bridge-copy {
  position: sticky;
  top: 116px;
}

.live-bridge-copy h2 {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(58px, 6.8vw, 96px);
  line-height: 0.86;
}

.live-bridge-copy h2 em {
  color: var(--mint-soft);
}

.live-bridge-lede {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.live-signal-list {
  display: grid;
  gap: 11px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.live-signal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-signal-list i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(207, 240, 236, 0.5);
}

.live-signal-list .is-planned {
  color: var(--muted);
}

.live-signal-list .is-planned i {
  border: 1px solid var(--muted);
  background: transparent;
  box-shadow: none;
}

.live-bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.live-experience {
  min-width: 0;
}

.twitch-player-shell {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 72% 24%, rgba(207, 240, 236, 0.16), transparent 16rem),
    linear-gradient(145deg, #101313, #060707 66%);
  box-shadow: 22px 24px 0 rgba(207, 240, 236, 0.04);
  aspect-ratio: 16 / 9;
}

.twitch-player-shell::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 5px, rgba(207, 240, 236, 0.2) 6px);
  content: "";
}

.twitch-player-shell[data-state="loading"] {
  border-color: rgba(207, 240, 236, 0.5);
}

.twitch-player-shell iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.twitch-player-consent {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(28px, 5vw, 54px);
}

.twitch-player-consent[hidden] {
  display: none;
}

.twitch-kicker {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.twitch-player-consent > strong {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

.twitch-player-consent > p {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.twitch-load-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
  padding: 13px 19px;
  border: 1px solid var(--mint);
  background: var(--mint);
  color: #07100f;
  cursor: pointer;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.twitch-load-button:hover {
  background: transparent;
  color: var(--mint);
  transform: translateY(-2px);
}

.twitch-load-button:disabled {
  opacity: 0.64;
  cursor: wait;
  transform: none;
}

.twitch-player-consent > small {
  max-width: 590px;
  margin-top: 16px;
  color: #71807c;
  font-size: 10px;
  line-height: 1.5;
}

.twitch-player-status {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  color: #7e8d89;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.twitch-player-shell[data-state="loaded"] .twitch-player-status {
  display: none;
}

.twitch-noscript {
  position: absolute;
  z-index: 4;
  inset: auto 20px 20px;
  margin: 0;
  padding: 12px;
  background: #050505;
  color: var(--muted);
  font-size: 11px;
}

.twitch-noscript a {
  color: var(--mint);
}

.twitch-channel-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(10, 11, 11, 0.88);
}

.twitch-channel-strip img {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
}

.twitch-channel-strip div {
  display: grid;
  gap: 3px;
}

.twitch-channel-strip div > span,
.live-roadmap li > span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.twitch-channel-strip strong {
  font-size: 17px;
}

.twitch-channel-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.twitch-channel-strip > a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.twitch-channel-strip > a:hover {
  color: var(--text);
}

.live-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  list-style: none;
}

.live-roadmap li {
  position: relative;
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  background: rgba(7, 8, 8, 0.76);
}

.live-roadmap li:last-child {
  border-right: 0;
}

.live-roadmap li.is-current::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--mint);
  content: "";
}

.live-roadmap strong {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
}

.live-roadmap p {
  margin: 13px 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.live-roadmap b {
  margin-top: auto;
  color: var(--mint-soft);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-future-contract {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 8, 0.76);
}

.live-future-contract summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  color: var(--text);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.live-future-contract summary::-webkit-details-marker {
  display: none;
}

.live-future-contract summary span {
  color: var(--mint);
  font-size: 18px;
  transition: transform 160ms ease;
}

.live-future-contract[open] summary span {
  transform: rotate(45deg);
}

.live-future-contract p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.social-command {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(12rem, 1fr);
  gap: 0.85rem;
}

.social-tile {
  position: relative;
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  color: #f8fbfa;
  text-decoration: none;
  border: 1px solid rgba(207, 240, 236, 0.14);
  border-radius: 1.2rem;
  background: #0b0d0c;
  isolation: isolate;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.social-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 14%, rgba(2, 3, 3, 0.2) 42%, rgba(2, 3, 3, 0.96) 100%);
}

.social-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 70% 20%, rgba(207, 240, 236, 0.28), transparent 42%);
  transition: opacity 260ms ease;
}

.social-tile:hover,
.social-tile:focus-within,
a.social-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(207, 240, 236, 0.6);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.38);
}

.social-tile:hover::after,
.social-tile:focus-within::after { opacity: 1; }

.social-tile > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.75) contrast(1.08);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), opacity 260ms ease, filter 260ms ease;
}

.social-tile:hover > img,
.social-tile:focus-within > img {
  transform: scale(1.035);
  opacity: 0.72;
  filter: saturate(1) contrast(1.08);
}

.social-tile > span {
  margin-bottom: 0.55rem;
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.social-tile > strong {
  max-width: 90%;
  font-size: clamp(1.1rem, 2.3vw, 2rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.social-tile > small {
  max-width: 32rem;
  margin-top: 0.55rem;
  color: rgba(233, 241, 239, 0.72);
  font-size: 0.75rem;
  line-height: 1.45;
}

.social-tile > b {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: var(--mint);
  border: 1px solid rgba(207, 240, 236, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(12px);
}

.social-tile-founder { grid-column: 1 / span 7; grid-row: span 2; min-height: 27rem; }
.social-tile-youtube { grid-column: 8 / -1; grid-row: span 2; min-height: 27rem; }
.social-tile-instagram { grid-column: 1 / span 4; grid-row: span 2; min-height: 27rem; }
.social-tile-threads { grid-column: 5 / span 4; }
.social-tile-twitch { grid-column: 9 / -1; }
.social-tile-drooly { grid-column: 5 / span 4; }
.social-tile-native { grid-column: 9 / -1; }
.social-tile-founder > img { object-position: center 24%; }
.social-tile-instagram > strong,
.social-tile-threads > strong { font-size: clamp(1rem, 1.45vw, 1.4rem); }
.social-tile-youtube > img { object-position: center; }
.social-tile-threads > img { object-position: center; }
.social-tile-drooly > img { object-fit: contain; padding: 2.5rem; opacity: 0.42; }
.social-tile-native > img { object-fit: contain; padding: 2.8rem; opacity: 0.2; }
.social-tile-native > a { margin-top: 0.85rem; color: var(--mint); font-size: 0.72rem; font-weight: 700; text-decoration: none; }

@media (max-width: 860px) {
  .social-command { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(13rem, auto); }
  .social-tile-founder,
  .social-tile-youtube,
  .social-tile-instagram,
  .social-tile-threads,
  .social-tile-twitch,
  .social-tile-drooly,
  .social-tile-native { grid-column: auto; grid-row: auto; min-height: 15rem; }
  .social-tile-founder { grid-column: 1 / -1; min-height: 24rem; }
  .social-tile-youtube { grid-column: 1 / -1; min-height: 20rem; }
  .social-tile-native { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .social-command { grid-template-columns: 1fr; }
  .social-tile-founder,
  .social-tile-youtube,
  .social-tile-instagram,
  .social-tile-threads,
  .social-tile-twitch,
  .social-tile-drooly,
  .social-tile-native { grid-column: 1; min-height: 16rem; }
  .social-tile-founder { min-height: 23rem; }
  .social-tile-youtube { min-height: 19rem; }
}

@media (prefers-reduced-motion: reduce) {
  .social-tile,
  .social-tile > img { transition: none; }
}

/* Public network beta: music and social are the front door. */
.public-network .network-online {
  color: var(--mint);
  border-color: rgba(207, 240, 236, 0.35);
}

.public-network-content {
  min-width: 0;
}

.network-now-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  gap: 1px;
  background: rgba(207, 240, 236, 0.16);
  border-top: 1px solid rgba(207, 240, 236, 0.16);
}

.network-feature {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #050505;
}

.network-feature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 500ms ease, opacity 300ms ease;
}

.network-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.92));
}

.network-feature > span {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.network-feature > span i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #050505;
  background: var(--mint);
  border-radius: 50%;
  font-style: normal;
}

.network-feature:hover img,
.network-feature:focus-visible img {
  transform: scale(1.025);
  opacity: 0.92;
}

.network-quick-actions {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
}

.network-quick-actions a {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 28px;
  color: #f6f7f6;
  background: #0c0c0c;
  transition: color 180ms ease, background 180ms ease;
}

.network-quick-actions a:hover,
.network-quick-actions a:focus-visible {
  color: #050505;
  background: var(--mint);
}

.network-quick-actions span,
.network-quick-actions small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.network-quick-actions a:hover span,
.network-quick-actions a:hover small,
.network-quick-actions a:focus-visible span,
.network-quick-actions a:focus-visible small {
  color: rgba(5, 5, 5, 0.64);
}

.network-quick-actions strong {
  font-size: 1rem;
}

.failsafe-countdown {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(420px, 1.4fr);
  gap: 34px;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  color: #050505;
  background: var(--mint);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 80px rgba(207, 240, 236, 0.14);
}

.failsafe-countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: repeating-linear-gradient(90deg, transparent 0 31px, rgba(5, 5, 5, 0.12) 32px);
  pointer-events: none;
}

.failsafe-title,
.failsafe-units,
.failsafe-countdown > p {
  position: relative;
  z-index: 1;
}

.failsafe-title {
  display: grid;
  align-content: center;
  gap: 9px;
}

.failsafe-title span,
.failsafe-title small,
.failsafe-countdown > p {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.failsafe-title strong {
  max-width: 560px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 5.1rem);
  font-weight: 400;
  line-height: 0.86;
}

.failsafe-units {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  border: 1px solid rgba(5, 5, 5, 0.28);
}

.failsafe-units > div {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: clamp(20px, 4vw, 40px) 10px;
  border-right: 1px solid rgba(5, 5, 5, 0.2);
}

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

.failsafe-units strong {
  font-size: clamp(1.8rem, 4vw, 4.6rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.failsafe-units span {
  margin-top: 8px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.failsafe-countdown > p {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.failsafe-countdown > p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 0 5px rgba(5, 5, 5, 0.1);
}

@media (max-width: 900px) {
  .network-now-grid {
    grid-template-columns: 1fr;
  }

  .network-feature,
  .network-feature img {
    min-height: 320px;
  }

  .network-quick-actions {
    grid-template-rows: none;
  }

  .failsafe-countdown {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .network-feature,
  .network-feature img {
    min-height: 240px;
  }

  .network-feature > span {
    left: 18px;
    bottom: 18px;
  }

  .network-quick-actions a {
    padding: 22px 20px;
  }

  .failsafe-countdown {
    gap: 24px;
    padding: 28px 20px;
  }

  .failsafe-units {
    grid-template-columns: repeat(2, 1fr);
  }

  .failsafe-units > div:nth-child(2) {
    border-right: 0;
  }

  .failsafe-units > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(5, 5, 5, 0.2);
  }
}

.x-feed-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 77% 38%, rgba(207, 240, 236, 0.09), transparent 24rem),
    #070808;
}

.x-feed-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 9vw, 120px);
  align-items: start;
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 128px) var(--pad);
}

.x-feed-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.9;
}

.x-feed-heading h2 em {
  color: var(--mint-soft);
}

.x-feed-heading > p:last-child {
  max-width: 430px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.x-feed-card {
  position: relative;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line-strong);
  background: rgba(12, 13, 13, 0.94);
  box-shadow: 18px 20px 0 rgba(207, 240, 236, 0.035);
}

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

.x-feed-meta,
.x-feed-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.x-feed-meta {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.x-feed-meta a,
.x-feed-actions a {
  color: var(--mint);
  text-decoration: none;
}

.x-feed-meta a:hover,
.x-feed-actions a:hover {
  color: var(--text);
}

.x-post-shell {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 24px 0;
}

.x-post-shell .x-static-post {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--mint);
  background: #050606;
  color: var(--text);
  font-size: 13px;
}

.x-post-shell .x-static-post p {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1.15;
}

.x-post-shell .x-static-post a {
  color: var(--mint-soft);
}

.x-feed-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.x-feed-actions a {
  padding: 6px 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.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;
  user-select: all;
  -webkit-user-select: all;
}

.ca-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  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);
}

.text-link:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  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-heading h2 {
  text-wrap: balance;
  max-width: 12em;
  letter-spacing: -0.03em;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, border-color 160ms ease;
}

.faq-list details[open] {
  border-bottom-color: rgba(207, 240, 236, 0.28);
  background: linear-gradient(180deg, rgba(207, 240, 236, 0.03), transparent 72%);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  padding: 18px 4px 18px 0;
  margin: 0;
  border-radius: 2px;
  cursor: pointer;
  color: var(--text);
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  list-style: none;
  transition: color 160ms ease;
}

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

.faq-list summary:hover {
  color: var(--mint);
}

.faq-list summary:focus {
  outline: none;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
  color: var(--mint);
}

.faq-list summary span {
  flex: 0 0 auto;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.faq-list summary:hover span,
.faq-list details[open] summary span {
  border-color: rgba(207, 240, 236, 0.42);
  background: rgba(207, 240, 236, 0.06);
}

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

.faq-list details[open] summary {
  color: var(--mint-soft);
}

.faq-list details p {
  max-width: 42rem;
  margin: 0 48px 24px 0;
  padding: 0 0 4px;
  color: var(--muted);
  font-size: clamp(14px, 1.45vw, 15.5px);
  line-height: 1.65;
  text-wrap: pretty;
}

.faq-list details p a {
  color: var(--mint);
  text-decoration: underline;
  text-decoration-color: rgba(207, 240, 236, 0.35);
  text-underline-offset: 3px;
}

.faq-list details p a:hover {
  text-decoration-color: currentColor;
}

.faq-list details p a:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 2px;
}

.faq-list details p [translate="no"] {
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--mint-soft);
  font-family: var(--mono);
  font-size: 0.92em;
}

.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: 8px 28px;
}

.closing-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  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;
  border-radius: 2px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

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

.closing-links a:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
  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
    max(var(--pad), env(safe-area-inset-right, 0px))
    max(40px, calc(24px + env(safe-area-inset-bottom, 0px)))
    max(var(--pad), env(safe-area-inset-left, 0px));
  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 {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 20px;
  border-radius: var(--radius);
}

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

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

/* DROOLY AI / holder intelligence */
.drooly-ai-section {
  padding: clamp(86px, 10vw, 150px) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(207, 240, 236, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 78%, rgba(115, 229, 154, 0.05), transparent 30rem),
    #050606;
}

.drooly-ai-intro,
.drooly-app,
.ai-caveat {
  width: min(100%, var(--page));
  margin-right: auto;
  margin-left: auto;
}

.drooly-ai-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.5fr);
  gap: 28px 80px;
  align-items: end;
  margin-bottom: 46px;
}

.drooly-ai-intro .section-label {
  grid-column: 1 / -1;
  margin-bottom: -7px;
}

.drooly-ai-intro h2,
.pricing-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.drooly-ai-intro h2 em,
.pricing-heading h2 em {
  color: var(--mint-soft);
  font-weight: 400;
}

.drooly-ai-intro > p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
}

.drooly-ai-intro > p strong {
  color: var(--mint);
}

.ai-proof-row {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-proof-row li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--mint-soft);
  background: rgba(207, 240, 236, 0.035);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drooly-app {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 260px;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(207, 240, 236, 0.27);
  border-radius: 18px;
  background: #070808;
  box-shadow: 20px 24px 0 rgba(207, 240, 236, 0.035), 0 34px 80px rgba(0, 0, 0, 0.34);
}

.ai-sidebar,
.ai-context {
  min-width: 0;
  padding: 24px 18px;
  background: #070808;
}

.ai-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.ai-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 20px;
  text-decoration: none;
}

.ai-brand img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #101010;
}

.ai-brand em {
  font-weight: 400;
}

.ai-sidebar nav {
  display: grid;
  gap: 5px;
  margin-top: 42px;
}

.ai-sidebar nav a {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px 10px;
  border-radius: 8px;
  color: #84918d;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.ai-sidebar nav a i {
  color: var(--mint-soft);
  font-style: normal;
  text-align: center;
}

.ai-sidebar nav a:hover,
.ai-sidebar nav a.is-active {
  background: rgba(207, 240, 236, 0.085);
  color: var(--text);
}

.ai-domain-status {
  margin-top: auto;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(207, 240, 236, 0.025);
}

.ai-domain-status span,
.ai-domain-status strong {
  display: block;
}

.ai-domain-status span {
  color: #75817d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-domain-status strong {
  margin-top: 7px;
  color: var(--mint);
  font-size: 13px;
}

.ai-domain-status p {
  margin: 4px 0 0;
  color: #73807c;
  font-size: 8px;
}

.ai-domain-status a {
  display: inline-block;
  margin-top: 10px;
  color: var(--mint-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-conversation {
  min-width: 0;
  background: #0a0b0b;
}

.ai-conversation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 14, 14, 0.94);
}

.ai-conversation-head > div > strong,
.ai-conversation-head > div > span {
  display: block;
}

.ai-conversation-head > div > strong {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.ai-conversation-head > div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.ai-conversation-head > div > span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #d2a84c;
  box-shadow: 0 0 10px rgba(210, 168, 76, 0.45);
}

.drooly-app[data-ai-state="ready"] .ai-conversation-head > div > span i {
  background: var(--success);
  box-shadow: 0 0 10px rgba(115, 229, 154, 0.5);
}

.drooly-app[data-ai-state="working"] .ai-conversation-head > div > span i {
  animation: ai-pulse 1.1s ease-in-out infinite;
  background: var(--mint);
}

@keyframes ai-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.ai-model-chip {
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(207, 240, 236, 0.05);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ai-mode-control {
  display: grid;
  gap: 9px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(207, 240, 236, 0.025);
}

.ai-mode-control > label:first-child {
  display: grid;
  grid-template-columns: auto minmax(190px, 1fr);
  gap: 12px;
  align-items: center;
  color: #7d8b87;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-mode-control select {
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #080909;
  color: var(--mint);
  font: 700 9px/1 var(--font);
}

.ai-mode-control > p {
  margin: 0;
  color: #66736f;
  font-size: 8px;
  line-height: 1.5;
}

.ai-adult-ack {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 9px 10px;
  border: 1px solid rgba(255, 185, 94, 0.28);
  border-radius: 8px;
  background: rgba(255, 185, 94, 0.05);
  color: #d9c5a4;
  font-size: 8px;
  line-height: 1.45;
}

.ai-adult-ack[hidden] {
  display: none;
}

.ai-adult-ack input {
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--mint);
}

.ai-timeline {
  display: grid;
  align-content: start;
  min-height: 390px;
  max-height: 540px;
  overflow-y: auto;
  scrollbar-color: rgba(207, 240, 236, 0.24) transparent;
}

.ai-message {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  padding: 20px;
  border-bottom: 1px solid rgba(207, 240, 236, 0.08);
}

.ai-message-user {
  background: rgba(207, 240, 236, 0.025);
}

.ai-message > img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101010;
  object-fit: cover;
}

.ai-message > div {
  min-width: 0;
}

.ai-message header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-message header strong {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.ai-message header strong i {
  color: var(--mint-soft);
  font-style: normal;
}

.ai-message header span {
  color: #74807c;
  font-size: 11px;
}

.ai-message p {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
  color: #b7c2bf;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.ai-prompt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px 0;
  border-top: 1px solid var(--line);
}

.ai-prompt-row button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--mint-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.ai-prompt-row button:hover {
  border-color: var(--line-strong);
  background: rgba(207, 240, 236, 0.06);
}

.ai-prompt-row button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.ai-composer {
  margin: 12px 18px 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #070808;
}

.ai-composer:focus-within {
  border-color: var(--mint-soft);
  box-shadow: 0 0 0 3px rgba(207, 240, 236, 0.08);
}

.ai-composer textarea {
  display: block;
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 14px 16px 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: 15px/1.55 var(--font);
}

.ai-composer textarea:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: -3px;
}

.ai-composer textarea::placeholder {
  color: #68736f;
}

.ai-composer textarea:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.ai-composer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 10px 16px;
}

.ai-composer > div > span {
  color: #6f7b77;
  font-size: 11px;
  line-height: 1.35;
}

.ai-composer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--mint);
  color: #07100f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ai-composer button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.ai-composer button i {
  font-size: 14px;
  font-style: normal;
}

.ai-composer button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.ai-status {
  min-height: 18px;
  margin: 8px 20px 16px;
  color: #71807b;
  font-size: 12px;
  line-height: 1.4;
}

.ai-context {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid var(--line);
}

.ai-profile-card,
.ai-context-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(207, 240, 236, 0.025);
}

.ai-profile-card > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-profile-card img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
}

.ai-profile-card > div p {
  margin: 0;
}

.ai-profile-card > div strong,
.ai-profile-card > div span,
.ai-context-card > span,
.ai-context-card > strong {
  display: block;
}

.ai-context-card code,
.faq-list code {
  color: var(--mint-soft);
  font-family: inherit;
  font-size: 0.94em;
}

.ai-profile-card > div strong {
  color: var(--text);
  font-size: 10px;
}

.ai-profile-card > div span {
  color: var(--mint-soft);
  font-size: 8px;
}

.ai-profile-card > p,
.ai-context-card p {
  margin: 11px 0 0;
  color: #7f8c88;
  font-size: 9px;
  line-height: 1.55;
}

.ai-profile-card > a,
.ai-api-link {
  display: inline-flex;
  margin-top: 13px;
  color: var(--mint);
  font-size: 8px;
  font-weight: 700;
  text-decoration: none;
}

.ai-context-card > span {
  color: #74807c;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-context-card > strong {
  margin-top: 6px;
  color: var(--mint-soft);
  font-size: 10px;
}

.ai-api-link {
  margin-top: auto;
}

.ai-caveat {
  margin-top: 25px;
  color: #77837f;
  font-size: 9px;
  line-height: 1.65;
}

/* Subscription benchmark */
.pricing-section {
  padding: clamp(86px, 10vw, 150px) var(--pad);
  background: var(--mint);
  color: #07100f;
}

.pricing-heading,
.pricing-grid {
  width: min(100%, var(--page));
  margin-right: auto;
  margin-left: auto;
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 28px 80px;
  align-items: end;
  margin-bottom: 48px;
}

.pricing-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -7px;
  color: rgba(7, 16, 15, 0.55);
}

.pricing-heading h2 em {
  color: rgba(7, 16, 15, 0.52);
}

.pricing-heading > p:not(.section-label) {
  margin: 0;
  color: rgba(7, 16, 15, 0.67);
  font-size: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card,
.checkout-readiness {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(7, 16, 15, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.26);
}

.price-card header span,
.price-card header strong {
  display: block;
}

.price-card header span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card header strong {
  margin-top: 4px;
  color: rgba(7, 16, 15, 0.56);
  font-size: 11px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 33px 0 28px;
}

.price b {
  font-family: var(--serif);
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.78;
}

.price span {
  color: rgba(7, 16, 15, 0.55);
  font-size: 9px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 145px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 19px;
  font-size: 10px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  font-weight: 800;
}

.price-card > a {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 14px;
  border: 1px solid currentColor;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.price-card-featured {
  overflow: hidden;
  border-color: #07100f;
  background: #07100f;
  color: var(--mint);
  box-shadow: 14px 16px 0 rgba(7, 16, 15, 0.12);
}

.price-card-featured header strong {
  color: #82918d;
}

.price-ribbon {
  margin: -28px -28px 24px;
  padding: 8px 28px;
  background: var(--success);
  color: #06100e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0 27px;
}

.price-methods > div {
  padding: 13px;
  border: 1px solid rgba(207, 240, 236, 0.14);
  border-radius: 9px;
  background: rgba(207, 240, 236, 0.025);
}

.price-methods > div.is-discounted {
  border-color: rgba(115, 229, 154, 0.55);
  background: rgba(115, 229, 154, 0.08);
}

.price-methods span {
  display: block;
  color: #82918d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-methods p {
  margin: 8px 0 0;
}

.price-methods b,
.price-methods small {
  display: block;
}

.price-methods b {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  line-height: 0.9;
}

.price-methods small {
  margin-top: 5px;
  color: #82918d;
  font-size: 7px;
}

.checkout-readiness {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  background: rgba(7, 16, 15, 0.08);
}

.checkout-readiness > span,
.checkout-readiness > strong {
  display: block;
}

.checkout-readiness > span {
  color: rgba(7, 16, 15, 0.52);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-readiness > strong {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.checkout-readiness > p {
  margin: 17px 0 0;
  color: rgba(7, 16, 15, 0.66);
  font-size: 10px;
}

.checkout-readiness dl {
  display: grid;
  gap: 0;
  margin: 25px 0;
  border-top: 1px solid rgba(7, 16, 15, 0.14);
}

.checkout-readiness dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(7, 16, 15, 0.14);
  font-size: 8px;
}

.checkout-readiness dt {
  color: rgba(7, 16, 15, 0.58);
}

.checkout-readiness dd {
  margin: 0;
  font-weight: 800;
}

.checkout-readiness > a {
  margin-top: auto;
  padding-top: 9px;
  color: #07100f;
  font-size: 8px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .drooly-app {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .ai-context {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ai-api-link {
    grid-column: 1 / -1;
    margin-top: 0;
  }

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

  .checkout-readiness {
    grid-column: 1 / -1;
  }
}

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

  .header-status {
    display: none;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    right: max(var(--pad), env(safe-area-inset-right, 0px));
    left: max(var(--pad), env(safe-area-inset-left, 0px));
    z-index: 10;
    margin-left: 0;
    padding: 10px 18px max(16px, env(safe-area-inset-bottom, 0px));
    border: 1px solid var(--line-strong);
    border-radius: 0 0 14px 14px;
    background: rgba(8, 9, 9, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    max-height: min(72svh, calc(100dvh - 96px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(207, 240, 236, 0.22) transparent;
  }

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

  .primary-nav > a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-more {
    border-bottom: 0;
  }

  .nav-more > summary {
    width: 100%;
    min-height: 44px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-more-panel {
    position: static;
    min-width: 0;
    margin: 0 0 4px;
    padding: 0 0 0 10px;
    border: 0;
    border-radius: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-more-panel a {
    min-height: 44px;
    padding: 10px 0 10px 8px;
    border-radius: 0;
    border-bottom: 1px solid rgba(207, 240, 236, 0.08);
  }

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

  .nav-more-panel a:hover,
  .nav-more-panel a:focus-visible {
    background: transparent;
  }

  .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;
  }

  .program-status {
    grid-template-columns: 1fr;
  }

  .program-status > a {
    justify-self: start;
  }

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

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

  .programming-inner {
    gap: 58px;
  }

  .release-intro {
    grid-template-columns: 1fr;
  }

  .release-poster {
    max-width: 880px;
  }

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

  .beta-layout {
    grid-template-columns: 178px minmax(0, 1fr);
  }

  .live-bridge-inner {
    grid-template-columns: 1fr;
  }

  .live-bridge-copy {
    position: static;
    max-width: 820px;
  }

  .x-feed-inner {
    grid-template-columns: 1fr;
  }

  .community-inner {
    grid-template-columns: 1fr;
  }

  .x-feed-heading {
    max-width: 720px;
  }

  .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;
  }

  .drooly-ai-intro,
  .pricing-heading {
    grid-template-columns: 1fr;
  }

  .drooly-ai-intro .section-label,
  .pricing-heading .section-label,
  .ai-proof-row {
    grid-column: auto;
  }

  .drooly-app {
    grid-template-columns: 1fr;
    border-radius: 13px;
  }

  .ai-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ai-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .ai-domain-status {
    margin-top: 18px;
  }

  .ai-context {
    grid-template-columns: 1fr;
  }

  .ai-timeline {
    min-height: 330px;
  }

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

  .checkout-readiness {
    grid-column: auto;
  }

  .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-brand-lockup > img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .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;
  }

  .program-status {
    padding: 24px 20px;
  }

  .section h2,
  .programming h2,
  .release-copy h2,
  .live-bridge-copy h2,
  .x-feed-heading 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;
  }

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

  .release-alert > span:last-child {
    display: none;
  }

  .release-platform {
    background:
      linear-gradient(180deg, var(--mint) 0, var(--mint) 31%, #070808 31%, #070808 100%);
  }

  .release-poster > .explicit-badge {
    right: -10px;
    top: -13px;
  }

  .beta-layout {
    grid-template-columns: 1fr;
  }

  .beta-rail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .beta-rail-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .beta-security {
    margin-top: 20px;
  }

  .beta-gate {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .x-feed-card {
    padding: 22px 18px;
    box-shadow: 10px 12px 0 rgba(207, 240, 236, 0.035);
  }

  .twitch-player-shell {
    min-height: 300px;
    box-shadow: 10px 12px 0 rgba(207, 240, 236, 0.035);
  }

  .twitch-channel-strip {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .twitch-channel-strip > a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .live-roadmap {
    grid-template-columns: 1fr;
  }

  .live-roadmap li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .live-roadmap li:last-child {
    border-bottom: 0;
  }

  .live-roadmap b {
    margin-top: 8px;
  }

  .community-post {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .x-post-shell {
    min-height: 0;
    padding: 20px 0;
  }

  .x-feed-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .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%;
  }

  .release-alert {
    gap: 11px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .release-alert strong {
    font-size: 9px;
  }

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

  .release-manifest-link {
    width: 100%;
    text-align: center;
  }

  .release-facts {
    grid-template-columns: 1fr;
  }

  .beta-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .beta-rail-nav {
    grid-template-columns: 1fr;
  }

  .beta-content {
    padding: 20px 15px 28px;
  }

  .beta-release-head {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
  }

  .beta-release-head > img {
    width: 74px;
    height: 74px;
  }

  .beta-release-head > .explicit-badge {
    display: none;
  }

  .beta-release-head h3 {
    font-size: 22px;
  }

  .gate-action {
    padding: 18px 15px;
  }

  .unlocked-banner {
    grid-template-columns: 1fr auto;
  }

  .unlocked-banner strong {
    display: none;
  }

  .holder-track {
    grid-template-columns: 22px 48px minmax(0, 1fr);
    gap: 9px;
    padding: 10px 9px;
  }

  .holder-track img {
    width: 48px;
    height: 48px;
  }

  .track-quality,
  .track-duration {
    display: none;
  }

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

  .community-post {
    grid-template-columns: 1fr;
  }

  .post-rail {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .post-rail span {
    writing-mode: initial;
  }

  .post-content > footer span {
    width: 100%;
    margin-left: 0;
  }

  .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;
  }
}

/* Long-page paint: skip layout/paint for far-off sections until near viewport. */
.ecosystem-section,
.dial-section,
.manifesto,
.principles,
.protocol-section,
.release-platform,
.live-bridge-section,
.community-section,
.drooly-ai-section,
.pricing-section,
.x-feed-section,
.token-section,
.continuity-section,
.faq-section,
.closing {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

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

  .grain {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .button:hover,
  .faq-list details[open] summary span {
    transform: none;
  }
}

.economy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1420px;
  margin: 14px auto 0;
}

.economy-grid article {
  padding: clamp(20px, 2.6vw, 34px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(207, 240, 236, 0.045), rgba(7, 8, 8, 0.96));
}

.economy-grid article > span {
  color: var(--mint-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.economy-grid h3 {
  margin: 16px 0 8px;
  color: var(--text);
  font-size: clamp(20px, 2.2vw, 30px);
}

.economy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.continuity-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(5rem, 10vw, 9rem) var(--page-pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(207, 240, 236, 0.1), transparent 34%),
    linear-gradient(180deg, #050505, #080b0a 55%, #050505);
  border-block: 1px solid rgba(207, 240, 236, 0.12);
}

.continuity-copy { align-self: center; position: relative; z-index: 2; }
.continuity-kicker {
  display: inline-flex;
  margin: 1rem 0 1.3rem;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.continuity-copy h2 { margin: 0; font-size: clamp(3.5rem, 7vw, 7rem); line-height: 0.82; }
.continuity-copy h2 em { color: var(--mint); font-family: var(--display); font-weight: 400; }
.continuity-copy > p { max-width: 34rem; margin: 2rem 0; color: var(--muted); line-height: 1.7; }
.continuity-copy > a { color: var(--mint); font-weight: 700; text-decoration: none; }

.continuity-console {
  --mesh-x: 50%;
  --mesh-y: 50%;
  position: relative;
  min-height: 42rem;
  padding: clamp(1rem, 2vw, 2rem);
  border: 1px solid rgba(207, 240, 236, 0.18);
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(24rem circle at var(--mesh-x) var(--mesh-y), rgba(207, 240, 236, 0.14), transparent 65%),
    rgba(12, 12, 12, 0.88);
  box-shadow: 0 3rem 8rem rgba(0, 0, 0, 0.45), inset 0 1px rgba(255,255,255,0.05);
  isolation: isolate;
}
.continuity-console::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background-image: linear-gradient(rgba(207,240,236,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(207,240,236,.08) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}
.continuity-orbit { position: absolute; inset: 10% 12%; z-index: -1; pointer-events: none; }
.continuity-orbit i { position: absolute; inset: 10%; border: 1px solid rgba(207,240,236,.14); border-radius: 50%; transform: rotate(18deg); }
.continuity-orbit i:nth-child(2) { inset: 24%; transform: rotate(-35deg); }
.continuity-orbit i:nth-child(3) { inset: 38%; box-shadow: 0 0 4rem rgba(207,240,236,.18); animation: continuity-pulse 5s ease-in-out infinite; }
@keyframes continuity-pulse { 50% { transform: scale(1.14); opacity: .45; } }
.continuity-status { display: flex; flex-wrap: wrap; align-items: baseline; gap: .65rem 1rem; padding: .25rem .4rem 1.5rem; }
.continuity-status span, .continuity-status small { color: var(--muted); font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; }
.continuity-status strong { color: var(--mint); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.continuity-status small { margin-left: auto; }
.continuity-protocols { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; margin: 0; padding: 0; list-style: none; }
.continuity-protocols li { display: flex; min-width: 0; }
.continuity-protocols button {
  width: 100%;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.1rem;
  color: #f5f7f6;
  text-align: left;
  border: 1px solid rgba(207,240,236,.12);
  border-radius: 1rem;
  background: rgba(5,5,5,.62);
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.continuity-protocols button:hover, .continuity-protocols button:focus-visible { transform: translateY(-3px); border-color: rgba(207,240,236,.5); }
.continuity-protocols button.is-active { background: rgba(207,240,236,.12); border-color: var(--mint); box-shadow: inset 0 0 2.5rem rgba(207,240,236,.06); }
.continuity-protocols b { color: var(--muted); font-size: .66rem; letter-spacing: .12em; }
.continuity-protocols strong { font-size: clamp(1rem, 1.8vw, 1.35rem); letter-spacing: .06em; }
.continuity-protocols span { color: var(--muted); font-size: .72rem; }
.continuity-readout { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; display: grid; grid-template-columns: minmax(7rem, .3fr) 1fr; gap: 1.3rem; align-items: center; padding: 1.2rem 1.4rem; border: 1px solid rgba(207,240,236,.16); border-radius: 1rem; background: rgba(5,5,5,.82); backdrop-filter: blur(18px); }
.continuity-readout span { color: var(--mint); font-weight: 700; letter-spacing: .12em; }
.continuity-readout p { margin: 0; color: #c3cdca; line-height: 1.5; }

@media (max-width: 900px) {
  .continuity-section { grid-template-columns: 1fr; }
  .continuity-console { min-height: 46rem; }
}
@media (max-width: 620px) {
  .continuity-protocols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .continuity-protocols button { min-height: 7.5rem; }
  .continuity-console { min-height: 46rem; border-radius: 1.25rem; }
  .continuity-status small { width: 100%; margin-left: 0; }
  .continuity-readout { grid-template-columns: 1fr; right: 1rem; bottom: 1rem; left: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .continuity-orbit i { animation: none; }
}

.growth-fund-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 0;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(207, 240, 236, .34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 10%, rgba(207, 240, 236, .09), transparent 34%),
    #070808;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.growth-city-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 40px;
  align-items: end;
  padding: clamp(30px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.growth-fund-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: #f6d98d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.growth-fund-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.growth-city-header h3 {
  margin: 22px 0 16px;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: .92;
}

.growth-city-header h3 em { color: var(--mint); font-weight: 400; }
.growth-city-header > p { max-width: 520px; margin: 0 0 16px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.growth-city-map {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 590px;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050606;
}

.city-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(207, 240, 236, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207, 240, 236, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(700px) rotateX(58deg) scale(1.35) translateY(-4%);
  transform-origin: center bottom;
}

.city-district {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px 18px;
  min-height: 220px;
  padding: clamp(22px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(207, 240, 236, .2);
  border-radius: 18px;
  background: rgba(8, 10, 10, .88);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.city-district::after {
  position: absolute;
  right: -28px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(207, 240, 236, .1);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(207, 240, 236, .08), transparent);
  transform: rotate(28deg);
  content: "";
}

.city-district:hover { transform: translateY(-4px); border-color: rgba(207, 240, 236, .52); background: rgba(12, 16, 15, .94); }
.city-district > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.city-district > i { grid-row: 1 / 3; grid-column: 2; color: var(--mint); font-family: var(--display); font-size: 44px; font-style: normal; line-height: 1; }
.city-district > strong { font-family: var(--display); font-size: clamp(28px, 3vw, 42px); font-weight: 400; }
.city-district > p { max-width: 410px; margin: 4px 0 18px; color: var(--muted); line-height: 1.55; }
.city-district > small { align-self: end; color: var(--mint-soft); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.city-district-signal { transform: translateY(28px); }
.city-district-signal:hover { transform: translateY(24px); }
.city-district-lab { transform: translateY(28px); }
.city-district-lab:hover { transform: translateY(24px); }

.city-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(207, 240, 236, .45);
  border-radius: 50%;
  background: #080a0a;
  box-shadow: 0 0 50px rgba(207, 240, 236, .14);
  transform: translate(-50%, -50%);
}
.city-core img { width: 54px; height: 54px; }
.city-core span { color: var(--mint); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-align: center; }

.growth-budget { display: grid; align-content: start; gap: 22px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.growth-budget-title span, .growth-budget-title small { display: block; color: var(--muted); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.growth-budget-title strong { display: block; margin: 8px 0; color: var(--mint); font-size: clamp(48px, 6vw, 74px); line-height: 1; }
.growth-budget dl { display: grid; gap: 0; margin: 0; border-top: 1px solid var(--line); }
.growth-budget dl div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.growth-budget dt { color: var(--muted); }
.growth-budget dd { margin: 0; font-weight: 800; }
.growth-budget > p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.growth-gates { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); }
.growth-gates div { display: grid; gap: 6px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.growth-gates div:nth-child(2n) { border-right: 0; }
.growth-gates span { color: var(--mint); font-size: 10px; font-weight: 800; }
.growth-gates strong { font-size: 14px; }
.growth-gates small { color: #f6d98d; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

.growth-fund-footer { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center; padding: 30px clamp(30px, 5vw, 64px); }
.growth-fund-footer p { max-width: 680px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.growth-fund-footer p strong { color: var(--text); }
.growth-fund-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: flex-end; }

.supply-lock-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px 34px;
  align-items: center;
  margin-top: 14px;
  padding: clamp(24px, 3.2vw, 42px);
  border: 1px solid rgba(207, 240, 236, 0.28);
  border-radius: 18px;
  background: radial-gradient(circle at top right, rgba(207, 240, 236, 0.1), transparent 42%), var(--surface);
}

.supply-lock-card span,
.supply-lock-card strong {
  display: block;
}

.supply-lock-card span {
  color: var(--mint-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.supply-lock-card strong {
  margin-top: 10px;
  color: var(--mint);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 58px);
  font-style: italic;
  font-weight: 400;
}

.supply-lock-card p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.supply-lock-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.supply-lock-card dl div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
}

.supply-lock-card dt {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.supply-lock-card dd {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
}

.supply-lock-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.supply-lock-links a {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .economy-grid,
  .growth-fund-card,
  .supply-lock-card {
    grid-template-columns: 1fr;
  }

  .growth-city-header,
  .growth-fund-footer {
    grid-template-columns: 1fr;
  }

  .growth-budget { border-right: 0; }
  .growth-city-map { grid-template-columns: 1fr; min-height: 0; }
  .city-district,
  .city-district-signal,
  .city-district-lab { transform: none; }
  .city-district:hover,
  .city-district-signal:hover,
  .city-district-lab:hover { transform: none; }
  .city-core { display: none; }
  .growth-gates { grid-template-columns: 1fr; }
  .growth-gates div,
  .growth-gates div:nth-child(2n) { border-right: 0; }
  .growth-fund-actions {
    display: grid;
    width: 100%;
    justify-content: stretch;
  }
  .growth-fund-actions a {
    box-sizing: border-box;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .growth-fund-card { border-radius: 18px; }
  .growth-city-header,
  .growth-city-map,
  .growth-budget,
  .growth-fund-footer { padding: 24px; }
  .growth-city-header { gap: 12px; }
  .growth-city-header h3 { font-size: clamp(42px, 14vw, 58px); }
  .city-district,
  .city-district-signal,
  .city-district-lab { min-height: 190px; padding: 22px; }
  .growth-budget dl div { align-items: baseline; }
  .growth-budget dt { max-width: 72%; }
  .growth-gates div { padding: 20px 24px; }
  .supply-lock-card dl {
    grid-template-columns: 1fr;
  }
}

/* Product-first 2026 beta composition.
   The functional network now leads; legacy pre-launch explainers remain in
   crawlable HTML and machine-readable APIs without blocking the product. */
#top {
  display: flex;
  flex-direction: column;
}

#top > .hero { order: 1; }
#top > .signal-strip { order: 2; }
#top > .release-platform { order: 3; }
#top > .live-bridge-section { order: 4; }
#top > .community-section { order: 5; }
#top > .drooly-ai-section { order: 6; }
#top > .pricing-section { order: 7; }
#top > .token-section { order: 8; }
#top > .protocol-section { order: 9; }
#top > .continuity-section { order: 10; }
#top > .faq-section { order: 11; }
#top > .closing { order: 12; }

#top > .dial-section,
#top > .manifesto,
#top > .principles,
#top > .x-feed-section {
  display: none;
}

.hero {
  min-height: calc(100svh - 122px);
  padding-top: clamp(54px, 6.5vw, 82px);
  padding-bottom: clamp(54px, 6.5vw, 82px);
}

.hero h1 {
  max-width: 650px;
  margin: 20px 0 20px;
  font-size: clamp(54px, 5.5vw, 78px);
  line-height: 0.89;
}

.hero-lede {
  max-width: 590px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

.hero-proof {
  margin-top: 22px;
}

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

.hero-community {
  max-width: 590px;
  line-height: 1.5;
}

.broadcast-console {
  transform: translateY(12px);
}

.release-platform {
  display: flex;
  flex-direction: column;
  padding-top: clamp(58px, 7vw, 88px);
  padding-bottom: 0;
  background: #070808;
  color: var(--text);
}

.release-platform > .beta-app {
  order: 1;
  margin-top: 0;
  scroll-margin-top: 104px;
}

.release-platform > .release-intro {
  order: 2;
  width: min(100%, var(--page));
  margin-top: clamp(62px, 8vw, 104px);
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 104px);
  color: #07100f;
  background: var(--mint);
  box-shadow: 0 0 0 100vmax var(--mint);
  clip-path: inset(0 -100vmax);
}

.live-bridge-inner,
.community-inner,
.x-feed-inner {
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 104px);
}

.drooly-ai-section,
.pricing-section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

@media (min-width: 1180px) {
  .hero-brand-lockup > img {
    width: 58px;
    height: 58px;
  }

  .broadcast-console {
    max-height: 510px;
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 66px);
  }

  .release-platform {
    padding-top: 42px;
    background: #070808;
  }

  .release-platform > .release-intro {
    margin-top: 54px;
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .broadcast-console {
    display: none;
  }

  .beta-rail {
    padding: 18px;
  }

  .beta-rail-nav {
    display: flex;
    gap: 6px;
    margin-top: 18px;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .beta-rail-nav a,
  .beta-rail-nav span {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 7px;
    min-height: 38px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    white-space: nowrap;
  }

  .beta-security {
    display: none;
  }
}

.p2p-deployment-card {
  display: block;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(207, 240, 236, 0.28);
  background: rgba(207, 240, 236, 0.04);
}

.p2p-deployment-card > span,
.p2p-deployment-card > strong {
  display: block;
}

.p2p-deployment-card > span {
  color: var(--mint-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.p2p-deployment-card > strong {
  margin-top: 7px;
  color: var(--text);
  font-size: 13px;
}

.p2p-deployment-card > p {
  margin: 12px 0 0;
  color: #7f8b88;
  font-size: 10px;
  line-height: 1.6;
}

.p2p-deployment-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0;
  background: var(--line);
}

.p2p-deployment-card dl div {
  padding: 10px;
  background: #090b0b;
}

.p2p-deployment-card dt {
  color: #66716e;
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.p2p-deployment-card dd {
  margin: 4px 0 0;
  color: #bac7c3;
  font-size: 9px;
}

/* 2026-08-04 production polish: restore the intended hero-first hierarchy and
   give newly introduced ecosystem / DROOLY preview markup a complete visual
   system. These rules intentionally sit last so the launch shell is stable. */
#top > .ecosystem-section { order: 3; }
#top > .release-platform { order: 4; }
#top > .live-bridge-section { order: 5; }
#top > .community-section { order: 6; }
#top > .drooly-ai-section { order: 7; }
#top > .pricing-section { order: 8; }
#top > .token-section { order: 9; }
#top > .protocol-section { order: 10; }
#top > .continuity-section { order: 11; }
#top > .faq-section { order: 12; }
#top > .closing { order: 13; }

.ecosystem-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(52px, 8vw, 112px);
  width: min(100%, calc(var(--page) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 148px) var(--pad);
  border-top: 1px solid var(--line);
}

.ecosystem-heading {
  align-self: start;
}

.ecosystem-heading h2 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.89;
}

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

.ecosystem-heading > p:last-child {
  max-width: 450px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.ecosystem-card {
  position: relative;
  display: flex;
  min-height: 288px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3.4vw, 38px);
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(207, 240, 236, 0.055), transparent 42%),
    #080909;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.ecosystem-card::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(207, 240, 236, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(207, 240, 236, 0.018), 0 0 0 52px rgba(207, 240, 236, 0.012);
  content: "";
  pointer-events: none;
  transition: transform 320ms ease;
}

.ecosystem-card:hover {
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(207, 240, 236, 0.12), transparent 52%),
    #0a0c0c;
  color: var(--mint);
  transform: translateY(-4px);
}

.ecosystem-card:hover::after {
  transform: scale(1.08) translate(-10px, -8px);
}

.ecosystem-card > img,
.ecosystem-symbol {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-top: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #0c0d0d;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.ecosystem-symbol-wallet {
  font-family: var(--font);
  font-style: normal;
}

.ecosystem-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.ecosystem-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.ecosystem-status.is-live { color: var(--success); }
.ecosystem-status.is-coming { color: var(--mint); }
.ecosystem-status.is-research { color: #d3c69f; }
.ecosystem-status.is-prep { color: #a8b4b1; }

.ecosystem-card > strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.ecosystem-card > p {
  max-width: 310px;
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.ecosystem-card > b {
  margin-top: auto;
  color: var(--mint-soft);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drooly-ai-preview {
  background:
    radial-gradient(circle at 78% 40%, rgba(207, 240, 236, 0.1), transparent 28rem),
    #050606;
}

.drooly-preview-card,
.drooly-boundary-grid,
.drooly-preview-links {
  width: min(100%, var(--page));
  margin-right: auto;
  margin-left: auto;
}

.drooly-preview-card {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.6fr);
  align-items: end;
  padding: clamp(28px, 4.8vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(207, 240, 236, 0.28);
  background:
    linear-gradient(90deg, rgba(3, 4, 4, 0.98) 0%, rgba(3, 4, 4, 0.88) 44%, rgba(3, 4, 4, 0.08) 76%),
    url("/assets/drooly-ai-signal-core-v1.jpg") 72% center / cover no-repeat;
  color: var(--text);
  text-decoration: none;
  box-shadow: 22px 26px 0 rgba(207, 240, 236, 0.025), 0 36px 90px rgba(0, 0, 0, 0.34);
}

.drooly-preview-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(115deg, rgba(207, 240, 236, 0.34), transparent 24%, transparent 76%, rgba(207, 240, 236, 0.16)) border-box;
  content: "";
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.drooly-preview-brand,
.drooly-preview-copy {
  position: relative;
  z-index: 2;
}

.drooly-preview-brand {
  align-self: start;
}

.drooly-preview-brand img {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #050505;
  box-shadow: 0 20px 60px rgba(207, 240, 236, 0.08);
}

.drooly-preview-brand > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--mint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drooly-preview-brand i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.drooly-preview-copy {
  grid-column: 1;
  max-width: 610px;
}

.drooly-preview-copy > span {
  color: var(--mint-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.drooly-preview-copy h3 {
  margin: 17px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.drooly-preview-copy p {
  max-width: 540px;
  margin: 22px 0 0;
  color: #acb7b4;
  font-size: 14px;
  line-height: 1.7;
}

.drooly-preview-copy b {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--mint);
  color: var(--mint);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drooly-preview-orbit {
  position: absolute;
  right: 8.5%;
  top: 16%;
  z-index: 1;
  width: min(31vw, 360px);
  height: min(31vw, 360px);
  border: 1px solid rgba(207, 240, 236, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(207, 240, 236, 0.015), 0 0 0 72px rgba(207, 240, 236, 0.01);
  pointer-events: none;
  animation: signal-drift 9s ease-in-out infinite;
}

.drooly-boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.drooly-boundary-grid article {
  min-height: 188px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.drooly-boundary-grid span,
.drooly-boundary-grid strong {
  display: block;
}

.drooly-boundary-grid span {
  color: var(--mint-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drooly-boundary-grid strong {
  margin-top: 14px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.drooly-boundary-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.drooly-preview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
}

.drooly-preview-links a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--mint-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes signal-drift {
  0%, 100% { opacity: 0.45; transform: rotate(-4deg) scale(0.96); }
  50% { opacity: 0.85; transform: rotate(4deg) scale(1.04); }
}

@media (min-width: 981px) {
  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
    gap: clamp(58px, 7vw, 104px);
  }

  .hero h1 {
    font-size: clamp(66px, 6.3vw, 92px);
  }

  .broadcast-console {
    min-height: 620px;
    max-height: none;
    padding: 375px 22px 20px;
    overflow: hidden;
    background: #050505;
    box-shadow: 28px 32px 0 rgba(207, 240, 236, 0.032), 0 44px 100px rgba(0, 0, 0, 0.42);
  }

  .console-topline {
    position: absolute;
    top: 20px;
    right: 22px;
    left: 22px;
    z-index: 3;
    margin: 0;
    padding: 9px 11px;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(14px);
  }

  .console-art {
    position: absolute;
    inset: 0;
    min-height: 100%;
    border: 0;
  }

  .console-art > img {
    width: 100%;
    height: 100%;
    object-position: 53% center;
    opacity: 0.95;
    filter: contrast(1.06) saturate(0.82);
  }

  .console-art::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 24%, rgba(5, 5, 5, 0.35) 52%, #050505 77%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.18), transparent 50%);
  }

  .mascot-badge { display: none; }

  .now-playing,
  .readiness-grid,
  .countdown,
  .console-footer {
    position: relative;
    z-index: 3;
  }

  .now-playing {
    padding-right: 12px;
    padding-left: 12px;
    background: rgba(5, 5, 5, 0.66);
    backdrop-filter: blur(12px);
  }

  .readiness-grid,
  .countdown {
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(12px);
  }
}

@media (max-width: 980px) {
  .ecosystem-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ecosystem-section {
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 82px;
  }

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

  .ecosystem-card {
    min-height: 250px;
  }

  .drooly-preview-card {
    min-height: 640px;
    grid-template-columns: 1fr;
    align-content: space-between;
    background:
      linear-gradient(180deg, rgba(3, 4, 4, 0.05) 0%, rgba(3, 4, 4, 0.44) 43%, rgba(3, 4, 4, 0.98) 72%),
      url("/assets/drooly-ai-signal-core-v1.jpg") 64% top / auto 63% no-repeat,
      #050606;
  }

  .drooly-preview-copy {
    grid-column: 1;
  }

  .drooly-preview-copy h3 {
    font-size: clamp(48px, 14vw, 67px);
  }

  .drooly-preview-orbit { display: none; }

  .drooly-boundary-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .drooly-preview-orbit { animation: none; }
}
