@font-face {
  font-family:Space Grotesk;
  src:url('/assets/space-grotesk.ttf') format('truetype');
  font-style:normal;
  font-weight:400;
  font-display:swap;
}

:root {
  color-scheme:dark;
  --bg:#0b0d0c;
  --panel:#111512;
  --line:#2a302b;
  --muted:#91998e;
  --text:#eeefe6;
  --accent:#d9e8ba;
  --success:#b7d49c;
  --error:#f4a093;
  --font:'Space Grotesk',Arial,sans-serif;
  --mono:'SFMono-Regular',Consolas,'Liberation Mono',monospace;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:28px;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:14px/1.5 var(--font);
  -webkit-font-smoothing:antialiased;
}

button,input,select {
  font:inherit;
}

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

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

button {
  cursor:pointer;
}

button:disabled {
  cursor:not-allowed;
  opacity:.4;
}

button,input,select {
  border-radius:0;
}

button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:5px;
}

p,h1,h2,h3 {
  margin:0;
}

::selection {
  background:var(--accent);
  color:var(--bg);
}

.micro {
  font:10px/1.5 var(--mono);
  letter-spacing:.09em;
  text-transform:uppercase;
}

.status-dot {
  display:inline-block;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--accent);
  flex-shrink:0;
}

.site-nav {
  height:104px;
  padding:0 4.2%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  z-index:3;
}

.wordmark {
  display:inline-flex;
  align-items:center;
  font-size:27px;
  letter-spacing:-1.4px;
  line-height:1;
  gap:9px;
}

.wordmark-dot {
  font:10px var(--font);
  align-self:flex-start;
  margin:2px 0 0 -5px;
  letter-spacing:0;
}

.brand-symbol {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  letter-spacing:0;
  width:26px;
  height:28px;
  border:1.5px solid var(--text);
  border-radius:7px 7px 3px 3px;
  font-size:23px;
  line-height:1;
  padding-bottom:3px;
  margin-right:4px;
}

.nav-edition {
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-access {
  display:flex;
  align-items:center;
  gap:25px;
  border-bottom:1px solid #67715f;
  padding:10px 0;
  background:none;
  border-top:0;
  border-left:0;
  border-right:0;
  color:var(--text);
}

.nav-access span {
  font-size:17px;
}

.nav-access:hover {
  color:var(--accent);
}

.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  background:var(--accent);
  color:var(--bg);
  z-index:20;
  padding:12px;
}

.skip-link:focus {
  top:12px;
}

/* A photograph becomes the room as the visitor scrolls. */
.immersion {
  height:185vh;
  min-height:1100px;
  position:relative;
}

.immersion-stage {
  --progress:0;
  height:calc(100svh - 24px);
  min-height:680px;
  position:sticky;
  top:0;
  isolation:isolate;
  overflow:hidden;
}

.hero-intro {
  position:absolute;
  top:5.5%;
  left:0;
  width:100%;
  text-align:center;
  z-index:2;
  transform:translateY(calc(var(--progress) * -100px));
  opacity:calc(1 - var(--progress) * 2.1);
  pointer-events:none;
}

.hero-kicker {
  color:var(--muted);
  margin-bottom:25px;
  font-size:10px;
  letter-spacing:.15em;
}

.hero-intro h1 {
  font-size:clamp(64px,7.7vw,124px);
  font-weight:400;
  line-height:.98;
  letter-spacing:-.065em;
}

.hero-intro h1 span {
  color:#dfe5d5;
}

.cinema-frame {
  position:absolute;
  top:calc(27% - var(--progress) * 27%);
  left:calc(20% - var(--progress) * 20%);
  width:calc(60% + var(--progress) * 40%);
  height:calc(58% + var(--progress) * 42%);
  overflow:hidden;
  background:#1e3328;
}

.cinema-image {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 53%;
  filter:brightness(.68) saturate(.75);
  transform:scale(calc(1.08 - var(--progress) * .08));
}

.cinema-shade {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(4,12,6,.08),transparent 40%,rgba(4,12,6,.4));
}

.image-caption {
  position:absolute;
  bottom:23px;
  left:25px;
  right:25px;
  display:flex;
  justify-content:space-between;
  font-size:9px;
  color:#dce4d4;
  opacity:calc(1 - var(--progress) * 2);
}

