/* ============================================================
   NO RULES SOUND — DESIGN TOKENS
   ============================================================ */
:root{
  --bg:            #0c0b09;
  --bg-raised:     #161310;
  --bg-raised-2:   #1f1b16;
  --paper:         #ECE7DB;
  --paper-dim:     #b9b3a3;
  --amber:         #FF6A13;
  --amber-dim:     #b84e0e;
  --red:           #FF2A2A;
  --wire:          #34302a;

  --font-display:  'Anton', 'Arial Narrow', sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, monospace;
  --font-body:      'Work Sans', system-ui, sans-serif;

  --container: 1180px;
  --gap: clamp(1rem, 2vw, 1.75rem);
}

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

body{
  margin:0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; }
h1,h2,h3{ margin:0; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em; }
p{ margin:0; }

.mono{ font-family: var(--font-mono); letter-spacing: 0.04em; }

.eyebrow{
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 0.9rem 0;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.section{
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
}
.section__head{ margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section__title{
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.98;
}
.section__title--sm{ font-size: clamp(1.6rem, 3.4vw, 2.2rem); }

.divider{
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--amber) 0 14px,
    var(--bg) 14px 28px
  );
  opacity: 0.9;
}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: sticky; top:0; z-index: 50;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0.9rem 1.5rem;
  background: rgba(12,11,9,0.86);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--wire);
}
.nav__logo{
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-decoration:none;
  color: var(--paper);
}
.nav__links{
  display:flex; gap: clamp(1rem, 2.4vw, 2.2rem);
}
.nav__links a{
  text-decoration:none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper-dim);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav__links a:hover, .nav__links a:focus-visible{
  color: var(--amber);
  border-color: var(--amber);
}
.nav__toggle{
  display:none;
  flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding: 0.4rem;
}
.nav__toggle span{ width:22px; height:2px; background: var(--paper); display:block; }

@media (max-width: 720px){
  .nav__toggle{ display:flex; }
  .nav__links{
    position:absolute; top:100%; left:0; right:0;
    background: var(--bg-raised);
    flex-direction:column; gap:0;
    border-bottom: 1px solid var(--wire);
    max-height:0; overflow:hidden;
    transition: max-height .25s ease;
  }
  .nav__links.is-open{ max-height: 320px; }
  .nav__links a{
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--wire);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: min(88vh, 760px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 4rem 1.5rem;
  overflow:hidden;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255,106,19,0.14), transparent 60%),
    var(--bg);
}
.hero__stripe{
  position:absolute; left:0; right:0; height: 10px;
  background: repeating-linear-gradient(-45deg, var(--amber) 0 14px, var(--bg) 14px 28px);
}
.hero__stripe--top{ top:0; }
.hero__stripe--bottom{ bottom:0; }
.hero__inner{ max-width: 900px; }

.hero__title{
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.92;
  color: var(--paper);
  position: relative;
  margin: 0.4rem 0 1.1rem;
  text-shadow:
    3px 0 0 rgba(255,42,42,0.55),
    -3px 0 0 rgba(0,200,255,0.25);
}
@keyframes glitch-flicker{
  0%, 92%, 100% { text-shadow: 3px 0 0 rgba(255,42,42,0.55), -3px 0 0 rgba(0,200,255,0.25); transform: translate(0,0); }
  93% { text-shadow: -4px 0 0 rgba(255,42,42,0.7), 4px 0 0 rgba(0,200,255,0.4); transform: translate(-2px,1px); }
  95% { text-shadow: 4px 1px 0 rgba(255,42,42,0.6), -3px -1px 0 rgba(0,200,255,0.35); transform: translate(2px,-1px); }
  97% { text-shadow: 3px 0 0 rgba(255,42,42,0.55), -3px 0 0 rgba(0,200,255,0.25); transform: translate(0,0); }
}
.hero__title{ animation: glitch-flicker 6.5s infinite; }

.hero__sub{
  color: var(--paper-dim);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 560px;
  margin: 0 auto;
}
.hero__cta{
  margin-top: 2.4rem;
  display:flex; gap: 1rem; justify-content:center; flex-wrap:wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration:none;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--amber);
  transition: background .15s ease, color .15s ease, transform .1s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn--primary{ background: var(--amber); color: var(--bg); }
