:root {
  color-scheme: dark;
  --bg: #020307;
  --bg-soft: #070a14;
  --ink: #f4f7ff;
  --muted: #aab3cf;
  --subtle: #66708f;
  --line: rgba(255, 255, 255, 0.13);
  --glass: rgba(11, 16, 31, 0.54);
  --glass-strong: rgba(15, 22, 42, 0.74);
  --blue: #29b7ff;
  --violet: #8c5cff;
  --magenta: #ff4fd8;
  --cyan: #83f7ff;
  --success: #8fffe0;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --section-x: clamp(1.25rem, 4vw, 5rem);
  --section-y: clamp(5.5rem, 12vw, 9rem);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(41, 183, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 78% 18%, rgba(140, 92, 255, 0.2), transparent 30rem),
    linear-gradient(180deg, #020307 0%, #060611 44%, #020307 100%);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: rgba(131, 247, 255, 0.28);
}

[data-glass] {
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(145%);
}

.cursor-aura {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 183, 255, 0.13), rgba(140, 92, 255, 0.07) 32%, transparent 65%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 2rem));
  min-height: 4rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, var(--cyan), transparent 32%),
    linear-gradient(145deg, rgba(41, 183, 255, 0.85), rgba(140, 92, 255, 0.8) 55%, rgba(255, 79, 216, 0.72));
  box-shadow: 0 0 34px rgba(41, 183, 255, 0.34);
  color: #020307;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.15rem);
}

.site-nav a {
  padding: 0.65rem 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.site-nav a:hover {
  color: var(--ink);
  text-shadow: 0 0 20px rgba(131, 247, 255, 0.48);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.23rem auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.section {
  position: relative;
  padding: var(--section-y) var(--section-x);
}

.hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 7rem var(--section-x) 5rem;
  overflow: hidden;
}

.hero-video,
.hero-scrim,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(120%) contrast(112%) brightness(62%);
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 3, 7, 0.94), rgba(2, 3, 7, 0.35) 46%, rgba(2, 3, 7, 0.9)),
    linear-gradient(180deg, rgba(2, 3, 7, 0.42), rgba(2, 3, 7, 0.76) 72%, #020307);
}

.hero-noise {
  z-index: -2;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.hero-content {
  width: min(1120px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.2rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.logo-constellation {
  position: relative;
  width: min(26rem, 78vw);
  height: 3rem;
  margin-bottom: 0.4rem;
}

.logo-constellation::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(131, 247, 255, 0.72), transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: signalLine 1.45s var(--ease) 0.4s forwards;
}

.logo-constellation span {
  position: absolute;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(131, 247, 255, 0.9);
  opacity: 0;
  animation: nodeIn 0.8s var(--ease) forwards;
}

.logo-constellation span:nth-child(1) {
  left: 7%;
  animation-delay: 0.55s;
}

.logo-constellation span:nth-child(2) {
  left: 38%;
  animation-delay: 0.75s;
}

.logo-constellation span:nth-child(3) {
  left: 67%;
  animation-delay: 0.92s;
}

.logo-constellation span:nth-child(4) {
  left: 94%;
  animation-delay: 1.08s;
}

.hero-title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(4.6rem, 16vw, 13.5rem);
  text-shadow: 0 0 48px rgba(41, 183, 255, 0.2);
}

.section-title {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 8rem);
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%) rotateX(70deg);
  transform-origin: bottom;
}

.hero-copy,
.section-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions,
.stream-row,
.filter-tabs,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.stream-row a:hover,
.community-card:hover,
.disc-card:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--violet) 55%, var(--magenta));
  color: white;
  box-shadow: 0 16px 45px rgba(41, 183, 255, 0.24);
}

.button.ghost,
.stream-row a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.sound-toggle,
.scroll-cue {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sound-toggle {
  right: var(--section-x);
  bottom: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.sound-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.8);
}

.sound-toggle[aria-pressed="true"] .sound-dot {
  background: var(--success);
  box-shadow: 0 0 18px rgba(143, 255, 224, 0.8);
}