.frame-corner {
  position:absolute;
  width:13px;
  height:13px;
  opacity:.7;
}

.top-left {
  top:14px;
  left:14px;
  border-top:1px solid #dce4d4;
  border-left:1px solid #dce4d4;
}

.bottom-right {
  bottom:14px;
  right:14px;
  border-bottom:1px solid #dce4d4;
  border-right:1px solid #dce4d4;
}

.immersed-copy {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:24px;
  opacity:clamp(0,calc((var(--progress) - .4) * 2.5),1);
}

.immersed-copy p {
  font-size:clamp(40px,7vw,110px);
  letter-spacing:-.065em;
}

.hero-bottom {
  position:absolute;
  left:4.2%;
  right:4.2%;
  bottom:5%;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  color:var(--muted);
  opacity:calc(1 - var(--progress) * 3);
  font-size:12px;
}

.scroll-cue {
  display:flex;
  align-items:center;
  gap:15px;
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  white-space:nowrap;
  font-size:9px;
}

.scroll-line {
  width:22px;
  height:1px;
  background:#616c5a;
}

.hero-cities {
  text-align:right;
  font-size:9px;
  line-height:1.8;
}

.access-section {
  max-width:1440px;
  margin:auto;
  padding:130px 8.4% 140px;
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:11%;
  align-items:center;
}

.section-index {
  color:var(--muted);
  margin-bottom:33px;
}

.access-copy .section-index {
  display:flex;
  align-items:center;
  gap:18px;
}

.access-copy h2 {
  font-size:clamp(42px,4.5vw,70px);
  font-weight:400;
  line-height:1.06;
  letter-spacing:-.055em;
}

.access-copy h2 span {
  color:var(--muted);
}

.access-description {
  color:var(--muted);
  margin:28px 0 34px;
  line-height:1.8;
  font-size:13px;
}

.city-list {
  display:flex;
  gap:26px;
  color:#c6cbbf;
  font-size:11px;
}

.city-list>span {
  display:flex;
  align-items:center;
  gap:9px;
}

.city-code {
  border:1px solid var(--line);
  padding:5px 6px;
  font-size:9px;
  color:var(--muted);
}

.access-card {
  background:#111510;
  border:1px solid #2b3327;
  padding:32px;
  position:relative;
}

.access-card:before {
  content:'';
  width:20px;
  height:1px;
  background:var(--accent);
  position:absolute;
  top:-1px;
  left:32px;
}

.access-card-top {
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:9px;
  align-items:center;
  margin-bottom:48px;
}

.access-card h3 {
  font-size:22px;
  line-height:1.2;
  font-weight:400;
  letter-spacing:-.045em;
}

.access-card>p {
  margin:15px 0 28px;
  color:var(--muted);
  font-size:12px;
  line-height:1.8;
}

.access-card label {
  display:block;
  margin-bottom:10px;
  color:#b1b9a8;
  font-size:9px;
}

.password-field {
  display:flex;
  border:1px solid #37402f;
  height:48px;
  background:#0c100b;
}

.password-field:focus-within {
  border-color:var(--accent);
}

.password-field input {
  padding:0 13px;
  border:0;
  background:none;
  min-width:0;
  flex:1;
  color:var(--text);
  font-size:12px;
}

.password-field input::placeholder {
  color:#697161;
}

.password-field input:focus {
  outline:0;
}

.password-field button {
  padding:0 13px;
  font:9px var(--mono);
  color:var(--muted);
  border:0;
  background:none;
  text-transform:uppercase;
}

.enter-button {
  width:100%;
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#1b2514;
  padding:14px 16px;
  font-size:12px;
  transition:background .2s;
}

.enter-button:hover {
  background:#e8f2d5;
}

.enter-button>span:last-child {
  font-size:18px;
  line-height:1;
}

.access-message {
  min-height:36px;
  padding-top:10px;
  font-size:12px;
}

.access-card-bottom {
  border-top:1px solid var(--line);
  padding-top:19px;
  display:flex;
  gap:8px;
  align-items:center;
  color:#77816e;
  font-size:8px;
  letter-spacing:.025em;
}

.access-card-bottom .status-dot {
  width:4px;
  height:4px;
  background:#77816e;
}

.site-footer {
  margin:0 4.2%;
  padding:32px 0 36px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  color:var(--muted);
}

.site-footer .wordmark {
  color:var(--text);
  font-size:22px;
}

