@font-face {
  font-family: "Sora";
  src: url("../Assets/Fonte/Sora/Sora-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

@font-face {
  font-family: "Pirulen";
  src: url("../Assets/Fonte/Pirulen Rg.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #fff6e5;
  --ink-dim: #bfb9ac;
  --cyan: #50c4d7;
  --cyan-dark: #28626c;
  --orange: #fc8400;
  --red: #ff3407;
  --ember: #fc8400;
  --ember-bright: #50c4d7;
  --espresso: #000;
  --panel: rgba(0, 0, 0, 0.9);
  --line: rgba(255, 246, 229, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body, #app {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--espresso);
}

body { color: var(--ink); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

body::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 35;
  width: 24px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--red) 0 33.333%, var(--orange) 33.333% 66.666%, var(--cyan) 66.666%);
  box-shadow: 8px 0 24px rgba(0, 0, 0, .18);
}

#viewer {
  position: absolute;
  inset: 0;
  cursor: grab;
}

#viewer:active { cursor: grabbing; }

#app::before,
#app::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

#app::before {
  background:
    linear-gradient(180deg, rgba(13, 8, 4, 0.72) 0, rgba(13, 8, 4, 0) 18%),
    linear-gradient(0deg, rgba(13, 8, 4, 0.5) 0, rgba(13, 8, 4, 0) 19%);
}

#app::after {
  box-shadow: inset 0 0 130px rgba(6, 3, 1, 0.25);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  pointer-events: none;
}

.brand, .topbar__actions { pointer-events: auto; }

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: clamp(166px, 17vw, 235px);
  height: auto;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, .38));
}

.topbar__actions { display: flex; align-items: center; gap: 9px; }

.icon-button, .mode-button, .menu-button, .control-button, .fullscreen-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(27, 18, 12, 0.58);
  backdrop-filter: blur(16px) saturate(120%);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.icon-button:hover, .mode-button:hover, .menu-button:hover, .control-button:hover, .fullscreen-button:hover {
  color: #fff;
  border-color: rgba(80, 196, 215, .7);
  background: rgba(40, 98, 108, 0.72);
  transform: translateY(-1px);
}

.icon-button { width: 42px; height: 42px; border-radius: 50%; }
.icon-button svg, .mode-button svg, .menu-button svg, .control-button svg, .fullscreen-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mode-button {
  grid-auto-flow: column;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .035em;
}

.mode-button[hidden] { display: none; }

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  font-family: "Pirulen", "Sora", sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
}
.menu-button svg { width: 16px; }

.scene-onboarding {
  position: fixed;
  z-index: 14;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  width: min(520px, calc(100vw - 36px));
  pointer-events: none;
  transform: translate(-50%, -43%);
  transition: opacity .48s ease, filter .48s ease, transform .48s cubic-bezier(.2,.75,.2,1), visibility .48s;
}

.scene-onboarding.is-hidden {
  opacity: 0;
  visibility: hidden;
  filter: blur(7px);
  transform: translate(-50%, -35%) scale(.96);
}

.scene-onboarding__directions {
  position: relative;
  display: grid;
  grid-template: repeat(3, 34px) / repeat(3, 34px);
  place-items: center;
  gap: 5px;
  width: 112px;
  height: 112px;
  transform-style: preserve-3d;
  animation: onboarding-tilt 5.8s ease-in-out infinite;
}

.scene-onboarding__directions::before,
.scene-onboarding__directions::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(80,196,215,.17);
  border-radius: 50%;
  transform: rotate(45deg);
}

.scene-onboarding__directions::after {
  inset: 31px;
  border-color: rgba(252,132,0,.22);
  animation: onboarding-orbit 7s linear infinite;
}

.scene-onboarding__arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255,246,229,.22);
  border-radius: 50%;
  outline: 0;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.32);
  box-shadow: inset 0 0 12px rgba(80,196,215,.05), 0 3px 16px rgba(0,0,0,.25);
  backdrop-filter: blur(4px);
  font: 13px/1 "Pirulen", "Sora", sans-serif;
  pointer-events: auto;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.scene-onboarding__arrow:hover,
