
:root {
  --ink: #030304;
  --ink-soft: #09090c;
  --panel: rgba(15, 15, 20, 0.76);
  --line: rgba(255, 255, 255, 0.13);
  --line-hot: rgba(255, 50, 75, 0.48);
  --paper: #f3f0ea;
  --muted: #a6a4ad;
  --red: #ff2448;
  --red-hot: #ff003c;
  --violet: #9b5cff;
  --cyan: #4df5ff;
  --lime: #d8ff58;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% -10%, rgba(155, 92, 255, 0.16), transparent 34rem),
    radial-gradient(circle at -10% 30%, rgba(255, 0, 60, 0.11), transparent 30rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

button,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

::selection {
  color: #08080a;
  background: var(--cyan);
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.ambient-orb {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  background: var(--red-hot);
  opacity: 0.12;
  filter: blur(120px);
  animation: orb-drift 16s ease-in-out infinite alternate;
}

.ambient-orb.second {
  right: -15rem;
  bottom: 5%;
  background: var(--violet);
  animation-delay: -5s;
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 clamp(1rem, 3vw, 3.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 4, 0.72);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--red);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--red);
}

.brand-mark::after {
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #b8b6bd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-action {
  justify-self: end;
}

.pill-button,
.outline-button,
.solid-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pill-button:hover,
.outline-button:hover,
.solid-button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.solid-button {
  border-color: var(--red);
  background: var(--red);
  color: #09090b;
  box-shadow: 0 0 38px rgba(255, 36, 72, 0.25);
}

.solid-button:hover {
  border-color: #ff5973;
  background: #ff5973;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 9rem clamp(1rem, 5vw, 5.5rem) 4rem;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: 10%;
  z-index: -1;
  width: 64%;
  height: 60%;
  content: "";
  background: linear-gradient(118deg, transparent 20%, rgba(255, 36, 72, 0.36) 50%, transparent 51%);
  filter: blur(2px);
  transform: skewX(-10deg);
}

.hero-content {
  z-index: 2;
  max-width: 58rem;
  padding-bottom: 3vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.4rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.hero-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.5rem, 15.2vw, 14.5rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-title .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.54);
  transform: translateX(7vw);
}

.hero-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 34rem);
  gap: 1.4rem;
  align-items: start;
  margin-top: 2rem;
}

.hero-index {
  color: var(--red);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.hero-copy p {
  margin: 0;
  color: #c6c3cb;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.access-offer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 38rem;
  margin: 1.5rem 0 0 3.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(216, 255, 88, 0.3);
  background:
    linear-gradient(110deg, rgba(216, 255, 88, 0.11), transparent 60%),
    rgba(8, 8, 10, 0.78);
  box-shadow: 0 0 45px rgba(216, 255, 88, 0.07);
  backdrop-filter: blur(16px);
}

.access-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.access-price > span {
  grid-column: 1 / -1;
  color: var(--lime);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.access-price strong {
  font-family: var(--display);
  font-size: 4.8rem;
  line-height: 0.8;
}

.access-price sup {
  font-size: 1.5rem;
  vertical-align: top;
}

.access-price small {
  margin: 0 0 0.25rem 0.35rem;
  color: #a7a4ad;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-offer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #c8c5cd;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-offer li::before {
  margin-right: 0.55rem;
  color: var(--lime);
  content: "✓";
}

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

.hero-art {
  position: relative;
  align-self: center;
  width: min(40vw, 620px);
  aspect-ratio: 1;
  justify-self: end;
  transform: rotate(3deg);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-art::before {
  z-index: 2;
  inset: -13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  clip-path: polygon(0 0, 35% 0, 35% 1px, 100% 1px, 100% 65%, calc(100% - 1px) 65%, calc(100% - 1px) 100%, 60% 100%, 60% calc(100% - 1px), 0 calc(100% - 1px));
}

.hero-art::after {
  right: -18%;
  bottom: -16%;
  z-index: -1;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.36;
  filter: blur(70px);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  filter: saturate(1.1) contrast(1.05);
}

.art-sticker {
  position: absolute;
  z-index: 4;
  right: -2.4rem;
  bottom: 7%;
  display: grid;
  place-items: center;
  width: 7.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  color: #0b0b0c;
  font-size: 0.64rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-12deg);
  box-shadow: 0 0 40px rgba(216, 255, 88, 0.18);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--red);
  color: #09090a;
  transform: rotate(-1deg) scale(1.015);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 0.75rem 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
}

.ticker-track span::after {
  content: "✦";
}

.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 5vw, 5.5rem);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-note {
  max-width: 21rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: 8vw;
  border-top: 1px solid var(--line);
}

.manifesto-code {
  position: sticky;
  top: 110px;
  align-self: start;
  color: #77747e;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto-copy {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.6vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.manifesto-copy em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--red);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.stat strong {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.85;
}

