@font-face {
  font-family: "CMU Typewriter";
  src: url("/static/fonts/cmu-typewriter-text-500-roman.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Bungee";
  src: url("/static/fonts/bungee-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "CMU Typewriter";
  src: url("/static/fonts/cmu-typewriter-text-700-roman.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --field: #0a4b59;
  --field-deep: #0f4350;
  --mass: #010405;
  --mass-soft: #071012;
  --light: #f2fdff;
  --body: rgba(242, 253, 255, 0.76);
  --meta: rgba(242, 253, 255, 0.55);
  --edge: rgba(242, 253, 255, 0.28);
  --edge-soft: rgba(242, 253, 255, 0.13);
  --signal: #d90313;
  --signal-light: #ff3040;
  --ok: #78d6a2;
  --font: "CMU Typewriter", "Courier New", monospace;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { background: var(--mass); color-scheme: dark; }
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--mass);
  color: var(--light);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--light); text-decoration: none; }
a:hover { color: var(--signal-light); }

.site-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 32px;
  border-bottom: 1px solid var(--edge-soft);
  background: var(--mass);
  position: relative;
  z-index: 20;
}
.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(1, 4, 5, 0.72);
}
.brand {
  font-size: 14px;
  font-weight: 500;
  color: var(--light);
  white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a, .nav-link {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  font-size: 13px;
}
.site-nav a:hover, .nav-link:hover { color: var(--light); }

.site-main { flex: 1; width: 100%; }
body:not(.home):not(.live-view):not(.obs-view) .site-main {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 64px 32px 96px;
}
.site-footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 20px 24px;
  border-top: 1px solid var(--edge-soft);
  background: var(--mass);
}
.site-footer a { color: var(--meta); font-size: 11px; }
.site-footer a:hover { color: var(--light); }

.about-dialog {
  width: min(520px, calc(100vw - 32px));
  margin: auto;
  padding: 34px 38px 30px;
  border: 1px solid var(--edge);
  border-radius: 4px;
  background: var(--mass-soft);
  color: var(--light);
}
.about-dialog::backdrop { background: rgba(1, 4, 5, 0.78); }
.about-dialog h2 { margin: 0 44px 24px 0; font-size: 15px; }
.about-dialog p { margin: 0 0 18px; color: var(--body); font-size: 14px; }
.about-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--body);
  cursor: pointer;
}
.about-close:hover { color: var(--signal-light); }

/* Home */
.home-stage {
  position: relative;
  height: min(760px, 82svh);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--field-deep);
}
.home-video, .home-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-video { object-fit: cover; }
.home-shade { background: rgba(0, 45, 55, 0.56); }
.home-task {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 64px));
  margin: 54px auto 0;
  text-align: center;
}
.home-task h1 {
  margin: 0 0 30px;
  font-size: 88px;
  line-height: 0.82;
  font-weight: 700;
}
.home-task h1 span { display: block; }
.home-lead { margin: 0 0 14px; color: var(--light); font-size: 15px; }
.situation-form {
  width: min(860px, 100%);
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px;
  border: 1px solid rgba(242, 253, 255, 0.62);
  background: rgba(1, 4, 5, 0.7);
}
.situation-form input {
  min-width: 0;
  padding: 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--light);
  font-size: 16px;
}
.situation-form input::placeholder { color: var(--meta); }
.situation-form:focus-within { border-color: var(--light); }
.situation-form button, .room-builder-row button {
  width: 66px;
  border: 0;
  border-left: 1px solid var(--edge);
  background: var(--signal);
  color: var(--light);
  cursor: pointer;
  font-size: 26px;
}
.situation-form button:hover, .room-builder-row button:hover {
  background: var(--signal-light);
}
.situation-presets {
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 10px auto 0;
}
.situation-presets button {
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--edge-soft);
  border-right: 0;
  background: rgba(1, 4, 5, 0.42);
  color: var(--body);
  cursor: pointer;
  font-size: 12px;
}
.situation-presets button:last-child { border-right: 1px solid var(--edge-soft); }
.situation-presets button:hover,
.situation-presets button:focus-visible {
  border-color: var(--light);
  background: var(--light);
  color: var(--mass);
}
.listen-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  font-size: 13px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
}

.home-rooms {
  position: relative;
  min-height: min(760px, 88svh);
  padding: 0;
  overflow: hidden;
  background: var(--field-deep);
}
.home-rooms-inner { width: 100%; min-height: inherit; margin: 0; }
.home-rooms .section-head {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  min-height: 92px;
  margin: 0;
  padding: 22px 32px;
  align-items: center;
  background: rgba(1, 4, 5, 0.74);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-kicker { margin: 0 0 7px; color: var(--signal-light); font-size: 11px; }
.section-head h2 { margin: 0; font-size: 27px; font-weight: 500; }
.section-head > a { border-bottom: 1px solid var(--edge); font-size: 12px; }
.room-preview-list {
  min-height: inherit;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.room-preview {
  position: relative;
  min-height: inherit;
  min-width: 0;
  overflow: hidden;
  background: var(--field);
}
.room-preview video, .room-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-preview::after, .room-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 5, 0.18);
}
.room-preview-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 18px 22px 20px;
  background: rgba(1, 4, 5, 0.78);
}
.room-tile-copy { position: absolute; z-index: 2; inset: auto 22px 20px; }
.room-preview-number {
  display: block;
  margin-bottom: 7px;
  color: var(--signal-light);
  font-size: 10px;
}
.room-preview h3, .room-tile h2 { margin: 0 0 5px; font-size: 19px; }
.room-preview p, .room-tile p {
  margin: 0 0 14px;
  max-width: 36ch;
  color: var(--body);
  font-size: 12px;
}
.room-start {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid var(--light);
  background: transparent;
  color: var(--light);
  cursor: pointer;
  font-size: 12px;
}
.room-start span { margin-left: 6px; }
.room-start:hover { color: var(--signal-light); border-color: var(--signal-light); }
.artist-line-list { list-style: none; margin: 0; padding: 0; }
.artist-line-list li { border-top: 1px solid var(--edge-soft); }
.artist-line-list li:last-child { border-bottom: 1px solid var(--edge-soft); }
.artist-line-list a, .artist-line-list li > span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--light);
}
.artist-line-list a > span, .artist-line-list li > span { color: var(--meta); font-size: 12px; }

/* Indexes */
.index-intro { max-width: 800px; margin-bottom: 44px; }
.index-intro h1 { margin: 0; font-size: 44px; line-height: 1.05; }
.index-intro > p:last-child { max-width: 52ch; color: var(--body); }
.rooms-index { background: var(--mass); }
.rooms-index .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(1, 4, 5, 0.66);
}
body.rooms-index .site-main {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0;
  padding: 0 !important;
}
.rooms-intro {
  position: absolute;
  z-index: 5;
  top: 92px;
  left: max(32px, calc((100vw - 1120px) / 2));
  width: min(760px, calc(100% - 64px));
  margin: 0;
  padding: 24px;
  background: rgba(1, 4, 5, 0.78);
}
.room-builder { margin-top: 26px; }
.segmented { display: flex; margin-bottom: 10px; }
.segmented label { cursor: pointer; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span {
  display: block;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--edge);
  color: var(--body);
  font-size: 12px;
}
.segmented label + label span { border-left: 0; }
.segmented input:checked + span { background: var(--light); color: var(--mass); }
.room-builder-row {
  max-width: 760px;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  border: 1px solid var(--edge);
  background: var(--mass-soft);
}
.room-builder-row input {
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--light);
}
.room-builder-row button { width: 58px; }
.room-grid {
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.room-tile {
  position: relative;
  min-height: 50svh;
  overflow: hidden;
}
.room-tile-copy { inset: auto 28px 26px; }
.room-error { min-height: 24px; color: var(--signal-light); }

.artists-index { background: var(--mass); }
.artists-directory { list-style: none; margin: 0; padding: 0; }
.artists-directory li { border-top: 1px solid var(--edge-soft); }
.artists-directory li:last-child { border-bottom: 1px solid var(--edge-soft); }
.artists-directory a {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(120px, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.artist-directory-name { font-size: 18px; }
.artist-directory-genre, .artist-directory-count { color: var(--meta); font-size: 12px; }

/* Shared buttons and forms */
.btn, .contact-form button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--edge);
  border-radius: 3px;
  background: var(--mass-soft);
  color: var(--light);
  cursor: pointer;
}
.btn:hover { border-color: var(--light); color: var(--light); }
.btn-primary, .contact-form button {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--light);
}
.btn-primary:hover, .contact-form button:hover { background: var(--signal-light); }
.btn-ghost { background: transparent; }
.btn-big { min-height: 48px; padding: 11px 18px; }
.btn-play { min-width: 112px; }

/* Search and result */
.search-page { max-width: 840px; margin: 0 auto; }
.search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}
.search-bar input, .search-bar select,
.field input, .field select, .stream-pass-form input,
.contact-form input, .contact-form textarea {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--edge);
  border-radius: 3px;
  outline: 0;
  background: var(--mass-soft);
  color: var(--light);
}
.search-bar input { flex: 1; min-width: 0; }
.search-bar select { max-width: 170px; }
.search-bar input:focus, .search-bar select:focus,
.field input:focus, .field select:focus,
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--light); }
.search-status, .search-empty { padding: 48px 0; text-align: center; color: var(--body); }
.search-result { max-width: 720px; margin: 0 auto; }
.player { padding: 16px 0; border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); }
.player-wave { display: block; width: 100%; height: 76px; cursor: pointer; background: var(--mass-soft); }
.player-controls { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.player-time { color: var(--meta); font-size: 12px; }
.result-best { padding: 28px 0; text-align: center; }
.result-title { margin: 0 0 4px; font-size: 25px; font-weight: 500; }
.result-artist, .result-reason { margin: 0; color: var(--body); }
.result-reason { margin-top: 8px; color: var(--signal-light); font-size: 12px; }
.result-actions { margin-top: 20px; }
.result-alts { border-top: 1px solid var(--edge-soft); padding-top: 14px; color: var(--body); }
.result-alts summary { cursor: pointer; }
.alt-list { list-style: none; margin: 12px 0 0; padding: 0; }
.alt-list li { padding: 10px 0; border-top: 1px solid var(--edge-soft); }
.alt-meta { margin-left: 10px; color: var(--meta); font-size: 12px; }
.generation-result { padding: 54px 0; text-align: center; }
.generation-countdown { min-height: 60px; margin: 0; font-size: 52px; }
.generation-result h2 { margin: 8px 0; font-size: 24px; }
.generation-result p { color: var(--body); }
.generation-attribution { font-size: 11px; }

/* Track and artist */
.track-head, .artist-head { margin-bottom: 28px; }
.track-artist, .artist-genre { margin: 0 0 5px; color: var(--signal-light); font-size: 12px; }
.track-title, .artist-name { margin: 0 0 9px; font-size: 38px; line-height: 1.08; }
.track-status, .track-meta, .artist-profile { margin: 0; color: var(--body); }
.track-meta { margin-top: 5px; color: var(--meta); font-size: 12px; }
.track-actions { margin: 24px 0; }
.track-platforms, .track-versions {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--edge-soft);
}
.track-platforms-label, .track-versions-label { color: var(--meta); font-size: 12px; }
.platform-link, .version-link { border-bottom: 1px solid var(--edge); }
.track-versions-list { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; }
.version-type { color: var(--meta); font-size: 11px; }
.track-list { list-style: none; margin: 32px 0 0; padding: 0; }
.track-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--edge-soft);
}
.track-row:last-child { border-bottom: 1px solid var(--edge-soft); }
.btn-row-play { min-width: 42px; min-height: 38px; padding: 6px; }
.track-row-title { flex: 1; }
.track-row-dur { color: var(--meta); font-size: 12px; }

