:root {
  --ink: #090a0c;
  --ink-soft: #16191e;
  --porcelain: #f3f1ed;
  --paper: #fbfaf7;
  --silver: #a9afb7;
  --blue: #3264ff;
  --line: rgba(17, 20, 24, 0.15);
  --content: min(78rem, calc(100vw - 3rem));
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color: white;
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10001;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: white;
  transform: translateY(-160%);
}

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
  padding: 0 2.5rem;
  color: white;
  mix-blend-mode: difference;
}

.site-nav .wordmark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: 650 0.7rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-trigger__icon {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 0.72rem;
}

.menu-trigger__icon i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-trigger__icon i:first-child { top: 0.15rem; }
.menu-trigger__icon i:last-child { bottom: 0.15rem; width: 72%; }

.menu-trigger:hover .menu-trigger__icon i:first-child { transform: translateX(0.18rem); }
.menu-trigger:hover .menu-trigger__icon i:last-child { transform: translateX(-0.18rem); }

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.wordmark-mark {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-text-link {
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.concept-label {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.motion-toggle {
  padding: 0.55rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: 600 0.65rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.mega-menu {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(30rem, 42vw) 1fr;
  color: #12151a;
  background: #f6f7f8;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1.2rem);
  transition:
    opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 480ms;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.mega-menu__rail {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4.5rem) clamp(2rem, 5.5vw, 7rem);
  border-right: 1px solid rgba(17, 20, 24, 0.08);
  background: #fff;
}

.mega-menu__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu__kicker,
.mega-menu__feature-label {
  color: #285dff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-menu__close {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(9, 10, 12, 0.18);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mega-menu__close i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1px;
  background: #111;
}

.mega-menu__close i:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.mega-menu__close i:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.mega-menu__categories {
  display: flex;
  margin-top: clamp(4rem, 9vh, 8rem);
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.2rem, 2.3vh, 2.1rem);
}

.mega-menu__categories button {
  position: relative;
  padding: 0;
  border: 0;
  color: #1c1e22;
  background: transparent;
  font: 650 clamp(1.45rem, 2vw, 2rem)/1.1 var(--sans);
  letter-spacing: -0.035em;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, transform 220ms ease;
}

.mega-menu__categories button:hover {
  color: #285dff;
  transform: translateX(0.35rem);
}

.mega-menu__categories button.is-active {
  color: #285dff;
}

.mega-menu__categories button.is-active::before {
  content: "";
  position: absolute;
  left: -1.3rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.mega-menu__shortcuts {
  display: flex;
  margin-top: clamp(3rem, 7vh, 6rem);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.mega-menu__shortcuts a,
.mega-menu__location {
  color: #535861;
  font-size: 0.82rem;
  text-decoration: none;
}

.mega-menu__shortcuts a:hover { color: #285dff; }

.mega-menu__location {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
}

.mega-menu__brand {
  display: flex;
  align-items: center;
  align-self: center;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 2rem;
  color: #111;
  text-decoration: none;
}

.mega-menu__brand span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.75rem;
}

.mega-menu__brand b {
  color: #285dff;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}

.mega-menu__feature {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding: clamp(6rem, 10vh, 10rem) clamp(2rem, 4vw, 5rem) clamp(2rem, 5vh, 4rem);
}

.mega-menu__feature-label {
  margin: 0 0 1.4rem;
}

.mega-menu__cards {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.mega-menu-card {
  position: relative;
  min-height: 15rem;
  overflow: hidden;
  border-radius: 0.55rem;
  color: white;
  background: #15202c;
  text-decoration: none;
}

.mega-menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mega-menu-card:hover img,
.mega-menu-card:focus-visible img {
  transform: scale(1.045);
}

.mega-menu-card span {
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.42rem;
  background: rgba(8, 13, 20, 0.34);
  backdrop-filter: blur(16px) saturate(120%);
  font-size: 0.83rem;
  font-weight: 650;
  text-align: center;
}

.cover-film {
  position: relative;
  height: 100svh;
  min-height: 42rem;
  overflow: hidden;
  background: #94a8bd;
}

.cover-film__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.cover-film__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 13, 0.28), transparent 30%, rgba(4, 8, 13, 0.42)),
    linear-gradient(90deg, rgba(4, 8, 13, 0.18), transparent 46%);
}

.cover-film__copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(80rem, calc(100vw - 3rem));
  text-align: center;
  text-shadow: 0 0.2rem 2rem rgba(7, 14, 23, 0.22);
  transform: translate(-50%, -48%);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cover-film--title-hidden .cover-film__copy {
  opacity: 0 !important;
  transform: translate(-50%, -56%) !important;
}

.cover-film--title-hidden .cover-film__scroll {
  opacity: 0;
}

.cover-film__copy h1 {
  margin: 0;
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 600;
  line-height: 0.76;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.cover-film__copy h1 em {
  font-family: var(--serif);
  font-size: 0.86em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

.cover-film__copy > p:last-child {
  margin: 2rem 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cover-film__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.65rem;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cover-film__scroll i {
  display: block;
  width: 1px;
  height: 2.6rem;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: top;
  animation: pulse-line 1.8s ease-in-out infinite;
}

.cover-film__interface {
  position: absolute;
  z-index: 3;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  pointer-events: none;
}

.film-chapter {
  display: grid;
  min-width: min(28rem, 62vw);
  grid-template-columns: 4.5rem 1fr;
  column-gap: 1rem;
  text-shadow: 0 0.2rem 1.5rem rgba(5, 10, 17, 0.45);
}

.film-chapter__index {
  grid-row: 1 / 3;
  padding-top: 0.32rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.film-chapter p {
  margin: 0;
}

.film-chapter__title {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.film-chapter__line {
  margin-top: 0.2rem !important;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif);
  font-size: 1rem;
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: white;
  background: rgba(4, 8, 13, 0.2);
  backdrop-filter: blur(12px);
  font: 650 0.63rem/1 var(--sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  pointer-events: auto;
  cursor: pointer;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.16);
}

.sound-toggle span {
  font-size: 1.05rem;
  line-height: 0;
}

.film-progress {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.17);
}

.film-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  transform: scaleX(var(--film-progress, 0));
  transform-origin: left;
}

.scrolly-hero {
  position: relative;
  height: 100vh;
  background: #9bafc1;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-sequence,
.hero-sequence-fallback,
.hero-orbit-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-sequence {
  z-index: 1;
  will-change: transform;
}

.hero-sequence-fallback,
.hero-orbit-fallback {
  display: none;
}

.hero-wash {
  z-index: 2;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.54), transparent 38%, transparent 62%, rgba(3, 9, 16, 0.48)),
    linear-gradient(180deg, rgba(3, 9, 16, 0.28), transparent 30%, rgba(3, 9, 16, 0.52));
  pointer-events: none;
}

.hero-grain {
  z-index: 2;
  position: absolute;
  inset: 0;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(25% - 1px),
    rgba(255, 255, 255, 0.18) 25%
  );
}

.hero-copy-layer {
  position: absolute;
  z-index: 3;
}

.hero-intro {
  left: 50%;
  top: 50%;
  width: min(74rem, calc(100vw - 4rem));
  text-align: center;
  transform: translate(-50%, -48%);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #555d68;
}

.hero-intro h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(5.6rem, 12.5vw, 13rem);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero-intro h1 em {
  display: block;
  font-family: var(--serif);
  font-size: 0.83em;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.intro-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-beat {
  width: min(42rem, calc(100vw - 3rem));
  padding: 1.6rem;
  opacity: 0;
}

.story-beat h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 580;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.story-beat h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.story-beat > p:last-child {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

.beat-index {
  margin: 0 0 1.15rem;
  color: #a8baff;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-beat--one,
.story-beat--three {
  left: 6vw;
  top: 46%;
  transform: translateY(-44%);
}

.story-beat--two,
.story-beat--four {
  right: 6vw;
  top: 46%;
  transform: translateY(-44%);
}

.scroll-invitation {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-invitation i {
  display: block;
  width: 1px;
  height: 2.2rem;
  background: rgba(255, 255, 255, 0.6);
  transform-origin: top;
  animation: pulse-line 1.8s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { transform: scaleY(0.35); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.story-progress {
  position: absolute;
  z-index: 4;
  left: 2.5rem;
  bottom: 2.5rem;
  width: 10rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.story-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
}

.collection-story {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #d9c7a5;
}

.collection-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.collection-stage__media,
.collection-model,
.collection-model img,
.collection-stage__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.collection-model {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  will-change: opacity, transform;
}

.collection-model.is-active { opacity: 1; }

.collection-model img {
  max-width: none;
  object-fit: cover;
}

.collection-stage__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 0.7), transparent 45%),
    linear-gradient(180deg, rgba(5, 9, 15, 0.2), transparent 38%, rgba(5, 9, 15, 0.42));
}

.collection-story__heading,
.collection-copy,
.collection-palette,
.collection-scroll-note {
  position: absolute;
  z-index: 2;
}

.collection-story__heading {
  left: max(2rem, calc((100vw - 78rem) / 2));
  top: 18vh;
}

.collection-story__heading h2 {
  margin: 0;
  font-size: clamp(4.8rem, 9vw, 10rem);
  font-weight: 560;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.collection-story__heading h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.collection-copy {
  left: max(2rem, calc((100vw - 78rem) / 2));
  bottom: 10vh;
  width: min(30rem, calc(100vw - 4rem));
  min-height: 12rem;
}

.collection-copy__model {
  position: absolute;
  inset: auto 0 0;
  opacity: 0;
  transform: translateY(1.8rem);
}

.collection-copy__model.is-active {
  opacity: 1;
  transform: translateY(0);
}

.collection-copy__model span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.collection-copy__model h3 {
  margin: 0.55rem 0 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 580;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.collection-copy__model p {
  max-width: 27rem;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.collection-copy__model b {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.collection-palette {
  right: 2.5rem;
  bottom: 2.5rem;
  display: flex;
  gap: 0.55rem;
}

.collection-palette i {
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: #e9d4aa;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow 220ms ease;
}

.collection-palette i:nth-child(2) { background: #d5e0e9; }
.collection-palette i:nth-child(3) { background: #101b2f; }
.collection-palette i.is-active { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.82); }

.collection-scroll-note {
  right: 2.5rem;
  top: 50%;
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.spin-viewer {
  display: grid;
  min-height: 108vh;
  grid-template-columns: 0.38fr 0.62fr;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 42%, rgba(142, 179, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #f7f8fa, #eef1f5);
}

.spin-viewer__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(6rem, 9vw, 11rem) clamp(2rem, 5vw, 6rem);
}

.spin-viewer__copy h2 {
  margin: 0;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 560;
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.spin-viewer__copy h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.spin-viewer__copy > p {
  max-width: 30rem;
  margin: 2rem 0 0;
  color: #5d6570;
  font-size: 1.05rem;
  line-height: 1.6;
}

.spin-viewer__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 25rem;
  margin-top: 3.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(9, 10, 12, 0.15);
}

.spin-viewer__status span {
  color: #717986;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.spin-viewer__status b {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.spin-viewer__stage {
  position: relative;
  align-self: center;
  height: min(72vw, 86vh);
  max-height: 58rem;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.spin-viewer__stage:active { cursor: grabbing; }

.spin-viewer__canvas,
.spin-viewer__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 50% 0 0 50% / 12% 0 0 12%;
}

.spin-viewer__canvas {
  z-index: 2;
  outline: none;
}

.spin-viewer__canvas:focus-visible {
  box-shadow: inset 0 0 0 3px #285dff;
}

.spin-viewer__fallback {
  z-index: 1;
  display: none;
}

.spin-viewer__drag {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(9, 10, 12, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.spin-viewer__stage.is-engaged .spin-viewer__drag { opacity: 0; }

.spin-viewer__shadow {
  position: absolute;
  z-index: 0;
  left: 25%;
  right: 15%;
  bottom: 8%;
  height: 8%;
  border-radius: 50%;
  background: rgba(27, 40, 60, 0.18);
  filter: blur(2rem);
}

.chapter-nav {
  position: fixed;
  z-index: 900;
  left: 50%;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(38rem, calc(100vw - 2rem));
  padding: 0.55rem 0.65rem 0.55rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0.7rem 2.5rem rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px) saturate(130%);
  transform: translateX(-50%);
}

.chapter-nav__title {
  color: #1745b3;
  font-size: 0.75rem;
  font-weight: 700;
}

.chapter-nav div {
  display: flex;
  gap: 0.25rem;
}

.chapter-nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 0.3rem;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
}

.chapter-nav a:hover,
.chapter-nav a:focus-visible {
  outline: none;
  background: rgba(9, 10, 12, 0.08);
}

.sky-gallery {
  padding: clamp(8rem, 12vw, 13rem) 0;
  background: #07101b;
}

.sky-gallery__heading {
  display: grid;
  width: var(--content);
  margin: 0 auto 5rem;
  grid-template-columns: 0.38fr 0.9fr 0.62fr;
  gap: 2rem;
  align-items: end;
}

.sky-gallery__heading .eyebrow {
  align-self: start;
}

.sky-gallery__heading h2 {
  margin: 0;
  font-size: clamp(4.5rem, 8vw, 9rem);
  font-weight: 560;
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.sky-gallery__heading h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.sky-gallery__heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.6;
}

.sky-gallery__grid {
  display: grid;
  width: var(--content);
  margin: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sky-gallery figure {
  position: relative;
  min-height: 32rem;
  margin: 0;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #0e1b2b;
}

.sky-gallery__wide {
  grid-column: 1 / -1;
  min-height: 62rem !important;
}

.sky-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sky-gallery figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(5, 10, 17, 0.28);
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-disclosure {
  width: var(--content);
  margin: 1.2rem auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.room-story {
  display: grid;
  min-height: 115vh;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--paper);
  color: var(--ink);
}

.room-visual {
  min-height: 115vh;
  margin: 0;
  overflow: hidden;
}

.room-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 9rem clamp(3rem, 6vw, 7rem);
}

.room-copy h2,
.section-heading h2,
.craft-story__copy h2,
.finale h2 {
  margin: 0;
  font-size: clamp(3.6rem, 6.5vw, 7.2rem);
  font-weight: 550;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.room-copy > p:last-of-type,
.craft-story__copy > p:last-of-type,
.finale__copy > p {
  max-width: 38rem;
  margin: 2rem 0 0;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: #545b64;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 4rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.fact-row div {
  display: flex;
  flex-direction: column;
}

.fact-row dt {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
}

.fact-row dd {
  margin: 0.35rem 0 0;
  color: #6d747d;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.immersion-panel {
  position: relative;
  min-height: 125vh;
  overflow: hidden;
  background: #000;
}

.immersion-panel__image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.immersion-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.immersion-panel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.03));
}

.immersion-panel__copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 125vh;
  justify-content: center;
  flex-direction: column;
  width: min(58rem, calc(100vw - 3rem));
  margin: auto;
  margin-left: max(1.5rem, calc((100vw - 78rem) / 2));
}

.immersion-panel h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.4rem, 8.4vw, 9rem);
  font-weight: 560;
  line-height: 0.89;
  letter-spacing: -0.07em;
}

.immersion-panel__copy > p:last-child {
  max-width: 30rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
  line-height: 1.55;
}

.technology,
.models {
  padding: clamp(8rem, 12vw, 12rem) 0;
  background: var(--porcelain);
  color: var(--ink);
}

.section-heading {
  width: var(--content);
  margin: 0 auto 5rem;
}

.section-heading h2 {
  max-width: 12ch;
}

.feature-grid {
  display: grid;
  width: var(--content);
  margin: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
  border-radius: 0.35rem;
  background: var(--ink-soft);
  color: white;
}

.feature-card--wide {
  grid-column: 1 / -1;
  min-height: 55rem;
}

.feature-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.feature-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82));
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover img {
  transform: scale(1.035);
}

.feature-card > div:last-child {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
}

.feature-card span {
  display: block;
  margin-bottom: 0.8rem;
  color: #9fb5ff;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.15em;
}

.feature-card h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.7rem);
  font-weight: 560;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.feature-card p {
  max-width: 30rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}

.feature-card--statement {
  background: #10141f;
}

.signal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding-bottom: 11rem;
}

.signal i {
  display: block;
  width: 2px;
  height: 40%;
  border-radius: 1rem;
  background: linear-gradient(180deg, transparent, #7f9cff, transparent);
  animation: signal 2.4s ease-in-out infinite;
  transform-origin: center;
}

.signal i:nth-child(2), .signal i:nth-child(6) { animation-delay: -0.4s; }
.signal i:nth-child(3), .signal i:nth-child(5) { animation-delay: -0.8s; }
.signal i:nth-child(4) { animation-delay: -1.2s; }

@keyframes signal {
  0%, 100% { transform: scaleY(0.25); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.craft-story {
  display: grid;
  min-height: 115vh;
  grid-template-columns: 0.9fr 1.1fr;
  background: #090b10;
}

.craft-story__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(7rem, 10vw, 11rem);
}

.craft-story__copy h2 {
  max-width: 9ch;
}

.craft-story__copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.64);
}

.craft-story__image {
  align-self: center;
  justify-self: center;
  width: min(80%, 46rem);
  margin: 0;
  filter: drop-shadow(0 4rem 5rem rgba(0, 0, 0, 0.52));
}

.craft-story__image img {
  width: 100%;
  border-radius: 50% 50% 6% 6% / 10% 10% 5% 5%;
}

.section-heading--models {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  align-items: start;
}

.section-heading--models h2 {
  grid-column: 2;
}

.model-grid {
  display: grid;
  width: var(--content);
  margin: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.model-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.4rem;
}

.model-card__visual {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 0.94;
  place-items: center;
  overflow: hidden;
  background: #11151c;
}

.model-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.model-card:hover .model-card__visual img {
  transform: scale(1.035);
}

.model-card__visual span {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-card__content {
  display: grid;
  padding: 2rem;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
}

.model-kicker {
  margin: 0 0 0.6rem;
  color: #6b727b;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-card h3 {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 580;
  letter-spacing: -0.045em;
}

.model-price {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.model-card ul {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #5e6670;
  font-size: 0.84rem;
  line-height: 1.8;
}

.source-disclaimer {
  width: var(--content);
  margin: 1.2rem auto 0;
  color: #747b84;
  font-size: 0.68rem;
}

.finale {
  position: relative;
  display: grid;
  min-height: 110vh;
  place-items: center;
  overflow: hidden;
  background: #06070a;
  text-align: center;
}

.finale__halo {
  position: absolute;
  width: min(68vw, 70rem);
  aspect-ratio: 1;
  border: 1px solid rgba(120, 150, 255, 0.45);
  border-radius: 50%;
  box-shadow:
    0 0 7rem rgba(47, 91, 255, 0.16),
    inset 0 0 7rem rgba(47, 91, 255, 0.12);
}

.finale__halo::before,
.finale__halo::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.finale__halo::after {
  inset: 20%;
}

.finale__copy {
  position: relative;
  z-index: 1;
  width: min(70rem, calc(100vw - 3rem));
}

.finale h2 {
  font-size: clamp(5rem, 10vw, 10rem);
}

.finale h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.finale__copy > p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.62);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 650;
}

.mega-footer {
  color: #16191e;
  background: #f7f7f5;
}

.mega-footer a {
  color: inherit;
  text-decoration: none;
}

.mega-footer__utility {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.25rem;
  padding: 0 2.5rem;
  border-bottom: 1px solid rgba(9, 10, 12, 0.12);
}

.footer-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  font: 600 0.78rem/1 var(--sans);
  cursor: pointer;
}

.mega-footer__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.mega-footer__utility > div {
  display: flex;
  gap: 1.6rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.mega-footer__grid {
  display: grid;
  width: var(--content);
  margin: auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.mega-footer__grid section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
}

.mega-footer__grid h2 {
  margin: 0 0 1rem;
  color: #285dff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.mega-footer__grid a,
.mega-footer__grid span {
  color: #555c65;
  font-size: 0.86rem;
}

.mega-footer__grid a:hover { color: #285dff; }

.mega-footer__wordmark {
  overflow: hidden;
  padding: 0 2vw;
  color: #0b0c0f;
  font-size: clamp(6rem, 17vw, 18rem);
  font-weight: 620;
  line-height: 0.72;
  letter-spacing: -0.085em;
  text-align: center;
  white-space: nowrap;
}

.mega-footer__wordmark em {
  font-family: var(--serif);
  font-weight: 400;
}

.mega-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 7rem;
  margin-top: 3rem;
  padding: 0 2.5rem 2rem;
  border-top: 1px solid rgba(9, 10, 12, 0.12);
  color: #737a83;
  font-size: 0.67rem;
}

@media (max-width: 900px) {
  :root {
    --content: calc(100vw - 2rem);
  }

  .site-nav {
    height: 4rem;
    padding: 0 1rem;
  }

  .concept-label {
    display: none;
  }

  .site-nav {
    gap: 0.6rem;
  }

  .site-nav .wordmark {
    position: static;
    margin-right: auto;
    transform: none;
  }

  .site-nav .wordmark > span:last-child,
  .menu-trigger > span:last-child,
  .nav-text-link {
    display: none;
  }

  .menu-trigger__icon { width: 1.1rem; }

  .nav-meta { gap: 0.5rem; }

  .mega-menu {
    display: block;
    overflow-y: auto;
    background: #f3f5f8;
  }

  .mega-menu__rail {
    min-height: 100svh;
    padding: 1.2rem 1rem 2rem 2rem;
    border-right: 0;
  }

  .mega-menu__categories {
    margin-top: 4rem;
    gap: 1.35rem;
  }

  .mega-menu__categories button {
    font-size: clamp(1.7rem, 8.5vw, 2.5rem);
  }

  .mega-menu__shortcuts { margin-top: 3rem; }
  .mega-menu__brand { margin-top: 4rem; }

  .mega-menu__feature {
    min-height: auto;
    padding: 4rem 1rem 6rem;
  }

  .mega-menu__cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mega-menu-card { min-height: 24rem; }

  .cover-film__copy h1 {
    font-size: clamp(4.5rem, 23vw, 7rem);
    line-height: 0.72;
  }

  .cover-film__copy h1 em {
    display: block;
    margin-top: 0.08em;
  }

  .cover-film__copy {
    width: calc(100vw - 2rem);
  }

  .cover-film__scroll {
    display: none;
  }

  .cover-film__interface {
    left: 1rem;
    right: 1rem;
    bottom: 5.6rem;
  }

  .film-chapter {
    min-width: 0;
    grid-template-columns: 3.5rem 1fr;
  }

  .film-chapter__line {
    display: none;
  }

  .sound-toggle {
    padding: 0.62rem;
  }

  .sound-toggle:not([aria-pressed="true"]) {
    font-size: 0;
  }

  .sound-toggle:not([aria-pressed="true"]) span {
    font-size: 1.05rem;
  }

  .hero-sequence,
  .hero-sequence-fallback,
  .hero-orbit-fallback {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .hero-intro {
    width: calc(100vw - 2rem);
  }

  .hero-intro h1 {
    font-size: clamp(4.4rem, 22vw, 7.5rem);
  }

  .story-beat {
    left: 1rem;
    right: auto;
    top: auto;
    bottom: 8.2rem;
    width: calc(100vw - 2rem);
    padding: 0;
    transform: none;
  }

  .story-beat h2 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .story-progress {
    left: 1rem;
    bottom: 6rem;
  }

  .scroll-invitation {
    bottom: 5.7rem;
  }

  .chapter-nav {
    bottom: 0.65rem;
    padding-left: 0.9rem;
  }

  .collection-story,
  .collection-stage {
    height: 100svh;
    min-height: 44rem;
  }

  .collection-story__heading {
    left: 1rem;
    right: 1rem;
    top: 16vh;
  }

  .collection-story__heading h2 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .collection-copy {
    left: 1rem;
    bottom: 7rem;
    width: calc(100vw - 2rem);
  }

  .collection-copy__model h3 {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
  }

  .collection-palette {
    right: 1rem;
    bottom: 6rem;
  }

  .collection-scroll-note { display: none; }

  .collection-stage__veil {
    background:
      linear-gradient(180deg, rgba(5, 9, 15, 0.5), transparent 38%, rgba(5, 9, 15, 0.66)),
      linear-gradient(90deg, rgba(5, 9, 15, 0.25), transparent);
  }

  .spin-viewer {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .spin-viewer__copy {
    padding: 7rem 1rem 3rem;
  }

  .spin-viewer__copy h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .spin-viewer__stage {
    height: 78svh;
    min-height: 36rem;
  }

  .spin-viewer__canvas,
  .spin-viewer__fallback {
    border-radius: 3rem 3rem 0 0;
  }

  .chapter-nav a {
    padding: 0.5rem;
    font-size: 0.64rem;
  }

  .sky-gallery__heading {
    display: block;
  }

  .sky-gallery__heading h2 {
    margin-bottom: 2rem;
  }

  .sky-gallery__grid {
    grid-template-columns: 1fr;
  }

  .sky-gallery__wide {
    grid-column: auto;
  }

  .sky-gallery figure,
  .sky-gallery__wide {
    min-height: 30rem !important;
  }

  .room-story,
  .craft-story {
    grid-template-columns: 1fr;
  }

  .room-visual {
    min-height: 72vh;
  }

  .room-copy,
  .craft-story__copy {
    padding: 7rem 1rem;
  }

  .fact-row {
    gap: 0.4rem;
  }

  .fact-row dt {
    font-size: 2rem;
  }

  .immersion-panel__copy {
    justify-content: end;
    margin-left: 1rem;
    padding-bottom: 8rem;
  }

  .technology,
  .models {
    padding: 7rem 0;
  }

  .feature-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: auto;
  }

  .feature-card,
  .feature-card--wide {
    min-height: 36rem;
  }

  .craft-story__image {
    order: -1;
    width: 86%;
    padding-top: 7rem;
  }

  .section-heading--models {
    display: block;
  }

  .model-card__content {
    padding: 1.3rem;
  }

  .mega-footer__utility {
    min-height: 5rem;
    padding: 0 1rem;
  }

  .mega-footer__utility > div {
    display: none;
  }

  .mega-footer__grid {
    padding: 5rem 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 1rem;
  }

  .mega-footer__wordmark {
    padding: 0 0.5rem;
    font-size: 23vw;
  }

  .mega-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem 6rem;
  }
}

@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;
  }
}

body.motion-reduced .hero-sequence {
  display: none;
}

body.motion-reduced .hero-sequence-fallback {
  display: block;
}

body.motion-reduced .hero-intro {
  opacity: 1 !important;
  transform: translate(-50%, -48%) !important;
}

body.motion-reduced .story-beat {
  display: none;
}

body.motion-reduced .spin-viewer__canvas,
body.motion-reduced .spin-viewer__drag {
  display: none;
}

body.motion-reduced .spin-viewer__fallback {
  display: block;
}

body.motion-reduced .collection-model,
body.motion-reduced .collection-copy__model {
  display: none !important;
}

body.motion-reduced .collection-model--classic,
body.motion-reduced .collection-copy__model--classic {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body.motion-reduced .collection-scroll-note,
body.motion-reduced .collection-palette {
  display: none;
}

body.motion-reduced .reveal-copy,
body.motion-reduced .reveal-card,
body.motion-reduced .reveal-media {
  opacity: 1 !important;
  transform: none !important;
}
