:root {
  --ink: #0D0B09;
  --smoke: #1A1613;
  --bone: #EDE6DA;
  --ash: #8A8177;
  --brass: #B98F4E;
  --header-height: 72px;
  --container: 1200px;
  --section-padding: 80px;
  --border: rgba(237, 230, 218, 0.12);
  --brass-soft: rgba(185, 143, 78, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--ink);
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 52% 0%, rgba(185, 143, 78, 0.12), transparent 46rem),
    radial-gradient(ellipse at 12% 34%, rgba(237, 230, 218, 0.055), transparent 34rem),
    linear-gradient(180deg, var(--ink) 0%, var(--smoke) 48%, var(--ink) 100%);
  color: var(--bone);
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 68%, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  opacity: 0.16;
  mix-blend-mode: screen;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  min-height: 44px;
  padding: 10px 16px;
  transform: translateY(-130%);
  border: 1px solid var(--brass);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.section {
  position: relative;
  z-index: 1;
  padding-block: var(--section-padding);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(237, 230, 218, 0.08);
  background: rgba(13, 11, 9, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wordmark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--bone);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(237, 230, 218, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--bone);
}

.nav-pill,
.button {
  border-radius: 999px;
}

.nav-pill {
  min-width: 104px;
  justify-content: center;
  padding-inline: 18px;
  background: var(--brass);
  color: var(--ink);
}

.score-line {
  position: fixed;
  top: 0;
  left: max(20px, calc((100vw - var(--container)) / 2 - 76px));
  z-index: 0;
  display: none;
  width: 80px;
  height: 100vh;
  pointer-events: none;
}

.score-line path {
  fill: none;
  stroke: rgba(185, 143, 78, 0.12);
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 108px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: 72px 64px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 48% 22%, rgba(185, 143, 78, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(13, 11, 9, 0.24), rgba(13, 11, 9, 0.92));
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(13, 11, 9, 0.9), rgba(13, 11, 9, 0.2) 42%, rgba(13, 11, 9, 0.72));
}

.hero-visual {
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transform-origin: center;
  opacity: 0.92;
  animation: hero-settle 1600ms var(--ease) 120ms forwards;
}

.hero-content {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--bone);
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 9vw, 7rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
  color: var(--bone);
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-subline,
.section-heading p,
.artist-copy p,
.manifesto-copy p {
  max-width: 62ch;
}

.hero-subline {
  margin-bottom: 34px;
  color: rgba(237, 230, 218, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.listen-row,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brass);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(237, 230, 218, 0.22);
  background: rgba(13, 11, 9, 0.24);
  color: var(--bone);
}

.button-secondary:hover {
  border-color: rgba(185, 143, 78, 0.64);
}

.manifesto-copy {
  color: rgba(237, 230, 218, 0.84);
}

.pull-line {
  margin: 42px 0 0;
  color: var(--bone);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
}

.credits-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.top-credits {
  padding-block: calc(var(--header-height) + 4px) 8px;
  background: rgba(13, 11, 9, 0.88);
}

.top-credits .eyebrow {
  margin-bottom: 4px;
}

.people-credits {
  padding-block: 64px 24px;
}

.inquire {
  padding-block: 88px 96px;
  background:
    radial-gradient(ellipse at 84% 12%, rgba(185, 143, 78, 0.09), transparent 28rem),
    rgba(237, 230, 218, 0.018);
}

.stage-marquee {
  width: 100%;
  margin-block: 18px 16px;
  overflow: hidden;
}

.stage-track {
  display: flex;
  width: max-content;
  gap: 34px;
}

.stage-set {
  display: flex;
  gap: 34px;
  align-items: center;
}

.stage-set span {
  white-space: nowrap;
  color: rgba(237, 230, 218, 0.9);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.45rem, 3.25vw, 3.8rem);
  line-height: 1;
}

.top-credits .stage-marquee {
  margin-block: 0;
}

.top-credits .stage-set span {
  color: rgba(237, 230, 218, 0.84);
  font-size: clamp(0.92rem, 1.42vw, 1.62rem);
}

.stage-set span::after {
  margin-left: 34px;
  color: var(--brass);
  content: "·";
  opacity: 0.56;
}

.people-heading {
  margin-top: 44px;
}

.people-marquee {
  margin-top: 22px;
}

.people-marquee .stage-set span {
  color: rgba(237, 230, 218, 0.78);
  font-size: clamp(1.35rem, 3vw, 3rem);
}

.credit-line,
.limited-line,
.email-line,
.form-actions p {
  color: var(--ash);
}