/* License, legal, contact */
.license-head h1, .legal-page h1 { margin: 0 0 12px; font-size: 38px; }
.license-explainer, .legal-page p { max-width: 62ch; color: var(--body); }
.license-form { max-width: 680px; display: grid; gap: 16px; margin-top: 30px; }
.field { display: grid; gap: 6px; padding: 0; border: 0; }
.field-label { color: var(--body); font-size: 12px; }
.scope-field { display: grid; gap: 8px; }
.scope-field label { display: flex; gap: 9px; align-items: center; }
.scope-field input { accent-color: var(--signal); }
.checkout-error { color: var(--signal-light); }
.checkout-result { margin-top: 30px; }
.checkout-demo { color: var(--signal-light); }
.license-code { font-size: 20px; }
.license-facts { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; }
.license-facts dt { color: var(--meta); }
.license-facts dd { margin: 0; }
.mono { overflow-wrap: anywhere; font-size: 12px; }
.contact-form {
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label { display: grid; gap: 6px; color: var(--body); font-size: 12px; }
.contact-wide, .contact-form button, #contact-status { grid-column: 1 / -1; }
.contact-form textarea { resize: vertical; }
.contact-form button { width: max-content; min-width: 150px; }
#contact-status { min-height: 22px; color: var(--signal-light); }

.social-pulse {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(320px, calc(100vw - 36px));
  display: grid;
  gap: 6px;
  pointer-events: none;
}
.social-pulse-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  padding: 13px 14px;
  border: 1px solid var(--light);
  background: rgba(1, 4, 5, 0.94);
  color: var(--light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: auto;
}
.social-pulse-card.visible { opacity: 1; transform: translateY(0); }
.social-pulse-card strong { overflow-wrap: anywhere; font-size: 13px; }
.social-pulse-card > span:not(.social-pulse-platform) { color: var(--meta); font-size: 10px; }
.social-pulse-card b { grid-column: 2; grid-row: 2; color: var(--signal-light); font-size: 10px; }
.social-pulse-platform { grid-column: 2; grid-row: 1; color: var(--signal-light); font-size: 9px; }

/* Live Room */
.live-view .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: rgba(1, 4, 5, 0.66);
}
.live-view .site-main { min-height: 100svh; }
.live-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--field-deep);
}
.live-video, .live-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.live-video { object-fit: cover; }
.live-shade { background: rgba(0, 24, 29, 0.24); }
.live-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.live-deck {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(430px, 1.45fr) auto;
  align-items: end;
  gap: 28px;
  padding: 22px 28px 24px;
  border-top: 1px solid var(--edge);
  background: rgba(1, 4, 5, 0.9);
}
.live-program, .live-command { min-width: 0; }
.live-kicker { margin: 0; color: var(--signal-light); font-size: 11px; }
.live-title { margin: 4px 0; font-size: 38px; line-height: 1; }
.live-preference, .live-access { margin: 0; color: var(--body); font-size: 12px; }
.live-now { margin-top: 14px; }
.live-signal { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); }
.live-track { display: inline; margin: 0 0 0 7px; font-size: 14px; }
.live-controls-main, .live-steer, .live-links {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.live-command .btn { min-height: 34px; padding: 6px 10px; font-size: 11px; }
.live-dsp {
  width: auto;
  display: grid;
  grid-template-columns: repeat(3, 76px);
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
}
.dsp-group { min-width: 0; text-align: center; }
.dsp-group > span {
  display: block;
  margin-bottom: 6px;
  color: var(--meta);
  font-size: 10px;
  text-transform: uppercase;
}
.rotary-dial {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #eee9df;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.08);
  cursor: grab;
  touch-action: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.rotary-dial:hover { background: #ffffff; }
.rotary-dial.is-dragging {
  background: #ffffff;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.06), 0 0 0 5px rgba(116, 244, 222, 0.12);
  cursor: grabbing;
  transform: scale(1.08);
}
.rotary-dial:focus-visible { outline: 2px solid var(--signal-light); outline-offset: 3px; }
.rotary-needle {
  position: absolute;
  top: 6px;
  left: 25px;
  width: 2px;
  height: 19px;
  background: var(--signal);
  transform-origin: 50% 20px;
  transform: rotate(var(--dial-angle, 0deg));
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1.25);
}
.rotary-value {
  display: block;
  margin-top: 4px;
  color: var(--light);
  font-size: 10px;
  font-weight: 500;
}
.stream-pass, .stream-mix {
  max-width: 620px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--edge-soft);
}
.stream-pass h2 { margin: 0 0 3px; font-size: 14px; }
.stream-pass p { margin: 0 0 7px; color: var(--body); font-size: 11px; }
.stream-pass-form { display: flex; gap: 8px; }
.stream-pass-form input { flex: 1; min-height: 36px; }
.stream-pass-message { min-height: 14px; margin: 4px 0 0; color: var(--signal-light); font-size: 10px; }
.obs-view .site-header, .obs-view .site-footer { display: none; }
.obs-view .site-main, .obs-view .live-page { min-height: 100svh; }
.obs-view .live-deck { display: none !important; }
.obs-view .live-shade { background: rgba(0, 0, 0, 0.08); }
.obs-view .live-shell { min-height: 100svh; }

@media (max-width: 760px) {
  .site-header { padding: 0 18px; }
  .site-nav { gap: 15px; }
  .home-task { width: calc(100% - 36px); }
  .home-task h1 { font-size: 60px; }
  .home-rooms { min-height: 78svh; padding: 0; }
  .home-rooms .section-head { min-height: 82px; padding: 18px; }
  .room-preview-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .room-preview { min-width: 88vw; min-height: 78svh; scroll-snap-align: start; }
  .room-grid { grid-template-columns: 1fr; }
  .room-tile { min-height: 72svh; }
  .rooms-intro { top: 92px; left: 18px; width: calc(100% - 36px); padding: 18px; }
  .live-deck {
    max-height: 78svh;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    overflow-y: auto;
  }
  .live-dsp { grid-template-columns: repeat(3, 70px); justify-content: space-between; gap: 8px; }
  body:not(.home):not(.live-view):not(.obs-view) .site-main { padding: 48px 18px 72px; }
  .search-bar { flex-wrap: wrap; }
  .search-bar select { flex: 1; max-width: none; }
  .search-bar input { flex-basis: 100%; order: 3; }
  .search-bar button { order: 4; width: 100%; }
}

@media (max-width: 520px) {
  body { font-size: 14px; }
  .site-header { min-height: 74px; align-items: flex-start; padding-top: 12px; }
  .site-nav { position: absolute; left: 18px; right: 18px; bottom: 8px; justify-content: space-between; }
  .site-nav a, .nav-link { padding: 4px 0; font-size: 10px; }
  .home-stage { height: 79svh; min-height: 540px; }
  .home-task { margin-top: 70px; }
  .home-task h1 { font-size: 46px; line-height: 0.86; }
  .home-lead { font-size: 14px; }
  .situation-form { min-height: 60px; grid-template-columns: minmax(0, 1fr) 58px; }
  .situation-form input { padding: 0 13px; font-size: 14px; }
  .situation-form button { width: 58px; }
  .situation-presets { grid-template-columns: 1fr 1fr; }
  .situation-presets button {
    min-height: 38px;
    border: 1px solid var(--edge-soft);
    font-size: 10px;
  }
  .situation-presets button:nth-child(odd) { border-right: 0; }
  .situation-presets button:nth-child(n+3) { border-top: 0; }
  .section-head h2 { max-width: 13ch; font-size: 22px; }
  .room-preview { min-width: 92vw; }
  .artist-line-list a { min-height: 50px; }
  .index-intro h1, .track-title, .artist-name, .license-head h1,
  .legal-page h1 { font-size: 32px; }
  .room-builder-row { grid-template-columns: minmax(0, 1fr) 54px; }
  .room-builder-row button { width: 54px; }
  .room-tile { min-height: 76svh; }
  .artists-directory a {
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }
  .artist-directory-genre { grid-column: 1; grid-row: 2; }
  .artist-directory-count { grid-column: 2; grid-row: 1 / 3; }
  .track-platforms, .track-versions { align-items: flex-start; flex-direction: column; }
  .track-versions-list { flex-direction: column; gap: 6px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-wide, .contact-form button, #contact-status { grid-column: auto; }
  .stream-pass-form { flex-direction: column; }
  .live-title { font-size: 30px; }
  .site-footer { align-items: flex-start; justify-content: flex-start; gap: 9px 20px; }
  .social-pulse-card:nth-child(n+2) { display: none; }
}

/* V6 living sound world. Three.js is the public surface; the catalog APIs stay unchanged. */
.living-home,
.living-rooms,
.living-live {
  --world-light: #f4f1e8;
  --world-muted: rgba(244, 241, 232, 0.62);
  --world-line: rgba(244, 241, 232, 0.24);
  --world-accent: #8ff6dd;
  background: #050706;
}
.living-home .site-header,
.living-rooms .site-header,
.living-live .site-header {
  position: fixed;
  inset: 0 0 auto;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: var(--world-light);
  z-index: 40;
}
.living-home .site-header::after,
.living-rooms .site-header::after,
.living-live .site-header::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 1px;
  background: var(--world-line);
}
.living-home .brand,
.living-rooms .brand,
.living-live .brand {
  color: var(--world-light);
  font-size: 11px;
}
.living-home .site-nav a,
.living-home .nav-link,
.living-rooms .site-nav a,
.living-rooms .nav-link,
.living-live .site-nav a,
.living-live .nav-link {
  color: var(--world-muted);
  font-size: 10px;
}
.living-home .site-nav a:hover,
.living-home .nav-link:hover,
.living-rooms .site-nav a:hover,
.living-rooms .nav-link:hover,
.living-live .site-nav a:hover,
.living-live .nav-link:hover { color: var(--world-light); }
.living-home .site-footer,
.living-rooms .site-footer,
.living-live .site-footer { display: none; }
.living-rooms .site-main,
.living-live .site-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.living-world {
  --scene-accent: #8ff6dd;
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: #050706;
  color: var(--world-light);
}
.living-world[data-scene-intent="social"] { --scene-accent: #ff4d67; }
.living-world[data-scene-intent="stream"] { --scene-accent: #63f7d4; }
.living-world[data-scene-intent="space"] { --scene-accent: #ffc35a; }
.living-world[data-scene-intent="project"] { --scene-accent: #9dafff; }
.living-video,
.living-canvas,
.living-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.living-video {
  z-index: 0;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(0.7) contrast(1.28) brightness(0.68);
  transform: scale(1.025);
  transition: opacity 600ms ease, filter 600ms ease, transform 1200ms ease;
}
.living-canvas {
  z-index: 2;
  display: block;
  pointer-events: none;
}
.living-vignette {
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 150px 38px rgba(0, 0, 0, 0.62);
}
.living-world::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 18px solid rgba(1, 4, 3, 0.15);
  pointer-events: none;
}
.living-world[data-scene-state="searching"] .living-video,
.living-world[data-scene-state="launching"] .living-video {
  opacity: 0.16;
  transform: scale(1.055);
}
.living-world[data-audio-reactive="active"] .living-video {
  filter: grayscale(0.25) contrast(1.36) brightness(0.75);
}
.living-no-webgl .living-video { opacity: 0.62; }

.living-index {
  position: absolute;
  top: 88px;
  right: 30px;
  left: 30px;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  color: var(--world-muted);
  font-size: 9px;
  pointer-events: none;
}
.living-index span:last-child {
  color: var(--scene-accent);
  transition: color 300ms ease;
}
.living-interface {
  position: absolute;
  top: 50%;
  left: 8.5%;
  z-index: 8;
  width: min(820px, 72vw);
  transform: translateY(-52%);
}
.living-wordmark {
  margin: 0 0 24px;
  color: var(--world-light);
  font-size: 96px;
  font-weight: 700;
  line-height: 0.8;
}
.living-wordmark span { display: block; }
.living-lead {
  margin: 0 0 10px;
  color: var(--world-light);
  font-size: 13px;
}
.living-search {
  width: min(780px, 100%);
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 62px;
  align-items: center;
  border-top: 1px solid var(--world-light);
  border-bottom: 1px solid var(--world-line);
  background: rgba(5, 7, 6, 0.45);
  transition: border-color 220ms ease, background 220ms ease;
}
.living-search:focus-within {
  border-top-color: var(--scene-accent);
  background: rgba(5, 7, 6, 0.72);
}
.living-search-index { color: var(--scene-accent); font-size: 10px; text-align: center; }
.living-search input {
  min-width: 0;
  height: 60px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--world-light);
  font-size: 15px;
}
.living-search input::placeholder { color: rgba(244, 241, 232, 0.4); }
.living-search button {
  width: 62px;
  height: 60px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--world-line);
  background: transparent;
  color: var(--scene-accent);
  cursor: pointer;
  font-size: 25px;
  transition: color 180ms ease, background 180ms ease;
}
.living-search button:hover,
.living-search button:focus-visible {
  background: var(--scene-accent);
  color: #050706;
}
.living-intents {
  width: min(780px, 100%);
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.living-intents button {
  min-height: 34px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--world-muted);
  cursor: pointer;
  font-size: 10px;
  text-transform: uppercase;
}
.living-intents button:hover,
.living-intents button:focus-visible {
  border-bottom-color: var(--scene-accent);
  color: var(--world-light);
}
.living-status {
  min-height: 18px;
  margin: 11px 0 0;
  color: var(--scene-accent);
  font-size: 10px;
}

.living-result {
  position: absolute;
  right: 30px;
  bottom: 94px;
  left: 30px;
  z-index: 14;
  min-height: 112px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto 42px;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--scene-accent);
  border-bottom: 1px solid var(--world-line);
  background: rgba(5, 7, 6, 0.9);
}
.living-result-signal { display: grid; gap: 7px; justify-items: start; }
.living-play {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--world-light);
  border-radius: 50%;
  background: transparent;
  color: var(--scene-accent);
  cursor: pointer;
}
.living-play:hover { background: var(--world-light); color: #050706; }
.living-result-count { color: var(--world-muted); font-size: 8px; }
.living-result-copy { min-width: 0; }
.living-result-copy strong,
.living-result-copy span { display: block; overflow-wrap: anywhere; }
.living-result-copy strong { color: var(--world-light); font-size: 20px; }
.living-result-copy span { color: var(--world-muted); font-size: 11px; }
.living-result-copy p { margin: 7px 0 0; color: var(--world-muted); font-size: 10px; }
.living-result-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--scene-accent);
  color: var(--world-light);
  font-size: 10px;
}
.living-result-action:hover { background: var(--scene-accent); color: #050706; }
.living-result-close {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--world-muted);
  cursor: pointer;
}

