:root {
  --ink: #080808;
  --paper: #f1f0e9;
  --acid: #d8ff31;
  --violet: #8b4dff;
  --signal: #ff5038;
  --muted-copy: #aaa9a2;
  --line: rgba(241, 240, 233, 0.18);
  --background: var(--ink);
  --foreground: var(--paper);
  --card: #121212;
  --card-foreground: var(--paper);
  --popover: #121212;
  --popover-foreground: var(--paper);
  --primary: var(--acid);
  --primary-foreground: var(--ink);
  --secondary: #242424;
  --secondary-foreground: var(--paper);
  --muted: #242424;
  --muted-foreground: var(--muted-copy);
  --accent: var(--violet);
  --accent-foreground: var(--paper);
  --destructive: var(--signal);
  --border: var(--line);
  --input: rgba(241, 240, 233, 0.22);
  --ring: var(--acid);
  --radius: 0;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

img { display: block; max-width: 100%; }

.site-header svg,
.kicker svg,
.volume-icon,
.status-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, [role="slider"]:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  background: var(--acid);
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.08em;
  transform: rotate(-3deg);
}

.brand-name {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  color: #cbc9c0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header nav a, .text-link, footer a { transition: color 180ms ease; }
.site-header nav a:hover, .text-link:hover, footer a:hover { color: var(--acid); }

.header-live {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-live:hover { background: var(--paper); color: var(--ink); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #111;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 12, 0.97) 0%, rgba(5, 8, 12, 0.76) 39%, rgba(5, 8, 12, 0.18) 68%, rgba(5, 8, 12, 0.12) 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 4vw 100px;
}

.kicker, .micro-label {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--acid);
}

.hero h1 {
  max-width: 780px;
  margin: 27px 0 26px;
  font-size: clamp(63px, 7.4vw, 128px);
  font-weight: 950;
  letter-spacing: -0.078em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.7px var(--paper);
}

.hero-intro {
  max-width: 590px;
  margin: 0;
  color: #c7c5bd;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.6;
}

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

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--violet);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfcdc5;
  font-size: 13px;
  font-weight: 800;
}

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

