:root {
  --bg: #020202;
  --bg-soft: #080808;
  --panel: #0d0d0d;
  --panel-strong: #121212;
  --panel-alt: #171717;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f4f1ea;
  --muted: #a09d96;
  --muted-strong: #cbc7bf;
  --accent: #d8b686;
  --accent-soft: rgba(216, 182, 134, 0.28);
  --radius: 28px;
  --content-width: min(1380px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 18%, rgba(216, 182, 134, 0.08), transparent 18%),
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #040404 0%, #020202 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.25;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x, 78%) var(--cursor-y, 22%), rgba(255, 255, 255, 0.06), transparent 12%);
}

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

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.topbar,
main,
.footer {
  width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.brand,
h1,
h2,
h3,
.utility-link,
.eyebrow,
.footer-title {
  font-family: "Oxanium", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-mark {
  width: min(180px, 42vw);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.7vw, 2rem);
  flex-wrap: wrap;
}

.topnav a,
.utility-link,
.social-rail a,
.text-link,
.connect-list a,
.footer-links a,
.footer-links strong,
.footer-links span {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topnav a,
.utility-link {
  color: var(--muted-strong);
}

.topnav a[aria-current="page"] {
  color: #fff;
}

.topnav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.utility-link:hover,
.utility-link:focus-visible,
.connect-list a:hover,
.connect-list a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: #fff;
}

.view-section-hidden,
body.is-section-view .footer {
  display: none !important;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-action,
.cart-action,
.panel-close,
.quantity-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-strong);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-action,
.cart-action {
  min-height: 44px;
}

.icon-action {
  width: 44px;
  border-radius: 50%;
}

.cart-action {
  gap: 0.55rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.icon-action:hover,
.icon-action:focus-visible,
.cart-action:hover,
.cart-action:focus-visible,
.icon-action.is-authenticated,
.panel-close:hover,
.panel-close:focus-visible,
.quantity-button:hover,
.quantity-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.icon-action svg,
.cart-action svg,
.panel-close svg {
  width: 21px;
  height: 21px;
}

.icon-action path,
.icon-action circle,
.cart-action path,
.cart-action circle,
.panel-close path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main {
  padding: 2rem 0 4rem;
}

.hero,
.release-card,
.plugins-section,
.about-section,
.newsletter,
.footer {
  margin-top: 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
  min-height: calc(100vh - 120px);
}

.social-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-rail a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.02);
}

.social-link {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
}

.social-glyph {
  width: 20px;
  height: 20px;
}

.social-glyph-soundcloud {
  width: 22px;
  height: 22px;
}

.social-glyph-beatport {
  width: 22px;
  height: 22px;
  transform: scale(0.88);
}

.social-fill {
  fill: currentColor;
  stroke: none;
}

.social-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-beatport-mark {
  stroke-width: 2.7;
}

.social-instagram:hover,
.social-instagram:focus-visible {
  color: #ff6d9a;
  border-color: rgba(255, 109, 154, 0.5);
  background: rgba(255, 109, 154, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 109, 154, 0.12);
}

.social-soundcloud:hover,
.social-soundcloud:focus-visible {
  color: #ff7422;
  border-color: rgba(255, 116, 34, 0.5);
  background: rgba(255, 116, 34, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 116, 34, 0.12);
}

.social-spotify:hover,
.social-spotify:focus-visible {
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.5);
  background: rgba(30, 215, 96, 0.08);
  box-shadow: 0 0 0 1px rgba(30, 215, 96, 0.12);
}

.social-youtube:hover,
.social-youtube:focus-visible {
  color: #ff1744;
  border-color: rgba(255, 23, 68, 0.5);
  background: rgba(255, 23, 68, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 23, 68, 0.12);
}

.social-facebook:hover,
.social-facebook:focus-visible {
  color: #67a4ff;
  border-color: rgba(103, 164, 255, 0.5);
  background: rgba(103, 164, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(103, 164, 255, 0.12);
}

.social-beatport:hover,
.social-beatport:focus-visible {
  color: #9be80f;
  border-color: rgba(155, 232, 15, 0.5);
  background: rgba(155, 232, 15, 0.08);
  box-shadow: 0 0 0 1px rgba(155, 232, 15, 0.12);
}

.rail-line {
  width: 1px;
  min-height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 90%);
}

