:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f5f7;
  --text-soft: rgba(245, 245, 247, 0.78);
  --text-dim: rgba(245, 245, 247, 0.5);
  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.14);
  --radius: 32px;
  --radius-sm: 22px;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
  --content: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #050505 0%, #000000 54%, #040404 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.02em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
  z-index: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

#warp-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}

#warp-canvas.active {
  opacity: 0.9;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 24px 0 64px;
}

.redirect-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  backdrop-filter: blur(22px);
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.lang-link {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.section {
  padding: 90px 0;
}

.hero {
  display: grid;
  gap: 26px;
  align-items: end;
  min-height: calc(100vh - 100px);
  padding-top: 48px;
}

.hero-copy,
.hero-panel,
.proof-note,
.proof-list article,
.service-card,
.process-card,
.metric-card,
.info-card,
.media-card,
.cta-panel,
.contact-copy,
.contact-form,
#track-list-container,
#player-console,
.blog-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-copy,
.hero-panel,
.cta-panel,
.contact-copy,
.contact-form {
  border-radius: 0;
  padding: 0;
}

.hero-copy {
  text-align: center;
  padding-top: 96px;
  padding-bottom: 24px;
}

.eyebrow,
.card-label,
.note-kicker,
.player-kicker,
.pill {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 5.4rem);
  max-width: 10ch;
  margin: 18px auto 0;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-lead {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 1.08rem;
}

.hero-actions,
.section-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 44px auto 0;
  max-width: 720px;
  display: grid;
  gap: 14px;
}

.hero-points li {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--text-soft);
}

.hero-panel {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: stretch;
  padding-top: 8px;
}

.hero-card,
.metric-card,
.service-card,
.process-card,
.info-card,
.blog-card {
  border-radius: 0;
  padding: 0;
}

.hero-card {
  padding-right: 24px;
}

.hero-card h2 {
  margin-top: 12px;
  max-width: 11ch;
}

.hero-card p {
  margin-top: 16px;
  max-width: 52ch;
}

.hero-stat-row {
  display: grid;
  gap: 30px;
  align-content: start;
  max-width: 760px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.metric-card span,
.service-card span,
.process-card span {
  display: block;
  color: var(--text-dim);
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.metric-card strong {
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
}

.service-card,
.process-card {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.proof-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.proof-copy {
  display: grid;
  gap: 28px;
  order: 2;
  max-width: 760px;
}

.player-frame {
  order: 1;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.proof-note,
.proof-list article {
  border-radius: 0;
  padding: 0;
}

.proof-note h3,
.proof-list h4 {
  margin-top: 10px;
}

.proof-list article,
.service-card,
.process-card,
.info-card,
.blog-card,
.contact-copy {
  position: relative;
}

.service-card::before,
.process-card::before,
.info-card::before,
.blog-card::before,
.contact-copy::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 70%);
}

.player-frame {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

#main-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
}

#track-list-container,
#player-console {
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.player-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#track-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
}

.track-btn {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  text-align: left;
  cursor: pointer;
}

.track-btn.selected {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
}

#player-console {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#current-title {
  margin-top: 10px;
  margin-bottom: 28px;
  min-height: 2.2rem;
}

.controls {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

#play-pause,
#bypass-btn {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
}

#play-pause {
  min-width: 110px;
  background: #ffffff;
  color: #000;
  font-weight: 600;
}

#bypass-btn {
  min-width: 180px;
  background: #ffffff;
  color: #000;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
}

#bypass-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: none;
}

input[type="range"] {
  width: 100%;
  accent-color: #ffffff;
}

.time-info,
.volume-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--text-dim);
}

.volume-container {
  margin-top: 26px;
}

.service-grid,
.process-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.media-meta {
  margin-top: 12px;
  color: var(--text-dim);
}

.service-symbols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.symbol-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.symbol-icon,
.flow-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: rgba(245, 245, 247, 0.92);
}

.symbol-icon svg,
.flow-icon svg {
  width: 64px;
  height: 64px;
}

.symbol-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.symbol-card p {
  max-width: 28ch;
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.flow-step {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.flow-step strong {
  font-size: 1.02rem;
  font-weight: 600;
}

.flow-step p {
  max-width: 24ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-dim);
}

.flow-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.12));
}

.discography-carousel {
  display: grid;
  gap: 18px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.discography-section .section-heading {
  margin-bottom: 30px;
}

.discography-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.discography-slides {
  position: absolute;
  inset: 0;
}

.discography-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.discography-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.discography-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 34px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.84) 58%, rgba(0, 0, 0, 0.96) 100%);
}

.discography-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.discography-hit-prev {
  left: 0;
}

.discography-hit-next {
  right: 0;
}

.discography-role {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.discography-overlay h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.discography-title {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--text);
  line-height: 1.04;
}

.discography-artist {
  margin-top: 12px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
}

.media-card {
  border-radius: 0;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  text-align: center;
}

.media-card h3 {
  margin: 10px 0 12px;
}

.media-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 70%);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-profile {
  margin-bottom: 28px;
}

.contact-photo-frame {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
}

.contact-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 0.92rem;
}

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

.blog-shell main {
  padding-top: 56px;
}

.blog-hero {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .hero-panel,
  .contact-layout,
  #main-container,
  .service-grid,
  .process-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .proof-copy,
  .player-frame {
    order: initial;
  }

  .service-symbols {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flow-line {
    width: 1px;
    height: 32px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.12));
  }

  .cta-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-panel .button {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(100vw - 24px, 100vw - 24px);
  }

  .page-shell {
    padding-top: 14px;
    padding-bottom: 40px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-copy,
  .hero-panel,
  .cta-panel,
  .contact-copy,
  .contact-form,
  #track-list-container,
  #player-console {
    padding-left: 0;
    padding-right: 0;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .player-frame,
  #track-list-container,
  #player-console {
    padding: 20px;
  }

  .discography-stage {
    width: min(100%, 360px);
    aspect-ratio: 1 / 1;
  }

  .discography-slide {
    transform: none;
  }

  .discography-overlay {
    padding: 22px;
  }

  .controls,
  .time-info,
  .volume-container {
    flex-direction: column;
    align-items: stretch;
  }

  #play-pause,
  #bypass-btn {
    width: 100%;
  }
}