.site-footer .micro {
  font-size:8px;
}

.footer-year {
  margin-left:28px;
}

/* Operations: wide, vertically stacked workflow modules. */
.control-center .site-nav {
  border-bottom:1px solid var(--line);
  height:88px;
}

.control-main {
  max-width:1400px;
  width:calc(100% - 120px);
  margin:0 auto;
  padding:65px 0 70px;
}

.control-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:25px;
  margin-bottom:38px;
}

.control-heading .section-index {
  margin-bottom:18px;
}

.control-heading h1 {
  font-size:clamp(38px,4.6vw,64px);
  font-weight:400;
  letter-spacing:-.06em;
  line-height:1.1;
}

.control-heading h1 span {
  color:var(--accent);
}

.lede {
  color:var(--muted);
  margin-top:12px;
  font-size:14px;
}

.header-controls {
  display:grid;
  justify-items:end;
  gap:10px;
}

.connection {
  border:1px solid var(--line);
  padding:8px 11px;
  font:10px var(--mono);
  color:var(--muted);
}

.connection.ready {
  color:var(--success);
}

.connection.ready:before {
  content:'●';
  font-size:8px;
  margin-right:8px;
}

.connection.error,.error {
  color:var(--error);
}

.usage-meter {
  font:10px var(--mono);
  color:var(--muted);
}

.system-bar {
  display:grid;
  grid-template-columns:240px 240px 1fr;
  gap:30px;
  background:var(--panel);
  border:1px solid var(--line);
  padding:24px;
  align-items:center;
}

.environment-control,.location-picker {
  display:grid;
  gap:10px;
}

.environment-control>.micro,.location-picker>label {
  color:var(--muted);
  font-size:9px;
}

.environment-switch {
  display:flex;
  border:1px solid var(--line);
  padding:3px;
  height:42px;
}

.environment-switch button {
  border:0;
  background:none;
  color:var(--muted);
  flex:1;
  padding:8px 12px;
  font-size:11px;
}

.environment-switch button.active {
  background:var(--accent);
  color:#1b2514;
}

.notice-copy {
  border-left:1px solid var(--line);
  padding-left:25px;
  display:grid;
  gap:6px;
}

.notice-copy strong {
  font-size:12px;
  font-weight:400;
}

.notice-copy span {
  font-size:11px;
  color:var(--muted);
}

.workflow-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:38px 0 13px;
  color:var(--muted);
}

.workflow-heading h2 {
  font-weight:400;
}

.workflow-heading span {
  font-size:9px;
}

.workflow {
  display:grid;
  gap:10px;
  scroll-margin-top:20px;
}

.workflow-row {
  display:grid;
  grid-template-columns:32px 1fr 1.3fr 166px;
  gap:22px;
  align-items:center;
  min-height:136px;
  padding:25px;
  background:var(--panel);
  border:1px solid var(--line);
}

.step-number {
  color:#69775f;
  align-self:start;
  margin-top:5px;
}

.step-copy h2 {
  font-size:20px;
  font-weight:400;
  letter-spacing:-.04em;
}

.step-copy p {
  font-size:11px;
  margin:5px 0 11px;
  color:var(--muted);
}

.endpoint {
  font-size:8px;
  color:#6a7964;
  letter-spacing:.035em;
}

.step-fields {
  min-width:0;
}

.step-fields label {
  display:block;
  font:9px var(--mono);
  color:var(--muted);
  margin-bottom:8px;
}

.control-center select,.control-center input {
  width:100%;
  background:#0d110e;
  border:1px solid #30392e;
  padding:11px 10px;
  color:#d1d7c9;
  font-size:11px;
  height:42px;
  min-width:0;
}

.control-center select:disabled {
  color:#727b6b;
}

.showtime-fields {
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  gap:12px;
}

.step-button {
  background:#1d261a;
  color:var(--accent);
  border:1px solid #3d4a32;
  padding:12px;
  font-size:11px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
}

.step-button:hover:not(:disabled) {
  background:#293721;
  border-color:var(--accent);
}

.result {
  font:11px/1.7 var(--mono);
  overflow-wrap:anywhere;
}

.muted {
  color:var(--muted);
}

.success,.result a {
  color:var(--success);
}

.result a {
  text-decoration:underline;
  text-underline-offset:4px;
}

