/*
  NEWLEVEL — afternocturne, crossed with the static skin.
  Keeps afternocturne's layout, dial, broadcast-frame photos and On Air cue,
  but: streaming logos show in their original brand colours on light chips;
  the hero title uses static's Unbounded + magenta/cyan cathodic offset; the
  nav and footer wordmarks are Outfit; static's blinking-dot "Scroll" indicator
  and its blurred We-Run-Blindfolded hero background are used.
*/

/* ─── Custom Properties ─── */
:root {
  --night:    #0b0b10;
  --panel:    #12121a;
  --phosphor: #eae7e0;
  --mist:     #9b98a6;
  --signal:   #ff4d57;
  --brass:    #a29d96;   /* streaming-logo silhouettes — warm grey */
  --line:     #1f1f28;
  --display:  'Schibsted Grotesk', system-ui, sans-serif;
  --rajdhani: 'Rajdhani', system-ui, sans-serif;
  --sans:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono:    'Martian Mono', 'Courier New', monospace;
  --pad:  clamp(88px, 11vw, 150px);
  --side: clamp(22px, 5.5vw, 72px);
  --max:  1160px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 90px; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  position: relative;
  background: var(--night);
  color: var(--phosphor);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Tracking glitch — a single bright band that rolls down the screen at rare
   intervals. Kept from nocturne: the one thing on the page that moves. */
.crt-glitch {
  position: fixed;
  inset: auto 0 0 0;
  height: 3px;
  z-index: 9998;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 87, 0.5), rgba(234, 231, 224, 0.6), transparent);
  mix-blend-mode: screen;
  animation: tracking-roll 11s linear infinite;
}
@keyframes tracking-roll {
  0%   { top: -3px; opacity: 0; }
  2%   { opacity: 0.9; }
  6%   { opacity: 0; }
  6.01%{ top: 100%; }
  100% { top: 100%; opacity: 0; }
}

/* ─── Layout helpers ─── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side);
  position: relative;
}

.section { padding: var(--pad) 0; position: relative; }
.section-alt { background: var(--panel); }

.section-kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
}

/* Section titles in Figtree. */
.section-heading {
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: clamp(44px, 6vw, 80px);
  line-height: 1.05;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--side);
  background: transparent;   /* no band at the top — sits directly over the hero photo */
  border-bottom: 1px solid transparent;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
}
/* On scroll the band appears (like the static skin). */
.nav.is-scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(11, 11, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
/* Header wordmark: static's font + size, hidden on the hero and revealed with
   the band on scroll. */
.nav-brand {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav.is-scrolled .nav-brand { opacity: 1; }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);   /* near-white — legible directly over the photo */
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a:hover { color: #fff; }

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--phosphor);
  transition: 0.25s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--night);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--phosphor);
}

/* ─── The dial — tuner-style section indicator, desktop only ─── */
.dial {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dial a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 2px 0;
}
.dial-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--mist);
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.dial-tick {
  width: 18px;
  height: 1px;
  background: var(--mist);
  opacity: 0.55;
  transition: width 0.25s, background 0.25s, opacity 0.25s, box-shadow 0.25s;
}
.dial a:hover .dial-label,
.dial a:focus-visible .dial-label { opacity: 1; transform: translateX(0); }
.dial a.is-active .dial-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--phosphor);
}
.dial a.is-active .dial-tick {
  width: 30px;
  opacity: 1;
  background: var(--signal);
  box-shadow: 0 0 12px 1px rgba(255, 77, 87, 0.55);
}
@media (max-width: 1200px) {
  .dial { display: none; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--night);
}
.hero-bg { position: absolute; inset: 0; }
/* Hero background: a dark night photo. Lighter brightness than static's
   (which was tuned for the bright album artwork) so this low-key image reads
   through instead of crushing to black. */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.62) contrast(1.02);
  transform: scale(1.08);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--night) 96%);
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: var(--side);
  padding-bottom: clamp(72px, 11vw, 140px);
  max-width: 720px;
  animation: hero-rise 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* "On Air" cue — a slowly blinking red dot before the label. */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--phosphor);
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px 2px rgba(255, 77, 87, 0.7);
  animation: rec-pulse 2.4s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.15; }
}
/* Main title = the static skin's font (Unbounded) + double/cathodic
   magenta+cyan offset shadow. */
