/* ============================================================
   Above the Noise — executive dark / gold, matched to cover art
   ============================================================ */

:root {
  --ink: #0a0a0c;
  --ink-2: #111114;
  --ink-3: #18181c;
  --cream: #ece5d3;
  --cream-dim: rgba(236, 229, 211, 0.62);
  --cream-faint: rgba(236, 229, 211, 0.32);
  --gold: #c9a44a;
  --gold-bright: #e8cd84;
  --gold-dim: rgba(201, 164, 74, 0.35);
  --line: rgba(236, 229, 211, 0.1);
  --font-display: "Jost", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

.mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }

a { color: inherit; }

/* ---------------- noise canvas + custom cursor ---------------- */

#noise-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#cursor-dot, #cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  transform: translate(-50%, -50%);
}
#cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-dim);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
}
body.cursor-active #cursor-dot,
body.cursor-active #cursor-ring { opacity: 1; }
body.cursor-hot #cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--gold);
}
@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
}

/* ---------------------------- nav ---------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0));
  transition: background 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav__brand-mark {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-dim);
}
.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__brand-text i {
  font-style: normal;
  color: var(--gold);
  margin: 0 0.18em;
  text-transform: lowercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
}
.nav__links a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold-bright); }

@media (max-width: 720px) {
  .nav__links a:not(.btn) { display: none; }
}

/* --------------------------- buttons -------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.8rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.74rem; }
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.btn--gold:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 32px rgba(201, 164, 74, 0.35);
}
.btn--outline {
  border-color: var(--gold-dim);
  color: var(--cream);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: inset 0 0 24px rgba(201, 164, 74, 0.08);
}

/* ---------------------------- hero ---------------------------- */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
}

.hero__kicker {
  color: var(--gold);
  margin-bottom: 2.2rem;
  min-height: 1.2em;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.12em;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  margin-bottom: 2.4rem;
}
.hero__line--the {
  font-size: 0.32em;
  letter-spacing: 0.65em;
  color: var(--gold);
  margin: 0.5em 0;
}
.hero__line--noise span {
  display: inline-block;
  transition: transform 0.18s, color 0.4s;
}
.hero__line--noise:hover span {
  transform: none !important;
  color: var(--gold-bright);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  margin-bottom: 2.8rem;
  max-width: 34rem;
}
.hero__sub em { color: var(--gold-bright); font-style: italic; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
  list-style: none;
  color: var(--cream-faint);
}
.hero__meta li { display: flex; align-items: center; }
.hero__meta li + li::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-dim);
  margin: 0 1.1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream-faint);
}
.hero__scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* --------------------------- ticker --------------------------- */

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  background: rgba(17, 17, 20, 0.6);
}
.ticker__track {
  display: inline-flex;
  white-space: nowrap;
  color: var(--cream-faint);
  animation: tickerScroll 36s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track b { color: var(--gold); font-weight: 400; margin: 0 1.4rem; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------------- sections -------------------------- */

.section {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1.25rem, 4vw, 3rem);
}

.section__head { margin-bottom: 3.2rem; }
.section__index {
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}
.section__head h2, .about__copy h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.section__lede { color: var(--cream-dim); max-width: 36rem; }

/* reveal-on-scroll — only hidden when JS is running (html.js), so crawlers
   and no-JS visitors always get visible content */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
html.js [data-reveal].revealed { opacity: 1; transform: none; }

/* -------------------------- episodes -------------------------- */

.episodes { display: flex; flex-direction: column; gap: 1.4rem; }

.episodes__loading {
  color: var(--cream-faint);
  padding: 3rem 0;
  text-align: center;
}
.ellipsis::after {
  content: "";
  animation: dots 1.4s steps(4) infinite;
}
@keyframes dots {
  0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; }
}

.ep-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 1.6rem;
  align-items: center;
  padding: 1.6rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
  will-change: transform;
}
.ep-card:hover { border-color: var(--gold-dim); background: var(--ink-3); }

