@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #070711;
  --bg-soft: #0b0b17;
  --panel: rgba(17, 17, 34, 0.78);
  --panel-solid: #111122;
  --panel-light: #17172a;
  --line: rgba(255, 255, 255, 0.09);
  --line-bright: rgba(255, 255, 255, 0.16);
  --text: #f8f7ff;
  --muted: #a4a3b8;
  --faint: #74738a;
  --purple: #aa40ff;
  --pink: #fa2fb5;
  --orange: #ff6b24;
  --cyan: #27c9ff;
  --green: #48e39b;
  --red: #ff647c;
  --gradient: linear-gradient(115deg, var(--purple), var(--pink) 48%, var(--orange));
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 22px;
}

/* Professional creator dashboard */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 92, 255, 0.34);
  border-radius: 12px;
  background: var(--gradient);
  color: white;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(190, 54, 214, 0.18);
}

.studio-content {
  max-width: 1380px;
  padding-top: 38px;
}

.studio-view {
  min-height: calc(100vh - 170px);
  animation: studio-view-in 260ms ease both;
}

.studio-view[hidden] {
  display: none;
}

@keyframes studio-view-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.mobile-studio-nav {
  display: none;
}

.dashboard-hero {
  min-height: 275px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 36px;
  overflow: hidden;
  padding: clamp(32px, 4vw, 50px);
  border: 1px solid rgba(207, 79, 255, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 72, 183, 0.16), transparent 30%),
    radial-gradient(circle at 68% 110%, rgba(55, 168, 255, 0.13), transparent 35%),
    linear-gradient(130deg, rgba(29, 14, 52, 0.96), rgba(13, 13, 28, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.dashboard-welcome {
  position: relative;
  z-index: 2;
}

.dashboard-welcome h2 {
  max-width: 680px;
  margin-top: 11px;
  font: 650 clamp(34px, 4.2vw, 56px)/1.04 "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
}

.dashboard-welcome > p {
  max-width: 580px;
  margin-top: 13px;
  color: #aaa7bc;
  font-size: 13px;
  line-height: 1.7;
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.dashboard-actions .btn {
  min-height: 47px;
  font-size: 11px;
}

.dashboard-secondary-btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  color: #dedbea;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: 160ms ease;
}

.dashboard-secondary-btn:hover {
  border-color: rgba(200, 82, 255, 0.42);
  background: rgba(191, 69, 255, 0.08);
}

.dashboard-brand-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(8, 8, 20, 0.54);
  backdrop-filter: blur(18px);
}

.dashboard-brand-card img {
  width: 82px;
  height: 82px;
  position: relative;
  z-index: 1;
  border-radius: 22px;
  box-shadow: 0 0 38px rgba(203, 56, 255, 0.28);
}

.dashboard-brand-card small,
.dashboard-brand-card strong,
.dashboard-brand-card span {
  display: block;
}

.dashboard-brand-card small {
  color: #d685ff;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.dashboard-brand-card strong {
  margin-top: 4px;
  font: 650 18px/1.2 "Space Grotesk", sans-serif;
}

.dashboard-brand-card span {
  margin-top: 7px;
  color: var(--faint);
  font-size: 9px;
}

.dashboard-brand-glow {
  width: 140px;
  height: 140px;
  position: absolute;
  left: -20px;
  border-radius: 50%;
  background: rgba(206, 50, 255, 0.22);
  filter: blur(42px);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 18px;
}

.stat-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 15, 30, 0.72);
  transition: 160ms ease;
}

.stat-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-2px);
}

.stat-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
}

.stat-icon.purple { background: rgba(181, 67, 255, 0.12); color: #d483ff; }
.stat-icon.green { background: rgba(72, 227, 155, 0.1); color: var(--green); }
.stat-icon.amber { background: rgba(255, 185, 75, 0.1); color: #ffc66d; }
.stat-icon.red { background: rgba(255, 100, 124, 0.1); color: #ff91a3; }

.stat-card small,
.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card small {
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-card strong {
  margin-top: 2px;
  font: 650 25px/1 "Space Grotesk", sans-serif;
}

.stat-card span {
  margin-top: 5px;
  color: var(--faint);
  font-size: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 18px;
  margin-top: 18px;
}

.dashboard-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 15, 30, 0.7);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.panel-heading h3,
.next-step-panel h3 {
  margin-top: 5px;
  font: 650 18px/1.2 "Space Grotesk", sans-serif;
}

.panel-heading button {
  border: 0;
  background: transparent;
  color: #d080ff;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-release-list {
  display: grid;
  gap: 8px;
}

.dashboard-empty {
  min-height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px dashed var(--line-bright);
  border-radius: 15px;
}

.dashboard-empty > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(180, 61, 255, 0.1);
  color: #d581ff;
}

.dashboard-empty strong {
  display: block;
  font-size: 10px;
}

.dashboard-empty p {
  margin-top: 4px;
  color: var(--faint);
  font-size: 9px;
}

.dashboard-release-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 13px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(5, 5, 15, 0.38);
}

.dashboard-release-art {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(184, 64, 255, 0.12);
  color: #d98dff;
}

.dashboard-release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-release-copy {
  min-width: 0;
}

.dashboard-release-copy strong,
.dashboard-release-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-release-copy strong { font-size: 10px; }
.dashboard-release-copy span,
.dashboard-release-date { margin-top: 3px; color: var(--faint); font-size: 8px; }

.next-step-panel {
  background:
    radial-gradient(circle at 100% 0, rgba(191, 57, 255, 0.13), transparent 35%),
    rgba(15, 15, 30, 0.76);
}

.next-step-panel > p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.mini-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 18px 0;
}

.mini-progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.mini-progress span.complete { background: var(--gradient); }

.next-step-panel ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.next-step-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
}

.next-step-panel li span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(180, 61, 255, 0.1);
  color: #d581ff;
  font-size: 8px;
  font-weight: 800;
}

.next-step-panel > button {
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  border: 0;
  border-radius: 12px;
  background: var(--gradient);
  color: white;
  font-size: 9px;
  font-weight: 850;
  cursor: pointer;
}