.hero-stage,
.hero-copy,
.release-copy,
.cover-card,
.track-panel,
.plugin-card,
.about-copy,
.profile-visual,
.connect-card,
.newsletter,
.footer {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.hero-stage,
.hero-copy,
.release-card,
.plugin-card,
.about-copy,
.profile-visual,
.connect-card,
.newsletter,
.footer,
.cover-card,
.track-panel {
  border-radius: var(--radius);
}

.hero-stage {
  overflow: hidden;
}

.stage-frame {
  position: relative;
  min-height: 780px;
  height: 100%;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #101010 0%, #040404 100%);
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.14) 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44) 100%);
  mix-blend-mode: screen;
  z-index: 1;
}

.stage-photo,
.marble-vein,
.light-column {
  position: absolute;
}

.stage-photo {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.84) contrast(1.03) saturate(0.94);
  transform: scale(1.02);
}

.marble-vein,
.light-column {
  z-index: 2;
}

.marble-vein {
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(18deg);
  filter: blur(0.3px);
}

.vein-a {
  top: -10%;
  left: 18%;
  height: 72%;
}

.vein-b {
  top: -2%;
  left: 42%;
  height: 78%;
}

.vein-c {
  top: 6%;
  left: 76%;
  height: 64%;
}

.light-column {
  top: 6%;
  width: 14px;
  height: 44%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.02));
  filter: blur(2px);
  opacity: 0.8;
}

.light-a {
  left: 46%;
}

.light-b {
  left: 56%;
  height: 38%;
  opacity: 0.55;
}

.artist-form {
  left: 10%;
  bottom: 0;
  width: 48%;
  height: 86%;
}

.artist-head,
.artist-body,
.artist-rim {
  position: absolute;
}

.artist-head {
  top: 6%;
  left: 29%;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 36%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 56% 38%, rgba(255, 238, 212, 0.28), transparent 30%),
    radial-gradient(circle at 50% 44%, #161616 0%, #040404 62%);
  box-shadow: inset -18px -18px 42px rgba(0, 0, 0, 0.65);
}

.artist-body {
  left: 0;
  right: 0;
  bottom: 0;
  height: 74%;
  background:
    radial-gradient(circle at 55% 10%, rgba(255, 255, 255, 0.08), transparent 14%),
    linear-gradient(180deg, #141414 0%, #050505 58%, #000 100%);
  clip-path: polygon(36% 0, 64% 0, 77% 10%, 89% 28%, 100% 62%, 91% 100%, 12% 100%, 0 61%, 9% 28%, 23% 10%);
  box-shadow: inset -25px -20px 40px rgba(0, 0, 0, 0.75);
}

.artist-rim {
  top: 10%;
  left: 50%;
  width: 30%;
  height: 74%;
  background: radial-gradient(circle at 0 15%, rgba(255, 233, 208, 0.66), transparent 32%);
  filter: blur(20px);
  opacity: 0.68;
}

.stage-label {
  left: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.stage-label p,
.stage-label strong {
  margin: 0;
}

.stage-label p,
.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-label strong {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy,
.release-copy,
.track-panel,
.plugin-card,
.about-copy,
.connect-card,
.newsletter,
.footer {
  padding: 2rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-logo-lockup {
  margin: 0 0 1.1rem;
  line-height: 1;
}

.hero-logo {
  display: block;
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.06));
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(4.2rem, 11vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-text,
.section-copy,
.release-meta,
.plugin-type,
.footer p,
.footer-links span {
  color: var(--muted);
}

.hero-text,
.section-copy {
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.primary-link,
.secondary-link,
.newsletter-form button,
.connect-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--line);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-link {
  background: linear-gradient(135deg, rgba(216, 182, 134, 0.26), rgba(255, 255, 255, 0.03));
  border-color: rgba(216, 182, 134, 0.46);
  box-shadow: inset 0 0 0 1px rgba(216, 182, 134, 0.18);
}

.secondary-link,
.newsletter-form button,
.connect-list a {
  background: rgba(255, 255, 255, 0.02);
}

.primary-link:hover,
.primary-link:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible,
.newsletter-form button:hover,
.newsletter-form button:focus-visible,
.connect-list a:hover,
.connect-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.compact-link {
  width: fit-content;
  min-height: 48px;
  padding-inline: 1.2rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-meta div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.hero-meta span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.release-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(260px, 0.9fr) minmax(320px, 1.32fr);
  gap: 1rem;
}

.release-copy,
.cover-card,
.track-panel,
.plugin-card,
.about-copy,
.profile-visual,
.connect-card,
.newsletter,
.footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.release-meta {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cover-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.cover-art {
  position: relative;
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.12), transparent 12%),
    linear-gradient(180deg, #111 0%, #050505 100%);
}

.cover-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.06), transparent 38%);
  z-index: 1;
}

.cover-image,
.cover-beam,
.cover-figure {
  position: absolute;
}

.cover-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-beam {
  top: 0;
  width: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  filter: blur(2px);
}

.beam-a {
  left: 28%;
  height: 76%;
}

.beam-b {
  left: 48%;
  height: 86%;
}

.beam-c {
  left: 69%;
  height: 78%;
}

.cover-figure {
  left: 46%;
  bottom: 7%;
  width: 8%;
  height: 28%;
  background: linear-gradient(180deg, #3d3d3d, #080808);
  clip-path: polygon(35% 0, 65% 0, 75% 8%, 100% 56%, 88% 100%, 12% 100%, 0 56%, 25% 8%);
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.08);
}

.cover-caption {
  display: grid;
  gap: 0.25rem;
}

.cover-caption strong,
.cover-caption span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cover-caption span {
  color: var(--muted);
  font-size: 0.8rem;
}

.track-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.track-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.track-panel-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.playlist-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-strong);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.playlist-link:hover,
.playlist-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 182, 134, 0.42);
  background: rgba(216, 182, 134, 0.08);
}

