:root {
  --navy-950: #030a13;
  --navy-900: #071426;
  --navy-800: #0c2038;
  --navy-700: #143451;
  --white: #ffffff;
  --mist: #cbd5e1;
  --gold: #d7ae52;
  --gold-light: #f1d58c;
  --red: #b52f37;
  --red-bright: #d6444d;
  --line: rgba(255,255,255,.16);
  --shadow: 0 22px 60px rgba(0,0,0,.34);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--navy-950); color: var(--white); }
body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.noscript {
  padding: 1rem;
  color: #111827;
  background: #fef3c7;
  text-align: center;
  font-weight: 700;
}

.test-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: .55rem 1rem;
  background: #f5c842;
  color: #151515;
  text-align: center;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.landing {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3,10,19,.98) 0%, rgba(7,20,38,.96) 48%, rgba(10,34,58,.86) 100%),
    radial-gradient(circle at 88% 26%, rgba(215,174,82,.22), transparent 32%),
    linear-gradient(135deg, #071426 0%, #0a2b49 100%);
}

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 0%, black 48%, black 100%);
}

.landing-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  pointer-events: none;
}
.landing-glow-one {
  width: 440px; height: 440px; right: -140px; top: 9%;
  background: rgba(35,99,145,.18);
}
.landing-glow-two {
  width: 260px; height: 260px; right: 17%; bottom: 8%;
  background: rgba(215,174,82,.08);
}