.busy {
  color:var(--accent);
}

.actions {
  display:flex;
  align-items:center;
  gap:22px;
  margin:24px 0 35px;
}

.primary {
  background:var(--accent);
  border:1px solid var(--accent);
  color:#1b2514;
  padding:13px 16px;
  font-size:11px;
  display:flex;
  align-items:center;
  gap:25px;
}

.primary:hover {
  background:#e8f2d5;
}

#activity {
  font-size:11px;
}

.quota-note {
  margin-left:auto;
  color:#68745e;
  font-size:8px;
}

.console {
  border:1px solid var(--line);
  background:var(--panel);
}

.console-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:23px 25px;
  border-bottom:1px solid var(--line);
}

.console-header .micro {
  color:var(--muted);
  font-size:9px;
}

.console h2 {
  font-size:14px;
  font-weight:400;
  margin-top:6px;
}

.quiet {
  background:none;
  border:1px solid var(--line);
  padding:9px 12px;
  color:var(--muted);
  font:10px var(--mono);
}

pre {
  max-height:440px;
  min-height:140px;
  overflow:auto;
  margin:0;
  padding:25px;
  background:#090c0a;
  color:#bac9af;
  font:11px/1.8 var(--mono);
  white-space:pre-wrap;
  word-break:break-word;
}

.technical-note {
  font-size:10px;
  line-height:1.8;
  color:#707b68;
  margin-top:16px;
  max-width:850px;
}

@media(min-width:1700px) {
  .cinema-frame {
    left:calc(23% - var(--progress) * 23%);
    width:calc(54% + var(--progress) * 46%);
  }
}

@media(max-width:1000px) {
  .site-nav {
    padding:0 5%;
    height:88px;
  }
  .nav-edition {
    font-size:8px;
  }
  .hero-intro {
    top:7%;
  }
  .cinema-frame {
    left:calc(12% - var(--progress) * 12%);
    width:calc(76% + var(--progress) * 24%);
  }
  .access-section {
    gap:7%;
    padding:100px 6%;
  }
  .access-card {
    padding:25px;
  }
  .city-list {
    gap:15px;
    flex-wrap:wrap;
  }
  .control-main {
    width:calc(100% - 60px);
  }
  .system-bar {
    grid-template-columns:1fr 1fr;
    gap:20px;
  }
  .notice-copy {
    grid-column:1/-1;
    border-left:0;
    border-top:1px solid var(--line);
    padding:15px 0 0;
  }
  .workflow-row {
    grid-template-columns:22px 1fr 1.25fr;
    gap:16px;
    padding:20px;
  }
  .step-button {
    grid-column:3;
    justify-self:start;
  }
  .step-fields {
    grid-column:3;
    grid-row:1/3;
  }
  .workflow-row .step-button {
    grid-column:2;
    grid-row:2;
    min-width:155px;
  }
  .showtime-fields {
    grid-template-columns:1fr;
  }
  .step-number {
    grid-row:1/3;
  }
  .quota-note {
    display:none;
  }
}

