:root {
  color-scheme: dark;
  --bg: #070712;
  --bg-2: #101024;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #fff8ff;
  --muted: #bdb4cc;
  --faint: #80778f;
  --line: rgba(255, 255, 255, 0.14);
  --hot: #ff5f3d;
  --violet: #995cff;
  --cyan: #55ddff;
  --green: #6affbb;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --dock-height: 132px;
  --page-pad: 16px;
  --page-max: 1320px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(153, 92, 255, 0.45), transparent 28rem),
    radial-gradient(circle at 86% 6%, rgba(255, 95, 61, 0.32), transparent 24rem),
    radial-gradient(circle at 56% 72%, rgba(85, 221, 255, 0.18), transparent 34rem),
    linear-gradient(180deg, #0b0b19 0%, var(--bg) 55%, #05050c 100%);
}

body:has(.player-dock) {
  padding-bottom: calc(var(--dock-height) + 16px + env(safe-area-inset-bottom, 0px));
  scroll-padding-bottom: calc(var(--dock-height) + 24px + env(safe-area-inset-bottom, 0px));
}

body::selection {
  color: #140b1f;
  background: var(--green);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

code {
  color: #ffe4db;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.08rem 0.35rem;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.site-header,
main,
.footer {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: max(var(--page-pad), env(safe-area-inset-left)) max(var(--page-pad), env(safe-area-inset-right));
  min-width: 0;
}

.site-header {
  padding: 26px 0 42px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 58px;
}

.brand,
.nav-links,
.hero-actions,
.controls,
.player-bar,
.progress-wrap,
.sidebar-head,
.queue-head,
.track-action,
.album-button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 24%, #fff, transparent 22%),
    linear-gradient(135deg, var(--hot), var(--violet));
  box-shadow: 0 0 38px rgba(255, 95, 61, 0.74);
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-install {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #10091a;
  cursor: pointer;
  font-weight: 850;
  background: var(--green);
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-button {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
  background: transparent;
}

.lang-button.active {
  color: #10091a;
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.sidebar,
.player-panel,
.queue-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  min-height: 430px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffd4c7;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(4.1rem, 12vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.09em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.now-info p,
.track-meta,
.empty-state p,
.footer {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.library-usp {
  max-width: 640px;
  margin: -4px 0 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.transport-button,
.mode-button,
.play-button,
.album-button,
.sidebar-head button,
.track-action {
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 850;
}

.button {
  border-radius: 999px;
  padding: 14px 20px;
}

.primary,
.play-button {
  border-color: transparent;
  color: #12091b;
  background: linear-gradient(135deg, #fff1a8, var(--green) 42%, var(--cyan));
  box-shadow: 0 14px 44px rgba(85, 221, 255, 0.2);
}

.ghost,
.transport-button,
.mode-button,
.album-button,
.sidebar-head button,
.track-action {
  background: rgba(255, 255, 255, 0.07);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: end;
  gap: 12px;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border-radius: 38px;
}

.moon {
  position: absolute;
  width: 230px;
  height: 230px;
  inset: 70px 0 auto;
  margin: auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 22%, #fff6dc, #ff986d 28%, #834dff 58%, #101024 100%);
  box-shadow: 0 0 95px rgba(255, 95, 61, 0.55);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 60px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-panel::after {
  inset: 96px 54px;
  transform: rotate(24deg);
}

.hero-stat {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.26);
}

.hero-stat span {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-stat small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.site-header--compact {
  padding: max(10px, env(safe-area-inset-top)) 0 10px;
}

.site-header--compact .nav {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .library-top {
    display: none;
  }

  .library-page {
    padding-top: 0;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-copy {
    min-height: auto;
    padding: clamp(22px, 4vw, 32px);
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 11vw, 4.5rem);
    margin-bottom: 14px;
  }

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

  .hero-panel {
    min-height: 260px;
  }

  .moon {
    width: 190px;
    height: 190px;
    inset: 48px 0 auto;
  }
}

@media (max-width: 767px) {
  .hero {
    display: none;
  }

  .site-header {
    padding: max(10px, env(safe-area-inset-top)) 0 10px;
  }

  .site-header .nav {
    margin-bottom: 0;
  }
}

.library-page {
  padding: 8px 0 20px;
  min-width: 0;
}

.page-shell {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: max(var(--page-pad), env(safe-area-inset-left)) max(var(--page-pad), env(safe-area-inset-right));
}

.page-account {
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}

.library-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.library-intro h1 {
  margin-bottom: 6px;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.library-stats {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.library-shuffle {
  flex: 0 0 auto;
  padding: 12px 18px;
}

.library-panel,
.player-dock {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), var(--shadow);
  backdrop-filter: blur(18px);
}

.library-panel {
  border-radius: 30px;
  padding: 18px;
  min-width: 0;
  overflow: hidden;
}

.player-dock {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  border-radius: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 18, 0.94);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.player-dock-main {
  display: grid;
  align-items: center;
  gap: 10px 14px;
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding: 10px max(var(--page-pad), env(safe-area-inset-right)) 10px max(var(--page-pad), env(safe-area-inset-left));
  grid-template-columns: minmax(168px, min(38vw, 320px)) minmax(0, 1fr) minmax(96px, 132px);
  grid-template-rows: auto auto;
  grid-template-areas:
    "track progress volume"
    "track controls volume";
}

.player-track {
  grid-area: track;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 6px;
  min-width: 0;
}

.player-progress {
  grid-area: progress;
  margin: 0;
}

.player-dock .progress-wrap {
  margin: 0;
}

.player-controls {
  grid-area: controls;
  justify-content: center;
  gap: 8px;
}

.player-volume {
  grid-area: volume;
  justify-self: stretch;
  align-self: center;
  width: 100%;
  max-width: 132px;
}

.player-art {
  grid-row: 1 / span 2;
  align-self: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 20%, #fff7c7, transparent 18%),
    linear-gradient(135deg, var(--hot), var(--violet) 58%, var(--cyan));
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(153, 92, 255, 0.22);
}

.player-art.has-cover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.player-art--rich {
  cursor: pointer;
}

.player-art--tap:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.player-track-text {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  overflow: hidden;
}

.player-track-actions {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: start;
}

.player-dock .player-track-text #now-meta {
  display: none;
}

.player-dock #now-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.player-track-text p:not(#now-title) {
  display: block;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#now-title {
  margin-bottom: 4px;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

#now-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.player-dock .volume-row {
  margin: 0;
  justify-self: stretch;
  width: 100%;
}

.player-dock .preview-notice {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.seek-shell input[type="range"],
.volume-row input[type="range"],
.progress-wrap input[type="range"] {
  height: 28px;
}
.seek-shell {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.seek-shell input[type="range"] {
  width: 100%;
}

.preview-cap {
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px 0 0 999px;
  background: rgba(106, 255, 187, 0.28);
  pointer-events: none;
}

.library {
  padding: 52px 0 70px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.player-panel,
.queue-panel {
  border-radius: 30px;
}

.player-panel {
  position: sticky;
  top: 16px;
}

.search {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  outline: none;
  background: rgba(0, 0, 0, 0.22);
}

.search input:focus {
  border-color: rgba(106, 255, 187, 0.72);
  box-shadow: 0 0 0 4px rgba(106, 255, 187, 0.12);
}

.album-button,
.track-action,
.transport-button,
.mode-button {
  border-radius: 999px;
}

.album-list {
  display: contents;
}

.album-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  padding: 10px 14px;
  text-align: left;
  white-space: nowrap;
  scroll-snap-align: start;
}

.album-button span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.album-button small {
  color: var(--faint);
  font-weight: 900;
}

.album-button.active {
  color: #10091a;
  background: var(--text);
}

.album-button.active small {
  color: rgba(16, 9, 26, 0.62);
}

.player-panel {
  padding: 20px;
}

.now-playing {
  margin-bottom: 16px;
}

.now-playing h3 {
  overflow: hidden;
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing p {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-wrap {
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  min-width: 0;
}

.progress-wrap span {
  flex: 0 0 auto;
  min-width: 2.5rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  accent-color: var(--green);
}

#seek-bar {
  width: 100%;
}

.player-bar {
  display: grid;
  gap: 12px;
}

.controls {
  justify-content: center;
  gap: 8px;
}

.transport-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
}

.mode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 72px;
  height: 44px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.mode-button-icon {
  display: none;
  font-size: 1rem;
  line-height: 1;
}

.mode-button-label {
  pointer-events: none;
}

.mode-button.active {
  color: #10091a;
  border-color: transparent;
  background: var(--green);
}

.play-button {
  min-width: 58px;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
}

.volume-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: var(--muted);
}

.volume-row input[type="range"] {
  flex: 1;
  width: 100%;
}

.volume-icon {
  flex: 0 0 auto;
  font-size: 0.95rem;
  line-height: 1;
}

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

#volume-control {
  width: 100%;
  max-width: none;
}

.queue-panel {
  min-height: 580px;
  padding: 18px;
}

.library-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
  min-width: 0;
  max-width: 100%;
}

.album-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.album-strip-scroll {
  position: relative;
}

.queue-head h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.queue-head {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 0 4px;
}

#queue-count {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  white-space: nowrap;
}

.queue-head h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.track-list {
  display: grid;
  gap: 9px;
  min-width: 0;
  max-width: 100%;
}

.track-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px 12px;
  color: var(--text);
  text-align: left;
  background: rgba(255, 255, 255, 0.052);
  cursor: pointer;
}

.track-row:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
}

.track-row.active {
  border-color: rgba(106, 255, 187, 0.62);
  background: rgba(106, 255, 187, 0.1);
}

.track-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 950;
  background: rgba(0, 0, 0, 0.24);
}

.track-row.active .track-number {
  color: #10091a;
  background: var(--green);
}

.track-thumb {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.track-row--rich .track-title {
  padding-right: 4px;
}

.track-row--rich.active .track-thumb {
  box-shadow: 0 0 0 2px var(--green), 0 8px 22px rgba(0, 0, 0, 0.35);
}

.track-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
}

.track-title {
  display: block;
  overflow: hidden;
  margin-bottom: 3px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-meta {
  display: block;
  overflow: hidden;
  margin: 0;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-action {
  flex: 0 0 auto;
  padding: 9px 12px;
}

.favorite-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}

.favorite-toggle:hover,
.favorite-toggle.active {
  color: #ffe08a;
  border-color: rgba(255, 224, 138, 0.45);
  background: rgba(255, 224, 138, 0.12);
}

.preview-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(106, 255, 187, 0.28);
  border-radius: 16px;
  background: rgba(106, 255, 187, 0.08);
}

.preview-notice p {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 750;
}

.preview-notice--blocked {
  border-color: rgba(255, 95, 61, 0.35);
  background: rgba(255, 95, 61, 0.1);
}

.preview-notice-link {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 12px;
  color: #10091a;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  background: var(--green);
}

.nav-link-active {
  color: var(--text);
}

.account-page {
  display: grid;
  place-items: start center;
  width: 100%;
  padding-inline: max(var(--page-pad), env(safe-area-inset-left)) max(var(--page-pad), env(safe-area-inset-right));
  padding-bottom: max(48px, env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.account-card {
  width: min(520px, 100%);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.account-card h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 6vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.account-lead {
  color: var(--muted);
  line-height: 1.55;
}

.account-status {
  display: grid;
  gap: 4px;
  margin: 22px 0;
  padding: 14px 16px;
  border-radius: 18px;
}

.account-status--free {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.account-status--premium {
  border: 1px solid rgba(106, 255, 187, 0.42);
  background: rgba(106, 255, 187, 0.12);
}

.account-status-label {
  font-size: 1.05rem;
  font-weight: 900;
}

.account-status-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.account-form {
  display: grid;
  gap: 16px;
}

.account-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.account-field input {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  outline: none;
  background: rgba(0, 0, 0, 0.22);
}

.account-field-hint {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--muted);
  opacity: 0.85;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-message {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 750;
}

.account-message[data-kind="success"] {
  color: #d7ffe9;
  background: rgba(106, 255, 187, 0.12);
}

.account-message[data-kind="error"] {
  color: #ffd7d0;
  background: rgba(255, 95, 61, 0.12);
}

.account-message[data-kind="info"] {
  color: #dff6ff;
  background: rgba(85, 221, 255, 0.12);
}

.account-notes {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
}

/* ── Responsive layout ── */

@media (min-width: 768px) {
  :root {
    --page-pad: 20px;
  }
}

@media (min-width: 1280px) {
  :root {
    --page-pad: 24px;
  }
}

@media (max-width: 899px) {
  .player-dock-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 8px max(var(--page-pad), env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(var(--page-pad), env(safe-area-inset-left));
  }

  .player-progress,
  .player-track,
  .player-controls {
    width: 100%;
    min-width: 0;
  }

  .player-volume {
    display: none !important;
  }

  .player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
  }

  .mode-button-icon {
    display: block;
  }

  .mode-button-label {
    display: none;
  }

  .mode-button {
    min-width: 38px;
    width: 38px;
    height: 38px;
    padding: 0;
  }
}

@media (max-width: 1023px) {
  .player-dock-main {
    grid-template-columns: minmax(168px, min(38vw, 320px)) minmax(0, 1fr) minmax(88px, 112px);
    gap: 8px 10px;
  }

  .library-panel {
    border-radius: 22px;
    padding: 16px;
  }

  .mode-button {
    min-width: 58px;
    padding: 0 8px;
    font-size: 0.7rem;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .mode-button-icon {
    display: none;
  }

  .mode-button-label {
    display: inline;
  }
}

@media (max-width: 767px) {
  :root {
    --page-pad: 12px;
    --dock-height: 172px;
  }

  .nav {
    gap: 6px;
    margin-bottom: 0;
  }

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

  .nav-links {
    gap: 4px;
    font-size: 0.78rem;
    flex-shrink: 1;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 6px;
    max-width: min(100%, 72vw);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

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

  .nav-install {
    padding: 6px 10px;
    font-size: 0.72rem;
    line-height: 1.1;
    flex: 0 0 auto;
    white-space: nowrap;
    display: none;
  }

  .nav-install.is-visible {
    display: inline-block;
  }

  .lang-switch {
    padding: 3px;
    gap: 2px;
  }

  .lang-button {
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .brand > span:last-child {
    font-size: 0.9rem;
  }

  .library-top {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  .library-intro h1 {
    font-size: 1.5rem;
  }

  .library-shuffle {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  .library-panel {
    border-radius: 16px;
    padding: 10px;
  }

  .search span {
    font-size: 0.74rem;
  }

  .library-tools .search > span {
    display: none;
  }

  .library-tools .search {
    gap: 0;
  }

  .search input {
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 14px;
  }

  .album-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-bottom: 4px;
    padding-right: 18px;
  }

  .album-strip-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, rgba(8, 8, 18, 0.9), transparent);
  }

  .album-strip::-webkit-scrollbar {
    display: none;
  }

  .album-button {
    flex: 0 0 auto;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .queue-head {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    padding: 0;
  }

  .queue-head h2 {
    font-size: 1.1rem;
  }

  #queue-count {
    font-size: 0.78rem;
  }

  .track-row {
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .track-number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .track-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 0.88rem;
    line-height: 1.22;
    white-space: normal;
    overflow-wrap: anywhere;
    text-overflow: unset;
  }

  .track-meta {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
    line-height: 1.2;
    color: var(--faint);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .favorite-toggle {
    width: 30px;
    height: 30px;
    font-size: 0.88rem;
  }

  .track-action {
    display: none;
  }

  .player-dock {
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 48px rgba(0, 0, 0, 0.5);
  }

  .player-dock-main {
    gap: 5px;
  }

  .player-dock .preview-notice {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 6px max(var(--page-pad), env(safe-area-inset-right)) 6px max(var(--page-pad), env(safe-area-inset-left));
  }

  .player-dock .preview-notice p {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .player-dock .preview-notice-link {
    flex: 0 0 auto;
    padding: 6px 8px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .player-progress {
    gap: 6px;
    margin: 0;
    font-size: 0.72rem;
  }

  .player-progress span {
    min-width: 2.2rem;
  }

  .player-controls {
    gap: 6px;
    padding-bottom: 0;
  }

  .player-art {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  #now-title {
    font-size: 0.84rem;
  }

  #now-meta {
    font-size: 0.7rem;
  }

  .mode-button {
    min-width: 38px;
    width: 38px;
    height: 38px;
    padding: 0;
  }

  .mode-button-icon {
    display: block;
  }

  .mode-button-label {
    display: none;
  }

  .transport-button {
    min-width: 38px;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .play-button {
    min-width: 44px;
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .account-card {
    border-radius: 20px;
    padding: 18px;
  }
}

@media (max-width: 379px) {
  .library-intro h1 {
    font-size: 1.3rem;
  }

  .album-button {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .mode-button,
  .transport-button {
    min-width: 34px;
    width: 34px;
    height: 34px;
  }

  .play-button {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
}

@media (pointer: coarse) {
  .transport-button,
  .mode-button,
  .play-button,
  .album-button,
  .favorite-toggle,
  .button {
    min-height: 44px;
  }
}

.player-track-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dock-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
}

.dock-action.active {
  color: #ffe08a;
  border-color: rgba(255, 224, 138, 0.45);
  background: rgba(255, 224, 138, 0.12);
}

.dock-action--icon {
  font-size: 0;
}

.dock-icon {
  display: block;
  width: 16px;
  height: 16px;
}

.playlist-picker {
  position: relative;
}

.playlist-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 60;
  min-width: 180px;
  max-width: min(260px, 70vw);
  max-height: 220px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 8, 18, 0.98);
  box-shadow: var(--shadow);
}

.playlist-menu-item {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  color: var(--text);
  text-align: left;
  background: transparent;
}

.playlist-menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.playlist-menu-item--create {
  color: var(--green);
  font-weight: 800;
}

.playlist-menu-empty {
  margin: 0 0 6px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.player-dock-notice {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

body.has-preview-notice .player-dock-main {
  padding-top: 6px;
}

.progress-wrap.is-free .seek-shell input[type="range"] {
  accent-color: var(--green);
}

.album-button--user {
  border-style: dashed;
}

.album-button--catalog {
  border-color: rgba(0, 255, 200, 0.35);
  background: rgba(0, 255, 200, 0.08);
}

.album-button--catalog.active {
  border-color: transparent;
  background: var(--green);
  color: #10091a;
}

.album-button--create {
  flex-shrink: 0;
  border-style: dashed;
  color: var(--green);
  font-weight: 800;
}

.account-tabs {
  display: flex;
  gap: 8px;
  margin: 18px 0 12px;
}

.account-tab {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}

.account-tab.active {
  color: #10091a;
  background: var(--text);
}

.account-panel[hidden] {
  display: none !important;
}

.account-user-email {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
}

.account-offline {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.account-offline-title {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.account-offline-status {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.account-offline-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.account-offline-progress {
  display: block;
  width: 100%;
  height: 8px;
  margin: 0 0 14px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.account-offline-progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.08);
}

.account-offline-progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.account-offline-progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.account-actions--offline {
  margin-bottom: 0;
}

.account-section {
  margin-top: 24px;
}

.account-section h2 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.account-inline-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.account-inline-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
}

.account-playlist-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-playlist-item,
.account-playlist-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.text-button {
  border: 0;
  padding: 0;
  color: var(--cyan);
  font: inherit;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
}

.account-inline-link {
  margin: 10px 0 0;
}

.account-message[data-kind="success"] {
  color: var(--green);
}

.account-message[data-kind="error"] {
  color: #ffb4a8;
}

.app-toast {
  position: fixed;
  left: 50%;
  top: max(14px, env(safe-area-inset-top));
  bottom: auto;
  z-index: 140;
  transform: translate(-50%, -12px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(8, 8, 18, 0.96);
  max-width: calc(100% - 32px);
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.app-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 768px) {
  .app-toast {
    top: auto;
    bottom: calc(var(--dock-height) + 20px);
    transform: translate(-50%, 12px);
    max-width: min(420px, calc(100% - 32px));
  }

  .app-toast.is-visible {
    transform: translate(-50%, 0);
  }
}

@media (max-width: 767px) {
  .playlist-menu {
    position: fixed;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(var(--dock-height) + 8px);
    top: auto;
    z-index: 60;
    min-width: 0;
    max-width: none;
    max-height: min(36vh, 240px);
  }
}

@media (max-width: 767px) {
  .player-track {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 6px 10px;
  }

  .player-art {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .player-track-text {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .player-track-actions {
    grid-column: 2;
    grid-row: 2;
    gap: 4px;
    flex-shrink: 0;
    justify-self: start;
  }

  .player-track-text #now-meta {
    display: none;
  }

  #now-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    line-height: 1.25;
  }

  .dock-action {
    width: 30px;
    height: 30px;
  }

  .dock-icon {
    width: 15px;
    height: 15px;
  }

  .account-inline-form {
    flex-direction: column;
  }
}

.site-footer {
  width: 100%;
  max-width: var(--page-max);
  margin: 32px auto 0;
  padding: 20px max(var(--page-pad), env(safe-area-inset-left)) max(24px, env(safe-area-inset-bottom))
    max(var(--page-pad), env(safe-area-inset-right));
  border-top: 1px solid var(--line);
}

.site-footer--minimal {
  margin-top: 16px;
  padding-top: 12px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  border-top-color: rgba(255, 255, 255, 0.06);
}

.site-footer-inner {
  display: grid;
  gap: 14px;
}

.site-footer-inner--minimal {
  display: flex;
  justify-content: center;
}

.site-footer-minimal-link {
  color: var(--muted);
  font-size: 0.72rem;
  opacity: 0.45;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-footer-minimal-link:hover {
  opacity: 0.75;
  color: var(--muted);
}

.legal-hub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 16px 0 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.legal-hub a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-hub a:hover {
  color: var(--text);
}

.site-footer-links,
.site-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.88rem;
}

.site-footer-links a,
.site-footer-contact a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer-links a:hover,
.site-footer-contact a:hover {
  color: var(--text);
}

.page-legal .legal-page,
.page-account .account-page {
  padding-top: 12px;
}

.legal-page {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: max(var(--page-pad), env(safe-area-inset-left)) max(var(--page-pad), env(safe-area-inset-right));
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}

.legal-card {
  width: min(760px, 100%);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), var(--shadow);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-intro {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.55;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem;
}

.product-card-desc {
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.legal-section {
  margin-top: 24px;
}

.legal-section h2 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.legal-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.legal-list li + li {
  margin-top: 6px;
}

.legal-list--ordered {
  padding-left: 1.25rem;
}

.legal-section a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.product-card {
  margin: 18px 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(106, 255, 187, 0.28);
  border-radius: 18px;
  background: rgba(106, 255, 187, 0.08);
}

.product-card-title {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card-name {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.35;
}

.product-card-price {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--green);
}

.product-card-features {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.product-card-features li + li {
  margin-top: 4px;
}

.product-card-legal,
.account-pay-note,
.account-auto-renew {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.account-cancel-auto-renew {
  margin-top: 10px;
  width: 100%;
}

.product-card-legal a,
.account-pay-note a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.product-card--legal {
  margin-top: 10px;
}

.account-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.account-consent input {
  margin-top: 3px;
}

.account-card {
  width: min(560px, 100%);
}

.page-admin {
  padding: max(16px, env(safe-area-inset-top)) 0 max(24px, env(safe-area-inset-bottom));
}

.admin-page {
  display: grid;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 32px;
}

.admin-header h1 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
}

.admin-lead {
  margin: 0;
  color: var(--muted);
  max-width: 52rem;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: var(--panel);
}

.admin-card h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.admin-form {
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-form input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 16px;
}

.admin-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-message {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.admin-message[data-kind="error"] {
  color: #ffb4b4;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 120, 120, 0.25);
}

.admin-message[data-kind="success"] {
  color: #b8ffd9;
  background: rgba(106, 255, 187, 0.1);
  border: 1px solid rgba(106, 255, 187, 0.25);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-stat {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-stat span {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.admin-stat small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-stat--green span {
  color: var(--green);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-search input {
  min-width: min(220px, 70vw);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 16px;
}

.admin-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.admin-import-label {
  cursor: pointer;
}

.admin-select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.admin-table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.admin-table th,
.admin-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 120px;
}

.admin-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.admin-badge--premium {
  color: #062816;
  background: var(--green);
}

.admin-empty {
  text-align: center;
  color: var(--muted);
  padding: 24px 8px;
}

.admin-help ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.admin-help li + li {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .admin-card {
    padding: 12px;
    border-radius: 16px;
  }

  .admin-table th:nth-child(2),
  .admin-table td:nth-child(2) {
    display: none;
  }
}

.playlist-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 4, 12, 0.72);
  backdrop-filter: blur(8px);
}

.playlist-dialog[hidden] {
  display: none;
}

.playlist-dialog-card {
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(24, 20, 40, 0.98), rgba(10, 10, 20, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.playlist-dialog-title {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.playlist-dialog-field {
  display: block;
  margin-bottom: 16px;
}

.playlist-dialog-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.playlist-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.video-stage {
  display: none !important;
}

body.track-screen-open {
  overflow: hidden;
}

body.track-screen-open .player-dock {
  z-index: 130;
}

.track-screen {
  position: fixed;
  inset: 0 0 var(--dock-height) 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
}

.track-screen[hidden] {
  display: none !important;
}

.track-screen-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(153, 92, 255, 0.22), transparent 42%),
    radial-gradient(circle at 80% 10%, rgba(255, 95, 61, 0.16), transparent 36%),
    #050508;
  background-size: cover;
  background-position: center;
  filter: blur(52px) saturate(150%) brightness(0.42);
  transform: scale(1.12);
  pointer-events: none;
}

.track-screen-bg.has-cover {
  background-color: #050508;
}

.track-screen-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 58%, rgba(0, 0, 0, 0.82) 100%);
}

.track-screen-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding:
    max(8px, env(safe-area-inset-top))
    max(12px, env(safe-area-inset-right))
    12px
    max(12px, env(safe-area-inset-left));
}

.track-screen-header {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.track-screen-dismiss {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.track-screen-dismiss svg {
  width: 28px;
  height: 28px;
}

.track-screen-dismiss:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.track-screen-stage {
  flex: 1 1 auto;
  min-height: 0;
}

.track-screen-scroll {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.track-screen-hero {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 0 8px 14px;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.88) 0%, rgba(5, 5, 8, 0.72) 72%, rgba(5, 5, 8, 0) 100%);
}

.track-screen-art-wrap {
  display: flex;
  justify-content: center;
  padding: 4px 0 12px;
}

.track-screen-media {
  position: relative;
  width: min(100%, 280px, 62vw);
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 2px 0 rgba(255, 255, 255, 0.06) inset;
  background:
    radial-gradient(circle at 28% 20%, #fff7c7, transparent 18%),
    linear-gradient(135deg, var(--hot), var(--violet) 58%, var(--cyan));
}

.track-screen-cover,
.track-screen-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.track-screen--video .track-screen-media {
  width: min(100%, 260px, 58vw);
  aspect-ratio: 824 / 1464;
  border-radius: 12px;
}

.track-screen-meta {
  width: min(100%, 420px);
  margin-inline: auto;
  text-align: center;
  min-width: 0;
}

.track-screen-title {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 4.6vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.track-screen-artist {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 600;
}

.track-screen-lyrics {
  width: 100%;
  padding: 8px 18px 36px;
  text-align: center;
}

.track-screen-lyrics[hidden] {
  display: none !important;
}

.track-screen-lyrics p {
  margin: 0.28em 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1.2rem, 4.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.track-screen-lyrics .lyrics-tag {
  margin-top: 1.1em;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-screen-lyrics .lyrics-gap {
  height: 0.55em;
  margin: 0;
  visibility: hidden;
}

.track-screen-lyrics-empty,
.track-screen-lyrics-loading {
  margin: 0;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  .track-screen-scroll {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    overflow: hidden;
    padding-inline: 8px;
  }

  .track-screen-hero {
    position: static;
    padding-bottom: 20px;
    background: none;
  }

  .track-screen-media {
    width: 100%;
  }

  .track-screen-meta {
    text-align: left;
    margin-inline: 0;
  }

  .track-screen-lyrics {
    overflow-y: auto;
    min-height: 0;
    max-height: 100%;
    padding: 12px 8px 36px 0;
    text-align: left;
  }

  .track-screen--video .track-screen-scroll {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .track-screen-media {
    width: min(100%, 240px, 68vw);
  }
}

.page-landing {
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

body.page-landing {
  background:
    radial-gradient(circle at 78% 8%, rgba(180, 20, 40, 0.28), transparent 26rem),
    radial-gradient(circle at 8% 4%, rgba(153, 92, 255, 0.35), transparent 28rem),
    radial-gradient(circle at 56% 72%, rgba(85, 221, 255, 0.14), transparent 34rem),
    linear-gradient(180deg, #120008 0%, var(--bg) 55%, #05050c 100%);
}

.landing-hero--moon {
  overflow: hidden;
  padding: 0;
}

.landing-hero__grid--moon {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
  min-height: min(68vh, 680px);
}

.landing-hero__visual--moon {
  position: relative;
  margin: 0;
  min-height: 320px;
  border: 0;
  border-radius: 0;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}

.landing-hero--artist {
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 40, 60, 0.22), transparent 42%),
    var(--panel);
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  align-items: stretch;
  min-height: min(72vh, 720px);
}

.landing-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 48px);
}

.landing-hero__eyebrow {
  color: #ffb4c0;
}

.landing-hero__visual {
  position: relative;
  margin: 0;
  min-height: 280px;
}

.landing-hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
}

.landing-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 18, 0.82) 0%, rgba(7, 7, 18, 0.08) 42%, transparent 58%),
    linear-gradient(180deg, transparent 58%, rgba(7, 7, 18, 0.55) 100%);
  pointer-events: none;
}

.landing-page {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: var(--page-max);
  margin-inline: auto;
  padding:
    0
    max(var(--page-pad), env(safe-area-inset-right))
    48px
    max(var(--page-pad), env(safe-area-inset-left));
}

.landing-header .nav {
  margin-bottom: 0;
}

.landing-nav-cta {
  padding: 10px 16px;
  font-size: 0.82rem;
}

.landing-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), var(--shadow);
  backdrop-filter: blur(18px);
}

.landing-hero {
  padding: clamp(28px, 6vw, 48px);
}

.landing-hero--artist {
  padding: 0;
}

.landing-hero__title {
  max-width: 14ch;
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.landing-lead {
  max-width: 42rem;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.65;
}

.landing-copy {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.landing-copy--large {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  color: rgba(255, 248, 255, 0.88);
  line-height: 1.55;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-section {
  padding: 4px 0;
}

.landing-section__title {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.landing-section--unique,
.landing-section--about,
.landing-section--previews {
  padding: clamp(24px, 5vw, 36px);
}

.landing-section--unique {
  background:
    radial-gradient(circle at 88% 12%, rgba(85, 221, 255, 0.16), transparent 38%),
    var(--panel);
}

.landing-section--about {
  background:
    radial-gradient(circle at 8% 0%, rgba(153, 92, 255, 0.14), transparent 40%),
    var(--panel);
}

.landing-preview-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.landing-preview {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.landing-preview.is-playing {
  border-color: rgba(85, 221, 255, 0.45);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(85, 221, 255, 0.12);
}

.landing-preview.is-ended {
  border-color: rgba(255, 180, 192, 0.35);
}

.landing-preview__cover {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.landing-preview__cover--fallback {
  display: block;
  background:
    radial-gradient(circle at 30% 22%, #fff6dc, #ff986d 28%, #834dff 58%, #101024 100%);
}

.landing-preview__meta {
  min-width: 0;
}

.landing-preview__style {
  margin: 0 0 4px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-preview__title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.landing-preview__status {
  margin: 6px 0 0;
  min-height: 1.2em;
  color: var(--faint);
  font-size: 0.82rem;
}

.landing-preview__progress {
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.landing-preview__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transition: width 120ms linear;
}

.landing-preview__play {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
}

.landing-preview-hint {
  margin: 14px 0 0;
  color: #ffb4c0;
  font-size: 0.92rem;
  font-weight: 700;
}

.landing-final {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.landing-final__visual {
  position: relative;
  margin: 0;
  min-height: 360px;
}

.landing-final__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.landing-final__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, rgba(7, 7, 18, 0.88) 100%),
    linear-gradient(180deg, transparent 60%, rgba(7, 7, 18, 0.45) 100%);
  pointer-events: none;
}

.landing-final__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 44px);
}

.landing-final__copy .landing-section__title {
  max-width: none;
}

.landing-final__copy .landing-price {
  text-align: left;
}

.landing-final__copy .landing-pricing__cta {
  align-self: flex-start;
}

.landing-section--pain,
.landing-section--solution {
  padding: clamp(24px, 5vw, 36px);
}

.landing-section--meaning {
  padding: clamp(28px, 5vw, 40px);
  background:
    radial-gradient(circle at 10% 0%, rgba(153, 92, 255, 0.18), transparent 42%),
    var(--panel);
}

.landing-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-list li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.6;
}

.landing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--hot);
}

.landing-list--pain li:last-child {
  margin-bottom: 0;
}

.landing-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  padding: 20px 22px;
}

.landing-step__num {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #10091a;
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.landing-step h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.landing-step p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.landing-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-features li {
  padding: 16px 18px;
  color: var(--text);
  font-weight: 700;
}

.landing-pricing {
  padding: clamp(28px, 5vw, 40px);
  text-align: center;
}

.landing-catalog-line {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.landing-catalog-line strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1rem;
}

.landing-price {
  margin: 0 0 6px;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.landing-price-name {
  margin: 0 0 22px;
  color: var(--faint);
  font-size: 0.92rem;
  font-weight: 700;
}

.landing-pricing__cta {
  display: inline-flex;
  min-width: min(100%, 320px);
  justify-content: center;
  padding: 16px 24px;
  font-size: 1.05rem;
}

.landing-pricing__note {
  margin: 16px auto 0;
  max-width: 28rem;
  color: var(--faint);
  font-size: 0.82rem;
  line-height: 1.5;
}

.landing-pricing__preview {
  display: inline-block;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.landing-faq-list {
  display: grid;
  gap: 10px;
}

.landing-faq-item {
  padding: 0 18px;
}

.landing-faq-item summary {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.landing-faq-item p {
  margin: 0 0 16px;
  padding-top: 2px;
  color: var(--muted);
  line-height: 1.6;
}

.landing-sticky {
  position: fixed;
  inset: auto 0 0;
  z-index: 50;
  display: none;
  padding:
    10px
    max(var(--page-pad), env(safe-area-inset-right))
    calc(10px + env(safe-area-inset-bottom, 0px))
    max(var(--page-pad), env(safe-area-inset-left));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 18, 0.94);
  backdrop-filter: blur(20px) saturate(140%);
}

.landing-sticky__btn {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
}

@media (max-width: 767px) {
  .landing-sticky {
    display: block;
  }

  .landing-nav-cta {
    display: none;
  }

  .landing-header .nav-links > a:not(.brand):first-of-type {
    font-size: 0.88rem;
  }

  .landing-hero__grid--moon {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .landing-hero__visual--moon {
    order: 1;
    min-height: min(58vw, 360px);
    border-radius: 0;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .landing-hero__grid--moon .landing-hero__copy {
    order: 2;
    padding-top: 20px;
  }

  .landing-final {
    grid-template-columns: 1fr;
  }

  .landing-final__visual {
    max-height: min(72vw, 460px);
  }

  .landing-final__photo {
    min-height: 0;
  }

  .landing-final__visual::after {
    background:
      linear-gradient(180deg, transparent 40%, rgba(7, 7, 18, 0.92) 100%);
  }

  .landing-final__copy .landing-pricing__cta {
    align-self: stretch;
  }

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

  .landing-hero__copy {
    order: 2;
    padding-top: 20px;
  }

  .landing-hero__visual {
    order: 1;
    max-height: min(62vw, 420px);
  }

  .landing-hero__photo {
    min-height: 0;
  }

  .landing-hero__visual::after {
    background:
      linear-gradient(180deg, transparent 42%, rgba(7, 7, 18, 0.92) 100%),
      linear-gradient(90deg, transparent 0%, transparent 100%);
  }
}

@media (min-width: 768px) {
  .landing-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .landing-step__num {
    grid-row: auto;
  }

  .landing-step p {
    grid-column: auto;
  }
}