.video-embed,
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(237, 230, 218, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at center, rgba(185, 143, 78, 0.15), transparent 36%),
    linear-gradient(135deg, rgba(237, 230, 218, 0.055), transparent 34%),
    var(--smoke);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder::before,
.video-placeholder::after {
  position: absolute;
  content: "";
}

.video-placeholder::before {
  inset: 22px;
  border: 1px solid rgba(237, 230, 218, 0.08);
}

.video-placeholder::after {
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(13, 11, 9, 0.72));
}

.play-mark {
  position: relative;
  z-index: 1;
  width: clamp(72px, 12vw, 104px);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 143, 78, 0.58);
  border-radius: 50%;
  background: rgba(185, 143, 78, 0.12);
  box-shadow: 0 0 44px rgba(185, 143, 78, 0.14);
}

.play-mark::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  transform: translate(-38%, -50%);
  border-block: 14px solid transparent;
  border-left: 22px solid var(--brass);
  content: "";
}

.listen-row {
  align-items: stretch;
  justify-content: space-between;
  margin-top: 22px;
}

.music-card {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  flex: 1 1 220px;
  width: min(100%, 460px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(237, 230, 218, 0.045);
  transition: border-color 180ms ease, transform 180ms ease;
}

.music-card:hover {
  border-color: rgba(185, 143, 78, 0.52);
  transform: translateY(-1px);
}

.music-kicker {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 700;
}

.music-title {
  color: var(--bone);
  font-weight: 700;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brass);
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 44px;
}

.experience-card,
.package-card,
.process-step,
fieldset {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(237, 230, 218, 0.035);
}

.experience-card,
.package-card {
  min-height: 100%;
  padding: 24px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.experience-card:hover,
.package-card:hover {
  border-color: rgba(185, 143, 78, 0.48);
  box-shadow: 0 0 38px rgba(185, 143, 78, 0.08);
  transform: translateY(-2px);
}

.experience-card p,
.package-card p,
.package-card li,
.process-step p {
  color: rgba(237, 230, 218, 0.76);
}

.artist-layout {
  display: grid;
  gap: 40px;
}

.portrait-placeholder {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--smoke);
}

.portrait-placeholder svg {
  width: 100%;
  height: 100%;
}

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

.package-card {
  display: flex;
  flex-direction: column;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 1.1rem;
}

.package-card li::marker {
  color: var(--brass);
}

.package-essence {
  margin-bottom: 0;
  color: var(--bone);
  font-weight: 700;
}

.package-price {
  margin-top: auto;
  color: var(--bone);
  font-weight: 700;
}

.credit-note {
  border-left: 1px solid rgba(185, 143, 78, 0.42);
  padding-left: 18px;
  color: rgba(237, 230, 218, 0.78);
}

.studio-intro {
  max-width: 68ch;
  color: rgba(237, 230, 218, 0.76);
}

.studio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.studio-list span {
  border: 1px solid rgba(237, 230, 218, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(237, 230, 218, 0.82);
  font-size: 0.9rem;
}

.epk-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 44px);
  background: rgba(237, 230, 218, 0.035);
}

.epk-panel h2 {
  margin-bottom: 10px;
}

.epk-panel p {
  margin-bottom: 0;
  color: rgba(237, 230, 218, 0.76);
}

.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.limited-line {
  margin: 30px 0 0;
}

.testimonial {
  padding-block: clamp(72px, 11vw, 132px);
}

.testimonial blockquote {
  margin: 0;
  border-top: 1px solid rgba(185, 143, 78, 0.46);
  border-bottom: 1px solid rgba(185, 143, 78, 0.28);
  padding: clamp(34px, 6vw, 68px) 0;
  text-align: center;
}