.dashboard-policy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 17px 20px;
  border: 1px solid rgba(72, 227, 155, 0.13);
  border-radius: 16px;
  background: rgba(72, 227, 155, 0.035);
}

.dashboard-policy-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(72, 227, 155, 0.09);
  color: var(--green);
}

.dashboard-policy strong { display: block; font-size: 10px; }
.dashboard-policy p { margin-top: 3px; color: var(--faint); font-size: 8px; }

.policy-chip,
.verified-chip {
  padding: 7px 10px;
  border: 1px solid rgba(72, 227, 155, 0.2);
  border-radius: 999px;
  background: rgba(72, 227, 155, 0.06);
  color: var(--green);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.page-intro h2 {
  margin-top: 7px;
  font: 650 clamp(32px, 4vw, 48px)/1.08 "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.page-intro p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.compact-action {
  min-height: 46px;
  font-size: 10px;
}

.releases-section-full {
  margin-top: 0;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.profile-card,
.security-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 15, 30, 0.72);
}

.profile-card-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gradient);
  font: 700 16px/1 "Space Grotesk", sans-serif;
  box-shadow: 0 12px 34px rgba(190, 54, 214, 0.2);
}

.profile-label {
  color: #d581ff;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.profile-card h3,
.security-card h3 {
  margin-top: 4px;
  font: 650 18px/1.2 "Space Grotesk", sans-serif;
}

.profile-card-top p,
.security-card p {
  margin-top: 4px;
  color: var(--faint);
  font-size: 9px;
}

.profile-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.profile-details small,
.profile-details strong {
  display: block;
}

.profile-details small {
  color: var(--faint);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-details strong {
  margin-top: 5px;
  font-size: 9px;
}

.security-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.security-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(39, 201, 255, 0.09);
  color: var(--cyan);
}

.security-card .dashboard-secondary-btn {
  grid-column: 1 / -1;
}

.account-settings {
  margin-top: 18px;
}

.support-card {
  margin-top: 18px;
}

.creator-value-section {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(162, 89, 255, 0.08), rgba(17, 17, 24, 0.94));
}

.creator-value-heading h2 {
  margin: 7px 0 4px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 30px);
}

.creator-value-heading p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.creator-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.creator-value-grid article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(7, 7, 9, 0.58);
}

