@font-face {
  font-family: "Newsreader";
  src: url("./newsreader-latin-DBQoWVJ5.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("./instrument-sans-latin-CclBWeUS.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #f3eadb;
  --ink-soft: rgba(243, 234, 219, 0.72);
  --ink-faint: rgba(243, 234, 219, 0.48);
  --night: #090b11;
  --night-soft: #10131a;
  --warm: #e8d2af;
  --warm-ink: #17130f;
  --line: rgba(246, 235, 216, 0.18);
  --green: #62bd79;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Instrument Sans", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: #15110d;
  background: #ead4b1;
}

button,
a {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--warm-ink);
  background: var(--warm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 70;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 28px clamp(32px, 5.2vw, 84px);
  pointer-events: none;
}

.sound-entry {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: none;
  place-items: center;
  overflow: hidden;
  padding: 88px 24px 34px;
  background: rgba(4, 6, 10, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms 580ms ease, background 760ms ease;
}

.sound-entry-pending,
.sound-entry-opening {
  overflow: hidden;
}

.sound-entry-pending .sound-entry,
.sound-entry-opening .sound-entry {
  display: grid;
}

.sound-entry-pending .sound-entry {
  opacity: 1;
  pointer-events: auto;
}

.sound-entry-opening .sound-entry {
  background: rgba(4, 6, 10, 0);
  opacity: 0;
}

.sound-entry__portal {
  --sound-portal-y: 1.5vh;
  position: relative;
  width: min(366px, calc(100vw - 48px));
  min-height: 324px;
  display: grid;
  place-items: center;
  padding: 70px 34px 29px;
  border: 1px solid rgba(241, 206, 160, 0.5);
  border-radius: 194px 194px 24px 24px;
  background:
    radial-gradient(ellipse 72% 48% at 36% 14%, rgba(255, 232, 199, 0.036), transparent 72%),
    linear-gradient(135deg, rgba(255, 244, 224, 0.018), rgba(255, 255, 255, 0.003) 42%, rgba(134, 84, 45, 0.014)),
    rgba(8, 10, 14, 0.035);
  box-shadow:
    inset 0 1px rgba(255, 246, 232, 0.15),
    inset 18px 10px 46px rgba(255, 232, 199, 0.022),
    inset -20px -18px 42px rgba(171, 102, 50, 0.026),
    0 24px 70px rgba(0, 0, 0, 0.3),
    0 0 58px rgba(222, 155, 74, 0.045);
  backdrop-filter: blur(11px) saturate(128%) brightness(1.025);
  -webkit-backdrop-filter: blur(11px) saturate(128%) brightness(1.025);
  transform: translateY(var(--sound-portal-y));
  transform-origin: 50% 78%;
}

.sound-entry__portal::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 46% 17% at 34% 1%, rgba(255, 249, 238, 0.11), transparent 72%),
    linear-gradient(112deg, rgba(255, 244, 228, 0.045), transparent 22%, transparent 76%, rgba(224, 157, 87, 0.022));
  opacity: 0.78;
  pointer-events: none;
}

.sound-entry__aura {
  position: absolute;
  z-index: -1;
  inset: -42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 155, 76, 0.1), rgba(226, 155, 76, 0) 68%);
  filter: blur(18px);
  animation: sound-portal-breathe 5.8s ease-in-out infinite;
}

.sound-entry__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  justify-items: center;
  transition: opacity 220ms ease, transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.sound-entry h2 {
  margin: 0 0 34px;
  color: rgba(249, 235, 215, 0.96);
  font-size: clamp(29px, 2.25vw, 35px);
  line-height: 1.1;
  letter-spacing: -0.032em;
  text-align: center;
  text-wrap: balance;
}

.sound-entry__primary,
.sound-entry__quiet,
.ambient-sound {
  border: 0;
  cursor: pointer;
}

.sound-entry__primary {
  position: relative;
  width: min(100%, 232px);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(245, 215, 177, 0.56);
  border-radius: 999px;
  color: rgba(250, 234, 211, 0.94);
  background: rgba(255, 244, 226, 0.006);
  box-shadow:
    inset 0 1px rgba(255, 248, 236, 0.095),
    0 11px 30px rgba(0, 0, 0, 0.08);
  font-size: 13.5px;
  font-weight: 550;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.sound-entry__primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 244, 226, 0.1) 50%, transparent 72%);
  pointer-events: none;
  transform: translateX(-135%);
  transition: transform 680ms cubic-bezier(0.18, 0.72, 0.2, 1);
}

.sound-entry__primary:hover,
.sound-entry__primary:focus-visible {
  color: rgba(255, 243, 225, 1);
  border-color: rgba(250, 219, 176, 0.86);
  background: rgba(255, 242, 221, 0.018);
  box-shadow:
    inset 0 1px rgba(255, 248, 236, 0.15),
    0 0 0 3px rgba(239, 204, 157, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.13);
  transform: translateY(-1px);
}

.sound-entry__primary:hover::before,
.sound-entry__primary:focus-visible::before {
  transform: translateX(135%);
}

.sound-entry__primary:focus-visible {
  outline: 0;
  box-shadow:
    inset 0 1px rgba(255, 248, 236, 0.13),
    0 0 0 4px rgba(239, 204, 157, 0.11),
    0 12px 34px rgba(0, 0, 0, 0.14);
}

.sound-entry__primary:active {
  transform: translateY(0) scale(0.985);
}

.sound-entry__primary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.sound-entry__quiet {
  margin-top: 13px;
  padding: 7px 12px;
  color: rgba(245, 228, 204, 0.66);
  background: transparent;
  font-size: 13px;
  transition: color 180ms ease, transform 180ms ease;
}

.sound-entry__quiet:hover,
.sound-entry__quiet:focus-visible {
  color: #f9ead4;
  transform: translateY(-1px);
}

.sound-entry__quiet:focus-visible {
  border-radius: 999px;
  outline: 1px solid rgba(255, 236, 206, 0.42);
  outline-offset: 2px;
}

.sound-entry-opening .sound-entry__content {
  opacity: 0;
  transform: translateY(-7px) scale(0.985);
}