.scene-onboarding__arrow:focus-visible {
  border-color: rgba(80,196,215,.82);
  color: #fff;
  background: rgba(80,196,215,.14);
  transform: translateZ(8px) scale(1.08);
  box-shadow: 0 0 18px rgba(80,196,215,.2);
}

.scene-onboarding__arrow--up { grid-area: 1 / 2; }
.scene-onboarding__arrow--left { grid-area: 2 / 1; }
.scene-onboarding__arrow--right { grid-area: 2 / 3; }
.scene-onboarding__arrow--down { grid-area: 3 / 2; }

.scene-onboarding__axis {
  position: relative;
  z-index: 2;
  grid-area: 2 / 2;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 50%;
  box-shadow: -2px 0 var(--cyan), 2px 0 var(--red), 0 0 14px rgba(255,255,255,.44);
}

.scene-onboarding__axis i {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  animation: onboarding-pulse 2.4s ease-out infinite;
}

.scene-onboarding__copy {
  display: grid;
  gap: 7px;
  margin: 21px 0 0;
  text-align: center;
  color: rgba(255,246,229,.72);
  font-family: "Pirulen", "Sora", sans-serif;
  font-size: clamp(8px, .8vw, 11px);
  line-height: 1.55;
  letter-spacing: .11em;
  text-shadow: 0 2px 12px rgba(0,0,0,.9);
}

.scene-onboarding__copy strong {
  color: #fff;
  font-weight: 400;
  font-size: clamp(12px, 1.15vw, 16px);
  letter-spacing: .14em;
  text-shadow: -1px 0 rgba(80,196,215,.55), 1px 0 rgba(255,52,7,.4), 0 3px 16px rgba(0,0,0,.9);
  animation: onboarding-chroma 4.8s steps(1, end) infinite;
}

.scene-onboarding__signal {
  display: flex;
  gap: 4px;
  height: 2px;
  margin-top: 15px;
}

.scene-onboarding__signal i { display: block; width: 24px; height: 1px; background: var(--cyan); opacity: .7; }
.scene-onboarding__signal i:nth-child(2) { width: 14px; background: var(--orange); }
.scene-onboarding__signal i:nth-child(3) { width: 8px; background: var(--red); }

@keyframes onboarding-tilt {
  0%, 100% { transform: perspective(520px) rotateX(5deg) rotateY(-7deg) translateY(0); }
  50% { transform: perspective(520px) rotateX(-3deg) rotateY(6deg) translateY(-4px); }
}

@keyframes onboarding-orbit { to { transform: rotate(405deg); } }
@keyframes onboarding-pulse { 0% { opacity: .65; transform: scale(.6); } 80%, 100% { opacity: 0; transform: scale(1.8); } }
@keyframes onboarding-chroma { 0%, 94%, 100% { transform: translateX(0); } 95% { transform: translateX(-1px); } 97% { transform: translateX(1px); } }

.eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--ember-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.modal h2, .help-card h2, .site-menu h2 {
  margin: 0;
  color: #fff9f1;
  font-family: "Sora", sans-serif;
  font-weight: 650;
  letter-spacing: -.025em;
}


.status-pill {
  position: fixed;
  z-index: 14;
  left: 28px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(246,238,228,.72);
  background: rgba(24, 16, 11, .7);
  backdrop-filter: blur(14px);
  font-size: 10px;
  letter-spacing: .055em;
  transition: opacity .3s ease;
}