.stat span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-stat {
  background:
    linear-gradient(145deg, rgba(216, 255, 88, 0.14), transparent 70%),
    rgba(255, 255, 255, 0.015);
}

.price-stat strong,
.price-stat span {
  color: var(--lime);
}

.release-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}

.release-art {
  position: relative;
  aspect-ratio: 1;
}

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

.release-art::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3), 0 40px 90px rgba(0, 0, 0, 0.55);
}

.release-meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 9.5rem);
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.release-meta h3 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.56);
}

.release-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.release-facts b {
  color: var(--red);
}

.track-preview {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.track-preview li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: #c8c6ce;
  font-size: 0.82rem;
}

.track-preview li span:first-child {
  color: #5f5d66;
  font-family: ui-monospace, monospace;
}

.track-preview li span:last-child {
  color: #716e78;
  font-variant-numeric: tabular-nums;
}

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

.album-card {
  position: relative;
  min-width: 0;
}

.album-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  background: #111;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.16, 1, .3, 1), filter 600ms ease;
}

.album-card:hover .album-cover img {
  transform: scale(1.055);
  filter: saturate(1.22) contrast(1.05);
}

.album-number {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.68);
  font-size: 0.64rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.album-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.album-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 35rem;
  display: grid;
  place-items: center;
  padding: 4rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  background:
    linear-gradient(rgba(3, 3, 4, 0.5), rgba(3, 3, 4, 0.8)),
    radial-gradient(circle at center, rgba(255, 36, 72, 0.28), transparent 33%),
    repeating-radial-gradient(circle at center, transparent 0 26px, rgba(255, 255, 255, 0.08) 27px 28px);
}

.cta-panel::before {
  position: absolute;
  width: 40rem;
  height: 1px;
  content: "";
  background: var(--red);
  box-shadow: 0 0 35px 8px var(--red);
  animation: scanner 4s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.price-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--lime);
  filter: drop-shadow(0 0 18px rgba(216, 255, 88, 0.13));
}

.cta-inner p {
  max-width: 34rem;
  margin: 0 auto 2rem;
  color: #b7b4bd;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  padding: 3rem clamp(1rem, 5vw, 5.5rem);
  color: #716f78;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.75;
  letter-spacing: -0.03em;
}

.site-footer > :last-child {
  text-align: right;
}

/* Login */
.login-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(23rem, 0.85fr);
}

.login-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem);
  background:
    linear-gradient(110deg, rgba(3, 3, 4, 0.95), rgba(3, 3, 4, 0.16)),
    url("assets/neon-faultline.webp") center / cover;
}

.login-visual::after {
  position: absolute;
  right: -22%;
  bottom: -40%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
}

.login-visual-copy {
  position: relative;
  z-index: 2;
}

.login-visual h1 {
  max-width: 55rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 0.74;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.login-visual h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.login-panel {
  display: grid;
  align-items: center;
  padding: clamp(2rem, 6vw, 6rem);
  border-left: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.96);
}

.login-box {
  width: 100%;
  max-width: 30rem;
  margin: auto;
}

.login-box h2 {
  margin: 1.8rem 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.login-intro {
  margin: 0 0 2rem;
  color: var(--muted);
  line-height: 1.65;
}

.login-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -0.7rem 0 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(216, 255, 88, 0.25);
  background: rgba(216, 255, 88, 0.055);
}

.login-plan span,
.login-plan small {
  display: block;
}

.login-plan span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-plan small {
  margin-top: 0.25rem;
  color: #85828c;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.login-plan > strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}

.login-plan > strong small {
  display: inline;
  color: var(--lime);
  font-family: var(--sans);
  font-size: 0.55rem;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(77, 245, 255, 0.28);
  border-radius: 999px;
  background: rgba(77, 245, 255, 0.06);
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.demo-badge::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.55rem;
  color: #a5a2ab;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  height: 58px;
  padding: 0 3.3rem 0 1rem;
  border: 1px solid var(--line);
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.input-wrap input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 36, 72, 0.09);
}

.input-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: #68656f;
  transform: translateY(-50%);
}

.input-wrap button.input-icon {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.login-submit {
  width: 100%;
  margin-top: 0.75rem;
}

.login-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: #77747e;
  font-size: 0.71rem;
  line-height: 1.6;
}

.status-message {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Streaming vault */
.vault {
  min-height: 100vh;
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 55% -20%, rgba(155, 92, 255, 0.19), transparent 35rem),
    #050507;
}

.vault-nav {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(15rem, 36rem) auto;
  gap: 2rem;
  align-items: center;
  height: 76px;
  padding: 0 clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.84);
  backdrop-filter: blur(24px);
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  height: 42px;
  padding: 0 1rem 0 2.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.search-box input:focus {
  border-color: rgba(255, 255, 255, 0.42);
}