.sound-entry-opening .sound-entry__portal {
  animation: sound-portal-release 1.05s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.ambient-sound {
  position: fixed;
  z-index: 85;
  bottom: 28px;
  left: clamp(20px, 3.5vw, 54px);
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 13px;
  overflow: hidden;
  border: 1px solid rgba(246, 230, 206, 0.18);
  border-radius: 999px;
  color: rgba(247, 236, 219, 0.78);
  background: rgba(13, 13, 15, 0.58);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    width 480ms cubic-bezier(0.2, 0.72, 0.2, 1),
    opacity 400ms ease,
    transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1),
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.ambient-sound.is-ready {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sound-entry-pending .ambient-sound,
.sound-entry-opening .ambient-sound {
  opacity: 0;
  pointer-events: none;
}

.ambient-sound:hover,
.ambient-sound:focus-visible {
  width: 166px;
}

.ambient-sound:hover,
.ambient-sound:focus-visible,
.ambient-sound.is-playing {
  border-color: rgba(245, 220, 183, 0.36);
  color: rgba(255, 244, 227, 0.96);
  background: rgba(24, 20, 18, 0.72);
}

.ambient-sound__icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.ambient-sound__speaker,
.ambient-sound__waves,
.ambient-sound__muted {
  transition: opacity 220ms ease, transform 300ms ease;
  transform-origin: center;
}

.ambient-sound__waves {
  opacity: 0;
  transform: scale(0.72);
}

.ambient-sound.is-playing .ambient-sound__muted {
  opacity: 0;
  transform: scale(0.8);
}

.ambient-sound.is-playing .ambient-sound__waves {
  opacity: 1;
  transform: scale(1);
}

.ambient-sound__label {
  max-width: 0;
  margin-left: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 11px;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transform: translateX(-4px);
  transition:
    max-width 440ms cubic-bezier(0.2, 0.72, 0.2, 1),
    margin-left 440ms cubic-bezier(0.2, 0.72, 0.2, 1),
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.ambient-sound:hover .ambient-sound__label,
.ambient-sound:focus-visible .ambient-sound__label {
  max-width: 112px;
  margin-left: 9px;
  opacity: 1;
  transform: translateX(0);
}

@keyframes sound-portal-breathe {
  0%, 100% { opacity: 0.72; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes sound-portal-release {
  0% { opacity: 1; filter: blur(0); transform: translateY(var(--sound-portal-y)) scale(1); }
  34% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(var(--sound-portal-y)) scale(1.015);
    box-shadow: 0 0 0 1px rgba(247, 213, 164, 0.52), 0 0 100px rgba(226, 155, 76, 0.22);
  }
  100% { opacity: 0; filter: blur(3px); transform: translateY(var(--sound-portal-y)) scale(1.045); }
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  color: #f4ecdf;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.025em;
  pointer-events: auto;
}

.brand-mark {
  width: 22px;
  height: 26px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.brand > span,
.story-brand > span {
  transform: translateY(0.085em);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #09101b;
}

.hero-room,
.hero-room img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-room {
  filter: blur(0) brightness(1) saturate(1);
  transform: scale(1);
  transform-origin: center;
  transition: filter 1.05s ease, transform 1.15s cubic-bezier(0.16, 0.72, 0.18, 1);
}

.sound-entry-pending .hero-room {
  filter: blur(4.5px) brightness(0.67) saturate(0.82);
  transform: scale(1.022);
}

.hero-room img {
  object-fit: cover;
}

.hero-room img {
  inset: auto;
  top: var(--hero-plate-y, 0);
  left: var(--hero-plate-x, 0);
  width: var(--hero-plate-width, 100%);
  height: var(--hero-plate-height, 100%);
  max-width: none;
  object-fit: fill;
  animation: room-arrival 1.8s cubic-bezier(0.2, 0.7, 0.15, 1) both;
}

@keyframes room-arrival {
  from { opacity: 0.72; filter: brightness(0.76); }
  to { opacity: 1; filter: brightness(1); }
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.8) 0%, rgba(5, 7, 12, 0.52) 30%, rgba(5, 7, 12, 0.06) 62%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.44) 0%, transparent 25%, transparent 67%, rgba(5, 7, 12, 0.52) 100%);
  transition: opacity 900ms ease;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(980px, 72vw);
  padding: clamp(145px, 17vh, 205px) 0 72px clamp(32px, 5.2vw, 84px);
  transition: opacity 680ms 330ms ease, transform 850ms 280ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.sound-entry-pending .hero-copy {
  opacity: 0;
  transform: translateY(14px);
}

.eyebrow {
  margin: 0 0 19px;
  color: #c7ac87;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 350;
  letter-spacing: -0.047em;
}

h1 {
  max-width: 760px;
  font-size: clamp(64px, 6.45vw, 110px);
  line-height: 0.83;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: #dfc59f;
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(255, 248, 237, 0.84);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.5;
  text-wrap: balance;
}

.hero-download-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
  padding: 0 20px;
  border: 1px solid rgba(245, 226, 196, 0.72);
  border-radius: 999px;
  color: #1b1510;
  background: rgba(237, 215, 180, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-download-action:hover,
.hero-download-action:focus-visible {
  border-color: #f5e5cb;
  background: #f5e5cb;
  transform: translateY(-1px);
}

.hero-download-action.is-unavailable {
  cursor: default;
  pointer-events: none;
  color: rgba(255, 246, 232, 0.56);
  border-color: rgba(241, 214, 175, 0.22);
  background: rgba(20, 17, 16, 0.3);
  box-shadow: inset 0 1px rgba(255, 248, 236, 0.045), 0 10px 30px rgba(0, 0, 0, 0.11);
}

.hero-download-action svg {
  width: 19px;
  height: 19px;
  flex: none;
  fill: currentColor;
}

.enter-action svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-actions .hero-download-action {
  margin-top: 0;
}

.mac-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: rgba(250, 239, 222, 0.7);
  font-size: 12.5px;
  font-weight: 500;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mac-action:hover,
.mac-action:focus-visible {
  color: rgba(255, 247, 235, 0.96);
  transform: translateY(-1px);
}

.mac-action svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: currentColor;
}

.hero-mac-action {
  padding: 0 8px;
}

.header-actions {
  position: fixed;
  z-index: 72;
  top: 24px;
  right: clamp(28px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 9px;
  pointer-events: auto;
  transition: opacity 320ms ease, transform 380ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.header-actions.is-yielding {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.header-mac-action {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(241, 214, 175, 0.24);
  background: rgba(20, 17, 16, 0.2);
  backdrop-filter: blur(18px) saturate(122%);
  -webkit-backdrop-filter: blur(18px) saturate(122%);
  box-shadow: inset 0 1px rgba(255, 248, 236, 0.06), 0 10px 30px rgba(0, 0, 0, 0.12);
}

.header-mac-action svg {
  width: 16px;
  height: 16px;
}

.header-mac-action:hover,
.header-mac-action:focus-visible {
  border-color: rgba(245, 221, 185, 0.46);
  background: rgba(237, 215, 180, 0.1);
}

.header-enter-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid rgba(245, 226, 196, 0.72);
  border-radius: 999px;
  color: #1b1510;
  background: rgba(237, 215, 180, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-enter-action:hover,
.header-enter-action:focus-visible {
  border-color: #f5e5cb;
  background: #f5e5cb;
  transform: translateY(-1px);
}

.header-enter-action svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-download {
  pointer-events: auto;
}

.header-download--desktop {
  position: fixed;
  z-index: 72;
  top: 24px;
  right: clamp(28px, 4vw, 64px);
  min-height: 46px;
  margin-top: 0;
  padding: 0 17px;
  font-size: 13px;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 247, 234, 0.035);
  transition:
    opacity 320ms ease,
    color 260ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 320ms ease,
    transform 380ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.header-download--desktop.is-supporting {
  color: rgba(250, 239, 222, 0.88);
  border-color: rgba(241, 214, 175, 0.34);
  background: rgba(20, 17, 16, 0.28);
  box-shadow:
    inset 0 1px rgba(255, 248, 236, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px) saturate(122%);
  -webkit-backdrop-filter: blur(18px) saturate(122%);
}

.header-download--desktop.is-supporting:hover,
.header-download--desktop.is-supporting:focus-visible {
  color: rgba(255, 246, 232, 0.98);
  border-color: rgba(245, 221, 185, 0.58);
  background: rgba(237, 215, 180, 0.14);
  box-shadow:
    inset 0 1px rgba(255, 248, 236, 0.13),
    0 12px 34px rgba(0, 0, 0, 0.18);
}

.header-download--desktop.is-yielding {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.header-desktop-note {
  display: none;
}

.sound-entry-pending .header-download,
.sound-entry-opening .header-download,
.sound-entry-pending .header-actions,
.sound-entry-opening .header-actions,
.sound-entry-pending .header-desktop-note,
.sound-entry-opening .header-desktop-note {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
}

.download-actions,
.final-actions {
  display: flex;
  gap: 7px;
}

.download-button {
  display: inline-flex;
  min-width: 166px;
  min-height: 58px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.download-button:hover,
.download-button:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.download-button-primary {
  color: var(--warm-ink);
  border-color: var(--warm);
  background: var(--warm);
}

.download-button-primary:hover,
.download-button-primary:focus-visible {
  color: #0f0c09;
  border-color: #f2e0c4;
  background: #f2e0c4;
}

.download-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.download-button span {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
}

.download-button small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.67;
}

.download-mobile-note {
  display: none;
}

.hero-people {
  position: absolute;
  z-index: 7;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-people.is-positioned.is-reveal-ready {
  visibility: visible;
}

.presence-layer {
  position: absolute;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
}

.story-seat-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--person-size, 56px);
  height: var(--person-size, 56px);
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--person-x, 0), var(--person-y, 0));
}

.room-person {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--person-size, 56px);
  height: var(--person-size, 56px);
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: auto;
  transform: translate(var(--person-x, 0), var(--person-y, 0)) scale(0.9);
  transition: none;
}

.room-person[hidden] {
  display: none;
}

.hero-people.is-reveal-ready .room-person {
  transition: opacity 520ms cubic-bezier(0.4, 0, 0.5, 1), transform 780ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-people.is-visible .room-person.is-mounted {
  opacity: var(--room-person-opacity, 1);
  transform: translate(var(--person-x, 0), var(--person-y, 0));
}

.room-person.is-world-presence {
  position: absolute;
  z-index: 1 !important;
  opacity: 1 !important;
  cursor: default;
  pointer-events: auto !important;
  transform: none;
  transition: none;
  will-change: top, left, width, height;
}

.room-person::after {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--person-hit-outset, 8%));
  border-radius: 50%;
}

.room-person:focus-visible {
  outline: 2px solid #ffd291;
  outline-offset: calc(var(--person-size, 56px) * 0.08);
}

.room-person img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  filter: saturate(0.88) sepia(0.16) hue-rotate(-8deg) brightness(0.97) contrast(1.02);
  box-shadow:
    0 0 0 var(--person-ring, 2px) rgba(255, 238, 212, 0.82),
    0 6px 20px rgba(0, 0, 0, 0.5);
  transition: box-shadow 260ms ease, filter 320ms ease, transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.room-person:hover img,
.room-person:focus-visible img,
.room-person.is-pinned img {
  box-shadow:
    0 0 0 var(--person-ring, 2px) #ffd291,
    0 0 18px rgba(242, 180, 92, 0.45),
    0 6px 20px rgba(0, 0, 0, 0.5);
}

.room-person.is-story-noticing img {
  filter: saturate(0.94) sepia(0.12) hue-rotate(-8deg) brightness(1.04) contrast(1.02);
  box-shadow:
    0 0 0 var(--person-ring, 2px) #f6d8aa,
    0 0 24px rgba(237, 173, 92, 0.5),
    0 9px 26px rgba(0, 0, 0, 0.46);
  transform: translateY(-3px) scale(1.018);
}

.room-person.is-story-noticing .room-person-glyph {
  animation: story-notice 480ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes story-notice {
  0% { transform: rotate(0deg); }
  48% { transform: rotate(-7deg) translateY(-1px); }
  100% { transform: rotate(0deg); }
}

.room-person-glyph {
  position: absolute;
  bottom: -6%;
  width: 30%;
  height: 30%;
  fill: none;
  color: #fff;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.75));
  transform-origin: 34% 72%;
  transition: opacity 320ms ease, transform 460ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.room-person-primary-glyph {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.story-pen-glyph {
  opacity: 0;
  transform: scale(0.72) rotate(10deg);
}

.room-person.is-story-author .room-person-primary-glyph {
  opacity: 0;
  transform: scale(0.72) rotate(-8deg);
}

.room-person.is-story-author .story-pen-glyph {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.room-person.is-world-presence img {
  animation: story-world-float 5.6s ease-in-out infinite;
  box-shadow:
    0 0 0 var(--person-ring, 2px) rgba(255, 238, 212, 0.88),
    0 0 22px rgba(232, 169, 92, 0.15),
    0 10px 28px rgba(0, 0, 0, 0.5);
}

.room-person.is-story-writing img {
  animation: story-ink-glow 1.48s ease-in-out both;
}

.room-person.is-story-writing .story-pen-glyph {
  animation: story-write 1.42s cubic-bezier(0.3, 0.7, 0.2, 1) 90ms both;
}

.room-person--right .room-person-glyph { right: -8%; }
.room-person--left .room-person-glyph { left: -8%; }

.room-profile {
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  min-width: 180px;
  max-width: 260px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #f4efe7;
  background: rgba(26, 22, 20, 0.5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(32px) saturate(165%);
  opacity: 0;
  pointer-events: auto;
  transition: opacity 160ms ease;
}

.room-profile[hidden] {
  display: none;
}

.room-profile.is-visible {
  opacity: 1;
}

.room-profile::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 100%;
  bottom: -10px;
  width: 30px;
}

.room-profile.card--left::before {
  right: auto;
  left: 100%;
}

.room-profile-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}

.room-profile-name {
  min-width: 0;
  overflow: hidden;
  color: #f4efe7;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.05;
  font-weight: 550;
  letter-spacing: -0.003em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.room-profile-origin {
  display: inline-flex;
  flex: none;
  align-items: center;
  line-height: 1;
}

.room-profile-flag {
  width: 15px;
  height: 11.25px;
  flex: none;
  border-radius: 1.5px;
  object-fit: cover;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.room-profile-activity {
  margin-top: 5px;
  color: rgba(244, 239, 231, 0.58);
  font-size: 13px;
}

.room-profile-meta {
  margin-top: 3px;
  color: rgba(244, 239, 231, 0.34);
  font-size: 12.5px;
}

.room-profile-where {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: rgba(244, 239, 231, 0.34);
  font-size: 12.5px;
  white-space: nowrap;
}

.room-profile-pin {
  width: 13px;
  height: 13px;
  flex: none;
  margin-left: 1px;
  fill: none;
  color: rgba(224, 194, 154, 0.58);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  bottom: 29px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity 500ms 820ms ease, transform 700ms 760ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.sound-entry-pending .scroll-cue {
  opacity: 0;
  transform: translate(-50%, 8px);
}

.scroll-cue svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  animation: scroll-nudge 1.8s ease-in-out infinite;
}

@keyframes scroll-nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.story {
  --story-intro: 0;
  --story-prose-size: clamp(23px, 1.8vw, 27px);
  position: relative;
  z-index: 2;
  min-height: 2300px;
  margin-top: -7svh;
  overflow: clip;
  isolation: isolate;
  padding: calc(7svh + clamp(150px, 14vw, 220px)) clamp(28px, 7vw, 112px) clamp(150px, 12vw, 210px);
  background: transparent;
}

.story-environment,
.story-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-environment {
  z-index: -3;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 2.5%, #000 7%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 2.5%, #000 7%, #000 100%);
}

.story-environment__layer {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: none;
  pointer-events: none;
  user-select: none;
  object-fit: cover;
  object-position: center;
}

.story-environment__layer--upper {
  top: 0;
  height: 54%;
  object-position: center top;
}

.story-environment__layer--lower {
  top: 46%;
  height: 54%;
  object-position: center top;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 100%);
}

.story-atmosphere {
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 38% 16% at 50% 26%, rgba(226, 151, 76, 0.11), transparent 76%),
    linear-gradient(90deg, rgba(7, 5, 4, 0.3), transparent 24%, transparent 76%, rgba(7, 5, 4, 0.34)),
    linear-gradient(180deg, transparent 0%, rgba(13, 8, 6, 0.05) 18%, rgba(10, 8, 8, 0.16) 70%, #0b0d12 100%);
}

.story::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 11% 0 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 236, 210, 0.009) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 50% 44%, transparent 0%, transparent 56%, rgba(3, 3, 4, 0.18) 100%);
  mix-blend-mode: soft-light;
}

.story-letter {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  margin: 0 auto;
  text-align: center;
}

.story-brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 11px;
  margin-bottom: clamp(100px, 9vw, 150px);
  color: rgba(247, 235, 218, 0.84);
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.025em;
  opacity: calc(0.28 + var(--story-intro) * 0.72);
  transform: translateY(calc((1 - var(--story-intro)) * 16px));
  transition: opacity 500ms ease, transform 700ms cubic-bezier(0.22, 0.75, 0.2, 1);
}

.story-brand .brand-mark {
  width: 20px;
  height: 24px;
}

.story h2 {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  color: #f1e2cd;
  font-size: var(--story-prose-size);
  line-height: 1.55;
  letter-spacing: -0.014em;
  text-wrap: balance;
}

.story-copy {
  display: grid;
  gap: clamp(94px, 9vw, 142px);
  margin-top: clamp(112px, 10vw, 155px);
  color: rgba(244, 231, 211, 0.82);
  font-family: var(--serif);
  font-size: var(--story-prose-size);
  line-height: 1.55;
  letter-spacing: -0.014em;
}

.story-copy p,
.story-closing {
  margin: 0;
  text-wrap: pretty;
}

.story-pair {
  display: grid;
  gap: clamp(48px, 4.5vw, 66px);
}

.story-copy .story-lead {
  color: rgba(247, 234, 215, 0.9);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.story-closing {
  margin-top: clamp(145px, 13vw, 205px);
  color: rgba(244, 225, 200, 0.9);
  font-family: var(--serif);
  font-size: var(--story-prose-size);
  line-height: 1.55;
  letter-spacing: -0.014em;
}

.story-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: clamp(72px, 7vw, 108px);
}

.story-signature strong {
  color: rgba(246, 233, 214, 0.9);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 450;
}

.story-signature span {
  color: rgba(242, 225, 202, 0.42);
  font-size: 12px;
  letter-spacing: 0.045em;
}

.story-download {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(48px, 5vw, 68px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 700ms 260ms ease,
    transform 900ms 180ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.story-signature.is-written + .story-download {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.story-download:target {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.story-download-action {
  margin-top: 0;
  box-shadow:
    0 14px 40px rgba(16, 9, 4, 0.3),
    0 0 38px rgba(230, 175, 107, 0.045);
}

.story-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.story-mac-action {
  padding: 0 8px;
}

.story-beat {
  --story-reveal: 0;
  --story-conceal: 100%;
  clip-path: inset(0 0 var(--story-conceal) 0);
  opacity: var(--story-reveal);
  transform: translateY(calc((1 - var(--story-reveal)) * 22px));
  transition:
    color 450ms ease,
    clip-path 120ms linear,
    opacity 160ms linear,
    transform 700ms cubic-bezier(0.22, 0.75, 0.2, 1);
  will-change: clip-path, opacity, transform;
}

.story-beat.is-being-written {
  color: rgba(250, 239, 221, 0.96);
  text-shadow: 0 0 24px rgba(230, 164, 87, 0.13);
}

.story-beat.is-written {
  will-change: auto;
}


@keyframes story-write {
  0%, 14%, 100% { transform: rotate(0deg) translate(0); }
  30% { transform: rotate(-7deg) translate(-1px, 1px); }
  47% { transform: rotate(4deg) translate(1px, -1px); }
  64% { transform: rotate(-5deg) translate(-1px, 1px); }
  79% { transform: rotate(3deg) translate(1px, -1px); }
}

@keyframes story-ink-glow {
  0%, 100% {
    filter: saturate(0.9) sepia(0.14) hue-rotate(-8deg) brightness(0.99) contrast(1.02);
    transform: translate3d(-1px, 1px, 0) rotate(-0.35deg) scale(1);
  }
  42% {
    filter: saturate(0.98) sepia(0.1) hue-rotate(-8deg) brightness(1.07) contrast(1.02);
    transform: translate3d(1px, -2px, 0) rotate(0.35deg) scale(1.025);
  }
  76% {
    filter: saturate(0.94) sepia(0.12) hue-rotate(-8deg) brightness(1.03) contrast(1.02);
    transform: translate3d(-1px, -1px, 0) rotate(-0.15deg) scale(1.012);
  }
}

@keyframes story-world-float {
  0%, 100% { transform: translate3d(-1px, 1px, 0) rotate(-0.45deg); }
  38% { transform: translate3d(2px, -3px, 0) rotate(0.55deg); }
  68% { transform: translate3d(-1px, -1px, 0) rotate(0.15deg); }
}

.lives {
  position: relative;
  padding: clamp(110px, 14vw, 220px) clamp(24px, 5vw, 80px);
  background: #0b0d12;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) 1.35fr 0.8fr;
  align-items: end;
  gap: clamp(25px, 5vw, 90px);
  max-width: 1500px;
  margin: 0 auto clamp(65px, 8vw, 120px);
}

.section-intro .eyebrow {
  align-self: start;
  margin-top: 11px;
}

.section-intro h2,
.together-copy h2,
.final-copy h2 {
  font-size: clamp(58px, 6.5vw, 112px);
  line-height: 0.88;
}

.section-intro > p:last-child,
.together-copy > p:last-child,
.final-copy > p {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.58;
}

.lives-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.lives-scenes {
  position: relative;
  min-height: min(68vw, 830px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 32px;
  background: #14151a;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.35);
}

.life-scene {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 520ms ease, transform 1s cubic-bezier(0.2, 0.7, 0.15, 1);
}

.life-scene.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.life-scene picture,
.life-scene img {
  width: 100%;
  height: 100%;
}

.life-scene img {
  object-fit: cover;
}

.life-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 6, 9, 0.76) 100%);
}

.scene-caption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(22px, 3vw, 44px);
}

.scene-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.scene-person img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  object-fit: cover;
}

.scene-person div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.scene-person strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.scene-person span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.scene-caption > p {
  max-width: 360px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.life-picker {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.life-tab {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 15px;
  padding: 17px 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}

.life-tab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8b783;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.life-tab:hover,
.life-tab:focus-visible,
.life-tab.is-active {
  color: rgba(255, 255, 255, 0.96);
  padding-left: 19px;
}

.life-tab.is-active::before {
  opacity: 1;
}

.life-tab img {
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 180ms ease;
}

.life-tab.is-active img,
.life-tab:hover img {
  filter: saturate(1);
}

.life-tab > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.life-tab strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.life-tab small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.together {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.6fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: clamp(110px, 14vw, 220px) clamp(24px, 5vw, 80px);
  color: #251c14;
  background: #d9c2a1;
}

.together-copy {
  max-width: 510px;
}

.together-copy .eyebrow {
  color: #795a37;
}

.together-copy h2 {
  color: #2c2118;
}

.together-copy > p:last-child {
  margin-top: 32px;
  color: rgba(44, 33, 24, 0.68);
}

.room-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  aspect-ratio: 1.17;
}

.room-mosaic figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #2a251e;
}

.room-mosaic figure:first-child { border-radius: 28px 5px 5px; }
.room-mosaic figure:nth-child(2) { border-radius: 5px 28px 5px 5px; }
.room-mosaic figure:nth-child(3) { border-radius: 5px 5px 5px 28px; }
.room-mosaic figure:nth-child(4) { border-radius: 5px 5px 28px; }

.room-mosaic figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.88);
  transition: filter 300ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.15, 1);
}

