:root {
  --ink: #f6fbf8;
  --muted: #c6d6d1;
  --soft: #91a7a1;
  --night: #070a0b;
  --charcoal: #101817;
  --charcoal-2: #15211f;
  --cyan: #20d8f2;
  --green: #7fcf9a;
  --gold: #d6b16c;
  --paper: #fff8e7;
  --line: rgba(246, 251, 248, 0.18);
  --panel: rgba(7, 10, 11, 0.68);
  --panel-strong: rgba(9, 17, 17, 0.88);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--cyan);
  color: var(--night);
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  border: 1px solid var(--cyan);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--night);
  color: var(--ink);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(246, 251, 248, 0.12);
  background: linear-gradient(90deg, rgba(7, 10, 11, 0.84), rgba(16, 24, 23, 0.56));
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(32, 216, 242, 0.68);
  border-radius: 8px;
  background: rgba(32, 216, 242, 0.1);
  color: var(--cyan);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--paper);
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.live-banner {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(246, 251, 248, 0.14);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(246, 251, 248, 0.055);
  box-shadow: inset 0 1px 0 rgba(246, 251, 248, 0.05);
}

.live-status {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(246, 251, 248, 0.14);
  padding-right: 12px;
}

.status-light {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(214, 177, 108, 0.72);
}

.live-status[data-state="open"] .status-light {
  background: var(--green);
  box-shadow: 0 0 16px rgba(127, 207, 154, 0.8);
}

.live-status strong,
.live-status small {
  display: block;
}

.live-status strong {
  color: var(--paper);
  font-size: 0.9rem;
}

.live-status small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-feed {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-feed-label {
  flex: 0 0 auto;
  border: 1px solid rgba(32, 216, 242, 0.48);
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(32, 216, 242, 0.1);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-feed p {
  overflow: hidden;
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.room-tabs {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.room-tabs::-webkit-scrollbar {
  display: none;
}

.room-tab,
.directory-button,
.room-action,
.contact-form button {
  min-height: 42px;
  border: 1px solid rgba(246, 251, 248, 0.18);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.room-tab {
  flex: 0 0 auto;
  padding: 9px 12px;
  background: rgba(246, 251, 248, 0.07);
  color: var(--muted);
  white-space: nowrap;
}

.room-tab:hover,
.room-tab:focus-visible,
.directory-button:hover,
.directory-button:focus-visible,
.room-action:hover,
.room-action:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  border-color: rgba(32, 216, 242, 0.7);
  background: rgba(32, 216, 242, 0.13);
  outline: none;
}

.room-tab[aria-current="page"],
.directory-button[aria-current="page"] {
  border-color: rgba(32, 216, 242, 0.86);
  background: rgba(32, 216, 242, 0.18);
  color: var(--paper);
}

.office-page {
  min-height: 100vh;
  background: var(--night);
  --room-focus-x: 50%;
  --room-focus-y: 53%;
  --room-scale: 1.01;
  --room-filter: brightness(1.18) contrast(1.03) saturate(1.06);
  --room-continuation-filter: blur(18px) brightness(1.12) contrast(1.02) saturate(0.98);
}

.office-page[data-room="lobby"] {
  --room-focus-x: 50%;
  --room-focus-y: 55%;
}

.office-page[data-room="ceo"] {
  --room-focus-x: 50%;
  --room-focus-y: 52%;
}

.office-page[data-room="communication"] {
  --room-focus-x: 50%;
  --room-focus-y: 53%;
}

.office-page[data-room="conference"],
.office-page[data-room="eli-connect"] {
  --room-focus-x: 50%;
  --room-focus-y: 56%;
  --room-filter: brightness(1.24) contrast(1.02) saturate(0.95) hue-rotate(-3deg);
  --room-continuation-filter: blur(18px) brightness(1.18) contrast(1.02) saturate(0.92) hue-rotate(-3deg);
}

.office-page[data-room="retainer"] {
  --room-focus-x: 50%;
  --room-focus-y: 54%;
  --room-filter: brightness(1.28) contrast(1.01) saturate(0.92) hue-rotate(-5deg);
  --room-continuation-filter: blur(18px) brightness(1.2) contrast(1.01) saturate(0.9) hue-rotate(-5deg);
}

.office-page[data-room="legal"],
.office-page[data-room="articles"] {
  --room-focus-x: 50%;
  --room-focus-y: 52%;
  --room-filter: brightness(1.16) contrast(1.04) saturate(1.02);
  --room-continuation-filter: blur(18px) brightness(1.1) contrast(1.03) saturate(0.96);
}

.room-hero {
  position: relative;
  min-height: calc(100svh - 77px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 30px 46px;
  isolation: isolate;
}

.room-image,
.room-continuation-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--room-focus-x) var(--room-focus-y);
}

.room-image {
  z-index: -3;
  filter: var(--room-filter);
  transform: scale(var(--room-scale));
  transform-origin: var(--room-focus-x) var(--room-focus-y);
  transition: opacity 240ms ease, transform 520ms ease;
}

.room-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 10, 11, 0.34), rgba(7, 10, 11, 0) 24%, rgba(7, 10, 11, 0.16) 76%, rgba(7, 10, 11, 0.56));
}

.room-hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  height: 32vh;
  content: "";
  background: linear-gradient(180deg, rgba(7, 10, 11, 0), var(--night));
  pointer-events: none;
}

.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 34px;
  align-items: end;
}