.platform-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.platform-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.platform-button:hover,
.platform-button:focus-visible,
.platform-button.is-active {
  transform: translateY(-2px);
}

.platform-button svg {
  width: 20px;
  height: 20px;
}

.platform-button circle,
.platform-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-button-tile {
  overflow: hidden;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: #f4f1ea;
  box-shadow: none;
}

.platform-button-tile svg {
  width: 100%;
  height: 100%;
}

.platform-button-tile .tile-fill {
  fill: currentColor;
  stroke: none;
}

.platform-button-tile .tile-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#platform-apple.platform-button-tile {
  padding: 0.44rem;
}

#platform-beatport.platform-button-tile {
  padding: 0.62rem;
}

#platform-soundcloud.platform-button-tile {
  padding: 0.62rem 0.56rem 0.5rem 0.64rem;
}

.platform-glyph-beatport {
  transform: scale(0.88);
  transform-origin: center;
}

.platform-glyph-soundcloud {
  transform: scale(0.84);
  transform-origin: center;
}

.platform-glyph-beatport .tile-beatport {
  stroke-width: 2.7;
}

#platform-spotify.is-active {
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.48);
  background: rgba(30, 215, 96, 0.08);
  box-shadow: 0 0 0 1px rgba(30, 215, 96, 0.16);
}

#platform-apple.is-active {
  color: #ff6d7a;
  border-color: rgba(255, 109, 122, 0.52);
  background: rgba(255, 109, 122, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 109, 122, 0.18);
}

#platform-beatport.is-active {
  color: #6bffb5;
  border-color: rgba(107, 255, 181, 0.52);
  background: rgba(107, 255, 181, 0.08);
  box-shadow:
    0 0 0 1px rgba(107, 255, 181, 0.18);
}

#platform-soundcloud.is-active {
  color: #ff7422;
  border-color: rgba(255, 116, 34, 0.52);
  background: rgba(255, 116, 34, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 116, 34, 0.18);
}

.panel-eyebrow {
  margin-bottom: 0;
}

.wave-header {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
}

