:root {
  --night: #101c23;
  --paper: #e8eff3;
  --muted: #aab6b5;
  --line: rgba(222, 232, 222, 0.19);
  --amber: #a8cadb;
  --mint: #afc6b6;
  --glass: rgba(15, 28, 32, 0.94);
  --display: "Manrope", sans-serif;
  --text: "DM Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --gutter: clamp(22px, 3.5vw, 60px);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
  font-family: var(--text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
}
button {
  border: 0;
  background: none;
}
button:disabled {
  opacity: 0.4;
  cursor: wait;
}
button,
a {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
#world {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}
#world.is-dragging {
  cursor: grabbing;
}
.vignette,
.grain {
  position: fixed;
  pointer-events: none;
  inset: 0;
}
.vignette {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(6, 16, 21, 0.57),
      transparent 22%,
      transparent 65%,
      rgba(7, 18, 23, 0.9)
    ),
    radial-gradient(ellipse at 60% 45%, transparent 42%, rgba(7, 16, 21, 0.33));
}
.grain {
  z-index: 2;
  opacity: 0.028;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
}
.brand {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  text-decoration: none;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.15em;
  touch-action: manipulation;
}
.brand-symbol {
  font-family: var(--display);
  font-size: 37px;
  letter-spacing: -0.13em;
  line-height: 1;
  font-weight: 400;
}
.brand-symbol > span {
  color: var(--amber);
  font-weight: 300;
}
.brand-symbol {
  transition:
    color 0.25s ease,
    filter 0.25s ease;
}
.goro-unlocked .brand-symbol {
  color: #d8f0ea;
  filter: drop-shadow(0 0 9px rgba(168, 202, 219, 0.72));
}
.hud-top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 27px var(--gutter);
  gap: 20px;
}
.hud-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.hud-nav button {
  font-size: 12px;
  padding: 10px 0;
  color: var(--muted);
}
.hud-nav button:hover {
  color: var(--paper);
}
.hud-nav button span {
  margin-left: 6px;
}
.hud-nav .nav-active {
  color: var(--paper);
}
.nav-active:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  margin-right: 10px;
}
.sound-toggle {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
}
.sound-state {
  color: var(--muted);
  text-transform: uppercase;
  font-family: var(--mono);
  font-size: 9px;
}
.sound-bars {
  height: 14px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-right: 3px;
}
.sound-bars i {
  width: 1px;
  height: 5px;
  background: var(--amber);
}
.sound-bars i:nth-child(2) {
  height: 12px;
}
.sound-bars i:nth-child(3) {
  height: 8px;
}
.sound-on .sound-bars i {
  animation: bar 1.1s ease-in-out infinite alternate;
}
.sound-on .sound-bars i:nth-child(2) {
  animation-delay: -0.5s;
}
.sound-on .sound-bars i:nth-child(3) {
  animation-delay: -0.8s;
}
@keyframes bar {
  to {
    transform: scaleY(0.35);
  }
}
.eyebrow {
  font: 10px/1.7 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  background: var(--amber);
  border-radius: 50%;
  margin-right: 9px;
}
.intro-copy {
  position: fixed;
  z-index: 4;
  top: 145px;
  left: var(--gutter);
  max-width: 340px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s;
}
.is-in .intro-copy {
  opacity: 1;
}
.has-panel .intro-copy {
  opacity: 0;
}
.headline {
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 42px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.055em;
  margin: 16px 0;
}
.sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.world-caption {
  position: fixed;
  z-index: 3;
  top: 133px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
  opacity: 0;
  pointer-events: none;
}
.world-caption span:first-child {
  font: 9px var(--mono);
  letter-spacing: 0.15em;
  color: var(--amber);
}
.world-caption span:last-child {
  font-size: 11px;
  color: var(--muted);
}
.is-in .world-caption {
  opacity: 1;
}
.has-panel .world-caption {
  opacity: 0;
}
.hud-bottom {
  position: fixed;
  z-index: 10;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 22px;
  opacity: 0;
  transition: opacity 0.8s;
  pointer-events: none;
}
.is-in .hud-bottom {
  opacity: 1;
}
.hud-bottom button,
.hud-bottom nav {
  pointer-events: auto;
}
.exploration-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.index-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  font-size: 12px;
}
.grid-icon {
  font-size: 20px;
  color: var(--amber);
  font-weight: 300;
}
.index-btn > span:last-child {
  color: var(--amber);
  margin-left: 8px;
}
.visit-count {
  font: 9px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0;
}
.location-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 24, 29, 0.3);
  backdrop-filter: blur(12px);
}
.location-stop {
  position: relative;
  text-align: left;
  min-height: 67px;
  padding: 11px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s;
}
.location-stop + .location-stop {
  border-left: 1px solid var(--line);
}
.stop-number {
  font: 9px var(--mono);
  color: var(--muted);
  letter-spacing: 0.08em;
}
.stop-name {
  font-size: 11px;
}
.location-stop:hover,
.location-stop.is-active {
  background: rgba(218, 188, 133, 0.09);
}
.location-stop.is-active:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
}
.is-visited .stop-number {
  color: var(--amber);
}
.is-visited .stop-number:after {
  content: " ·";
  color: var(--amber);
}
.footer-notes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  font: 8px var(--mono);
  letter-spacing: 0.12em;
  color: var(--muted);
}
.hint,
.coords {
  margin: 0;
}
.hint span > span {
  padding: 0 12px;
}
.hint-touch {
  display: none;
}
.coords {
  margin-left: auto;
}
.footer-signature {
  margin-left: 30px;
  color: var(--amber);
}
.map-tools {
  position: fixed;
  z-index: 11;
  right: var(--gutter);
  bottom: 204px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(10, 24, 29, 0.7);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
}
.is-in .map-tools {
  opacity: 1;
  pointer-events: auto;
}
.map-tools button {
  height: 40px;
  min-width: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 19px;
}
.map-tools button:hover {
  background: rgba(255, 255, 255, 0.05);
}
.map-tools button[data-light] {
  font-size: 10px;
  padding: 0 13px;
}
.map-tools svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}
.tool-divider {
  height: 18px;
  width: 1px;
  background: var(--line);
}
.has-panel .map-tools {
  opacity: 0;
  pointer-events: none;
}
.markers {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s;
}
.is-in .markers {
  visibility: visible;
  opacity: 1;
}
.marker {
  position: absolute;
  left: 0;
  top: 0;
  translate: -50% -100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 10px;
  pointer-events: auto;
  will-change: transform;
}
.marker[data-hidden] {
  visibility: hidden;
}
.marker-label {
  text-align: center;
  white-space: nowrap;
  text-shadow:
    0 2px 8px #09141c,
    0 0 15px #09141c;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.marker-kind {
  font: 8px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  opacity: 0.85;
}
.marker-title {
  font-size: 11px;
  font-weight: 500;
}
.marker-pin {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border: 1px solid var(--paper);
  rotate: 45deg;
  box-shadow: 0 0 0 4px rgba(10, 26, 30, 0.35);
  transition: transform 0.2s;
}
.marker-pin:after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(239, 226, 203, 0.35);
}
.marker:hover .marker-pin,
.marker.is-active .marker-pin,
.marker:focus-visible .marker-pin {
  transform: scale(1.4);
  background: #fff;
}
.marker.is-active .marker-title {
  color: var(--amber);
}
.has-panel .marker:not(.is-active) {
  opacity: 0.35;
}
.btn-frame {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 17px 22px;
  text-decoration: none;
  font-size: 12px;
  color: var(--night);
  background: var(--paper);
  border: 1px solid var(--paper);
  transition: background 0.2s;
}
.btn-frame:hover {
  background: var(--amber);
  border-color: var(--amber);
}
.btn-frame > span {
  font-size: 18px;
}
.btn-link {
  padding: 10px 0;
  font-size: 11px;
  color: var(--muted);
  text-align: left;
}
.btn-link span {
  margin-left: 15px;
}
.btn-link:hover {
  color: var(--paper);
}
.panel {
  position: fixed;
  z-index: 12;
  right: var(--gutter);
  top: 112px;
  bottom: 200px;
  width: min(390px, 36vw);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: 0 24px 60px #07121655;
  backdrop-filter: blur(24px);
}
.panel-close {
  align-self: flex-end;
  padding: 17px 22px;
  font: 10px var(--mono);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 15px;
}
.panel-close span {
  font-size: 20px;
  line-height: 1;
}
.panel-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 5px 28px 24px;
  animation: panel-in 0.4s ease;
}
.panel-kicker {
  font: 9px var(--mono);
  color: var(--amber);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.panel-title {
  font: 400 clamp(28px, 3vw, 43px) / 1.08 var(--display);
  letter-spacing: -0.055em;
  margin: 0 0 24px;
}
.panel-title:focus {
  outline: none;
}
.panel-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 15px;
}
.panel-img {
  margin: 0 0 20px;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel-quote {
  font: 400 21px/1.5 var(--display);
  margin: 0 0 20px;
  color: var(--paper);
}
.panel-actions {
  margin-top: 25px;
}
.panel-actions .btn-frame {
  width: 100%;
}
.panel-nav {
  display: flex;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.panel-nav button {
  flex: 1;
  text-align: left;
  padding: 17px 20px;
  font-size: 10px;
}
.panel-nav button + button {
  text-align: right;
  border-left: 1px solid var(--line);
}
.panel-nav button:hover {
  background: #ffffff08;
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.index {
  position: fixed;
  z-index: 14;
  inset: 0;
  overflow-y: auto;
  background: rgba(12, 26, 31, 0.97);
  backdrop-filter: blur(24px);
}
.index-inner {
  width: min(1050px, 100%);
  padding: 80px var(--gutter) 50px;
  margin: auto;
}
.index-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 40px;
}
.index-head h2 {
  font: 400 clamp(28px, 4vw, 56px) / 1.15 var(--display);
  letter-spacing: -0.06em;
}
.index-head .btn-frame {
  padding: 12px 16px;
  background: none;
  color: var(--paper);
  border-color: var(--line);
  font-size: 10px;
}
.index-list {
  padding: 0;
  list-style: none;
  counter-reset: islands;
}
.index-list li {
  counter-increment: islands;
}
.index-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  gap: 22px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.index-row:before {
  content: "0" counter(islands);
  font: 10px var(--mono);
  color: var(--amber);
}
.index-title {
  font: 400 clamp(19px, 2.7vw, 32px) var(--display);
  letter-spacing: -0.04em;
}
.index-kind,
.index-go {
  font: 9px var(--mono);
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.index-go {
  color: var(--amber);
}
.index-row:hover .index-title {
  color: var(--amber);
}
.gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 110px var(--gutter);
  background:
    linear-gradient(
      90deg,
      rgba(8, 21, 27, 0.91) 0%,
      rgba(8, 21, 27, 0.76) 28%,
      rgba(8, 21, 27, 0.13) 62%,
      rgba(8, 21, 27, 0.08)
    ),
    linear-gradient(0deg, rgba(8, 21, 27, 0.64), transparent 20%);
}
.gate-brand {
  position: absolute;
  top: 30px;
  left: var(--gutter);
}
.gate-edition {
  position: absolute;
  right: var(--gutter);
  top: 34px;
  text-align: right;
  font: 9px/1.8 var(--mono);
  letter-spacing: 0.12em;
  color: var(--muted);
}
.gate-inner {
  width: 58%;
  max-width: 730px;
  padding-bottom: 15px;
}
.gate-inner .eyebrow {
  font-size: 9px;
}
.gate h2 {
  font: 400 clamp(48px, 6.9vw, 106px) / 1.02 var(--display);
  letter-spacing: -0.072em;
  margin: 30px 0;
}
.gate h2 em {
  font-style: normal;
  color: var(--amber);
}
.gate-tag {
  color: #b3bfbd;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 30px;
}
.gate-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.gate-status {
  font: 9px var(--mono);
  letter-spacing: 0.05em;
  color: #859a9d;
  margin-top: 23px;
}
.gate-bottom {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font: 8px var(--mono);
  letter-spacing: 0.12em;
  color: var(--muted);
}
.gate-map-label {
  position: absolute;
  right: 9%;
  bottom: 23%;
  font: 9px var(--mono);
  letter-spacing: 0.1em;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 5px 8px;
  color: var(--paper);
}
.map-cross {
  grid-row: span 2;
  font-size: 27px;
  line-height: 1;
  font-weight: 400;
  color: var(--amber);
}
.gate-map-label > span:last-child {
  font-size: 8px;
  color: var(--muted);
}
.noscript {
  position: fixed;
  z-index: 30;
  inset: 0;
  background: var(--night);
  padding: var(--gutter);
}
.no-webgl .markers,
.no-webgl .intro-copy,
.no-webgl .map-tools,
.no-webgl .world-caption,
.no-webgl [data-map] {
  display: none;
}
.no-webgl .panel {
  z-index: 16;
}
.no-webgl .index [data-close-index] {
  display: none;
}
@media (min-width: 1600px) {
  .gate-inner {
    padding-left: 3vw;
  }
  .intro-copy {
    top: 165px;
  }
  .location-stop {
    min-height: 76px;
  }
  .stop-name {
    font-size: 12px;
  }
}
@media (max-width: 1050px) {
  .hud-nav {
    gap: 20px;
  }
  .intro-copy {
    max-width: 220px;
  }
  .intro-copy .eyebrow {
    font-size: 8px;
  }
  .location-stop {
    padding: 12px 9px;
  }
  .stop-name {
    font-size: 10px;
  }
  .gate-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .gate h2 {
    font-size: 8vw;
  }
  .gate-inner {
    width: 65%;
  }
  .panel {
    width: 350px;
  }
  .gate-map-label {
    right: 7%;
  }
}
@media (max-width: 820px) {
  :root {
    --gutter: 22px;
  }
  .hud-top {
    padding-top: 22px;
    grid-template-columns: 1fr auto;
  }
  .hud-nav {
    display: none;
  }
  .intro-copy {
    top: 110px;
    max-width: 70%;
  }
  .headline {
    font-size: 28px;
    margin: 10px 0;
  }
  .intro-copy .eyebrow {
    font-size: 8px;
  }
  .sub {
    font-size: 11px;
    line-height: 1.6;
  }
  .world-caption {
    display: none;
  }
  .hud-bottom {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .location-rail {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .location-stop {
    flex: 0 0 108px;
    scroll-snap-align: start;
    min-height: 44px;
    padding: 7px 9px;
    flex-direction: row;
    align-items: center;
    gap: 7px;
  }
  .stop-name {
    min-width: 0;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .stop-number {
    flex: 0 0 auto;
    font-size: 8px;
  }
  .exploration-meta {
    min-height: 36px;
    margin-bottom: 4px;
  }
  .visit-count {
    font-size: 8px;
  }
  .index-btn {
    min-height: 36px;
    padding: 4px 0;
    font-size: 10px;
  }
  .index-btn > span:last-child,
  .gate-actions .btn-frame span {
    display: none;
  }
  .footer-signature,
  .coords {
    display: none;
  }
  .footer-notes {
    display: none;
  }
  .map-tools {
    bottom: 126px;
  }
  .map-tools button {
    min-width: 38px;
    height: 38px;
  }
  .map-tools button[data-light] {
    font-size: 9px;
  }
  .marker-label {
    padding: 0;
  }
  .marker-kind {
    display: none;
  }
  .marker-title {
    font-size: 10px;
  }
  .marker {
    gap: 8px;
  }
  .panel {
    top: auto;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 16px;
    right: 16px;
    width: auto;
    max-height: 51dvh;
  }
  .panel-body {
    padding: 0 22px 20px;
  }
  .panel-title {
    font-size: 32px;
  }
  .panel-kicker {
    margin-bottom: 15px;
  }
  .panel-close {
    padding: 12px 18px;
  }
  .panel-img {
    max-height: 160px;
  }
  .panel-text {
    font-size: 12px;
  }
  .panel-actions {
    margin-top: 18px;
  }
  .has-panel .hud-bottom {
    visibility: hidden;
  }
  .has-panel .map-tools {
    visibility: hidden;
  }
  .index-inner {
    padding: 34px 22px 24px;
  }
  .index-head {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 8px;
  }
  .index-head h2 {
    margin: 10px 0 12px;
    font-size: 28px;
  }
  .index-head .btn-frame {
    flex: 0 0 auto;
    padding: 10px 12px;
    font-size: 9px;
  }
  .index-row {
    grid-template-columns: 22px minmax(0, 1fr) auto;
    min-height: 50px;
    gap: 9px;
    padding: 11px 0;
  }
  .index-kind {
    font-size: 8px;
  }
  .index-go {
    display: none;
  }
  .index-title {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .gate {
    align-items: flex-start;
    padding-top: 23vh;
    background:
      linear-gradient(90deg, rgba(8, 21, 27, 0.78), rgba(8, 21, 27, 0.27)),
      linear-gradient(0deg, rgba(8, 21, 27, 0.7), transparent 45%);
  }
  .gate-inner {
    width: 100%;
  }
  .gate h2 {
    font-size: clamp(50px, 11.5vw, 80px);
    margin: 23px 0;
  }
  .gate-inner .eyebrow {
    font-size: 7px;
    letter-spacing: 0.09em;
  }
  .gate-tag {
    font-size: 12px;
    margin-bottom: 23px;
  }
  .gate-actions {
    gap: 8px;
  }
  .gate-actions .btn-frame {
    padding: 14px 20px;
    font-size: 11px;
  }
  .gate-status {
    font-size: 8px;
    margin-top: 14px;
  }
  .gate-edition {
    font-size: 7px;
    top: 27px;
  }
  .gate-brand {
    top: 24px;
  }
  .brand {
    font-size: 8px;
    gap: 12px;
  }
  .brand-symbol {
    font-size: 33px;
  }
  .gate-bottom {
    bottom: 20px;
    font-size: 7px;
    padding-top: 15px;
  }
  .gate-bottom > span:last-child {
    display: none;
  }
  .gate-map-label {
    display: none;
  }
}
@media (max-height: 640px) and (min-width: 821px) {
  .gate h2 {
    font-size: 60px;
    margin: 16px 0;
  }
  .gate-tag {
    margin-bottom: 18px;
  }
  .gate-inner .eyebrow {
    margin-top: 0;
  }
  .gate-status {
    margin-top: 10px;
  }
  .intro-copy {
    top: 100px;
  }
  .panel {
    top: 90px;
    bottom: 170px;
  }
  .map-tools {
    bottom: 180px;
  }
  .hud-bottom {
    bottom: 14px;
  }
  .location-stop {
    min-height: 52px;
  }
  .exploration-meta {
    margin-bottom: 8px;
  }
}
@media (hover: none) {
  .hint-pointer {
    display: none;
  }
  .hint-touch {
    display: inline;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* The entry title owns the header until the visitor enters. */
body:not(.is-in) .hud-top {
  visibility: hidden;
}
.has-panel .marker:not(.is-active) {
  visibility: hidden;
}

.keeper-button {
  margin-top: 10px;
  background: transparent;
  color: var(--paper);
  border-color: var(--line);
}

.keeper-inspecting .panel,
.keeper-inspecting .hud-bottom,
.keeper-inspecting .intro-copy,
.keeper-inspecting .markers,
.keeper-inspecting .map-tools,
.keeper-inspecting .world-caption,
.keeper-inspecting .hud-top,
.keeper-inspecting .vignette,
.keeper-inspecting .grain {
  visibility: hidden;
  pointer-events: none;
}
.keeper-inspector {
  position: fixed;
  inset: 0;
  z-index: 16;
  pointer-events: none;
  color: #243637;
}
.keeper-viewer-copy {
  position: absolute;
  left: var(--gutter);
  top: 14%;
  max-width: 270px;
}
.keeper-viewer-copy .eyebrow {
  color: #516360;
}
.keeper-viewer-copy h2 {
  font: 400 clamp(36px, 4.4vw, 65px) / 1.04 var(--display);
  letter-spacing: -0.055em;
  margin: 20px 0;
}
.keeper-viewer-copy p:last-child {
  font-size: 12px;
  color: #50635e;
}
[data-keeper-close] {
  position: absolute;
  top: 30px;
  right: var(--gutter);
  padding: 12px 0;
  pointer-events: auto;
  font-size: 12px;
}
.keeper-viewer-controls {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: #e4ebdfb3;
  border: 1px solid #718a7938;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  pointer-events: auto;
}
.keeper-viewer-controls button,
.keeper-viewer-controls a {
  padding: 14px 20px;
  font-size: 11px;
  text-decoration: none;
}
.keeper-viewer-controls a {
  border-left: 1px solid #718a7938;
}
.keeper-inspector button:focus-visible,
.keeper-inspector a:focus-visible {
  outline: 2px solid #344a45;
  outline-offset: 3px;
}
@media (max-width: 820px) {
  .keeper-viewer-copy {
    top: 70px;
    left: 22px;
  }
  .keeper-viewer-copy .eyebrow {
    display: none;
  }
  .keeper-viewer-copy h2 {
    font-size: 25px;
    margin: 10px 0;
  }
  .keeper-viewer-copy h2 br {
    display: none;
  }
  .keeper-viewer-copy p:last-child {
    font-size: 10px;
  }
  .keeper-viewer-controls {
    bottom: 24px;
  }
  .keeper-viewer-controls button,
  .keeper-viewer-controls a {
    padding: 13px 14px;
  }
  [data-keeper-close] {
    top: 15px;
    font-size: 11px;
  }
}
