:root {
  --bg: #080b11;
  --panel: rgba(14, 18, 27, 0.78);
  --panel-strong: rgba(11, 15, 23, 0.94);
  --text: #f7f4ee;
  --muted: #b8b0a4;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #00d4ff;
  --pink: #ff4fd8;
  --amber: #ffb86b;
  --sunset: #ff7c5c;
  --green: #9affb6;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 212, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 5%, rgba(255, 79, 216, 0.18), transparent 30rem),
    radial-gradient(circle at 55% 75%, rgba(255, 184, 107, 0.10), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 28px clamp(18px, 4vw, 56px) 70px;
  display: grid;
  grid-template-rows: auto 1fr;
  border-bottom: 1px solid var(--line);
}

.hero-art,
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-art {
  background:
    linear-gradient(90deg, rgba(8, 11, 17, 0.92), rgba(8, 11, 17, 0.48), rgba(8, 11, 17, 0.82)),
    linear-gradient(0deg, rgba(8, 11, 17, 0.88), transparent 48%),
    url("assets/images/background.jpg") center / cover;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.03);
}

.hero-noise {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.top-nav,
.hero-content,
.md-unit {
  position: relative;
  z-index: 1;
}

.top-nav {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(8, 11, 17, 0.58);
  backdrop-filter: blur(18px);
  border-radius: 999px;
}

.brand-mark,
.nav-links a,
.button {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-disc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--cyan), var(--pink), var(--amber), var(--cyan));
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.45);
  position: relative;
}

.brand-disc::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--bg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  align-self: center;
  padding-top: 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-content h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-shadow: 0 0 34px rgba(255, 124, 92, 0.25);
}

.tagline {
  display: inline-block;
  margin: 22px 0 0;
  padding: 10px 16px;
  color: #10131a;
  background: linear-gradient(90deg, var(--amber), #fff4dd);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(255, 184, 107, 0.22);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #ded7ce;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

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

.button.primary {
  color: #10131a;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--amber));
  border: 0;
}

.button.ghost {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.md-unit {
  max-width: 430px;
  width: min(430px, calc(100% - 36px));
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 54px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.md-topline,
.disc-label,
.lcd-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.md-topline span,
.disc-label span,
.lcd-strip span {
  padding: 5px 9px;
  border: 1px solid rgba(154, 255, 182, 0.25);
  border-radius: 999px;
  color: var(--green);
  background: rgba(154, 255, 182, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.md-window {
  margin-top: 14px;
  padding: 18px;
  min-height: 174px;
  border-radius: 18px;
  color: var(--green);
  background:
    linear-gradient(rgba(154,255,182,0.06) 1px, transparent 1px),
    #09120d;
  background-size: 100% 11px;
  border: 1px solid rgba(154, 255, 182, 0.25);
  font-family: "Courier New", ui-monospace, monospace;
  box-shadow: inset 0 0 34px rgba(154,255,182,0.08);
}

.lcd-line {
  margin: 0 0 10px;
  text-shadow: 0 0 14px rgba(154,255,182,0.55);
}

.pulse {
  animation: pulse 1.4s steps(2) infinite;
}

.md-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.md-controls span {
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08));
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px clamp(18px, 4vw, 32px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2,
.notes-panel h2,
.about-grid h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section-heading p:not(.eyebrow),
.notes-panel p,
.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading,
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 28px;
  max-width: none;
}

.featured-card,
.track-card,
.notes-panel,
.about-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  overflow: hidden;
}

.featured-cover {
  min-height: 100%;
  background: #111722;
}

.featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.featured-details {
  padding: clamp(24px, 5vw, 46px);
}

.featured-details h3,
.track-copy h3 {
  margin: 20px 0 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.featured-details h3 span,
.version {
  color: var(--amber);
}

.featured-details p,
.track-copy p {
  color: var(--muted);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.meta-grid div {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.meta-grid strong {
  display: block;
  margin-top: 3px;
}

.soundcloud-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.soundcloud-frame iframe {
  display: block;
  border: 0;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.track-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 15%;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 124, 92, 0.18), transparent 60%);
  pointer-events: none;
}

.alt-card::before {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 60%);
}

.mini-disc,
.track-copy,
.track-card .soundcloud-frame {
  position: relative;
  z-index: 1;
}

.mini-disc {
  aspect-ratio: 1;
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
}

.mini-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.disc-code {
  margin: 0;
  color: var(--green) !important;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.track-card .soundcloud-frame {
  grid-column: 1 / -1;
}

.notes-panel {
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 124, 92, 0.12), rgba(0, 212, 255, 0.08)),
    var(--panel-strong);
}

.lcd-strip {
  margin-top: 26px;
}

.about-grid {
  padding: clamp(24px, 5vw, 46px);
}

.about-copy p:first-child {
  margin-top: 0;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 32px) 48px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

@keyframes pulse {
  0%, 55% { opacity: 1; }
  56%, 100% { opacity: 0.35; }
}

@media (max-width: 980px) {
  .site-hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero-content {
    padding: 80px 0 360px;
  }

  .md-unit {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 34px;
  }

  .featured-card,
  .track-grid,
  .split-heading,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .featured-cover {
    max-height: 520px;
  }

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

@media (max-width: 640px) {
  .top-nav {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content h2 {
    font-size: clamp(3.6rem, 20vw, 5.4rem);
  }

  .hero-content {
    padding-top: 58px;
  }

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

  .mini-disc {
    max-width: 220px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
.featured-details h3 span {
  display: inline-block;
  font-size: 0.68em;
  line-height: 1.05;
}