.ep-card--latest { border-color: var(--gold-dim); }
.ep-card--latest::before {
  content: "Latest";
  position: absolute;
  top: 0; right: 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.3rem 0.9rem;
  border-bottom-left-radius: 4px;
}

.ep-card__art {
  width: 132px; height: 132px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--line);
}

.ep-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  color: var(--cream-faint);
  margin-bottom: 0.55rem;
}
.ep-card__meta .ep-num { color: var(--gold); }

.ep-card__title {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 0.55rem;
}
.ep-card__title a { text-decoration: none; }
.ep-card__title a:hover { color: var(--gold-bright); }
.ep-card__excerpt { color: var(--cream-dim); font-size: 0.92rem; max-width: 46rem; }

.ep-card__notes { margin-top: 0.9rem; }
.ep-card__notes summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  list-style: none;
  width: fit-content;
}
.ep-card__notes summary::-webkit-details-marker { display: none; }
.ep-card__notes summary::after { content: " +"; }
.ep-card__notes[open] summary::after { content: " −"; }
.ep-card__notes-body {
  margin-top: 0.8rem;
  color: var(--cream-dim);
  font-size: 0.9rem;
  max-width: 46rem;
}
.ep-card__notes-body p { margin-bottom: 0.7em; }
.ep-card__notes-body a { color: var(--gold-bright); }

.ep-card__play {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  will-change: transform;
  flex-shrink: 0;
}
.ep-card__play:hover, .ep-card__play.playing {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 36px rgba(201, 164, 74, 0.4);
}

@media (max-width: 680px) {
  .ep-card { grid-template-columns: 84px 1fr; }
  .ep-card__art { width: 84px; height: 84px; align-self: start; }
  .ep-card__play {
    grid-column: 1 / -1;
    justify-self: start;
    width: 52px; height: 52px;
  }
}

/* -------------------------- segments -------------------------- */

.segments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

.segment-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.35s;
}
.segment-card:hover { border-color: var(--gold-dim); }
.segment-card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 1.1rem 0 0.7rem;
}
.segment-card p { color: var(--cream-dim); font-size: 0.92rem; }
.segment-card__num { color: var(--gold); }

.segment-card--signature {
  background: linear-gradient(145deg, rgba(201, 164, 74, 0.1), var(--ink-2) 55%);
  border-color: var(--gold-dim);
}
.segment-card__badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  color: var(--ink);
  background: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-size: 0.6rem;
}

/* cursor-follow glare on tilt cards */
.segment-card__glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(232, 205, 132, 0.12), transparent 65%);
  transition: opacity 0.35s;
}
[data-tilt]:hover .segment-card__glare { opacity: 1; }

/* --------------------------- playbook ------------------------- */

.playbook__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.playbook__features { list-style: none; }
.playbook__features li {
  display: flex;
  gap: 1.3rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.playbook__features li:first-child { border-top: 1px solid var(--line); }
.playbook__num {
  color: var(--gold);
  min-width: 2.2rem;
  padding-top: 0.3rem;
  font-size: 0.8rem;
}
.playbook__features h3 { font-size: 1.18rem; margin-bottom: 0.3rem; }
.playbook__features p { color: var(--cream-dim); font-size: 0.92rem; max-width: 36rem; }
.playbook__cta {
  position: relative;
  padding: 2.2rem 1.9rem;
  background: var(--ink-2);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.35s;
}
.playbook__cta:hover { border-color: var(--gold); }
.playbook__cta-kicker { color: var(--gold); margin-bottom: 1.1rem; }
.playbook__cta-pitch {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.5;
  margin-bottom: 1.3rem;
}
.playbook__cta-points { list-style: none; margin-bottom: 1.7rem; }
.playbook__cta-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.playbook__cta-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.2rem;
}
.playbook__cta .btn { width: 100%; justify-content: center; }
.playbook__cta-note { color: var(--cream-faint); margin-top: 1rem; text-align: center; }
@media (max-width: 840px) {
  .playbook__grid { grid-template-columns: 1fr; }
}

/* ---------------------------- about --------------------------- */

