@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.618588c60263.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Unbounded;
  src: url("../fonts/Unbounded.3ba1d6fdf96b.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope.946beb949095.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000;
  --fg: #eceae4;
  --soft: #c9c4ba;
  --muted: #8e8a82;
  --display: Unbounded, Manrope, sans-serif;
  --sans: Manrope, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scrollbar-gutter: stable;
  scrollbar-color: #2a2a2a transparent;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body:not(.is-live) {
  overflow: hidden;
}

::selection {
  background: rgba(236, 234, 228, 0.16);
  color: #fff;
}

:focus-visible {
  outline: 1px solid rgba(236, 234, 228, 0.45);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 40px;
  --enter: 1.5s;
  --enter-gap: 0.14s;
  --enter-start: 0.25s;
}

/* Later pages of a visit get a shorter entrance, the first one gets the full one. */
.seen .top {
  --enter: 0.8s;
  --enter-gap: 0.06s;
  --enter-start: 0s;
}

.top::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 234, 228, 0.22), transparent);
  opacity: 0;
  pointer-events: none;
  animation: top-rule calc(var(--enter) * 1.6) ease var(--enter-start) both;
}

.brand {
  animation: brand-in var(--enter) cubic-bezier(0.2, 0.7, 0.2, 1) var(--enter-start) both;
}

.nav-item {
  animation: item-in var(--enter) cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(var(--enter-start) + var(--enter) * 0.3 + var(--enter-gap) * var(--i, 0));
}

.nav-item:nth-child(2) {
  --i: 1;
}

.nav-item:nth-child(3) {
  --i: 2;
}

.nav-item .nav-btn::after {
  animation: line-sweep calc(var(--enter) * 1.1) cubic-bezier(0.6, 0, 0.2, 1) both;
  animation-delay: calc(var(--enter-start) + var(--enter) * 0.55 + var(--enter-gap) * var(--i, 0));
}

.nav-item:hover .nav-btn::after,
.nav-item:focus-within .nav-btn::after,
.nav-item.is-open .nav-btn::after {
  animation: none;
}

@keyframes brand-in {
  from {
    opacity: 0;
    letter-spacing: 0.6em;
    filter: blur(10px);
  }
  60% {
    filter: blur(0);
  }
  to {
    opacity: 1;
    letter-spacing: 0.08em;
    filter: blur(0);
  }
}