.living-room-dock {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  z-index: 10;
  min-height: 72px;
  display: grid;
  grid-template-columns: 150px repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--world-line);
  background: rgba(5, 7, 6, 0.54);
}
.living-room-label,
.living-room-choice {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid var(--world-line);
  background: transparent;
  color: var(--world-light);
  font-size: 10px;
}
.living-room-label { gap: 8px; }
.living-room-choice { gap: 12px; cursor: pointer; text-align: left; }
.living-room-choice span { color: var(--world-muted); font-size: 8px; }
.living-room-choice:hover,
.living-room-choice:focus-visible,
.living-room-choice.is-current {
  background: var(--scene-accent);
  color: #050706;
}
.living-room-choice:hover span,
.living-room-choice.is-current span { color: rgba(5, 7, 6, 0.58); }

/* Rooms are channels in the same world, not a second catalog page. */
.living-world--rooms { min-height: 720px; }
.room-world-head {
  position: absolute;
  top: 98px;
  left: 6.5%;
  z-index: 8;
}
.room-world-head p { margin: 0 0 5px; color: var(--world-muted); font-size: 9px; }
.room-world-head h1 { margin: 0; font-size: 70px; line-height: 0.9; }
.room-world-builder {
  position: absolute;
  bottom: 40px;
  left: 6.5%;
  z-index: 9;
  width: min(500px, 42vw);
}
.room-world-mode { display: flex; gap: 22px; margin-bottom: 10px; }
.room-world-mode label { cursor: pointer; color: var(--world-muted); font-size: 9px; }
.room-world-mode input { width: 13px; height: 13px; margin: 0 6px 0 0; accent-color: var(--scene-accent); }
.room-world-query {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  border-top: 1px solid var(--world-light);
  border-bottom: 1px solid var(--world-line);
  background: rgba(5, 7, 6, 0.66);
}
.room-world-query input {
  min-width: 0;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--world-light);
  font-size: 12px;
}
.room-world-query button {
  border: 0;
  border-left: 1px solid var(--world-line);
  background: transparent;
  color: var(--scene-accent);
  cursor: pointer;
  font-size: 22px;
}
.room-world-list {
  position: absolute;
  top: 104px;
  right: 5%;
  z-index: 8;
  width: min(600px, 47vw);
  display: grid;
  border-top: 1px solid var(--world-line);
}
.room-world-option {
  position: relative;
  width: 100%;
  min-height: 108px;
  display: grid;
  grid-template-columns: 42px minmax(120px, 0.72fr) minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border: 0;
  border-bottom: 1px solid var(--world-line);
  border-radius: 0;
  background: rgba(5, 7, 6, 0.18);
  color: var(--world-light);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}
.room-world-option video {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.room-world-option:hover,
.room-world-option:focus-visible,
.room-world-option.is-current {
  background: var(--scene-accent);
  color: #050706;
}
.room-world-number { color: var(--world-muted); font-size: 9px; }
.room-world-name { font-size: 17px; font-weight: 700; }
.room-world-description { color: var(--world-muted); font-size: 10px; }
.room-world-enter { justify-self: end; font-size: 20px; }
.room-world-option:hover .room-world-number,
.room-world-option:hover .room-world-description,
.room-world-option.is-current .room-world-number,
.room-world-option.is-current .room-world-description { color: rgba(5, 7, 6, 0.62); }
.room-error { position: absolute; right: 5%; bottom: 38px; z-index: 10; width: min(600px, 47vw); }

/* The live deck rides over the same audio-reactive world. */
.living-live .live-page { background: #050706; }
.living-live .live-video { z-index: 0; opacity: 0.36; filter: grayscale(0.58) contrast(1.25) brightness(0.7); }
.living-live .living-canvas { z-index: 2; }
.living-live .live-shade {
  z-index: 3;
  background: rgba(1, 4, 3, 0.16);
  box-shadow: inset 0 0 140px 26px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.living-live .live-shell { z-index: 5; }
.living-live .live-deck {
  grid-template-columns: minmax(220px, 0.8fr) minmax(440px, 1.45fr) auto;
  gap: 26px;
  padding: 20px 28px 24px;
  border-top-color: rgba(244, 241, 232, 0.28);
  background: rgba(5, 7, 6, 0.87);
}
.living-live .live-kicker,
.living-live .live-signal,
.living-live .stream-pass-message { color: var(--world-accent); }
.living-live .live-signal { background: var(--world-accent); }
.living-live .rotary-needle { background: #ff4d67; }
.living-live .btn-primary { background: var(--world-accent); color: #050706; }
.living-live .btn-primary:hover { background: #f4f1e8; }
.obs-view .living-canvas { z-index: 3; }
.obs-view .live-video { opacity: 0.48; }

@media (max-width: 900px) {
  .living-wordmark { font-size: 70px; }
  .living-interface { left: 6%; width: 86vw; }
  .living-room-dock { grid-template-columns: 126px repeat(4, minmax(118px, 1fr)); overflow-x: auto; }
  .living-room-choice { min-width: 118px; }
  .room-world-head { left: 28px; }
  .room-world-builder { left: 28px; width: calc(46% - 28px); }
  .room-world-list { right: 28px; width: calc(54% - 42px); }
  .room-error { right: 28px; width: calc(54% - 42px); }
  .living-live .live-deck { grid-template-columns: minmax(200px, 0.8fr) minmax(360px, 1.4fr); }
  .living-live .live-dsp { grid-column: 1 / -1; justify-self: end; }
}

@media (max-width: 700px) {
  .living-home .site-header,
  .living-rooms .site-header,
  .living-live .site-header {
    min-height: 76px;
    padding: 12px 18px 10px;
  }
  .living-home .site-header::after,
  .living-rooms .site-header::after,
  .living-live .site-header::after { right: 18px; left: 18px; }
  .living-home .site-nav,
  .living-rooms .site-nav,
  .living-live .site-nav {
    position: static;
    gap: 12px;
  }
  .living-home .site-nav a,
  .living-home .nav-link,
  .living-rooms .site-nav a,
  .living-rooms .nav-link,
  .living-live .site-nav a,
  .living-live .nav-link { font-size: 8px; }
  .living-world { min-height: 620px; }
  .living-world::after { border-width: 8px; }
  .living-vignette { box-shadow: inset 0 0 85px 18px rgba(0, 0, 0, 0.58); }
  .living-index { top: 92px; right: 18px; left: 18px; }
  .living-interface {
    top: 43%;
    left: 18px;
    width: calc(100% - 36px);
    transform: translateY(-50%);
  }
  .living-wordmark { margin-bottom: 21px; font-size: 48px; }
  .living-lead { font-size: 11px; }
  .living-search { min-height: 56px; grid-template-columns: 34px minmax(0, 1fr) 54px; }
  .living-search input { height: 54px; padding: 0 8px; font-size: 12px; }
  .living-search button { width: 54px; height: 54px; }
  .living-intents { gap: 0; justify-content: space-between; }
  .living-intents button { min-width: 0; font-size: 8px; }
  .living-status { font-size: 8px; }
  .living-room-dock {
    right: 18px;
    left: 18px;
    min-height: 64px;
    grid-template-columns: 112px repeat(4, 116px);
  }
  .living-room-label,
  .living-room-choice { padding: 0 10px; font-size: 8px; }
  .living-result {
    right: 18px;
    bottom: 76px;
    left: 18px;
    min-height: 150px;
    grid-template-columns: 54px minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 12px 0;
  }
  .living-result-copy strong { font-size: 15px; }
  .living-result-action { grid-column: 2; justify-self: start; min-height: 36px; padding: 0 10px; }
  .living-result-close { grid-column: 3; grid-row: 1; width: 38px; height: 38px; }

  .living-world--rooms { height: auto; min-height: 100svh; overflow-y: auto; }
  .room-world-head { top: 100px; left: 18px; }
  .room-world-head h1 { font-size: 46px; }
  .room-world-list {
    top: 184px;
    right: 18px;
    left: 18px;
    width: auto;
  }
  .room-world-option {
    min-height: 82px;
    grid-template-columns: 28px minmax(88px, 0.65fr) minmax(0, 1fr) 22px;
    gap: 8px;
  }
  .room-world-name { font-size: 12px; }
  .room-world-description { font-size: 8px; }
  .room-world-builder {
    top: 548px;
    bottom: auto;
    left: 18px;
    width: calc(100% - 36px);
  }
  .room-error { top: 636px; right: 18px; bottom: auto; width: calc(100% - 36px); }

  .living-live .live-deck {
    max-height: 80svh;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 16px 18px 18px;
    overflow-y: auto;
  }
  .living-live .live-title { font-size: 28px; }
  .living-live .live-dsp { grid-column: auto; justify-self: stretch; grid-template-columns: repeat(3, 68px); justify-content: space-between; }
  .living-live .rotary-dial { width: 46px; height: 46px; }
  .living-live .rotary-needle { left: 22px; height: 17px; transform-origin: 50% 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .living-video { transition: none; transform: none; }
  .living-room-choice,
  .room-world-option { transition: none; }
}

/* V7: particle wordmark, cloud field and video-first Rooms. */
.living-home,
.living-rooms,
.living-live {
  --v7-ink: #020607;
  --v7-surface: #071416;
  --v7-surface-raised: #0a2022;
  --v7-paper: #f3f0e8;
  --v7-muted: rgba(243, 240, 232, 0.62);
  --v7-line: rgba(243, 240, 232, 0.2);
  --v7-cyan: #74f4de;
  --v7-red: #ff4b45;
  background: var(--v7-ink);
  color: var(--v7-paper);
}
.living-home .site-main,
.living-rooms .site-main,
.living-live .site-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.living-home .site-header,
.living-rooms .site-header,
.living-live .site-header {
  position: fixed;
  inset: 0 0 auto;
  min-height: 68px;
  padding: 0 30px;
  border: 0;
  background: rgba(2, 6, 7, 0.18);
  backdrop-filter: blur(8px);
  z-index: 60;
}
.living-home .site-header::after,
.living-rooms .site-header::after,
.living-live .site-header::after {
  right: 30px;
  left: 30px;
  background: rgba(243, 240, 232, 0.16);
}
.living-home .brand,
.living-rooms .brand,
.living-live .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--v7-paper);
  font-family: "Bungee", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.living-home .brand::before,
.living-rooms .brand::before,
.living-live .brand::before {
  content: "";
  width: 21px;
  height: 23px;
  flex: 0 0 auto;
  background: url("/static/img/pick-face.png") center / contain no-repeat;
  clip-path: none;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.52));
}
.living-live .site-header {
  width: max-content;
  min-height: 62px;
  padding: 0 30px;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}
.living-live .site-header::after,
.living-live .site-nav { display: none; }
.living-live .brand { pointer-events: auto; }
.living-home .site-nav a,
.living-home .nav-link,
.living-rooms .site-nav a,
.living-rooms .nav-link,
.living-live .site-nav a,
.living-live .nav-link {
  color: var(--v7-muted);
  font-size: 10px;
}
.living-home .site-nav a:hover,
.living-home .nav-link:hover,
.living-rooms .site-nav a:hover,
.living-rooms .nav-link:hover,
.living-live .site-nav a:hover,
.living-live .nav-link:hover { color: var(--v7-paper); }
.living-live .site-footer { display: none; }
.living-home .site-footer,
.living-rooms .site-footer {
  border-color: rgba(243, 240, 232, 0.12);
  background: #020607;
}

.living-world--home {
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
  background: #020607;
}
.living-hero {
  position: relative;
  width: 100%;
  height: 82svh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: #020607;
}
.living-hero .living-canvas,
.living-hero .living-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.living-hero .living-canvas {
  z-index: 1;
  display: block;
  pointer-events: none;
}
.living-hero .living-vignette {
  z-index: 2;
  box-shadow: inset 0 0 180px 38px rgba(0, 0, 0, 0.56);
  pointer-events: none;
}
.living-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 10px solid rgba(1, 4, 5, 0.24);
  pointer-events: none;
}
.living-index {
  top: 92px;
  right: 30px;
  left: 30px;
  z-index: 5;
  color: rgba(243, 240, 232, 0.5);
  font-size: 9px;
}
.living-index span:last-child { color: var(--scene-accent); }
.living-interface {
  top: 28%;
  left: 50%;
  z-index: 8;
  width: min(820px, calc(100% - 56px));
  transform: translateX(-50%);
  text-align: center;
}
.living-wordmark {
  min-height: 178px;
  margin: 0 0 26px;
  color: var(--v7-paper);
  font-family: "Bungee", sans-serif;
  font-size: 92px;
  font-weight: 400;
  line-height: 0.82;
  opacity: 1;
  transition: opacity 360ms ease;
}
.living-wordmark span { display: block; }
.particle-title-ready .living-wordmark { opacity: 0; }
.living-search-prefix {
  display: block;
  width: min(760px, 100%);
  margin: 0 auto 9px;
  color: rgba(243, 240, 232, 0.72);
  font-size: 10px;
  font-weight: 700;
  text-align: left;
}
.living-search {
  position: relative;
  width: min(760px, 100%);
  min-height: 66px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 52px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(116, 244, 222, 0.16);
  border-radius: 36px;
  background: rgba(7, 26, 28, 0.78);
  box-shadow:
    inset -3px -3px 13px rgba(73, 156, 152, 0.15),
    inset 8px 8px 20px rgba(0, 0, 0, 0.68),
    0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.living-search:focus-within {
  border-color: rgba(116, 244, 222, 0.46);
  background: rgba(7, 29, 31, 0.9);
  box-shadow:
    inset -4px -4px 18px rgba(82, 178, 171, 0.19),
    inset 10px 10px 24px rgba(0, 0, 0, 0.74),
    0 24px 68px rgba(0, 0, 0, 0.32);
  transform: scale(1.012);
}
.living-search-icon {
  width: 62px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--v7-paper);
}
.living-search-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.82;
}
.living-search input {
  min-width: 0;
  height: 64px;
  padding: 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--v7-paper);
  font-size: 15px;
}
.living-search input::placeholder { color: rgba(243, 240, 232, 0.48); }
.living-search input::-webkit-search-cancel-button { filter: invert(1); opacity: 0.45; }
.living-search button {
  position: relative;
  width: 44px;
  height: 44px;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(243, 240, 232, 0.72);
  cursor: pointer;
  transition: color 160ms ease, transform 180ms ease;
}
.living-submit-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: translate(-55%, -50%);
  transition: transform 180ms ease;
}
.living-submit-arrow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.living-search button:hover,
.living-search button:focus-visible {
  color: var(--v7-cyan);
  transform: translateX(2px);
}
.living-intents {
  width: min(680px, 100%);
  margin: 15px auto 0;
  justify-content: center;
  gap: 34px;
}
.living-intents button {
  min-height: 32px;
  color: rgba(243, 240, 232, 0.5);
  font-size: 9px;
}
.living-intents button:hover,
.living-intents button:focus-visible {
  border-bottom-color: var(--scene-accent);
  color: var(--v7-paper);
}
.living-status {
  min-height: 17px;
  margin-top: 9px;
  color: var(--scene-accent);
  font-size: 9px;
}
.living-scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 9;
  display: grid;
  justify-items: center;
  gap: 5px;
  transform: translateX(-50%);
  color: var(--v7-paper);
  font-size: 10px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.92);
}
.living-scroll-cue i {
  color: var(--v7-cyan);
  font-size: 18px;
  font-style: normal;
  text-shadow: 0 0 12px rgba(116, 244, 222, 0.72);
}

