:root {
  --black: #020203;
  --paper: #e8e6e1;
  --paper-soft: #b9b8b5;
  --muted: #69686a;
  --signal: #ff304f;
  --page-x: clamp(28px, 5.8vw, 108px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html.is-cinematic {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(ellipse at 74% 51%, rgba(65,44,124,.09), transparent 34%),
    radial-gradient(ellipse at 58% 96%, rgba(127,40,58,.035), transparent 40%),
    var(--black);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .18;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.014) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

.starlight-field {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: 1;
  display: block;
  opacity: .92;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: saturate(1.12) brightness(1.18);
}

.cursor-light-layer {
  --cursor-primary: 238, 104, 157;
  --cursor-secondary: 181, 137, 213;
  --cursor-highlight: 255, 230, 241;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 380ms ease;
}

.cursor-light-layer.is-visible {
  opacity: 1;
}

.cursor-light__glow,
.cursor-light__core,
.cursor-light__trail,
.cursor-light__echo {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.cursor-light__glow {
  width: clamp(210px, 24vmin, 330px);
  height: clamp(210px, 24vmin, 330px);
  background: radial-gradient(
    circle,
    rgba(var(--cursor-highlight), .24) 0%,
    rgba(var(--cursor-primary), .18) 13%,
    rgba(var(--cursor-primary), .095) 31%,
    rgba(var(--cursor-secondary), .052) 53%,
    transparent 76%
  );
}

.cursor-light__core {
  width: 38px;
  height: 38px;
  background: radial-gradient(
    circle,
    rgba(var(--cursor-highlight), .88) 0 5%,
    rgba(var(--cursor-primary), .46) 15%,
    rgba(var(--cursor-primary), .14) 38%,
    transparent 72%
  );
}

.cursor-light__trail {
  width: 86px;
  height: 86px;
  opacity: var(--trail-opacity, .08);
  background: radial-gradient(
    circle,
    rgba(var(--cursor-primary), .22),
    rgba(var(--cursor-secondary), .08) 34%,
    transparent 72%
  );
}

.cursor-light__echo {
  width: 108px;
  height: 108px;
  opacity: 0;
  border: 1px solid rgba(var(--cursor-primary), .38);
  box-shadow:
    0 0 10px rgba(var(--cursor-primary), .15),
    inset 0 0 12px rgba(var(--cursor-secondary), .08);
}

@media (hover: none), (pointer: coarse) {
  .cursor-light-layer {
    display: none;
  }
}

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

button {
  font: inherit;
}

.site-header {
  min-height: 88px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px var(--page-x);
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.brand sup {
  margin-left: 2px;
  font-size: 6px;
  vertical-align: top;
}

.brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 48% 52% 60% 40% / 41% 56% 44% 59%;
  background: var(--signal);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  transform: rotate(-8deg);
}

.header-note {
  margin: 0;
  color: #8b8a8c;
  font-size: 10px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.archive-link {
  color: #b5b4b5;
  font-size: 10px;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.archive-link:hover {
  color: var(--paper);
}

.sound-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.sound-toggle i {
  width: 1px;
  height: 11px;
  display: block;
  background: currentColor;
  animation: sound-wave 1.1s ease-in-out infinite alternate;
}

.sound-toggle i:nth-child(2) {
  height: 18px;
  animation-delay: -.5s;
}

.sound-toggle i:nth-child(3) {
  height: 7px;
  animation-delay: -.8s;
}

.sound-toggle[aria-pressed="false"] i {
  height: 2px;
  animation-play-state: paused;
}

.dream-sequence {
  position: relative;
  z-index: 2;
}

.dream-screen {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.35vw, 52px);
  padding: max(88px, 8svh) var(--page-x) max(28px, 4svh);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero::after {
  content: "";
  width: 80vw;
  height: 60vh;
  position: absolute;
  right: -24vw;
  bottom: -34vh;
  z-index: -1;
  opacity: .2;
  border-radius: 50%;
  background: #2c1539;
  filter: blur(140px);
}

.hero-copy {
  width: max-content;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  width: min(620px, 48vw);
  display: flex;
  justify-content: space-between;
  margin: 0 0 clamp(16px, 2.4vh, 30px);
  color: #747376;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: clamp(104px, min(13.2vw, 22svh), 276px);
  font-stretch: condensed;
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.018em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  width: max-content;
  background:
    linear-gradient(102deg, #d4d2ce 0%, #f1efea 38%, #b8b7b4 74%, #e2e0dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.16));
}

.hero h1 span + span {
  margin-top: .025em;
}

.hero-tagline {
  margin: clamp(17px, 2.2vh, 26px) 0 0 3px;
  color: #9c9b9d;
  font-size: clamp(13px, 1.25vw, 21px);
  font-weight: 400;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.stories-screen {
  background:
    radial-gradient(ellipse at 25% 54%, rgba(60,65,148,.085), transparent 36%),
    radial-gradient(ellipse at 78% 52%, rgba(133,67,39,.055), transparent 38%);
}

.stories-screen::after {
  content: "";
  width: 74vw;
  height: 58vh;
  position: absolute;
  left: -28vw;
  bottom: -31vh;
  z-index: -1;
  opacity: .18;
  border-radius: 50%;
  background: #251c50;
  filter: blur(150px);
}

.stories-copy {
  width: min(38vw, 690px);
  flex: 0 0 auto;
  position: relative;
  z-index: 6;
  text-align: right;
}

.stories-copy h2 {
  margin: 0;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: clamp(80px, min(9.4vw, 19svh), 200px);
  font-stretch: condensed;
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.022em;
  text-transform: uppercase;
}

.stories-copy h2 span {
  display: block;
  width: max-content;
  margin-left: auto;
  background: linear-gradient(102deg, #b8b7b4 0%, #efede8 44%, #c7c5c1 72%, #f2f0eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.14));
}

.stories-copy h2 span + span {
  margin-top: .025em;
}

.stories-tagline {
  margin: clamp(18px, 2.4vh, 28px) 0 0;
  color: #9c9b9d;
  font-size: clamp(11px, 1vw, 17px);
  letter-spacing: .065em;
  line-height: 1.35;
  text-transform: uppercase;
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: clamp(22px, 3.2vh, 36px);
  padding: 7px 9px 7px 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    rgba(8,7,10,.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 15px 44px rgba(0,0,0,.34);
  color: #f7f6f3;
  text-align: left;
  transition: transform 260ms cubic-bezier(.2,.75,.25,1), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.youtube-mark {
  width: 48px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #ff3150, #f50024 68%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.28),
    0 6px 20px rgba(255,0,41,.3);
  transition: transform 260ms cubic-bezier(.2,.75,.25,1), box-shadow 260ms ease;
}

.youtube-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.12));
}

.youtube-copy {
  min-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}

.youtube-copy strong {
  font-size: 14px;
  letter-spacing: -.025em;
}

.youtube-copy small {
  color: #949296;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.youtube-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.065);
  color: #aaa8ab;
  font-size: 11px;
  transition: color 260ms ease, background 260ms ease, transform 260ms cubic-bezier(.2,.75,.25,1);
}

.youtube-link:hover {
  border-color: rgba(255,44,74,.5);
  background:
    linear-gradient(110deg, rgba(255,38,69,.15), rgba(255,255,255,.035)),
    rgba(10,7,10,.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    0 18px 54px rgba(255,0,42,.12),
    0 15px 44px rgba(0,0,0,.38);
  transform: translateY(-2px);
}

.youtube-link:hover .youtube-mark {
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.32),
    0 8px 28px rgba(255,0,41,.48);
  transform: scale(1.04);
}

.youtube-link:hover .youtube-copy small {
  color: #c3c1c4;
}

.youtube-link:hover .youtube-arrow {
  background: rgba(255,255,255,.11);
  color: #fff;
  transform: translate(1px, -1px);
}

.youtube-link:active {
  transform: translateY(0) scale(.985);
}

.youtube-link:focus-visible {
  outline: 2px solid rgba(255,48,79,.72);
  outline-offset: 4px;
}

.lens-slot {
  width: 100%;
  max-width: min(1080px, calc(108svh - 105px));
  min-width: 0;
  flex: 1 1 0;
  aspect-ratio: 1.12 / 1;
}

.lens-mover {
  width: 1px;
  height: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transform-origin: 0 0;
  will-change: transform;
  transition: opacity 260ms ease;
}

.lens-mover.is-positioned {
  opacity: 1;
}

.lens-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --image-x: 0px;
  --image-y: 0px;
  --pointer-x: 42%;
  --pointer-y: 30%;
  --lens-scale: 1;
  --halo-x: 0px;
  --halo-y: 0px;
  --halo-anti-x: 0px;
  --halo-anti-y: 0px;
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: auto;
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(var(--lens-scale));
  transform-style: preserve-3d;
  transition: transform 80ms linear;
  will-change: transform;
}

.lens-stage::before,
.lens-stage::after {
  display: none;
}

#dream-lens-canvas,
.lens-fallback {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

#dream-lens-canvas {
  z-index: 2;
  display: block;
  cursor: default;
  touch-action: pan-y;
  filter:
    drop-shadow(-6px -5px 15px rgba(105,118,255,.13))
    drop-shadow(7px 9px 18px rgba(255,88,102,.09));
}

.lens-fallback {
  z-index: 1;
  object-fit: cover;
  opacity: .9;
  clip-path: polygon(5% 46%, 9% 28%, 19% 13%, 34% 4%, 51% 5%, 69% 11%, 85% 24%, 95% 42%, 96% 59%, 89% 75%, 75% 87%, 57% 94%, 38% 96%, 22% 87%, 10% 72%);
  transition: opacity 300ms ease;
}

.lens-stage.canvas-ready .lens-fallback {
  opacity: 0;
}

.lens-stage::before,
.lens-stage::after {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(86px);
  will-change: transform, opacity;
}

.lens-stage::before {
  inset: 8% 2% 12%;
  opacity: .7;
  background:
    radial-gradient(ellipse at 24% 35%, rgba(101,75,255,.34), transparent 45%),
    radial-gradient(ellipse at 78% 62%, rgba(255,58,87,.27), transparent 43%),
    radial-gradient(ellipse at 53% 48%, rgba(202,215,255,.16), transparent 66%);
  transform: translate3d(var(--halo-x), var(--halo-y), -50px) scale(1.14);
  animation: halo-breathe 15s ease-in-out infinite alternate;
}

.lens-stage::after {
  inset: 16% 8% 18%;
  opacity: .42;
  background: linear-gradient(105deg, rgba(126,132,255,.38), transparent 45%, rgba(255,106,113,.34));
  transform: translate3d(var(--halo-anti-x), var(--halo-anti-y), -40px) scale(1.08);
  animation: halo-drift 19s ease-in-out infinite alternate;
}

.liquid-lens,
.lens-aura {
  position: absolute;
  inset: 4.5% 3.5% 6%;
  border-radius: 46% 54% 49% 51% / 48% 43% 57% 52%;
}

.lens-edge-blur {
  position: absolute;
  inset: 2.4% 1.3% 3.2%;
  z-index: 2;
  pointer-events: none;
  opacity: .82;
  border-radius: 44% 56% 54% 46% / 50% 42% 58% 50%;
  background:
    radial-gradient(ellipse at 8% 51%, rgba(224,229,255,.17), transparent 26%),
    radial-gradient(ellipse at 92% 48%, rgba(255,192,199,.14), transparent 27%),
    radial-gradient(ellipse at 50% 50%, transparent 72%, rgba(238,241,255,.115) 79%, transparent 89%);
  box-shadow:
    inset 30px 0 46px rgba(209,216,255,.15),
    inset -30px 0 46px rgba(255,174,184,.13);
  -webkit-backdrop-filter: blur(10px) saturate(1.2) contrast(1.025);
  backdrop-filter: blur(10px) saturate(1.2) contrast(1.025);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, transparent 0 70%, rgba(0,0,0,.22) 73%, #000 78%, #000 82%, rgba(0,0,0,.5) 86%, transparent 91%);
  mask-image: radial-gradient(ellipse at 50% 50%, transparent 0 70%, rgba(0,0,0,.22) 73%, #000 78%, #000 82%, rgba(0,0,0,.5) 86%, transparent 91%);
  filter: blur(2px);
  transform: translateZ(20px) scale(1.045, 1.055);
  animation: edge-lens-follow 20s cubic-bezier(.37,0,.22,1) -1.4s infinite alternate;
  will-change: border-radius, transform, filter;
}

.lens-aura {
  inset: .5%;
  opacity: .72;
  background:
    conic-gradient(from 214deg at 51% 49%,
      rgba(134,108,255,.88), transparent 13%, transparent 31%,
      rgba(255,255,255,.64) 38%, transparent 44%, transparent 62%,
      rgba(255,81,91,.82) 74%, transparent 83%, rgba(88,105,255,.7));
  filter: blur(64px);
  transform: translateZ(-20px) scale(1.08);
  animation: aura-shape 20s cubic-bezier(.37,0,.22,1) infinite alternate;
  will-change: border-radius, transform, filter;
}

.liquid-lens {
  z-index: 1;
  overflow: hidden;
  background: rgba(13,12,22,.44);
  box-shadow:
    inset 18px 14px 38px rgba(139,128,255,.32),
    inset -23px -12px 44px rgba(255,77,92,.25),
    inset 4px 5px 10px rgba(241,241,255,.38),
    inset -4px -3px 10px rgba(255,190,146,.28),
    0 0 76px rgba(97,72,255,.31),
    0 0 154px rgba(255,55,89,.17),
    0 30px 150px rgba(0,0,0,.72);
  transform: translateZ(16px);
  cursor: default;
  animation: liquid-shape 20s cubic-bezier(.37,0,.22,1) infinite alternate;
  will-change: border-radius, transform;
}

.liquid-lens img {
  width: 108%;
  height: 108%;
  position: absolute;
  top: -4%;
  left: -4%;
  object-fit: cover;
  opacity: .94;
  filter: saturate(1.08) contrast(1.07) brightness(.9);
  transform: scale(1.055) translate3d(var(--image-x), var(--image-y), 0);
  transition: transform 100ms linear;
  -webkit-mask-image: radial-gradient(ellipse at 50% 51%, #000 0 66%, rgba(0,0,0,.98) 76%, rgba(0,0,0,.72) 88%, rgba(0,0,0,.15) 98%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 51%, #000 0 66%, rgba(0,0,0,.98) 76%, rgba(0,0,0,.72) 88%, rgba(0,0,0,.15) 98%, transparent 100%);
}

.lens-depth,
.lens-spectrum,
.lens-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lens-depth {
  background:
    radial-gradient(ellipse at 51% 50%, transparent 50%, rgba(0,0,7,.09) 73%, rgba(0,0,4,.46) 100%),
    linear-gradient(148deg, rgba(105,127,255,.08), transparent 37%, transparent 63%, rgba(255,70,89,.08));
  mix-blend-mode: multiply;
}

.lens-spectrum {
  inset: -1.5%;
  opacity: .72;
  background:
    radial-gradient(ellipse at 20% 11%, rgba(255,255,255,.94) 0 1.2%, rgba(142,141,255,.62) 2.2%, transparent 11%),
    radial-gradient(ellipse at 84% 23%, rgba(255,83,104,.88) 0 1.3%, rgba(255,121,87,.34) 4%, transparent 15%),
    radial-gradient(ellipse at 18% 78%, rgba(109,91,255,.76) 0 1.5%, rgba(151,137,255,.25) 5%, transparent 17%),
    radial-gradient(ellipse at 79% 91%, rgba(255,235,218,.78) 0 1%, rgba(255,94,82,.32) 5%, transparent 15%);
  filter: blur(5px);
  mix-blend-mode: screen;
}

.lens-glass {
  opacity: .78;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.22) 0, rgba(188,203,255,.08) 7%, transparent 23%),
    linear-gradient(122deg, rgba(255,255,255,.11), transparent 17%, transparent 74%, rgba(255,166,151,.08)),
    radial-gradient(ellipse at 50% 47%, transparent 58%, rgba(210,211,255,.12) 77%, rgba(255,255,255,.3) 98%);
  box-shadow:
    inset 16px 7px 28px rgba(222,228,255,.18),
    inset -18px -8px 30px rgba(255,158,170,.13);
  mix-blend-mode: screen;
}

.lens-caption {
  width: 76%;
  display: flex;
  justify-content: space-between;
  margin: 0;
  position: absolute;
  right: 8%;
  bottom: 0;
  z-index: 5;
  color: #68676b;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lens-caption span:last-child {
  color: #89888b;
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: var(--page-x);
  bottom: 29px;
  left: var(--page-x);
  z-index: 8;
  color: #747376;
  font-size: 9px;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.hero-footer p {
  margin: 0;
}

.footer-index {
  margin-right: 15px;
  color: var(--paper);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-status i {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px rgba(255,48,79,.7);
}

@keyframes liquid-shape {
  0% {
    border-radius: 42% 58% 55% 45% / 50% 41% 59% 50%;
    transform: translateZ(16px) rotate(-.5deg) scale(.985, 1.015) skewX(-.2deg);
  }
  28% {
    border-radius: 52% 48% 44% 56% / 44% 55% 45% 56%;
    transform: translateZ(16px) rotate(.25deg) scale(1.012, .99) skewX(.12deg);
  }
  57% {
    border-radius: 46% 54% 58% 42% / 56% 45% 55% 44%;
    transform: translateZ(16px) rotate(.45deg) scale(.99, 1.012) skewX(.2deg);
  }
  78% {
    border-radius: 56% 44% 49% 51% / 47% 58% 42% 53%;
    transform: translateZ(16px) rotate(-.15deg) scale(1.01, .99) skewX(-.1deg);
  }
  100% {
    border-radius: 48% 52% 42% 58% / 52% 44% 56% 48%;
    transform: translateZ(16px) rotate(-.35deg) scale(.988, 1.014) skewX(-.18deg);
  }
}

@keyframes aura-shape {
  0% {
    border-radius: 42% 58% 55% 45% / 50% 41% 59% 50%;
    transform: translateZ(-20px) rotate(-.7deg) scale(1.11, 1.14);
    filter: blur(58px);
  }
  50% {
    border-radius: 47% 53% 59% 41% / 57% 45% 55% 43%;
    transform: translateZ(-20px) rotate(.55deg) scale(1.15, 1.1);
    filter: blur(74px);
  }
  100% {
    border-radius: 54% 46% 44% 56% / 46% 57% 43% 54%;
    transform: translateZ(-20px) rotate(-.4deg) scale(1.12, 1.16);
    filter: blur(66px);
  }
}

@keyframes edge-lens-follow {
  0% {
    border-radius: 40% 60% 57% 43% / 51% 39% 61% 49%;
    transform: translate3d(-.35%, .2%, 20px) rotate(-.3deg) scale(1.045, 1.055);
    filter: blur(1.5px);
  }
  28% {
    border-radius: 53% 47% 43% 57% / 43% 56% 44% 57%;
    transform: translate3d(.3%, -.2%, 20px) rotate(.15deg) scale(1.055, 1.045);
    filter: blur(2.5px);
  }
  57% {
    border-radius: 45% 55% 60% 40% / 58% 44% 56% 42%;
    transform: translate3d(-.15%, .3%, 20px) rotate(.25deg) scale(1.05, 1.06);
    filter: blur(2px);
  }
  78% {
    border-radius: 58% 42% 48% 52% / 46% 60% 40% 54%;
    transform: translate3d(.35%, -.15%, 20px) rotate(-.08deg) scale(1.06, 1.045);
    filter: blur(3px);
  }
  100% {
    border-radius: 47% 53% 41% 59% / 54% 43% 57% 46%;
    transform: translate3d(-.25%, .2%, 20px) rotate(-.2deg) scale(1.045, 1.06);
    filter: blur(1.8px);
  }
}

@keyframes halo-breathe {
  from { opacity: .3; }
  to { opacity: .52; }
}

@keyframes halo-drift {
  from { opacity: .16; }
  to { opacity: .34; }
}

@keyframes sound-wave {
  to { transform: scaleY(.35); }
}

@media (max-width: 1050px) {
  .header-note {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .dream-screen {
    gap: clamp(16px, 2vw, 28px);
  }

  .stories-copy {
    width: min(41vw, 520px);
  }
}

@media (max-width: 680px) and (min-height: 560px) {
  .dream-screen {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: start;
    gap: clamp(16px, 2.5svh, 26px);
    padding-top: 78px;
    padding-bottom: 22px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(82px, min(25vw, 18svh), 150px);
  }

  .hero-tagline {
    max-width: min(84vw, 430px);
  }

  .lens-slot {
    width: min(108vw, 54svh, 680px);
    max-width: none;
    flex: none;
    justify-self: center;
  }

  .stories-copy {
    width: 100%;
    justify-self: end;
    text-align: right;
  }

  .stories-copy h2 {
    font-size: clamp(68px, min(21vw, 16svh), 126px);
  }

  .stories-copy h2 span {
    margin-left: auto;
  }

  .lens-slot--stories {
    justify-self: start;
    margin-left: -8vw;
  }
}

@media (max-width: 620px) {
  :root {
    --page-x: 21px;
  }

  .site-header {
    min-height: 68px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .archive-link {
    display: none;
  }

  .brand {
    font-size: 11px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .eyebrow {
    width: 74vw;
    margin-bottom: 13px;
    font-size: 7px;
  }

  .hero-tagline {
    max-width: 76vw;
    margin-top: 15px;
    font-size: 10px;
    line-height: 1.35;
  }

  .lens-caption {
    display: none;
  }

  .hero-footer {
    bottom: 18px;
    font-size: 7px;
  }

  .footer-status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
