@property --ga {
  syntax: '<angle>';
  inherits: false;
  initial-value: 160deg;
}
@view-transition {
  navigation: auto;
}
::view-transition-group(*) {
  animation-duration: .55s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes vt-fade-out {
  to { opacity: 0; }
}
@keyframes vt-fade-in {
  from { opacity: 0; }
}
::view-transition-old(*) {
  animation: vt-fade-out .55s cubic-bezier(0.4, 0, 0.2, 1) both;
}
::view-transition-new(*) {
  animation: vt-fade-in .55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

::view-transition-old(root) {
  animation: none;
  opacity: 1;
}

::view-transition-old(brand),
::view-transition-new(brand) {
  mix-blend-mode: plus-lighter;
}
:root {
  --bg: #0a0806;
  --bg-art: url("bg-sea.webp?v=348");
  --bg2: #0f0c08;
  --surface: #121008;
  --line: rgba(212, 175, 55, .26);
  --line-soft: rgba(212, 175, 55, .13);
  --gold: #d4af37;
  --gold-hi: #f3df9a;
  --gold-dim: #8a6d1f;
  --ink: #e9e2d0;
  --ink-dim: #9a917c;
  --ink-faint: #847a66;
  --ok: #3fae5a;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: .35s;
  --t: .55s;
  --t-slow: .7s;
  --serif: 'Cormorant Garamond', 'Songti SC', 'STSong', 'SimSun', ui-serif, Georgia, serif;
  --sans: 'Jost', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;

  color-scheme: dark;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  -webkit-tap-highlight-color: transparent;
}
html.opening-invite-open {
  overflow: hidden;
  overscroll-behavior: none;
}
html:has(body[data-page="home"]) {
  scroll-snap-type: none;
}
body {
  margin: 0;

  background: var(--bg) var(--bg-art) center top / 100% auto repeat-y;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  body {
    background-image: linear-gradient(#bfbfbf, #bfbfbf), var(--bg-art);
    background-blend-mode: multiply, normal;
  }
}

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}
ul, ol {
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
img {
  max-width: 100%;
}
::selection {
  background: var(--gold);
  color: #0a0806;
}
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -110%);
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-hi);
  background: var(--bg2);
  border: 1px solid var(--gold);
  transition: transform var(--t-fast) var(--ease);
}

.skip:focus-visible {
  transform: translate(-50%, 60px);
}

main[tabindex]:focus {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.bar {
  position: fixed;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 40;
  height: 61px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(16px, 3vw, 40px);

  padding-left: max(clamp(16px, 3vw, 40px), env(safe-area-inset-left));
  padding-right: max(clamp(16px, 3vw, 40px), env(safe-area-inset-right));
  background: rgba(10, 8, 6, .42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

:root {
  --ticker-clear: 32px;
}
.tick {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 39;
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.tick[hidden] {
  display: none;
}
.tick-track {
  width: max-content;
  transform: translate3d(100vw, 0, 0);
  will-change: transform;
}
.tick.run .tick-track {
  animation: tickPass var(--tick-run) linear both;
}
@keyframes tickPass {
  from { transform: translate3d(100vw, 0, 0); }
  to { transform: translate3d(calc(-100% - 8vw), 0, 0); }
}
.tick-i {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 0 18px;
  white-space: nowrap;
}
.tick-u {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-faint);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .9);
}
.tick-k {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .9);
}
.tick-a {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink-dim);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .9);
}
.tick-a.big {
  color: var(--gold);
}
.tick-a.hot {
  color: var(--gold-hi);
  text-shadow: 0 0 10px rgba(243, 223, 154, .35), 0 1px 8px rgba(0, 0, 0, .9);
}
.tick-g {
  width: 32px;
  height: 24px;
  flex: none;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}
.tick-n {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink-faint);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .9);
}
.bar-nav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
}
.bar-nav a, .bar .back {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color var(--t-fast) var(--ease);
}
.bar-nav a:hover, .bar .back:hover {
  color: var(--gold);
}
.bar .back {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  justify-self: start;
}
.brand {
  display: inline-flex;
  align-items: center;
  view-transition-name: brand;
  position: relative;
  isolation: isolate;
}
.brand::before {
  content: "";
  position: absolute;
  inset: 4% -15%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(212, 175, 55, .34), rgba(212, 175, 55, 0) 70%);
  opacity: .16;
  transform: scale(.86);
  transition: opacity .55s cubic-bezier(.16, 1, .3, 1), transform .55s cubic-bezier(.16, 1, .3, 1);
  animation: brand-halo 5.2s 1s cubic-bezier(.4, 0, .2, 1) infinite;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(42px, 5vw, 56px);
  position: relative;
  z-index: 1;
  transform-origin: 50% 50%;
  filter:
    drop-shadow(0 0 4px rgba(212, 175, 55, .72))
    drop-shadow(0 0 14px rgba(212, 175, 55, .42))
    drop-shadow(0 0 34px rgba(212, 175, 55, .2));
  animation: brand-arrive 1.05s cubic-bezier(.16, 1, .3, 1) both;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), filter .55s cubic-bezier(.16, 1, .3, 1);
}
.brand:hover::before {
  opacity: .58;
  transform: scale(1.16);
}
.brand:hover img {
  transform: translateY(-1px) scale(1.025);

  filter:
    drop-shadow(0 0 4px rgba(212, 175, 55, .85))
    drop-shadow(0 0 17px rgba(212, 175, 55, .55))
    drop-shadow(0 0 42px rgba(212, 175, 55, .3));
}
@keyframes brand-arrive {
  from { opacity: 0; transform: translateY(-5px) scale(.95); }
  to { opacity: 1; transform: none; }
}
@keyframes brand-halo {
  0%, 100% { opacity: .16; transform: scale(.86); }
  50% { opacity: .34; transform: scale(1.06); }
}
.bar-end {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.sel {
  appearance: none;
  -webkit-appearance: none;
  background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%239a917c'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--line-soft);
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  padding: 7px 26px 7px 12px;
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.sel:hover {
  border-color: var(--line);
  color: var(--ink);
}

.sel {
  color-scheme: dark;
}
@supports (appearance: base-select) {
  .sel,
  .sel::picker(select) {
    appearance: base-select;
  }

  .sel {
    min-inline-size: var(--sel-w);
    line-height: 16px;
  }
  #prov {
    --sel-w: 124px;
  }

  .sel::picker-icon {
    display: none;
  }
  .sel::picker(select) {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 4px 0;
    margin-top: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .6);

    opacity: 0;
    translate: 0 -6px;
    transition: opacity var(--t-fast) var(--ease), translate var(--t-fast) var(--ease),
                overlay var(--t-fast) allow-discrete, display var(--t-fast) allow-discrete;
  }
  .sel::picker(select):popover-open {
    opacity: 1;
    translate: 0 0;
  }
  @starting-style {
    .sel::picker(select):popover-open {
      opacity: 0;
      translate: 0 -6px;
    }
  }
  .sel option {
    background: transparent;
    color: var(--ink-dim);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .1em;
    padding: 9px 16px;
    transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  }

  .sel option:checked {
    color: var(--gold-hi);
    background: linear-gradient(90deg, rgba(212, 175, 55, .1), transparent 75%);
    box-shadow: inset 2px 0 var(--gold);
  }
  .sel option::checkmark {
    display: none;
  }
  .sel option:hover {
    color: var(--ink);
    background: rgba(212, 175, 55, .06);
  }
}

.lang {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 50px;
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  background-image:
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%239a917c' stroke-width='1.7'%3E%3Ccircle cx='12' cy='12' r='9.2'/%3E%3Cpath d='M2.8 12h18.4M12 2.8c4.6 5 4.6 13.4 0 18.4-4.6-5-4.6-13.4 0-18.4'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5'%3E%3Cpath d='M0 0l4.5 5L9 0z' fill='%239a917c'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: right 11px center, right 0 center;
  border: 1px solid transparent;
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0;
  padding: 0 30px 0 0;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}

.lang-btn:hover {
  color: var(--ink);
}
.lang-btn[aria-expanded="true"] {
  color: var(--gold-hi);
}

.lang-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 60;
  min-width: 100%;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: var(--bg2);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .6);

  opacity: 0;
  translate: 0 -6px;
  transition: opacity var(--t-fast) var(--ease), translate var(--t-fast) var(--ease);
}
.lang-list.on {
  opacity: 1;
  translate: 0 0;
}
.lang-list li {
  white-space: nowrap;
  color: var(--ink-dim);
  font-size: 12px;
  letter-spacing: .1em;
  padding: 10px 18px;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.lang-list li[aria-selected="true"] {
  color: var(--gold-hi);
  background: linear-gradient(90deg, rgba(212, 175, 55, .1), transparent 75%);
  box-shadow: inset 2px 0 var(--gold);
}
.lang-list li:hover {
  color: var(--ink);
  background: rgba(212, 175, 55, .06);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8em;

  white-space: nowrap;
  background: linear-gradient(160deg, var(--gold-hi), var(--gold));
  background: linear-gradient(var(--ga), var(--gold-hi), var(--gold));
  color: #0a0806;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .85em 1.9em;
  border: 1px solid var(--gold);
  transition: --ga var(--t) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease);
}
.btn-gold:hover {
  --ga: 280deg;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -14px rgba(212, 175, 55, .45);
}
.btn-gold:active {
  transform: translateY(0) scale(.98);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8em;

  white-space: nowrap;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .85em 1.9em;
  border: 1px solid var(--line);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
  transform: translateY(-2px);
}
.btn-ghost:active {
  transform: translateY(0) scale(.98);
}

.btn-ghost[hidden], .btn-gold[hidden] {
  display: none;
}
.bar .btn-gold, .bar .btn-ghost {
  padding: .6em 1.4em;
}
.spine {
  position: fixed;
  right: 22px;
  right: max(22px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.spine a {
  width: 18px;
  height: 1px;
  padding: 7px 0;
  box-sizing: content-box;
  background: var(--ink-faint);
  background-clip: content-box;
  transition: width var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.spine a.on {
  width: 36px;
  background: var(--gold);
}

.spine a {
  position: relative;
}
.spine a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 30px;
  transform: translate(-50%, -50%);
}
.ch {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;

  justify-content: safe center;

  padding-block: clamp(64px, 8vh, 120px) clamp(90px, 11vh, 150px);
  padding-inline: clamp(20px, 6vw, 120px);
  padding-left: max(clamp(20px, 6vw, 120px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 6vw, 120px), env(safe-area-inset-right));
  scroll-snap-align: start;
  scroll-margin-top: 60px;
}
@media (min-width: 1800px) {
  .ch {
    padding-left: max(6vw, calc((100vw - 1720px) / 2));
    padding-right: max(6vw, calc((100vw - 1720px) / 2));
  }
}

.js:not(.anim-ready) .ch:not(.ch-opening) :is(.ch-head, .door, .g-card, .ledger-col, .rails li, .pots li, .invite, .vip, .prov-wall .sub-title, .prov-wall li, .foot),

.js:not(.anim-ready) body[data-page="auth"] :is(.bar, .auth),

.js.intro-pending body[data-page="home"] .bar,
.js:not(.anim-ready) .hero-inner > * {

  opacity: 0;
}
.ch-head {
  margin-bottom: clamp(24px, 3.6vh, 52px);
}
.ch-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: .02em;
  text-wrap: balance;
}
.sub-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.gold-text {
  background: linear-gradient(105deg, var(--gold-dim) 0%, var(--gold) 30%, var(--gold-hi) 50%, var(--gold) 70%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ch-opening {
  align-items: center;
  justify-content: center;
  text-align: center;

  overflow-x: clip;
}

#opening {
  padding-top: max(clamp(64px, 8vh, 120px), calc(60px + var(--ticker-clear)));
}

@media (min-width: 900px) {
  #opening {
    padding-top: max(clamp(64px, 8vh, 120px), calc(60px + var(--ticker-clear) + 40px));
  }
}

.ch-opening::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: calc(-15vw - 10vh);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle calc(38vw + 26vh) at right calc(3vw + 2vh) top calc(3vw + 2vh), rgba(243, 223, 154, .15), transparent 78%),
    radial-gradient(circle calc(18vw + 12vh) at left 0px bottom calc(15vw + 10vh), rgba(212, 175, 55, .085), transparent 82%);
}