.room-mosaic figure:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.025);
}

.shared-place {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(112px, 14vw, 220px);
  aspect-ratio: 1;
  padding: 8px;
  border: 1px solid rgba(255, 239, 217, 0.66);
  border-radius: 50%;
  background: rgba(12, 12, 15, 0.45);
  box-shadow: 0 20px 65px rgba(20, 12, 5, 0.42);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(7px);
}

.shared-place img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(45px, 9vw, 150px);
  min-height: 90svh;
  padding: clamp(100px, 12vw, 190px) clamp(24px, 8vw, 130px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 55%, rgba(114, 85, 52, 0.17), transparent 28%),
    #080a0f;
}

.final-orb {
  position: relative;
  width: min(38vw, 600px);
  aspect-ratio: 1;
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(232, 205, 168, 0.4);
  border-radius: 50%;
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.48), 0 0 90px rgba(181, 134, 78, 0.08);
}

.final-orb::before,
.final-orb::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(232, 205, 168, 0.1);
  border-radius: 50%;
}

.final-orb::before { inset: -20px; }
.final-orb::after { inset: -42px; opacity: 0.45; }

.final-orb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.final-copy {
  max-width: 700px;
}

.final-copy > p {
  max-width: 500px;
  margin-top: 29px;
}

.final-actions {
  margin-top: 33px;
}