.living-result {
  right: 5%;
  bottom: 62px;
  left: 5%;
  z-index: 14;
  min-height: 104px;
  grid-template-columns: 72px minmax(0, 1fr) auto 42px;
  padding: 15px 0;
  border-top-color: var(--scene-accent);
  border-bottom-color: rgba(243, 240, 232, 0.18);
  background: rgba(2, 8, 9, 0.92);
  backdrop-filter: blur(14px);
}
.living-play { border-color: rgba(243, 240, 232, 0.8); color: var(--scene-accent); }
.living-result-copy strong {
  color: var(--v7-paper);
  font-family: "Bungee", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.living-result-copy span,
.living-result-copy p,
.living-result-count { color: var(--v7-muted); }
.living-result-action {
  border-color: var(--scene-accent);
  border-radius: 3px;
  color: var(--v7-paper);
}

.home-rooms {
  position: relative;
  width: 100%;
  min-height: 66svh;
  padding: 42px 0 96px;
  overflow: hidden;
  background: #050706;
  color: var(--v7-paper);
}
.home-rooms-head {
  width: min(1320px, 100%);
  margin: 0 auto 4px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.home-rooms-head p,
.room-world-head p {
  margin: 0 0 8px;
  color: var(--v7-cyan);
  font-size: 9px;
}
.home-rooms-head h2,
.room-world-head h1 {
  margin: 0;
  color: var(--v7-paper);
  font-family: "Bungee", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}
.home-rooms-head > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(116, 244, 222, 0.55);
  color: var(--v7-paper);
  font-size: 10px;
}
.home-room-grid {
  width: 100%;
  display: flex;
  gap: clamp(16px, 2.2vw, 30px);
  padding: 28px var(--home-room-gutter) 54px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-padding-inline: var(--home-room-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  perspective: 1100px;
  touch-action: pan-x pan-y pinch-zoom;
}
.home-room-grid::-webkit-scrollbar { display: none; }
.home-room-grid.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}
.home-room-stage {
  --home-room-width: clamp(272px, 31vw, 410px);
  --home-room-gutter: max(58px, 4vw);
  position: relative;
  width: 100%;
  min-height: clamp(286px, 29vw, 400px);
}
.home-room {
  position: relative;
  flex: 0 0 var(--home-room-width);
  width: var(--home-room-width);
  aspect-ratio: 16 / 10;
  min-width: var(--home-room-width);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--v7-paper);
  cursor: pointer;
  opacity: 0.38;
  scroll-snap-align: start;
  transform: scale(0.84);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.23, 1, 0.32, 1);
  text-align: left;
}
.home-room:hover,
.home-room:focus-visible { opacity: 0.82; }
.home-room.is-current {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}
.home-room-card {
  --room-rotate-x: 0deg;
  --room-rotate-y: 0deg;
  --room-media-x: 0px;
  --room-media-y: 0px;
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #091012;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.4);
  transform: rotateX(var(--room-rotate-x)) rotateY(var(--room-rotate-y));
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 560ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.home-room:hover .home-room-card,
.home-room:focus-visible .home-room-card,
.home-room.is-current .home-room-card {
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.52);
}
.home-room:focus-visible { outline: none; }
.home-room:focus-visible .home-room-card {
  box-shadow: 0 0 0 1px rgba(243, 240, 232, 0.78), 0 30px 74px rgba(0, 0, 0, 0.52);
}
.home-room video,
.room-world-option video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.76) contrast(1.08) brightness(0.88);
  transform: scale(1.005);
  transition: filter 650ms ease, transform 900ms ease, opacity 650ms ease;
}
.home-room-shade,
.room-world-option::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(2, 6, 7, 0.9), rgba(2, 6, 7, 0.04) 62%);
  pointer-events: none;
}
.home-room:hover video,
.home-room:focus-visible video,
.home-room.is-current video,
.room-world-option:hover video,
.room-world-option:focus-visible video {
  opacity: 1;
  filter: saturate(1) contrast(1.04) brightness(0.98);
  transform: scale(1.025);
}
.home-room-index,
.home-room strong,
.home-room-description {
  position: absolute;
  z-index: 2;
}
.home-room video {
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  opacity: 0.58;
  transform: translate(var(--room-media-x), var(--room-media-y)) scale(1.05);
}
.home-room.is-current video { opacity: 0.94; }
.home-room-shade {
  background: linear-gradient(to top, rgba(2, 6, 7, 0.82), transparent 58%);
}
.home-room-index {
  top: 16px;
  left: 17px;
  color: rgba(243, 240, 232, 0.62);
  font-size: 8px;
  transform: translateZ(18px);
}
.home-room strong {
  right: 76px;
  bottom: 18px;
  left: 17px;
  color: #fff;
  font-family: "Bungee", sans-serif;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
  transform: translateY(7px) translateZ(24px);
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.23, 1, 0.32, 1);
}
.home-room-description {
  display: none;
}
.home-room.is-current strong,
.home-room:hover strong,
.home-room:focus-visible strong { transform: translateY(0) translateZ(24px); }
.home-room-nav {
  position: absolute;
  top: calc(50% - 34px);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(3, 8, 9, 0);
  color: rgba(243, 240, 232, 0.74);
  font-size: 19px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 220ms ease;
}
.home-room-nav--previous { left: 8px; }
.home-room-nav--next { right: 8px; }
.home-room-nav:hover,
.home-room-nav:focus-visible {
  background: rgba(3, 8, 9, 0.28);
  color: var(--v7-cyan);
  outline: 0;
  transform: scale(1.08);
}
.home-room-nav:disabled {
  opacity: 0;
  pointer-events: none;
}
.home-room-position {
  position: absolute;
  bottom: 6px;
  left: 50%;
  display: flex;
  gap: 6px;
  margin: 0;
  color: rgba(243, 240, 232, 0.72);
  font-size: 8px;
  transform: translateX(-50%);
}
.home-room-position i { color: rgba(243, 240, 232, 0.28); font-style: normal; }

.living-world--rooms {
  height: auto;
  min-height: 100svh;
  padding: 128px 4vw 112px;
  overflow: visible;
  background: #050706;
}
.living-world--rooms .room-world-head {
  position: relative;
  top: auto;
  left: auto;
  width: min(1320px, 100%);
  margin: 0 auto;
}
.room-world-head span {
  display: block;
  margin-top: 14px;
  color: var(--v7-muted);
  font-size: 11px;
}
.living-world--rooms .room-world-builder {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  z-index: 9;
  width: min(760px, 100%);
  margin: 38px auto 46px;
}
.room-world-mode { justify-content: center; }
.room-world-mode label { color: var(--v7-muted); }
.room-world-query {
  min-height: 60px;
  grid-template-columns: minmax(0, 1fr) 64px;
  overflow: hidden;
  border: 1px solid rgba(116, 244, 222, 0.2);
  border-radius: 32px;
  background: rgba(7, 26, 28, 0.82);
  box-shadow: inset 7px 7px 18px rgba(0, 0, 0, 0.64), inset -3px -3px 12px rgba(73, 156, 152, 0.14);
}
.room-world-query input { padding: 0 24px; color: var(--v7-paper); font-size: 13px; }
.room-world-query button { border-left-color: rgba(243, 240, 232, 0.14); color: var(--v7-cyan); }
.living-world--rooms .room-world-list {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 290px;
  gap: 14px;
  border: 0;
}
.living-world--rooms .room-world-option {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(243, 240, 232, 0.14);
  border-radius: 4px;
  background: #091012;
  color: var(--v7-paper);
}
.living-world--rooms .room-world-option:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.living-world--rooms .room-world-option:nth-child(2) { grid-column: span 5; }
.living-world--rooms .room-world-option:nth-child(3) { grid-column: span 5; }
.living-world--rooms .room-world-option:nth-child(4) { grid-column: span 6; }
.living-world--rooms .room-world-option:nth-child(5) { grid-column: span 6; }
.living-world--rooms .room-world-number,
.living-world--rooms .room-world-name,
.living-world--rooms .room-world-description,
.living-world--rooms .room-world-enter { position: absolute; z-index: 2; }
.living-world--rooms .room-world-number { top: 22px; left: 22px; color: rgba(243, 240, 232, 0.7); }
.living-world--rooms .room-world-name {
  right: 70px;
  bottom: 50px;
  left: 22px;
  color: #fff;
  font-family: "Bungee", sans-serif;
  font-size: 29px;
  font-weight: 400;
}
.living-world--rooms .room-world-description {
  right: 70px;
  bottom: 23px;
  left: 22px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.living-world--rooms .room-world-enter { right: 24px; bottom: 24px; color: var(--v7-cyan); }
.living-world--rooms .room-world-option:hover,
.living-world--rooms .room-world-option:focus-visible,
.living-world--rooms .room-world-option.is-current { background: #091012; color: var(--v7-paper); }
.living-world--rooms .room-error {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  width: min(760px, 100%);
  margin: 18px auto 0;
  text-align: center;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.living-live { overflow: hidden; }
.living-live [hidden] { display: none !important; }
.living-live .site-nav [data-about-open] { display: none; }
.living-live .live-page {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  background: #020607;
}
.living-live .live-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100svh;
  opacity: 1;
  filter: none;
  transform: none;
  object-fit: cover;
  transition: opacity 420ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}
.living-live .live-video.is-changing-room {
  opacity: 0.22;
  transform: scale(1.025);
}
.living-live .live-shade {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 5, 6, 0.34), transparent 32%);
  pointer-events: none;
}
.living-live .live-shell {
  position: fixed;
  inset: 0;
  z-index: 4;
  width: 100vw;
  height: 100svh;
  min-height: 0;
  padding: 0;
  pointer-events: none;
}
.living-live .live-room-indicator {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 7;
  display: grid;
  gap: 3px;
  min-width: 0;
  color: var(--v7-paper);
  text-align: left;
  opacity: 0.62;
  transition: opacity 180ms ease, transform 280ms ease;
  pointer-events: none;
}
.living-live .live-room-indicator > span {
  color: var(--v7-cyan);
  font-size: 8px;
}
.living-live .live-room-indicator > strong {
  font-family: "Bungee", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.living-live .live-room-indicator.is-visible {
  opacity: 1;
  transform: translateY(-5px) scale(1.04);
  transform-origin: left bottom;
}
.living-live .live-owner-now {
  position: fixed;
  top: auto;
  bottom: 70px;
  left: 28px;
  z-index: 7;
  max-width: min(320px, calc(100vw - 56px));
  display: grid;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--v7-paper);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.92);
  backdrop-filter: none;
  pointer-events: auto;
}
.living-live .live-owner-now > span {
  color: var(--v7-cyan);
  font-size: 8px;
}
.living-live .live-owner-now > strong {
  overflow: hidden;
  font-family: "Bungee", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.living-live .live-owner-now > small {
  color: rgba(243, 240, 232, 0.62);
  font-size: 9px;
}
.living-live .live-page.is-settings-open .live-room-indicator,
.living-live .live-page.is-settings-open .live-owner-now,
.living-live .live-page.is-pass-open .live-room-indicator,
.living-live .live-page.is-pass-open .live-owner-now {
  opacity: 0;
}
.living-live .live-player {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 8;
  width: 278px;
  min-height: 72px;
  padding: 10px 14px 11px;
  border: 0;
  border-radius: 36px;
  background: rgba(2, 8, 9, 0.58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: auto;
}
.living-live .live-player-canvas {
  position: absolute;
  top: -24px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100% + 24px);
  border-radius: inherit;
  pointer-events: none;
}
.living-live .live-player-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.living-live .live-icon-action {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: rgba(243, 240, 232, 0.7);
  font-family: inherit;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease,
    transform 160ms ease;
}
.living-live .live-player.has-three-console .live-icon-action {
  border-color: transparent;
  background: transparent;
  color: rgba(243, 240, 232, 0.82);
  transform: translateY(var(--dock-y, 0)) scale(var(--dock-scale, 1));
  transform-origin: center;
  transition: color 140ms ease;
  will-change: transform;
}
.living-live .live-player.has-three-console .live-icon-action:hover,
.living-live .live-player.has-three-console .live-icon-action:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--v7-cyan);
}
.living-live .live-icon-action:hover,
.living-live .live-icon-action:focus-visible,
.living-live .live-icon-action.is-active {
  border-color: rgba(116, 244, 222, 0.38);
  background: rgba(116, 244, 222, 0.09);
  color: var(--v7-cyan);
}
.living-live .live-icon-action:active { transform: scale(0.94); }
.living-live .live-player.has-three-console .live-icon-action:active {
  transform: translateY(var(--dock-y, 0)) scale(calc(var(--dock-scale, 1) * 0.94));
}
.living-live .live-icon-action--play {
  width: 50px;
  height: 50px;
  border-color: rgba(243, 240, 232, 0.82);
  background: var(--v7-paper);
  color: #020607;
  font-size: 15px;
}
.living-live .live-icon-action--play:hover,
.living-live .live-icon-action--play:focus-visible {
  border-color: var(--v7-cyan);
  background: var(--v7-cyan);
  color: #020607;
}
.living-live .live-player.has-three-console .live-icon-action--play,
.living-live .live-player.has-three-console .live-icon-action--play:hover,
.living-live .live-player.has-three-console .live-icon-action--play:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--v7-paper);
}
.living-live .live-play-glyph { display: block; transform: translateX(1px); }
.living-live .live-room-arrow {
  width: 10px;
  height: 10px;
  display: block;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.living-live .live-room-arrow--left { transform: rotate(-135deg); }
.living-live .live-room-arrow--right { transform: rotate(45deg); }
.living-live .live-icon-action--play[data-playing="true"] .live-play-glyph {
  letter-spacing: -2px;
  transform: none;
}
.living-live .live-progress {
  position: absolute;
  right: 12px;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  overflow: hidden;
  background: rgba(243, 240, 232, 0.14);
}
.living-live .live-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--v7-cyan);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 1s linear;
}
.living-live .live-panel-launch {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 8;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(116, 244, 222, 0.36);
  border-radius: 4px;
  background: rgba(2, 8, 9, 0.78);
  color: var(--v7-cyan);
  font-size: 9px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  pointer-events: auto;
}
.living-live .live-panel-launch.is-error {
  border-color: rgba(255, 75, 69, 0.72);
  color: #ff7b75;
}
.living-live .live-panel {
  position: fixed;
  right: 28px;
  bottom: 88px;
  z-index: 10;
  width: min(440px, calc(100vw - 56px));
  max-height: calc(100svh - 180px);
  margin: 0;
  padding: 25px;
  overflow-y: auto;
  border: 1px solid rgba(243, 240, 232, 0.22);
  border-radius: 6px;
  background: rgba(2, 9, 10, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  pointer-events: auto;
}
.living-live .live-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(243, 240, 232, 0.58);
  cursor: pointer;
}
.living-live .live-panel-close:hover,
.living-live .live-panel-close:focus-visible { color: var(--v7-paper); }
.living-live .live-panel-kicker {
  margin: 0 0 8px;
  color: var(--v7-cyan);
  font-size: 9px;
}
.living-live .live-panel h2 {
  max-width: 360px;
  margin: 0 0 11px;
  color: var(--v7-paper);
  font-family: "Bungee", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.08;
}
.living-live .live-panel > p:not(.live-panel-kicker):not(.stream-pass-message):not(.live-copy-status) {
  margin: 0 0 16px;
  color: rgba(243, 240, 232, 0.66);
  font-size: 11px;
  line-height: 1.55;
}
.living-live .live-room-indicator { bottom: 118px; }
.living-live .live-owner-now { bottom: 164px; }
.living-live .live-track-offer,
.living-live .stream-pass {
  position: fixed;
  z-index: 8;
  color: var(--v7-paper);
  pointer-events: auto;
  transition: opacity 180ms ease, transform 240ms ease;
}
.living-live .live-track-offer {
  bottom: 20px;
  left: 28px;
  width: 218px;
  display: grid;
  gap: 4px;
}
.living-live .live-track-offer > span {
  padding-left: 13px;
  color: rgba(243, 240, 232, 0.62);
  font-size: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}