.wave-stack {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.play-button,
.track-row-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.play-button {
  width: 54px;
  height: 54px;
}

.track-row-play {
  width: 44px;
  height: 44px;
}

.play-button:hover,
.play-button:focus-visible,
.track-row-play:hover,
.track-row-play:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.play-button span,
.track-row-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.track-row-play span {
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 11px;
}

.play-button.is-playing span,
.track-row-play.is-playing span {
  width: 14px;
  height: 14px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, #fff 0 4px, transparent 4px 8px, #fff 8px 12px, transparent 12px);
}

.track-row-play.is-playing span {
  width: 12px;
  height: 12px;
  background:
    linear-gradient(90deg, #fff 0 3px, transparent 3px 6px, #fff 6px 9px, transparent 9px);
}

.waveform-shell {
  position: relative;
  padding: 0.5rem 0;
  overflow: hidden;
}

.waveform-progress {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(216, 182, 134, 0.9), rgba(255, 255, 255, 0.14));
  box-shadow: 0 0 18px rgba(216, 182, 134, 0.24);
  pointer-events: none;
  transition: width 100ms linear;
}

.waveform {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 4px;
  align-items: center;
  min-height: 58px;
  outline: none;
  cursor: pointer;
}

.waveform:focus-visible {
  box-shadow: 0 0 0 1px rgba(216, 182, 134, 0.34);
  border-radius: 18px;
}

.waveform-bar {
  display: block;
  width: 100%;
  min-height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(216, 182, 134, 0.55));
  opacity: 0.34;
  transform-origin: center center;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.waveform:hover .waveform-bar,
.waveform:focus-visible .waveform-bar {
  opacity: 0.62;
}

.waveform-bar.is-played {
  opacity: 1;
  transform: scaleY(1.06);
  background: linear-gradient(180deg, #f7f3ec, rgba(216, 182, 134, 0.88));
}

.wave-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.wave-track-copy {
  display: grid;
  gap: 0.22rem;
}

.wave-track-copy strong,
.wave-time {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wave-track-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wave-time {
  color: var(--muted-strong);
}

.track-list {
  padding: 0;
  margin: 1.6rem 0;
  list-style: none;
}

.track-list li {
  display: grid;
  grid-template-columns: 44px 42px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
}

.track-list li:first-child {
  border-top: 0;
}

.track-item {
  padding: 0.85rem 0.75rem;
  margin-inline: -0.75rem;
  border-radius: 18px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.track-item:hover,
.track-item.is-active {
  background: rgba(255, 255, 255, 0.035);
}

.track-row-play.is-active {
  border-color: rgba(216, 182, 134, 0.42);
  background: rgba(216, 182, 134, 0.08);
}

.track-copy {
  display: grid;
  gap: 0.18rem;
}

.track-link {
  font-size: 0.98rem;
  font-weight: 700;
  width: fit-content;
}

.track-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-number,
.track-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-list em {
  text-align: right;
  white-space: nowrap;
}

.plugins-section {
  padding: 0.25rem 0 0;
}

.section-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-bar h2 {
  max-width: 14ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-strong);
}

button.text-link {
  padding: 0;
  border: 0;
  background: none;
}

.text-link::after {
  content: "->";
}

.plugin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.plugin-grid.is-dynamic {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plugin-status {
  display: grid;
  gap: 0.4rem;
  min-height: 190px;
  padding: 2rem;
  place-content: center;
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0, rgba(216, 182, 134, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.plugin-status strong {
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plugin-status span {
  color: var(--muted);
}

.plugin-status.is-error {
  border-color: rgba(255, 108, 108, 0.34);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 108, 108, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.plugin-card {
  display: flex;
  flex-direction: column;
}

.plugin-card-single {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.35rem;
}

.plugin-visual {
  position: relative;
  min-height: 230px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #181818 0%, #0b0b0b 100%);
}

.plugin-card-single .plugin-visual {
  min-height: 0;
  margin-bottom: 0;
  padding: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #111 0%, #090909 100%);
}

.plugin-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
}

.plugin-visual-image::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 50% 0, rgba(216, 182, 134, 0.08), transparent 32%);
}

.plugin-shot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plugin-badge {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plugin-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
}

.plugin-content .plugin-badge {
  color: var(--muted-strong);
}

.plugin-grid.is-dynamic .plugin-visual {
  min-height: 220px;
  margin-bottom: 1rem;
}

.plugin-grid.is-dynamic .plugin-content {
  flex: 1;
  justify-content: flex-start;
}

.plugin-description {
  color: var(--muted);
  line-height: 1.7;
}

.dial-row,
.dial-grid,
.wave-screen,
.plugin-ring,
.plugin-plate,
.curve-screen {
  position: relative;
  z-index: 1;
}

.dial-row {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.dial-row span,
.dial-grid span {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, #2f2f2f 0%, #0c0c0c 62%),
    linear-gradient(180deg, #313131, #0b0b0b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.dial-row span {
  width: 30px;
  height: 30px;
}

.dial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.4rem;
}

.dial-grid span {
  width: 100%;
  aspect-ratio: 1;
  max-width: 42px;
}

.plugin-ring {
  width: 84px;
  height: 84px;
  margin: 1.5rem auto 0;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.06);
  border-top-color: #f28b57;
  border-right-color: #f28b57;
  box-shadow: 0 0 28px rgba(242, 139, 87, 0.18);
}

.wave-screen {
  height: 44px;
  margin-top: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, transparent 8%, rgba(255, 255, 255, 0.2) 9%, transparent 10%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03));
  background-size: 100% 100%, 18px 100%, 100% 100%;
}

.plugin-plate {
  width: 92px;
  height: 92px;
  margin: 1.3rem auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 182, 134, 0.3), rgba(0, 0, 0, 0) 40%),
    radial-gradient(circle at 50% 50%, #262626 0%, #0d0d0d 62%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(216, 182, 134, 0.1);
}

.curve-screen {
  position: relative;
  height: 82px;
  margin-top: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.curve-screen span {
  position: absolute;
  inset: auto auto 22px 16px;
  width: calc(100% - 32px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(216, 182, 134, 0.8), rgba(255, 255, 255, 0.1));
  transform-origin: left center;
}

.curve-screen span:nth-child(1) {
  clip-path: polygon(0 44%, 16% 52%, 32% 24%, 50% 76%, 68% 38%, 84% 58%, 100% 42%, 100% 100%, 0 100%);
  height: 38px;
  bottom: 26px;
}

.curve-screen span:nth-child(2) {
  opacity: 0.38;
  bottom: 38px;
}

.curve-screen span:nth-child(3) {
  opacity: 0.22;
  bottom: 14px;
}

.small-row {
  margin-top: 1rem;
}

.plugin-type,
.plugin-price {
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.plugin-price {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.plugin-action {
  margin-top: auto;
  width: 100%;
  cursor: pointer;
}

.plugin-card-single .plugin-action {
  width: fit-content;
  min-width: 180px;
  margin-top: 1rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) minmax(280px, 0.9fr);
  gap: 1rem;
}

.profile-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  isolation: isolate;
}

.profile-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42) 100%);
  z-index: 1;
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  filter: brightness(0.72) contrast(1.04) saturate(0.92);
  transform: scale(1.03);
}