.testimonial blockquote p {
  margin: 0;
  color: var(--bone);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2rem, 4.6vw, 3.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.testimonial blockquote footer {
  margin-top: 24px;
  color: var(--brass);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.process-step {
  padding: 24px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 700;
}

.process-step h2 {
  margin-bottom: 14px;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.form-shell {
  margin-top: 44px;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.netlify-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  pointer-events: none;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 24px;
}

legend {
  padding: 0 10px;
  color: var(--bone);
  font-weight: 700;
}

legend span {
  color: var(--brass);
}

.field-grid {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  color: rgba(237, 230, 218, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
}

.field small {
  color: var(--ash);
  font-size: 0.78rem;
  font-weight: 500;
}

input,
select,
textarea {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(237, 230, 218, 0.16);
  border-radius: 6px;
  background: rgba(13, 11, 9, 0.68);
  color: var(--bone);
  font-size: 16px;
  line-height: 1.4;
}

input,
select {
  padding: 0 14px;
}

textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(138, 129, 119, 0.95);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brass) 50%),
    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.chip span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(237, 230, 218, 0.14);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(237, 230, 218, 0.78);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.chip input:checked + span {
  border-color: rgba(185, 143, 78, 0.7);
  background: rgba(185, 143, 78, 0.14);
  color: var(--bone);
}

.chip input:focus-visible + span {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.form-actions {
  margin-top: 10px;
}

.form-actions p {
  margin-bottom: 0;
}

.form-error {
  width: 100%;
  color: #f0a48f;
}

.contact-lines {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}

.contact-line {
  margin-bottom: 0;
  color: var(--ash);
}

.contact-line a,
.footer a,
.footer-links a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(185, 143, 78, 0.6);
  text-underline-offset: 4px;
}

.success-message {
  border: 1px solid rgba(185, 143, 78, 0.42);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 64px);
  background: rgba(237, 230, 218, 0.045);
}

.success-message h2 {
  margin-bottom: 16px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(237, 230, 218, 0.1);
  padding-block: 34px;
  color: rgba(237, 230, 218, 0.78);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom {
  margin-top: 28px;
  color: var(--ash);
}

.mobile-inquiry-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

@keyframes hero-settle {
  to {
    transform: scale(1);
  }
}

@keyframes stage-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 17px));
  }
}

@media (min-width: 700px) {
  :root {
    --section-padding: 140px;
  }

  .six-grid,
  .package-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 900px) {
  .artist-layout {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
    gap: clamp(54px, 7vw, 104px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1.35fr 1fr;
    align-items: start;
  }

  .epk-panel {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .score-line {
    display: block;
  }

  .stage-track {
    animation: stage-scroll 52s linear infinite;
  }

  .people-track {
    animation-duration: 58s;
    animation-direction: reverse;
  }

  .stage-marquee:hover .stage-track {
    animation-play-state: paused;
  }
}

@media (min-width: 1080px) {
  .six-grid,
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .nav-links a:not(.nav-pill) {
    display: none;
  }

  .nav-pill {
    min-width: auto;
    padding-inline: 16px;
  }

  .hero {
    min-height: 76svh;
    padding-block: 52px 46px;
  }

  .hero-frame::after {
    background: linear-gradient(90deg, rgba(13, 11, 9, 0.78), rgba(13, 11, 9, 0.36));
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .stage-track {
    width: auto;
  }

  .stage-set {
    flex-wrap: wrap;
    gap: 12px;
    padding-inline: 16px;
  }

  .stage-set[aria-hidden="true"] {
    display: none;
  }

  .stage-set span {
    white-space: normal;
    border: 1px solid rgba(237, 230, 218, 0.1);
    border-radius: 999px;
    padding: 8px 12px;
    font-family: "Archivo", system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .stage-set span::after {
    display: none;
  }

  .portrait-placeholder {
    min-height: 440px;
  }

  .inquire {
    padding-block: 76px 80px;
  }

  .top-credits {
    padding-block: calc(var(--header-height) + 4px) 7px;
  }

  .top-credits .eyebrow {
    margin-bottom: 4px;
  }

  .top-credits .stage-track {
    width: max-content;
  }

  .top-credits .stage-set {
    flex-wrap: nowrap;
    gap: 18px;
    padding-inline: 0;
  }

  .top-credits .stage-set[aria-hidden="true"] {
    display: flex;
  }

  .top-credits .stage-set span {
    white-space: nowrap;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: rgba(237, 230, 218, 0.86);
    font-family: "Bodoni Moda", Georgia, serif;
    font-size: 0.94rem;
    font-weight: 600;
  }

  .top-credits .stage-set span::after {
    display: inline;
    margin-left: 18px;
  }

  .people-credits {
    padding-block: 48px 10px;
  }

  .people-heading {
    margin-top: 30px;
  }

  fieldset {
    padding: 20px 16px;
  }

  .mobile-inquiry-cta {
    position: fixed;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 16px;
    z-index: 60;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(calc(100% + 28px));
    border-radius: 999px;
    background: var(--brass);
    color: var(--ink);
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .mobile-inquiry-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .stage-track {
    width: auto;
    flex-wrap: wrap;
    animation: none;
  }

  .stage-set {
    flex-wrap: wrap;
  }

  .stage-set[aria-hidden="true"] {
    display: none;
  }

  .score-line path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}