.scroll-cue {
  left: var(--section-x);
  bottom: 2.2rem;
}

.scroll-cue span {
  position: relative;
  display: inline-block;
  width: 1.65rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.scroll-cue span::after {
  position: absolute;
  top: 0.48rem;
  left: 50%;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  transform: translateX(-50%);
  animation: scrollPulse 1.6s infinite;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  width: min(1180px, 100%);
  margin: 0 auto clamp(2.25rem, 7vw, 5.25rem);
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.86fr) minmax(18rem, 1fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.artwork-card,
.release-story,
.video-frame,
.album-spotlight,
.trailer-card,
.newsletter,
.community-card,
.contact-form,
.events-panel,
.disc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.artwork-card {
  grid-row: span 2;
  padding: 0.7rem;
}

.album-art {
  position: relative;
  display: grid;
  min-height: clamp(20rem, 43vw, 34rem);
  place-items: end start;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  padding: 1.4rem;
  isolation: isolate;
}

.album-art::before,
.album-art::after {
  position: absolute;
  inset: -30%;
  z-index: -1;
  content: "";
}

.syaahi-art::before {
  background:
    radial-gradient(circle at 28% 34%, rgba(131, 247, 255, 0.9), transparent 12%),
    radial-gradient(circle at 70% 62%, rgba(255, 79, 216, 0.8), transparent 18%),
    conic-gradient(from 130deg, #03040b, #113f8c, #8c5cff, #11142d, #020307);
  filter: blur(2px);
}

.syaahi-art::after {
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 14px);
  mix-blend-mode: overlay;
  animation: drift 16s linear infinite;
}

.faces-art::before {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 79, 216, 0.8), transparent 18%),
    radial-gradient(circle at 72% 58%, rgba(41, 183, 255, 0.86), transparent 18%),
    linear-gradient(135deg, #070815, #311a6b 48%, #061d40);
}

.faces-art::after {
  background:
    linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.1) 50%, transparent 80%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 16px);
  animation: drift 22s linear infinite reverse;
}

.album-art span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.55);
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.8rem 0.2rem 0.1rem;
}

.release-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.release-story {
  padding: clamp(1.2rem, 3vw, 2.1rem);
}

.release-story h3,
.trailer-card p,
.events-panel h2,
.community-card strong {
  margin-top: 0;
}

.release-story h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
}

.release-story p,
.about-copy p,
.faces-copy p,
.disc-card p,
.trailer-card p {
  color: var(--muted);
  line-height: 1.75;
}

.stream-row a {
  border-radius: 999px;
  padding: 0.72rem 0.92rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-frame {
  overflow: hidden;
  min-height: 21rem;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 21rem;
  border: 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-media {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(105%) brightness(72%);
  transform: scale(1.04);
}

.portrait-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border-radius: var(--radius);
  padding: 1rem;
}

.portrait-caption span,
.trailer-card span,
.community-card span,
.disc-card small,
.showreel span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about-copy {
  align-self: center;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.stats-strip div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.stats-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.stats-strip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.carousel-shell {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0.8rem;
}

.video-carousel {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(24rem, 56vw, 42rem);
}

.video-slide {
  position: relative;
  grid-area: 1 / 1;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(116%) brightness(68%);
}

.video-slide::after,
.showreel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(2, 3, 7, 0.86));
}

.video-slide > div,
.showreel > div {
  position: absolute;
  z-index: 2;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vw, 3rem);
}

.video-slide h3,
.showreel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 6rem);
  line-height: 0.95;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 0.9rem;
  background: rgba(2, 3, 7, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: 1.25rem;
}

.carousel-btn.next {
  right: 1.25rem;
}