.beam {
  position: fixed;
  inset: 0;

  z-index: 41;
  overflow: hidden;
  pointer-events: none;
}
.beam::before {
  content: '';
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: 0;
  width: 34%;
  background:
    linear-gradient(90deg, rgba(255, 250, 232, 0) 43%, rgba(255, 250, 232, .05) 47%, rgba(255, 252, 240, .18) 50%, rgba(255, 250, 232, .05) 53%, rgba(255, 250, 232, 0) 57%),
    linear-gradient(90deg, rgba(212, 175, 55, 0) 4%, rgba(212, 175, 55, .022) 26%, rgba(233, 206, 141, .075) 50%, rgba(212, 175, 55, .02) 74%, rgba(212, 175, 55, 0) 96%);
  transform: translateX(-84vw) skewX(-15deg);
  will-change: transform;
  animation: sweep 12.5s cubic-bezier(.5, .04, .3, 1) infinite;
}
@keyframes sweep {
  0%, 6% { transform: translateX(-84vw) skewX(-15deg); }
  62%, 100% { transform: translateX(168vw) skewX(-15deg); }
}
.ch-opening::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(90vw, 1100px);
  height: 46vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(212, 175, 55, .09), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3.4vh, 34px);

  margin-bottom: clamp(24px, 6vh, 56px);
}
.jack-label {
  font-size: clamp(12px, .95vw, 15px);
  letter-spacing: .48em;
  margin-right: -.48em;
  text-transform: uppercase;
  color: var(--gold);
}
.jack-label b {
  font-weight: 400;
  color: var(--ink-dim);
}
.jack {
  display: flex;

  align-items: center;
  justify-content: center;

  font-family: var(--serif);

  font-weight: 700;

  --u: clamp(2.8rem, max(12.6vw, min(calc((88vw + 10px) / 6.3), 79.8px)), 14rem);
  font-size: calc(var(--u) * 1.09);

  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-rendering: geometricPrecision;
}
@supports (-webkit-background-clip: text) {

  .jack .col span, .jack .sep {

    background: linear-gradient(180deg, #fffefa 0%, #fefaea 20%, #faeec2 40%, #f3dd93 58%, var(--gold) 80%, var(--gold-dim) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.jack .cell, .jack .sep {
  height: calc(var(--u) * 1.32);
}

.jack {

  position: relative;

  filter: drop-shadow(0 0 calc(var(--u) * .19) #f0d48c);

  will-change: filter;
  padding: calc(var(--u) * .5) calc(var(--u) * .7);
  margin: calc(var(--u) * -.5) calc(var(--u) * -.7);
}

@media (max-width: 760px) {
  .jack {
    filter: drop-shadow(0 0 max(15px, calc(var(--u) * .19)) #f0d48c);
  }
}
.jack-coins {
  position: absolute;
  left: 50%;
  top: 88%;
  width: 0;
  height: 0;
  pointer-events: none;
}
.jack-coins i {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--u) * .17);
  height: calc(var(--u) * .17);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fffdf4, var(--gold) 54%, #4a3a0e);
  box-shadow: 0 0 0 1px rgba(8, 6, 4, .6);
  opacity: 0;
  animation: jackCoin 1.15s var(--ease) both;
}
.jack-coins i:nth-child(1) {
  --dx: calc(var(--u) * -1.26);
}
.jack-coins i:nth-child(2) {
  --dx: calc(var(--u) * .05);
  animation-delay: .09s;
}
.jack-coins i:nth-child(3) {
  --dx: calc(var(--u) * 1.32);
  animation-delay: .18s;
}
@keyframes jackCoin {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.35);
  }
  14% {
    opacity: 1;
  }
  52% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% - var(--u) * .86)) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .jack-coins {
    display: none;
  }
}
.jack .cell {
  display: inline-block;
  width: calc(var(--u) * .54);
  overflow: hidden;
  text-align: center;

  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 calc(var(--u) * .09), #000 calc(100% - var(--u) * .09), transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 calc(var(--u) * .09), #000 calc(100% - var(--u) * .09), transparent);
}
.jack .col {
  display: flex;
  flex-direction: column;
  transition: transform var(--t-slow) var(--ease);
}
.jack .col span {
  height: calc(var(--u) * 1.32);
  line-height: calc(var(--u) * 1.0545);

  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.jack .col span.on {
  opacity: 1;
}
.jack .sep {
  width: calc(var(--u) * .3);
  line-height: calc(var(--u) * 1.0545);
  text-align: center;
}
.hero-sub {

  font-weight: 300;
  text-align: center;
  font-size: clamp(13px, 1.05vw, 16px);
  margin-top: clamp(8px, 3vh, 38px);
  letter-spacing: .22em;
  color: var(--ink-dim);
  text-transform: uppercase;
  max-width: 44ch;
  text-wrap: balance;
}

.hero-sub span {
  display: block;
  margin-right: -.22em;
}

.hero-sub span + span::before {
  content: '\00b7';
  display: block;
  font-size: 1.25em;
  font-weight: 600;
  line-height: .92;
  position: relative;
  top: -.07em;
  color: var(--ink-faint);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 22px;

  margin-top: clamp(10px, 2.4vh, 28px);
}

.hero-ctas .online {
  flex-basis: 100%;
  justify-content: center;
}

.hero-ctas .btn-gold, .hero-ctas .btn-ghost {
  font-size: 14px;
  padding: .74em 1.6em;
}

.online {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--ink-dim);
}

.online b {
  font-family: var(--mono);
  font-weight: 400;
  color: #c3baa2;
  font-size: 16px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 7px rgba(63, 174, 90, .8);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(8px, 2.2vh, 24px);
  z-index: 6;
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 6px;
  width: 54px;
  height: 46px;
  margin-left: -27px;
  color: var(--gold);
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, .65)) drop-shadow(0 0 16px rgba(212, 175, 55, .3));
  opacity: 0;
  transition: opacity .5s var(--ease), color var(--t-fast) var(--ease);
}
.scroll-cue::before {
  content: '';
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0), currentColor);
}
.scroll-cue::after {
  content: '';
  position: absolute;
  inset: -16px -8px -14px;
  background: radial-gradient(50% 50% at 50% 60%, rgba(212, 175, 55, .22), transparent 70%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}
.scroll-cue svg {
  display: block;
  width: 22px;
  height: 8px;
}

.scroll-cue:not(.on) {
  visibility: hidden;
}
.scroll-cue.on {
  animation: cueBreath 2.8s ease-in-out .35s infinite;
}
.scroll-cue.on::after {
  opacity: .5;
}
.scroll-cue:hover {
  color: var(--gold-hi);
  filter: drop-shadow(0 0 6px rgba(243, 223, 154, .85)) drop-shadow(0 0 20px rgba(212, 175, 55, .45));
}
.scroll-cue:hover::after {
  opacity: 1;
}

html.gliding .scroll-cue {
  animation: none;
  opacity: 0;
}
@keyframes cueBreath {
  0%, 100% { opacity: .35; transform: translateY(0); }
  46% { opacity: 1; transform: translateY(5px); }
}

.doors {
  position: relative;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: rgba(10, 8, 6, .42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, .243);
}
.door {
  position: relative;
  display: flex;
  flex: 0 0 clamp(180px, 15vw, 240px);
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 1.1vw, 18px);
  min-height: clamp(46px, 6vh, 62px);

  padding: 6px clamp(40px, 3.4vw, 54px) 6px clamp(14px, 1.3vw, 22px);
  background: transparent;
  border-right: 1px solid var(--line-soft);
  scroll-snap-align: center;
}

.door:last-of-type {
  border-right: 0;
}

.door::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(212, 175, 55, .3), transparent 72%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}

.door:hover::after, .door.on::after {
  opacity: 1;
}
.door:hover .door-name, .door.on .door-name {
  color: var(--gold-hi);
}
.door:hover .prov-ico b, .door.on .prov-ico b {
  color: var(--gold-hi);
}
.door:hover .door-num, .door.on .door-num {
  color: var(--gold);
}

.door-all .prov-ico i {
  font-size: 20px;
  color: var(--gold);
  transition: color var(--t-fast) var(--ease);
}
.door-all:hover .prov-ico i {
  color: var(--gold-hi);
}
.door-num {
  position: absolute;
  top: 50%;
  right: clamp(8px, .7vw, 13px);
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--gold-dim);
  transition: color var(--t-fast) var(--ease);
}

.prov-ico {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(26px, 2vw, 34px);
  height: clamp(26px, 2vw, 34px);
}
.prov-ico b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: var(--gold);
  transition: color var(--t-fast) var(--ease);
}
.prov-ico img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prov-ico:has(img) b {
  display: none;
}
.door-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1rem, 1.28vw, 1.3rem);
  line-height: 1.15;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--t-fast) var(--ease);
}
.spotlight {
  margin-top: clamp(24px, 3.4vh, 52px);
}

.doors, .pnl-nav, .pnl-table-wrap, .rail {
  scrollbar-width: none;
}
.doors::-webkit-scrollbar,
.pnl-nav::-webkit-scrollbar,
.pnl-table-wrap::-webkit-scrollbar,
.rail::-webkit-scrollbar {
  display: none;
}

.door:focus-visible,
.pnl-nav .rl:focus-visible {
  outline-offset: -2px;
}

.doors > .hcue {
  display: block;
}
.hcue {
  display: none;
  position: sticky;
  flex: 0 0 0;
  width: 0;
  align-self: stretch;
  z-index: 4;
  pointer-events: none;
}

.hcue-l {
  left: 0;
  order: -1;
}
.hcue-r {
  right: 0;
}
.hcue::before,
.hcue::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.hcue::before {
  width: 52px;
}

.hcue-l::before {
  left: 0;
  background: linear-gradient(to right, rgba(7, 6, 4, .95), rgba(7, 6, 4, .78) 45%, rgba(7, 6, 4, 0));
}
.hcue-r::before {
  right: 0;
  background: linear-gradient(to left, rgba(7, 6, 4, .95), rgba(7, 6, 4, .78) 45%, rgba(7, 6, 4, 0));
}
.hcue::after {
  top: 50%;
  bottom: auto;
  width: 8px;
  height: 8px;
  border: solid var(--gold);
  border-width: 1.1px 1.1px 0 0;
}
.hcue-l::after {
  left: 13px;
  transform: translateY(-50%) rotate(-135deg);
}
.hcue-r::after {
  right: 13px;
  transform: translateY(-50%) rotate(45deg);
}
.can-l > .hcue-l::before,
.can-l > .hcue-l::after,
.can-r > .hcue-r::before,
.can-r > .hcue-r::after {
  opacity: 1;
}