.hero-title {
  font-family: 'Unbounded', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 3px 0 #ff2f92, -3px 0 #29e2c9;   /* offset: magenta right, cyan left */
}
.hero-lede {
  font-family: 'JetBrains Mono', var(--mono);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--phosphor);
  opacity: 0.75;
  width: fit-content;      /* one line when it fits; wrap only when the viewport is too narrow */
  max-width: 100%;
  text-wrap: balance;      /* if it does wrap, split the two lines evenly */
  margin-bottom: 42px;
  /* Very light fade on the first character or two, in from the left edge. */
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, #000 8%);
          mask-image: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, #000 8%);
}
.hero-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--signal);
  color: #fff;
  border: 1px solid var(--signal);
  padding: 17px 40px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.hero-cta:hover {
  background: #d13a44;
  border-color: #d13a44;
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 77, 87, 0.35);
}

/* Scroll indicator borrowed from the static skin: a blinking red dot,
   "Scroll" label, and a 00:00:00 timecode, bottom-right. */
.hero-scroll {
  position: absolute;
  right: var(--side);
  bottom: 36px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: rec-blink 1.6s steps(1) infinite;
}
.hero-scroll span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}
.hero-scroll::after {
  content: '00:00:00';
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: var(--mist);
}
@keyframes rec-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.15; } }

/* ─── Broadcast-frame photo treatment ───
   Band photos (About / Press / Contact) use nocturne's exact values on the
   full-resolution originals — user-validated look, do not soften.
   Release artwork gets a much lighter touch. */
.about-photo,
.contact-photo,
.release-art,
.photo-frame {
  position: relative;
  overflow: hidden;
}
.about-photo img,
.contact-photo img,
.photo-frame img {
  filter: grayscale(0.35) brightness(0.8) contrast(1.1) saturate(1.05);
  transition: filter 0.5s;
}
.about-photo:hover img,
.contact-photo:hover img,
.photo-frame:hover img { filter: grayscale(0.15) brightness(0.9) contrast(1.08) saturate(1.1); }

.about-photo::before,
.contact-photo::before,
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* What nocturne's photos *visibly* rendered was only its global scanline
     bezel: 0.22 alpha at 0.4 layer-opacity ≈ 0.09, 3px period. (Its declared
     0.28 per-photo grating never composited — the filtered img is promoted to
     its own layer and the overlay blend falls through to the near-black
     section background.) This reproduces that faint texture directly. */
  background-image: repeating-linear-gradient(
    180deg,
    rgba(0,0,0,0.09) 0,
    rgba(0,0,0,0.09) 1px,
    transparent 2px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about-photo::after,
.contact-photo::after,
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 2px 0 rgba(255,69,80,0.22), inset -2px 0 rgba(120,200,220,0.18);
  pointer-events: none;
}

.release-art img {
  filter: grayscale(0.22) brightness(0.9) contrast(1.05) saturate(1.02);
  transition: filter 0.5s;
}
.release-art:hover img { filter: grayscale(0.05) brightness(0.97) contrast(1.03); }
.release-art::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(0,0,0,0.07) 0,
    rgba(0,0,0,0.07) 1px,
    transparent 2px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}
.release-art::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 2px 0 rgba(255,77,87,0.12), inset -2px 0 rgba(120,200,220,0.1);
  pointer-events: none;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--phosphor);
  margin-bottom: 22px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text em { font-style: italic; color: #fff; }

.about-photo img,
.contact-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ─── Placeholder (kept for parity with shared markup) ─── */
.placeholder {
  background: var(--panel);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--mist);
}

/* ─── Music ─── */
.release {
  display: grid;
  grid-template-columns: clamp(240px, 30vw, 360px) 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  padding-bottom: clamp(60px, 8vw, 100px);
  margin-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}
.release:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.release-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.release-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 14px;
}
/* Song (release) titles in Urbanist. */
.release-title {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.015em;
  color: #e9e9e9;
  line-height: 1.08;
  margin-bottom: 20px;
}
.release-desc {
  max-width: 52ch;
  margin-bottom: 34px;
}
.release-desc p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mist);
}