.status-pill.is-quiet { opacity: .54; }
.status-pill__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(80,196,215,.13); animation: pulse 1.4s ease infinite; }
.status-pill.is-ready .status-pill__dot { background: #83b789; animation: none; box-shadow: 0 0 0 4px rgba(131,183,137,.12); }
.status-pill.is-error .status-pill__dot { background: #dd6b5f; animation: none; }
@keyframes pulse { 50% { opacity: .45; } }

.viewer-controls {
  position: fixed;
  z-index: 14;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  padding: 5px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(25, 16, 10, .7);
  box-shadow: 0 10px 36px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}

.control-button { width: 39px; height: 39px; border: 0; border-radius: 50%; background: transparent; backdrop-filter: none; }
.controls-divider { width: 1px; height: 18px; background: var(--line); }
.fullscreen-button { position: fixed; right: 89px; bottom: 85px; z-index: 14; }

.ambient-player {
  position: fixed;
  z-index: 14;
  right: 112px;
  bottom: 25px;
  display: grid;
  grid-template-columns: 28px minmax(110px, 1fr) auto 76px;
  grid-template-rows: 35px 3px;
  align-items: center;
  gap: 0 10px;
  width: min(410px, calc(100vw - 590px));
  min-width: 330px;
  padding: 7px 11px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(0, 0, 0, .72);
  box-shadow: 0 10px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(16px) saturate(115%);
  transition: border-color .2s ease, opacity .2s ease;
}
.ambient-player.is-awaiting-interaction { border-color: rgba(252,132,0,.38); }
.ambient-player[hidden] { display: none; }
.ambient-player__equalizer { display: flex; align-items: flex-end; justify-content: center; gap: 2px; height: 20px; }
.ambient-player__equalizer i { width: 2px; height: 30%; border-radius: 2px; background: var(--cyan); animation: ambient-equalize .72s ease-in-out infinite alternate; animation-play-state: paused; }
.ambient-player__equalizer i:nth-child(2) { height: 75%; animation-delay: -.2s; background: var(--orange); }
.ambient-player__equalizer i:nth-child(3) { height: 45%; animation-delay: -.4s; background: var(--red); }
.ambient-player__equalizer i:nth-child(4) { height: 90%; animation-delay: -.1s; }
.ambient-player__equalizer i:nth-child(5) { height: 55%; animation-delay: -.3s; background: var(--orange); }
.ambient-player.is-playing .ambient-player__equalizer i { animation-play-state: running; }
@keyframes ambient-equalize { to { height: 100%; } }
.ambient-player__track { min-width: 0; }
.ambient-player__track strong, .ambient-player__track small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ambient-player__track strong { color: var(--ink); font-size: 9px; font-weight: 650; }
.ambient-player__track small { margin-top: 3px; color: rgba(255,246,229,.38); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.ambient-player__transport { display: flex; align-items: center; gap: 3px; }
.ambient-player__transport button { display: grid; place-items: center; width: 25px; height: 25px; border: 0; border-radius: 50%; color: rgba(255,246,229,.7); background: transparent; cursor: pointer; }
.ambient-player__transport button:hover { color: var(--cyan); background: rgba(80,196,215,.08); }
.ambient-player__transport svg, .ambient-player__volume svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ambient-player__transport .ambient-player__play { border: 1px solid rgba(80,196,215,.35); color: var(--cyan); }
.ambient-player__play .pause-icon { display: none; }
.ambient-player.is-playing .ambient-player__play .play-icon { display: none; }
.ambient-player.is-playing .ambient-player__play .pause-icon { display: block; }
.ambient-player__progress { grid-column: 2 / 4; align-self: end; height: 3px; }
.ambient-player__volume { display: flex; align-items: center; gap: 5px; color: rgba(255,246,229,.4); }
.ambient-player__volume svg { flex: 0 0 auto; width: 13px; height: 13px; }
.ambient-player input[type="range"] { display: block; width: 100%; height: 3px; margin: 0; accent-color: var(--cyan); cursor: pointer; }

[data-tooltip] { position: relative; }
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  top: calc(100% + 9px);
  width: max-content;
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--ink);
  background: rgba(20,13,9,.92);
  box-shadow: 0 7px 20px rgba(0,0,0,.26);
  font-size: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity .16s, transform .16s;
}
[data-tooltip]:hover::after { opacity: 1; transform: none; }
.viewer-controls [data-tooltip]::after { right: auto; left: 50%; top: auto; bottom: calc(100% + 11px); transform: translate(-50%, 3px); }
.viewer-controls [data-tooltip]:hover::after { transform: translate(-50%, 0); }
.fullscreen-button::after { top: auto; bottom: calc(100% + 9px); }

.menu-layer {
  position: fixed;
  inset: 0;
  z-index: 95;
  opacity: 0;
  transition: opacity .25s ease;
}
.menu-layer[hidden] { display: none; }
.menu-layer.is-open { opacity: 1; }
.menu-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .62); backdrop-filter: blur(9px) saturate(.8); }
.site-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(470px, 100vw);
  height: 100%;
  overflow: hidden;
  padding: 28px 30px 24px;
  border-left: 1px solid rgba(255,246,229,.16);
  background:
    radial-gradient(circle at 85% 4%, rgba(80,196,215,.13), transparent 26%),
    linear-gradient(155deg, rgba(20,20,20,.985), rgba(0,0,0,.99));
  box-shadow: -28px 0 80px rgba(0,0,0,.46);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.82,.2,1);
}
.menu-layer.is-open .site-menu { transform: translateX(0); }
.brand-stripes {
  position: absolute;
  top: 0;
  right: 92px;
  display: flex;
  height: 9px;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
}
.brand-stripes span { width: 52px; }
.brand-stripes span:nth-child(1) { background: var(--cyan); }
.brand-stripes span:nth-child(2) { background: var(--orange); }
.brand-stripes span:nth-child(3) { background: var(--red); }
.site-menu__header { display: flex; align-items: center; justify-content: space-between; min-height: 58px; }
.site-menu__header img { width: 172px; height: auto; }
.menu-close { flex: 0 0 auto; font-size: 22px; }
.site-menu__intro { padding: 32px 0 22px; border-bottom: 1px solid var(--line); }
.site-menu__intro .eyebrow { color: var(--cyan); }
.site-menu__intro h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.02; letter-spacing: -.045em; }
.site-menu__intro p { max-width: 43ch; margin: 14px 0 0; color: var(--ink-dim); font-size: 12px; line-height: 1.6; }
.site-menu__items { flex: 1; overflow: auto; margin: 0 -9px; padding: 13px 9px; scrollbar-width: thin; scrollbar-color: var(--cyan-dark) transparent; }
.site-menu__item {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 34px;
  align-items: center;
  width: 100%;
  min-height: 63px;
  border: 0;
  border-bottom: 1px solid rgba(255,246,229,.1);
  padding: 0 7px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding .2s ease, color .2s ease, background .2s ease;
}
.site-menu__item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--cyan);
  transition: height .2s ease;
}
.site-menu__item:nth-child(3n+2)::before { background: var(--orange); }
.site-menu__item:nth-child(3n)::before { background: var(--red); }
.site-menu__item:hover, .site-menu__item:focus-visible { padding-left: 15px; outline: 0; background: rgba(255,255,255,.045); }
.site-menu__item:hover::before, .site-menu__item:focus-visible::before { height: 68%; }
.site-menu__index { color: rgba(255,246,229,.34); font: 9px/1 "Pirulen", monospace; }
.site-menu__copy strong, .site-menu__copy small { display: block; }
.site-menu__copy strong { font-size: 14px; font-weight: 600; }
.site-menu__copy small { margin-top: 4px; color: rgba(255,246,229,.42); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.site-menu__symbol { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(80,196,215,.28); border-radius: 50%; color: var(--cyan); font: 12px/1 "Pirulen", sans-serif; }
.site-menu__footer { display: grid; gap: 10px; padding-top: 17px; border-top: 1px solid var(--line); }
.site-menu__home { display: flex; align-items: center; justify-content: space-between; min-height: 42px; border: 1px solid rgba(252,132,0,.5); border-radius: 3px; padding: 0 14px; color: #000; background: var(--orange); font-size: 11px; font-weight: 750; cursor: pointer; }
.site-menu__footer small { color: rgba(255,246,229,.4); font-size: 9px; }

.modal-layer, .help-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .22s ease;
}

.modal-layer[hidden], .help-layer[hidden] { display: none; }
.modal-layer.is-open, .help-layer.is-open { opacity: 1; }
.modal-backdrop, .help-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.74); backdrop-filter: blur(10px); }