.faces {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(16rem, 0.75fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.faces-copy {
  padding-right: clamp(0rem, 3vw, 2rem);
}

.album-spotlight {
  padding: 0.7rem;
}

.embed-stack {
  display: grid;
  gap: 1rem;
}

.spotify-embed {
  width: 100%;
  min-height: 22rem;
  border: 0;
  border-radius: var(--radius);
}

.trailer-card {
  padding: 1.2rem;
}

.trailer-card a {
  color: var(--cyan);
  font-weight: 800;
}

.filter-tabs {
  justify-content: center;
  margin: -2rem auto 2rem;
}

.filter-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.filter-tabs button.is-active {
  border-color: rgba(131, 247, 255, 0.62);
  background: rgba(41, 183, 255, 0.16);
}

.disc-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.disc-card {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  padding: 1.1rem;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.disc-card.is-hidden {
  display: none;
}

.disc-card:hover {
  border-color: rgba(131, 247, 255, 0.45);
}

.disc-orb {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 35% 30%, rgba(131, 247, 255, 0.9), transparent 17%),
    radial-gradient(circle at 70% 72%, rgba(255, 79, 216, 0.72), transparent 19%),
    linear-gradient(135deg, rgba(41, 183, 255, 0.26), rgba(140, 92, 255, 0.22));
}

.disc-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.live {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(18rem, 0.74fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.showreel {
  position: relative;
  min-height: clamp(30rem, 52vw, 43rem);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showreel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(120%) brightness(70%);
}

.events-panel {
  align-self: stretch;
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.event-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.event-list article {
  display: grid;
  grid-template-columns: 4.25rem 1fr auto;
  gap: 0.85rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.event-list time {
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 700;
}

.event-list span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.event-list a {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
}

.community {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.community-grid {
  margin-top: 2rem;
}

.newsletter,
.community-card {
  min-height: 16rem;
  padding: 1.2rem;
}

.newsletter {
  grid-column: span 2;
}

.newsletter h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(131, 247, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(41, 183, 255, 0.12);
}

.newsletter .button {
  margin-top: 1rem;
}

.community-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.community-card:hover {
  border-color: rgba(131, 247, 255, 0.45);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  justify-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 2rem var(--section-x);
  color: var(--muted);
}

.site-footer nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer a:hover {
  color: var(--ink);
}

.socials a {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.reveal-card {
  opacity: 0;
  transform: translateY(34px);
}

.reveal-line {
  opacity: 0;
  transform: translateY(20px);
}

@keyframes signalLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes nodeIn {
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 1.35rem);
  }
}

@keyframes drift {
  to {
    transform: translate3d(6%, 4%, 0) rotate(18deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: rgba(5, 8, 18, 0.92);
    transition: max-height 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
    backdrop-filter: blur(24px);
  }

  .site-header.is-open .site-nav {
    max-height: 26rem;
    border-color: var(--line);
    padding: 0.65rem;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .section-grid,
  .release-layout,
  .about,
  .faces,
  .live {
    grid-template-columns: 1fr;
  }

  .artwork-card {
    grid-row: auto;
  }

  .disc-grid,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .about-media,
  .showreel {
    min-height: 32rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section-x: 1rem;
    --section-y: 4.5rem;
  }

  .site-header {
    top: 0.65rem;
    width: calc(100% - 1rem);
  }

  .brand {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 100svh;
    place-items: end start;
  }

  .hero-title {
    font-size: clamp(3rem, 13vw, 4.4rem);
    max-width: none;
    white-space: nowrap;
  }

  .sound-toggle,
  .scroll-cue {
    bottom: 1rem;
  }

  .sound-toggle {
    right: 1rem;
  }

  .scroll-cue {
    left: 1rem;
  }

  .section-grid {
    gap: 1rem;
  }

  .section-title {
    font-size: clamp(2.55rem, 15vw, 4.5rem);
  }

  .album-art {
    min-height: 22rem;
  }

  .video-frame,
  .video-frame iframe {
    min-height: 16rem;
  }

  .disc-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    grid-column: auto;
  }

  .event-list article {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .cursor-aura {
    display: none;
  }
}

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

  .char,
  .reveal-card,
  .reveal-line {
    opacity: 1;
    transform: none;
  }
}