.office-directory {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100svh - 170px);
  border: 1px solid rgba(246, 251, 248, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(7, 10, 11, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.directory-kicker,
.room-eyebrow,
.detail-label,
.contact-form span {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.directory-list {
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding-right: 4px;
}

.directory-button {
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: rgba(246, 251, 248, 0.06);
  text-align: left;
}

.directory-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: rgba(127, 207, 154, 0.12);
  color: var(--green);
  font-weight: 800;
}

.directory-copy {
  min-width: 0;
}

.directory-copy strong,
.directory-copy small {
  display: block;
}

.directory-copy strong {
  color: var(--paper);
  font-size: 0.9rem;
}

.directory-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.room-subtitle {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: 1.14rem;
  font-weight: 750;
}

.room-subtitle strong {
  color: var(--paper);
}

.room-content-intro {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.room-content-intro p {
  margin: 0;
}

.room-content-intro p + p {
  margin-top: 16px;
}

.room-intro-heading {
  margin: 34px 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-intro-emphasis {
  color: var(--paper);
  font-weight: 800;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 22px;
}

.room-actions:empty {
  display: none;
}

.room-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 14px;
  background: rgba(246, 251, 248, 0.08);
}

.room-action.primary {
  border-color: rgba(32, 216, 242, 0.9);
  background: linear-gradient(135deg, rgba(32, 216, 242, 0.94), rgba(127, 207, 154, 0.88));
  color: #031111;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(246, 251, 248, 0.22);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(7, 10, 11, 0.52);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  border-color: rgba(32, 216, 242, 0.7);
  color: var(--paper);
  outline: none;
}

.lobby-interaction-layer,
.conference-interaction-layer,
.eli-interaction-layer,
.retainer-interaction-layer,
.founder-interaction-layer,
.articles-interaction-layer,
.legal-interaction-layer,
.communication-interaction-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.lobby-interaction-layer[hidden],
.conference-interaction-layer[hidden],
.eli-interaction-layer[hidden],
.retainer-interaction-layer[hidden],
.founder-interaction-layer[hidden],
.articles-interaction-layer[hidden],
.legal-interaction-layer[hidden],
.communication-interaction-layer[hidden] {
  display: none;
}

.founder-interaction-layer,
.articles-interaction-layer,
.legal-interaction-layer,
.communication-interaction-layer {
  z-index: 0;
}

.scene-hotspot {
  position: absolute;
  border: 1px solid rgba(32, 216, 242, 0.12);
  border-radius: 6px;
  padding: 0;
  background: rgba(32, 216, 242, 0.015);
  box-shadow: inset 0 0 28px rgba(32, 216, 242, 0.04);
  cursor: pointer;
  opacity: 0.64;
  pointer-events: auto;
  transition: border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.lobby-welcome-hotspot {
  left: 80.5%;
  top: 26%;
  width: 11.5%;
  height: 35%;
}

.lobby-identity-hotspot {
  left: 43.5%;
  top: 29%;
  width: 13%;
  height: 26%;
  border-radius: 50%;
}

.conference-hotspot,
.eli-hotspot,
.retainer-hotspot,
.founder-hotspot,
.articles-hotspot,
.legal-hotspot,
.communication-hotspot {
  border-color: rgba(32, 216, 242, 0.2);
  background: rgba(32, 216, 242, 0.025);
  opacity: 0.7;
}

.conference-hotspot::before,
.eli-hotspot::before,
.retainer-hotspot::before,
.founder-hotspot::before,
.articles-hotspot::before,
.legal-hotspot::before,
.communication-hotspot::before {
  opacity: 0.16;
  animation: conference-hotspot-breathe 2800ms ease-in-out infinite;
}

.conference-services-hotspot {
  left: 44.5%;
  top: 20.5%;
  width: 11%;
  height: 13.5%;
  border-radius: 50%;
}

.conference-how-hotspot {
  left: 61%;
  top: 22%;
  width: 10%;
  height: 23.5%;
}

.conference-what-hotspot {
  left: 81%;
  top: 11%;
  width: 17%;
  height: 36%;
}

.conference-after-hotspot {
  left: 44%;
  top: 68%;
  width: 12%;
  height: 14%;
}

.eli-connect-hotspot {
  left: 34%;
  top: 31%;
  width: 9%;
  height: 41%;
}

.eli-definition-hotspot {
  left: 42.5%;
  top: 25%;
  width: 10%;
  height: 20%;
}

.eli-experiment-hotspot {
  left: 59.5%;
  top: 25%;
  width: 8.5%;
  height: 27%;
}

.eli-focus-hotspot {
  left: 77%;
  top: 13%;
  width: 10.5%;
  height: 40%;
}

.retainer-what-hotspot {
  left: 39%;
  top: 24%;
  width: 22%;
  height: 24%;
}

.retainer-work-hotspot {
  left: 25%;
  top: 47%;
  width: 9%;
  height: 18%;
}

.retainer-how-hotspot {
  left: 68%;
  top: 47%;
  width: 19%;
  height: 18%;
}

.retainer-who-hotspot {
  left: 89%;
  top: 16%;
  width: 9%;
  height: 33%;
}

.founder-reason-hotspot {
  left: 9%;
  top: 5%;
  width: 12%;
  height: 45%;
}

.founder-career-hotspot {
  left: 35%;
  top: 15%;
  width: 29%;
  height: 38%;
}

.founder-possibilities-hotspot {
  left: 66%;
  top: 18%;
  width: 9%;
  height: 27%;
}

.founder-future-hotspot {
  left: 42%;
  top: 71%;
  width: 15%;
  height: 17%;
}

.articles-desk-hotspot {
  left: 36%;
  top: 15%;
  width: 22%;
  height: 35%;
}

.articles-library-left-hotspot {
  left: 13%;
  top: 12%;
  width: 22%;
  height: 43%;
}

.articles-library-right-hotspot {
  left: 58%;
  top: 12%;
  width: 20%;
  height: 43%;
}

.articles-progress-hotspot {
  left: 84%;
  top: 58%;
  width: 11%;
  height: 27%;
}

.legal-policies-hotspot {
  left: 37%;
  top: 13%;
  width: 26%;
  height: 31%;
}

.legal-working-hotspot {
  left: 20.5%;
  top: 10.5%;
  width: 10%;
  height: 32%;
}

.legal-philosophy-hotspot {
  left: 71%;
  top: 10.5%;
  width: 10%;
  height: 32%;
}

.legal-rights-hotspot {
  left: 63.5%;
  top: 30%;
  width: 7.5%;
  height: 14%;
  border-radius: 50%;
}

.communication-contact-hotspot {
  left: 37%;
  top: 12%;
  width: 27%;
  height: 34%;
}

.communication-routing-hotspot {
  left: 24%;
  top: 12%;
  width: 9.5%;
  height: 40%;
}

.communication-business-hotspot {
  left: 43%;
  top: 53%;
  width: 20%;
  height: 18%;
}

.scene-hotspot::before,
.scene-hotspot::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.scene-hotspot::before {
  inset: -5px;
  border: 1px solid rgba(163, 124, 255, 0.32);
  border-radius: inherit;
  opacity: 0;
}

.scene-hotspot::after {
  right: -5px;
  top: 18%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(32, 216, 242, 0.9),
    0 0 28px rgba(163, 124, 255, 0.76);
  opacity: 0;
}

.scene-hotspot:hover,
.scene-hotspot:focus-visible,
.scene-hotspot.is-guided,
.scene-hotspot.is-discoverable {
  border-color: rgba(32, 216, 242, 0.8);
  box-shadow:
    inset 0 0 34px rgba(32, 216, 242, 0.08),
    0 0 24px rgba(32, 216, 242, 0.26),
    0 0 48px rgba(163, 124, 255, 0.16);
  opacity: 1;
  outline: none;
}

.scene-hotspot.is-guided::before,
.scene-hotspot.is-discoverable::before {
  animation: lobby-sign-pulse 2400ms ease-in-out infinite;
}

.scene-hotspot.is-guided::after,
.scene-hotspot.is-discoverable::after {
  animation: lobby-sign-spark 1800ms ease-in-out infinite;
}

.lobby-fairy-guide {
  position: absolute;
  left: 47%;
  top: 55%;
  height: min(58vh, 40vw);
  aspect-ratio: 0.805;
  opacity: 0;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.44));
  transform: translate3d(-50%, -88%, 0) scale(0.16) rotate(4deg);
  transform-origin: 50% 74%;
  transition:
    opacity 520ms ease,
    left 1100ms cubic-bezier(0.16, 0.84, 0.24, 1),
    top 1100ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 1100ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.lobby-fairy-guide::before {
  position: absolute;
  inset: 4% -18% 0;
  z-index: -1;
  content: '';
  opacity: 0;
  background:
    radial-gradient(circle at 15% 28%, #fff 0 1px, rgba(32, 216, 242, 0.95) 2px, transparent 6px),
    radial-gradient(circle at 87% 22%, #fff 0 1px, rgba(163, 124, 255, 0.9) 2px, transparent 7px),
    radial-gradient(circle at 8% 62%, #fff 0 1px, rgba(214, 177, 108, 0.82) 2px, transparent 5px),
    radial-gradient(circle at 92% 70%, #fff 0 1px, rgba(32, 216, 242, 0.88) 2px, transparent 6px),
    radial-gradient(circle at 24% 88%, #fff 0 1px, rgba(163, 124, 255, 0.9) 2px, transparent 6px),
    radial-gradient(circle at 76% 92%, #fff 0 1px, rgba(214, 177, 108, 0.82) 2px, transparent 5px);
  filter: drop-shadow(0 0 7px rgba(32, 216, 242, 0.9));
  transition: opacity 500ms ease 720ms;
}

.lobby-fairy-guide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lobby-fairy-guide.is-visible {
  opacity: 0.96;
  transform: translate3d(-50%, -50%, 0) scale(1) rotate(0deg);
}

.lobby-fairy-guide.is-visible.is-directory-mode {
  left: 36%;
  top: 55%;
  transform: translate3d(-50%, -50%, 0) scale(0.72) rotate(-1deg);
}

.lobby-fairy-guide.is-visible.is-sign-mode {
  left: 72%;
  top: 56%;
  transform: translate3d(-50%, -50%, 0) scale(0.68) rotate(1deg);
}

.lobby-fairy-guide.is-visible img {
  animation: lobby-fairy-hover 3200ms ease-in-out 1100ms infinite;
}

.lobby-fairy-guide.is-visible::before {
  opacity: 0.9;
  animation: lobby-guide-sparkles 2100ms ease-in-out 1100ms infinite;
}

.lobby-guide-speech {
  position: absolute;
  left: 58%;
  top: 15%;
  z-index: 4;
  width: min(420px, 30.5vw);
  aspect-ratio: 1.493;
  opacity: 0;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.42));
  transform: translate3d(18px, 12px, 0) scale(0.94);
  transform-origin: 24% 78%;
  transition:
    opacity 420ms ease,
    left 900ms cubic-bezier(0.2, 0.76, 0.24, 1),
    top 900ms cubic-bezier(0.2, 0.76, 0.24, 1),
    transform 900ms cubic-bezier(0.2, 0.76, 0.24, 1);
}

.lobby-guide-speech > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lobby-guide-speech p {
  position: absolute;
  inset: 22% 15% 24% 18%;
  display: grid;
  margin: 0;
  place-items: center;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 1.05vw, 1rem);
  font-weight: 650;
  line-height: 1.38;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.lobby-guide-speech[data-message="1"] p,
.lobby-guide-speech[data-message="4"] p {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.lobby-guide-speech.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.lobby-guide-speech.is-directory-mode {
  left: 38%;
  top: 16%;
}

.lobby-guide-speech.is-visible.is-directory-mode {
  transform: translate3d(0, 0, 0) scale(0.88);
}

.lobby-guide-speech.is-sign-mode {
  left: 42%;
  top: 18%;
  transform-origin: 76% 78%;
}

.lobby-guide-speech.is-visible.is-sign-mode {
  transform: translate3d(0, 0, 0) scale(0.88);
}

.office-directory.is-guided {
  z-index: 5;
  border-color: rgba(32, 216, 242, 0.62);
  box-shadow:
    0 0 0 1px rgba(163, 124, 255, 0.24),
    0 0 20px rgba(32, 216, 242, 0.26),
    0 0 38px rgba(163, 124, 255, 0.12),
    var(--shadow);
  animation: lobby-directory-callout 1800ms ease-in-out infinite;
}

.mobile-directory-toggle {
  display: none;
}

.office-page[data-room="lobby"] .scroll-cue,
.office-page[data-room="lobby"] .room-content-continuation,
.office-page[data-room="conference"] .scroll-cue,
.office-page[data-room="conference"] .room-content-continuation,
.office-page[data-room="eli-connect"] .scroll-cue,
.office-page[data-room="eli-connect"] .room-content-continuation,
.office-page[data-room="retainer"] .scroll-cue,
.office-page[data-room="retainer"] .room-content-continuation,
.office-page[data-room="ceo"] .scroll-cue,
.office-page[data-room="ceo"] .room-content-continuation,
.office-page[data-room="articles"] .scroll-cue,
.office-page[data-room="articles"] .room-content-continuation,
.office-page[data-room="legal"] .scroll-cue,
.office-page[data-room="legal"] .room-content-continuation,
.office-page[data-room="communication"] .scroll-cue,
.office-page[data-room="communication"] .room-content-continuation {
  display: none;
}

.lobby-story-dialog {
  --story-x: -50%;
  position: fixed;
  left: 52%;
  top: 54%;
  z-index: 30;
  width: min(640px, calc(100% - 40px));
  max-height: min(72vh, 680px);
  margin: 0;
  border: 1px solid rgba(32, 216, 242, 0.66);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: rgba(6, 14, 16, 0.86);
  color: var(--ink);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.58),
    -12px 0 34px rgba(32, 216, 242, 0.14),
    14px 0 38px rgba(163, 124, 255, 0.16),
    inset 0 0 38px rgba(214, 177, 108, 0.04);
  backdrop-filter: blur(14px) saturate(1.16);
  transform: translate(var(--story-x), -50%);
}

.lobby-story-dialog[data-discovery="identity"],
.lobby-story-dialog[data-discovery="conference-services"],
.lobby-story-dialog[data-discovery="conference-after"],
.lobby-story-dialog[data-discovery="eli-connect"],
.lobby-story-dialog[data-discovery="eli-definition"],
.lobby-story-dialog[data-discovery="retainer-what"],
.lobby-story-dialog[data-discovery="retainer-work"],
.lobby-story-dialog[data-discovery="founder-reason"],
.lobby-story-dialog[data-discovery="founder-career"],
.lobby-story-dialog[data-discovery="founder-future"],
.lobby-story-dialog[data-discovery="articles-desk"],
.lobby-story-dialog[data-discovery="legal-working"],
.lobby-story-dialog[data-discovery="communication-contact"],
.lobby-story-dialog[data-discovery="communication-routing"],
.lobby-story-dialog[data-discovery="communication-business"] {
  --story-x: 0%;
  right: 24px;
  left: auto;
  width: min(580px, calc(100% - 40px));
}

.lobby-story-dialog[data-discovery="conference-how"] {
  --story-x: 0%;
  right: auto;
  left: 24px;
  width: min(580px, calc(100% - 40px));
}

.lobby-story-dialog[data-discovery="eli-experiment"],
.lobby-story-dialog[data-discovery="eli-focus"],
.lobby-story-dialog[data-discovery="retainer-how"] {
  --story-x: 0%;
  right: auto;
  left: 24px;
  width: min(580px, calc(100% - 40px));
}

.lobby-story-dialog[data-discovery="legal-philosophy"],
.lobby-story-dialog[data-discovery="legal-rights"] {
  --story-x: 0%;
  right: auto;
  left: 24px;
  width: min(580px, calc(100% - 40px));
}

.lobby-story-dialog[data-discovery="retainer-who"] {
  --story-x: 0%;
  right: auto;
  left: clamp(300px, 25vw, 340px);
  width: min(600px, calc(100% - 40px));
}

.lobby-story-dialog[data-discovery="founder-possibilities"] {
  --story-x: 0%;
  right: auto;
  left: clamp(300px, 25vw, 340px);
  width: min(600px, calc(100% - 40px));
}

.lobby-story-dialog[data-discovery="conference-what"],
.lobby-story-dialog[data-discovery="articles-progress"] {
  --story-x: 0%;
  right: auto;
  left: clamp(300px, 25vw, 340px);
  width: min(600px, calc(100% - 40px));
}

.lobby-story-dialog::backdrop {
  background: transparent;
  backdrop-filter: none;
}

.lobby-story-dialog::after {
  position: absolute;
  right: 18px;
  bottom: 11px;
  left: 18px;
  height: 1px;
  content: '';
  background: linear-gradient(
    90deg,
    transparent,
    rgba(32, 216, 242, 0.78),
    rgba(214, 177, 108, 0.72),
    rgba(163, 124, 255, 0.78),
    transparent
  );
  box-shadow: 0 0 10px rgba(32, 216, 242, 0.34);
  pointer-events: none;
}

.lobby-story-dialog[open] {
  animation: lobby-story-arrive 420ms cubic-bezier(0.2, 0.76, 0.24, 1) both;
}

.lobby-story-inner {
  max-height: min(72vh, 680px);
  overflow-y: auto;
  padding: 78px 48px 42px;
  scrollbar-color: rgba(32, 216, 242, 0.62) rgba(246, 251, 248, 0.06);
  scrollbar-width: thin;
}

.lobby-story-energy {
  position: absolute;
  top: 16px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  pointer-events: none;
}

.lobby-story-energy-line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 216, 242, 0.9));
  box-shadow: 0 0 8px rgba(32, 216, 242, 0.52);
}

.lobby-story-energy-line:last-child {
  background: linear-gradient(90deg, rgba(214, 177, 108, 0.88), rgba(163, 124, 255, 0.82), transparent);
  box-shadow: 0 0 8px rgba(163, 124, 255, 0.5);
}

.lobby-story-sigil {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 19, 22, 0.92);
  box-shadow:
    0 0 0 3px rgba(32, 216, 242, 0.08),
    -5px 0 14px rgba(32, 216, 242, 0.28),
    5px 0 14px rgba(163, 124, 255, 0.28);
}

.lobby-story-sigil img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 225px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.lobby-story-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 251, 248, 0.18);
  border-radius: 50%;
  padding: 0;
  background: rgba(7, 12, 13, 0.76);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.lobby-story-close:hover,
.lobby-story-close:focus-visible {
  border-color: rgba(32, 216, 242, 0.75);
  background: rgba(32, 216, 242, 0.14);
  outline: none;
}

.lobby-story-eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.lobby-story-dialog h2 {
  max-width: 540px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.04;
  text-align: left;
}

.lobby-story-subtitle {
  display: grid;
  gap: 3px;
  margin: 18px 0 0;
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.32;
  text-align: left;
}

.lobby-story-copy {
  width: 100%;
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  font-size: 0.94rem;
  line-height: 1.58;
  text-align: left;
}

.lobby-story-copy p {
  margin: 0;
}

.lobby-story-lines {
  display: grid;
  gap: 2px;
  margin: 0;
}

.lobby-story-lines span {
  display: block;
}

.lobby-story-copy .is-emphasis {
  color: var(--paper);
  font-weight: 800;
}

.lobby-story-term strong {
  color: var(--paper);
  font-weight: 800;
}

.story-action {
  justify-self: start;
  border: 1px solid rgba(32, 216, 242, 0.56);
  border-radius: 6px;
  padding: 10px 13px;
  background: rgba(32, 216, 242, 0.1);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.story-action:hover,
.story-action:focus-visible {
  border-color: rgba(32, 216, 242, 0.9);
  background: rgba(32, 216, 242, 0.18);
  outline: none;
}

.library-dialog {
  position: fixed;
  left: 50%;
  top: 54%;
  z-index: 32;
  width: min(940px, calc(100% - 40px));
  max-height: min(78vh, 760px);
  margin: 0;
  border: 1px solid rgba(32, 216, 242, 0.66);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: rgba(6, 14, 16, 0.92);
  color: var(--ink);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.62),
    -14px 0 38px rgba(32, 216, 242, 0.14),
    14px 0 42px rgba(163, 124, 255, 0.16),
    inset 0 0 42px rgba(214, 177, 108, 0.04);
  backdrop-filter: blur(16px) saturate(1.16);
  transform: translate(-50%, -50%);
}

.library-dialog::backdrop {
  background: transparent;
  backdrop-filter: none;
}

.library-dialog[open] {
  animation: library-arrive 300ms ease-out both;
}

.library-dialog-inner {
  max-height: min(78vh, 760px);
  overflow-y: auto;
  padding: 82px 54px 48px;
  scrollbar-color: rgba(32, 216, 242, 0.62) rgba(246, 251, 248, 0.06);
  scrollbar-width: thin;
}

.library-dialog h2 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.04;
}

.library-intro {
  margin: 12px 0 30px;
  color: var(--muted);
  font-size: 1rem;
}

.library-list {
  border-top: 1px solid rgba(246, 251, 248, 0.16);
}

.library-entry {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 26px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(246, 251, 248, 0.16);
  border-radius: 0;
  padding: 24px 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.library-entry:hover,
.library-entry:focus-visible {
  background: linear-gradient(90deg, rgba(32, 216, 242, 0.07), transparent 72%);
  outline: none;
}

.library-entry-copy {
  min-width: 0;
}

.library-entry-meta,
.library-reader-meta {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.library-entry h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.35rem;
  line-height: 1.18;
}

.library-entry-description {
  max-width: 66ch;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.library-entry-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.library-back {
  margin: 0 0 24px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--cyan);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.library-back:hover,
.library-back:focus-visible {
  color: var(--paper);
  outline: none;
}

.library-reader-dek {
  max-width: 62ch;
  margin: 18px 0 30px;
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.5;
}

.library-article-body {
  max-width: 72ch;
  color: rgba(246, 251, 248, 0.86);
  font-size: 1rem;
  line-height: 1.72;
}

.library-article-body h3 {
  margin: 34px 0 12px;
  color: var(--paper);
  font-size: 1.25rem;
  line-height: 1.2;
}

.library-article-body p {
  margin: 0 0 18px;
}

.library-article-body ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 22px;
  padding-left: 22px;
}

.library-article-body li {
  padding-left: 4px;
}

.library-article-body li::marker {
  color: var(--cyan);
}

.library-article-body li strong {
  color: var(--paper);
}

.library-article-body .article-emphasis {
  color: var(--paper);
  font-weight: 800;
}

.policy-intro {
  max-width: 72ch;
}

.policy-document-body a {
  color: var(--cyan);
}

@keyframes library-arrive {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 18px)) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes lobby-sign-pulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes lobby-sign-spark {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0) scale(0.8);
  }

  50% {
    opacity: 1;
    transform: translateY(180px) scale(1.25);
  }
}