.living-live .track-license-cta {
  position: relative;
  width: 100%;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--v7-paper);
  cursor: pointer;
  isolation: isolate;
  filter: drop-shadow(0 15px 32px rgba(0, 0, 0, 0.48));
}
.living-live .track-license-canvas,
.living-live .stream-pass-cta-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.living-live .track-license-cta strong {
  font-family: "Bungee", sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9);
}
.living-live .track-license-cta:focus-visible,
.living-live .stream-pass-cta:focus-visible {
  outline: 2px solid var(--v7-cyan);
  outline-offset: 3px;
}
.living-live .track-license-cta:disabled,
.living-live .stream-pass-cta:disabled { cursor: wait; opacity: 0.68; }
.living-live .live-track-offer > p {
  min-height: 11px;
  margin: 0 0 0 13px;
  color: var(--v7-cyan);
  font-size: 8px;
}
.living-live .stream-pass {
  right: 28px;
  bottom: 14px;
  width: 346px;
  display: grid;
  gap: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  animation: stream-pass-rise 360ms cubic-bezier(0.18, 0.82, 0.2, 1) both;
}
.living-live .stream-pass-form { width: 100%; margin: 0; }
.living-live .stream-pass-cta {
  position: relative;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 8px;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--v7-paper);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}
.living-live .stream-pass-clock {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1px;
  color: var(--v7-paper);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.94);
}
.living-live .stream-pass-clock > span,
.living-live .stream-pass-clock > small,
.living-live .stream-pass-command > small {
  color: rgba(243, 240, 232, 0.6);
  font-size: 7px;
  line-height: 1;
}
.living-live .stream-pass-clock > strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.living-live .stream-pass-command {
  min-width: 0;
  display: grid;
  gap: 5px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.92);
}
.living-live .stream-pass-command > strong {
  font-family: "Bungee", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.12;
}
.living-live .stream-pass-terms {
  margin: 1px 13px 0 !important;
  color: rgba(243, 240, 232, 0.48) !important;
  font-size: 7px !important;
  line-height: 1.2 !important;
  text-align: right;
}
.living-live .stream-pass-message,
.living-live .live-copy-status {
  min-height: 11px;
  margin: 1px 13px 0;
  color: var(--v7-cyan);
  font-size: 8px;
  text-align: right;
}
.living-live .stream-pass.is-error .stream-pass-cta {
  filter: drop-shadow(0 0 22px rgba(255, 75, 69, 0.48));
}
.living-live .live-page.is-settings-open .live-track-offer,
.living-live .live-page.is-settings-open .stream-pass,
.living-live .live-page.is-settings-open .live-session-open {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.living-live .live-session-open {
  right: 28px;
  bottom: 24px;
  width: 186px;
  min-height: 52px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-radius: 26px;
  text-align: left;
}
.living-live .live-session-open > span {
  color: rgba(243, 240, 232, 0.55);
  font-size: 7px;
}
.living-live .live-session-open > strong {
  font-family: "Bungee", sans-serif;
  font-size: 10px;
  font-weight: 400;
}

@keyframes stream-pass-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.living-live .live-links,
.living-live .stream-mix {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  border: 0;
}
.living-live .live-link-action {
  width: 100%;
  min-height: 64px;
  display: grid;
  gap: 5px;
  align-content: center;
  padding: 11px 13px;
  border: 1px solid rgba(243, 240, 232, 0.16);
  border-radius: 4px;
  background: rgba(243, 240, 232, 0.035);
  color: var(--v7-paper);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.living-live .live-link-action:hover,
.living-live .live-link-action:focus-visible,
.living-live .live-link-action.is-copied {
  border-color: rgba(116, 244, 222, 0.48);
  background: rgba(116, 244, 222, 0.08);
}
.living-live .live-link-action strong { font-size: 11px; font-weight: 500; }
.living-live .live-link-action span { color: rgba(243, 240, 232, 0.52); font-size: 9px; }
.living-live .live-copy-fallback {
  width: 100%;
  margin-top: 8px;
  padding: 9px;
  border: 1px solid var(--v7-cyan);
  background: #020607;
  color: var(--v7-paper);
  font-size: 9px;
}
.living-live .live-settings {
  right: auto;
  bottom: 18px;
  left: 50%;
  width: min(520px, calc(100vw - 24px));
  height: 330px;
  max-height: none;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  backdrop-filter: none;
  transform: translateX(-50%);
  transform-origin: bottom center;
  pointer-events: none;
}
.living-live .live-settings.is-open {
  animation: orbital-console-open 360ms ease-out both;
}
.living-live .live-settings.is-closing {
  animation: orbital-console-close 340ms ease-in both;
}
.living-live .live-console-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(116, 244, 222, 0.18));
  pointer-events: none;
}
.living-live .live-settings .live-dsp {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  display: block;
  margin: 0;
  pointer-events: none;
}
.living-live .live-settings .dsp-group {
  position: absolute;
  width: 92px;
  min-height: 104px;
  opacity: 0;
  transform-origin: center;
  will-change: opacity, transform;
  pointer-events: none;
}
.living-live .live-settings .dsp-group[data-dsp-group="speed"] {
  top: 142px;
  left: 30px;
}
.living-live .live-settings .dsp-group[data-dsp-group="tone"] {
  top: 128px;
  left: calc(50% - 46px);
}
.living-live .live-settings .dsp-group[data-dsp-group="space"] {
  top: 142px;
  right: 30px;
}
.living-live .live-settings .rotary-dial {
  width: 66px;
  height: 66px;
  pointer-events: auto;
}
.living-live .live-settings.has-three-console .rotary-dial {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.living-live .live-settings.has-three-console .rotary-dial:hover,
.living-live .live-settings.has-three-console .rotary-dial.is-dragging {
  background: transparent;
  box-shadow: none;
}
.living-live .live-settings.has-three-console .rotary-needle { opacity: 0; }
.living-live .live-settings .dsp-group > span {
  margin-bottom: 4px;
  color: #fff;
  font-family: "Bungee", sans-serif;
  font-size: 10px;
  text-shadow: 0 2px 2px #000, 0 0 8px #000, 0 0 18px rgba(0, 0, 0, 0.96);
}
.living-live .live-settings .rotary-value {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes orbital-console-open {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes orbital-console-close {
  from { opacity: 1; }
  to { opacity: 0; }
}
.obs-view .site-header,
.obs-view .live-shell,
.obs-view .live-shade { display: none !important; }
.obs-view .live-video { width: 100vw; height: 100svh; }
.living-live .btn-primary {
  border-radius: 3px;
  background: var(--v7-cyan);
  color: #020607;
}

@media (max-width: 900px) {
  .living-interface { top: 29%; }
  .living-wordmark { min-height: 145px; font-size: 72px; }
  .home-room-grid { grid-template-rows: 240px 240px 280px; }
}

@media (max-width: 700px) {
  .living-home .site-header,
  .living-rooms .site-header,
  .living-live .site-header {
    min-height: 66px;
    padding: 0 18px;
    align-items: center;
  }
  .living-home .site-header::after,
  .living-rooms .site-header::after,
  .living-live .site-header::after { right: 18px; left: 18px; }
  .living-home .site-nav,
  .living-rooms .site-nav,
  .living-live .site-nav { gap: 13px; }
  .living-home .brand,
  .living-rooms .brand,
  .living-live .brand { font-size: 9px; }
  .living-home .site-nav a,
  .living-home .nav-link,
  .living-rooms .site-nav a,
  .living-rooms .nav-link,
  .living-live .site-nav a,
  .living-live .nav-link { font-size: 8px; }

  .living-hero { height: 84svh; min-height: 620px; }
  .living-hero::after { border-width: 6px; }
  .living-hero .living-vignette { box-shadow: inset 0 0 90px 15px rgba(0, 0, 0, 0.52); }
  .living-index { top: 84px; right: 18px; left: 18px; font-size: 7px; }
  .living-interface {
    top: 27%;
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
  }
  .living-wordmark { min-height: 105px; margin-bottom: 23px; font-size: 46px; }
  .living-lead { font-size: 11px; }
  .living-search {
    min-height: 58px;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    border-radius: 31px;
  }
  .living-search-icon { width: 48px; height: 56px; }
  .living-search input { height: 56px; padding: 0 3px; font-size: 12px; }
  .living-search button { width: 44px; height: 44px; }
  .living-intents { gap: 0; justify-content: space-between; }
  .living-intents button { padding: 0 3px; font-size: 7px; }
  .living-status { font-size: 8px; }
  .living-scroll-cue { bottom: 14px; font-size: 9px; }
  .living-result {
    right: 18px;
    bottom: 48px;
    left: 18px;
    min-height: 148px;
    grid-template-columns: 52px minmax(0, 1fr) 38px;
    gap: 9px;
  }
  .living-result-copy strong { font-size: 13px; }
  .living-result-action { grid-column: 2; justify-self: start; }

  .home-rooms { min-height: 58svh; padding: 34px 0 76px; overflow: hidden; }
  .home-rooms-head { margin-bottom: 2px; padding: 0 18px; align-items: center; }
  .home-rooms-head h2 { font-size: 39px; }
  .home-rooms-head > a { min-height: 34px; font-size: 8px; }
  .home-room-stage {
    --home-room-width: min(76vw, 312px);
    --home-room-gutter: 18px;
    min-height: 286px;
  }
  .home-room-grid {
    width: 100%;
    margin: 0;
    display: flex;
    gap: 14px;
    padding: 22px var(--home-room-gutter) 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-room-grid::-webkit-scrollbar { display: none; }
  .home-room {
    flex: 0 0 var(--home-room-width);
    width: var(--home-room-width);
    height: auto;
    min-width: var(--home-room-width);
    min-height: 0;
    scroll-snap-align: start;
  }
  .home-room strong { font-size: 18px; }
  .home-room-nav { top: calc(50% - 32px); width: 42px; height: 42px; }
  .home-room-nav--previous { left: 8px; }
  .home-room-nav--next { right: 8px; }

  .living-world--rooms { padding: 104px 18px 80px; }
  .home-rooms-head h2,
  .room-world-head h1 { font-size: 42px; }
  .room-world-head span { font-size: 9px; }
  .living-world--rooms .room-world-builder { margin: 30px auto 34px; }
  .room-world-mode { justify-content: flex-start; gap: 18px; }
  .room-world-query { min-height: 56px; grid-template-columns: minmax(0, 1fr) 58px; }
  .room-world-query input { padding: 0 18px; font-size: 11px; }
  .living-world--rooms .room-world-list { display: grid; grid-template-columns: 1fr; grid-auto-rows: 64svh; }
  .living-world--rooms .room-world-option:nth-child(n) { grid-column: auto; grid-row: auto; }
  .living-world--rooms .room-world-name { font-size: 24px; }

  .living-live .live-player {
    right: 18px;
    bottom: 16px;
    left: 18px;
    width: auto;
    transform: none;
  }
  .living-live .live-owner-now {
    top: auto;
    bottom: 238px;
    left: 18px;
    max-width: calc(100vw - 36px);
  }
  .living-live .live-room-indicator {
    top: auto;
    bottom: 202px;
    left: 18px;
    min-width: 130px;
  }
  .living-live .live-panel {
    right: 12px;
    bottom: 94px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 176px);
    padding: 22px 18px;
  }
  .living-live .live-panel h2 { padding-right: 30px; font-size: 19px; }
  .living-live .stream-pass {
    right: 12px;
    bottom: 94px;
    left: auto;
    width: 220px;
    gap: 1px;
    padding: 0;
  }
  .living-live .stream-pass-cta {
    min-height: 70px;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 4px;
    padding: 7px 10px 7px 5px;
  }
  .living-live .stream-pass-clock > strong { font-size: 11px; }
  .living-live .stream-pass-command > strong { font-size: 8px; }
  .living-live .stream-pass-command > small { font-size: 6px; }
  .living-live .stream-pass-terms { display: none; }
  .living-live .stream-pass-message { margin-right: 7px; font-size: 7px; }
  .living-live .live-track-offer {
    bottom: 96px;
    left: 12px;
    width: 134px;
    gap: 2px;
  }
  .living-live .live-track-offer > span { padding-left: 8px; font-size: 7px; }
  .living-live .track-license-cta { min-height: 52px; padding: 0 8px; }
  .living-live .track-license-cta strong { font-size: 8px; }
  .living-live .live-track-offer > p { margin-left: 8px; font-size: 7px; }
  .living-live .live-session-open {
    right: 12px;
    bottom: 102px;
    width: 150px;
  }
  .living-live .live-settings {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    height: 282px;
    padding: 0;
    transform: none;
  }
  .living-live .live-settings .dsp-group {
    width: 82px;
    min-height: 100px;
  }
  .living-live .live-settings .dsp-group[data-dsp-group="speed"] {
    top: 126px;
    left: 4px;
  }
  .living-live .live-settings .dsp-group[data-dsp-group="tone"] {
    top: 108px;
    left: calc(50% - 41px);
  }
  .living-live .live-settings .dsp-group[data-dsp-group="space"] {
    top: 126px;
    right: 4px;
  }
  .living-live .live-settings .rotary-dial { width: 62px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .living-wordmark,
  .living-search,
  .home-room video,
  .room-world-option video { transition: none; }
  .living-live .live-settings:not([hidden]),
  .living-live .live-settings:not([hidden]) .dsp-group { animation: none; }
  .living-live .rotary-dial,
  .living-live .rotary-needle { transition: none; }
}

/* Rooms: Sable dock, radial use menu and transient sound controls. */
.living-live .brand::before {
  width: 21px;
  height: 23px;
  background: url("/static/img/pick-face.png") center / contain no-repeat;
  clip-path: none;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.52));
}
.living-live .live-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.living-live .live-owner-now { display: none !important; }
.living-live .live-room-indicator {
  bottom: 24px;
  opacity: 0.72;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.94);
}
.living-live .live-shade {
  background: linear-gradient(to top, rgba(0, 4, 5, 0.38), transparent 25%);
  opacity: 1;
  transition: opacity 420ms ease;
}
.living-live .live-player {
  bottom: 18px;
  width: 228px;
  min-height: 56px;
  padding: 6px 8px 7px;
  border: 1px solid rgba(243, 240, 232, 0.14);
  border-radius: 12px;
  background: rgba(3, 8, 9, 0.34);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(11px) saturate(1.08);
}
.living-live .live-player-canvas {
  top: -22px;
  height: calc(100% + 22px);
}
.living-live .live-player-actions { gap: 3px; }
.living-live .live-icon-action {
  width: 40px;
  height: 40px;
  font-size: 15px;
}
.living-live .live-icon-action--play {
  width: 44px;
  height: 44px;
}
.living-live .live-progress { display: none !important; }

.living-live .live-use-menu {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 9;
  width: 106px;
  height: 48px;
  color: var(--v7-paper);
  pointer-events: auto;
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.living-live .live-use-toggle {
  position: relative;
  z-index: 4;
  width: 106px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--v7-paper);
  cursor: pointer;
  isolation: isolate;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.38));
}
.living-live .live-use-toggle:focus-visible {
  outline: 2px solid var(--v7-cyan);
  outline-offset: 3px;
}
.living-live .live-use-toggle > strong {
  position: relative;
  z-index: 2;
  font-family: "Bungee", sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.94);
}
.living-live .live-use-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.living-live .live-use-options {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.living-live .live-use-option,
.living-live .live-track-offer,
.living-live .stream-pass,
.living-live .live-session-open {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  animation: none;
  transform: translate(0, 0) scale(0.42) rotate(7deg);
  transform-origin: right bottom;
  pointer-events: none;
  transition: opacity 170ms ease,
    transform 320ms cubic-bezier(0.16, 0.86, 0.24, 1);
}
.living-live .live-track-offer { width: 204px; display: block; }
.living-live .stream-pass { width: 236px; display: block; }
.living-live .live-session-open { width: 204px; min-height: 54px; }
.living-live .live-use-options.is-open .live-use-option:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.living-live .live-use-options.is-open .live-use-option--track:not([hidden]) {
  transform: translate(-126px, -12px) scale(1) rotate(0deg);
}
.living-live .live-use-options.is-open .live-use-option--soundtrack:not([hidden]) {
  transform: translate(-43px, -82px) scale(1) rotate(0deg);
  transition-delay: 45ms;
}
.living-live .track-license-cta,
.living-live .stream-pass-cta,
.living-live .live-session-open {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 3px 5px 3px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--v7-paper);
  text-align: left;
  cursor: pointer;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.48));
}
.living-live .live-use-option-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 240, 232, 0.19);
  border-radius: 50%;
  background: rgba(3, 9, 10, 0.44);
  color: var(--v7-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.living-live .track-license-cta > span:last-child,
.living-live .live-session-open > span:last-child,
.living-live .stream-pass-command {
  min-width: 0;
  display: grid;
  gap: 4px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.96);
}
.living-live .track-license-cta strong,
.living-live .live-session-open strong,
.living-live .stream-pass-command > strong {
  font-family: "Bungee", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.1;
}
.living-live .track-license-cta small,
.living-live .live-session-open small,
.living-live .stream-pass-command > small {
  color: rgba(243, 240, 232, 0.62);
  font-size: 7px;
  line-height: 1.2;
}
.living-live .live-track-offer > p,
.living-live .stream-pass-message {
  position: absolute;
  top: calc(100% + 2px);
  right: 4px;
  left: 48px;
  min-height: 10px;
  margin: 0;
  color: var(--v7-cyan);
  font-size: 7px;
  line-height: 1.25;
  text-align: left;
  text-shadow: 0 2px 10px #000;
}
.living-live .stream-pass-form { width: 100%; margin: 0; }
.living-live .stream-pass-cta {
  position: relative;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 58px;
  padding-left: 0;
  isolation: isolate;
}
.living-live .stream-pass-cta-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.living-live .stream-pass-clock,
.living-live .stream-pass-command { position: relative; z-index: 2; }
.living-live .stream-pass-clock {
  min-width: 58px;
  display: grid;
  place-items: center;
  color: var(--v7-paper);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.96);
}
.living-live .stream-pass-clock > strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
}
.living-live .live-page.is-settings-open .live-use-menu {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.living-live .live-settings-goo {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: url("#live-goo");
  pointer-events: none;
}
.living-live .live-settings-goo i {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: block;
  border-radius: 50%;
  background: rgba(5, 13, 14, 0.78);
  box-shadow: inset 0 0 0 1px rgba(116, 244, 222, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.26);
  transform: translateX(-50%) scale(0.18);
  transition: transform 390ms cubic-bezier(0.18, 0.82, 0.2, 1),
    opacity 220ms ease;
}
.living-live .live-settings-goo .live-goo-origin {
  width: 52px;
  height: 52px;
  opacity: 0.58;
  transform: translateX(-50%) scale(0.72);
}
.living-live .live-settings-goo .live-goo-node {
  width: 78px;
  height: 78px;
  opacity: 0;
}
.living-live .live-settings.is-open .live-goo-node { opacity: 0.72; }
.living-live .live-settings.is-open .live-goo-node--speed {
  transform: translate(calc(-50% - 184px), -92px) scale(1);
  transition-delay: 90ms;
}
.living-live .live-settings.is-open .live-goo-node--tone {
  transform: translate(-50%, -108px) scale(1);
  transition-delay: 45ms;
}
.living-live .live-settings.is-open .live-goo-node--space {
  transform: translate(calc(-50% + 184px), -92px) scale(1);
}
.living-live .live-settings .rotary-dial {
  cursor: grab;
  touch-action: none;
}
.living-live .live-settings .rotary-dial.is-dragging { cursor: grabbing; }

.living-live .site-header,
.living-live .live-room-indicator,
.living-live .live-player,
.living-live .live-use-menu {
  transition-property: opacity, transform;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.living-live.is-live-ui-idle .site-header,
.living-live .live-page.is-ui-idle .live-room-indicator,
.living-live .live-page.is-ui-idle .live-player,
.living-live .live-page.is-ui-idle .live-use-menu {
  opacity: 0;
  pointer-events: none;
}
.living-live .live-page.is-ui-idle .live-player {
  transform: translate(-50%, 14px) scale(0.97);
}
.living-live .live-page.is-ui-idle .live-use-menu,
.living-live .live-page.is-ui-idle .live-room-indicator {
  transform: translateY(10px);
}
.living-live .live-page.is-ui-idle .live-shade { opacity: 0; }
@media (hover: hover) and (pointer: fine) {
  .living-live .live-page.is-ui-idle { cursor: none; }
}

@media (max-width: 700px) {
  .living-live .live-player {
    right: auto;
    bottom: 12px;
    left: 50%;
    width: 220px;
    min-height: 56px;
    transform: translateX(-50%);
  }
  .living-live .live-room-indicator {
    bottom: 78px;
    left: 14px;
  }
  .living-live .live-use-menu {
    right: 12px;
    bottom: 76px;
  }
  .living-live .live-use-options.is-open .live-use-option--track:not([hidden]) {
    transform: translate(-2px, -66px) scale(1) rotate(0deg);
  }
  .living-live .live-use-options.is-open .live-use-option--soundtrack:not([hidden]) {
    transform: translate(-2px, -128px) scale(1) rotate(0deg);
  }
  .living-live .live-track-offer { width: 200px; }
  .living-live .stream-pass { width: 230px; }
  .living-live .live-session-open { width: 200px; }
  .living-live .live-settings {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 274px;
    transform: none;
  }
  .living-live .live-settings.is-open .live-goo-node--speed {
    transform: translate(calc(-50% - 146px), -82px) scale(0.94);
  }
  .living-live .live-settings.is-open .live-goo-node--tone {
    transform: translate(-50%, -101px) scale(0.94);
  }
  .living-live .live-settings.is-open .live-goo-node--space {
    transform: translate(calc(-50% + 146px), -82px) scale(0.94);
  }
  .living-live .live-page.is-ui-idle .live-player {
    transform: translate(-50%, 14px) scale(0.97);
  }
}

@media (prefers-reduced-motion: reduce) {
  .living-live .live-settings-goo i,
  .living-live .live-use-option,
  .living-live .live-use-menu,
  .living-live .live-player { transition: none; }
}

/* Rooms: responsive transport controls and one contextual action island. */
.living-live .live-player {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: opacity 260ms ease,
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 180ms ease, box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .living-live .live-player:hover {
    background: rgba(3, 8, 9, 0.22);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px) saturate(1.06);
  }
}
.living-live .live-player:has(.live-icon-action:focus-visible) {
  background: rgba(3, 8, 9, 0.22);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px) saturate(1.06);
}

