:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #111213;
  --panel-2: #191b1d;
  --text: #f2f2ee;
  --muted: #a0a2a1;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #80f7ff;
  --red: #ff4b4b;
  --acid: #d9ff5a;
  --font-body: Inter, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Arial Narrow", "HelveticaNeue-CondensedBold", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.led-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(128, 247, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 75, 75, 0.06), transparent 38%, rgba(128, 247, 255, 0.05));
}

.led-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(255, 255, 255, 0.1) 52px 53px, transparent 53px 104px),
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(128, 247, 255, 0.11) 18px 19px, transparent 19px 38px);
  animation: ledGridPulse 5.6s steps(2, end) infinite;
}

.led-backdrop i {
  position: absolute;
  top: -12vh;
  width: clamp(12px, 1.8vw, 28px);
  height: 124vh;
  background:
    linear-gradient(180deg, transparent, rgba(128, 247, 255, 0.34), transparent 42%),
    repeating-linear-gradient(180deg, transparent 0 24px, rgba(255, 255, 255, 0.28) 24px 28px, transparent 28px 48px);
  filter: blur(0.4px);
  opacity: 0.12;
  transform: skewX(-7deg);
  animation: ledColumn 4.8s steps(1, end) infinite;
}

.led-backdrop i:nth-child(1) {
  left: 7%;
  animation-delay: -0.8s;
}

.led-backdrop i:nth-child(2) {
  left: 18%;
  height: 86vh;
  top: 9vh;
  background-color: rgba(255, 75, 75, 0.08);
  animation-delay: -2.1s;
}

.led-backdrop i:nth-child(3) {
  left: 33%;
  animation-delay: -1.4s;
}

.led-backdrop i:nth-child(4) {
  left: 49%;
  height: 92vh;
  top: 4vh;
  animation-delay: -3.2s;
}

.led-backdrop i:nth-child(5) {
  left: 63%;
  background-color: rgba(217, 255, 90, 0.06);
  animation-delay: -0.2s;
}

.led-backdrop i:nth-child(6) {
  left: 77%;
  height: 82vh;
  top: 18vh;
  animation-delay: -2.8s;
}

.led-backdrop i:nth-child(7) {
  left: 88%;
  animation-delay: -1s;
}

.led-backdrop i:nth-child(8) {
  left: 95%;
  height: 74vh;
  top: 11vh;
  background-color: rgba(255, 75, 75, 0.08);
  animation-delay: -3.7s;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

button,
input {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text);
  transition: opacity 650ms ease, visibility 650ms ease;
}

.loader span {
  font-size: clamp(1.8rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.85;
}

.loader i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  animation: loadBar 900ms ease forwards;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--text);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
  isolation: isolate;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px);
  padding-block: 14px;
}

.brand {
  max-width: 42vw;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(242, 242, 238, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.site-nav a:hover {
  border-color: var(--cyan);
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--text);
  border-color: var(--red);
}

.language-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.language-switch button {
  min-width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.language-switch button.is-active {
  background: var(--text);
  color: var(--bg);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  contain: paint;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-image {
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.66) 70%, var(--bg)),
    linear-gradient(116deg, rgba(128, 247, 255, 0.16), transparent 30%, rgba(255, 75, 75, 0.12) 66%, transparent 86%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), transparent 56%, rgba(5, 5, 5, 0.48));
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  pointer-events: none;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, transparent, rgba(128, 247, 255, 0.16), transparent);
  mix-blend-mode: screen;
  animation: scanMove 7s linear infinite;
}

.hero-frame {
  position: absolute;
  inset: 92px clamp(18px, 4vw, 56px) auto;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  color: rgba(242, 242, 238, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-frame span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 9vh;
  transform: translateY(var(--hero-shift, 0));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(4.2rem, 15vw, 13rem);
  font-weight: 900;
  line-height: 0.82;
  max-width: 10ch;
}

.kinetic-title {
  position: relative;
  text-shadow: 0 0 34px rgba(128, 247, 255, 0.18);
}

.kinetic-title::before,
.kinetic-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  white-space: pre-line;
}

.kinetic-title::before {
  color: var(--cyan);
  transform: translate(3px, -2px);
  animation: titleGlitch 4.8s steps(2, end) infinite;
}

.kinetic-title::after {
  color: var(--red);
  transform: translate(-3px, 2px);
  animation: titleGlitch 5.6s steps(2, end) infinite reverse;
}