.about {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__art {
  position: relative;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.about__art img { display: block; width: 100%; height: auto; }
.about__copy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin: 1.6rem 0 1.8rem;
  line-height: 1.5;
}
.about__copy p { color: var(--cream-dim); margin-bottom: 1.1rem; max-width: 36rem; }
.about__copy strong { color: var(--cream); }
.about__copy .btn { margin-top: 0.8rem; }

@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; }
  .about__art { max-width: 320px; }
}

/* -------------------------- subscribe ------------------------- */

.subscribe { text-align: center; }
.subscribe .section__head { text-align: center; }
.subscribe .section__lede { margin: 0 auto; }

.subscribe__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.6rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  will-change: transform;
}
.btn-platform svg { flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.btn-platform:hover svg { transform: scale(1.12); }

.btn-platform__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--cream);
}
.btn-platform__text small {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.btn-platform--apple { color: #b78cf0; }
.btn-platform--apple:hover {
  border-color: rgba(183, 140, 240, 0.55);
  box-shadow: 0 0 32px rgba(183, 140, 240, 0.18);
  background: var(--ink-3);
}
.btn-platform--spotify { color: #1db954; }
.btn-platform--spotify:hover {
  border-color: rgba(29, 185, 84, 0.55);
  box-shadow: 0 0 32px rgba(29, 185, 84, 0.18);
  background: var(--ink-3);
}

.subscribe__rss {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem 0.8rem 1.4rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  max-width: 100%;
}
.subscribe__rss-label { color: var(--gold); }
.subscribe__rss code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cream-dim);
  overflow-wrap: anywhere;
}

/* --------------------------- footer --------------------------- */

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 2.4rem clamp(1.25rem, 4vw, 3rem) 7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  color: var(--cream-faint);
  font-size: 0.85rem;
}
.footer__note { font-size: 0.62rem; }

/* ------------------------- player dock ------------------------ */

.player[hidden] { display: none; }

.player {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(860px, calc(100vw - 1.6rem));
  padding: 0.8rem 1rem;
  background: rgba(17, 17, 20, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  animation: playerIn 0.45s var(--ease-out);
}
@keyframes playerIn {
  from { transform: translate(-50%, 120%); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

.player__art {
  width: 56px; height: 56px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.player__main { flex: 1; min-width: 0; }

.player__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.45rem;
}
.player__title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player__viz {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  flex-shrink: 0;
  margin-left: auto;
}
.player__viz i {
  width: 2.5px;
  height: 3px;
  background: var(--gold);
  border-radius: 1px;
  transition: height 0.1s linear;
}

.player__controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.player__btn {
  background: none;
  border: none;
  color: var(--cream-dim);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0.25rem;
  transition: color 0.25s;
}
.player__btn:hover { color: var(--gold-bright); }
.player__btn--play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  flex-shrink: 0;
}
.player__btn--play:hover { background: var(--gold-bright); color: var(--ink); }

.player__time {
  font-size: 0.66rem;
  color: var(--cream-faint);
  flex-shrink: 0;
  min-width: 3.2em;
  text-align: center;
}

.player__scrub {
  position: relative;
  flex: 1;
  height: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.player__scrub::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
}
.player__scrub-fill {
  position: absolute;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  pointer-events: none;
}
.player__scrub-knob {
  position: absolute;
  left: 0%;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold-bright);
  transform: translateX(-50%) scale(0);
  transition: transform 0.2s;
  pointer-events: none;
}
.player__scrub:hover .player__scrub-knob,
.player__scrub:focus-visible .player__scrub-knob { transform: translateX(-50%) scale(1); }

.player__rate {
  font-size: 0.66rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.25rem 0.45rem;
  min-width: 3.4em;
}

@media (max-width: 600px) {
  .player { flex-wrap: wrap; }
  .player__viz { display: none; }
  .player__time { min-width: 2.6em; }
}

/* --------------------- reduced motion -------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  .hero__scroll-line { animation: none; }
  #cursor-dot, #cursor-ring { display: none; }
  .player { animation: none; }
}