.can-l > .hcue-l::before,
.can-r > .hcue-r::before {
  pointer-events: auto;
  cursor: pointer;
}

.dragging {
  user-select: none;
  -webkit-user-select: none;
}

.dragging.dragging,
.coasting.coasting {
  scroll-snap-type: none;
}
.dragging, .dragging * {
  cursor: grabbing;
}

.can-r > .hcue-r::after {
  animation: hcueNudge 1.5s var(--ease) 3;
}
@keyframes hcueNudge {
  0%, 60%, 100% { transform: translateY(-50%) rotate(45deg); }
  30% { transform: translate(4px, -50%) rotate(45deg); }
}

.pnl-table-wrap {
  display: flex;
}
.pnl-table-wrap > .hcue {
  display: block;
}

.pnl-table-wrap > .hcue::after {
  top: 21px;
}
.spot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  --sg-gap: clamp(12px, 1.3vw, 20px);
  gap: var(--sg-gap);
}
#hall .doors {
  flex: 0 0 auto;
}
#hall .spotlight {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: clamp(12px, 1.6vh, 22px);
  display: flex;
  flex-direction: column;
}
#hall .spot-grid {
  flex: 1 1 auto;
  min-height: 0;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
#hall .spot-grid .g-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
#hall .spot-grid .g-art {
  aspect-ratio: auto;
  flex: 1 1 auto;
  min-height: 0;
}
#hall .spot-grid .g-meta {
  padding: 10px 12px 11px;
}
#hall .spot-grid .g-mark {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
}
#hall .ch-head {
  margin-bottom: clamp(14px, 2vh, 24px);
}
#hall .ch-title {
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}
.g-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
  cursor: pointer;
}
.g-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}
.g-art {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c1, #1c1812), var(--c2, #3a2f1c));
  overflow: hidden;
}
.g-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, .5);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  z-index: 1;
}
.g-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(230px at var(--mx, 50%) var(--my, 40%), rgba(255, 255, 255, .16), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}

.g-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.g-art:has(.g-cover) {
  background: var(--surface);
}

.g-art:has(.g-cover) .g-mark {
  display: none;
}
.g-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: .08em;
  margin-right: -.08em;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}

.prov-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: 50% 0;
  background: #000;

  opacity: 0;
  transition: opacity .28s ease;
}
.prov-cover.on {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .prov-cover {
    transition: none;
  }
}

.prov-card .g-art {
  outline: 1px solid rgba(212, 175, 55, .55);
  outline-offset: -1px;
  box-shadow: inset 0 0 18px rgba(212, 175, 55, .18);
}

#hall .spot-grid .g-tag {
  display: none;
}
.g-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .26em;
  margin-right: -.26em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10, 8, 6, .82);
  border: 1px solid var(--line);
  padding: .4em .8em .4em 1.05em;
}
.g-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--ink-dim);
  background: rgba(10, 8, 6, .66);
  border: 1px solid var(--line-soft);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.g-fav:hover {
  color: var(--gold-hi);
  border-color: var(--line);
}
.g-fav.on {
  color: var(--gold);
}
.g-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-hi);
  border: 1px solid var(--gold);
  padding: .8em 1.5em .8em 1.7em;
  transform: translate(-50%, -50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  white-space: nowrap;
}
.g-play:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .g-card:hover .g-art::before,
  .g-card:hover .g-art::after {
    opacity: 1;
  }
  .g-card:hover .g-play {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
  }
}
.g-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px 14px;
}

.g-info {
  min-width: 0;
}
.g-info h3 {
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .04em;
  line-height: 1.3;
}

.g-info p {
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: .06em;
  margin-top: 2px;
}
#ledger .ch-head {
  margin-bottom: clamp(14px, 2vh, 24px);
}
#ledger .ch-title {
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}
.ledger-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.5vw, 80px);
  align-items: start;
}
.ledger-col.off {
  margin-top: 62px;
}
.lc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.lc-head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.95vw, 1.75rem);
}
.lc-avg {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-faint);
}
.lc-avg b {
  font-family: var(--mono);
  font-weight: 400;
  color: var(--gold);
  margin-left: .6em;
}
.ledger-col ol li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: clamp(10px, 1.4vw, 22px);
  padding: 14px 2px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.ledger-col ol li.new {
  animation: rowIn .6s var(--ease);
}
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}
.lu {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
}
.la {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}
.la.wd {
  color: var(--ink);
}
.lt {
  font-size: 11.5px;
  color: var(--ink-faint);
  min-width: 5.5em;
  text-align: right;
}

.ledger-foot {
  margin-top: clamp(20px, 2.6vh, 44px);
}
.rails ul {
  margin-top: 14px;
}
.pots li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(14px, 2vw, 26px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.pot-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .06em;
  min-width: 4.4em;
  color: var(--gold);
}
.pot-amt {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.pot-last {
  text-align: right;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.pot-last b {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}
.rails ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(18px, 2vw, 32px);
  background: transparent;
  border-top: 1px solid var(--line-soft);
}
.rails li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 4px;
  background: transparent;
  border-bottom: 1px solid var(--line-soft);
}
.rn {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .1em;
}
.rs {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}
.cards .invite:nth-child(2) {
  margin-top: 56px;
}
.cards .invite:nth-child(3) {
  margin-top: 112px;
}

#invite .cards {
  margin-bottom: clamp(48px, 7vh, 110px);
}
@media (max-width: 900px) {
  #invite .cards {
    margin-bottom: 0;
  }
}
.invite {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-height: clamp(240px, 30vh, 320px);
  padding: clamp(26px, 3vw, 46px);

  background: radial-gradient(60% 130% at 50% 0%, rgba(212, 175, 55, .13), transparent 70%);
  border: 1px solid var(--line);
  transition: transform var(--t) var(--ease);
}
.invite:hover {
  transform: translateY(-6px);
}
.invite::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
#invite .medal,
.ovation-coin {
  position: absolute;
  top: clamp(19px, 2.1vw, 30px);
  right: clamp(19px, 2.1vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .03em;
  width: clamp(58px, 5.2vw, 76px);
  height: clamp(58px, 5.2vw, 76px);
  border-radius: 50%;
  background: conic-gradient(from 210deg, #6b5420, #f0dda2 22%, #8a6d1f 44%, #f6ecc4 62%, #7a6027 80%, #d9bc63 100%);
  box-shadow: 0 10px 26px -14px rgba(212, 175, 55, .7);
  overflow: hidden;
}
#invite .medal::before,
.ovation-coin::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 34%, #1b1509, #0a0806 78%);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .34);
}
#invite .medal b,
#invite .medal i,
.ovation-coin b {
  position: relative;
  align-self: center;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(180deg, #fffefa, #f3dd93 56%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#invite .medal b {
  font-size: clamp(25px, 2.53vw, 36px);
  transform: translateY(-.115em);
}
#invite .medal i {
  font-size: clamp(10px, 1.05vw, 15px);
  margin-right: -.6em;
  transform: translateY(-.42em);
}
#invite .medal-desc b {
  transform: translateY(-.22em);
}
#invite .medal-wide b {
  transform: translate(-.09em, -.115em);
}
#invite .medal-wide i {
  transform: translate(-.22em, -.42em);
}
#invite .medal-word b {
  font-size: clamp(22px, 2.25vw, 32px);
  letter-spacing: .05em;
  margin-right: -.125em;
  transform: none;
}
#invite .invite h3 {
  padding-right: clamp(66px, 4.7vw, 86px);
}
.invite h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.15;
  text-wrap: balance;
}
.invite p {
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: .04em;
  max-width: 38ch;
}

.invite p.hint { max-width: none; }

.invite-cta {
  display: inline-flex;
  align-items: center;
  gap: .9em;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2em;
  margin-right: -.2em;
  text-transform: uppercase;
  color: var(--gold-hi);
}
.invite-cta i {
  transition: transform var(--t-fast) var(--ease);
}
.invite:hover .invite-cta i {
  transform: translateX(6px);
}
.ch-finale {
  gap: clamp(16px, 2.8vh, 38px);
}
.vip {

  position: relative;
  padding: clamp(24px, 3vw, 48px) clamp(20px, 3vw, 48px);
  text-align: center;
  border: 1px solid var(--line);
  flex: 1 1 auto;
  margin-block: clamp(10px, 2.6vh, 34px) clamp(6px, 1.4vh, 18px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(60% 130% at 50% 0%, rgba(212, 175, 55, .13), transparent 70%);
}

.vip::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.vip-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.6vw, 5.1rem);
  line-height: 1.05;
}
.vip p {
  margin: clamp(14px, 2.4vh, 26px) auto clamp(20px, 3.4vh, 36px);
  font-size: clamp(13.5px, 1.15vw, 17px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  max-width: 60ch;
  text-wrap: balance;
}
.vip .btn-gold {
  font-size: 13px;
  padding: 1.05em 2.8em;
}
.prov-wall {
  text-align: center;
}
.prov-wall ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px clamp(18px, 2.4vw, 42px);
  margin-top: 14px;
}
.prov-wall li {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(.84rem, 1.05vw, 1.06rem);
  letter-spacing: .1em;
  color: var(--ink-faint);
  transition: color var(--t-fast) var(--ease);
}
.prov-wall li:nth-child(3n) {
  color: var(--ink-dim);
}
.prov-wall li:hover {
  color: var(--gold);
}
.foot {
  border-top: 1px solid var(--line-soft);
  padding: 14px 0 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px clamp(18px, 2.2vw, 32px);
  font-size: 11px;
  color: var(--ink-faint);
}
.foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.foot nav a {
  color: var(--ink-faint);
  letter-spacing: .1em;
  transition: color var(--t-fast) var(--ease);
}
.foot nav a:hover {
  color: var(--gold);
}
.age {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .3em .6em;
  letter-spacing: .06em;
}
.foot .rights {
  margin-left: auto;
}
.contact {
  position: fixed;
  right: 20px;
  bottom: 22px;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact a, .contact button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 19px;
  color: var(--gold);
  background: rgba(10, 8, 6, .85);
  border: 1px solid var(--line);
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.pager[hidden] {
  display: none;
}
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 14px;
}
.pager button {
  min-width: 38px;
  height: 38px;
  padding: 0 9px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-dim);
  background: none;
  border: 1px solid var(--line-soft);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.pager button:hover:not(:disabled) {
  color: var(--gold-hi);
  border-color: var(--line);
}

.pager button[aria-current="page"] {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.pg-gap {
  padding: 0 2px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-dim);
}

.pager button:disabled {
  opacity: .35;
  cursor: default;
}
.pager-step {
  font-size: 15px;
}
.pager-gap {
  padding: 0 2px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-dim);
}

.i-tg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact a:hover, .contact button:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.contact .to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.contact .to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.contact .to-top.show:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.contact .contact-fab {
  display: none;
}

