:root {
  color-scheme: light;
  --bg: #f8f6ff;
  --bg-2: #fff;
  --surface: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.9);
  --surface-solid: #fff;
  --surface-soft: #f2edff;
  --ink: #1d1036;
  --ink-soft: #5c4e72;
  --muted: #827692;
  --line: rgba(76, 40, 132, 0.14);
  --line-strong: rgba(107, 49, 202, 0.28);
  --purple: #6f2ed8;
  --purple-2: #9d43ed;
  --magenta: #e34cf4;
  --cyan: #16c8ef;
  --violet-deep: #25094c;
  --success: #168c65;
  --danger: #d43869;
  --shadow: 0 22px 70px rgba(72, 27, 133, 0.13);
  --shadow-soft: 0 12px 34px rgba(73, 31, 132, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --max: 1180px;
  --header-h: 76px;
  --bottom-nav-h: 80px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090511;
  --bg-2: #0f081a;
  --surface: rgba(18, 10, 31, 0.78);
  --glass: rgba(18, 11, 31, 0.92);
  --surface-solid: #120b1f;
  --surface-soft: #1c102e;
  --ink: #faf7ff;
  --ink-soft: #d3c8e4;
  --muted: #9f91b2;
  --line: rgba(217, 189, 255, 0.13);
  --line-strong: rgba(194, 128, 255, 0.28);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 92% 5%,
      rgba(219, 78, 246, 0.14),
      transparent 28rem
    ),
    radial-gradient(
      circle at 10% 0%,
      rgba(101, 57, 235, 0.11),
      transparent 24rem
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg) 100%);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(100, 57, 164, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 57, 164, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
body::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  top: var(--pointer-y, 22%);
  left: var(--pointer-x, 82%);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(182, 74, 255, 0.09),
    transparent 68%
  );
  pointer-events: none;
  z-index: -2;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
::selection {
  color: #fff;
  background: var(--purple);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.app-main {
  min-height: 100vh;
}
.section {
  padding: clamp(72px, 9vw, 120px) 0;
}
.section-sm {
  padding: clamp(46px, 6vw, 78px) 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-head h2 {
  margin: 0;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: var(--glass);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.app-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(58, 22, 102, 0.07);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 70px;
  height: 52px;
  object-fit: contain;
}
.brand-name {
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--purple);
  background: var(--surface-soft);
}
.header-actions {
  display: flex;
  gap: 10px;
}
.icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: 0.22s var(--ease);
}
.icon-button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}
.icon-button svg {
  width: 22px;
  height: 22px;
}
.install-button {
  display: none;
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  z-index: 45;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  height: var(--bottom-nav-h);
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--glass);
  background: color-mix(in srgb, var(--surface-solid) 87%, transparent);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: 0 16px 45px rgba(48, 17, 88, 0.18);
  padding: 8px 6px;
}
.mobile-bottom-nav a {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 18px;
}
.mobile-bottom-nav a svg {
  width: 23px;
  height: 23px;
}
.mobile-bottom-nav a.active {
  color: var(--purple);
  background: linear-gradient(180deg, rgba(146, 68, 238, 0.12), transparent);
}
.mobile-bottom-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 1px;
  width: 22px;
  height: 3px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  box-shadow: 0 0 10px rgba(180, 62, 242, 0.55);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(18, 8, 30, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.drawer {
  position: fixed;
  z-index: 100;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(420px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  transform: translateX(calc(100% + 24px));
  transition: transform 0.35s var(--ease);
  padding: 22px;
  overflow-y: auto;
}
.drawer.open {
  transform: none;
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-logo {
  width: 92px;
  height: 66px;
  object-fit: contain;
}
.drawer-nav {
  display: grid;
  gap: 8px;
  margin: 30px 0;
}
.drawer-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface-soft);
  font-size: 1.05rem;
  font-weight: 850;
}
.drawer-nav a:hover {
  color: var(--purple);
  transform: translateX(3px);
}
.drawer-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: var(--surface);
  margin-top: 14px;
}
.drawer-panel p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}
.theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.switch {
  width: 58px;
  height: 32px;
  border: 0;
  border-radius: 99px;
  background: var(--surface-soft);
  padding: 3px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px var(--line);
}
.switch span {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  transition: transform 0.25s;
}
[data-theme="dark"] .switch span {
  transform: translateX(26px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--purple);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow.dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 12px;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  box-shadow: 0 0 12px var(--magenta);
  vertical-align: 1px;
}
.display-title {
  margin: 0;
  font-size: clamp(3.5rem, 8.2vw, 7.2rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  font-weight: 950;
}
.display-title .top {
  display: block;
  color: var(--violet-deep);
}
[data-theme="dark"] .display-title .top {
  color: #fff;
}
.display-title .gradient {
  display: block;
  color: transparent;
  background: linear-gradient(
    96deg,
    #5b28d5 0%,
    #8940ef 38%,
    #e64dec 75%,
    #1bc9ec 110%
  );
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 9px 18px rgba(145, 54, 219, 0.18));
  transform: scaleX(0.82);
  transform-origin: left center;
}
.title {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.subtitle {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}
.muted {
  color: var(--muted);
}

.home-hero {
  position: relative;
  padding: clamp(38px, 6vw, 82px) 0 clamp(64px, 8vw, 105px);
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  width: min(70vw, 850px);
  height: min(70vw, 850px);
  right: -15%;
  top: -35%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(229, 71, 239, 0.17),
    rgba(115, 48, 222, 0.08) 38%,
    transparent 70%
  );
  filter: blur(8px);
}
.home-hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 520px;
  right: -150px;
  top: 90px;
  opacity: 0.32;
  background-image: radial-gradient(
    circle,
    rgba(121, 53, 207, 0.48) 1.2px,
    transparent 1.4px
  );
  background-size: 11px 11px;
  -webkit-mask-image: radial-gradient(ellipse, #000 20%, transparent 68%);
  mask-image: radial-gradient(ellipse, #000 20%, transparent 68%);
  transform: rotate(-11deg);
}
.hero-layout > * {
  min-width: 0;
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.hero-copy {
  position: relative;
}
.hero-watermark {
  position: absolute;
  z-index: -1;
  width: min(420px, 60%);
  right: 2%;
  top: 2%;
  opacity: 0.065;
  filter: saturate(1.4);
}
.hero-copy .subtitle {
  max-width: 650px;
  margin: 28px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}
.button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s,
    border-color 0.22s;
}
.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}
.button svg {
  width: 18px;
  height: 18px;
}
.button-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(100deg, #632bd8, #9b45ec 56%, #e54be9);
  box-shadow:
    0 14px 28px rgba(126, 47, 219, 0.22),
    0 0 28px rgba(219, 74, 237, 0.14);
}
.button-secondary {
  color: var(--purple);
  background: var(--surface);
}
.button-quiet {
  background: transparent;
  color: var(--ink-soft);
}
.button-block {
  width: 100%;
}