.account-note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 25px;
  padding: 32px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  background: #080a0f;
  font-size: 11px;
}

.site-footer .brand {
  font-size: 20px;
}

.site-footer .brand-mark {
  width: 16px;
  height: 19px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > span {
  text-align: right;
}

:focus-visible {
  outline: 2px solid #e7c99e;
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .hero-copy {
    width: 60vw;
  }

  .section-intro {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
    max-width: 520px;
  }

  .together {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 850px) {
  .site-header {
    padding: 22px 32px;
  }

  .hero-copy {
    width: min(680px, 78vw);
    padding-left: 32px;
  }

  .lives-experience {
    grid-template-columns: 1fr;
  }

  .life-picker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    order: -1;
  }

  .life-tab {
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
    text-align: center;
  }

  .life-tab:hover,
  .life-tab:focus-visible,
  .life-tab.is-active {
    padding-left: 12px;
  }

  .life-tab small {
    display: none;
  }

  .life-tab::before {
    top: auto;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
  }

  .together {
    grid-template-columns: 1fr;
  }

  .together-copy {
    max-width: 680px;
  }

  .room-mosaic {
    width: 100%;
    max-width: 760px;
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .site-header {
    justify-content: space-between;
    padding: 19px 20px;
  }

  .brand {
    font-size: 24px;
  }

  .brand-mark {
    width: 19px;
    height: 23px;
  }

  .header-download--desktop {
    display: none;
  }

  .header-actions {
    top: 15px;
    right: 16px;
  }

  .header-mac-action {
    display: none;
  }

  .header-enter-action {
    min-height: 43px;
    padding: 0 14px;
    font-size: 12.5px;
  }

  .header-enter-action svg {
    display: none;
  }

  .header-desktop-note {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin: -10px -5px -10px auto;
    padding: 10px 5px;
    color: rgba(247, 237, 222, 0.56);
    font-size: 12.5px;
    font-weight: 450;
    letter-spacing: 0.015em;
    white-space: nowrap;
    user-select: none;
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .sound-entry {
    padding: 78px 18px 28px;
  }

  .sound-entry__portal {
    --sound-portal-y: 0px;
    width: min(84vw, 320px);
    min-height: 300px;
    padding: 65px 24px 25px;
    border-radius: 170px 170px 21px 21px;
    transform: translateY(var(--sound-portal-y));
  }

  .sound-entry h2 {
    margin-bottom: 30px;
    font-size: clamp(27px, 7.7vw, 32px);
  }

  .sound-entry__primary {
    min-height: 49px;
    font-size: 13.5px;
  }

  .ambient-sound {
    bottom: 18px;
    left: 16px;
    width: 42px;
    height: 42px;
    padding: 0 11px;
  }

  .ambient-sound:hover,
  .ambient-sound:focus-visible {
    width: 42px;
  }

  .ambient-sound__label {
    display: none;
  }

  .hero {
    min-height: max(100svh, 177.7vw);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 12, 0.8) 0%, rgba(5, 7, 12, 0.45) 42%, rgba(5, 7, 12, 0.08) 70%, rgba(5, 7, 12, 0.56) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 112px 20px 0;
  }

  h1 {
    max-width: 490px;
    font-size: clamp(55px, 17vw, 78px);
    line-height: 0.86;
  }

  .hero-subtitle {
    width: min(92%, 430px);
    margin-top: 21px;
    font-size: 16px;
    line-height: 1.43;
  }

  .download-desktop {
    display: none;
  }

  .hero-download-action {
    display: inline-flex;
  }

  .hero-actions {
    width: min(100%, 340px);
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    margin-top: 25px;
  }

  .hero-enter-action {
    min-height: 50px;
    padding: 0 19px;
    font-size: 13.5px;
  }

  .hero-mac-action {
    display: none;
  }

  .download-mobile-note {
    display: flex;
    width: fit-content;
    max-width: 360px;
    flex-direction: column;
    gap: 5px;
    margin-top: 22px;
    padding-left: 13px;
    border-left: 1px solid rgba(229, 202, 164, 0.52);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
  }

  .download-mobile-note small {
    color: rgba(255, 255, 255, 0.44);
    font-size: 10px;
    line-height: 1.4;
  }

  .scroll-cue {
    right: 20px;
    bottom: 22px;
    left: auto;
    align-items: flex-end;
    transform: none;
  }

  .sound-entry-pending .scroll-cue {
    opacity: 0;
    transform: translateY(8px);
  }

  .story {
    --story-prose-size: clamp(21px, 6vw, 23px);
    /*
     * The room and its floor are one scene. On phones the old 5svh overlap
     * was shorter than the percentage-based environment mask, so the fade
     * finished against the page's near-black background and exposed a seam.
     * Keep the prose in the same visual position while giving the two images
     * enough shared area for a complete, fixed-distance handoff.
     */
    --story-mobile-overlap: clamp(112px, 16svh, 148px);
    min-height: auto;
    margin-top: calc(-1 * var(--story-mobile-overlap));
    padding: calc(var(--story-mobile-overlap) + 118px) 24px 128px;
  }

  .story-environment {
    /* Fixed pixels are intentional: percentage stops scale with the entire
       story and made the same blend several times longer on narrow screens. */
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0,
      rgba(0, 0, 0, 0.16) 18px,
      rgba(0, 0, 0, 0.62) 58px,
      #000 104px,
      #000 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0,
      rgba(0, 0, 0, 0.16) 18px,
      rgba(0, 0, 0, 0.62) 58px,
      #000 104px,
      #000 100%
    );
  }

  .story-atmosphere {
    background:
      radial-gradient(ellipse 70% 12% at 50% 20%, rgba(226, 151, 76, 0.09), transparent 78%),
      linear-gradient(90deg, rgba(7, 5, 4, 0.25), transparent 20%, transparent 80%, rgba(7, 5, 4, 0.26)),
      linear-gradient(180deg, transparent 0%, rgba(13, 8, 6, 0.03) 14%, rgba(10, 8, 8, 0.12) 72%, #0b0d12 100%);
  }

  .story-brand {
    margin-bottom: 106px;
    font-size: 24px;
  }

  .story h2 {
    max-width: 390px;
  }

  .story-copy {
    gap: 142px;
    margin-top: 150px;
  }

  .story-pair {
    gap: 112px;
  }

  .story-closing {
    margin-top: 168px;
  }

  .story-signature {
    margin-top: 94px;
  }

  .story-download {
    display: flex;
    margin-top: 58px;
  }

  .story-download-action {
    min-height: 48px;
    display: inline-flex;
    padding: 0 18px;
    font-size: 13.5px;
  }

  .story-actions {
    flex-direction: column;
    gap: 4px;
  }

  .story-mac-action {
    display: none;
  }

  .lives {
    padding: 105px 16px;
  }

  .section-intro {
    display: block;
    margin-bottom: 48px;
    padding: 0 4px;
  }

  .section-intro h2,
  .together-copy h2,
  .final-copy h2 {
    font-size: clamp(54px, 15vw, 76px);
  }

  .section-intro > p:last-child {
    max-width: 420px;
    margin-top: 24px;
    font-size: 15px;
  }

  .lives-experience {
    gap: 20px;
  }

  .lives-scenes {
    min-height: 124vw;
    max-height: 700px;
    border-radius: 22px;
  }

  .life-scene img {
    object-position: center;
  }

  .life-picker {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin: 0 -16px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .life-picker::-webkit-scrollbar {
    display: none;
  }

  .life-tab {
    width: auto;
    min-width: max-content;
    flex-direction: row;
    gap: 9px;
    padding: 9px 12px 9px 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.025);
    text-align: left;
  }

  .life-tab:hover,
  .life-tab:focus-visible,
  .life-tab.is-active {
    padding-left: 9px;
    border-color: rgba(223, 197, 159, 0.38);
    background: rgba(223, 197, 159, 0.07);
  }

  .life-tab::before {
    display: none;
  }

  .life-tab img {
    width: 36px;
    height: 36px;
  }

  .life-tab strong {
    font-size: 18px;
  }

  .scene-caption {
    display: block;
    padding: 20px;
  }

  .scene-person img {
    width: 40px;
    height: 40px;
  }

  .scene-person strong {
    font-size: 21px;
  }

  .scene-caption > p {
    margin: 14px 0 0;
    font-size: 11px;
    text-align: left;
  }

  .together {
    gap: 55px;
    padding: 105px 16px;
  }

  .together-copy {
    padding: 0 4px;
  }

  .together-copy > p:last-child {
    max-width: 420px;
    margin-top: 25px;
    font-size: 15px;
  }

  .room-mosaic {
    gap: 5px;
    aspect-ratio: 0.88;
  }

  .room-mosaic figure:first-child { border-radius: 18px 3px 3px; }
  .room-mosaic figure:nth-child(2) { border-radius: 3px 18px 3px 3px; }
  .room-mosaic figure:nth-child(3) { border-radius: 3px 3px 3px 18px; }
  .room-mosaic figure:nth-child(4) { border-radius: 3px 3px 18px; }

  .room-mosaic figure img {
    object-position: center;
  }

  .shared-place {
    width: 118px;
    padding: 6px;
  }

  .final-cta {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 74px;
    padding: 115px 20px 100px;
  }

  .final-orb {
    width: min(82vw, 420px);
    align-self: center;
  }

  .final-copy {
    width: 100%;
  }

  .final-copy > p {
    max-width: 420px;
    margin-top: 24px;
    font-size: 15px;
  }

  .final-copy .download-mobile-note {
    margin-top: 27px;
  }

  .account-note {
    margin-top: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 28px 20px;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-copy {
    padding-top: 102px;
  }

  h1 {
    font-size: clamp(48px, 13.6vw, 53px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .room-profile-where {
    flex-wrap: wrap;
  }

  .story {
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

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

  .hero-room,
  .hero-copy,
  .room-person,
  .scroll-cue,
  .ambient-sound {
    transition-delay: 0s !important;
  }

}

/* Landing legal footer */

.landing-legal-footer {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  padding: 28px clamp(22px, 5vw, 80px);
  border-top: 1px solid rgba(246, 235, 216, 0.075);
  color: rgba(243, 234, 219, 0.43);
  background:
    radial-gradient(circle at 50% -160%, rgba(208, 159, 103, 0.08), transparent 48%),
    #07090d;
  font-size: 11px;
  letter-spacing: 0.035em;
}

.landing-legal-footer p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.landing-legal-footer a {
  color: rgba(243, 234, 219, 0.61);
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.landing-legal-footer a:hover,
.landing-legal-footer a:focus-visible,
.landing-legal-footer a[aria-current="page"] {
  color: #f1e3cf;
}

.landing-legal-footer__dot {
  color: rgba(232, 210, 178, 0.24);
}

.story > .landing-legal-footer {
  position: absolute;
  right: clamp(28px, 7vw, 112px);
  bottom: clamp(30px, 3vw, 46px);
  left: clamp(28px, 7vw, 112px);
  min-height: 0;
  margin: 0;
  padding: 0;
  border-top: 0;
  color: rgba(243, 234, 219, 0.48);
  background: transparent;
  text-shadow: 0 2px 18px rgba(4, 3, 2, 0.72);
}

.story > .landing-legal-footer a {
  color: rgba(243, 234, 219, 0.66);
}

/* Legal documents */

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(ellipse 58% 32% at 78% 0%, rgba(136, 104, 72, 0.12), transparent 72%),
    radial-gradient(ellipse 34% 28% at 8% 46%, rgba(42, 67, 71, 0.11), transparent 78%),
    #090b10;
}

.legal-page::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.009) 1px, transparent 1px);
  background-size: 100% 5px, 6px 100%;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

.legal-page::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 148px;
  right: clamp(-240px, -12vw, -80px);
  width: clamp(330px, 38vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 210, 178, 0.055);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(232, 210, 178, 0.018),
    0 0 0 112px rgba(232, 210, 178, 0.012);
  pointer-events: none;
}

.legal-header,
.legal-shell,
.legal-page .landing-legal-footer {
  position: relative;
  z-index: 1;
}

.legal-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5.2vw, 84px);
  border-bottom: 1px solid rgba(246, 235, 216, 0.07);
  background: linear-gradient(to bottom, rgba(9, 11, 16, 0.94), rgba(9, 11, 16, 0.73));
  backdrop-filter: blur(18px) saturate(118%);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
}

.legal-header .brand {
  align-items: center;
  gap: 9px;
  font-size: 23px;
}

.legal-header .brand-mark {
  width: 18px;
  height: 22px;
}

.legal-header .brand > span {
  transform: none;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(246, 235, 216, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
}

.legal-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(243, 234, 219, 0.48);
  font-size: 11px;
  letter-spacing: 0.045em;
  transition: color 180ms ease, background 180ms ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: rgba(243, 234, 219, 0.8);
}

.legal-nav a[aria-current="page"] {
  color: #f2e6d5;
  background: rgba(239, 214, 180, 0.08);
  box-shadow: inset 0 0 0 1px rgba(239, 214, 180, 0.08);
}

.legal-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 142px) 0 clamp(108px, 12vw, 172px);
}

