:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --bg-3: #101010;
  --panel: #0e0e0e;
  --text: #f3f3f3;
  --muted: #8a8a8a;
  --dim: #3f3f3f;
  --line: rgba(255,255,255,.08);
  --lime: #c6ff00;
  --lime-2: #eaff6a;
  --ink: #050505;
  --font-d: "Oxanium", sans-serif;
  --font-m: "DM Mono", ui-monospace, monospace;
  --radius: 18px;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-m);
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* NAV */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), var(--max));
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 18px;
  background: rgba(8,8,8,.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px) saturate(1.2);
}
.brand {
  font-family: var(--font-d);
  font-weight: 800;
  letter-spacing: .18em;
  text-decoration: none;
  font-size: 13px;
}
.brand em { color: var(--lime); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.is-on { color: var(--text); background: rgba(255,255,255,.05); }
.nav-cta {
  background: var(--lime) !important;
  color: var(--ink) !important;
  font-family: var(--font-d);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end stretch;
  padding: 110px 20px 40px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.25) 0%, rgba(5,5,5,.2) 40%, rgba(5,5,5,.92) 100%),
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(5,5,5,.35) 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: end;
}
.kicker {
  font-size: 11px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(42px, 8vw, 92px);
  line-height: .88;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.hero h1 span { color: var(--lime); }
.lede {
  margin-top: 18px;
  max-width: 46ch;
  color: #d5d5d5;
  font-size: 15px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(198,255,0,0);
}
.btn-lime:hover { background: var(--lime-2); box-shadow: 0 0 32px rgba(198,255,0,.28); }
.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: rgba(198,255,0,.5); }

.featured-card {
  background: rgba(10,10,10,.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.featured-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.featured-meta { padding: 16px 18px 18px; }
.featured-meta small {
  display: block;
  color: var(--lime);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 10px;
  margin-bottom: 6px;
}
.featured-meta strong {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.featured-meta p { color: var(--muted); font-size: 12px; margin-top: 4px; }

/* MARQUEE */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  background: #070707;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--font-d);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}
.marquee-track span { white-space: nowrap; }
.marquee-track b { color: var(--lime); font-weight: 700; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
section.block { padding: 88px 0; }
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 36px;
}
.sec-head h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .9;
}
.sec-head p, .eyebrow {
  color: var(--dim);
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: 10px;
}

/* RELEASES */
.releases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.release {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.release:hover { transform: translateY(-4px); border-color: rgba(198,255,0,.35); }
.release img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .5s;
}
.release:hover img { transform: scale(1.04); }
.release-body { padding: 14px 14px 16px; }
.release-body em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.release-body h3 {
  font-family: var(--font-d);
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4px;
}
.chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 8px;
  border-radius: 999px;
}
.chip.soon { background: #1a1a1a; color: var(--text); border: 1px solid var(--line); }

/* PLAYER */
.player-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(198,255,0,.06), transparent 40%), var(--bg-2);
}
.play {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.player-copy strong {
  font-family: var(--font-d);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.player-copy span { display: block; color: var(--muted); font-size: 12px; }
.wave {
  height: 28px;
  display: flex;
  align-items: end;
  gap: 3px;
}
.wave i {
  display: block;
  width: 3px;
  height: 30%;
  background: var(--lime);
  opacity: .35;
  animation: eq 1s ease-in-out infinite;
  animation-play-state: paused;
}
.wave.is-on i { animation-play-state: running; opacity: 1; }
.wave i:nth-child(2n) { animation-duration: .8s; height: 70%; }
.wave i:nth-child(3n) { animation-duration: 1.2s; height: 45%; }
@keyframes eq {
  0%,100% { transform: scaleY(.35); }
  50% { transform: scaleY(1); }
}

/* ABOUT / MAIL */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}
.panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
}
.panel h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 46px);
  text-transform: uppercase;
  line-height: .92;
  margin: 10px 0 16px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.form input {
  flex: 1;
  min-width: 0;
  background: #090909;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 14px 16px;
  outline: none;
}
.form input:focus { border-color: var(--lime); }
.note { margin-top: 10px; color: var(--dim); font-size: 11px; }

/* SYNC */
.catalog {
  display: grid;
  gap: 8px;
}
.cat {
  display: grid;
  grid-template-columns: 48px 1.3fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-2);
  cursor: pointer;
  text-align: left;
  color: inherit;
  width: 100%;
  transition: border-color .2s, background .2s;
}
.cat:hover, .cat.is-on { border-color: rgba(198,255,0,.4); background: #121212; }
.cat b { font-family: var(--font-d); text-transform: uppercase; font-size: 18px; }
.cat .num { color: var(--dim); letter-spacing: .2em; font-size: 11px; }
.facts { color: var(--muted); font-size: 12px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: end; }
.pill {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
}
.pill.ok { color: var(--ink); background: var(--lime); border-color: var(--lime); }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: var(--bg-2);
}
.feature h3 {
  font-family: var(--font-d);
  text-transform: uppercase;
  font-size: 16px;
  margin: 8px 0;
}
.feature p { color: var(--muted); font-size: 13px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}
.foot {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.socials { display: flex; flex-wrap: wrap; gap: 8px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.socials a:hover { color: var(--lime); border-color: var(--lime); }
.copy { color: var(--dim); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.fi { opacity: 0; transform: translateY(16px); animation: rise .8s ease forwards; }
.fi.d1 { animation-delay: .1s; }
.fi.d2 { animation-delay: .22s; }
.fi.d3 { animation-delay: .34s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .hero-inner, .releases, .split, .features { grid-template-columns: 1fr; }
  .releases { grid-template-columns: 1fr 1fr; }
  .cat { grid-template-columns: 40px 1fr; }
  .pills, .facts { display: none; }
  .nav-links { display: none; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    flex-direction: column;
    background: #0b0b0b;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
  }
  .nav-toggle { display: grid; place-items: center; }
}
@media (max-width: 560px) {
  .releases { grid-template-columns: 1fr; }
  .form { flex-direction: column; }
  .hero { padding-bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .wave i, .fi { animation: none !important; }
  .fi { opacity: 1; transform: none; }
}