@media(max-width:650px) {
  .site-nav {
    height:80px;
  }
  .wordmark {
    font-size:24px;
  }
  .brand-symbol {
    width:22px;
    height:25px;
    font-size:20px;
  }
  .nav-edition {
    display:none;
  }
  .nav-access {
    font-size:9px;
    gap:18px;
  }
  .immersion {
    height:155svh;
    min-height:920px;
  }
  .immersion-stage {
    height:calc(100svh - 20px);
    min-height:600px;
  }
  .hero-intro {
    top:8%;
  }
  .hero-kicker {
    font-size:8px;
    margin-bottom:24px;
  }
  .hero-intro h1 {
    font-size:clamp(51px,12.5vw,80px);
    letter-spacing:-.065em;
  }
  .cinema-frame {
    top:calc(28% - var(--progress) * 28%);
    left:calc(6% - var(--progress) * 6%);
    width:calc(88% + var(--progress) * 12%);
    height:calc(53% + var(--progress) * 47%);
  }
  .image-caption {
    left:17px;
    right:17px;
    bottom:20px;
    font-size:7px;
  }
  .image-caption span:last-child {
    display:none;
  }
  .hero-bottom {
    left:6%;
    right:6%;
    bottom:6%;
    font-size:10px;
  }
  .hero-cities {
    font-size:8px;
  }
  .scroll-cue {
    bottom:-25px;
    font-size:7px;
  }
  .scroll-line {
    width:14px;
  }
  .immersed-copy p {
    font-size:12vw;
  }
  .immersed-copy .micro {
    font-size:8px;
  }
  .access-section {
    grid-template-columns:1fr;
    gap:45px;
    padding:80px 6%;
  }
  .section-index {
    margin-bottom:24px;
  }
  .access-copy h2 {
    font-size:49px;
  }
  .access-description {
    margin-top:23px;
  }
  .access-card {
    padding:27px;
  }
  .access-card-top {
    margin-bottom:35px;
  }
  .access-card h3 {
    font-size:24px;
  }
  .site-footer {
    margin:0 6%;
    padding:28px 0;
    flex-wrap:wrap;
    gap:24px;
  }
  .site-footer>.micro:nth-child(2) {
    display:none;
  }
  .site-footer>.micro:last-child {
    font-size:7px;
  }
  .footer-year {
    margin-left:12px;
  }
  .control-main {
    width:calc(100% - 36px);
    padding-top:40px;
  }
  .control-heading {
    display:block;
    margin-bottom:28px;
  }
  .header-controls {
    justify-items:start;
    margin-top:25px;
  }
  .control-heading h1 {
    font-size:43px;
  }
  .system-bar {
    padding:17px;
    gap:14px;
  }
  .environment-switch button {
    padding:8px;
    font-size:10px;
  }
  .workflow-row {
    grid-template-columns:24px 1fr;
    gap:14px;
    padding:20px 17px;
  }
  .step-copy {
    grid-column:2;
  }
  .step-number {
    grid-row:1;
  }
  .workflow-row .step-fields {
    grid-column:2;
    grid-row:2;
  }
  .workflow-row .step-button {
    grid-column:2;
    grid-row:3;
    justify-self:stretch;
  }
  .showtime-fields {
    grid-template-columns:110px minmax(0,1fr);
  }
  .actions {
    align-items:flex-start;
    flex-direction:column;
    gap:15px;
  }
  .console-header {
    padding:20px 17px;
  }
  .console h2 {
    font-size:12px;
  }
  .console pre {
    padding:17px;
    font-size:10px;
  }
  .technical-note {
    font-size:9px;
  }
  .control-center .site-footer .micro {
    font-size:8px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  .immersion {
    height:auto;
    min-height:0;
  }
  .immersion-stage {
    position:relative;
  }
  .hero-intro,.cinema-image {
    transform:none;
  }
  *,*::before,*::after {
    transition:none!important;
  }
}

/* A deliberately quiet, entirely black front door. */
.gate {
  background: #000;
  color: #e7e7e7;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.gate-header, .gate-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 4.2%;
}
.gate-header > .micro, .gate-footer { color: #616161; }
.gate-main { flex: 1; display: grid; place-items: center; padding: 70px 24px; }
.gate-entry { width: min(320px, 100%); padding-bottom: 50px; }
.gate-eyebrow { color: #666; font-size: 9px; margin-bottom: 18px; }
.gate h1 { font-size: 30px; font-weight: 400; letter-spacing: -.055em; margin-bottom: 48px; }
.gate label { display: block; font-size: 8px; color: #797979; margin-bottom: 8px; }
.gate .password-field { border: 0; border-bottom: 1px solid #373737; background: none; height: 44px; }
.gate .password-field:focus-within { border-color: #aaa; }
.gate .password-field input { padding-left: 0; color: #eee; }
.gate .password-field input::placeholder { color: #555; }
.gate .password-field button { color: #888; }
.gate .password-field .gate-enter { color: #e7e7e7; font: 22px var(--font); padding-right: 0; padding-left: 20px; }
.gate .gate-enter:hover { color: #fff; }
.gate .access-message { color: #999; font-size: 11px; }
.gate .access-message.error { color: var(--error); }
.gate-footer { font-size: 8px; }
.oauth-card { width: min(520px, 100%); padding-bottom: 45px; }
.oauth-card h1 { font-size: clamp(38px, 6vw, 64px); line-height: .98; margin-bottom: 34px; }
.oauth-details { color: #cfcfcf; font-size: 16px; line-height: 1.55; margin-bottom: 18px; }
.oauth-details strong { color: #fff; font-weight: 400; }
.oauth-actions { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.oauth-primary, .oauth-secondary { min-height: 48px; border: 1px solid #444; padding: 0 18px; color: #eee; background: transparent; }
.oauth-primary { border-color: #e7e7e7; background: #e7e7e7; color: #050505; }
.oauth-primary:hover:not(:disabled) { background: #fff; border-color: #fff; }
.oauth-secondary:hover:not(:disabled) { border-color: #888; }
.oauth-footnote { color: #595959; max-width: 440px; margin-top: 30px; line-height: 1.7; }
.landing { background: #000; }
.landing .cinema-image { filter: brightness(.85) saturate(.85); object-position: center; }
.city-destinations > .micro { color: var(--muted); font-size: 9px; }
.city-destination { display: grid; grid-template-columns: 65px 1fr 20px; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); padding: 28px 0; font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -.04em; }
.city-destination > .micro { color: var(--muted); font-size: 8px; letter-spacing: .04em; }
.city-destination > span:last-child { font-size: 22px; }
.city-destination:hover { color: var(--accent); }
.city-destinations .destination-note { margin-top: 24px; font-size: 8px; }
.footer-signout { border: 0; background: none; color: var(--muted); padding: 8px 0; }
@media (max-width: 650px) {
  .gate-header, .gate-footer { padding: 28px 6%; }
  .gate-header > .micro { font-size: 8px; }
  .gate h1 { font-size: 29px; }
  .oauth-actions { align-items: stretch; flex-direction: column; }
  .oauth-actions button { width: 100%; }
  .city-destination { grid-template-columns: 60px 1fr 20px; }
}

/* Begin as a widescreen film frame, then expand into the viewport. */
.landing .cinema-frame {
  left: calc(14% - var(--progress) * 14%);
  width: calc(72% + var(--progress) * 28%);
  top: calc(38% - var(--progress) * 38%);
  height: var(--frame-height, 31vw);
}
@media (max-width: 650px) {
  .landing .cinema-frame {
    left: calc(6% - var(--progress) * 6%);
    width: calc(88% + var(--progress) * 12%);
    top: calc(36% - var(--progress) * 36%);
    height: var(--frame-height, 38vw);
  }
}

.waitlist-card input, .waitlist-card select {
  width: 100%;
  height: 46px;
  border: 1px solid #37402f;
  background: #0c100b;
  color: var(--text);
  padding: 0 13px;
  font-size: 12px;
  margin-bottom: 18px;
}
.waitlist-card input::placeholder { color: #697161; }
.waitlist-card .access-card-top { margin-bottom: 35px; }
.waitlist-card .enter-button { margin-top: 0; }
.waitlist-card .access-card-bottom { font-size: 10px; line-height: 1.7; }
.waitlist-card .access-message { min-height: 48px; }

/* A single editorial statement, rather than a feature grid. */
.experience-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 115px 8.4% 0;
  scroll-margin-top: 35px;
}
.cinema-editorial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12%;
  align-items: center;
  padding-bottom: 85px;
  border-bottom: 1px solid var(--line);
}
.cinema-editorial-title .section-index { font-size: 9px; margin-bottom: 36px; }
.cinema-editorial-title h2 {
  font-size: clamp(50px, 5.4vw, 82px);
  line-height: 1.04;
  letter-spacing: -.065em;
  font-weight: 400;
}
.cinema-editorial-title h2 span { color: var(--accent); }
.cinema-editorial-caption { color: var(--muted); margin-top: 28px; font-size: 9px; }
.cinema-editorial-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin-top: 22px;
}
.cinema-editorial-copy > .cinema-editorial-lead {
  color: var(--text);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.45;
  letter-spacing: -.035em;
  margin-top: 0;
}
.cinema-booking-note { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.cinema-booking-note > .micro { color: var(--muted); font-size: 8px; }
.cinema-booking-note > p { margin-top: 10px; color: var(--muted); font-size: 11px; line-height: 1.8; }
.cinema-letter { max-width: 690px; margin: 0 auto; padding: 20px 0 100px; border-bottom: 1px solid var(--line); }
.letter-label { color: var(--muted); margin-bottom: 45px; font-size: 9px; }
.cinema-letter h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 400; letter-spacing: -.045em; line-height: 1.2; margin-bottom: 32px; }
.letter-body { color: #b5b8b0; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.85; }
.letter-body p + p { margin-top: 24px; }
.letter-body .letter-closing { color: var(--text); }
.letter-signature { margin-top: 40px; font-size: 14px; line-height: 1.9; color: var(--muted); }
.letter-signature span { display: inline-block; margin-top: 9px; color: var(--text); font-size: 25px; letter-spacing: -.05em; }
.nav-actions { display: flex; gap: 26px; }
.chatgpt-button { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 15px 18px; background: transparent; border: 1px solid #58604f; color: var(--text); font-size: 13px; margin: 14px 0; }
.chatgpt-button:hover { border-color: var(--text); }
#connect-agent { width: min(300px, 100%); margin: 64px 0 0; padding: 18px 22px; background: #fff; border-color: #fff; color: #111; }
#connect-agent:hover { background: #e8e8e8; border-color: #e8e8e8; }
#chatgpt-dialog { width: min(480px, calc(100% - 32px)); padding: 32px; background: #0c0c0c; color: #eee; border: 1px solid #292929; max-height: 85svh; }
#chatgpt-dialog::backdrop { background: rgb(0 0 0 / .8); }
.dialog-close { float: right; background: none; border: 0; color: var(--text); font-size: 26px; }
#chatgpt-dialog h2 { font-weight: 400; font-size: 28px; letter-spacing: -.04em; margin: 8px 0 18px; }
#chatgpt-dialog > p, #chatgpt-dialog ol { color: var(--muted); line-height: 1.7; }
#chatgpt-dialog li { margin-bottom: 12px; }
.mcp-code { margin-top: 26px; border: 1px solid #2b2d29; background: #070807; }
.mcp-code-header { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-bottom: 1px solid #242622; color: var(--muted); }
#copy-mcp { background: transparent; border: 0; padding: 4px 0 4px 14px; color: var(--text); font: 11px var(--mono); }
.mcp-code pre { margin: 0; padding: 20px 16px; overflow-x: auto; }
#mcp-address { font: 13px/1.6 var(--mono); color: var(--accent); user-select: all; }
#copy-status { min-height: 20px; margin-top: 8px; font-size: 11px; }
#chatgpt-dialog .connection-note { font-size: 11px; color: #666; margin-top: 8px; }
@media (max-width: 650px) { .nav-actions { gap: 14px; } .nav-actions .nav-access { gap: 6px; font-size: 8px; } #chatgpt-dialog { padding: 24px; } }
/* Developer console: deliberately separate from the cinema landing. */
.control-center { --bg: #0d1117; --panel: #161b22; --line: #30363d; --text: #e6edf3; --muted: #8b949e; --accent: #79c0ff; --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); font-family: var(--font); font-size: 13px; }
.control-center .site-nav { height: 58px; padding: 0 28px; background: var(--panel); border-bottom: 1px solid var(--line); }
.control-center .wordmark { font: 14px var(--mono); letter-spacing: -.02em; }
.control-center .micro { font-size: 10px; letter-spacing: .025em; text-transform: none; }
.control-center .nav-access { padding: 5px 10px; border: 1px solid var(--line); border-radius: 5px; gap: 12px; }
.control-center .control-main { max-width: 1440px; padding: 30px 28px; margin: 0 auto; }
.control-center .control-heading { margin-bottom: 24px; padding: 0; align-items: center; }
.control-center .control-heading h1 { font-size: 28px; letter-spacing: -.035em; line-height: 1.3; margin: 6px 0; }
.control-center .control-heading .section-index { margin-bottom: 0; color: var(--accent); }
.control-center .lede { font-size: 13px; color: var(--muted); }
.control-center .system-bar { background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: 18px; margin: 0 0 26px; }
.control-center .environment-switch { border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.control-center .environment-switch button { padding: 7px 14px; font: 12px var(--mono); }
.control-center .environment-switch button.active { background: #1f6feb; color: #fff; }
.control-center .workflow-heading { margin-bottom: 10px; }
.control-center .workflow { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.control-center .workflow-row { padding: 18px; min-height: 112px; background: var(--panel); gap: 18px; border-bottom: 1px solid var(--line); }
.control-center .workflow-row:last-child { border-bottom: 0; }
.control-center .step-copy h2 { font-size: 16px; letter-spacing: -.02em; margin-bottom: 5px; }
.control-center .step-copy p { display: none; }
.control-center .endpoint { color: var(--accent); font-size: 10px; }
.control-center select, .control-center input { background: #0d1117; border: 1px solid var(--line); border-radius: 5px; min-height: 35px; font: 12px var(--mono); }
.control-center .step-button, .control-center .quiet { background: #21262d; border: 1px solid var(--line); border-radius: 5px; padding: 9px 12px; font: 12px var(--mono); color: var(--text); }
.control-center .actions { margin: 18px 0; padding: 0; }
.control-center .primary { background: #238636; color: #fff; border: 1px solid #2ea043; border-radius: 5px; padding: 10px 16px; font-size: 12px; }
.control-center .console { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #090d12; }
.control-center .console-header { padding: 14px 18px; background: var(--panel); }
.control-center .console-header h2 { font: 12px var(--mono); margin-top: 5px; letter-spacing: 0; }
.control-center .console pre { font: 12px/1.7 var(--mono); padding: 20px; min-height: 240px; max-height: 560px; color: #a5d6ff; }
.control-center .technical-note { font: 11px/1.7 var(--mono); margin-top: 14px; }
.control-center .site-footer { padding: 18px 28px; border-top: 1px solid var(--line); }
@media (max-width: 650px) { .control-center .control-main { padding: 20px 16px; } .control-center .site-nav { padding: 0 16px; } .control-center .nav-edition { display: none; } }
.control-center { --bg: #0a0a0a; --panel: #101010; --line: #292929; --text: #d8d8d8; --muted: #777; --accent: #ddd; --success: #aaa; --font: var(--mono); font-family: var(--mono); }
.control-center .control-main { width: 100%; }
.control-center .site-nav { height: 48px; background: #0a0a0a; }
.control-center .control-heading h1 { font: 22px/1.4 var(--mono); letter-spacing: -.04em; }
.control-center .control-heading .section-index { color: #666; text-transform: uppercase; font-size: 9px; }
.control-center .lede { font: 11px/1.6 var(--mono); }
.control-center .system-bar, .control-center .workflow, .control-center .environment-switch, .control-center .console, .control-center button, .control-center select, .control-center input { border-radius: 0; }
.control-center .system-bar { padding: 14px 16px; background: #0d0d0d; }
.control-center .workflow { gap: 0; }
.control-center .workflow-row { background: #0d0d0d; border: 0; border-bottom: 1px solid var(--line); min-height: 94px; padding: 15px 16px; }
.control-center .step-number { color: #555; }
.control-center .step-copy h2 { font: 12px/1.5 var(--mono); letter-spacing: 0; }
.control-center .endpoint { color: #777; font-size: 9px; }
.control-center .environment-switch button { background: #101010; color: #777; font-size: 10px; }
.control-center .environment-switch button.active { background: #d8d8d8; color: #111; }
.control-center select, .control-center input { background: #090909; color: #bbb; height: 34px; padding: 7px 9px; font-size: 11px; }
.control-center .step-button, .control-center .quiet, .control-center .nav-access { background: transparent; color: #bbb; font: 10px var(--mono); border-radius: 0; }
.control-center .step-button:hover:not(:disabled) { background: #202020; border-color: #666; }
.control-center .primary { background: #d8d8d8; border-color: #d8d8d8; color: #111; font: 11px var(--mono); }
.control-center .console { background: #070707; }
.control-center .console-header { background: #111; }
.control-center .console pre { color: #b8b8b8; font-size: 11px; }
.control-center .connection, .control-center .usage-meter, .control-center #activity { font: 10px/1.6 var(--mono); }
.waitlist-card input[type="hidden"] { display: none; }
@media (max-width: 1000px) {
  .experience-section { padding: 90px 6% 0; }
  .cinema-editorial { gap: 8%; }
  .cinema-editorial-copy > p { font-size: 13px; }
  .cinema-editorial-copy > .cinema-editorial-lead { font-size: 21px; }
}
@media (max-width: 650px) {
  .experience-section { padding: 70px 6% 0; }
  .cinema-editorial { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .cinema-editorial-title h2 { font-size: 62px; }
  .cinema-editorial-title .section-index { margin-bottom: 25px; }
  .cinema-editorial-copy > .cinema-editorial-lead { font-size: 24px; }
  .hero-bottom > p { max-width: 60%; }
  .hero-cities { max-width: 38%; }
}