.topbar, .hero, .before-card, .landing-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(24px + var(--safe-top)) 0 22px;
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-size: 1rem;
}
.brand-lockup strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .16em;
}
.brand-lockup small {
  display: block;
  margin-top: .2rem;
  color: var(--mist);
  font-size: .62rem;
  letter-spacing: .18em;
}
.top-link {
  color: #e6edf5;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}
.top-link:hover, .top-link:focus-visible { color: var(--gold-light); }

.hero {
  padding: clamp(64px, 10vw, 126px) 0 70px;
  max-width: 1180px;
}
.eyebrow, .section-label {
  color: var(--mist);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
}
.hero h1 {
  max-width: 800px;
  margin: 18px 0 20px;
  line-height: .94;
  letter-spacing: -.055em;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 span {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-style: normal;
  font-weight: 800;
}
.hero h1 em {
  margin-top: .08em;
  color: var(--gold);
  font-size: clamp(3rem, 7.2vw, 6.7rem);
  font-style: normal;
  font-weight: 720;
}
.red-rule {
  width: 64px;
  height: 4px;
  margin: 28px 0 22px;
  border-radius: 8px;
  background: var(--red-bright);
}
.hero-tagline {
  margin: 0 0 16px;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 650;
}
.hero-tagline strong { color: var(--gold-light); }
.hero-copy {
  max-width: 690px;
  margin: 0;
  color: #d9e2ec;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  min-height: 66px;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.button small {
  display: block;
  margin-bottom: .2rem;
  font-size: .6rem;
  letter-spacing: .14em;
  opacity: .8;
}
.button-primary {
  background: linear-gradient(135deg, var(--red-bright), #9f222b);
}
.button-secondary {
  border: 1px solid rgba(255,255,255,.33);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.button-secondary:hover { border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.11); }
.button-icon {
  min-width: 44px;
  font-size: 1.1rem;
  text-align: center;
}
.compact { min-height: 48px; padding: 10px 16px; box-shadow: none; }

.xr-message {
  min-height: 24px;
  margin-top: 16px;
  color: #cdd9e5;
  font-size: .88rem;
}
.xr-message.warning { color: #ffe6a4; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts div {
  padding: 20px 22px 20px 0;
}
.facts div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.facts strong, .facts span { display: block; }
.facts strong { font-size: .74rem; letter-spacing: .12em; }
.facts span { margin-top: 7px; color: var(--mist); font-size: .88rem; }

.before-card {
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 40px;
  margin-bottom: 72px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}
.before-card h2 { margin: .55rem 0 0; font-size: 1.55rem; }
.before-card ul { margin: 0; padding-left: 1.25rem; color: #d7e0ea; line-height: 1.65; }
.before-card li + li { margin-top: .45rem; }

.landing-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 calc(34px + var(--safe-bottom));
  border-top: 1px solid var(--line);
  color: #b9c7d5;
  font-size: .82rem;
}
.landing-footer p { margin: 0; }
.landing-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.landing-footer a { text-decoration: none; }
.landing-footer a:hover { color: white; }

.experience {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
}
.experience a-scene {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.viewer-topbar, .viewer-bottom, .viewer-status {
  position: absolute;
  z-index: 10;
}
.viewer-topbar {
  top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  padding: calc(15px + var(--safe-top)) 18px 36px;
  background: linear-gradient(to bottom, rgba(0,0,0,.86), transparent);
  pointer-events: none;
}
.viewer-topbar > * { pointer-events: auto; }
.round-control {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.viewer-title { min-width: 0; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,.85); }
.viewer-title strong, .viewer-title span { display: block; }
.viewer-title strong { font-size: .85rem; }
.viewer-title span { color: var(--gold-light); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }

.viewer-bottom {
  left: 0; right: 0; bottom: 0;
  padding: 52px 18px calc(18px + var(--safe-bottom));
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
}
.progress-row {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  max-width: 900px;
  margin: auto;
  font-variant-numeric: tabular-nums;
  font-size: .75rem;
  text-shadow: 0 1px 4px black;
}
#progress { width: 100%; accent-color: var(--red-bright); }
.control-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.viewer-control {
  min-width: 46px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.viewer-control:hover { background: rgba(255,255,255,.14); }
.vr-control { min-width: 112px; background: rgba(181,47,55,.9); border-color: transparent; font-weight: 800; }

.viewer-status {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 12px;
  background: rgba(0,0,0,.78);
  font-size: .95rem;
  box-shadow: var(--shadow);
}
.spinner {
  width: 20px; height: 20px;
  border: 3px solid rgba(255,255,255,.28);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.error-panel {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 30;
  width: min(520px, calc(100% - 34px));
  transform: translate(-50%, -50%);
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(7,20,38,.96);
  box-shadow: var(--shadow);
}
.error-panel h2 { margin: 0 0 10px; }
.error-panel p { color: #d7e0ea; line-height: 1.55; }
.error-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.help-dialog {
  width: min(540px, calc(100% - 32px));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 28px;
  background: #0b1d32;
  color: white;
  box-shadow: var(--shadow);
}
.help-dialog::backdrop { background: rgba(0,0,0,.72); }
.help-dialog h2 { margin-top: 0; }
.help-dialog p { color: #d3deea; line-height: 1.6; }
.dialog-close {
  float: right;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.test-page, .privacy-page, .metrics-page {
  min-height: 100vh;
  background: #f5f7fa;
  color: #132033;
}
.utility-header {
  padding: 22px;
  background: var(--navy-900);
  color: white;
}
.utility-header-inner, .utility-main {
  width: min(1040px, calc(100% - 36px));
  margin-inline: auto;
}
.utility-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-header a { color: white; text-decoration: none; font-weight: 800; }
.utility-main { padding: 42px 0 70px; }
.utility-main h1 { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -.035em; }
.utility-main h2 { margin-top: 2.2rem; }
.utility-main p, .utility-main li { line-height: 1.65; }
.utility-card {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid #d9e0e8;
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 26px rgba(15,23,42,.06);
}
.status-list { display: grid; gap: 10px; margin: 20px 0; }
.status-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #f6f8fb;
}
.status-dot { width: 15px; height: 15px; margin-top: 4px; border-radius: 50%; background: #94a3b8; }
.status-item.pass .status-dot { background: #10b981; }
.status-item.fail .status-dot { background: #ef4444; }
.status-item.warn .status-dot { background: #f59e0b; }

.metrics-login {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.metrics-login input {
  flex: 1 1 300px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}
.metric-card {
  padding: 20px;
  border-radius: 14px;
  background: white;
  border: 1px solid #d9e0e8;
}
.metric-card strong { display: block; font-size: 2rem; }
.metric-card span { color: #64748b; font-size: .85rem; }
.metrics-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 10px; border-bottom: 1px solid #e2e8f0; text-align: left; }
.data-table th { color: #475569; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 760px) {
  .topbar, .hero, .before-card, .landing-footer { width: min(100% - 28px, 1180px); }
  .topbar { padding-top: calc(18px + var(--safe-top)); }
  .brand-lockup small { display: none; }
  .top-link { font-size: .82rem; }
  .hero { padding-top: 54px; }
  .hero h1 span { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero h1 em { font-size: clamp(2.6rem, 14vw, 4rem); }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .facts { grid-template-columns: 1fr; }
  .facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .before-card { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .landing-footer { flex-direction: column; }
  .viewer-title { display: none; }
  .viewer-topbar { grid-template-columns: 48px 1fr 48px; }
  .metrics-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metrics-columns { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .facts { margin-top: 40px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .viewer-control { min-width: 42px; }
  .vr-control { min-width: 96px; }
}

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

/* Phase 1.1 visual refinement */
body {
  font-family: "Segoe UI Variable", "Aptos", "Helvetica Neue", Arial, sans-serif;
}

.has-test-banner .landing { padding-top: 40px; }

.landing {
  background:
    radial-gradient(circle at 84% 29%, rgba(46, 107, 153, .18), transparent 31%),
    linear-gradient(112deg, #030a13 0%, #071628 50%, #0b2a44 100%);
}

.landing::after {
  opacity: .07;
  background-size: 92px 92px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding: clamp(58px, 7vw, 96px) 0 70px;
}

.hero-copy-column { min-width: 0; }

.hero h1 {
  max-width: 740px;
  margin: 17px 0 20px;
  line-height: .98;
  letter-spacing: -.047em;
}

.hero h1 span {
  font-family: "Segoe UI Variable Display", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.8rem, 6.7vw, 6.6rem);
  font-weight: 670;
}

.hero h1 em {
  margin-top: .08em;
  color: #f7f9fc;
  font-family: "Segoe UI Variable Display", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.1rem, 5.6vw, 5.45rem);
  font-style: normal;
  font-weight: 410;
  letter-spacing: -.04em;
}

.hero h1 em strong {
  color: var(--gold);
  font-weight: 610;
}

.eyebrow {
  color: #d7e0e9;
  font-weight: 650;
}

.hero-tagline { font-weight: 510; }
.hero-copy { max-width: 650px; }
.actions { margin-top: 30px; }

.button {
  min-height: 68px;
  font-weight: 680;
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
}

.button small { font-weight: 650; }

.vr-goggles {
  position: relative;
  width: 42px;
  height: 23px;
  border: 2px solid white;
  border-radius: 8px 8px 12px 12px;
}

.vr-goggles::before,
.vr-goggles::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 8px;
  height: 7px;
  border: 1.5px solid white;
  border-radius: 3px;
}

.vr-goggles::before { left: 7px; }
.vr-goggles::after { right: 7px; }

.hero-visual { min-width: 0; }

.immersive-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: #06111f;
  box-shadow: 0 34px 90px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.04) inset;
}

.immersive-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.93) contrast(1.04) brightness(.82);
  transform: scale(1.02);
}

.image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,10,19,.34), rgba(3,10,19,.02) 54%, rgba(3,10,19,.14)),
    linear-gradient(to top, rgba(3,10,19,.86), transparent 52%);
  pointer-events: none;
}

.preview-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(3,10,19,.55);
  backdrop-filter: blur(10px);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.preview-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 5px rgba(214,68,77,.15);
}

.preview-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
}

.preview-caption strong,
.preview-caption span { display: block; }

.preview-caption strong {
  font-family: "Segoe UI Variable Display", "Aptos Display", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 610;
}

.preview-caption span {
  margin-top: 5px;
  color: #d8e2ec;
  line-height: 1.45;
}

.preview-reticle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  opacity: .58;
}

.preview-reticle i {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255,255,255,.86);
}

.preview-reticle i:nth-child(1) { left: 0; top: 0; border-left: 2px solid; border-top: 2px solid; }
.preview-reticle i:nth-child(2) { right: 0; top: 0; border-right: 2px solid; border-top: 2px solid; }
.preview-reticle i:nth-child(3) { left: 0; bottom: 0; border-left: 2px solid; border-bottom: 2px solid; }
.preview-reticle i:nth-child(4) { right: 0; bottom: 0; border-right: 2px solid; border-bottom: 2px solid; }

.facts {
  max-width: 700px;
  margin-top: 42px;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-visual { max-width: 820px; }
}

@media (max-width: 760px) {
  .has-test-banner .landing { padding-top: 44px; }
  .hero { padding-top: 46px; }
  .hero h1 span { font-size: clamp(3.15rem, 15vw, 4.7rem); }
  .hero h1 em { font-size: clamp(2.55rem, 12vw, 3.9rem); }
  .immersive-frame { border-radius: 18px; }
  .preview-badge { left: 14px; top: 14px; }
  .preview-caption { left: 16px; right: 16px; bottom: 15px; }
  .preview-caption span { display: none; }
}

/* Phase 1.2 cinematic landing page
   Uses a real frame from the approved 360 film and preserves the existing player. */

:root {
  --cinema-navy: #04111f;
  --cinema-navy-deep: #020a13;
  --cinema-gold: #efcf7a;
  --cinema-coral: #d55b51;
  --cinema-coral-dark: #ad3f3b;
}

body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.test-banner {
  height: 36px;
  padding: 9px 14px 8px;
  font-size: .72rem;
  line-height: 1;
}

.has-test-banner .landing {
  min-height: calc(100svh - 36px);
  margin-top: 36px;
}

.landing {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--cinema-navy-deep);
}

.landing::after {
  content: none;
}

.landing-media,
.landing-shade {
  position: absolute;
  inset: 0;
}

.landing-media {
  z-index: -3;
  overflow: hidden;
  background: #0a1f32;
}

.landing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.84) contrast(1.05) brightness(.72);
  transform: scale(1.025);
}

.landing-shade {
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(1, 8, 15, .90) 0%,
      rgba(2, 11, 21, .84) 32%,
      rgba(3, 14, 25, .59) 59%,
      rgba(3, 13, 23, .28) 100%),
    linear-gradient(180deg,
      rgba(2, 8, 15, .26) 0%,
      rgba(2, 8, 15, .02) 48%,
      rgba(2, 8, 15, .56) 100%);
}

.meet-link {
  position: absolute;
  top: clamp(22px, 3vw, 42px);
  right: clamp(22px, 4vw, 68px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #f5f8fb;
  background: rgba(3, 13, 24, .36);
  backdrop-filter: blur(12px);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 650;
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
}

.meet-link:hover,
.meet-link:focus-visible {
  color: var(--cinema-gold);
  border-color: rgba(239,207,122,.48);
}

.launch-card {
  position: relative;
  z-index: 1;
  width: min(57vw, 900px);
  margin: clamp(58px, 5.2vw, 84px) 0 clamp(42px, 5vw, 76px) clamp(24px, 5.4vw, 88px);
  padding: clamp(38px, 4.25vw, 68px);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: clamp(25px, 2.3vw, 36px);
  color: white;
  background:
    linear-gradient(145deg, rgba(5, 21, 36, .96), rgba(3, 13, 25, .90));
  box-shadow:
    0 36px 100px rgba(0,0,0,.48),
    0 0 0 1px rgba(239,207,122,.035) inset;
  backdrop-filter: blur(20px);
}

.launch-card::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,207,122,.75), transparent);
  box-shadow: 0 0 18px rgba(239,207,122,.24);
}