.living-live .live-use-menu {
  width: 106px;
  height: 48px;
  background: transparent;
  box-shadow: none;
  transition: width 340ms cubic-bezier(0.16, 0.86, 0.24, 1),
    height 340ms cubic-bezier(0.16, 0.86, 0.24, 1),
    opacity 220ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.living-live .live-use-menu.is-open {
  width: 354px;
  height: 112px;
}
.living-live .live-use-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 106px;
  height: 48px;
  filter: none;
  background: transparent;
  box-shadow: none;
  transition: width 260ms ease, height 260ms ease, bottom 260ms ease,
    background 180ms ease, box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}
.living-live .live-use-toggle:has(:focus-visible),
.living-live .live-use-toggle:focus-visible {
  background: rgba(3, 8, 9, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(9px) saturate(1.06);
}
@media (hover: hover) and (pointer: fine) {
  .living-live .live-use-toggle:hover {
    background: rgba(3, 8, 9, 0.22);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(9px) saturate(1.06);
  }
}
.living-live .live-use-menu.is-open .live-use-toggle {
  bottom: 32px;
  width: 44px;
  height: 44px;
}
.living-live .live-use-toggle > strong,
.living-live .live-use-close {
  transition: opacity 160ms ease, transform 220ms ease;
}
.living-live .live-use-close {
  position: absolute;
  z-index: 2;
  opacity: 0;
  color: var(--v7-paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  transform: scale(0.66) rotate(-24deg);
}
.living-live .live-use-menu.is-open .live-use-toggle > strong {
  opacity: 0;
  transform: scale(0.7);
}
.living-live .live-use-menu.is-open .live-use-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.living-live .live-use-options {
  position: absolute;
  right: 50px;
  bottom: 0;
  left: auto;
  width: 296px;
  height: 112px;
  display: grid;
  grid-template-rows: repeat(2, 54px);
  gap: 4px;
  pointer-events: none;
}
.living-live .live-use-options.is-open { pointer-events: auto; }
.living-live .live-use-option,
.living-live .live-track-offer,
.living-live .stream-pass,
.living-live .live-session-open {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 54px;
  transform: translateX(18px) scale(0.98);
  transform-origin: right center;
}
.living-live .live-use-options.is-open .live-use-option--track:not([hidden]),
.living-live .live-use-options.is-open .live-use-option--soundtrack:not([hidden]) {
  transform: translateX(0) scale(1);
}
.living-live .track-license-cta,
.living-live .stream-pass-cta,
.living-live .live-session-open {
  min-height: 54px;
  grid-template-columns: minmax(0, 1fr) 58px 14px;
  gap: 7px;
  padding: 4px 8px 4px 11px;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
  transition: background 160ms ease, box-shadow 160ms ease,
    backdrop-filter 160ms ease, transform 160ms ease;
}
.living-live .track-license-cta:focus-visible,
.living-live .stream-pass-cta:focus-visible,
.living-live .live-session-open:focus-visible {
  background: rgba(3, 8, 9, 0.28);
  box-shadow: 0 11px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(9px) saturate(1.06);
}
@media (hover: hover) and (pointer: fine) {
  .living-live .track-license-cta:hover,
  .living-live .stream-pass-cta:hover,
  .living-live .live-session-open:hover {
    background: rgba(3, 8, 9, 0.28);
    box-shadow: 0 11px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(9px) saturate(1.06);
  }
}
.living-live .live-use-copy,
.living-live .stream-pass-command {
  min-width: 0;
  display: grid;
  gap: 4px;
  text-shadow: 0 2px 11px rgba(0, 0, 0, 0.96);
}
.living-live .live-use-copy strong,
.living-live .stream-pass-command > strong {
  font-family: "Bungee", sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.1;
}
.living-live .live-use-copy small,
.living-live .stream-pass-command > small {
  color: rgba(243, 240, 232, 0.67);
  font-size: 7px;
  line-height: 1.15;
}
.living-live .live-track-wave {
  width: 52px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--v7-cyan);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.76));
}
.living-live .live-track-wave i {
  width: 2px;
  height: 8px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  animation: live-track-wave 1.2s ease-in-out infinite alternate;
}
.living-live .live-track-wave i:nth-child(2) { height: 17px; animation-delay: -0.45s; }
.living-live .live-track-wave i:nth-child(3) { height: 24px; animation-delay: -0.8s; }
.living-live .live-track-wave i:nth-child(4) { height: 14px; animation-delay: -0.25s; }
.living-live .live-track-wave i:nth-child(5) { height: 7px; animation-delay: -0.65s; }
@keyframes live-track-wave {
  from { transform: scaleY(0.48); opacity: 0.58; }
  to { transform: scaleY(1); opacity: 1; }
}
.living-live .live-use-arrow {
  position: relative;
  z-index: 2;
  color: var(--v7-paper);
  font-size: 14px;
  text-shadow: 0 2px 8px #000;
}
.living-live .stream-pass-clock {
  min-width: 58px;
  color: var(--v7-paper);
}
.living-live .stream-pass-cta-canvas { border-radius: 10px; }
.living-live .live-track-offer > p { display: none; }
.living-live .live-use-toast {
  position: absolute;
  right: 0;
  bottom: calc(100% + 7px);
  left: auto;
  width: min(290px, calc(100vw - 24px));
  min-height: 0;
  margin: 0;
  color: var(--v7-paper);
  font-size: 8px;
  line-height: 1.3;
  text-align: right;
  text-shadow: 0 2px 5px #000, 0 0 16px #000;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}
.living-live .live-use-toast:empty {
  opacity: 0;
  transform: translateY(4px);
}
.living-live .live-page.is-use-open .live-room-indicator { opacity: 0; }

.living-live .live-settings {
  bottom: 18px;
  width: min(500px, calc(100vw - 20px));
  height: 230px;
}
.living-live .live-settings .dsp-group {
  width: 92px;
  min-height: 104px;
}
.living-live .live-settings .dsp-group[data-dsp-group="speed"],
.living-live .live-settings .dsp-group[data-dsp-group="tone"],
.living-live .live-settings .dsp-group[data-dsp-group="space"] {
  top: 58px;
}
.living-live .live-settings .dsp-group[data-dsp-group="speed"] { left: 46px; }
.living-live .live-settings .dsp-group[data-dsp-group="tone"] { left: calc(50% - 46px); }
.living-live .live-settings .dsp-group[data-dsp-group="space"] { right: 46px; }
.living-live .live-settings .rotary-dial {
  position: relative;
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto;
  cursor: ns-resize;
}
.living-live .live-settings .rotary-dial.is-dragging { cursor: ns-resize; }
.living-live .live-settings .dsp-group::after {
  content: "";
  display: none;
  position: absolute;
  top: 72px;
  right: 8px;
  left: 8px;
  z-index: 2;
  height: 24px;
  background: linear-gradient(to bottom, transparent,
    rgba(0, 0, 0, 0.34) 42%, transparent 92%);
  filter: blur(4px);
  pointer-events: none;
}
.living-live .live-settings .dsp-group > span {
  position: absolute;
  top: 77px;
  left: 0;
  z-index: 4;
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 5px #000, 0 0 12px rgba(0, 0, 0, 0.9);
}
.living-live .live-settings-goo i {
  background: rgba(5, 13, 14, 0.56);
  box-shadow: inset 0 0 0 1px rgba(116, 244, 222, 0.07);
}
.living-live .live-settings.is-open .live-goo-origin {
  animation: live-goo-origin-fade 460ms ease-out forwards;
}
.living-live .live-settings.is-open .live-goo-node {
  animation: live-goo-release 620ms cubic-bezier(0.18, 0.82, 0.2, 1) forwards;
}
@keyframes live-goo-origin-fade {
  0%, 42% { opacity: 0.54; }
  100% { opacity: 0; }
}
@keyframes live-goo-release {
  0% { opacity: 0; }
  28% { opacity: 0.58; }
  100% { opacity: 0; }
}

@media (max-width: 700px) {
  .living-live .live-use-menu.is-open {
    right: 12px;
    width: calc(100vw - 24px);
    max-width: 354px;
    height: 112px;
  }
  .living-live .live-use-options {
    right: 48px;
    width: calc(100% - 48px);
  }
  .living-live .track-license-cta,
  .living-live .stream-pass-cta,
  .living-live .live-session-open {
    grid-template-columns: minmax(0, 1fr) 48px 12px;
    padding-left: 8px;
  }
  .living-live .live-use-copy strong,
  .living-live .stream-pass-command > strong { font-size: 8px; }
  .living-live .live-use-copy small,
  .living-live .stream-pass-command > small { font-size: 6px; }
  .living-live .live-settings {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 236px;
  }
  .living-live .live-settings .dsp-group[data-dsp-group="speed"],
  .living-live .live-settings .dsp-group[data-dsp-group="tone"],
  .living-live .live-settings .dsp-group[data-dsp-group="space"] { top: 70px; }
  .living-live .live-settings .dsp-group[data-dsp-group="speed"] { left: 8px; }
  .living-live .live-settings .dsp-group[data-dsp-group="space"] { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .living-live .live-track-wave i,
  .living-live .live-settings.is-open .live-goo-origin,
  .living-live .live-settings.is-open .live-goo-node { animation: none; }
  .living-live .live-settings.is-open .live-goo-origin,
  .living-live .live-settings.is-open .live-goo-node { opacity: 0; }
}

/* Rooms: corrective minimal layer. Keep the video dominant. */
.living-live .live-shade { background: transparent; }
.living-live .live-player,
.living-live .live-player:hover,
.living-live .live-player:focus-within,
.living-live .live-player:has(.live-icon-action:focus-visible) {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.living-live .live-use-menu,
.living-live .live-use-menu.is-open {
  --live-use-width: 320px;
  right: 24px;
  bottom: 24px;
  width: var(--live-use-width);
  height: 170px;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}
.living-live .live-use-menu:not(.is-open) {
  width: 78px;
  height: 30px;
}
.living-live .live-use-toggle,
.living-live .live-use-menu.is-open .live-use-toggle,
.living-live .live-use-toggle:hover,
.living-live .live-use-toggle:focus-visible {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  outline-offset: 3px;
  background: transparent;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
  pointer-events: auto;
}
.living-live .live-use-toggle > strong,
.living-live .live-use-menu.is-open .live-use-toggle > strong {
  position: relative;
  z-index: 2;
  opacity: 1;
  color: var(--v7-paper);
  font-family: "Bungee", sans-serif;
  font-size: 9px;
  font-weight: 400;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.68),
    0 0 10px rgba(116, 244, 222, 0.16);
  transform: none;
}
.living-live .live-use-toggle:hover > strong,
.living-live .live-use-toggle:focus-visible > strong {
  color: var(--v7-cyan);
}
.living-live .live-use-close,
.living-live .stream-pass-cta-canvas { display: none; }
.living-live .live-use-canvas {
  position: absolute;
  inset: -5px;
  z-index: 0;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  display: block;
  border-radius: 18px;
  filter: none;
  pointer-events: none;
}

.living-live .live-use-options {
  position: absolute;
  right: 0;
  bottom: 38px;
  left: auto;
  width: var(--live-use-width);
  height: auto;
  display: grid;
  grid-template-rows: none;
  grid-auto-rows: 58px;
  gap: 4px;
  pointer-events: none;
}
.living-live .live-use-options.is-open { pointer-events: auto; }
.living-live .live-use-option,
.living-live .live-track-offer,
.living-live .stream-pass,
.living-live .live-session-open {
  position: relative;
  inset: auto;
  width: var(--live-use-width);
  min-height: 58px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 0;
  transform: translateY(6px);
  transform-origin: right bottom;
  pointer-events: none;
  transition: opacity 150ms ease, transform 190ms ease;
}
.living-live .live-use-options.is-open .live-use-option--track:not([hidden]),
.living-live .live-use-options.is-open .live-use-option--soundtrack:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.living-live .track-license-cta,
.living-live .stream-pass-cta,
.living-live .live-session-open,
.living-live .track-license-cta:hover,
.living-live .stream-pass-cta:hover,
.living-live .live-session-open:hover,
.living-live .track-license-cta:focus-visible,
.living-live .stream-pass-cta:focus-visible,
.living-live .live-session-open:focus-visible {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 14px;
  align-items: center;
  gap: 10px;
  padding: 3px 2px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
  color: var(--v7-paper);
  text-align: left;
  transform: none;
  transition: color 160ms ease,
    transform 240ms cubic-bezier(0.23, 1, 0.32, 1);
}
.living-live .track-license-cta:hover,
.living-live .stream-pass-cta:hover,
.living-live .live-session-open:hover,
.living-live .track-license-cta:focus-visible,
.living-live .stream-pass-cta:focus-visible,
.living-live .live-session-open:focus-visible {
  color: var(--v7-cyan);
  transform: translateX(-8px) scale(1.045);
  transform-origin: right center;
}
.living-live .live-use-copy,
.living-live .stream-pass-command {
  min-width: 0;
  display: grid;
  gap: 5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.86);
}
.living-live .live-use-copy strong,
.living-live .stream-pass-command > strong {
  font-family: "Bungee", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.05;
}
.living-live .live-use-copy small,
.living-live .stream-pass-command > small {
  color: rgba(243, 240, 232, 0.62);
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  line-height: 1.1;
}
.living-live .live-use-meta,
.living-live .stream-pass-clock {
  min-width: 58px;
  display: grid;
  place-items: center;
  color: rgba(243, 240, 232, 0.74);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.86);
}
.living-live .stream-pass-clock > strong {
  font-size: 10px;
  font-weight: 600;
}
.living-live .live-use-arrow {
  color: currentColor;
  font-size: 11px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.86);
}
.living-live .live-track-offer > p { display: none; }
.living-live .live-use-toast {
  right: 0;
  bottom: 168px;
  width: var(--live-use-width);
  color: var(--v7-paper);
  font-size: 9px;
  text-align: right;
  text-shadow: 0 2px 8px #000;
}
.living-live .live-page.is-use-open .live-room-indicator { opacity: 0; }