@keyframes conference-hotspot-breathe {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.985);
  }

  50% {
    opacity: 0.48;
    transform: scale(1.015);
  }
}

@keyframes lobby-fairy-hover {
  0%,
  100% {
    translate: 0 0;
    rotate: -0.6deg;
  }

  50% {
    translate: 0 -7px;
    rotate: 0.8deg;
  }
}

@keyframes lobby-directory-callout {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }
}

@keyframes lobby-guide-sparkles {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.97) rotate(-1deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.03) rotate(1deg);
  }
}

@keyframes lobby-story-arrive {
  from {
    opacity: 0;
    transform: translate(var(--story-x, -50%), calc(-50% + 18px)) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(var(--story-x, -50%), -50%) scale(1);
  }
}

@keyframes lobby-story-arrive-mobile {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.room-content-continuation {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding: 118px 30px 96px;
  isolation: isolate;
}

.room-continuation-image {
  z-index: -3;
  height: 118%;
  filter: var(--room-continuation-filter);
  opacity: 0.68;
  transform: scale(1.08);
  transform-origin: var(--room-focus-x) var(--room-focus-y);
  transition: opacity 240ms ease;
}

.continuation-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 10, 11, 0.58), rgba(11, 18, 18, 0.78) 34%, rgba(7, 10, 11, 0.92)),
    radial-gradient(circle at 70% 10%, rgba(32, 216, 242, 0.16), rgba(32, 216, 242, 0) 34%),
    radial-gradient(circle at 18% 78%, rgba(214, 177, 108, 0.12), rgba(214, 177, 108, 0) 32%),
    radial-gradient(circle at 28% 28%, rgba(127, 207, 154, 0.1), rgba(127, 207, 154, 0) 30%);
}