.program-lockup {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #f9fbfd;
  font-size: clamp(.68rem, .82vw, .86rem);
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.35;
}

.program-lockup b {
  color: var(--cinema-gold);
  font-weight: 600;
}

.program-star {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(213,91,81,.88);
  border-radius: 50%;
  color: var(--cinema-coral);
  font-size: .82rem;
}

.launch-eyebrow {
  margin: clamp(28px, 3.2vw, 48px) 0 13px;
  color: #e06a60;
  font-size: clamp(.68rem, .86vw, .9rem);
  font-weight: 780;
  letter-spacing: .18em;
  line-height: 1.45;
}

.launch-card h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Iowan Old Style", Baskerville, "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.052em;
}

.launch-card h1 span,
.launch-card h1 em {
  display: block;
  font-style: normal;
}

.launch-card h1 span {
  color: #fbfcfd;
  font-size: clamp(4rem, 6.6vw, 7.25rem);
}

.launch-card h1 em {
  margin-top: .12em;
  color: var(--cinema-gold);
  font-size: clamp(3.7rem, 6.15vw, 6.7rem);
}

.launch-copy {
  max-width: 730px;
  margin: clamp(24px, 2.4vw, 36px) 0 0;
  color: #dce6ee;
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.62;
}

.launch-copy strong {
  color: #ffffff;
  font-weight: 750;
}