.contact-fab > i,
.contact-fab > .fab-x {
  grid-area: 1 / 1;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.contact.open .contact-fab > i {
  opacity: 0;
  transform: rotate(90deg) scale(.7);
}
.fab-x {
  position: relative;
  width: 17px;
  height: 17px;
  opacity: 0;
  transform: rotate(-90deg) scale(.7);
}
.contact.open .fab-x {
  opacity: 1;
  transform: none;
}
.fab-x::before,
.fab-x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}
.fab-x::before {
  transform: translateY(-50%) rotate(135deg);
}
.fab-x::after {
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1080px) {
  .contact {
    transition: opacity .55s var(--ease);
  }
  .contact.dim {
    opacity: .34;
  }
  .contact.dim:focus-within {
    opacity: 1;
  }
  .contact .contact-fab {
    display: grid;
  }

  .contact > :not(.contact-fab) {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: opacity .26s var(--ease), transform .36s var(--ease), visibility .36s;
  }

  .contact:not(.open) > :not(.contact-fab) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(.72);
    transition-delay: calc((var(--n, 3) - var(--i, 1)) * 38ms);
  }
  .contact.open > :not(.contact-fab) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(calc(var(--i, 1) * -56px));
    transition-delay: calc(var(--i, 1) * 45ms);
  }

  .contact.open > .to-top:not(.show) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(.72);
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  body[data-page="lobby"] .case-grid {
    padding-right: 30px;
  }
}

.chat {
  position: fixed;
  z-index: 47;
  right: 78px;
  bottom: 22px;
  right: calc(max(20px, env(safe-area-inset-right, 0px)) + 58px);
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  opacity: 0;
  transform: scale(.84) translate(12px, 20px);
  transform-origin: bottom right;
  transition: opacity .2s var(--ease), transform .26s cubic-bezier(.2, .88, .32, 1.12);
  pointer-events: none;
}
.chat.on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.chat[hidden] {
  display: none;
}
.chat-card {
  display: flex;
  flex-direction: column;
  width: min(372px, calc(100vw - 40px));
  height: min(642px, calc(100dvh - 132px));
  overflow: hidden;
  background: linear-gradient(180deg, #14110a, var(--bg));
  border: 1px solid var(--line);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .62), 0 0 44px rgba(212, 175, 55, .09);
}
.chat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 13px 12px 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(212, 175, 55, .05);
}
.chat-live {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(63, 174, 90, .18);
}
.chat-who {
  flex: 1;
  min-width: 0;
}
.chat-name {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--gold-hi);
}
.chat-sub {
  margin: 2px 0 0;
  font-size: 11.5px;
  color: var(--ink-dim);
}
.chat-x {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--ink-dim);
  background: none;
  border: 1px solid transparent;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.chat-x:hover {
  color: var(--gold);
  border-color: var(--line-soft);
}
.chat-log {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.chat-row {
  display: flex;
  flex-direction: column;
  max-width: 84%;
}
.chat-row.chat-in {
  align-self: flex-start;
  align-items: flex-start;
}
.chat-row.chat-out {
  align-self: flex-end;
  align-items: flex-end;
}
.chat-msg {
  margin: 0;
  padding: 9px 13px;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--ink);
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line-soft);
}
.chat-row.chat-up .chat-msg {
  animation: chatUp .55s ease-out;
}
@keyframes chatUp {
  0% {
    background: rgba(197, 160, 71, .13);
    border-color: var(--gold);
  }
  100% {
    background: rgba(255, 255, 255, .035);
    border-color: var(--line-soft);
  }
}
.chat-out .chat-msg {
  color: #1a1508;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  border-color: transparent;
}
.chat-time {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-dim);
}
.chat-chips {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-bottom: 1px solid var(--line-soft);
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.chat-chip {
  flex: none;
  width: 100%;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  color: var(--gold);
  background: none;
  border: 1px solid var(--line-soft);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.chat-chip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold-hi);
  background: rgba(212, 175, 55, .06);
  border-color: var(--line);
}
.chat-chip-top::after {
  content: '';
  flex: none;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--t-fast) var(--ease);
}
.chat-chip-top[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(-135deg);
}
.chat-chip:hover {
  color: var(--gold-hi);
  border-color: var(--line);
  background: rgba(212, 175, 55, .07);
}
.chat-chip-go {
  color: var(--bg);
  text-decoration: none;
  background: var(--gold);
  border-color: var(--gold);
}
.chat-chip-go:hover {
  color: var(--bg);
  background: var(--gold-hi);
  border-color: var(--gold-hi);
}
.chat-foot {
  display: flex;
  flex: none;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
}
.chat-field {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-soft);
}
.chat-field:focus {
  border-color: var(--line);
}
.chat-field::placeholder {
  color: var(--ink-dim);
}
.chat-go {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 17px;
  color: var(--bg);
  background: var(--gold);
  border: 1px solid var(--gold);
  transition: background-color var(--t-fast) var(--ease);
}
.chat-go:hover:not(:disabled) {
  background: var(--gold-hi);
}
.chat-go:disabled {
  opacity: .45;
  cursor: default;
}
.chat-open {
  position: relative;
}
.chat-open.has-new::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-hi);
  box-shadow: 0 0 0 2px var(--bg);
}
@media (max-width: 1080px) {
  .chat {
    right: 20px;
    bottom: 80px;
    right: max(20px, env(safe-area-inset-right, 0px));
    bottom: calc(max(22px, env(safe-area-inset-bottom, 0px)) + 58px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .chat {
    transition: opacity .01ms linear;
    transform: none;
  }

  .chat-row.chat-up .chat-msg {
    animation: none;
  }
}

@media (max-width: 900px) and (min-height: 661px) {
  #hall {
    padding-bottom: 72px;
  }
}

@media (min-width: 761px) and (max-height: 713px) {
  body[data-page="panel"] .contact {
    display: none;
  }
}
.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  background: radial-gradient(circle, rgba(212, 175, 55, .09), transparent 62%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s var(--ease);
}
@media (hover: none), (pointer: coarse) {
  .cursor-light {
    display: none;
  }

  .btn-gold:hover, .btn-ghost:hover,
  .g-card:hover, .invite:hover, .invite:hover .invite-cta i,
  .contact a:hover, .contact button:hover, .contact .to-top.show:hover {
    transform: none;
  }
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  bottom: max(30px, env(safe-area-inset-bottom));
  z-index: 95;
  max-width: 86vw;
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink);
  background: rgba(10, 8, 6, .94);
  border: 1px solid var(--line);
  padding: .8em 1.5em;
  opacity: 0;
  transform: translateX(-50%) translateY(14px);
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%);
}
@media (max-width: 760px) {
  body[data-page="lobby"] .toast {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }
}
.ovation {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 5, 3, .76);
  opacity: 0;
  transition: opacity .22s ease;
}
.ovation[hidden] {
  display: none;
}
.ovation.show {
  opacity: 1;
}
.ovation-card {
  width: min(400px, 100%);
  padding: clamp(30px, 5vw, 42px) clamp(22px, 4.2vw, 34px);
  text-align: center;
  background: linear-gradient(158deg, #211909, #0b0906);
  border: 1px solid rgba(212, 175, 55, .32);
  box-shadow: 0 34px 90px -46px rgba(0, 0, 0, .92);
}
.ovation-coin {
  position: relative;
  top: auto;
  right: auto;
  width: clamp(72px, 18vw, 88px);
  height: clamp(72px, 18vw, 88px);
  margin: 0 auto clamp(20px, 3.4vw, 26px);
}
.ovation-coin b {
  font-size: clamp(28px, 7vw, 38px);
  letter-spacing: .05em;
  margin-right: -.125em;
}
.ovation-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, .82);
}
.ovation-title {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4.4vw, 1.75rem);
  line-height: 1.25;
  color: #f6ecc4;
}
.ovation-sub {
  margin: 12px auto 0;
  max-width: 30ch;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(238, 229, 205, .78);
}
.motion-full .ovation-card > * {
  opacity: 0;
  transform: translateY(10px);
}
.motion-full .ovation.show .ovation-card > * {
  animation: ovation-rise .46s cubic-bezier(.22, .9, .3, 1) forwards;
}
.motion-full .ovation.show .ovation-kicker {
  animation-delay: .14s;
}
.motion-full .ovation.show .ovation-title {
  animation-delay: .2s;
}
.motion-full .ovation.show .ovation-sub {
  animation-delay: .26s;
}
.motion-full .ovation.show .ovation-coin {
  animation: ovation-seal .58s cubic-bezier(.2, .9, .28, 1.32) forwards;
}
.motion-full .ovation.show .ovation-coin::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(112deg, transparent 34%, rgba(255, 251, 235, .5) 50%, transparent 66%);
  opacity: 0;
  animation: ovation-glint .72s ease-out .34s forwards;
}
@keyframes ovation-rise {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ovation-seal {
  from {
    opacity: 0;
    transform: scale(.68);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ovation-glint {
  0% {
    opacity: 0;
    transform: translateX(-70%);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}
.lobby {
  display: grid;
  grid-template-columns: 256px minmax(0, 1fr);
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(60px + var(--ticker-clear));
}
.rail {
  position: sticky;
  top: calc(60px + var(--ticker-clear));
  height: calc(100vh - 60px - var(--ticker-clear));
  height: calc(100dvh - 60px - var(--ticker-clear));
  overflow-y: auto;

  overscroll-behavior-y: contain;
  border-right: 1px solid var(--line-soft);
  padding: 24px 0 40px;
}
.rl {
  display: grid;
  grid-template-columns: 2.4em 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 13px 22px;
  color: var(--ink-dim);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.rl:hover {
  color: var(--ink);
}
.rl.on {
  color: var(--gold-hi);
  background: linear-gradient(90deg, rgba(212, 175, 55, .1), transparent 75%);
  box-shadow: inset 2px 0 var(--gold);
}

.rl-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
}
.rl-num i {
  font-style: normal;
  font-size: 15px;
}
.rl-name {
  font-size: 13px;
  letter-spacing: .08em;
}
.rl-count {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-faint);
}
.rail-sep {
  margin: 20px 22px 6px;
  font-size: 9.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hall {

  padding: 24px clamp(18px, 3.6vw, 56px) clamp(60px, 10vh, 110px);
  padding-left: max(clamp(18px, 3.6vw, 56px), env(safe-area-inset-left));
  padding-right: max(clamp(18px, 3.6vw, 56px), env(safe-area-inset-right));
  min-width: 0;
}
.hall-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tools {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px 26px;
}
.search {
  position: relative;
  flex: 1 1 240px;
  max-width: 460px;
}
.search i {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--ink-faint);
  pointer-events: none;
}
.search input {
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .04em;
  padding: .65em .4em .65em 1.9em;
  transition: border-color var(--t-fast) var(--ease);
}
.search input::placeholder {
  color: var(--ink-faint);
}
.search input:focus {
  outline: none;
  border-color: var(--gold);
}

@media (hover: none), (pointer: coarse) {
  .search input {
    font-size: 16px;
  }
}

#lobby-doors {
  margin-top: clamp(20px, 3.4vh, 44px);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));

  grid-auto-flow: row dense;
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: 30px;
}

#grid .g-card {
  transition: opacity .5s var(--ease), translate .5s var(--ease),
    transform .45s var(--ease), border-color .45s var(--ease);
}
#grid .g-card.pre {
  opacity: 0;
  translate: 0 22px;
}