.meta-strip {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.meta-strip::-webkit-scrollbar {
  display: none;
}
.meta-item {
  flex: 1 1 0;
  min-width: 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.meta-item + .meta-item {
  border-left: 1px solid var(--line);
}
.meta-item svg {
  width: 19px;
  height: 19px;
  color: var(--purple);
  flex: 0 0 auto;
}
.meta-item.domain svg {
  color: var(--cyan);
}

.release-card {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.88),
    rgba(247, 239, 255, 0.74)
  );
  padding: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
[data-theme="dark"] .release-card {
  background: linear-gradient(
    145deg,
    rgba(28, 16, 48, 0.94),
    rgba(14, 8, 25, 0.84)
  );
}
.release-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(119, 53, 225, 0.18),
    transparent 37%,
    rgba(229, 74, 239, 0.18)
  );
}
.release-art {
  position: relative;
  border-radius: 23px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 16px 42px rgba(32, 10, 62, 0.25);
}
.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-art::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}
.release-info {
  position: relative;
  padding: 24px 12px 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(95deg, var(--purple), var(--purple-2));
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(111, 46, 216, 0.23);
}
.release-info h2 {
  margin: 14px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: transparent;
  background: linear-gradient(100deg, #4b20bf, #9d41e9, #e44bea);
  background-clip: text;
  -webkit-background-clip: text;
}
.release-quote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.35;
  font-weight: 700;
}
.release-source {
  margin: 15px 0 0;
  color: var(--purple);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 900;
  text-transform: uppercase;
}
.play-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.play-button {
  width: 64px;
  height: 64px;
  border: 6px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: linear-gradient(145deg, #2d0a5d, #7f31de);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 12px 25px rgba(72, 19, 139, 0.28),
    0 0 0 1px rgba(116, 51, 209, 0.25);
  cursor: pointer;
  transition: transform 0.2s;
}
.play-button:hover {
  transform: scale(1.05);
}
.play-button svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}
.play-label strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.play-label span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.latest-shell {
  display: grid;
  gap: 16px;
}
.latest-card {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 170px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.journal-art {
  position: relative;
  aspect-ratio: 1.15;
  border-radius: 17px;
  overflow: hidden;
  background: linear-gradient(145deg, #1c073b, #4c1590 50%, #9c32df);
}
.journal-art::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 12px;
  transform: rotate(-7deg);
  box-shadow:
    12px 10px 0 rgba(255, 255, 255, 0.09),
    24px 20px 0 rgba(255, 255, 255, 0.05);
}
.journal-art img {
  position: absolute;
  width: 58%;
  left: 21%;
  top: 17%;
  opacity: 0.88;
}
.latest-copy time {
  color: var(--purple);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.latest-copy h3 {
  margin: 6px 0 5px;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}
.latest-copy p {
  margin: 0;
  color: var(--ink-soft);
}
.round-link {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--purple);
  transition: 0.2s;
}
.round-link:hover {
  background: var(--purple);
  color: #fff;
  transform: translateX(3px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.feature-card::after {
  content: attr(data-index);
  position: absolute;
  right: 16px;
  bottom: -24px;
  color: rgba(122, 58, 208, 0.07);
  font-size: 8rem;
  font-weight: 950;
  line-height: 1;
}
.feature-card svg {
  width: 31px;
  height: 31px;
  color: var(--purple);
}
.feature-card h3 {
  margin: 20px 0 8px;
  font-size: 1.35rem;
}
.feature-card p {
  margin: 0;
  color: var(--ink-soft);
}

.track-preview {
  display: grid;
  gap: 10px;
}
.track-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 14px 16px;
  background: var(--surface);
  transition: 0.2s;
}
.track-row:hover {
  transform: translateX(4px);
  border-color: var(--line-strong);
}
.track-number {
  color: var(--purple);
  font-weight: 900;
}
.track-name {
  display: block;
  font-weight: 850;
}
.track-note {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}
.track-tag {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.75fr);
  gap: 50px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(111, 46, 216, 0.97),
    rgba(143, 54, 224, 0.96) 52%,
    rgba(224, 67, 236, 0.93)
  );
  color: #fff;
  padding: clamp(30px, 5vw, 62px);
  box-shadow: 0 28px 70px rgba(103, 39, 191, 0.22);
}
.newsletter-card::after {
  content: "";
  position: absolute;
  width: 370px;
  height: 370px;
  right: -120px;
  top: -170px;
  border-radius: 50%;
  border: 70px solid rgba(255, 255, 255, 0.08);
}
.newsletter-card .eyebrow {
  color: #fff;
  opacity: 0.78;
}
.newsletter-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.newsletter-card p {
  color: rgba(255, 255, 255, 0.78);
}
.newsletter-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.newsletter-form input {
  width: 100%;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  padding: 0 17px;
  color: #fff;
  background: rgba(28, 8, 55, 0.24);
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.newsletter-form input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.13);
}
.newsletter-form .button {
  border-color: rgba(255, 255, 255, 0.55);
  background: #fff;
  color: #5a22ba;
}
.form-status {
  min-height: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  padding: clamp(52px, 8vw, 105px) 0 clamp(48px, 7vw, 84px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -330px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(223, 74, 240, 0.2),
    rgba(104, 42, 217, 0.08),
    transparent 70%
  );
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 260px;
  top: 0;
  right: 8%;
  background: url("assets/dei-logo-purple.png") center/contain no-repeat;
  opacity: 0.05;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .subtitle {
  max-width: 720px;
  margin: 22px 0 0;
}
.page-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 65px;
}
.side-nav {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 22px);
  display: grid;
  gap: 8px;
}
.side-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-weight: 750;
}
.side-nav a:hover {
  color: var(--purple);
  background: var(--surface-soft);
}
.content-stack {
  display: grid;
  gap: 22px;
}
.content-card {
  scroll-margin-top: calc(var(--header-h) + 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.content-card h2 {
  margin: 0 0 15px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.content-card p {
  color: var(--ink-soft);
}
.lyric-callout {
  margin: 25px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--purple);
  border-radius: 0 14px 14px 0;
  background: var(--surface-soft);
  font-size: 1.13rem;
  font-weight: 700;
}
.track-details {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}
.track-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-weight: 850;
  color: var(--purple);
}
.track-toggle svg {
  transition: transform 0.25s;
}
.track-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.track-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}
.track-panel > div {
  overflow: hidden;
}
.track-panel.open {
  grid-template-rows: 1fr;
}