.hero-line {
  max-width: 620px;
  color: rgba(242, 242, 238, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  max-width: 100%;
}

.hero-actions a {
  min-width: 0;
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.hero-actions a:first-child {
  background: var(--text);
  color: var(--bg);
}

.hero-actions a:hover {
  transform: translateY(-3px);
  background: var(--cyan);
  color: var(--bg);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: cuePulse 1.8s ease-in-out infinite;
}

.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #080909;
}

.marquee div {
  display: flex;
  min-width: 100%;
  animation: marquee 22s linear infinite;
}

.marquee span {
  flex: 0 0 auto;
  padding: 18px clamp(22px, 5vw, 64px);
  color: rgba(242, 242, 238, 0.86);
  font-size: clamp(0.9rem, 2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section,
.band {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.band {
  padding: clamp(54px, 8vw, 96px) 0;
}

.intro p {
  max-width: 920px;
  font-size: clamp(1.45rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 0.98;
}

.intro .word {
  display: inline-block;
  opacity: 0.28;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: calc(var(--i) * 24ms);
}

.intro.is-visible .word {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: clamp(54px, 8vw, 104px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2,
.about h2,
.visual-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 6vw, 5.6rem);
  line-height: 0.92;
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: end;
}

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

.visual-wall {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  grid-auto-rows: 210px;
  gap: 12px;
}

.visual-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128, 247, 255, 0.22), transparent 42%, rgba(255, 75, 75, 0.16));
  mix-blend-mode: screen;
}

.visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08) contrast(1.12);
  transform: scale(1.18);
  transition: transform 800ms ease, filter 800ms ease;
}

.visual-tile.tall img {
  object-position: center center;
}

.visual-tile.wide img {
  object-position: center 46%;
}

.visual-tile:hover img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.05);
}

.visual-tile.tall {
  grid-row: span 2;
}

.visual-tile.wide {
  grid-column: 2;
}

.tour-list {
  border-top: 1px solid var(--line);
}

.tour-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 96px;
  align-items: center;
  column-gap: 24px;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.tour-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(128, 247, 255, 0.12), rgba(255, 75, 75, 0.1));
  transform: translateX(-101%);
  transition: transform 420ms ease;
}

.tour-row:hover::before {
  transform: translateX(0);
}

.tour-row time {
  color: var(--red);
  font-weight: 900;
}

.tour-row > div {
  min-width: 0;
}

.tour-row h3 {
  margin-bottom: 5px;
  font-size: clamp(1.15rem, 2.5vw, 2rem);
}

.tour-row p,
.about-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tour-row a,
.release-card .spotify-link,
.spotify-artist-link,
.spotify-panel-actions a,
.signup button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--text);
  color: var(--bg);
  padding: 0 18px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tour-row a {
  justify-self: end;
  width: 96px;
  min-height: 38px;
  background: transparent;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.tour-row a:hover,
.release-card .spotify-link:hover,
.spotify-artist-link:hover,
.spotify-panel-actions a:hover,
.signup button:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--bg);
}

.spotify-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  margin-bottom: 26px;
  max-width: 100%;
  overflow: hidden;
}

.spotify-feature > div {
  min-width: 0;
  min-height: 352px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(29, 185, 84, 0.16), transparent 34%),
    var(--panel);
  padding: clamp(24px, 4vw, 42px);
}

.spotify-feature h3 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.spotify-feature p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.6;
}

.spotify-artist-link {
  display: inline-grid;
  place-items: center;
  margin-top: 26px;
  background: var(--text);
  color: var(--bg);
}