.creator-value-grid article > span,
.creator-value-grid article small {
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.creator-value-grid article strong {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-size: 17px;
}

.creator-value-grid article p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.creator-value-grid article.locked {
  border-color: rgba(244, 63, 142, 0.18);
}

.creator-value-grid article.locked small {
  color: var(--pink);
}

@media (max-width: 1100px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .dashboard-brand-card {
    max-width: 420px;
  }
}

@media (max-width: 850px) {
  .studio-content {
    padding-top: 28px;
    padding-bottom: 94px;
  }

  .mobile-studio-nav {
    height: 68px;
    position: fixed;
    inset: auto 12px 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 7px;
    border: 1px solid var(--line-bright);
    border-radius: 18px;
    background: rgba(9, 9, 20, 0.92);
    backdrop-filter: blur(24px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 12px;
    color: var(--faint);
    font-size: 7px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-nav-item span {
    font-size: 15px;
  }

  .mobile-nav-item.active {
    background: rgba(183, 60, 255, 0.12);
    color: #dd91ff;
  }

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

  .creator-value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .dashboard-hero {
    min-height: 0;
    padding: 25px 20px;
  }

  .dashboard-welcome h2 {
    font-size: 35px;
  }

  .dashboard-actions,
  .page-intro {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-actions .btn,
  .dashboard-secondary-btn,
  .compact-action {
    width: 100%;
  }

  .dashboard-brand-card {
    grid-template-columns: 58px 1fr;
    padding: 16px;
  }

  .dashboard-brand-card img {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .stat-card {
    align-items: flex-start;
    padding: 15px;
  }

  .stat-icon {
    width: 34px;
    height: 34px;
  }

  .dashboard-release-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .dashboard-release-date {
    display: none;
  }

  .dashboard-release-row .release-status {
    grid-column: auto;
  }

  .dashboard-policy {
    grid-template-columns: auto 1fr;
  }

  .policy-chip {
    width: max-content;
    grid-column: 2;
  }

  .profile-card-top {
    grid-template-columns: auto 1fr;
  }

  .verified-chip {
    width: max-content;
    grid-column: 2;
  }

  .profile-details {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% -10%, rgba(174, 49, 255, 0.12), transparent 30%),
    radial-gradient(circle at 45% 100%, rgba(38, 182, 255, 0.08), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.ambient {
  position: fixed;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.16;
  border-radius: 50%;
  z-index: -1;
}

.ambient-one {
  width: 420px;
  height: 420px;
  background: var(--pink);
  right: -180px;
  top: 14%;
}

.ambient-two {
  width: 380px;
  height: 380px;
  background: #3b5cff;
  left: 20%;
  bottom: -230px;
}

.sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 20px;
  background: rgba(8, 8, 18, 0.88);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(24px);
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(198, 46, 255, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font: 700 16px/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.055em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.035em;
  color: var(--muted);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 56px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 180ms ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.nav-item.active {
  background: linear-gradient(100deg, rgba(176, 56, 255, 0.18), rgba(255, 59, 157, 0.08));
  color: var(--text);
  border: 1px solid rgba(207, 90, 255, 0.2);
}

.nav-item.active::before {
  content: "";
  position: absolute;
  left: -20px;
  width: 3px;
  height: 26px;
  border-radius: 0 4px 4px 0;
  background: var(--gradient);
}

.nav-icon {
  width: 25px;
  text-align: center;
  font-size: 18px;
  color: #d578ff;
}

.sidebar-note {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.sidebar-note strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-note p {
  margin-top: 5px;
  color: var(--faint);
  font-size: 10px;
  line-height: 1.5;
}

.sidebar-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 5px 0;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--gradient);
  font-size: 11px;
  font-weight: 800;
}

.user-details {
  min-width: 0;
}

.user-name {
  max-width: 150px;
  overflow: hidden;
  color: #e9e7f4;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-tag {
  margin-top: 2px;
  font-size: 11px;
}

.user-tag a {
  color: #d17aff;
  text-decoration: none;
}

.main {
  min-height: 100vh;
  margin-left: 250px;
}

.topbar {
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  background: rgba(7, 7, 17, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px);
}

.topbar h1 {
  margin-top: 2px;
  font: 600 22px/1.1 "Space Grotesk", sans-serif;
}

.eyebrow {
  display: inline-block;
  color: #d581ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.topbar-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.mobile-header {
  display: none;
}

.content {
  width: 100%;
}

.landing {
  display: flex;
  flex-direction: column;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 72px clamp(24px, 5.5vw, 88px);
}

.pill {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(200, 81, 255, 0.24);
  border-radius: 999px;
  background: rgba(173, 60, 255, 0.08);
  color: #d9a0ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h2 {
  max-width: 720px;
  font: 700 clamp(44px, 5.2vw, 78px)/0.99 "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
}

.hero h2 span {
  background: linear-gradient(100deg, #b752ff 5%, #ff3ca6 48%, #ff8637 85%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 600px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 0;
  border-radius: 14px;
  padding: 0 22px;
  color: white;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.primary-btn {
  background: var(--gradient);
  box-shadow: 0 14px 32px rgba(200, 48, 195, 0.2);
}

.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(200, 48, 195, 0.32);
}

.btn:focus-visible,
a:focus-visible,
.dropzone:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.6;
}

.text-link {
  color: #dedbea;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: #df8cff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero-visual::after {
  content: "";
  width: 72%;
  height: 12%;
  position: absolute;
  bottom: 5%;
  background: rgba(144, 51, 255, 0.2);
  filter: blur(50px);
  border-radius: 50%;
}

.hero-visual > img {
  width: min(100%, 550px);
  aspect-ratio: 1;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border-radius: 38px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46);
  mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
}

.brand-orbit {
  width: 82%;
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(188, 74, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(211, 53, 255, 0.11);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  50% {
    transform: scale(1.04);
    opacity: 0.65;
  }
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--line-bright);
  border-radius: 16px;
  background: rgba(14, 14, 29, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-card small {
  display: block;
  color: var(--faint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.floating-card strong {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

.float-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(174, 63, 255, 0.16);
  color: #d58aff;
}

.quality-float {
  left: -4%;
  top: 26%;
}

.review-float {
  right: -2%;
  bottom: 20%;
}

.review-float .float-icon {
  color: var(--green);
  background: rgba(72, 227, 155, 0.12);
}

.section {
  max-width: 1280px;
  width: calc(100% - clamp(48px, 10vw, 144px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 44px;
}

.section-heading h2,
.quality-copy h2,
.final-cta h2 {
  margin-top: 12px;
  font: 650 clamp(32px, 3.7vw, 52px)/1.08 "Space Grotesk", sans-serif;
  letter-spacing: -0.035em;
}

.section-heading p,
.quality-copy > p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 15px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card {
  min-height: 260px;
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  overflow: hidden;
}

.step-card:hover {
  border-color: rgba(196, 83, 255, 0.27);
}

.step-number {
  position: absolute;
  right: 20px;
  top: 17px;
  color: rgba(255, 255, 255, 0.1);
  font: 700 34px/1 "Space Grotesk", sans-serif;
}

.step-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(180, 61, 255, 0.12);
  color: #d983ff;
  font-size: 20px;
}

.step-card h3 {
  margin-top: 42px;
  font: 650 17px/1.2 "Space Grotesk", sans-serif;
}

.step-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.quality-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.source-note {
  margin-top: 28px;
  padding: 17px;
  border-left: 2px solid #c249ff;
  background: rgba(193, 71, 255, 0.055);
  border-radius: 0 13px 13px 0;
}

.source-note strong,
.source-note span {
  display: block;
}

.source-note strong {
  font-size: 11px;
}

.source-note span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.quality-stack {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.quality-card {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.quality-card.featured {
  border-color: rgba(192, 67, 255, 0.3);
  background: linear-gradient(100deg, rgba(177, 57, 255, 0.12), rgba(255, 54, 155, 0.04));
  transform: scale(1.025);
}

.quality-card small {
  display: block;
  color: var(--faint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.quality-card strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.quality-use {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
}

.quality-bars {
  width: 44px;
  height: 30px;
  display: block;
  background: repeating-linear-gradient(90deg, #c34cff 0 3px, transparent 3px 7px);
  clip-path: polygon(0 40%, 10% 30%, 20% 50%, 30% 8%, 40% 65%, 50% 20%, 60% 70%, 70% 32%, 80% 58%, 90% 15%, 100% 38%, 100% 65%, 90% 85%, 80% 62%, 70% 80%, 60% 45%, 50% 75%, 40% 42%, 30% 92%, 20% 55%, 10% 70%, 0 60%);
}

.bars-low {
  opacity: 0.55;
}

.bars-high {
  background: repeating-linear-gradient(90deg, var(--cyan) 0 3px, transparent 3px 6px);
}

.final-cta {
  max-width: 1280px;
  width: calc(100% - clamp(48px, 10vw, 144px));
  margin: 30px auto 80px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(210, 78, 255, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(162, 50, 255, 0.13), rgba(255, 53, 158, 0.04)),
    var(--panel);
}

.final-cta h2 {
  max-width: 700px;
  font-size: clamp(25px, 3vw, 40px);
}

.final-cta .btn {
  flex: 0 0 auto;
}

.site-footer {
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer a {
  color: #b8b3c8;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--cyan);
}

/* Account access */
.auth-loading .sidebar,
.auth-loading .topbar,
.auth-loading .mobile-header,
.auth-loading .main {
  visibility: hidden;
}

.signed-out .sidebar,
.signed-out .topbar,
.signed-out .mobile-header {
  display: none;
}

.signed-out .main {
  margin-left: 0;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(440px, 0.82fr);
  background: #080812;
}

.auth-showcase {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 96px);
  background:
    radial-gradient(circle at 84% 38%, rgba(42, 193, 255, 0.18), transparent 28%),
    radial-gradient(circle at 78% 75%, rgba(255, 93, 35, 0.2), transparent 28%),
    radial-gradient(circle at 25% 18%, rgba(188, 56, 255, 0.32), transparent 36%),
    linear-gradient(135deg, #0c0b21 0%, #15104a 43%, #6d175e 100%);
}

.auth-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.auth-showcase::after {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  right: -220px;
  bottom: -220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 145px rgba(255, 255, 255, 0.018);
}

.auth-showcase-content {
  max-width: 660px;
  position: relative;
  z-index: 3;
}

.auth-brand-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #e2b4ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.auth-brand-label::before {
  content: "";
  width: 25px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}

.auth-showcase h2 {
  font: 700 clamp(44px, 5.1vw, 78px)/1.01 "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
}

.auth-showcase h2 span {
  background: linear-gradient(96deg, #d574ff 5%, #ff77c7 52%, #ffb274);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.auth-showcase-content > p {
  max-width: 590px;
  margin-top: 24px;
  color: rgba(242, 236, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.auth-benefits {
  max-width: 560px;
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.auth-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(8, 7, 28, 0.24);
  backdrop-filter: blur(14px);
}

.auth-benefit > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(214, 111, 255, 0.13);
  color: #e3a7ff;
  font-size: 17px;
}

.auth-benefit strong,
.auth-benefit small {
  display: block;
}

.auth-benefit strong {
  font-size: 11px;
}

.auth-benefit small {
  margin-top: 3px;
  color: rgba(239, 231, 255, 0.54);
  font-size: 9px;
}

.platform-boundary {
  max-width: 610px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-boundary > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #b844ff, #ff3c9f, #ff7939);
  font: 800 12px/1 "Space Grotesk", sans-serif;
}

.platform-boundary p {
  color: rgba(240, 234, 255, 0.52);
  font-size: 9px;
  line-height: 1.6;
}

.platform-boundary strong {
  color: rgba(255, 255, 255, 0.82);
}

.auth-art {
  width: min(34vw, 430px);
  position: absolute;
  right: -12%;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  opacity: 0.32;
  pointer-events: none;
}

.auth-art img {
  width: 100%;
  display: block;
  border-radius: 50%;
}

.auth-orbit {
  width: 112%;
  aspect-ratio: 1;
  position: absolute;
  left: -6%;
  top: -6%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(46, 206, 255, 0.15);
}

.auth-panel {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px clamp(30px, 5vw, 78px);
  background:
    radial-gradient(circle at 100% 0, rgba(183, 68, 255, 0.08), transparent 28%),
    #f7f6fa;
  color: #1b1923;
}

.auth-card {
  width: min(100%, 440px);
}

.file-mode-warning {
  display: none;
}

.file-mode .file-mode-warning {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
  padding: 13px 15px;
  border: 1px solid #f2c77c;
  border-radius: 12px;
  background: #fff7e8;
  color: #6d4a13;
  font-size: 9px;
  line-height: 1.5;
}

.file-mode-warning strong {
  font-size: 10px;
}

.file-mode-warning a {
  width: fit-content;
  margin-top: 4px;
  color: #8734b7;
  font-weight: 800;
}

.auth-mobile-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 32px;
}

.auth-mobile-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.auth-mobile-brand strong,
.auth-mobile-brand small {
  display: block;
}

.auth-mobile-brand strong {
  font: 700 14px/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.auth-mobile-brand small {
  margin-top: 5px;
  color: #8c8996;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 5px;
  padding: 5px;
  border: 1px solid #e1dfe7;
  border-radius: 14px;
  background: #eeedf2;
}

.auth-tab {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #777381;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.active {
  background: white;
  color: #211e2a;
  box-shadow: 0 4px 16px rgba(20, 16, 31, 0.08);
}

.auth-heading {
  margin: 30px 0 26px;
}

.auth-heading .eyebrow {
  color: #a63de8;
}

.auth-heading h2 {
  margin-top: 8px;
  font: 700 29px/1.15 "Space Grotesk", sans-serif;
  letter-spacing: -0.035em;
}

.auth-heading p {
  margin-top: 9px;
  color: #817d89;
  font-size: 11px;
}

.auth-field {
  margin-bottom: 17px;
}

.auth-field > label,
.auth-label-row label {
  color: #45414e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.auth-field > label {
  display: block;
  margin-bottom: 8px;
}

.forgot-link {
  border: 0;
  background: transparent;
  color: #a337df;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.forgot-link:disabled {
  opacity: 0.5;
}

.auth-field input {
  width: 100%;
  height: 50px;
  border: 1px solid #d9d6df;
  border-radius: 12px;
  background: white;
  color: #211e28;
  padding: 0 14px;
  font-size: 12px;
  box-shadow: 0 4px 14px rgba(25, 20, 38, 0.025);
}

.auth-field input::placeholder {
  color: #aaa7b0;
}

.auth-field input:focus {
  border-color: #ad43e7;
  outline: 3px solid rgba(173, 67, 231, 0.1);
}

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 62px;
}

.password-toggle {
  height: 34px;
  position: absolute;
  right: 8px;
  top: 8px;
  border: 0;
  background: transparent;
  color: #9140bd;
  padding: 0 7px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.confirm-field[hidden] {
  display: none;
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 24px 0 18px;
  color: #aaa6b0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #dedce3;
}

.google-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid #d6d3dd;
  border-radius: 12px;
  background: white;
  color: #312d39;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.google-btn:hover {
  border-color: #b9b4c1;
  box-shadow: 0 7px 22px rgba(23, 18, 34, 0.07);
}

.google-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #4285f4;
  font: 800 17px/1 Arial, sans-serif;
}

.auth-terms {
  margin-top: 19px;
  color: #96929d;
  font-size: 8px;
  line-height: 1.65;
  text-align: center;
}

.auth-support {
  margin: 11px 0 0;
  color: #aaa5b1;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.auth-support a {
  color: #df9aff;
  font-weight: 700;
  text-decoration: none;
}

.auth-support a:hover {
  text-decoration: underline;
}

.auth-security {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 25px;
  color: #9a96a2;
  font-size: 8px;
  font-weight: 700;
}

.auth-security span {
  color: #28bd77;
  text-shadow: 0 0 8px rgba(40, 189, 119, 0.4);
}

.auth-status {
  display: none;
  margin-top: 13px;
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 9px;
  line-height: 1.5;
}

.auth-status.show {
  display: block;
}

.auth-status.error {
  border: 1px solid #ffd0d8;
  background: #fff1f4;
  color: #b83049;
}

.auth-status.success {
  border: 1px solid #bcebd4;
  background: #effbf5;
  color: #177a4e;
}

/* Creator workspace */
.studio-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px clamp(22px, 5vw, 70px) 0;
}

.studio-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.studio-intro h2 {
  margin-top: 8px;
  font: 650 clamp(32px, 4vw, 50px)/1.1 "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.studio-intro p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.review-time {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.022);
}

.review-time > span {
  color: #d378ff;
  font-size: 23px;
}

.review-time small,
.aside-kicker {
  display: block;
  color: var(--faint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.review-time strong {
  display: block;
  margin-top: 3px;
  font-size: 11px;
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 22px;
}

.upload-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 12, 25, 0.72);
}

.upload-step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: var(--faint);
  text-align: left;
  cursor: pointer;
  transition: 180ms ease;
}

.upload-step > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  font: 700 9px/1 "Space Grotesk", sans-serif;
}

.upload-step div { min-width: 0; }
.upload-step strong,
.upload-step small { display: block; }
.upload-step strong { color: inherit; font-size: 11px; }
.upload-step small { margin-top: 3px; font-size: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.upload-step:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
}

.upload-step.active {
  border-color: rgba(200, 78, 255, 0.3);
  background: linear-gradient(135deg, rgba(177, 55, 255, 0.16), rgba(255, 61, 162, 0.07));
  color: var(--text);
}

.upload-step.active > span {
  border-color: transparent;
  background: var(--gradient);
  color: white;
}

.upload-step.complete > span {
  border-color: rgba(72, 227, 155, 0.36);
  background: rgba(72, 227, 155, 0.1);
  color: #62e6a5;
}

.form-card {
  min-width: 0;
}

.upload-step-panel {
  min-height: 420px;
}

.upload-step-panel[hidden] {
  display: none;
}

.form-section {
  margin-bottom: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 15, 30, 0.7);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.13);
}

.form-section-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.section-index {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(197, 78, 255, 0.24);
  border-radius: 10px;
  background: rgba(182, 63, 255, 0.09);
  color: #d487ff;
  font: 700 9px/1 "Space Grotesk", sans-serif;
}

.form-section-heading h3 {
  font: 650 17px/1.2 "Space Grotesk", sans-serif;
}

.form-section-heading p {
  margin-top: 5px;
  color: var(--faint);
  font-size: 11px;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.step-actions-end { justify-content: flex-end; }

.step-next,
.step-back {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.step-next {
  border: 0;
  background: var(--gradient);
  color: white;
  box-shadow: 0 10px 30px rgba(174, 51, 255, 0.18);
}

.step-back {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
}

.step-next:hover,
.step-back:hover { transform: translateY(-1px); }

.persona-choice-card {
  display: block;
  padding: 22px;
  border: 1px solid rgba(197, 78, 255, 0.2);
  border-radius: 18px;
  background: rgba(172, 53, 255, 0.045);
}

.inline-artist-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
  margin-top: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.inline-artist-fields[hidden] { display: none; }

.artist-status.show { margin-top: 14px; }

.genre-picker {
  display: grid;
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(199, 81, 255, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 64, 255, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.018);
}

.genre-subgenre-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.genre-subgenre-label span {
  color: var(--faint);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.genre-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.genre-search-row button,
.genre-suggestion button {
  min-width: 72px;
  border: 1px solid rgba(199, 81, 255, 0.32);
  border-radius: 12px;
  background: rgba(183, 60, 255, 0.1);
  color: #e7c7ff;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.genre-search-row select,
.genre-custom-input {
  min-height: 46px;
  border-color: rgba(199, 81, 255, 0.22);
  background-color: rgba(7, 6, 18, 0.82);
}

.genre-custom-input[hidden] { display: none; }

.genre-custom-input {
  animation: genre-input-in 160ms ease-out;
}

@keyframes genre-input-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.genre-search-row button:disabled,
.genre-suggestion button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 0;
}

.genre-tags:empty { display: none; }

.genre-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 11px;
  border: 1px solid rgba(94, 222, 168, 0.25);
  border-radius: 999px;
  background: rgba(72, 227, 155, 0.07);
  color: #bff3dc;
  font-size: 9px;
  font-weight: 750;
}

.genre-tag button {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
}

.genre-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 187, 84, 0.25);
  border-radius: 13px;
  background: rgba(255, 166, 49, 0.055);
}

.genre-suggestion[hidden] { display: none; }
.genre-suggestion strong,
.genre-suggestion small { display: block; }
.genre-suggestion strong { color: #ffd59b; font-size: 10px; }
.genre-suggestion small { margin-top: 4px; color: var(--faint); font-size: 8px; line-height: 1.45; }

.simple-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.simple-note > span { color: #d17aff; font-size: 18px; }

.optional-details {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
}

.optional-details summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  list-style: none;
  cursor: pointer;
}

.optional-details summary::-webkit-details-marker { display: none; }
.optional-details summary > span { color: #d17aff; font-size: 18px; }
.optional-details summary strong,
.optional-details summary small { display: block; }
.optional-details summary strong { font-size: 12px; }
.optional-details summary small { margin-top: 3px; color: var(--faint); font-size: 9px; }

.optional-details[open] summary { border-bottom: 1px solid var(--line); }
.optional-details-content { display: grid; gap: 16px; padding: 18px; }
.compact-consent { margin: 0; }

.submit-step-actions .submit-btn {
  width: auto;
  margin: 0;
}

.upload-status.show {
  margin: 0 0 18px;
}

.drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dropzone {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
  text-align: center;
  cursor: pointer;
  transition: 180ms ease;
}

.dropzone:hover,
.dropzone.dragover {
  border-color: rgba(199, 81, 255, 0.72);
  background: rgba(172, 53, 255, 0.06);
  transform: translateY(-2px);
}

.dropzone.filled {
  border-style: solid;
  border-color: rgba(72, 227, 155, 0.5);
  background: rgba(72, 227, 155, 0.045);
}

.dropzone-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(176, 62, 255, 0.2), rgba(255, 59, 162, 0.1));
  color: #d68aff;
  font-size: 20px;
}

.dropzone-title {
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.dropzone-hint {
  max-width: 250px;
  margin-top: 6px;
  color: var(--faint);
  font-size: 9px;
  line-height: 1.5;
}

.format-callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 13px;
  background: rgba(49, 180, 255, 0.055);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.format-callout > span {
  color: var(--cyan);
}

.format-callout strong {
  color: #dff7ff;
}

.row {
  display: flex;
  gap: 16px;
}

.row > .field {
  flex: 1;
  min-width: 0;
}

.field {
  margin-bottom: 19px;
}

.field:last-child {
  margin-bottom: 0;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #cac7d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field label span {
  margin-left: 5px;
  color: var(--faint);
  font-size: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b0b17;
  color: var(--text);
  font-size: 12px;
  transition: border-color 160ms ease, background 160ms ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 100px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #59586d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(191, 72, 255, 0.65);
  background: #0d0d1b;
  outline: none;
}

.field select:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.field-help {
  display: block;
  margin-top: 7px;
  color: var(--faint);
  font-size: 9px;
}

.compact-field {
  max-width: calc(50% - 8px);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.017);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
  cursor: pointer;
}

.consent-row:hover {
  border-color: var(--line-bright);
}

.consent-row input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--purple);
}

.consent-row strong {
  color: #e5e2ed;
}

.submit-btn {
  width: 100%;
  margin-top: 12px;
}

.submit-note {
  margin-top: 11px;
  color: var(--faint);
  font-size: 9px;
  text-align: center;
}

.status {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 11px;
}

.status.show {
  display: block;
}

.status.info {
  border: 1px solid rgba(186, 70, 255, 0.22);
  background: rgba(179, 63, 255, 0.08);
  color: #d69aff;
}

.status.success {
  border: 1px solid rgba(72, 227, 155, 0.22);
  background: rgba(72, 227, 155, 0.08);
  color: var(--green);
}

.status.error {
  border: 1px solid rgba(255, 100, 124, 0.22);
  background: rgba(255, 100, 124, 0.08);
  color: #ff8da0;
}

.studio-aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aside-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 15, 30, 0.68);
}

.aside-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 17px;
  list-style: none;
}

.aside-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.aside-card li span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(174, 60, 255, 0.1);
  color: #ce80ff;
  font-size: 8px;
  font-weight: 800;
}

.accent-card {
  background: linear-gradient(145deg, rgba(159, 49, 255, 0.14), rgba(255, 50, 165, 0.045));
  border-color: rgba(194, 77, 255, 0.2);
}

.aside-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(197, 77, 255, 0.14);
  color: #dc91ff;
}

.aside-card h3 {
  font: 650 14px/1.3 "Space Grotesk", sans-serif;
}

.aside-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.policy-card h3 {
  margin-top: 10px;
}

.studio-footer {
  margin-top: 34px;
}

#upload,
#my-releases,
#account-settings {
  scroll-margin-top: 110px;
}

.releases-section {
  margin-top: 30px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(169, 58, 255, 0.09), transparent 32%),
    rgba(15, 15, 30, 0.7);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.13);
}

.releases-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.releases-heading h2 {
  margin-top: 7px;
  font: 650 24px/1.2 "Space Grotesk", sans-serif;
}

.releases-heading p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.refresh-releases-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0 15px;
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: #d9d5e4;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: 160ms ease;
}