.modal, .help-card {
  position: relative;
  width: min(570px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 40px;
  border: 1px solid rgba(255,233,206,.16);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(24,24,24,.985), rgba(0,0,0,.99));
  box-shadow: var(--shadow);
  transform: translateY(12px) scale(.985);
  transition: transform .22s ease;
}

.is-open > .modal, .is-open > .help-card { transform: none; }
.modal[data-variant="services"], .modal[data-variant="world-clock"] { width: min(840px, 100%); }
.modal[data-variant="video"] { width: min(1240px, calc(100vw - 56px)); }
.modal[data-variant="iframe"] { width: min(1220px, calc(100vw - 56px)); }
.modal[data-experience="boombox"] { width: min(1320px, calc(100vw - 48px)); }
.modal[data-experience="aquaplay"], .modal[data-experience="console"], .modal[data-experience="genius"], .modal[data-experience="object-story"], .modal[data-experience="walkman"], .modal[data-experience="vhs"], .modal[data-experience="methiolate"], .modal[data-experience="door"] { width: min(1440px, calc(100vw - 42px)); }
.modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 0; background: rgba(255,255,255,.045); font-size: 22px; }
.modal__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 24px; border: 1px solid rgba(80,196,215,.36); border-radius: 50%; color: var(--cyan); background: rgba(80,196,215,.08); font-family: "Pirulen", sans-serif; }
.modal h2, .help-card h2 { padding-right: 30px; font-size: 35px; line-height: 1.08; }
.modal__content { margin-top: 20px; color: var(--ink-dim); font-size: 14px; line-height: 1.7; }
.modal__content > p { margin: 0; }
.modal__actions { display: flex; margin-top: 26px; }

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #50c4d7;
  border-radius: 3px;
  color: #20130a;
  background: #50c4d7;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.modal:is([data-variant="video"], [data-variant="iframe"]) {
  max-height: calc(100vh - 32px);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.modal:is([data-variant="video"], [data-variant="iframe"]) > .modal__icon,