.visual-stamp {
  position: absolute;
  right: 5%;
  bottom: 9%;
  display: flex;
  flex-direction: column;
  width: 175px;
  height: 175px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.visual-stamp strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.visual-frequency {
  position: absolute;
  top: 0;
  right: 0;
  padding: 13px 16px;
  background: var(--signal);
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.ticker {
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker div {
  width: max-content;
  padding: 13px 0;
  animation: marquee 24s linear infinite;
}

.ticker span { padding: 0 18px; }
.content-wrap { width: min(1500px, calc(100% - 8vw)); margin: 0 auto; }

.player-shell {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(320px, 1.25fr) minmax(270px, 0.8fr);
  align-items: center;
  min-height: 132px;
  margin-top: 70px;
  border: 1px solid var(--line);
  background: #101010;
}

.player-status, .track-info, .player-controls {
  min-height: 132px;
  display: flex;
  align-items: center;
  padding: 27px 30px;
}

.player-status, .track-info { border-right: 1px solid var(--line); }
.player-status { gap: 17px; }
.player-status h2, .track-message { margin: 7px 0 0; font-size: 15px; font-weight: 800; }
.micro-label { color: var(--muted-copy); }

.live-dot {
  flex: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #676767;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.05);
}

.live-dot.is-ready {
  background: var(--signal);
  box-shadow: 0 0 0 7px rgba(255, 80, 56, 0.11);
  animation: live 1.6s ease-in-out infinite;
}

.track-info { gap: 18px; }

.equalizer {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 42px;
  height: 42px;
  background: var(--violet);
}

.equalizer i { display: block; width: 3px; height: 7px; background: var(--paper); }
.equalizer.is-playing i { animation: bars 0.8s ease-in-out infinite alternate; }
.equalizer.is-playing i:nth-child(2) { animation-delay: -0.3s; }
.equalizer.is-playing i:nth-child(3) { animation-delay: -0.6s; }
.equalizer.is-playing i:nth-child(4) { animation-delay: -0.2s; }
.equalizer.is-playing i:nth-child(5) { animation-delay: -0.5s; }

.player-controls { justify-content: flex-end; gap: 16px; }
.volume-slider {
  width: min(140px, 13vw);
  height: 4px;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: rgba(241, 240, 233, 0.25);
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
}
.volume-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
}
.volume-slider:disabled { cursor: not-allowed; opacity: 0.35; }
.play-button {
  display: grid;
  place-items: center;
  width: 58px !important;
  height: 58px !important;
  padding: 0;
  border: 0;
  border-radius: 50% !important;
  background: var(--acid) !important;
  color: var(--ink) !important;
  cursor: pointer;
  font-size: 18px;
  transition: transform 180ms ease !important;
}
.play-button:hover { transform: scale(1.06); }

.formats-section { padding: 150px 0 140px; }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 65px;
}

.section-heading h2, .manifest-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(50px, 6vw, 96px);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-heading > p {
  margin: 0 0 8px;
  color: #b8b6ae;
  font-size: 17px;
  line-height: 1.7;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.format-card {
  min-height: 410px;
  padding: 32px;
  background: #101010;
  transition: transform 200ms ease, background 200ms ease;
}

.format-card:hover { position: relative; z-index: 1; transform: translateY(-9px); background: #161616; }
.format-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 115px;
  color: var(--muted-copy);
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
}
.format-card.acid .format-topline svg { color: var(--acid); }
.format-card.violet .format-topline svg { color: var(--violet); }
.format-card.signal .format-topline svg { color: var(--signal); }
.format-card h3 { margin: 14px 0 18px; font-size: 30px; letter-spacing: -0.04em; line-height: 1.05; }
.format-card > p:last-child { margin: 0; color: #aaa89f; font-size: 15px; line-height: 1.65; }

.manifest {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 7vw;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.manifest-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--muted-copy);
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.manifest-label span:last-child { writing-mode: vertical-rl; }
.manifest-copy h2 em { color: var(--acid); font-style: normal; }
.manifest-copy > p:last-child {
  max-width: 680px;
  margin: 45px 0 0 auto;
  color: #c3c1b8;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.65;
}

.status-section {
  display: grid;
  grid-template-columns: auto 0.9fr 1fr;
  align-items: center;
  gap: 34px;
  margin: 20px 0 120px;
  padding: 42px;
  background: var(--paper);
  color: var(--ink);
}
.status-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  background: var(--violet);
  color: var(--paper);
  transform: rotate(-4deg);
}
.status-section h2 { margin: 7px 0 0; font-size: clamp(25px, 2.5vw, 38px); letter-spacing: -0.045em; }
.status-section > p { margin: 0; color: #484844; font-size: 15px; line-height: 1.65; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  padding: 70px 4vw 45px;
  border-top: 1px solid var(--line);
  background: #050505;
}
.footer-brand { font-size: clamp(36px, 5vw, 72px); font-weight: 950; letter-spacing: -0.07em; line-height: 0.79; }
footer p, footer a {
  margin: 0;
  color: var(--muted-copy);
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
footer a { justify-self: end; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes live { 50% { opacity: 0.45; } }
@keyframes bars { to { height: 25px; } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; min-height: 780px; }
  .hero-copy { width: 72%; }
  .hero-visual { position: absolute; inset: 0; }
  .player-shell { grid-template-columns: 1fr 1fr; }
  .player-status { border-bottom: 1px solid var(--line); }
  .track-info { border-right: 0; border-bottom: 1px solid var(--line); }
  .player-controls { grid-column: 1 / -1; min-height: 90px; justify-content: flex-start; }
  .volume-slider { width: 180px; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 78px; }
  .site-header nav, .brand-name { display: none; }
  .header-live { padding: 11px 13px; }
  .hero { min-height: 760px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5, 8, 12, 0.97), rgba(5, 8, 12, 0.66) 75%, rgba(5, 8, 12, 0.4)); }
  .hero-copy { width: 100%; padding: 60px 5vw 150px; justify-content: flex-start; }
  .hero h1 { font-size: clamp(52px, 16vw, 78px); line-height: 0.88; }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .visual-stamp { width: 135px; height: 135px; }
  .content-wrap { width: calc(100% - 10vw); }
  .player-shell { grid-template-columns: 1fr; margin-top: 42px; }
  .player-status, .track-info, .player-controls { min-height: 105px; border-right: 0; }
  .player-controls { grid-column: auto; }
  .section-heading, .manifest { grid-template-columns: 1fr; }
  .formats-section { padding: 110px 0 100px; }
  .formats-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 340px; }
  .format-topline { padding-bottom: 70px; }
  .manifest { padding: 90px 0; }
  .manifest-label { flex-direction: row; }
  .manifest-label span:last-child { writing-mode: horizontal-tb; }
  .manifest-copy > p:last-child { margin-left: 0; }
  .status-section { grid-template-columns: auto 1fr; padding: 28px; }
  .status-section > p { grid-column: 1 / -1; }
  footer { grid-template-columns: 1fr; align-items: start; }
  footer a { justify-self: start; }
}

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