.btn--primary:hover{ background: #ff7f33; }
.btn--ghost{ background: transparent; color: var(--paper); }
.btn--ghost:hover{ background: rgba(255,106,19,0.12); }
.btn--full{ display:block; text-align:center; width:100%; }
.btn:focus-visible{ outline: 2px solid var(--paper); outline-offset: 2px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about{
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem 0;
  text-align:center;
}
.about__text{ color: var(--paper-dim); font-size: 1.05rem; }
.about__socials{
  margin-top: 1.6rem;
  display:flex; gap: 1.1rem; justify-content:center; flex-wrap:wrap;
}
.social-pill{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration:none;
  color: var(--paper);
  border: 1px solid var(--wire);
  padding: 0.5rem 0.9rem;
  transition: border-color .15s ease, color .15s ease;
}
.social-pill:hover{ border-color: var(--amber); color: var(--amber); }

/* ============================================================
   ROSTER
   ============================================================ */
.roster-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
}
.artist-card{
  background: var(--bg-raised);
  border: 1px solid var(--wire);
  padding: 1.5rem;
  display:flex; flex-direction:column; gap: 0.9rem;
  position:relative;
  transition: border-color .18s ease, transform .18s ease;
}
.artist-card:hover{ border-color: var(--amber); transform: translateY(-3px); }
.artist-card__id{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--amber);
}
.artist-card__mono{
  width: 56px; height: 56px;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--bg-raised-2);
  border: 1px solid var(--wire);
  color: var(--paper);
}
.artist-card__photo{
  width: 56px; height: 56px;
  object-fit: cover;
  border: 1px solid var(--wire);
  filter: grayscale(1) contrast(1.05);
  transition: filter .2s ease, border-color .2s ease;
}
.artist-card:hover .artist-card__photo{
  filter: grayscale(0) contrast(1.05);
  border-color: var(--amber);
}
.artist-card__name{
  font-size: 1.35rem;
  line-height: 1.05;
}
.artist-card__genre{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}
.artist-card__bio{
  color: var(--paper-dim);
  font-size: 0.92rem;
  flex-grow:1;
}
.artist-card__links{
  display:flex; gap: 0.7rem; flex-wrap:wrap;
  padding-top: 0.4rem;
  border-top: 1px solid var(--wire);
}
.artist-card__links a{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration:none;
  color: var(--paper-dim);
}
.artist-card__links a:hover{ color: var(--amber); }

/* ============================================================
   RELEASES
   ============================================================ */
.releases{
  display:flex; flex-direction:column;
  border-top: 1px solid var(--wire);
}
.release-row{
  display:grid;
  grid-template-columns: 90px 1fr auto;
  align-items:center;
  gap: 1.2rem;
  padding: 1.3rem 0.5rem;
  border-bottom: 1px solid var(--wire);
}
.release-row__cat{
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 0.85rem;
}
.release-row__title{ font-size: 1.05rem; font-weight:600; }
.release-row__artist{ color: var(--paper-dim); font-size: 0.9rem; }
.release-row__date{
  font-family: var(--font-mono);
  color: var(--paper-dim);
  font-size: 0.8rem;
  white-space: nowrap;
}
.release-embed{
  grid-column: 1 / -1;
  margin-top: 0.6rem;
}
.release-embed iframe{ width:100%; border:0; display:block; }

@media (max-width: 560px){
  .release-row{ grid-template-columns: 1fr auto; }
  .release-row__cat{ grid-column: 1/2; }
}

/* ============================================================
   SPLIT (PLAYLIST + PRESAVE)
   ============================================================ */
.split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items:start;
}
@media (max-width: 760px){
  .split{ grid-template-columns: 1fr; }
}
.split__text{ color: var(--paper-dim); margin: 1rem 0 1.4rem; }

.presave-box{
  border: 1px solid var(--wire);
  background: var(--bg-raised);
  padding: 1.6rem;
}
.presave-box__track{ font-family: var(--font-mono); font-size:0.85rem; color: var(--paper-dim); margin-bottom: 0.9rem; }
.presave-box__empty{ color: var(--paper-dim); font-size: 0.95rem; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter{
  position: relative;
  background: var(--bg-raised);
  text-align:left;
  max-width: none;
  padding-left: 0; padding-right:0;
}
.newsletter > *:not(.hero__stripe){
  max-width: 640px;
  margin-left:auto; margin-right:auto;
  padding-left: 1.5rem; padding-right: 1.5rem;
}
.newsletter .hero__stripe{ position: static; margin-bottom: 2rem; }

.nl-form{
  display:flex; gap: 0.7rem; flex-wrap:wrap;
  margin-top: 1.6rem;
}
.nl-form input[type="email"]{
  flex: 1 1 260px;
  background: var(--bg);
  border: 1px solid var(--wire);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
}
.nl-form input[type="email"]:focus-visible{ outline: 2px solid var(--amber); }
.nl-form button{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  background: var(--amber);
  color: var(--bg);
  border: 1px solid var(--amber);
  padding: 0.9rem 1.5rem;
  cursor:pointer;
}
.nl-form button:hover{ background:#ff7f33; }
.nl-fallback{ color: var(--paper-dim); font-size: 0.9rem; margin-top: 1.2rem; }
.nl-fallback a{ color: var(--amber); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem 2rem;
}
.footer__top{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--wire);
}
@media (max-width: 700px){
  .footer__top{ grid-template-columns: 1fr; }
}
.footer__logo{ font-family: var(--font-display); font-size: 2rem; }
.footer__tag{ color: var(--paper-dim); margin-top: 0.6rem; max-width: 32ch; }
.footer__label{ font-size: 0.72rem; color: var(--amber); text-transform:uppercase; margin-bottom:0.3rem; }
.footer__contacts p:not(.footer__label){ margin-bottom: 1rem; word-break: break-word; }
.footer__bottom{
  padding-top: 1.5rem;
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