.streaming-grid {
  --lg: 26px;             /* base logo height inside the chips */
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.streaming-link {
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.streaming-link:hover { opacity: 1; }
/* Logos as flat Brushed-brass silhouettes via CSS mask (monochrome, like the
   grey originals). Change --brass once to reshade all seven. */
.slogo {
  height: 26px;
  background-color: var(--brass);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
}
/* Size tiers: the main stores read a touch larger, YouTube a touch smaller. */
.streaming-link.sl-lg .slogo     { height: var(--lg); }
.streaming-link.sl-apple .slogo  { height: calc(var(--lg) * 1.1); }
.streaming-link.sl-itunes .slogo { height: calc(var(--lg) * 1.2); }
.streaming-link.sl-sm .slogo     { height: 22px; }
.l-spotify    { aspect-ratio: 3.125; -webkit-mask-image: url(/logos/logo_spotify.svg);    mask-image: url(/logos/logo_spotify.svg); }
.l-applemusic { aspect-ratio: 3.125; -webkit-mask-image: url(/logos/logo_applemusic.svg); mask-image: url(/logos/logo_applemusic.svg); }
.l-deezer     { aspect-ratio: 3.125; -webkit-mask-image: url(/logos/logo_deezer.svg);     mask-image: url(/logos/logo_deezer.svg); }
.l-qobuz      { aspect-ratio: 3.125; -webkit-mask-image: url(/logos/logo_qobuz.svg);      mask-image: url(/logos/logo_qobuz.svg); }
.l-itunes     { aspect-ratio: 3.125; -webkit-mask-image: url(/logos/logo_itunes.svg);     mask-image: url(/logos/logo_itunes.svg); }
.l-youtube    { aspect-ratio: 4.479; -webkit-mask-image: url(/logos/logo_youtube.svg);    mask-image: url(/logos/logo_youtube.svg); }
.l-bandcamp   { aspect-ratio: 6.371; -webkit-mask-image: url(/logos/logo_bandcamp.svg);   mask-image: url(/logos/logo_bandcamp.svg); }

/* ─── Press ─── */
.press-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(44px, 7vw, 96px);
  margin-bottom: clamp(52px, 6vw, 84px);
}

.press-col-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 28px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.photo-frame img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
/* Single press photo: one frame, natural aspect (no square crop). */
.photo-single { grid-template-columns: 1fr; }
.photo-single .photo-frame img {
  aspect-ratio: auto;
  height: auto;
}

.article + .article { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.article-source {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 10px;
}
.article-quote {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--phosphor);
  line-height: 1.55;
  margin-bottom: 10px;
}
.article-date { font-family: var(--mono); font-size: 0.72rem; color: var(--mist); }

.press-kit-bar {
  border-top: 1px solid var(--line);
  padding-top: clamp(32px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.press-kit-bar p {
  font-size: 0.98rem;
  color: var(--mist);
}
.btn-outline {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--phosphor);
  border: 1px solid var(--mist);
  padding: 14px 32px;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--signal); color: #fff; }

/* ─── News ─── */
.news-list {
  border-top: 1px solid var(--line);
}
.news-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.news-date {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--mist);
  padding-top: 6px;
}
.news-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 10px;
}
.news-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}
.news-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mist);
  max-width: 60ch;
}

/* ─── Contact ─── */
.contact-section {
  background: var(--night);
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.members { display: flex; flex-direction: column; gap: 8px; }
.member-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--phosphor);
}
/* Contact email in Ubuntu Mono (computer/terminal, non-pixel). */
.contact-email {
  font-family: 'Ubuntu Mono', 'Courier New', monospace;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  letter-spacing: 0;
  color: #fff;
  overflow-wrap: anywhere;
  transition: color 0.25s;
}
.contact-email:hover { color: var(--signal); }
.contact-note {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--mist);
  max-width: 50ch;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--phosphor);
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--mist);
}
/* Photo credit — its own line below the brand/copyright row. */
.footer-credit {
  flex-basis: 100%;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--mist);
  opacity: 0.7;
}

/* ─── Responsive ─── */
@media (max-width: 880px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-photo { order: -1; }

  .release {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .release-art img { max-width: 320px; }

  .press-layout { grid-template-columns: 1fr; gap: 52px; }

  .news-item { grid-template-columns: 88px 1fr; gap: 18px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem, 14vw, 4rem); }
  .hero-cta { display: block; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .crt-glitch, .hero-body, .hero-kicker::before, .hero-scroll::before { animation: none; }
  .dial-label, .dial-tick, .hero-cta, .streaming-link,
  .about-photo img, .contact-photo img, .release-art img, .photo-frame img { transition: none; }
}