.spotify-panel {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 352px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(29, 185, 84, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    rgba(14, 15, 16, 0.98);
  padding: clamp(22px, 4vw, 38px);
}

.spotify-panel::before {
  content: "";
  position: absolute;
  inset: auto -44px -66px auto;
  width: 210px;
  aspect-ratio: 1;
  border: 1px solid rgba(117, 225, 232, 0.22);
  transform: rotate(45deg);
  pointer-events: none;
}

.spotify-panel-top,
.spotify-panel-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.spotify-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.spotify-panel-top strong {
  display: block;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.spotify-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1db954;
  color: #060606;
  font-size: 1.35rem;
  font-weight: 900;
}

.spotify-track-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  margin: clamp(24px, 5vw, 42px) 0 clamp(24px, 5vw, 38px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.spotify-track-list a {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: rgba(9, 10, 11, 0.94);
  color: var(--text);
  padding: 16px 18px;
  transition: background 180ms ease, color 180ms ease;
}

.spotify-track-list a:hover {
  background: rgba(29, 185, 84, 0.18);
}

.spotify-track-list span,
.spotify-track-list em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotify-track-list strong {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotify-panel-actions a {
  display: inline-grid;
  place-items: center;
  min-width: 160px;
  background: var(--text);
}

.spotify-eq {
  display: inline-flex;
  align-items: end;
  gap: 5px;
  height: 34px;
}

.spotify-eq i {
  width: 5px;
  background: var(--cyan);
}

.spotify-eq i:nth-child(1) { height: 12px; }
.spotify-eq i:nth-child(2) { height: 22px; }
.spotify-eq i:nth-child(3) { height: 15px; }
.spotify-eq i:nth-child(4) { height: 28px; }
.spotify-eq i:nth-child(5) { height: 19px; }

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 100%;
  overflow: hidden;
}

.release-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  align-items: start;
  background: rgba(17, 18, 19, 0.9);
  padding: 26px 30px 30px;
  transition: transform 260ms ease, background 260ms ease;
  isolation: isolate;
}

.release-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--acid), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.release-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  z-index: 0;
  width: 164px;
  height: 164px;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(135deg, transparent 48%, rgba(128, 247, 255, 0.55) 49% 50%, transparent 51%),
    linear-gradient(45deg, transparent 52%, rgba(255, 255, 255, 0.34) 53% 54%, transparent 55%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.release-card:hover {
  transform: translateY(-8px);
  background: var(--panel-2);
}

.release-card:hover::before,
.release-card.is-playing::before {
  transform: scaleX(1);
}

.release-card > * {
  position: relative;
  z-index: 1;
}

.track-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  min-width: 0;
  color: rgba(128, 247, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-meta span {
  min-width: 0;
}

.track-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-card h3 {
  max-width: 11ch;
  margin: 20px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.release-card .spotify-link {
  display: inline-grid;
  place-items: center;
  max-width: 100%;
  margin-top: auto;
  background: transparent;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.release-card p {
  max-width: 28ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

html[lang="tr"] .release-card {
  min-height: 244px;
}

html[lang="tr"] .release-card p[data-i18n^="release"][data-i18n$="Text"] {
  display: none;
}

html[lang="tr"] .release-card h3 {
  max-width: 15ch;
  margin-bottom: 0;
}

html[lang="tr"] .release-card .waveform {
  margin-top: 20px;
}

.release-card.is-playing {
  background: var(--panel-2);
}

.waveform {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 34px;
  margin: 22px 0 24px;
}

.waveform i {
  width: 5px;
  height: 34%;
  background: rgba(128, 247, 255, 0.72);
  animation: waveIdle 1.2s ease-in-out infinite;
  animation-play-state: paused;
}

.waveform i:nth-child(2) {
  height: 76%;
  animation-delay: 120ms;
}

.waveform i:nth-child(3) {
  height: 48%;
  animation-delay: 240ms;
}

.waveform i:nth-child(4) {
  height: 94%;
  animation-delay: 360ms;
}

.waveform i:nth-child(5) {
  height: 58%;
  animation-delay: 480ms;
}

.waveform i:nth-child(6) {
  height: 82%;
  animation-delay: 600ms;
}

.release-card.is-playing .waveform i {
  animation-play-state: running;
}

.release-card:hover .waveform i {
  animation-play-state: running;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(34px, 8vw, 110px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.about-copy p:last-child {
  max-width: 680px;
  margin-top: 26px;
}

.signal-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
}

.signal-panel div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.signal-panel div:last-child {
  border-bottom: 0;
}

.signal-panel strong {
  color: var(--red);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.signal-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-band {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: contrast(1.12) saturate(0.8);
  transform: scale(1.08);
}

.video-frame span {
  position: absolute;
  left: 30px;
  bottom: 24px;
  z-index: 3;
  font-size: clamp(1.6rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.video-band p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.signup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.signup label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.signup input {
  min-width: 0;
  min-height: 60px;
  border: 1px solid var(--line);
  background: #0c0d0d;
  color: var(--text);
  padding: 0 18px;
}

.signup input:focus {
  outline: 2px solid rgba(128, 247, 255, 0.48);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.site-footer div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.06) translate3d(-1.2%, -1%, 0);
  }
  to {
    transform: scale(1.14) translate3d(1.2%, 1%, 0);
  }
}

@keyframes scanMove {
  to {
    background-position: 0 120px, 220px 0;
  }
}

@keyframes titleGlitch {
  0%,
  88%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
  }
  89% {
    opacity: 0.55;
    clip-path: inset(18% 0 62% 0);
  }
  91% {
    opacity: 0.42;
    clip-path: inset(72% 0 10% 0);
  }
  93% {
    opacity: 0;
  }
}

@keyframes cuePulse {
  50% {
    transform: translateY(8px);
    color: var(--text);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

@keyframes waveIdle {
  0%,
  100% {
    transform: scaleY(0.45);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes ledGridPulse {
  0%,
  100% {
    opacity: 0.08;
  }
  18% {
    opacity: 0.28;
  }
  23% {
    opacity: 0.11;
  }
  55% {
    opacity: 0.22;
  }
  57% {
    opacity: 0.04;
  }
}

@keyframes ledColumn {
  0%,
  100% {
    opacity: 0.07;
  }
  12% {
    opacity: 0.24;
  }
  13% {
    opacity: 0.04;
  }
  37% {
    opacity: 0.18;
  }
  48% {
    opacity: 0.1;
  }
  73% {
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.08;
    mask-image: linear-gradient(180deg, black, transparent 48%);
  }

  .led-backdrop {
    position: absolute;
    height: 100svh;
    display: block;
    background:
      radial-gradient(circle at 52% 8%, rgba(128, 247, 255, 0.13), transparent 34%),
      radial-gradient(circle at 12% 24%, rgba(255, 75, 75, 0.08), transparent 28%),
      linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.9));
  }

  .led-backdrop::before {
    opacity: 0.08;
    animation: none;
  }

  .led-backdrop i {
    display: none;
  }

  .site-header {
    overflow: visible;
    background: rgba(5, 5, 5, 0.72);
  }

  .site-header.is-scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch button {
    min-width: 34px;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.96);
    padding: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
  }

  .hero {
    min-height: 86svh;
    overflow: hidden;
    contain: paint;
  }

  .hero-image {
    animation: none;
    transform: scale(1.04);
    will-change: auto;
  }

  .scanlines {
    opacity: 0.12;
    animation: none;
  }

  .hero-frame {
    grid-template-columns: 1fr;
    top: 86px;
  }

  .hero-frame span:nth-child(n + 2) {
    display: none;
  }

  .hero-content {
    margin-bottom: 13vh;
    transform: none !important;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
  }

  .hero-actions a {
    flex: 1 1 132px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .visual-section,
  .spotify-feature,
  .video-band {
    grid-template-columns: 1fr;
  }

  .spotify-feature {
    gap: 14px;
    overflow: hidden;
  }

  .spotify-feature > div {
    min-height: auto;
    padding: 22px;
  }

  .spotify-feature h3 {
    max-width: 10ch;
    margin-bottom: 14px;
    font-size: clamp(1.85rem, 8.4vw, 3rem);
    line-height: 0.94;
  }

  .spotify-feature p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.45;
  }

  .spotify-panel {
    min-height: 0;
    padding: 22px;
  }

  .spotify-panel-top {
    align-items: flex-start;
  }

  .spotify-panel-top strong {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .spotify-mark {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .spotify-track-list {
    margin: 22px 0;
  }

  .spotify-track-list a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 14px;
  }

  .spotify-track-list em {
    display: none;
  }

  .spotify-panel-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .spotify-panel-actions a {
    width: 100%;
    min-width: 0;
  }

  .spotify-eq {
    align-self: flex-start;
  }

  .visual-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .visual-tile.tall,
  .visual-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .tour-row {
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: start;
    column-gap: 14px;
    row-gap: 7px;
    padding: 20px 0;
  }

  .tour-row time {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: 4px;
  }

  .tour-row > div {
    grid-column: 2;
    grid-row: 1;
  }

  .tour-row a {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    width: auto;
    min-height: 36px;
    display: inline-grid;
    place-items: center;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .release-grid,
  .about,
  .signup {
    grid-template-columns: 1fr;
  }

  .release-grid {
    overflow: visible;
    gap: 8px;
    background: transparent;
    border: 0;
  }

  .release-card {
    min-height: 0;
    padding: 18px 18px 16px;
    border: 1px solid var(--line);
  }

  html[lang="tr"] .release-card {
    min-height: 0;
  }

  .release-card::after {
    right: -28px;
    bottom: -32px;
    width: 118px;
    height: 118px;
    opacity: 0.12;
  }

  .release-card h3 {
    max-width: 13ch;
    margin: 14px 0 9px;
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    line-height: 0.98;
  }

  html[lang="tr"] .release-card h3 {
    margin-bottom: 0;
  }

  .release-card p {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .release-card .spotify-link {
    width: 100%;
    min-height: 38px;
    margin-top: 0;
    font-size: 0.7rem;
  }

  .spotify-artist-link {
    width: 100%;
    min-height: 42px;
  }

  .track-meta {
    gap: 10px;
    font-size: 0.62rem;
  }

  .waveform {
    height: 26px;
    margin: 14px 0 14px;
  }

  html[lang="tr"] .release-card .waveform {
    margin-top: 12px;
  }

  .waveform i {
    width: 4px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .spotify-feature {
    gap: 10px;
  }

  .spotify-feature > div {
    padding: 20px;
  }

  .spotify-panel {
    padding: 18px;
  }

  .spotify-panel-top {
    gap: 12px;
  }

  .spotify-panel-top strong {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

  .spotify-track-list a {
    padding: 12px;
  }
}

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

  .led-backdrop {
    display: none;
  }
}