.launch-actions {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(190px, .78fr);
  gap: 13px;
  margin-top: clamp(25px, 2.6vw, 38px);
}

.launch-card .button {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: clamp(.9rem, 1vw, 1.02rem);
  font-weight: 760;
  text-align: left;
  box-shadow: none;
}

.launch-card .launch-primary {
  color: white;
  background: linear-gradient(135deg, var(--cinema-coral), var(--cinema-coral-dark));
  box-shadow: 0 13px 34px rgba(194, 67, 62, .26), 0 0 0 1px rgba(255,255,255,.05) inset;
}

.launch-card .launch-primary:hover {
  box-shadow: 0 16px 42px rgba(194, 67, 62, .36), 0 0 0 1px rgba(255,255,255,.08) inset;
}

.launch-card .launch-secondary {
  color: #f6f8fa;
  border: 1px solid rgba(255,255,255,.29);
  background: rgba(255,255,255,.045);
}

.launch-card .launch-secondary:hover {
  border-color: rgba(239,207,122,.54);
  background: rgba(255,255,255,.08);
}

.launch-card .xr-message {
  min-height: 19px;
  margin: 12px 3px 0;
  color: #b9c9d6;
  font-size: .78rem;
}

.launch-card .xr-message.warning {
  color: #ffe2a0;
}

