:root {
  color-scheme: dark;
  --bg: #06131f;
  --accent: #e5a11c;
  --focus: rgba(255, 190, 65, .95);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; overflow-x: hidden; }
.page-shell { width: 100%; min-height: 100vh; display: grid; place-items: start center; background: #06131f; }
.hero { position: relative; width: min(100vw, 1536px); line-height: 0; margin-inline: auto; box-shadow: 0 0 80px rgba(0,0,0,.45); }
.hero-art { display: block; width: 100%; height: auto; user-select: none; -webkit-user-drag: none; }
.hotspot { position: absolute; left: calc(var(--x) * 1%); top: calc(var(--y) * 1%); width: calc(var(--w) * 1%); height: calc(var(--h) * 1%); z-index: 5; border-radius: 14px; outline: 0 solid transparent; transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease; }
.hotspot:hover { background: rgba(255,190,65,.07); box-shadow: 0 0 0 2px rgba(255,190,65,.45), 0 0 22px rgba(255,170,35,.16); transform: translateY(-1px); }
.hotspot:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; background: rgba(255,190,65,.08); }
.hotspot.avatar { border-radius: 50%; }
.hotspot.avatar:hover { transform: translateY(-3px) scale(1.025); box-shadow: 0 0 0 2px rgba(255,255,255,.4), 0 8px 30px rgba(0,0,0,.28); }
.hotspot.cta { border-radius: 10px; }
@media (min-width: 1537px) {
  body { background: radial-gradient(circle at 50% 18%, #14334e 0, #071522 45%, #040b11 100%); }
}
@media (max-width: 760px) {
  .hero { width: 100vw; min-width: 760px; transform-origin: top left; }
  .page-shell { overflow-x: auto; justify-content: start; }
}
@media (prefers-reduced-motion: reduce) {
  .hotspot { transition: none; }
}