@media (min-width: 1024px) {
  .case-grid .g-card.wide {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
  }
  .case-grid .g-card.wide .g-art {
    aspect-ratio: auto;
    flex: 1;
  }

  .case-grid .g-card.wide .g-meta {
    padding: 20px 22px 22px;
  }
  .case-grid .g-card.wide .g-info h3 {
    font-size: 19px;
    letter-spacing: .05em;
  }
  .case-grid .g-card.wide .g-info p {
    font-size: 12.5px;
    margin-top: 6px;
  }

  .case-grid .g-card.wide .g-cover {
    object-fit: cover;
  }

  .case-grid .g-card:first-child:nth-last-child(-n+4).wide,
  .case-grid .g-card:first-child:nth-last-child(-n+4) ~ .g-card.wide {
    grid-row: auto;
  }

  .case-grid .g-card.wide.rgt {
    grid-column: auto / span 2;
  }
}
@media (min-width: 1240px) {
  .case-grid .g-card.wide.rgt {
    grid-column: -3 / -1;
  }
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 4vh, 46px);
}
.pager button {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-dim);
  border: 1px solid var(--line-soft);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.pager button:hover:not(:disabled) {
  color: var(--gold-hi);
  border-color: var(--line);
}

.pager button:disabled {
  color: var(--ink-faint);
  border-color: var(--line-soft);
  opacity: .45;
  cursor: default;
}
.pager .pg-arrow {
  font-size: 15px;
}
.empty {
  text-align: center;
  padding: clamp(60px, 12vh, 130px) 20px;
}
.empty h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.empty p {
  margin: 12px 0 28px;
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: .08em;
}
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  grid-template-columns: repeat(5, 1fr);

  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  background: rgba(10, 8, 6, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.dock a, .dock button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  font-size: 9.5px;
  letter-spacing: .1em;
  color: var(--ink-dim);
  transition: color var(--t-fast) var(--ease);
}
.dock i {
  font-size: 20px;
}
.dock .on {
  color: var(--gold);
}
.opening-invite {
  position: fixed;
  inset: 0;
  z-index: 85;
  width: min(1040px, calc(100vw - 96px));
  height: min(650px, calc(100dvh - 96px));
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #090704;
  border: 1px solid rgba(230, 196, 92, .56);

  --invite-shadow: 0 34px 110px rgba(0, 0, 0, .78), 0 0 46px rgba(212, 175, 55, .07);
  box-shadow: var(--invite-shadow), 0 0 0 100vmax rgba(3, 3, 2, .56);
}
.opening-invite:modal {
  box-shadow: var(--invite-shadow);
}
.opening-invite[open] {
  display: block;
}
.opening-invite:not([open]) {
  display: none;
}
.opening-invite:focus {
  outline: none;
}
.opening-invite::backdrop {
  background: rgba(3, 3, 2, .56);
  backdrop-filter: blur(5px) saturate(.92);
  -webkit-backdrop-filter: blur(5px) saturate(.92);
}
.opening-invite-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation: opening-invite-in .7s var(--ease) both;
}
.opening-invite-shell::before {
  content: '';
  position: absolute;
  inset: 5px;
  z-index: 2;
  border: 1px solid rgba(255, 238, 177, .07);
  pointer-events: none;
}
@keyframes opening-invite-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
}
@keyframes opening-invite-art-in {
  from { opacity: .72; transform: scale(1.035); }
}
@keyframes opening-invite-content-in {
  from { opacity: 0; transform: translateY(13px); }
}
@keyframes opening-invite-fade-in {
  from { opacity: 0; }
}
.opening-invite-art,
.opening-invite-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.opening-invite-art {
  object-fit: cover;
  filter: brightness(1.1) saturate(1.08);
}
.opening-invite-shade {
  background:
    radial-gradient(ellipse at 92% 42%, rgba(5, 4, 2, .12), transparent 40%),
    radial-gradient(circle at 27% 31%, rgba(214, 172, 55, .1), transparent 34%),
    linear-gradient(90deg, rgba(5, 4, 2, .92) 0%, rgba(5, 4, 2, .8) 54%, rgba(5, 4, 2, .26) 78%, rgba(5, 4, 2, .04) 100%);
}
.opening-invite-copy {
  position: relative;
  z-index: 1;
  width: min(70%, 720px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 62px);
  padding-bottom: 123px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .9);
}
.opening-invite-brand {
  width: min(260px, 80%);
  height: auto;
  margin-bottom: clamp(18px, 2.5vh, 26px);
}
.opening-invite-kicker {
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.opening-invite h2 {
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.8vw, 3.7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
  text-wrap: balance;
  color: var(--gold-hi);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .9), 0 0 28px rgba(212, 175, 55, .08);
}
.opening-invite-offers {
  width: 100%;
  max-width: 650px;
  margin-top: clamp(18px, 2.5vh, 24px);
  border-top: 1px solid rgba(212, 175, 55, .26);
}
.opening-invite-offers li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border-bottom: 1px solid rgba(212, 175, 55, .1);
}
.opening-invite-offers span {
  color: rgba(230, 196, 92, .66);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
}
.opening-invite-offers strong {
  display: block;
  color: var(--gold-hi);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.012em;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: 'lnum' 1, 'pnum' 1;
}
.opening-invite-offers p {
  margin-top: 4px;
  color: rgba(233, 226, 208, .82);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .03em;
}
.opening-invite-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: clamp(22px, 3vh, 32px);
}
.opening-invite-actions .btn-gold {
  min-width: 180px;
  height: 43px;
  justify-content: center;
  padding: 0 22px;
  font-size: 13px;
  letter-spacing: .18em;
  border-color: rgba(248, 232, 166, .82);
  background: linear-gradient(118deg, #f8e8a6 0%, #d8ad37 48%, #f0d478 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .42), 0 14px 30px rgba(0, 0, 0, .3);
}
.opening-invite-actions .btn-gold:hover {
  box-shadow: inset 0 1px rgba(255, 255, 255, .52), 0 17px 34px rgba(212, 175, 55, .2);
}
.opening-invite-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: rgba(233, 226, 208, .8);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color var(--t-fast) var(--ease);
}
.opening-invite-more::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  opacity: .34;
  transition: opacity var(--t-fast) var(--ease);
}
.opening-invite-more:hover {
  color: var(--gold-hi);
}
.opening-invite-more:hover::after {
  opacity: .8;
}
.opening-invite-more i {
  font-size: 12px;
  transition: translate var(--t-fast) var(--ease);
}
.opening-invite-more:hover i {
  translate: 3px 0;
}
.opening-invite-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: rgba(233, 226, 208, .82);
  background: rgba(3, 2, 1, .72);
  border: 1px solid rgba(230, 196, 92, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 238, 177, .015);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.opening-invite-close:hover {
  color: var(--gold);
  background: rgba(3, 2, 1, .86);
  border-color: rgba(212, 175, 55, .36);
  transform: rotate(90deg);
}
html.motion-full .opening-invite-art {
  animation: opening-invite-art-in 1.4s var(--ease) both;
}
html.motion-full .opening-invite-kicker,
html.motion-full .opening-invite h2,
html.motion-full .opening-invite-offers li,
html.motion-full .opening-invite-actions {
  animation: opening-invite-content-in .68s var(--ease) both;
}
html.motion-full .opening-invite-brand {
  animation: opening-invite-fade-in .68s var(--ease) both;
}
html.motion-full .opening-invite-brand { animation-delay: .12s; }
html.motion-full .opening-invite-kicker { animation-delay: .18s; }
html.motion-full .opening-invite h2 { animation-delay: .24s; }
html.motion-full .opening-invite-offers li:nth-child(1) { animation-delay: .3s; }
html.motion-full .opening-invite-offers li:nth-child(2) { animation-delay: .36s; }
html.motion-full .opening-invite-offers li:nth-child(3) { animation-delay: .42s; }
html.motion-full .opening-invite-actions { animation-delay: .48s; }
html.motion-full .opening-invite-close { animation: opening-invite-content-in .5s var(--ease) .22s both; }
html:not(.motion-full) .opening-invite-shell {
  animation: none;
}
.opening-invite-settled,
.opening-invite-settled * {
  animation: none !important;
}
.coin {
  position: fixed;
  top: 0;
  left: max(18px, env(safe-area-inset-left));
  z-index: 46;
  width: 66px;
  height: 66px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  perspective: 560px;
  transform: translate3d(var(--coin-x, 0px), var(--coin-y, 60vh), 0);
  transition: transform .5s cubic-bezier(.22, .9, .28, 1), opacity var(--t) var(--ease);
}
.coin[data-away],
.coin[data-park],
.coin[data-off] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.coin[data-drag] {
  cursor: grabbing;
  transition: none;
}
.coin[data-shy] {
  opacity: 0;
  pointer-events: none;
}
.coin-body {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}
.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: url(chip.webp) center / contain no-repeat;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .5)) drop-shadow(0 0 20px rgba(212, 175, 55, .3));
  transition: filter var(--t) var(--ease);
}
.coin-face-b {
  transform: rotateY(180deg);
}
.coin-shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}
.coin-shine::before {
  content: '';
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 236, .8), transparent);
  transform: rotate(16deg);
}
.coin-halo {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 199, 92, .38), rgba(212, 175, 55, 0) 68%);
  opacity: .55;
  pointer-events: none;
}
.coin:hover .coin-face,
.coin:focus-visible .coin-face {
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .52)) drop-shadow(0 0 30px rgba(233, 199, 92, .62));
}
.coin-sparks {
  position: absolute;
  inset: -74px;
  pointer-events: none;
}
.coin-spark {
  position: absolute;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  background: radial-gradient(circle, #fffaea 0%, #ffe9a8 24%, #f2c65a 48%, rgba(198, 155, 40, 0) 78%);
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  filter: drop-shadow(0 0 7px rgba(247, 229, 166, .95));
  opacity: 0;
}
html.motion-full .coin-shine::before {
  animation: coin-shine 3.4s var(--ease) infinite;
}
html.motion-full .coin-halo {
  animation: coin-halo 2.4s var(--ease) infinite;
}
html.motion-full .coin-land {
  animation: coin-land .62s var(--ease) both;
}
html.motion-full .coin-hint {
  animation: coin-hint 1.1s var(--ease) 2;
}
@keyframes coin-shine {
  0%, 52% { transform: translateX(0) rotate(16deg); }
  100% { transform: translateX(560%) rotate(16deg); }
}
@keyframes coin-halo {
  0%, 100% { opacity: .3; transform: scale(.9); }
  50% { opacity: .82; transform: scale(1.12); }
}
@keyframes coin-hint {
  0%, 100% { transform: translate3d(var(--coin-x, 0px), var(--coin-y, 60vh), 0); }
  38% { transform: translate3d(var(--coin-x, 0px), calc(var(--coin-y, 60vh) - 10px), 0); }
  68% { transform: translate3d(var(--coin-x, 0px), calc(var(--coin-y, 60vh) + 4px), 0); }
}
@keyframes coin-land {
  0% { transform: translate3d(var(--coin-x, 0px), var(--coin-y, 60vh), 0) scale(.14); opacity: 0; }
  58% { transform: translate3d(var(--coin-x, 0px), var(--coin-y, 60vh), 0) scale(1.16); opacity: 1; }
  100% { transform: translate3d(var(--coin-x, 0px), var(--coin-y, 60vh), 0) scale(1); opacity: 1; }
}
@media (max-width: 700px) {
  .coin {
    left: max(12px, env(safe-area-inset-left));
    width: 58px;
    height: 58px;
  }
}
@media (orientation: portrait) {
  .coin {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 700px) and (orientation: portrait) {
  .contact {
    right: max(14px, env(safe-area-inset-right));
  }
  .hero-inner {
    top: clamp(0px, calc((100vh - 700px) * .45), 12px);
    top: clamp(0px, calc((100svh - 700px) * .45), 12px);
  }
}
@media (max-width: 700px) {
  .opening-invite {
    width: calc(100vw - 32px);
    height: min(620px, calc(100dvh - 32px));
  }
  .opening-invite-art {
    object-position: right center;
    filter: brightness(1.34) saturate(1.12) contrast(1.02);
  }
  .opening-invite-shade {
    background:
      radial-gradient(ellipse at 88% 44%, rgba(5, 4, 2, .16), transparent 42%),
      radial-gradient(ellipse at 50% 53%, rgba(5, 4, 2, .62) 0%, rgba(5, 4, 2, .48) 46%, rgba(5, 4, 2, .14) 78%),
      linear-gradient(180deg, rgba(5, 4, 2, .1), rgba(5, 4, 2, .26) 45%, rgba(5, 4, 2, .32) 70%, rgba(5, 4, 2, .12));
  }
  .opening-invite-copy {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    padding: 120px 24px 78px;
    text-align: center;
    text-shadow: 0 2px 9px #000, 0 0 24px rgba(0, 0, 0, .82);
  }
  .opening-invite-brand {
    position: absolute;
    top: 28px;
    left: 50%;
    width: min(220px, 64%);
    margin: 0;
    transform: translateX(-50%);
  }
  .opening-invite-kicker {
    margin-bottom: 12px;
    margin-right: -.42em;
  }
  .opening-invite h2 {
    max-width: 420px;
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1.04;
  }
  .opening-invite-offers {
    max-width: 300px;
    margin-top: 26px;
  }
  .opening-invite-offers li {
    display: flex;
    justify-content: center;
    min-height: 60px;
    text-align: center;
  }
  .opening-invite-offers strong {
    font-size: clamp(1.12rem, 4.8vw, 1.35rem);
  }
  .opening-invite-offers span {
    display: none;
  }
  .opening-invite-offers p {
    display: block;
    max-width: 260px;
    margin: 4px auto 0;
    color: rgba(233, 226, 208, .84);
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .02em;
  }
  .opening-invite-actions {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-top: 44px;
  }
  .opening-invite-actions .btn-gold {
    width: min(240px, 100%);
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }
  .opening-invite-more {
    flex: 0 1 auto;
    padding-block: 12px;
  }
  .opening-invite-close {
    top: 12px;
    right: 12px;
  }
}
@media (max-width: 380px) {
  .opening-invite {
    height: min(580px, calc(100dvh - 28px));
  }
  .opening-invite-copy {
    padding: 106px 18px 72px;
  }
  .opening-invite-brand {
    top: 22px;
    width: 184px;
  }
  .opening-invite h2 {
    font-size: 2.2rem;
  }
  .opening-invite-offers {
    margin-top: 22px;
  }
  .opening-invite-offers li {
    min-height: 58px;
  }
  .opening-invite-actions {
    gap: 10px;
    margin-top: 40px;
  }
}
@media (max-width: 700px) and (orientation: portrait) and (max-height: 650px) {
  .opening-invite {
    height: calc(100dvh - 20px);
  }
  .opening-invite-copy {
    padding: 108px 20px 60px;
  }
  .opening-invite-brand {
    top: 22px;
  }
  .opening-invite-offers {
    margin-top: 18px;
  }
  .opening-invite-offers li {
    min-height: 58px;
  }
  .opening-invite-actions {
    margin-top: 38px;
  }
}
@media (max-width: 700px) and (orientation: portrait) {
  .opening-invite-offers strong {
    font-size: clamp(1.22rem, 5.2vw, 1.45rem);
  }
  .opening-invite-offers p {
    font-size: 11px;
    line-height: 1.4;
  }
  .opening-invite-actions {
    margin-top: clamp(46px, 7.2vh, 54px);
    translate: 0 10px;
  }
  .opening-invite-actions .btn-gold {
    padding: 0 12px;
  }
  .opening-invite-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
  .opening-invite-close::after {
    content: '';
    position: absolute;
    inset: -4px;
  }
}
@media (orientation: landscape) and (max-height: 650px) {
  .opening-invite {
    width: min(920px, calc(100vw - 48px));
    height: calc(100dvh - 32px);
  }
  .opening-invite-art {
    object-position: right center;
    filter: brightness(1.18) saturate(1.08);
  }
  .opening-invite-shade {
    background:
      radial-gradient(ellipse at 92% 42%, rgba(5, 4, 2, .12), transparent 40%),
      radial-gradient(circle at 27% 34%, rgba(214, 172, 55, .09), transparent 38%),
      linear-gradient(90deg, rgba(5, 4, 2, .9) 0%, rgba(5, 4, 2, .76) 56%, rgba(5, 4, 2, .2) 80%, rgba(5, 4, 2, .03) 100%);
  }
  .opening-invite-copy {
    width: min(72%, 680px);
    justify-content: center;
    align-items: flex-start;
    padding: 20px 64px 18px 16px;
    text-align: left;
  }
  .opening-invite-brand {
    position: static;
    width: 170px;
    margin: 0 0 10px;
    transform: none;
  }
  .opening-invite-brand,
  .opening-invite-kicker,
  .opening-invite h2,
  .opening-invite-offers {
    translate: 0 -8px;
  }
  .opening-invite-kicker {
    margin: 0 0 6px;
    font-size: 9px;
  }
  .opening-invite h2 {
    font-size: 2.05rem;
    line-height: 1;
  }
  .opening-invite-offers {
    max-width: 560px;
    margin-top: 10px;
  }
  .opening-invite-offers li {
    display: grid;
    justify-content: initial;
    min-height: 42px;
    text-align: left;
  }
  .opening-invite-offers strong {
    font-size: 1.1rem;
  }
  .opening-invite-offers span,
  .opening-invite-offers p {
    display: block;
  }
  .opening-invite-offers p {
    margin-top: 2px;
    font-size: 11px;
  }
  .opening-invite-actions {
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 10px;
  }
  .opening-invite-actions .btn-gold {
    width: auto;
    min-width: 170px;
    height: 39px;
    padding: 0 18px;
  }
  .opening-invite-more {
    padding-block: 10px;
  }
}
.launch {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: #050403;
  overflow: hidden;
}
.launch[open] {
  display: grid;
  place-items: center;
}
.launch:not([open]) {
  display: none;
}
.launch::backdrop {
  background: transparent;
}
.launch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(52% 60% at 50% 46%, var(--tint, #1a1409), transparent 76%);
  opacity: .3;
}
.vault-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 51%;
  background: #0b0906;
  z-index: 2;
  transition: transform .95s var(--ease) .12s;
}
.vault-door.vl {
  left: 0;
  border-right: 1px solid var(--gold);
}
.vault-door.vr {
  right: 0;
  border-left: 1px solid var(--gold);
}
.launch.open .vault-door.vl {
  transform: translateX(-101%);
}
.launch.open .vault-door.vr {
  transform: translateX(101%);
}
.launch-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;

  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s var(--ease) .55s, transform .6s var(--ease) .55s;
}
.launch.open .launch-body {
  opacity: 1;
  transform: none;
}
.launch-kicker {
  font-size: 10px;
  letter-spacing: .44em;
  margin-right: -.44em;
  text-transform: uppercase;
  color: var(--gold);
}

.emblem.has-art {
  width: min(260px, 64vw);
  height: auto;
  aspect-ratio: 4 / 3;
}
.emblem.has-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.emblem {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
}
.launch-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.1;
}
.launch-sub {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.progress {
  width: min(300px, 62vw);
  height: 1px;
  background: var(--line-soft);
  overflow: hidden;
  margin-top: 8px;
}
.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-hi));
  transform: scaleX(0);
  transform-origin: left;
}
.launch.open .progress span {
  transform: scaleX(1);
  transition: transform 2.1s var(--ease) .75s;
}
.launch-tip {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-faint);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.launch.done .launch-tip {
  opacity: 1;
}
.launch-x {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.launch-x:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.launch.vault::before {
  background:
    repeating-conic-gradient(from 0deg at 50% 46%, rgba(212, 175, 55, .045) 0 1deg, transparent 1deg 8deg),
    radial-gradient(46% 54% at 50% 46%, rgba(138, 109, 31, .3), transparent 72%);
  opacity: 1;
}

.launch.vault .vault-door {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .018), transparent 12% 88%, rgba(255, 255, 255, .018)),
    repeating-linear-gradient(90deg, transparent 0 66px, rgba(212, 175, 55, .055) 67px 68px),
    linear-gradient(120deg, #090704, #110d07 55%, #080604);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, .8);
}