.profile-photo-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 36%, rgba(0, 0, 0, 0.26) 100%);
  mix-blend-mode: screen;
}

.connect-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.connect-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line-soft);
}

.connect-list li:first-child {
  border-top: 0;
}

.connect-list span {
  font-size: 0.94rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.connect-list a {
  min-height: 44px;
  padding-inline: 1rem;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.newsletter-form input {
  min-height: 58px;
  padding: 0 1rem;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  border: 0;
  border-left: 1px solid var(--line);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.footer-mark {
  width: min(190px, 100%);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-links div {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-title {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
}

.footer-links strong {
  color: #fff;
}

.footer-links span {
  color: var(--muted);
  line-height: 1.7;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
}

.cart-drawer,
.auth-modal,
.stripe-checkout-modal {
  position: fixed;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cart-drawer {
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100%);
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.drawer-header,
.auth-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-header {
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.drawer-header h2,
.auth-header h2 {
  margin-bottom: 0;
}

.panel-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.cart-items {
  display: grid;
  gap: 0.9rem;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.85rem;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.cart-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #080808;
}

.cart-item-info {
  display: grid;
  gap: 0.5rem;
}

.cart-item-info strong,
.cart-summary strong,
.account-panel strong {
  color: #fff;
}

.cart-item-info span,
.cart-summary span,
.cart-empty,
.auth-header p,
.account-status {
  color: var(--muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.quantity-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.remove-item {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.remove-item:hover,
.remove-item:focus-visible {
  color: #fff;
}

.cart-empty {
  display: grid;
  gap: 0.35rem;
  margin: auto 0;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  text-align: center;
}

.cart-empty p {
  margin: 0;
  color: var(--muted-strong);
}

.cart-summary {
  display: grid;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.checkout-button {
  width: 100%;
  border: 1px solid rgba(216, 182, 134, 0.46);
  cursor: pointer;
}

.auth-modal,
.stripe-checkout-modal {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  transform: translateY(16px);
}

.auth-modal.is-open,
.stripe-checkout-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.auth-panel,
.stripe-checkout-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.stripe-checkout-panel {
  width: min(1080px, 100%);
  padding: 1.6rem;
  background:
    radial-gradient(circle at 12% 0, rgba(216, 182, 134, 0.13), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.99), rgba(5, 5, 5, 0.99));
}

.auth-close,
.stripe-checkout-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.auth-header,
.stripe-checkout-header {
  display: grid;
  padding-right: 3.2rem;
  margin-bottom: 1.2rem;
}

.auth-header p,
.stripe-checkout-header p {
  margin: 0;
}

.stripe-checkout-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: 1rem;
  align-items: start;
}

.stripe-order-card,
.stripe-payment-form,
.stripe-success-panel {
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.stripe-order-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.stripe-order-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-soft);
}

.stripe-order-topline span,
.stripe-order-item span,
.stripe-secure-note p {
  color: var(--muted);
}

.stripe-order-topline strong,
.stripe-order-item strong,
.stripe-order-item em {
  color: #fff;
}

.stripe-order-items {
  display: grid;
  gap: 0.7rem;
}

.stripe-order-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.stripe-order-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #070707;
}

.stripe-order-item div {
  display: grid;
  gap: 0.25rem;
}

.stripe-order-item em {
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.stripe-secure-note {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(216, 182, 134, 0.18);
  border-radius: 16px;
  background: rgba(216, 182, 134, 0.06);
}

.stripe-secure-note span {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #9be80f;
  box-shadow: 0 0 16px rgba(155, 232, 15, 0.38);
}

.stripe-secure-note p {
  margin: 0;
  line-height: 1.6;
}

.stripe-payment-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.stripe-element-shell {
  position: relative;
  min-height: 240px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.stripe-element-shell[data-state]::before {
  content: attr(data-message);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 182, 134, 0.1), transparent 36%),
    rgba(12, 12, 12, 0.88);
}

.stripe-element-shell[data-state="loading"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 2;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.stripe-element-shell[data-state="error"]::before {
  color: #ff8a8a;
}

.stripe-pay-button,
.stripe-license-button {
  width: 100%;
  cursor: pointer;
}

.stripe-pay-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.stripe-success-panel {
  grid-column: 2;
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  border-color: rgba(155, 232, 15, 0.28);
  background:
    radial-gradient(circle at 50% 0, rgba(155, 232, 15, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.025);
}

.stripe-success-panel h3,
.stripe-success-panel p {
  margin: 0;
}

.stripe-success-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.auth-tab {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-tab.is-active {
  background: rgba(216, 182, 134, 0.12);
  color: #fff;
}

.google-auth-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 50px;
  margin-top: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #f6f2ea;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.google-auth-button:hover,
.google-auth-button:focus-visible {
  border-color: rgba(216, 182, 134, 0.52);
  background:
    radial-gradient(circle at 20% 20%, rgba(66, 133, 244, 0.24), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(251, 188, 5, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  transform: translateY(-1px);
}

.google-auth-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #101010;
  background: #fff;
  font-family: Georgia, serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.9rem;
  color: var(--muted-strong);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}

.auth-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.auth-field {
  display: grid;
  gap: 0.45rem;
  color: var(--muted-strong);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-field input {
  min-height: 50px;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.auth-field input:focus {
  outline: none;
  border-color: rgba(216, 182, 134, 0.5);
}

.auth-name-field {
  display: none;
}

.auth-form.is-signup .auth-name-field {
  display: grid;
}

.auth-message {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
}

.auth-message.is-error {
  color: #ff8a8a;
}

.auth-message.is-success {
  color: #9be80f;
}

.auth-submit,
.logout-button {
  width: 100%;
  cursor: pointer;
}

.resend-confirmation-button {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(216, 182, 134, 0.42);
  border-radius: 14px;
  color: #f6f2ea;
  background: rgba(216, 182, 134, 0.08);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resend-confirmation-button:hover,
.resend-confirmation-button:focus-visible {
  border-color: rgba(216, 182, 134, 0.72);
  background: rgba(216, 182, 134, 0.14);
}

.resend-confirmation-button[hidden] {
  display: none;
}

.forgot-password-button {
  justify-self: center;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.forgot-password-button:hover,
.forgot-password-button:focus-visible {
  color: #fff;
}

.reset-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.reset-form[hidden] {
  display: none;
}

.reset-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reset-actions {
  display: grid;
  gap: 0.75rem;
}

.reset-back {
  width: 100%;
  cursor: pointer;
}

.account-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.profile-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.profile-form .auth-message,
.profile-save {
  grid-column: 1 / -1;
}

.locked-field input {
  color: var(--muted);
  cursor: not-allowed;
}

.locked-field small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.profile-stats div {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.profile-stats span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-stats strong {
  font-size: 1.35rem;
}

.profile-library,
.purchase-history {
  display: grid;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.profile-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-section-header h3 {
  margin: 0;
}

.library-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.library-tab {
  min-height: 38px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.library-tab.is-active,
.library-tab:hover,
.library-tab:focus-visible {
  color: #fff;
  border-color: rgba(216, 182, 134, 0.42);
  background: rgba(216, 182, 134, 0.08);
}

.library-list,
.history-list {
  display: grid;
  gap: 0.75rem;
}

.library-item,
.history-item {
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.library-item {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
}

.library-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #080808;
}

.library-copy,
.history-copy {
  display: grid;
  gap: 0.25rem;
}

.library-copy span,
.history-copy span,
.history-item time {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-button {
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(216, 182, 134, 0.42);
  border-radius: 999px;
  background: rgba(216, 182, 134, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-button:hover,
.download-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.library-empty {
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.history-item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.history-total {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.account-panel[hidden],
.overlay[hidden] {
  display: none;
}

body.panel-open {
  overflow: hidden;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1220px) {
  .hero {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .hero-copy {
    grid-column: 2;
  }

  .hero-stage {
    grid-column: 2;
  }

  .release-card,
  .about-section,
  .newsletter,
  .footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    justify-content: flex-start;
  }

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

  .social-rail {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .rail-line {
    flex-basis: 100%;
    width: 100%;
    min-height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 90%);
  }

  .hero-stage,
  .hero-copy {
    grid-column: auto;
  }

  .stage-frame {
    min-height: 560px;
  }

  .section-bar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .plugin-card-single {
    grid-template-columns: 1fr;
  }

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

  .stripe-success-panel {
    grid-column: auto;
  }

  .track-panel-top,
  .track-panel-actions {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .track-list li {
    gap: 0.7rem;
  }

  .wave-header {
    grid-template-columns: 1fr;
  }

  .track-panel-actions {
    width: 100%;
    justify-content: space-between;
  }

  .platform-switcher {
    margin-left: auto;
  }

  .wave-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .track-list li {
    grid-template-columns: 44px 36px minmax(0, 1fr);
  }

  .track-list em {
    grid-column: 2 / -1;
    text-align: left;
  }

  .stripe-checkout-panel {
    padding: 1.15rem;
  }

  .stripe-order-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .stripe-order-item em {
    grid-column: 2;
  }

  .plugin-card-single .plugin-action {
    width: 100%;
  }

  .profile-form,
  .profile-stats,
  .library-item,
  .history-item {
    grid-template-columns: 1fr;
  }

  .profile-form .auth-message,
  .profile-save {
    grid-column: auto;
  }

  .library-item img {
    width: 100%;
    height: 120px;
  }

  .cover-card,
  .hero-copy,
  .release-copy,
  .track-panel,
  .plugin-card,
  .about-copy,
  .connect-card,
  .newsletter,
  .footer {
    padding: 1.3rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