.access-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 23px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.access-strip > div {
  min-width: 0;
  padding: 15px 15px 15px 0;
}

.access-strip > div + div {
  padding-left: 15px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.access-strip strong,
.access-strip span {
  display: block;
}

.access-strip strong {
  color: #f6f8fa;
  font-size: .62rem;
  letter-spacing: .12em;
}

.access-strip span {
  margin-top: 5px;
  color: #aebfcd;
  font-size: .72rem;
  line-height: 1.35;
}

.launch-footnote {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-top: 19px;
  color: #8ea3b2;
  font-size: .68rem;
  line-height: 1.45;
}

.launch-footnote nav {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.launch-footnote a {
  color: #c4d1db;
  text-decoration: none;
}

.launch-footnote a:hover,
.launch-footnote a:focus-visible {
  color: var(--cinema-gold);
}

.immersive-cue {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(22px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 300px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 14px;
  color: #eff4f7;
  background: rgba(3, 13, 23, .50);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 45px rgba(0,0,0,.22);
}

.immersive-cue strong,
.immersive-cue span {
  display: block;
}

.immersive-cue strong {
  font-size: .64rem;
  letter-spacing: .13em;
}

.immersive-cue div > span {
  margin-top: 4px;
  color: #becbd5;
  font-size: .72rem;
  line-height: 1.35;
}

.cue-orbit {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(239,207,122,.58);
  border-radius: 50%;
}

.cue-orbit::before,
.cue-orbit::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(239,207,122,.38);
  border-radius: 50%;
}

.cue-orbit::after {
  left: 16px;
  right: 16px;
  top: 4px;
  bottom: 4px;
}

@media (max-width: 1180px) {
  .launch-card {
    width: min(64vw, 850px);
    margin-left: clamp(22px, 4vw, 58px);
  }

  .immersive-cue {
    display: none;
  }
}

@media (max-width: 900px) {
  .landing {
    align-items: end;
    overflow-y: auto;
  }

  .landing-media img {
    object-position: 59% center;
  }

  .landing-shade {
    background:
      linear-gradient(180deg, rgba(2,8,15,.30) 0%, rgba(2,9,17,.48) 32%, rgba(2,9,17,.88) 68%, rgba(2,9,17,.96) 100%);
  }

  .meet-link {
    top: 18px;
    right: 18px;
  }

  .launch-card {
    width: min(100% - 32px, 760px);
    margin: 118px auto 18px;
    padding: clamp(30px, 6vw, 48px);
  }

  .launch-card h1 span {
    font-size: clamp(3.65rem, 12vw, 6rem);
  }

  .launch-card h1 em {
    font-size: clamp(3.25rem, 10.7vw, 5.3rem);
  }
}

@media (max-width: 620px) {
  .program-lockup {
    padding-right: 10px;
    font-size: .62rem;
    letter-spacing: .12em;
  }

  .program-star {
    width: 34px;
    height: 34px;
  }

  .launch-card {
    width: calc(100% - 24px);
    margin-top: 94px;
    margin-bottom: 12px;
    padding: 28px 24px 24px;
    border-radius: 24px;
  }

  .launch-eyebrow {
    margin-top: 25px;
    font-size: .62rem;
  }

  .launch-card h1 span {
    font-size: clamp(3.05rem, 15.4vw, 4.5rem);
  }

  .launch-card h1 em {
    font-size: clamp(2.72rem, 13.8vw, 4rem);
  }

  .launch-copy {
    font-size: .96rem;
    line-height: 1.55;
  }

  .launch-actions {
    grid-template-columns: 1fr;
  }

  .access-strip {
    grid-template-columns: 1fr;
  }

  .access-strip > div {
    padding: 12px 0;
  }

  .access-strip > div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .launch-footnote {
    flex-direction: column;
  }

  .meet-link {
    font-size: .76rem;
  }
}

@media (max-height: 800px) and (min-width: 901px) {
  .launch-card {
    margin-top: 46px;
    margin-bottom: 32px;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .launch-eyebrow {
    margin-top: 28px;
  }

  .launch-card h1 span {
    font-size: clamp(3.8rem, 6.1vw, 6.35rem);
  }

  .launch-card h1 em {
    font-size: clamp(3.45rem, 5.65vw, 5.85rem);
  }

  .launch-copy {
    margin-top: 22px;
    line-height: 1.5;
  }

  .launch-actions {
    margin-top: 23px;
  }

  .access-strip {
    margin-top: 17px;
  }
}