.launch.vault .vault-door::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hi));
  box-shadow: 0 0 12px rgba(212, 175, 55, .42);
}
.launch.vault .vault-door.vl::after {
  right: 0;
}
.launch.vault .vault-door.vr::after {
  left: 0;
  transform: scaleX(-1);
}
.launch.vault .launch-body {
  gap: 26px;
}

.emblem.crest {
  position: relative;
  display: block;
  width: min(78vw, 620px);
  height: auto;
  aspect-ratio: 1176.31 / 156.25;
  border: 0;
  background: url("logo/v2-porta-303/assets/lockup-horizontal.svg") center / contain no-repeat;
  opacity: 1;
}

.launch.vault.open .emblem.crest {
  animation: crest-in 1.1s var(--ease) .5s both;
}
@keyframes crest-in {
  from {
    opacity: 0;
    transform: scale(1.07);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.emblem.crest .crest-sheen {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .92) 49%, rgba(243, 223, 154, .88) 55%, transparent 62%);
  background-size: 280% 100%;
  background-repeat: no-repeat;
  -webkit-mask: url("logo/v2-porta-303/assets/lockup-horizontal.svg") center / contain no-repeat;
  mask: url("logo/v2-porta-303/assets/lockup-horizontal.svg") center / contain no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
}
.launch.vault.open .crest-sheen {
  animation: crest-sheen 1.6s var(--ease) 1.25s both;
}
@keyframes crest-sheen {
  from {
    opacity: 0;
    background-position: -40% 0;
  }
  18%, 82% {
    opacity: 1;
  }
  to {
    opacity: 0;
    background-position: 140% 0;
  }
}
.launch.vault .launch-sub {
  font-size: 13px;
  letter-spacing: .3em;
  margin-right: -.3em;
  color: var(--ink);
}

html:not(.motion-full) .launch.vault.open .emblem.crest {
  animation: none;
}
html:not(.motion-full) .launch.vault.open .crest-sheen {
  animation: none;
}

@media (forced-colors: active) {
  .launch.vault {
    forced-color-adjust: none;
  }
  .launch.vault .launch-x {
    forced-color-adjust: auto;
  }
}

.launch-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 48px;
  display: none;
  align-items: center;
  gap: 18px;
  padding: 0 72px 0 max(18px, env(safe-area-inset-left));
  background: #0b0906;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
}
.launch-bar-name {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
}
.launch-bar-trial {
  color: var(--gold);
}
.launch-frame {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: calc(100% - 48px);
  border: 0;
  background: #000;
  display: none;
}
.launch.playing .launch-bar {
  display: flex;
}
.launch.playing .launch-frame {
  display: block;
}
.launch.playing .launch-body,
.launch.playing .vault-door,
.launch.playing::before {
  display: none;
}
.launch.playing .launch-x {
  top: 6px;
  right: max(8px, env(safe-area-inset-right));
  width: 36px;
  height: 36px;
  font-size: 16px;
}