.refresh-releases-btn:hover {
  border-color: rgba(194, 77, 255, 0.45);
  background: rgba(194, 77, 255, 0.08);
}

.refresh-releases-btn:disabled {
  cursor: wait;
  opacity: 0.55;
}

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

.release-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 5, 15, 0.42);
  transition: 160ms ease;
}

.release-card:hover {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.025);
  transform: translateY(-1px);
}

.release-artwork {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(185, 60, 255, 0.2), rgba(255, 54, 161, 0.1));
  color: #d98dff;
  font-size: 20px;
}

.release-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-details {
  min-width: 0;
}

.release-details h3 {
  overflow: hidden;
  color: #f3f0f7;
  font: 650 14px/1.3 "Space Grotesk", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-details > p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.release-meta {
  display: flex;
  gap: 14px;
  margin-top: 9px;
  color: var(--faint);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-status {
  min-width: 94px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.release-status.pending {
  border-color: rgba(255, 185, 75, 0.22);
  background: rgba(255, 185, 75, 0.08);
  color: #ffc66d;
}

.release-status.under_review {
  border-color: rgba(255, 185, 75, 0.3);
  background: rgba(255, 185, 75, 0.1);
  color: #ffc66d;
}

.release-status.approved {
  border-color: rgba(72, 227, 155, 0.22);
  background: rgba(72, 227, 155, 0.08);
  color: var(--green);
}

.release-status.rejected,
.release-status.removed {
  border-color: rgba(255, 100, 124, 0.22);
  background: rgba(255, 100, 124, 0.08);
  color: #ff91a3;
}

.release-state {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  border: 1px dashed var(--line-bright);
  border-radius: 16px;
  color: var(--muted);
  text-align: left;
}

.release-state.error {
  border-color: rgba(255, 100, 124, 0.25);
  background: rgba(255, 100, 124, 0.035);
}

.release-state-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: rgba(185, 60, 255, 0.1);
  color: #d98dff;
  font-size: 17px;
}

.release-state strong {
  display: block;
  color: #ded9e7;
  font-size: 11px;
}

.release-state p {
  max-width: 480px;
  margin-top: 5px;
  color: var(--faint);
  font-size: 9px;
  line-height: 1.55;
}

.account-settings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 100, 124, 0.18);
  border-radius: 20px;
  background: linear-gradient(110deg, rgba(255, 100, 124, 0.055), rgba(255, 255, 255, 0.015));
}