.living-live .live-settings {
  right: auto;
  bottom: 110px;
  left: 50%;
  width: 272px;
  height: 118px;
  transform: translateX(-50%);
}
.living-live .live-settings-goo { display: none; }
.living-live .live-console-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  filter: none;
  pointer-events: none;
}
.living-live .live-settings .live-dsp {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  pointer-events: none;
}
.living-live .live-settings .dsp-group {
  --dsp-fill: 50%;
  position: absolute;
  top: 16px;
  width: 58px;
  min-height: 74px;
  opacity: 0;
  transform: translateY(8px) scale(0.2);
  transform-origin: center 20px;
  pointer-events: none;
  will-change: opacity, transform;
}
.living-live .live-settings.is-open .dsp-group {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.living-live .live-settings.is-open .dsp-group:nth-child(2) { transition-delay: 35ms; }
.living-live .live-settings.is-open .dsp-group:nth-child(3) { transition-delay: 70ms; }
.living-live .live-settings .dsp-group[data-dsp-group="speed"] { left: 6px; }
.living-live .live-settings .dsp-group[data-dsp-group="tone"] { left: calc(50% - 29px); }
.living-live .live-settings .dsp-group[data-dsp-group="space"] { right: 6px; }
.living-live .live-settings .rotary-dial,
.living-live .live-settings .rotary-dial:hover,
.living-live .live-settings .rotary-dial:focus-visible,
.living-live .live-settings .rotary-dial.is-dragging {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  cursor: ns-resize;
  touch-action: none;
}
.living-live .live-settings .rotary-dial::before {
  display: none;
}
.living-live .live-settings .rotary-dial::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(243, 240, 224, 0.88),
    0 0 13px rgba(255, 186, 32, 0.34);
  opacity: 0;
  transition: opacity 120ms ease;
  pointer-events: none;
}
.living-live .live-settings .rotary-dial:focus-visible::after { opacity: 1; }
.living-live .live-settings .rotary-needle { display: none; }
.living-live .live-settings .dsp-group > span {
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  margin: 0;
  color: #fff;
  font-family: "Bungee", sans-serif;
  font-size: 8px;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.84);
}
@media (max-width: 700px) {
  .living-live .live-use-menu,
  .living-live .live-use-menu.is-open {
    --live-use-width: min(286px, calc(100vw - 28px));
    right: 14px;
    bottom: 76px;
    width: var(--live-use-width);
    height: 164px;
  }
  .living-live .live-use-menu:not(.is-open) {
    width: 78px;
    height: 30px;
  }
  .living-live .live-use-options,
  .living-live .live-use-option,
  .living-live .live-track-offer,
  .living-live .stream-pass,
  .living-live .live-session-open { width: var(--live-use-width); }
  .living-live .live-use-toast { width: var(--live-use-width); }
  .living-live .live-settings {
    right: auto;
    bottom: 108px;
    left: 50%;
    width: 258px;
    height: 114px;
    transform: translateX(-50%);
  }
  .living-live .live-settings .dsp-group { top: 14px; width: 56px; }
  .living-live .live-settings .dsp-group[data-dsp-group="speed"] { left: 4px; }
  .living-live .live-settings .dsp-group[data-dsp-group="tone"] { left: calc(50% - 28px); }
  .living-live .live-settings .dsp-group[data-dsp-group="space"] { right: 4px; }
  .living-live .live-settings .rotary-dial,
  .living-live .live-settings .rotary-dial:hover,
  .living-live .live-settings .rotary-dial:focus-visible,
  .living-live .live-settings .rotary-dial.is-dragging {
    width: 48px;
    height: 48px;
  }
  .living-live .live-settings .dsp-group > span { top: 56px; }
}