.search-box span {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: #77747e;
  transform: translateY(-50%);
}

.profile-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
  color: #bdbac2;
  font-size: 0.72rem;
  font-weight: 800;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--violet));
  color: #fff;
  font-size: 0.65rem;
}

.vault-hero {
  position: relative;
  min-height: 38rem;
  display: flex;
  align-items: end;
  padding: 6rem clamp(1rem, 5vw, 5.5rem) 3.5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, #050507 0%, rgba(5, 5, 7, 0.76) 40%, rgba(5, 5, 7, 0.08) 80%),
    linear-gradient(0deg, #050507 0%, transparent 50%),
    url("assets/redline-seraph.webp") 72% 43% / cover;
}

.vault-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,0.016) 5px);
}

.vault-hero-content {
  position: relative;
  z-index: 2;
  max-width: 56rem;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vault-hero h1 {
  margin: 0.5rem 0;
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.vault-subtitle {
  max-width: 42rem;
  margin: 0 0 1.7rem;
  color: #c2bfc8;
  font-size: 1rem;
  line-height: 1.6;
}

.vault-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.vault-body {
  padding: 2rem clamp(1rem, 5vw, 5.5rem) 5rem;
}

.genre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3.5rem;
}

.genre-chip {
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #98959f;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.genre-chip.active {
  border-color: #fff;
  background: #fff;
  color: #08080a;
}

.vault-section {
  margin-bottom: 5rem;
}

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

.vault-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.vault-section-head p {
  margin: 0;
  color: #77747e;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.vault-album {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.vault-album-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  background: #111;
}

.vault-album-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255,255,255,.12);
  transition: border 180ms ease;
}

.vault-album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}

.vault-album:hover img,
.vault-album:focus-visible img {
  transform: scale(1.06);
}

.vault-album:hover .vault-album-cover::after {
  border-color: var(--red);
}