.legal-title {
  max-width: 850px;
  animation: legal-enter 680ms cubic-bezier(0.22, 0.75, 0.2, 1) both;
}

.legal-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(222, 190, 147, 0.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(222, 190, 147, 0.55);
}

.legal-title h1 {
  max-width: none;
  color: #f1e6d6;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.legal-lede {
  max-width: 730px;
  margin: 35px 0 0;
  color: rgba(243, 234, 219, 0.67);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 350;
  line-height: 1.56;
  letter-spacing: -0.012em;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 700px);
  gap: clamp(64px, 9vw, 126px);
  align-items: start;
  margin-top: clamp(88px, 10vw, 142px);
  animation: legal-enter 680ms 110ms cubic-bezier(0.22, 0.75, 0.2, 1) both;
}

@keyframes legal-enter {
  from { opacity: 0; transform: translateY(13px); }
  to { opacity: 1; transform: translateY(0); }
}

.legal-folio {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 210, 178, 0.17);
  color: rgba(243, 234, 219, 0.54);
  font-size: 11px;
  line-height: 1.55;
}

.legal-folio p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.legal-folio p > span {
  color: rgba(243, 234, 219, 0.3);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-folio a {
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.legal-folio a:hover,
.legal-folio a:focus-visible {
  color: #efe0cb;
}

.legal-folio nav {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  padding-top: 19px;
  border-top: 1px solid rgba(232, 210, 178, 0.08);
  color: rgba(243, 234, 219, 0.34);
}

.legal-document {
  counter-reset: legal-sections;
}

.legal-document section {
  scroll-margin-top: 122px;
}

.legal-document section + section {
  margin-top: 62px;
  padding-top: 62px;
  border-top: 1px solid rgba(232, 210, 178, 0.095);
}

.legal-document h2 {
  margin: 0 0 23px;
  color: #eee0cc;
  font-size: clamp(25px, 2.4vw, 33px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.legal-document p {
  margin: 0;
  color: rgba(243, 234, 219, 0.64);
  font-size: 15px;
  line-height: 1.82;
}

.legal-document p + p {
  margin-top: 18px;
}

.legal-document strong {
  color: rgba(243, 234, 219, 0.84);
  font-weight: 600;
}

.legal-document a {
  color: #e5c79f;
  text-decoration: underline;
  text-decoration-color: rgba(229, 199, 159, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.legal-document a:hover,
.legal-document a:focus-visible {
  color: #f2dcc0;
  text-decoration-color: currentColor;
}

.landing-legal-footer--document {
  background: rgba(6, 8, 12, 0.72);
}

@media (max-width: 760px) {
  .legal-header {
    min-height: 72px;
    padding: 17px 20px;
  }

  .legal-header .brand {
    font-size: 21px;
  }

  .legal-nav a {
    padding: 7px 10px;
    font-size: 10px;
  }

  .legal-shell {
    width: min(100% - 40px, 700px);
    padding-top: 68px;
  }

  .legal-title h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .legal-lede {
    margin-top: 27px;
    font-size: 18px;
  }

  .legal-layout {
    display: block;
    margin-top: 72px;
  }

  .legal-folio {
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-bottom: 68px;
  }

  .legal-folio nav {
    display: none;
  }

  .legal-document section + section {
    margin-top: 48px;
    padding-top: 48px;
  }

  .legal-document p {
    font-size: 14px;
    line-height: 1.78;
  }
}

@media (max-width: 420px) {
  .legal-header .brand-mark {
    display: none;
  }

  .legal-header .brand {
    font-size: 19px;
  }

  .legal-shell {
    width: calc(100% - 34px);
  }

  .legal-folio {
    grid-template-columns: 1fr;
  }

  .landing-legal-footer {
    min-height: 96px;
  }
}