/* Rooms: one light transport surface, icon-only secondary actions. */
.living-live .live-player.has-three-console .live-icon-action,
.living-live .live-player.has-three-console .live-icon-action:hover,
.living-live .live-player.has-three-console .live-icon-action:focus-visible {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.living-live .live-player.has-three-console .live-icon-action:not(.live-icon-action--play) {
  color: rgba(255, 255, 255, 0.86);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.92));
}
.living-live .live-player.has-three-console .live-icon-action:not(.live-icon-action--play):hover,
.living-live .live-player.has-three-console .live-icon-action:not(.live-icon-action--play):focus-visible,
.living-live .live-player.has-three-console .live-icon-action:not(.live-icon-action--play).is-active {
  color: #fff;
}
.living-live .live-player.has-three-console .live-icon-action--play,
.living-live .live-player.has-three-console .live-icon-action--play:hover,
.living-live .live-player.has-three-console .live-icon-action--play:focus-visible {
  color: #071011;
  filter: none;
}
.living-live .live-player.has-three-console .live-icon-action:focus-visible {
  outline: 1px solid rgba(116, 244, 222, 0.72);
  outline-offset: 3px;
}
.living-live .live-player { width: 282px; }
.living-live .live-feedback-icon {
  display: block;
  width: 17px;
  height: 17px;
  pointer-events: none;
}
.living-live .live-player.has-three-console #live-like.is-active {
  color: var(--v7-cyan);
  filter: drop-shadow(0 0 7px rgba(116, 244, 222, 0.58));
}
.living-live .live-player.has-three-console #live-dislike.is-pending {
  color: #ff7180;
  filter: drop-shadow(0 0 7px rgba(255, 92, 117, 0.5));
}
.living-live .live-feedback-action:disabled {
  cursor: default;
  opacity: 0.36;
}
@media (max-width: 700px) {
  .living-live .live-player {
    width: min(282px, calc(100vw - 24px));
  }
}

/* Checkout is a focused utility surface. The Room stays open behind it. */
body.license-checkout {
  background: #eeece4;
  color: #101515;
  color-scheme: light;
}
.license-checkout .site-header,
.license-checkout .site-footer,
.license-checkout .about-dialog,
.license-checkout .social-pulse { display: none; }
body.license-checkout .site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.license-checkout .license-page {
  width: min(100%, 820px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 66px) clamp(22px, 6vw, 68px) 72px;
}
.license-checkout .license-back {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #234b4d;
  font-size: 9px;
  font-weight: 700;
}
.license-checkout .license-back:hover { color: #0b7478; }
.license-checkout .license-head {
  margin-top: clamp(36px, 8vw, 84px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 21, 21, 0.24);
}
.license-checkout .license-kicker {
  margin: 0 0 14px;
  color: #087b7f;
  font-size: 9px;
  font-weight: 700;
}
.license-checkout .license-head h1 {
  margin: 0;
  color: #101515;
  font-family: "Bungee", sans-serif;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 400;
  line-height: 0.96;
}
.license-checkout .license-track-title {
  display: grid;
  gap: 3px;
  margin: 26px 0 0;
}
.license-checkout .license-track-title strong {
  color: #101515;
  font-size: 20px;
}
.license-checkout .license-track-title span {
  color: rgba(16, 21, 21, 0.62);
  font-size: 12px;
}
.license-checkout .license-explainer {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(16, 21, 21, 0.72);
  font-size: 14px;
}
.license-checkout .license-cid {
  margin: 18px 0 0;
  color: #234b4d;
  font-size: 11px;
}
.license-checkout .license-cid-fine {
  display: block;
  margin-top: 5px;
  color: rgba(16, 21, 21, 0.55);
}
.license-checkout .license-form {
  max-width: none;
  margin-top: 30px;
  gap: 20px;
}
.license-checkout .field-label {
  color: rgba(16, 21, 21, 0.68);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.license-checkout .field input[type="email"],
.license-checkout .field input[type="text"] {
  min-height: 52px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 21, 21, 0.35);
  border-radius: 0;
  background: transparent;
  color: #101515;
  font-size: 16px;
}
.license-checkout .field input:focus { border-color: #087b7f; }
.license-checkout .scope-field {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin-top: 4px;
}
.license-checkout .scope-field legend {
  grid-column: 1 / -1;
  margin-bottom: 5px;
}
.license-checkout .scope-field label {
  min-height: 34px;
  color: #101515;
  font-size: 12px;
}
.license-checkout .scope-field input { accent-color: #087b7f; }
.license-checkout #checkout-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  border: 0;
  border-radius: 3px;
  background: #101515;
  color: #f6f2e8;
  font-family: "Bungee", sans-serif;
  font-size: 11px;
  font-weight: 400;
}
.license-checkout #checkout-submit:hover,
.license-checkout #checkout-submit:focus-visible {
  background: #087b7f;
  color: #fff;
}
.license-checkout #checkout-submit:disabled { opacity: 0.62; }
.license-checkout .checkout-error {
  color: #a12620;
  font-size: 12px;
}
.license-checkout .checkout-result,
.license-checkout .license-unavailable,
.license-checkout .license-pick {
  margin-top: 34px;
  color: #101515;
}
.license-checkout .checkout-result .btn,
.license-checkout .license-pick .btn {
  border-color: #101515;
  background: #101515;
  color: #fff;
}
.license-checkout .checkout-note { color: rgba(16, 21, 21, 0.62); }
@media (max-width: 620px) {
  .license-checkout .license-page { padding-right: 20px; padding-left: 20px; }
  .license-checkout .license-head { margin-top: 32px; }
  .license-checkout .scope-field { grid-template-columns: 1fr; }
  .license-checkout .scope-field legend { grid-column: 1; }
}

/* Experimental Signal renderer. Video remains mounted as the fallback. */
.living-live .signal-room-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100svh;
  display: block;
  background: #020607;
  opacity: 0;
  transition: opacity 520ms ease;
  pointer-events: none;
}
.living-live .live-page.is-signal-ready .signal-room-canvas { opacity: 1; }
.living-live .live-page.is-signal-ready .live-video { opacity: 0; }
.living-live .live-page[data-visual="signal"] .live-shade {
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 4, 5, 0.28), transparent 24%);
}
@media (prefers-reduced-motion: reduce) {
  .living-live .signal-room-canvas { transition: none; }
}

/* Signal does not load the Three.js control renderer. Keep its DSP knobs real. */
.living-live .live-page[data-visual="signal"] .live-settings .rotary-dial::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 2;
  display: block;
  background: url("/static/img/pick-face.png") center / contain no-repeat;
  filter: drop-shadow(1px 4px 4px rgba(0, 0, 0, 0.42));
  transform: rotate(var(--dial-angle, 0deg)) scale(var(--dsp-scale, 0.9));
  transition: transform 180ms cubic-bezier(0.2, 0.85, 0.25, 1.15),
    filter 140ms ease;
  pointer-events: none;
}
.living-live .live-page[data-visual="signal"] .live-settings .rotary-dial::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: 1;
  display: block;
  border: 0;
  border-radius: 50%;
  background: conic-gradient(from 225deg,
    rgba(243, 240, 224, 0.94) 0deg,
    rgba(255, 186, 32, 0.98) var(--dsp-arc, 135deg),
    rgba(243, 240, 224, 0.16) var(--dsp-arc, 135deg) 270deg,
    transparent 270deg 360deg);
  box-shadow: none;
  opacity: 1;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  pointer-events: none;
}
.living-live .live-page[data-visual="signal"] .live-settings .rotary-dial:hover::before,
.living-live .live-page[data-visual="signal"] .live-settings .rotary-dial:focus-visible::before,
.living-live .live-page[data-visual="signal"] .live-settings .rotary-dial.is-dragging::before {
  filter: drop-shadow(1px 5px 5px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 7px rgba(255, 186, 32, 0.28));
}