.cover-play {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  background: var(--red);
  color: #050507;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.vault-album:hover .cover-play,
.vault-album:focus-visible .cover-play {
  opacity: 1;
  transform: translateY(0);
}

.vault-album h3 {
  margin: 0 0 0.35rem;
  overflow: hidden;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vault-album p {
  margin: 0;
  color: #7f7c86;
  font-size: 0.7rem;
}

.track-table {
  width: 100%;
  border-collapse: collapse;
}

.track-row {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1.5fr) minmax(8rem, 0.7fr) 5rem 3rem;
  gap: 1rem;
  align-items: center;
  min-height: 66px;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: background 180ms ease;
}

.track-row:hover {
  background: rgba(255,255,255,.045);
}

.track-row.active {
  background: linear-gradient(90deg, rgba(255,36,72,.12), transparent);
}

.track-num {
  color: #68656f;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  text-align: center;
}

.track-row.active .track-num {
  color: var(--red);
}

.track-main {
  min-width: 0;
}

.track-main strong,
.track-main span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-main strong {
  font-size: 0.84rem;
}

.track-main span,
.track-album {
  margin-top: 0.25rem;
  color: #77747e;
  font-size: 0.68rem;
}

.track-duration {
  color: #77747e;
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.like-button {
  border: 0;
  background: transparent;
  color: #696670;
  cursor: pointer;
  font-size: 1.1rem;
}

.like-button.liked {
  color: var(--red);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 4rem;
  border: 1px dashed var(--line);
  color: #8c8993;
  text-align: center;
}

.player {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(18rem, 1.2fr) minmax(12rem, 0.9fr);
  gap: 2rem;
  align-items: center;
  min-height: 96px;
  padding: 0.85rem clamp(1rem, 2vw, 2rem);
  border-top: 1px solid rgba(255,255,255,.13);
  background: rgba(7,7,9,.92);
  box-shadow: 0 -20px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(28px);
}

.now-playing {
  min-width: 0;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.now-art {
  width: 62px;
  height: 62px;
  object-fit: cover;
}

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

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

.now-copy strong {
  font-size: 0.83rem;
}

.now-copy span {
  margin-top: 0.3rem;
  color: #77747e;
  font-size: 0.68rem;
}

.player-center {
  min-width: 0;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.control-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #a9a6af;
  cursor: pointer;
}

.control-button.primary {
  width: 44px;
  height: 44px;
  background: #fff;
  color: #050507;
}

.control-button:hover {
  color: #fff;
}

.progress-wrap {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr) 2.3rem;
  gap: 0.6rem;
  align-items: center;
  color: #66636c;
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
}

.range {
  width: 100%;
  height: 3px;
  margin: 0;
  appearance: none;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red) var(--progress, 0%), #37343d var(--progress, 0%));
  cursor: pointer;
}

.range::-webkit-slider-thumb {
  width: 11px;
  height: 11px;
  appearance: none;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 180ms ease;
}

.range:hover::-webkit-slider-thumb {
  opacity: 1;
}

.player-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.volume {
  max-width: 8rem;
}

.sim-tag {
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(216,255,88,.22);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visualizer {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 22px;
}

.visualizer i {
  display: block;
  width: 3px;
  height: 30%;
  background: var(--red);
  animation: level 800ms ease-in-out infinite alternate;
  animation-play-state: paused;
}

.visualizer.playing i {
  animation-play-state: running;
}

.visualizer i:nth-child(2) { animation-delay: -190ms; }
.visualizer i:nth-child(3) { animation-delay: -430ms; }
.visualizer i:nth-child(4) { animation-delay: -90ms; }
.visualizer i:nth-child(5) { animation-delay: -580ms; }

.simulation-notice {
  position: fixed;
  z-index: 65;
  right: 1rem;
  bottom: 108px;
  max-width: 25rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(216,255,88,.2);
  background: rgba(8,8,10,.91);
  color: #a9a6af;
  font-size: 0.65rem;
  line-height: 1.5;
  backdrop-filter: blur(16px);
}

.simulation-notice b {
  color: var(--lime);
}

@keyframes orb-drift {
  from { transform: translate(-15%, -10%) scale(.9); }
  to { transform: translate(42vw, 25vh) scale(1.2); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes scanner {
  0%, 100% { transform: translateY(-10rem) rotate(-17deg); opacity: .2; }
  50% { transform: translateY(10rem) rotate(-17deg); opacity: 1; }
}

@keyframes level {
  from { height: 20%; }
  to { height: 100%; }
}

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 8rem;
  }

  .hero-content {
    grid-row: 2;
  }

  .hero-art {
    width: min(68vw, 520px);
    justify-self: center;
  }

  .manifesto,
  .release-feature {
    grid-template-columns: 1fr;
  }

  .manifesto-code {
    position: static;
  }

  .stats,
  .album-grid,
  .vault-albums {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .login-visual {
    min-height: 52svh;
  }

  .login-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .vault-nav {
    grid-template-columns: auto 1fr;
  }

  .vault-nav .search-box {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 0.8rem;
  }

  .vault-nav {
    height: auto;
    padding-top: 1rem;
  }

  .track-row {
    grid-template-columns: 2.5rem minmax(0, 1fr) 4rem 2rem;
  }

  .track-album {
    display: none;
  }

  .player {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 1.2fr);
  }

  .player-tools {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    height: 66px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .nav-action {
    padding: 0.7rem 0.8rem;
    min-height: 40px;
    font-size: 0.6rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-art {
    width: 78vw;
  }

  .art-sticker {
    right: -1rem;
    width: 5.8rem;
    font-size: 0.52rem;
  }

  .hero-title {
    font-size: clamp(5.1rem, 26vw, 8rem);
  }

  .hero-title .outline {
    transform: translateX(1rem);
  }

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

  .hero-index {
    display: none;
  }

  .hero-actions {
    margin-left: 0;
  }

  .access-offer {
    margin-left: 0;
  }

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

  .manifesto {
    gap: 2rem;
  }

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

  .stat {
    min-height: 9rem;
  }

  .access-offer {
    grid-template-columns: 1fr;
  }

  .access-price {
    padding-right: 0;
    padding-bottom: 0.8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .album-grid,
  .vault-albums {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0.7rem;
  }

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

  .site-footer > :last-child {
    text-align: left;
  }

  .login-visual {
    min-height: 43svh;
  }

  .login-visual h1 {
    font-size: 18vw;
  }

  .login-panel {
    padding: 2.5rem 1.2rem;
  }

  .vault-hero {
    min-height: 32rem;
    padding-bottom: 2rem;
    background-position: 62% 50%;
  }

  .vault-hero h1 {
    font-size: 22vw;
  }

  .profile-chip span {
    display: none;
  }

  .track-row {
    gap: 0.5rem;
    padding-inline: 0;
  }

  .vault-body {
    padding-bottom: 4rem;
  }

  .player {
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
  }

  .now-playing {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .now-art {
    width: 50px;
    height: 50px;
  }

  .player-center {
    display: flex;
    align-items: center;
  }

  .player-controls {
    margin: 0;
  }

  .player-controls .control-button:not(.primary) {
    display: none;
  }

  .progress-wrap {
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    display: block;
  }

  .progress-wrap span {
    display: none;
  }

  .progress-wrap .range {
    display: block;
    height: 2px;
  }

  .simulation-notice {
    right: 0.5rem;
    bottom: 88px;
    left: 0.5rem;
  }
}

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