.launch-sub.is-trial {
  color: var(--gold);
  letter-spacing: .28em;
  margin-right: -.28em;
}
.spine a.on {
  box-shadow: 0 0 12px rgba(212, 175, 55, .5);
}

.auth {
  display: grid;
  justify-items: center;

  padding: calc(clamp(84px, 9vh, 112px) + var(--ticker-clear)) clamp(20px, 6vw, 120px) clamp(28px, 3.4vh, 48px);
  padding-left: max(clamp(20px, 6vw, 120px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 6vw, 120px), env(safe-area-inset-right));

  min-height: 100vh;

  min-height: 100svh;
  grid-template-rows: repeat(3, auto) 1fr;
}
.auth > * {
  width: min(660px, 100%);
}

.auth > .foot {
  width: 100%;
  align-self: end;
  margin-top: clamp(28px, 4vh, 56px);
}
.auth-kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);

  margin-bottom: 8px;
}
.auth-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.1;

  margin-bottom: clamp(12px, 1.6vh, 18px);
}

body[data-page="auth"] .invite {
  display: block;
  min-height: 0;
  gap: 0;

  padding: clamp(24px, 3vh, 38px) clamp(32px, 4.4vw, 64px);
}
body[data-page="auth"] .invite:hover {
  transform: none;
}

body[data-page="auth"] .tabs,
body[data-page="auth"] .form {
  --line-soft: rgba(212, 175, 55, .5);
}
.tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: var(--row-gap);
}

.tabs,
.form {
  --row-gap: clamp(16px, 1.9vh, 22px);
}
.tab {
  min-height: 56px;
  padding: .8em .4em;
  background: none;
  border: 0;

  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.tab:hover {
  color: var(--ink);
}
.tab.on {
  color: var(--gold-hi);
  border-bottom-color: var(--gold);
}
.form {
  display: grid;
  gap: var(--row-gap);
}

.form[hidden] {
  display: none;
}

.field[hidden] {
  display: none;
}

.field {
  display: grid;
  gap: calc(var(--row-gap) / 2);
}

.field label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.field input {
  width: 100%;

  min-height: 48px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: .04em;
  padding: .45em .2em;
  transition: border-color var(--t-fast) var(--ease);
}

.field input::placeholder {
  color: #665f50;
  opacity: 1;
}
.field input:focus,
.field input:focus-visible,
.dial:focus-within {

  outline: none;
  border-color: rgba(212, 175, 55, .72);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, .1), 0 8px 26px -12px rgba(212, 175, 55, .55);
}

.dial {
  display: grid;

  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.dial .sel {
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-radius: 0;
  background-position: right 8px center;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: .04em;
  padding: 0 20px 0 .2em;

  width: 100%;
  min-inline-size: 0;
}
.dial .sel:hover {
  color: var(--gold-hi);
}
@supports (appearance: base-select) {

  .dial .sel selectedcontent .dial-n {
    display: none;
  }

  .dial .sel button {
    all: unset;
    display: flex;
    align-items: center;
  }

  .dial .sel option {
    font-size: 14px;
    letter-spacing: .04em;
  }
}

.dial .sel:focus-visible {
  outline: none;
}

.dial input {
  border-bottom: 0;
}

.pw {
  position: relative;
}
.pw input {
  padding-right: 46px;
}
.pw-eye {
  position: absolute;
  right: 0;
  top: 0;

  bottom: 1px;
  width: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink-dim);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.pw-eye:hover {
  color: var(--gold);
}

.req {
  color: var(--gold);
  margin-left: 4px;
}

.field-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 12px;
}
.hint {
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--ink-dim);
}

.err {
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--gold-hi);
}

.field.invalid label,
.check.invalid span {
  color: var(--gold-hi);
}
.field.invalid input,
.field.invalid .sel,
.field.invalid .dial {
  border-color: var(--gold);
}

.check {
  display: grid;
  gap: 6px;
}
.check label {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-size: 13.5px;
  letter-spacing: .02em;
  color: var(--ink);
  cursor: pointer;
}
.check input {
  flex: none;
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.check a {
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.check a:hover {
  color: var(--gold-hi);
  border-bottom-color: var(--gold);
}
.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.form-foot .check label {
  min-height: 44px;
}
.link-quiet {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: none;
  border: 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--ink-dim);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.link-quiet:hover {
  color: var(--gold);
}
.form .btn-gold {

  justify-self: center;
  min-width: min(300px, 100%);
  min-height: 56px;

  padding: .9em min(2.6em, 6vw);

  font-size: clamp(15px, 4.6vw, 17px);

  line-height: 1;
}
@media (max-width: 1100px) {

  .auth > .foot {

    padding-right: max(0px, 78px - 6vw);
  }
}
@media (max-height: 1010px) {
  .ch {

    padding-block: clamp(64px, 7.6vh, 88px) clamp(40px, 5.6vh, 64px);
  }
  .ch-head {
    margin-bottom: 18px;
  }
  .lc-head {
    padding-bottom: 10px;
  }
  .ledger-col ol li {
    padding: 9px 2px;
  }
  .ledger-col ol li:nth-child(n+6) {
    display: none;
  }
  .ledger-col.off {
    margin-top: 38px;
  }
  .ledger-foot {
    margin-top: 18px;
  }
  .rails li {
    padding: 11px 14px;
  }
  .pots li {
    padding: 10px 0;
  }
}
@media (max-height: 660px) {
  .ch {

    padding-block: clamp(64px, 8.4vh, 88px) 16px;
  }
  .ch-head {
    margin-bottom: 12px;
  }
  .ledger-col ol li:nth-child(n+5) {
    display: none;
  }
  .ledger-col.off {
    margin-top: 28px;
  }
  .vip {
    padding: 22px 20px;
  }
  .prov-wall li {
    font-size: .82rem;
  }
}
@media (max-width: 1080px) {
  .bar-nav, .spine {
    display: none;
  }
  .bar {
    grid-template-columns: auto 1fr auto;
  }
  .bar .brand {
    justify-self: start;
  }
  body[data-page="home"] .bar .brand {
    grid-column: 1;
  }
  .brand img {
    width: min(48vw, 330px);
    height: auto;
  }
  .door {
    flex-basis: min(48vw, 210px);
    max-width: 210px;
    min-height: clamp(54px, 7vh, 72px);
  }
}
@media (max-width: 900px) {
  .spot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #hall .spot-grid {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  #hall .spot-grid .g-card:nth-child(1) {
    grid-area: 1 / 1 / 4 / 2;
  }
  #hall .spot-grid .g-card:nth-child(2) {
    grid-area: 1 / 2 / 3 / 3;
  }
  #hall .spot-grid .g-card:nth-child(3) {
    grid-area: 3 / 2 / 6 / 3;
  }
  #hall .spot-grid .g-card:nth-child(4) {
    grid-area: 4 / 1 / 6 / 2;
  }
  #hall .spot-grid .g-card:nth-child(n+5) {
    display: none;
  }
  #hall .spot-grid .g-meta {
    padding: 9px 10px 10px;
    gap: 6px;
  }
  #hall .spot-grid .g-info h3 {
    font-size: 12.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #hall .spot-grid .g-info p {
    font-size: 10px;
  }
  .ledger-cols {
    grid-template-columns: 1fr;
  }

  .ledger-col.off {
    margin-top: 0;
  }
  .ledger-foot {
    margin-top: clamp(28px, 4.5vw, 80px);
  }
  .rails ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .cards .invite:nth-child(2), .cards .invite:nth-child(3) {
    margin-top: 0;
  }

  #invite .cards {
    flex: 1 1 auto;
    min-height: 0;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 1.6vh, 20px);

    align-items: stretch;
  }
  #invite .invite {
    min-height: 0;
    gap: clamp(6px, 1.4vh, 22px);
    padding: clamp(12px, 2.4vh, 26px) clamp(16px, 4.4vw, 30px);
  }
  #invite .invite h3 {
    font-size: clamp(1.1rem, 2.5vh, 2rem);
  }
  #invite .medal {
    top: clamp(19px, 2.7vh, 28px);
    right: clamp(20px, 5.1vw, 28px);
    width: clamp(53px, 13.6vw, 64px);
    height: clamp(53px, 13.6vw, 64px);
  }
  #invite .invite p {
    padding-right: clamp(56px, 17vw, 74px);
  }
  .foot .rights {
    margin-left: 0;
  }
}

@media (max-width: 600px) and (max-aspect-ratio: 13/25) {
  #hall .spot-grid {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  #hall .spot-grid .g-card:nth-child(n+5) {
    display: flex;
  }
  #hall .spot-grid .g-card:nth-child(3) {
    grid-area: 3 / 2 / 5 / 3;
  }
  #hall .spot-grid .g-card:nth-child(4) {
    grid-area: 4 / 1 / 7 / 2;
  }
  #hall .spot-grid .g-card:nth-child(5) {
    grid-area: 5 / 2 / 7 / 3;
  }
  #hall .spot-grid .g-card:nth-child(n+6) {
    display: none;
  }
}
@media (max-width: 600px) and (orientation: portrait) and (min-aspect-ratio: 13/25) {

  #hall .spot-grid .g-card:nth-child(2) {
    grid-area: 1 / 2 / 4 / 3;
  }
  #hall .spot-grid .g-card:nth-child(3) {
    grid-area: 4 / 2 / 6 / 3;
  }
}
@media (max-width: 600px) and (orientation: portrait) and (max-aspect-ratio: 13/25) {

  #hall .spot-grid .g-card:nth-child(2) {
    grid-area: 1 / 2 / 4 / 3;
  }
  #hall .spot-grid .g-card:nth-child(3) {
    grid-area: 4 / 2 / 7 / 3;
  }
  #hall .spot-grid .g-card:nth-child(5) {
    display: none;
  }
}

@media (max-height: 1010px) {
  #hall,
  #invite {
    padding-top: clamp(78px, 8.6vh, 96px);
  }
}
#ledger {
  padding-top: calc(clamp(64px, 8vh, 120px) + var(--ticker-clear));
}
@media (max-height: 1010px) {
  #ledger {
    padding-top: calc(clamp(64px, 7.6vh, 88px) + var(--ticker-clear));
  }
}

@media (max-width: 900px) and (orientation: portrait) {
  #ledger {
    padding-bottom: 84px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .spot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 601px) and (max-width: 760px) {
  #hall .spot-grid {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  #hall .spot-grid .g-card:nth-child(n+5) {
    display: flex;
  }
  #hall .spot-grid .g-card:nth-child(3) {
    grid-area: 1 / 3 / 4 / 4;
  }
  #hall .spot-grid .g-card:nth-child(4) {
    grid-area: 3 / 2 / 5 / 3;
  }
  #hall .spot-grid .g-card:nth-child(5) {
    grid-area: 4 / 1 / 7 / 2;
  }
  #hall .spot-grid .g-card:nth-child(6) {
    grid-area: 4 / 3 / 7 / 4;
  }
  #hall .spot-grid .g-card:nth-child(7) {
    grid-area: 5 / 2 / 7 / 3;
  }
  #hall .spot-grid .g-card:nth-child(n+8) {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  #hall .spot-grid {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  #hall .spot-grid .g-card:nth-child(n+5) {
    display: flex;
  }
  #hall .spot-grid .g-card:nth-child(3) {
    grid-area: 1 / 3 / 4 / 4;
  }
  #hall .spot-grid .g-card:nth-child(4) {
    grid-area: 3 / 2 / 6 / 3;
  }
  #hall .spot-grid .g-card:nth-child(5) {
    grid-area: 4 / 1 / 6 / 2;
  }
  #hall .spot-grid .g-card:nth-child(6) {
    grid-area: 4 / 3 / 6 / 4;
  }
  #hall .spot-grid .g-card:nth-child(n+7) {
    display: none;
  }
}