.account-settings h2 {
  margin-top: 7px;
  font: 650 21px/1.2 "Space Grotesk", sans-serif;
}

.account-settings p {
  max-width: 660px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.danger-outline-btn,
.cancel-btn,
.danger-btn {
  min-height: 44px;
  border-radius: 12px;
  padding: 0 17px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.danger-outline-btn {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 100, 124, 0.45);
  background: rgba(255, 100, 124, 0.06);
  color: #ff91a3;
}

.danger-outline-btn:hover {
  background: rgba(255, 100, 124, 0.12);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 2, 9, 0.8);
  backdrop-filter: blur(18px);
}

.modal-backdrop[hidden] {
  display: none;
}

.delete-dialog {
  width: min(100%, 460px);
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 100, 124, 0.2);
  border-radius: 24px;
  background: #121220;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.58);
}

.modal-close {
  width: 34px;
  height: 34px;
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}

.danger-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 100, 124, 0.25);
  border-radius: 15px;
  background: rgba(255, 100, 124, 0.1);
  color: #ff879b;
  font: 800 18px/1 "Space Grotesk", sans-serif;
}

.delete-dialog .eyebrow {
  color: #ff8296;
}

.delete-dialog h2 {
  max-width: 360px;
  margin-top: 8px;
  font: 650 25px/1.16 "Space Grotesk", sans-serif;
}