.journal-list {
  display: grid;
  gap: 16px;
}
.journal-entry {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.entry-index {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(145deg, var(--purple), var(--magenta));
}
.journal-entry h2 {
  margin: 2px 0 6px;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
}
.journal-entry p {
  margin: 0;
  color: var(--ink-soft);
}
.article-meta {
  color: var(--purple);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.press-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.press-card.wide {
  grid-column: 1 / -1;
}
.press-card h2,
.press-card h3 {
  margin-top: 0;
  letter-spacing: -0.03em;
}
.press-card p,
.press-card li {
  color: var(--ink-soft);
}
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.clean-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  padding: 72px 0 120px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 40px;
}
.footer-logo {
  width: 100px;
  height: 74px;
  object-fit: contain;
}
.footer-grid p {
  color: var(--ink-soft);
  max-width: 440px;
}
.footer-title {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
}
.footer-links a:hover {
  color: var(--purple);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 30px);
  opacity: 0;
  visibility: hidden;
  min-width: min(390px, calc(100% - 30px));
  padding: 14px 18px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 0.86rem;
  transition: 0.25s;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 960px) {
  .release-card {
    display: block;
  }
  .release-card > * {
    min-width: 0;
  }
  .release-info {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 22px;
    align-items: center;
    padding: 25px 16px 14px;
  }
  .release-info .badge {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .release-info h2 {
    grid-column: 1;
    grid-row: 2 / 4;
    align-self: start;
    margin: 10px 0 0;
    font-size: 3.25rem;
  }
  .release-quote {
    grid-column: 2;
    grid-row: 1;
  }
  .release-source {
    grid-column: 2;
    grid-row: 2;
    margin-top: 8px;
  }
  .play-row {
    grid-column: 2;
    grid-row: 3;
    margin-top: 14px;
  }
}

@media (max-width: 980px) {
  .display-title .gradient {
    transform: scaleX(0.94);
  }
  .desktop-nav {
    display: none;
  }
  .brand-name {
    display: none;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 780px;
  }
  .release-card {
    max-width: 760px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter-card {
    grid-template-columns: 1fr;
  }
  .page-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .side-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .side-nav::-webkit-scrollbar {
    display: none;
  }
  .side-nav a {
    white-space: nowrap;
    background: var(--surface);
    border: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 68px;
    --bottom-nav-h: 72px;
  }
  body {
    background:
      radial-gradient(
        circle at 88% 4%,
        rgba(220, 72, 242, 0.16),
        transparent 18rem
      ),
      linear-gradient(180deg, var(--bg), var(--bg-2) 48%, var(--bg));
  }
  body::before {
    background-size: 52px 52px;
    opacity: 0.2;
  }
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .app-main {
    padding-bottom: calc(
      var(--bottom-nav-h) + 24px + env(safe-area-inset-bottom)
    );
  }
  .app-header {
    height: var(--header-h);
  }
  .brand img {
    width: 59px;
    height: 44px;
  }
  .icon-button {
    width: 44px;
    height: 44px;
  }
  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .home-hero {
    padding-top: 30px;
  }
  .home-hero::after {
    width: 320px;
    height: 360px;
    right: -140px;
    top: 25px;
  }
  .hero-layout {
    gap: 34px;
  }
  .display-title {
    font-size: clamp(3.65rem, 19vw, 6.4rem);
    line-height: 0.82;
    letter-spacing: -0.08em;
  }
  .hero-watermark {
    width: 55%;
    right: 0;
    top: -3%;
  }
  .hero-copy .subtitle {
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.62;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin: 24px 0 20px;
  }
  .button {
    width: 100%;
    min-height: 54px;
  }
  .meta-strip {
    margin-inline: -2px;
    border-radius: 16px;
  }
  .meta-item {
    min-width: 151px;
    padding: 13px 14px;
  }
  .release-card {
    border-radius: 25px;
    padding: 10px;
  }
  .release-art {
    border-radius: 19px;
  }
  .release-info {
    padding: 22px 10px 12px;
  }
  .release-info h2 {
    font-size: 3.15rem;
  }
  .latest-card {
    grid-template-columns: 98px 1fr auto;
    gap: 14px;
    min-height: auto;
    padding: 12px;
  }
  .latest-copy p {
    display: none;
  }
  .round-link {
    width: 42px;
    height: 42px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: start;
  }
  .section-head .button {
    display: none;
  }
  .track-row {
    grid-template-columns: 38px 1fr;
  }
  .track-tag {
    display: none;
  }
  .newsletter-card {
    border-radius: 25px;
    padding: 30px 22px;
  }
  .page-hero {
    padding-top: 42px;
    padding-bottom: 28px;
  }
  .page-hero + .section-sm {
    padding-top: 22px;
  }
  .page-hero::after {
    right: -70px;
    width: 270px;
    opacity: 0.045;
  }
  .content-card {
    border-radius: 20px;
    padding: 24px 19px;
  }
  .journal-entry {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .entry-index {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
  .journal-entry .round-link {
    display: none;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
  .press-card.wide {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .site-footer {
    padding-bottom: calc(
      var(--bottom-nav-h) + 58px + env(safe-area-inset-bottom)
    );
  }
  .toast {
    bottom: calc(var(--bottom-nav-h) + 28px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 410px) {
  .display-title {
    font-size: clamp(3.2rem, 18.4vw, 4.65rem);
  }
  .latest-card {
    grid-template-columns: 84px 1fr 38px;
  }
  .journal-art {
    border-radius: 13px;
  }
  .mobile-bottom-nav a {
    font-size: 0.56rem;
    letter-spacing: 0.055em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