.room-content-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.room-content-head {
  width: min(780px, 100%);
  margin-bottom: 32px;
}

.room-content-head h2 {
  margin: 8px 0 0;
  color: var(--paper);
  font-size: 2.4rem;
  line-height: 1.08;
}

.room-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.room-details:empty {
  display: none;
}

.detail-row {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(246, 251, 248, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(9, 17, 17, 0.64);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.detail-body {
  display: grid;
  gap: 12px;
}

.detail-copy {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.detail-copy strong {
  color: var(--paper);
}

.detail-copy-emphasis {
  color: var(--paper);
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.05rem;
  color: var(--ink);
}

.detail-list li::marker {
  color: var(--green);
}

.detail-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.92rem;
}

.office-page[data-room="ceo"] .room-content-head {
  width: min(1220px, 100%);
}

.office-page[data-room="ceo"] .room-content-head h2 {
  max-width: 780px;
}

.office-page[data-room="ceo"] .room-content-intro {
  max-width: none;
  column-count: 2;
  column-gap: 70px;
  color: var(--ink);
  line-height: 1.68;
}

.office-page[data-room="ceo"] .room-content-intro p,
.office-page[data-room="ceo"] .room-intro-heading {
  break-inside: avoid;
}

.office-page[data-room="lobby"] .room-content-inner {
  width: min(1040px, 100%);
}

.office-page[data-room="lobby"] .room-content-head {
  width: min(880px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.office-page[data-room="lobby"] .room-content-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

.office-page[data-room="lobby"] .room-subtitle {
  margin-top: 18px;
  color: var(--paper);
  font-size: clamp(1.18rem, 2.1vw, 1.8rem);
  line-height: 1.25;
}

.office-page[data-room="lobby"] .room-content-intro {
  max-width: 78ch;
  margin: 28px auto 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.72;
}

.office-page[data-room="lobby"] .room-details {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.office-page[data-room="lobby"] .detail-row {
  align-items: center;
  min-height: 230px;
  text-align: center;
}

.office-page[data-room="lobby"] .detail-label {
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.room-form-slot {
  margin-top: 16px;
}

.room-form-slot:empty {
  display: none;
}

.contact-form {
  width: min(760px, 100%);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(246, 251, 248, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(9, 17, 17, 0.66);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 251, 248, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(246, 251, 248, 0.08);
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(32, 216, 242, 0.8);
  box-shadow: 0 0 0 3px rgba(32, 216, 242, 0.13);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  padding: 11px 16px;
  border-color: rgba(214, 177, 108, 0.7);
  background: rgba(214, 177, 108, 0.16);
}

.contact-form.is-story-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 4px;
  padding: 18px;
  background: rgba(9, 17, 17, 0.48);
}

.contact-form.is-story-form .contact-form-wide,
.contact-form.is-story-form button,
.contact-form.is-story-form .form-note {
  grid-column: 1 / -1;
}

.contact-form.is-story-form textarea {
  min-height: 112px;
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid rgba(246, 251, 248, 0.12);
  background: var(--charcoal);
  color: var(--soft);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
  outline: none;
}

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .room-tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .live-banner {
    width: 100%;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .office-directory {
    max-height: none;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    padding: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .room-tab {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .live-banner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .live-status {
    border-right: 0;
    border-bottom: 1px solid rgba(246, 251, 248, 0.14);
    padding-right: 0;
    padding-bottom: 8px;
  }

  .live-feed p {
    white-space: normal;
  }

  .room-hero {
    min-height: calc(100dvh - 110px);
    padding: 0 12px 40px;
  }

  .room-shade {
    background:
      linear-gradient(180deg, rgba(7, 10, 11, 0.46), rgba(7, 10, 11, 0.04) 32%, rgba(7, 10, 11, 0.52));
  }

  .office-page[data-room="conference"] .room-hero,
  .office-page[data-room="eli-connect"] .room-hero,
  .office-page[data-room="retainer"] .room-hero,
  .office-page[data-room="ceo"] .room-hero,
  .office-page[data-room="articles"] .room-hero,
  .office-page[data-room="legal"] .room-hero,
  .office-page[data-room="communication"] .room-hero {
    min-height: 0;
    aspect-ratio: 1672 / 941;
    padding: 0;
  }

  .office-page[data-room="conference"],
  .office-page[data-room="eli-connect"],
  .office-page[data-room="retainer"],
  .office-page[data-room="ceo"],
  .office-page[data-room="articles"],
  .office-page[data-room="legal"],
  .office-page[data-room="communication"] {
    min-height: 0;
  }

  .office-page[data-room="conference"] .room-image,
  .office-page[data-room="eli-connect"] .room-image,
  .office-page[data-room="retainer"] .room-image,
  .office-page[data-room="ceo"] .room-image,
  .office-page[data-room="articles"] .room-image,
  .office-page[data-room="legal"] .room-image,
  .office-page[data-room="communication"] .room-image {
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .lobby-welcome-hotspot {
    left: 18%;
    top: 58%;
    width: 64%;
    height: 15%;
    border-radius: 8px;
  }

  .lobby-identity-hotspot {
    left: 29%;
    top: 34%;
    width: 42%;
    height: 21%;
  }

  .conference-services-hotspot {
    left: 44%;
    top: 19%;
    width: 12%;
    height: 20%;
  }

  .conference-how-hotspot {
    left: 60%;
    top: 22%;
    width: 12%;
    height: 28%;
  }

  .conference-what-hotspot {
    left: 80%;
    top: 10%;
    width: 18%;
    height: 42%;
  }

  .conference-after-hotspot {
    left: 43%;
    top: 65%;
    width: 15%;
    height: 20%;
  }

  .eli-connect-hotspot {
    left: 34%;
    top: 31%;
    width: 11%;
    height: 42%;
  }

  .eli-definition-hotspot {
    left: 41.5%;
    top: 24%;
    width: 13%;
    height: 24%;
  }

  .eli-experiment-hotspot {
    left: 58%;
    top: 24%;
    width: 12%;
    height: 29%;
  }

  .eli-focus-hotspot {
    left: 75.5%;
    top: 12%;
    width: 13%;
    height: 42%;
  }

  .retainer-what-hotspot {
    left: 39%;
    top: 23%;
    width: 22%;
    height: 27%;
  }

  .retainer-work-hotspot {
    left: 16%;
    top: 46%;
    width: 19%;
    height: 20%;
  }

  .retainer-how-hotspot {
    left: 67%;
    top: 46%;
    width: 20%;
    height: 20%;
  }

  .retainer-who-hotspot {
    left: 88%;
    top: 15%;
    width: 11%;
    height: 36%;
  }

  .founder-reason-hotspot {
    left: 9%;
    top: 5%;
    width: 12%;
    height: 45%;
  }

  .founder-career-hotspot {
    left: 35%;
    top: 14%;
    width: 29%;
    height: 41%;
  }

  .founder-possibilities-hotspot {
    left: 66%;
    top: 18%;
    width: 10%;
    height: 29%;
  }

  .founder-future-hotspot {
    left: 41%;
    top: 70%;
    width: 17%;
    height: 20%;
  }

  .articles-desk-hotspot {
    left: 36%;
    top: 14%;
    width: 22%;
    height: 39%;
  }

  .articles-library-left-hotspot {
    left: 13%;
    top: 11%;
    width: 22%;
    height: 46%;
  }

  .articles-library-right-hotspot {
    left: 58%;
    top: 11%;
    width: 21%;
    height: 46%;
  }

  .articles-progress-hotspot {
    left: 83%;
    top: 57%;
    width: 12%;
    height: 30%;
  }

  .communication-contact-hotspot {
    left: 36%;
    top: 11%;
    width: 29%;
    height: 38%;
  }

  .communication-routing-hotspot {
    left: 23%;
    top: 10%;
    width: 11%;
    height: 44%;
  }

  .communication-business-hotspot {
    left: 42%;
    top: 51%;
    width: 22%;
    height: 23%;
  }

  .lobby-fairy-guide {
    left: 50%;
    top: 31%;
    height: min(34vh, 64vw);
  }

  .lobby-fairy-guide.is-visible.is-directory-mode {
    left: 30%;
    top: 29%;
    transform: translate3d(-50%, -50%, 0) scale(0.64) rotate(-1deg);
  }

  .lobby-fairy-guide.is-visible.is-sign-mode {
    left: 78%;
    top: 39%;
    transform: translate3d(-50%, -50%, 0) scale(0.62) rotate(1deg);
  }

  .lobby-guide-speech {
    left: 8%;
    top: 52%;
    width: 84%;
  }

  .lobby-guide-speech p {
    inset: 21% 14% 24% 17%;
    font-size: clamp(0.72rem, 3.15vw, 0.9rem);
    line-height: 1.28;
  }

  .lobby-guide-speech[data-message="1"] p,
  .lobby-guide-speech[data-message="4"] p {
    font-size: clamp(1rem, 4.7vw, 1.3rem);
  }

  .lobby-guide-speech.is-directory-mode {
    left: 20%;
    top: 42%;
    width: 78%;
  }

  .lobby-guide-speech.is-directory-mode p {
    inset: 19% 12% 21% 15%;
    font-size: clamp(0.65rem, 2.8vw, 0.82rem);
    line-height: 1.22;
  }

  .lobby-guide-speech.is-sign-mode {
    left: 2%;
    top: 56%;
    width: 72%;
    transform-origin: 76% 22%;
  }

  .lobby-guide-speech.is-sign-mode p {
    inset: 19% 12% 21% 15%;
    font-size: clamp(0.65rem, 2.8vw, 0.82rem);
    line-height: 1.22;
  }

  .lobby-guide-speech.is-sign-mode[data-message="4"] p {
    font-size: clamp(0.92rem, 4.1vw, 1.15rem);
  }

  .lobby-story-dialog,
  .lobby-story-dialog[data-discovery] {
    --story-x: -50%;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 14px;
    width: calc(100% - 24px);
    max-height: 58vh;
    transform: translateX(-50%);
  }

  .lobby-story-dialog[open] {
    animation-name: lobby-story-arrive-mobile;
  }

  .lobby-story-inner {
    max-height: 58vh;
    padding: 68px 22px 34px;
  }

  .lobby-story-dialog h2 {
    font-size: 1.75rem;
  }

  .lobby-story-subtitle {
    margin-top: 14px;
    font-size: 0.96rem;
  }

  .lobby-story-copy {
    gap: 12px;
    margin-top: 20px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .contact-form.is-story-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .contact-form.is-story-form .contact-form-wide,
  .contact-form.is-story-form button,
  .contact-form.is-story-form .form-note {
    grid-column: auto;
  }

  .library-dialog {
    left: 50%;
    top: auto;
    bottom: 14px;
    width: calc(100% - 24px);
    max-height: 68vh;
    transform: translateX(-50%);
  }

  .library-dialog[open] {
    animation: none;
  }

  .library-dialog-inner {
    max-height: 68vh;
    padding: 68px 22px 34px;
  }

  .library-dialog h2 {
    font-size: 1.75rem;
  }

  .library-intro {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }

  .library-entry {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 2px;
  }

  .library-entry h3 {
    font-size: 1.16rem;
  }

  .library-entry-action {
    justify-self: start;
  }

  .library-reader-dek {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .library-article-body {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .office-directory {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 60px;
    bottom: auto;
    z-index: 7;
    max-height: min(64vh, 540px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
  }

  .office-page.mobile-directory-open .office-directory {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .office-page.mobile-directory-open .room-hero {
    z-index: 9;
    overflow: visible;
  }

  .mobile-directory-toggle {
    position: absolute;
    left: 12px;
    top: 12px;
    bottom: auto;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid rgba(32, 216, 242, 0.55);
    border-radius: 8px;
    padding: 8px 13px;
    background: rgba(7, 10, 11, 0.82);
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    cursor: pointer;
  }

  .mobile-directory-toggle.is-guided {
    border-color: rgba(32, 216, 242, 0.92);
    box-shadow:
      0 0 0 1px rgba(163, 124, 255, 0.42),
      0 0 24px rgba(32, 216, 242, 0.52),
      0 0 42px rgba(163, 124, 255, 0.28);
    animation: lobby-directory-callout 1800ms ease-in-out infinite;
  }

  .room-content-intro {
    font-size: 1rem;
  }

  .room-content-continuation {
    padding: 76px 12px 70px;
  }

  .office-page[data-room="ceo"] .room-content-intro {
    column-count: 1;
  }

  .room-content-head h2 {
    font-size: 1.85rem;
  }

  .room-details {
    grid-template-columns: 1fr;
  }

  .detail-row {
    min-height: 0;
  }

  .room-action,
  .contact-form button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* Arrival intro */

.intro-veil {
  --intro-door-x: 50%;
  --intro-door-y: 56%;
  --intro-greeter-x: 37%;
  --intro-greeter-y: 55%;
  --intro-caption-x: 68%;
  --intro-caption-y: 50%;
  --intro-building-position-y: 35%;
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow: hidden;
  background: var(--night);
  opacity: 1;
  transition: opacity 720ms ease;
}

html[data-intro] .intro-veil {
  display: block;
}

html[data-intro],
html[data-intro] body {
  overflow: hidden;
}

html[data-intro="playing"] .skip-link,
html[data-intro="playing"] .site-header,
html[data-intro="playing"] .office-page,
html[data-intro="playing"] .site-footer {
  visibility: hidden;
}

.intro-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.intro-building {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--intro-door-x) var(--intro-building-position-y);
  transition: opacity 800ms ease, filter 800ms ease;
}

/* The open-doors frame is pixel-aligned with the closed one, so revealing it
   through a slit that widens from the doorway centre reads as the doors parting.
   Everything outside the doorway is identical between the two frames, which is
   why the wipe edge stays invisible. */
.intro-building--open {
  clip-path: inset(0 calc(100% - var(--intro-door-x)) 0 var(--intro-door-x));
  transition:
    opacity 900ms ease,
    filter 900ms ease,
    clip-path 1100ms cubic-bezier(0.32, 0.72, 0.2, 1);
}

.intro-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--intro-door-x) var(--intro-door-y), rgba(7, 10, 11, 0) 30%, rgba(7, 10, 11, 0.42) 84%),
    linear-gradient(180deg, rgba(7, 10, 11, 0.18), rgba(7, 10, 11, 0) 32%, rgba(7, 10, 11, 0.46));
}

.intro-light {
  position: absolute;
  left: var(--intro-door-x);
  top: var(--intro-door-y);
  z-index: 2;
  width: 16vmin;
  height: 16vmin;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(32, 216, 242, 0.82) 28%, rgba(163, 124, 255, 0.44) 52%, rgba(32, 216, 242, 0) 74%);
  filter: blur(3px);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(0.06);
  opacity: 0;
  will-change: left, top, transform, opacity;
  transition: left 700ms ease, top 700ms ease, transform 700ms ease, opacity 500ms ease, filter 700ms ease;
}

/* Her wing light spills onto the architecture, so the bloom layers screen over
   the building frame instead of sitting in front of her as a halo. Both are
   sized and positioned each frame from her real animated bounding box. */
.intro-bloom {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform, width, height;
  transition: opacity 720ms ease;
}

.intro-bloom--air {
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(32, 216, 242, 0.19) 24%, rgba(163, 124, 255, 0.14) 50%, rgba(32, 216, 242, 0) 78%);
  filter: blur(12px);
}

.intro-bloom--floor {
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(32, 216, 242, 0.22) 0%, rgba(163, 124, 255, 0.12) 46%, rgba(32, 216, 242, 0) 80%);
  filter: blur(16px);
}

.intro-dust {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 620ms ease;
}

.intro-greeter-stage {
  position: absolute;
  left: var(--intro-greeter-x);
  top: var(--intro-greeter-y);
  z-index: 3;
  height: min(100vh, 56vw);
  aspect-ratio: 0.805;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-6deg) scale(0.1);
  transform-origin: 50% 50%;
  will-change: left, top, transform, opacity;
  transition:
    left 1750ms cubic-bezier(0.42, 0.08, 0.68, 0.94),
    top 1750ms cubic-bezier(0.42, 0.08, 0.68, 0.94),
    transform 900ms cubic-bezier(0.2, 0.9, 0.25, 1),
    opacity 620ms ease;
}

.intro-greeter {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.5));
  transition: transform 440ms cubic-bezier(0.42, 0, 0.3, 1), opacity 240ms ease, filter 500ms ease;
}

.intro-greeter--front {
  opacity: 1;
  transform: scaleX(1);
}

.intro-greeter--back {
  opacity: 0;
  transform: perspective(900px) rotateY(38deg) rotateZ(10deg) scale(0.82);
  filter: blur(0.15px) brightness(0.92) saturate(0.94) drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.intro-caption {
  position: absolute;
  left: var(--intro-caption-x);
  top: var(--intro-caption-y);
  z-index: 5;
  width: min(680px, 45vw);
  aspect-ratio: 1.5;
  margin: 0;
  border: 0;
  text-align: center;
  transform: translate(-50%, -48%) scale(0.94);
  opacity: 0;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 500ms ease;
  pointer-events: none;
}

.intro-caption > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-caption > p {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(10px, 1.4vw, 20px);
  height: 100%;
  margin: 0;
  padding: 20% 17% 18%;
  align-content: center;
}

.intro-caption strong {
  color: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.intro-caption small {
  color: rgba(246, 251, 248, 0.9);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(0.78rem, 1.25vw, 1.08rem);
  font-style: italic;
  line-height: 1.35;
}

.intro-skip {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  min-height: 36px;
  border: 1px solid rgba(246, 251, 248, 0.16);
  border-radius: 6px;
  padding: 7px 11px;
  background: rgba(7, 10, 11, 0.38);
  color: rgba(246, 251, 248, 0.7);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 650;
  backdrop-filter: blur(9px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  border-color: rgba(32, 216, 242, 0.55);
  background: rgba(7, 10, 11, 0.72);
  color: var(--paper);
  outline: none;
}

.intro-veil[data-phase="enter"] .intro-building {
  opacity: 1;
  filter: none;
}

.intro-veil[data-phase="enter"] .intro-light,
.intro-veil[data-phase="enter"] .intro-greeter-stage {
  opacity: 0;
}

.intro-veil[data-phase="approach"] .intro-building {
  opacity: 1;
  filter: none;
}

.intro-veil[data-phase="approach"] .intro-light {
  opacity: 1;
  animation: intro-light-spiral 2400ms cubic-bezier(0.33, 0.02, 0.2, 1) forwards;
}

.intro-veil[data-phase="approach"] .intro-greeter-stage {
  opacity: 0;
}

/* The dust and bloom are already alight at the doorway before she is visible,
   so the lobby glow reads as hers and she emerges out of it. */
.intro-veil[data-phase="approach"] .intro-dust,
.intro-veil[data-phase="greet"] .intro-dust,
.intro-veil[data-phase="hold"] .intro-dust,
.intro-veil[data-phase="doors"] .intro-dust,
.intro-veil[data-phase="turn"] .intro-dust,
.intro-veil[data-phase="depart"] .intro-dust,
.intro-veil[data-phase="recede"] .intro-dust {
  opacity: 1;
}

.intro-veil[data-phase="approach"] .intro-bloom {
  opacity: 0.6;
}

.intro-veil[data-phase="greet"] .intro-bloom,
.intro-veil[data-phase="hold"] .intro-bloom,
.intro-veil[data-phase="doors"] .intro-bloom,
.intro-veil[data-phase="turn"] .intro-bloom {
  opacity: 1;
}

.intro-veil[data-phase="depart"] .intro-bloom,
.intro-veil[data-phase="recede"] .intro-bloom {
  opacity: 0.72;
}

.intro-veil[data-phase="greet"] .intro-building,
.intro-veil[data-phase="hold"] .intro-building,
.intro-veil[data-phase="doors"] .intro-building,
.intro-veil[data-phase="turn"] .intro-building {
  opacity: 1;
  filter: blur(0.8px) brightness(0.86);
}

.intro-veil[data-phase="greet"] .intro-light,
.intro-veil[data-phase="hold"] .intro-light,
.intro-veil[data-phase="doors"] .intro-light,
.intro-veil[data-phase="turn"] .intro-light {
  left: var(--intro-greeter-x);
  top: var(--intro-greeter-y);
  opacity: 0.72;
  filter: blur(26px);
  transform: translate(-50%, -50%) scale(2.7);
}

.intro-veil[data-phase="greet"] .intro-greeter-stage,
.intro-veil[data-phase="hold"] .intro-greeter-stage,
.intro-veil[data-phase="doors"] .intro-greeter-stage,
.intro-veil[data-phase="turn"] .intro-greeter-stage {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-6deg) scale(1);
}

.intro-veil[data-phase="hold"] .intro-greeter-stage,
.intro-veil[data-phase="doors"] .intro-greeter-stage {
  animation: intro-hover-drift 3100ms ease-in-out infinite;
}

.intro-veil[data-phase="hold"] .intro-caption {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.intro-veil[data-phase="doors"] .intro-building--open,
.intro-veil[data-phase="turn"] .intro-building--open,
.intro-veil[data-phase="depart"] .intro-building--open,
.intro-veil[data-phase="recede"] .intro-building--open,
.intro-veil[data-phase="open"] .intro-building--open {
  clip-path: inset(0 0 0 0);
}

.intro-veil[data-phase="doors"] .intro-caption,
.intro-veil[data-phase="turn"] .intro-caption {
  opacity: 0;
  transform: translate(-50%, -48%) scale(0.96);
}

.intro-veil[data-phase="turn"] .intro-greeter--front {
  opacity: 0;
  transform: perspective(900px) rotateY(-38deg) rotateZ(-10deg) scale(0.9);
}

.intro-veil[data-phase="turn"] .intro-light {
  opacity: 1;
  filter: blur(13px);
  transform: translate(-50%, -50%) scale(2.6);
}

.intro-veil[data-phase="depart"] .intro-building,
.intro-veil[data-phase="recede"] .intro-building {
  opacity: 1;
  filter: blur(0.6px) brightness(0.94);
}

.intro-veil[data-phase="depart"] .intro-light {
  left: var(--intro-greeter-x);
  top: var(--intro-greeter-y);
  opacity: 0;
  filter: blur(20px);
  transform: translate(-50%, -50%) scale(2.2);
  transition-duration: 400ms, 400ms, 400ms, 360ms, 400ms;
}

.intro-veil[data-phase="depart"] .intro-greeter-stage {
  left: 44%;
  top: 49%;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(9deg) scale(0.58);
  transition-duration: 760ms, 760ms, 760ms, 300ms;
  transition-timing-function: cubic-bezier(0.3, 0.02, 0.42, 1);
}

.intro-veil[data-phase="depart"] .intro-greeter--front,
.intro-veil[data-phase="recede"] .intro-greeter--front,
.intro-veil[data-phase="open"] .intro-greeter--front {
  opacity: 0;
  transform: perspective(900px) rotateY(-38deg) rotateZ(-10deg) scale(0.9);
}

.intro-veil[data-phase="depart"] .intro-greeter--back,
.intro-veil[data-phase="recede"] .intro-greeter--back {
  opacity: 1;
  transform: perspective(900px) rotateY(0deg) rotateZ(0deg) scale(1);
  filter: brightness(0.94) saturate(0.98) drop-shadow(0 16px 26px rgba(0, 0, 0, 0.42));
}

.intro-veil[data-phase="recede"] .intro-light {
  left: var(--intro-door-x);
  top: var(--intro-door-y);
  opacity: 0.34;
  filter: blur(18px);
  transform: translate(-50%, -50%) scale(0.48);
  transition-duration: 1050ms, 1050ms, 800ms, 700ms, 800ms;
}

.intro-veil[data-phase="recede"] .intro-greeter-stage {
  left: var(--intro-door-x);
  top: var(--intro-door-y);
  opacity: 0.88;
  transform: translate(-50%, -50%) rotate(-4deg) scale(0.13);
  transition-duration: 1050ms, 1050ms, 1050ms, 700ms;
  transition-timing-function: cubic-bezier(0.18, 0.62, 0.24, 1);
}

.intro-veil[data-phase="recede"] .intro-greeter--back {
  filter: blur(1.1px) brightness(0.78) saturate(0.82) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

.intro-veil[data-phase="depart"] .intro-caption,
.intro-veil[data-phase="recede"] .intro-caption {
  opacity: 0;
  transform: translate(-50%, 10px);
}

.intro-veil[data-phase="open"] {
  opacity: 0;
}

.intro-veil[data-phase="open"] .intro-building {
  opacity: 0.4;
  filter: blur(6px) brightness(1.3);
  transition-duration: 600ms, 600ms;
}

.intro-veil[data-phase="open"] .intro-light {
  left: var(--intro-door-x);
  top: var(--intro-door-y);
  opacity: 1;
  filter: blur(30px);
  transform: translate(-50%, -50%) scale(16);
  transition-duration: 760ms, 760ms, 760ms, 500ms, 500ms;
}

.intro-veil[data-phase="open"] .intro-greeter-stage,
.intro-veil[data-phase="open"] .intro-caption {
  opacity: 0;
}

/* She keeps travelling inward as the lobby takes over: smaller, softer and
   dimmer, so the last read is depth rather than a sprite fading out. */
@keyframes intro-hover-drift {
  0%,
  100% {
    translate: 0 0;
    rotate: -0.6deg;
  }

  50% {
    translate: 0 -1.2%;
    rotate: 0.7deg;
  }
}

@keyframes intro-light-spiral {
  0% {
    left: var(--intro-door-x);
    top: var(--intro-door-y);
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(0.06);
  }

  16% {
    left: 46%;
    top: 54%;
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(0.14);
  }

  32% {
    left: 49%;
    top: 63%;
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.25);
  }

  48% {
    left: 58%;
    top: 66%;
    transform: translate(-50%, -50%) scale(0.42);
  }

  64% {
    left: 62%;
    top: 54%;
    transform: translate(-50%, -50%) scale(0.65);
  }

  80% {
    left: 49%;
    top: 43%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.92);
  }

  100% {
    left: var(--intro-greeter-x);
    top: var(--intro-greeter-y);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

@media (min-aspect-ratio: 16 / 9) {
  .intro-veil {
    --intro-door-y: 58%;
  }
}

@media (max-width: 760px) {
  .intro-veil {
    --intro-door-y: 56%;
    --intro-greeter-x: 50%;
    --intro-greeter-y: 35%;
    --intro-caption-x: 50%;
    --intro-caption-y: 76%;
    --intro-building-position-y: 50%;
  }

  .intro-greeter-stage {
    height: min(49vh, 88vw);
  }

  .intro-caption {
    width: min(92vw, 520px);
  }

  .intro-caption > p {
    gap: 8px;
  }

  .intro-caption strong {
    font-size: clamp(1rem, 5.2vw, 1.45rem);
  }

  .intro-caption small {
    font-size: clamp(0.72rem, 3.2vw, 0.95rem);
  }

  .intro-skip {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-veil {
    display: none !important;
  }

  .intro-dust,
  .intro-bloom {
    display: none;
  }
}