.delete-dialog > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.75;
}

.delete-dialog > label {
  display: block;
  margin-top: 23px;
  color: #d8d4df;
  font-size: 9px;
  font-weight: 700;
}

.delete-dialog > label strong {
  color: #ff899c;
}

.delete-dialog > input {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  background: #090912;
  color: white;
  padding: 0 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.delete-dialog > input:focus {
  border-color: #ff7189;
  outline: 3px solid rgba(255, 100, 124, 0.09);
}

.delete-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.cancel-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.danger-btn {
  border: 0;
  background: linear-gradient(110deg, #cf304e, #ff667e);
  color: white;
}

.danger-btn:disabled,
.cancel-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.delete-status {
  display: none;
  margin-top: 13px;
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 9px;
}

.delete-status.show {
  display: block;
}

.delete-status.info {
  background: rgba(184, 69, 255, 0.08);
  color: #d58dff;
}

.delete-status.success {
  background: rgba(72, 227, 155, 0.08);
  color: var(--green);
}

.delete-status.error {
  background: rgba(255, 100, 124, 0.09);
  color: #ff8ca0;
}

.hidden-input {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .sidebar {
    width: 210px;
  }

  .main {
    margin-left: 210px;
  }

  .hero {
    grid-template-columns: 1fr 0.86fr;
    padding-left: 44px;
    padding-right: 44px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .floating-card {
    display: none;
  }

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

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

  .auth-page {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  }

  .auth-showcase {
    padding: 50px;
  }

  .auth-art {
    display: none;
  }
}

@media (max-width: 850px) {
  .sidebar,
  .topbar {
    display: none;
  }

  .main {
    margin-left: 0;
  }

  .mobile-header {
    height: 70px;
    position: sticky;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: rgba(7, 7, 17, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(22px);
  }

  .mobile-header .brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .mobile-header .brand-copy strong {
    font-size: 13px;
  }

  .mobile-header .brand-copy small {
    font-size: 6.5px;
  }

  .studio-label {
    color: var(--faint);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    grid-row: 1;
    min-height: auto;
  }

  .hero-visual > img {
    max-width: 450px;
  }

  .trust-row,
  .hero-actions {
    justify-content: center;
  }

  .quality-section {
    grid-template-columns: 1fr;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .upload-stepper {
    position: sticky;
    top: 78px;
    z-index: 12;
  }

  .studio-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .signed-out .mobile-header {
    display: none;
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-showcase {
    min-height: auto;
    grid-row: 2;
    padding: 64px 36px;
  }

  .auth-showcase h2 {
    font-size: 52px;
  }

  .auth-panel {
    min-height: auto;
    grid-row: 1;
    padding: 60px 30px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 45px 20px 70px;
  }

  .hero h2 {
    font-size: 42px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .upload-stepper {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 5px;
  }

  .upload-step {
    justify-content: center;
    padding: 9px 5px;
  }

  .upload-step div { display: none; }

  .persona-choice-card {
    grid-template-columns: 1fr;
  }

  .inline-artist-fields {
    grid-template-columns: 1fr;
  }

  .genre-suggestion {
    align-items: stretch;
    flex-direction: column;
  }

  .genre-suggestion button { min-height: 40px; }

  .persona-choice-card .dashboard-secondary-btn {
    width: 100%;
  }

  .step-actions,
  .submit-step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .step-next,
  .step-back,
  .submit-step-actions .submit-btn {
    width: 100%;
  }

  .trust-row {
    gap: 9px 14px;
  }

  .section,
  .final-cta {
    width: calc(100% - 36px);
  }

  .section {
    padding: 76px 0;
  }

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

  .step-card {
    min-height: 220px;
  }

  .quality-card {
    grid-template-columns: 42px 1fr;
  }

  .quality-use {
    display: none;
  }

  .final-cta {
    margin-bottom: 50px;
    padding: 28px;
  }

  .final-cta .btn {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .studio-content {
    padding: 35px 14px 0;
  }

  .studio-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-time {
    width: 100%;
  }

  .form-section {
    padding: 21px 16px;
  }

  .drop-grid,
  .row,
  .studio-aside {
    grid-template-columns: 1fr;
  }

  .row {
    display: block;
  }

  .dropzone {
    min-height: 145px;
  }

  .compact-field {
    max-width: none;
  }

  .studio-aside {
    display: grid;
  }

  .account-settings {
    align-items: flex-start;
    flex-direction: column;
  }

  .releases-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .refresh-releases-btn {
    width: 100%;
    justify-content: center;
  }

  .release-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .release-artwork {
    width: 56px;
    height: 56px;
  }

  .release-status {
    width: max-content;
    min-width: 0;
    grid-column: 2;
  }

  .danger-outline-btn {
    width: 100%;
  }

  .delete-dialog {
    padding: 28px 20px 22px;
  }

  .delete-actions {
    grid-template-columns: 1fr;
  }

  .auth-showcase {
    padding: 44px 20px 50px;
  }

  .auth-showcase h2 {
    font-size: 39px;
  }

  .auth-showcase-content > p {
    font-size: 12px;
  }

  .auth-benefit {
    padding: 12px;
  }

  .platform-boundary {
    align-items: flex-start;
  }

  .auth-panel {
    padding: 42px 20px;
  }

  .auth-heading h2 {
    font-size: 25px;
  }
}

/* Final dashboard layout overrides */
.studio-content {
  max-width: 1380px;
  padding-top: 38px;
}

.account-settings {
  margin-top: 18px;
}

@media (max-width: 850px) {
  .studio-content {
    padding-top: 28px;
    padding-bottom: 94px;
  }
}

@media (max-width: 620px) {
  .studio-content {
    padding: 35px 14px 94px;
  }
}

/* Creator ownership and fair revenue */
.persona-workspace,
.earnings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 20px;
  margin-top: 20px;
}

.persona-list-card,
.persona-create-card,
.persona-fairness-card,
.earnings-breakdown-card,
.revenue-model-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(170, 64, 255, 0.08), transparent 35%),
    rgba(15, 15, 31, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.persona-list-card,
.earnings-breakdown-card {
  padding: 25px;
}

.persona-list,
.earnings-persona-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.persona-row,
.earnings-persona-row {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.persona-avatar,
.earnings-persona-row > div:first-child > span {
  width: 48px;
  height: 48px;
  display: grid;
  overflow: hidden;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(207, 90, 255, 0.28);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(174, 54, 255, 0.28), rgba(243, 49, 177, 0.14));
  color: #fff;
  font: 750 12px/1 "Space Grotesk", sans-serif;
}

.persona-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.persona-copy {
  min-width: 0;
}

.persona-copy > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.persona-copy strong,
.earnings-persona-row strong {
  font: 650 14px/1.2 "Space Grotesk", sans-serif;
}

.persona-copy p {
  overflow: hidden;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.persona-copy small,
.earnings-persona-row small {
  display: block;
  margin-top: 6px;
  color: var(--faint);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.persona-status-chip {
  padding: 4px 7px;
  border: 1px solid rgba(72, 227, 155, 0.24);
  border-radius: 999px;
  background: rgba(72, 227, 155, 0.08);
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-remove-btn {
  padding: 8px 10px;
  border: 1px solid rgba(255, 100, 124, 0.22);
  border-radius: 10px;
  background: transparent;
  color: #d89aa5;
  font-size: 8px;
  font-weight: 750;
  cursor: pointer;
}

.persona-remove-btn:hover {
  border-color: rgba(255, 100, 124, 0.45);
  color: #ff8799;
}

.persona-create-card,
.revenue-model-card {
  align-self: start;
  padding: 27px;
}

.persona-create-card h3,
.revenue-model-card h3,
.persona-fairness-card h3 {
  margin-top: 8px;
  font: 650 23px/1.15 "Space Grotesk", sans-serif;
  letter-spacing: -0.025em;
}

.persona-create-card > p,
.revenue-model-card > p,
.persona-fairness-card p {
  margin: 10px 0 21px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.persona-create-card .field + .field {
  margin-top: 14px;
}

.persona-create-card .btn {
  width: 100%;
  margin-top: 18px;
}

.persona-fairness-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 25px 28px;
  background:
    linear-gradient(110deg, rgba(170, 64, 255, 0.1), rgba(39, 201, 255, 0.04)),
    rgba(15, 15, 31, 0.84);
}

.persona-fairness-card > div:first-child {
  max-width: 680px;
}

.persona-fairness-card p {
  margin-bottom: 0;
}

.fairness-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.fairness-flow span,
.fairness-flow strong {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 8px;
}

.fairness-flow strong {
  border-color: rgba(72, 227, 155, 0.24);
  color: var(--green);
}

.earnings-state {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.earnings-state.pending {
  border: 1px solid rgba(255, 184, 83, 0.25);
  background: rgba(255, 184, 83, 0.08);
  color: #ffbd66;
}

.earnings-state.active {
  border: 1px solid rgba(72, 227, 155, 0.25);
  background: rgba(72, 227, 155, 0.08);
  color: var(--green);
}

.earnings-summary-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.earnings-summary-grid article {
  min-height: 132px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 15, 31, 0.82);
}

.earnings-summary-grid article small {
  color: var(--faint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.earnings-summary-grid article strong {
  display: block;
  margin-top: 17px;
  font: 650 28px/1 "Space Grotesk", sans-serif;
}

.earnings-summary-grid article > span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}

.earnings-summary-grid .earnings-total-card {
  border-color: rgba(190, 69, 255, 0.22);
  background:
    radial-gradient(circle at 95% 10%, rgba(249, 53, 184, 0.16), transparent 40%),
    linear-gradient(135deg, rgba(40, 17, 64, 0.94), rgba(15, 15, 31, 0.92));
}

.earnings-total-card strong {
  background: linear-gradient(110deg, #fff, #e7b6ff 55%, #ff96d6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.earnings-persona-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.earnings-persona-row > div:first-child {
  display: flex;
  align-items: center;
  gap: 13px;
}

.persona-earnings-amount {
  text-align: right;
}

.persona-earnings-amount strong {
  color: #fff;
  font-size: 13px;
}

.revenue-model-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.revenue-model-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c6c3d2;
  font-size: 9px;
}

.revenue-model-card li span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(72, 227, 155, 0.09);
  color: var(--green);
}

.revenue-note {
  padding: 13px;
  border: 1px solid rgba(255, 184, 83, 0.2);
  border-radius: 12px;
  background: rgba(255, 184, 83, 0.055);
  color: #d8b37d;
  font-size: 8px;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .persona-workspace,
  .earnings-layout {
    grid-template-columns: 1fr;
  }

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

  .persona-fairness-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .persona-list-card,
  .persona-create-card,
  .persona-fairness-card,
  .earnings-breakdown-card,
  .revenue-model-card {
    padding: 19px 16px;
  }

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

  .persona-remove-btn {
    grid-column: 2;
    justify-self: start;
  }

  .earnings-summary-grid {
    grid-template-columns: 1fr;
  }

  .fairness-flow {
    width: 100%;
    flex-wrap: wrap;
    white-space: normal;
  }
}