.modal:is([data-variant="video"], [data-variant="iframe"]) > .eyebrow,
.modal:is([data-variant="video"], [data-variant="iframe"]) > .modal__actions { display: none; }
.modal:is([data-variant="video"], [data-variant="iframe"]) > h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.modal:is([data-variant="video"], [data-variant="iframe"]) .modal__content { margin: 0; }
.modal:is([data-variant="video"], [data-variant="iframe"]) .modal__close {
  z-index: 8;
  top: -14px;
  right: -14px;
  border: 1px solid rgba(80,196,215,.55);
  color: #fff;
  background: rgba(5,9,10,.94);
  box-shadow: 0 8px 26px rgba(0,0,0,.48);
}

.experience-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid rgba(80,196,215,.35); border-radius: 2px; background: #000; box-shadow: 0 22px 70px rgba(0,0,0,.55); }
.experience-frame iframe { width: 100%; height: 100%; border: 0; }
.experience-frame--boombox { height: min(82vh, 742px); min-height: min(640px, calc(100vh - 48px)); aspect-ratio: auto; }
.experience-frame--aquaplay, .experience-frame--console, .experience-frame--genius, .experience-frame--object-story, .experience-frame--walkman, .experience-frame--vhs, .experience-frame--methiolate, .experience-frame--door { height: min(86vh, 820px); min-height: min(650px, calc(100vh - 42px)); aspect-ratio: auto; }
.broadcast-player { overflow: hidden; border: 1px solid rgba(255,246,229,.25); border-radius: 5px; background: #080808; box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.broadcast-player__bar, .broadcast-player__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 30px; padding: 0 12px; color: rgba(255,246,229,.58); background: #171717; font: 8px/1 "Pirulen", monospace; letter-spacing: .08em; }
.broadcast-player__bar i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
.broadcast-player__screen { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.broadcast-player__screen::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(180deg, rgba(255,255,255,.024) 0, rgba(255,255,255,.024) 1px, transparent 1px, transparent 4px); mix-blend-mode: screen; }
.retro-tv-stage { width: 100%; filter: drop-shadow(0 28px 55px rgba(0,0,0,.62)); }
.retro-tv { position: relative; width: 100%; aspect-ratio: 1648/928; }
.retro-tv__shell { position: absolute; z-index: 1; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; user-select: none; }
.retro-tv__screen {
  position: absolute;
  z-index: 2;
  top: 10.7%;
  left: 13.8%;
  width: 61.1%;
  height: 71.6%;
  overflow: hidden;
  border-radius: 12% / 10%;
  background: #000;
  box-shadow: inset 0 0 32px rgba(80,196,215,.12);
}
.retro-tv__screen::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(255,255,255,.025) 4px);
  mix-blend-mode: screen;
}
.retro-tv__screen iframe,
.modal-video { display: block; width: 100%; height: 100%; border: 0; background: #000; object-fit: contain; }
.broadcast-player__footer span:nth-child(2) { color: var(--cyan); }
.broadcast-player__footer span:nth-child(3) { color: #ff9983; }

.coming-soon { display: grid; justify-items: center; gap: 9px; min-height: 260px; place-content: center; border: 1px dashed rgba(80,196,215,.35); padding: 34px; text-align: center; background: linear-gradient(145deg, rgba(80,196,215,.07), rgba(252,132,0,.04)); }
.coming-soon > span { display: grid; place-items: center; width: 55px; height: 55px; margin-bottom: 7px; border: 1px solid rgba(80,196,215,.45); border-radius: 50%; color: var(--cyan); font: 18px/1 "Pirulen", sans-serif; }
.coming-soon strong { color: var(--ink); font-size: 17px; }
.coming-soon p { max-width: 48ch; margin: 0; color: var(--ink-dim); font-size: 12px; line-height: 1.6; }

.world-clock-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.world-clock { position: relative; overflow: hidden; min-height: 156px; border: 1px solid var(--line); padding: 18px; background: rgba(255,255,255,.025); }
.world-clock::after { content: ""; position: absolute; right: 0; bottom: 0; width: 42%; height: 4px; background: var(--cyan); }
.world-clock:nth-child(3n+2)::after { background: var(--orange); }
.world-clock:nth-child(3n)::after { background: var(--red); }
.world-clock > span { color: rgba(255,246,229,.42); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.world-clock strong { display: block; margin: 13px 0 5px; color: #fff; font: clamp(26px, 5vw, 42px)/1 "Pirulen", monospace; letter-spacing: -.04em; }
.world-clock p { margin: 0; color: var(--ink); font-size: 13px; }
.world-clock small { display: block; margin-top: 13px; color: var(--cyan); font-size: 9px; text-transform: uppercase; }

.services-intro { max-width: 62ch; margin-bottom: 22px !important; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.service-card { min-height: 138px; border: 1px solid var(--line); padding: 17px; background: rgba(255,255,255,.025); }
.service-card > span { color: var(--cyan); font: 8px/1 "Pirulen", monospace; }
.service-card:nth-child(3n+2) > span { color: var(--orange); }
.service-card:nth-child(3n) > span { color: var(--red); }
.service-card strong { display: block; margin: 18px 0 7px; color: var(--ink); font-size: 14px; }
.service-card p { margin: 0; color: var(--ink-dim); font-size: 10px; line-height: 1.55; }

.interaction-form { display: grid; gap: 15px; margin-top: 23px; }
.interaction-form label span { display: block; margin-bottom: 6px; color: var(--ink); font-size: 11px; }
.interaction-form input, .interaction-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255,255,255,.045);
  resize: vertical;
}
.interaction-form input:focus, .interaction-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(80,196,215,.1); }
.success-state { display: grid; justify-items: start; gap: 7px; }
.success-state > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #172318; background: #8fbc8f; font-weight: 800; }
.success-state p { margin: 0; }

.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.help-grid > div { display: grid; grid-template-columns: 38px 1fr; column-gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 4px; background: rgba(255,255,255,.025); }
.help-grid > div > span { grid-row: 1 / 3; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--ember-bright); background: rgba(217,155,88,.09); }
.help-grid strong { font-size: 12px; }
.help-grid small { margin-top: 4px; color: var(--ink-dim); font-size: 10px; line-height: 1.45; }

.hotspot-tooltip.psv-tooltip {
  max-width: 260px;
  border: 1px solid rgba(80,196,215,.3);
  border-radius: 5px;
  background: rgba(0,0,0,.94);
  box-shadow: 0 16px 42px rgba(0,0,0,.4);
  backdrop-filter: blur(16px);
}
.hotspot-tooltip .psv-tooltip-content { padding: 14px 16px; }
.hotspot-tooltip__eyebrow { display: block; margin-bottom: 7px; color: var(--ember-bright); font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hotspot-tooltip strong, .hotspot-tooltip small { display: block; }
.hotspot-tooltip strong { color: #fff8ef; font: 600 16px/1.15 "Sora", sans-serif; }
.hotspot-tooltip small { margin-top: 6px; color: rgba(246,238,228,.64); font-size: 10px; line-height: 1.45; }
.hotspot-tooltip__action { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 11px; padding-top: 10px; border-top: 1px solid var(--line); color: rgba(246,238,228,.72); font-size: 9px; }
.hotspot-tooltip__action b { color: var(--ember-bright); }
.hotspot-tooltip .psv-tooltip-arrow { border-top-color: rgba(0,0,0,.94) !important; }

.psv-container { font-family: inherit; }
.psv-compass { z-index: 6; right: 17px !important; bottom: 75px !important; opacity: .8; transform: scale(.78); transform-origin: bottom right; filter: sepia(.15); }
.psv-marker--has-tooltip { cursor: pointer !important; }

@media (max-width: 1020px) and (min-width: 721px) {
  .status-pill, .psv-compass { display: none; }
  .fullscreen-button { right: 18px; bottom: 20px; }
  .ambient-player { right: 18px; bottom: 78px; width: 360px; min-width: 0; }
}

@media (max-width: 720px) {
  body::before { width: 12px; }
  .topbar { padding: 16px; }
  .brand__logo { width: 145px; }
  .topbar__actions { gap: 6px; }
  .menu-button { width: 42px; padding: 0; }
  .menu-button span { display: none; }
  .mode-button { width: 42px; padding: 0; font-size: 0; }
  .scene-onboarding { top: 46%; width: calc(100vw - 28px); }
  .scene-onboarding__directions { grid-template: repeat(3, 31px) / repeat(3, 31px); width: 102px; height: 102px; }
  .scene-onboarding__arrow { width: 29px; height: 29px; }
  .scene-onboarding__copy { max-width: 34ch; font-size: 8px; }
  .status-pill { display: none; }
  .fullscreen-button { right: 16px; bottom: 22px; }
  .viewer-controls { bottom: 18px; }
  .ambient-player { right: 16px; bottom: 72px; width: calc(100vw - 32px); min-width: 0; grid-template-columns: 26px minmax(90px, 1fr) auto 68px; }
  .psv-compass { display: none; }
  .modal, .help-card { padding: 31px 24px 25px; }
  .modal:is([data-variant="video"], [data-variant="iframe"]) { width: calc(100vw - 28px); padding: 0; }
  .modal:is([data-variant="video"], [data-variant="iframe"]) .modal__close { top: -8px; right: -4px; }
  .modal h2, .help-card h2 { font-size: 29px; }
  .help-grid { grid-template-columns: 1fr; }
  .site-menu { padding: 20px 18px 18px; }
  .site-menu__header img { width: 150px; }
  .site-menu__intro { padding: 22px 0 17px; }
  .site-menu__intro h2 { font-size: 30px; }
  .site-menu__item { min-height: 57px; }
  .brand-stripes { right: 72px; }
  .brand-stripes span { width: 40px; }
  .world-clock-grid, .services-grid { grid-template-columns: 1fr; }
  .world-clock { min-height: 134px; }
  .broadcast-player__bar span:last-child, .broadcast-player__footer span:nth-child(2) { display: none; }
  .experience-frame--boombox { height: calc(100vh - 34px); min-height: 0; aspect-ratio: auto; }
  .experience-frame--aquaplay, .experience-frame--console, .experience-frame--genius, .experience-frame--object-story, .experience-frame--walkman, .experience-frame--vhs, .experience-frame--methiolate, .experience-frame--door { height: calc(100vh - 34px); min-height: 0; aspect-ratio: auto; }
}

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