@media (max-width: 1080px) and (orientation: portrait) {

  #hall .spotlight {
    flex: 0 0 auto;
  }
  #hall .spot-grid {
    flex: 0 0 auto;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  #hall .spot-grid .g-card:nth-child(n) {
    display: flex;
    grid-area: auto;
    margin-top: 0;
  }
  #hall .spot-grid .g-art {
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
  }
}

@media (max-width: 600px) and (orientation: portrait) {
  #hall .spot-grid .g-card:nth-child(n+7) {
    display: none;
  }

  #hall .spotlight {
    flex: 1 1 auto;
    min-height: 0;
  }
  #hall .spot-grid {
    flex: 1 1 auto;
    min-height: 0;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  #hall .spot-grid .g-art {
    aspect-ratio: auto;
    flex: 1 1 auto;
    min-height: 0;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  #lobby-doors {
    position: sticky;
    top: 60px;
    z-index: 5;
    margin-top: clamp(14px, 2.2vh, 22px);
    margin-left: calc(-1 * max(clamp(18px, 3.6vw, 56px), env(safe-area-inset-left)));
    margin-right: calc(-1 * max(clamp(18px, 3.6vw, 56px), env(safe-area-inset-right)));
    border: 0;
    border-bottom: 1px solid var(--line-soft);

    scroll-snap-type: none;
  }

  #lobby-doors .door {
    flex: 0 0 auto;
    min-height: 0;
    gap: 8px;
    padding: 12px 16px;
    border-right: 0;
    scroll-snap-align: none;
  }

  #lobby-doors .door-num {
    position: static;
    transform: none;
    order: 1;
  }
  #lobby-doors .door-name {
    font-size: 1rem;
  }

  #lobby-doors .door.on {
    background: linear-gradient(to top, rgba(212, 175, 55, .1), transparent 75%);
    box-shadow: inset 0 -2px var(--gold);
  }
  #lobby-doors .door.on::after {
    opacity: 0;
  }
}

@media (min-width: 744px) and (max-width: 1080px) and (orientation: portrait) {
  .spine {
    display: flex;
    right: 8px;
  }
}
@media (max-width: 760px) {
  .rail {
    display: none;
  }
  .lobby {
    grid-template-columns: minmax(0, 1fr);
  }
  .dock {
    display: grid;
  }

  .hall {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: row;
  }

  .case-grid .g-card.wide {
    grid-column: span 2;
  }
  .pnl-nav > .hcue {
    display: block;
  }

  .case-grid .g-fav {
    right: auto;
    left: 8px;
  }
  .case-grid .g-tag {
    left: auto;
    right: 10px;
  }
  body[data-page="lobby"] .contact {
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .bar .btn-ghost[data-when] {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-grid .g-card.wide {
    grid-column: span 2;
  }

  .case-grid .g-card.wide .g-meta {
    padding: 20px 22px 22px;
  }
}
@media (max-width: 600px) {

  .door {
    flex-basis: min(36vw, 150px);
  }
}
@media (max-width: 560px) {
  .brand img {
    height: auto;
    width: min(50vw, 230px);
  }

  .hero-ctas {
    align-items: stretch;
  }
  .hero-ctas .btn-gold {
    flex: 1 1 0;
    min-width: 0;
    white-space: normal;
    text-wrap: balance;
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media (max-width: 480px) {
  .bar {
    padding: 0 14px;
    gap: 10px;
  }
  .sel {
    padding: 5px 18px 5px 6px;
    font-size: 10px;
    width: 96px;
  }

  #prov {
    --sel-w: 96px;
    line-height: 15px;
  }

  .bar .back span {
    display: none;
  }
  .bar .back {
    position: relative;

    z-index: 1;
    font-size: 20px;
  }
  .bar .back::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 600px) {

  .hero-inner {
    width: 100%;
  }

  .hero-sub {
    margin-top: clamp(6px, 2vh, 24px);
  }
  .hero-ctas {
    margin-top: clamp(16px, 3.4vh, 34px);
  }

  .lang-list {
    min-width: 66px;
  }
  .lang-list li {
    font-size: 13px;
  }
}

@media (min-width: 361px) and (max-width: 440px) {
  .case-grid .g-card:not(.wide) .g-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 12px 11px;
  }
}
@media (max-width: 360px) {

  .case-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-grid .g-card.wide {
    grid-column: auto;
  }

  #hall .spot-grid .g-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    padding: 6px 9px 7px;
  }
  #hall .spot-grid .g-info h3 {
    font-size: 11.5px;
  }
  #hall .spot-grid .g-info p {
    font-size: 9px;
    margin-top: 0;
  }
}
@media (min-width: 1800px) {
  .case-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .lobby {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .case-grid .g-card:first-child:nth-last-child(-n+8).wide,
  .case-grid .g-card:first-child:nth-last-child(-n+8) ~ .g-card.wide {
    grid-row: auto;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (min-width: 761px) {
  .lobby {
    grid-template-columns: 204px minmax(0, 1fr);
  }
  .rail {
    padding: 12px 0 24px;
  }
}
@media (orientation: landscape) and (max-height: 500px) {

  .hall {
    padding-top: 12px;
    padding-bottom: 40px;
  }
  .hall-head {
    gap: 12px;
  }
  .case-grid {

    grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
    grid-auto-rows: auto;
    grid-auto-flow: row;
    gap: 12px;
    margin-top: 16px;
  }

  .case-grid .g-card.wide {
    grid-column: auto;
  }

  .case-grid .g-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 12px 11px;
  }

  .dock a, .dock button {
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    font-size: 9px;
  }
  .dock i {
    font-size: 16px;
  }
}
@media (orientation: landscape) and (max-height: 500px) and (max-width: 760px) {
  .hall {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }
}

html:not(.motion-full) *,
html:not(.motion-full) *::before,
html:not(.motion-full) *::after {
  transition-property: opacity, color, background-color, border-color, box-shadow, filter !important;
}

html:not(.motion-full) .can-r > .hcue-r::after {
  animation: none !important;
}
html:not(.motion-full) :is(.g-card, .invite, .prov-wall li) {
  transition-property: color, background-color, border-color, box-shadow, filter !important;
}

html:not(.motion-full) :is(.brand img, .brand::before, .ledger-col ol li.new) {
  animation: none;
}

html:not(.motion-full) .scroll-cue.on {
  animation: none;
  opacity: .68;
}

html:not(.motion-full) :is(.vault-door, .progress span) {
  transition-property: transform !important;
}

@media (forced-colors: active) {
  .gold-text, .jack .col span, .jack .sep {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
  .jack {
    filter: none;
  }
  .beam, .cursor-light {
    display: none;
  }

  .field input:focus-visible,
  .dial:focus-within {
    outline: 2px solid Highlight;
    outline-offset: 2px;
  }
}

.doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;

  min-height: 100svh;
  padding: calc(clamp(84px, 9vh, 112px) + var(--ticker-clear)) clamp(20px, 6vw, 120px) clamp(28px, 3.4vh, 48px);
  padding-left: max(clamp(20px, 6vw, 120px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 6vw, 120px), env(safe-area-inset-right));
}
.doc > * {

  width: min(760px, 100%);
}

.doc > .foot {
  width: 100%;
  margin-top: auto;
}

body[data-page="doc"] .invite {
  display: block;
  min-height: 0;
  gap: 0;
  margin-bottom: clamp(28px, 4vh, 56px);
  padding: clamp(34px, 4.4vh, 56px) clamp(30px, 4.4vw, 64px) clamp(30px, 4vh, 48px);
}
body[data-page="doc"] .invite:hover {
  transform: none;
}

body[data-page="doc"] .invite p {
  max-width: none;
  letter-spacing: normal;
}

.doc-head {
  text-align: center;
  padding-bottom: clamp(22px, 3vh, 34px);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: clamp(26px, 3.4vh, 42px);
}
.doc-head .auth-title {
  margin-bottom: 0;
}

body[data-page="doc"] .doc-lede {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--gold);
  margin-bottom: clamp(30px, 4vh, 52px);
}

.doc-sec {
  scroll-margin-top: 84px;
}
.doc-sec + .doc-sec {
  margin-top: clamp(30px, 4vh, 52px);
}
.doc-sec h2 {
  display: flex;
  align-items: baseline;
  gap: .7em;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  letter-spacing: .04em;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 14px;
}

.doc-n {
  flex: none;
  display: flex;
  align-items: center;
  gap: .9em;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gold);
}
.doc-n::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-dim);
}

.doc-sec p,
.doc-sec li {
  color: var(--ink-dim);
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.85;
}
.doc-sec p + p,
.doc-sec p + .doc-list,
.doc-sec .doc-list + p {
  margin-top: 12px;
}

.doc-list li {
  position: relative;
  padding-left: 1.5em;
}
.doc-list li + li {
  margin-top: 6px;
}
.doc-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

@media (max-width: 1100px) {

  .doc > .foot {
    padding-right: max(0px, 78px - 6vw);
  }
}
@media (max-width: 700px) {

  body[data-page="doc"] .invite {
    padding-left: 46px;
    padding-right: 46px;
  }
}

@media print {
  :root {
    --bg: #fff;
    --bg2: #fff;
    --surface: #fff;
    --line: rgba(0, 0, 0, .32);
    --line-soft: rgba(0, 0, 0, .16);

    --gold: #6b5310;
    --gold-hi: #4a3a0b;
    --gold-dim: #7d6a35;
    --ink: #14110c;
    --ink-dim: #453f33;
    --ink-faint: #5c5546;
  }
  html,
  body {
    background: #fff !important;
    color: var(--ink) !important;
  }

  .gold-text,
  .jack .col span,
  .jack .sep {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
  }
  .jack {
    filter: none;
  }

  .beam,
  .coin,
  .cursor-light,
  .spine,
  .contact,
  .chat,
  .dock,
  .toast,
  .skip,
  .scroll-cue,
  .launch {
    display: none !important;
  }

  .bar,
  .rail {
    position: static !important;
    height: auto;
    overflow: visible;
    backdrop-filter: none;
  }

  .bar .back,
  .bar-end,
  .bar-nav {
    display: none !important;
  }

  body * {
    background-color: transparent !important;
    background-image: none !important;
  }

  .ch {
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .invite,
  .g-card,
  .doc-sec,
  .pnl-ch {
    break-inside: avoid;
  }

  h1, h2, h3 {
    break-after: avoid;
  }

  .js:not(.anim-ready) .bar,
  .js:not(.anim-ready) .doc,
  .g-card,
  .invite,
  .prov-wall li,
  .door {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