@keyframes item-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes line-sweep {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  55% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

@keyframes top-rule {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

.brand {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-decoration: none;
  padding-top: 4px;
}

.nav {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nav-btn {
  position: relative;
  background: transparent;
  border: 0;
  color: var(--fg);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 8px 4px 10px;
  cursor: pointer;
}

.nav-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav-item:hover .nav-btn::after,
.nav-item:focus-within .nav-btn::after,
.nav-item.is-open .nav-btn::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.panel {
  position: absolute;
  top: 100%;
  left: 50%;
  width: max-content;
  min-width: 100%;
  transform: translateX(-50%);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav-item:last-child .panel {
  left: auto;
  right: 0;
  transform: none;
}

.nav-item:hover .panel,
.nav-item:focus-within .panel,
.nav-item.is-open .panel {
  grid-template-rows: 1fr;
}

.panel-clip {
  overflow: hidden;
  min-height: 0;
}

.panel-body {
  display: grid;
  justify-items: center;
  padding: 2px 0 8px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav-item:hover .panel-body,
.nav-item:focus-within .panel-body,
.nav-item.is-open .panel-body {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.sub-btn {
  display: block;
  padding: 7px 2px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.sub-btn:hover {
  color: var(--fg);
}

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  user-select: none;
}

#scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.cue {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 7vh;
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.32em;
  opacity: 0;
  transition: opacity 1.2s ease 0.15s;
}

.cue span {
  display: block;
  width: 1px;
  height: 28px;
  margin: 0 auto 12px;
  background: rgba(236, 234, 228, 0.4);
}

body.is-live .cue {
  opacity: 1;
}

.noscript {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  text-align: center;
}

.kicker {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.news {
  padding: 11vh 8vw 16vh;
}

.news-inner {
  width: min(680px, 100%);
  margin: 0 auto;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  padding: 28px 0 30px;
  border-top: 1px solid rgba(236, 234, 228, 0.14);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.news-item.is-in {
  opacity: 1;
  transform: none;
}

.news-item time {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.news-item p {
  margin: 0;
  max-width: 42ch;
  color: var(--soft);
}

.gate {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  padding: 18vh 8vw 14vh;
}

.gate-inner {
  width: min(420px, 100%);
}

.gate h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 500;
  line-height: 0.95;
}

.gate-lead {
  margin: 0 0 32px;
  max-width: 34ch;
  color: var(--soft);
}

.gate-form {
  display: grid;
  gap: 18px;
}

.gate-form label {
  display: grid;
  gap: 8px;
}

.gate-form span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gate-form input {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(236, 234, 228, 0.28);
  background: transparent;
  color: var(--fg);
  font: inherit;
  border-radius: 0;
}

.gate-form input:focus {
  outline: none;
  border-bottom-color: var(--fg);
}

.gate-form button {
  justify-self: start;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fg);
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.gate-note {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 14px;
}

.hub {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: 18vh 8vw 12vh;
}

.hub-frame {
  position: absolute;
  top: 150px;
  right: 6vw;
  bottom: 7vh;
  left: 6vw;
  border: 1px solid rgba(236, 234, 228, 0.22);
  pointer-events: none;
}

.hub-inner {
  position: relative;
  width: min(640px, 100%);
}

.hub h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.hub h2 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--fg);
}

.hub-lead {
  margin: 0 0 36px;
  max-width: 28ch;
  color: var(--soft);
  font-size: 18px;
}

.download {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(236, 234, 228, 0.45);
  color: var(--fg);
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.download:hover {
  background: var(--fg);
  border-color: var(--fg);
  color: #000;
}

.download-copy {
  display: grid;
  gap: 4px;
}

.download-label {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.download-meta {
  color: var(--muted);
  font-size: 12px;
}

.download:hover .download-meta {
  color: rgba(0, 0, 0, 0.55);
}

.win-mark {
  display: grid;
  grid-template-columns: 7px 7px;
  gap: 2px;
  width: 16px;
  height: 16px;
}

.win-mark i {
  display: block;
  background: currentColor;
}

.hub-missing {
  margin: 0;
  color: var(--muted);
}

.gate-form .gate-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.gate-error {
  margin: 0;
  max-width: 40ch;
  color: #e7a99c;
  font-size: 14px;
}

.gate-alt {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.gate-alt a,
.space-lead a {
  color: var(--fg);
  text-underline-offset: 3px;
}

.gate-form h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}

.gate-form.is-inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  max-width: 560px;
}

.gate-form.is-inline button {
  margin: 0 0 12px;
}

.flashes {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
}

.flash {
  margin: 0;
  padding: 10px 0 10px 16px;
  border-left: 1px solid var(--fg);
  color: var(--soft);
  font-size: 14px;
}

.flash.is-error {
  border-left-color: #e7a99c;
  color: #e7a99c;
}

.space {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 136px 40px 14vh;
}

.space-side {
  position: sticky;
  top: 136px;
  align-self: start;
  display: grid;
  gap: 32px;
}

.me {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(236, 234, 228, 0.14);
  color: var(--fg);
  text-decoration: none;
}

.me-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(236, 234, 228, 0.45);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.me:hover .me-mark,
.me.is-current .me-mark {
  background: var(--fg);
  border-color: var(--fg);
  color: #000;
}

.me-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.me-name {
  overflow: hidden;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.me-login {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.space-nav {
  display: grid;
}

.space-nav a {
  position: relative;
  padding: 9px 0 9px 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease, padding 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.space-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.space-nav a:hover {
  color: var(--fg);
}

.space-nav a.is-current {
  padding-left: 24px;
  color: var(--fg);
}

.space-nav a.is-current::before {
  transform: scaleX(1);
}

.space-out,
.line-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.space-out:hover,
.line-btn:hover {
  color: var(--fg);
}

.line-btn {
  padding: 10px 14px;
  border: 1px solid rgba(236, 234, 228, 0.28);
  color: var(--fg);
  white-space: nowrap;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.line-btn:hover {
  background: var(--fg);
  border-color: var(--fg);
  color: #000;
}

.space-main {
  width: min(880px, 100%);
  min-width: 0;
}

.space-title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 500;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.space-lead {
  margin: 0 0 44px;
  max-width: 54ch;
  color: var(--soft);
}

.space-lead strong {
  color: var(--fg);
  font-weight: 500;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  border: 1px solid rgba(236, 234, 228, 0.14);
  background: rgba(236, 234, 228, 0.14);
}

.tile {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 170px;
  padding: 24px;
  background: var(--bg);
  color: var(--fg);
  text-decoration: none;
  transition: background 0.35s ease;
}

a.tile:hover {
  background: #0e0e0e;
}

.tile-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tile-value {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
}

.tile p {
  margin: auto 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
}

.tile.is-active {
  box-shadow: inset 0 0 0 1px rgba(236, 234, 228, 0.45);
}

.tile.is-muted .tile-value,
.tile.is-muted p {
  color: var(--muted);
}

.tag {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid rgba(236, 234, 228, 0.28);
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
  vertical-align: 1px;
}

.space-block {
  margin-top: 56px;
}

.space-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 18px;
}

.space-block-head h3 {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.space-block-head a {
  color: var(--soft);
  font-size: 13px;
  text-underline-offset: 3px;
}

.rows {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(236, 234, 228, 0.14);
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(236, 234, 228, 0.14);
}

.row-copy {
  display: grid;
  gap: 4px;
}

.row-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.row-meta {
  color: var(--muted);
  font-size: 13px;
}

.space-empty {
  margin: 0;
  color: var(--muted);
}

.space-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 56px;
  max-width: 820px;
}


@media (max-width: 800px) {
  .top {
    flex-wrap: wrap;
    gap: 2px 16px;
    padding: 16px 16px 8px;
  }

  .top::after {
    left: 16px;
    right: 16px;
  }

  .brand {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .nav {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
    gap: 18px;
  }

  .nav-btn,
  .sub-btn {
    font-size: 11px;
  }

  .nav-btn::after {
    left: 4px;
    right: 4px;
  }

  .news,
  .gate,
  .hub {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hub-frame {
    top: 76px;
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hub h2 {
    font-size: 64px;
  }

  .download {
    width: 100%;
  }

  .space {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding: 104px 22px 12vh;
  }

  .space-side {
    position: static;
    gap: 20px;
  }

  .me {
    padding-bottom: 18px;
  }

  .space-nav {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .space-nav a {
    white-space: nowrap;
  }

  .space-nav a.is-current {
    padding-left: 0;
  }

  .space-nav a::before {
    top: auto;
    bottom: 4px;
    width: 100%;
  }

  .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gate-form.is-inline {
    grid-template-columns: minmax(0, 1fr);
  }

  .gate-form.is-inline button {
    justify-self: start;
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-btn::after,
  .panel,
  .panel-body,
  .brand,
  .nav-item,
  .nav-item .nav-btn::after,
  .top::after {
    animation: none;
  }

  .news-item,
  .download,
  .me-mark,
  .space-nav a,
  .space-nav a::before,
  .tile,
  .line-btn {
    transition: none;
    animation: none;
  }

  .news-item {
    opacity: 1;
    transform: none;
  }
}
