:root {
  --bg: #070b0b;
  --panel: #0d1414;
  --teal: #19c3b8;
  --teal2: #48ece0;
  --red: #e8392b;
  --gold: #f5b301;
  --ink: #eaf3f1;
  --muted: #7e9794;
  --line: rgba(255, 255, 255, 0.09);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
html {
  background: var(--bg);
  color: var(--ink);
  font-family: Barlow, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
  min-height: 100vh;
  background:
    radial-gradient(
      120% 80% at 50% -10%,
      rgba(25, 195, 184, 0.1),
      transparent 60%
    ),
    radial-gradient(
      90% 60% at 90% 110%,
      rgba(232, 57, 43, 0.08),
      transparent 60%
    ),
    var(--bg);
  padding: 26px clamp(16px, 3.5vw, 52px) 48px;
}
.mono {
  font-family:
    Space Mono,
    monospace;
}
.cond {
  font-family:
    Barlow Condensed,
    sans-serif;
}
.topbar {
  max-width: 1360px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo {
  height: 32px;
  width: auto;
  display: block;
}
.brand .tag {
  font-family:
    Space Mono,
    monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hint {
  font-family:
    Space Mono,
    monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal2);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hint .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 #19c3b899;
  animation: pulse 2s infinite;
}
.head {
  max-width: 1360px;
  margin: 0 auto 16px;
}
.kicker {
  font-family:
    Space Mono,
    monospace;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.head h1 {
  font-family:
    Barlow Condensed,
    sans-serif;
  font-weight: 700;
  line-height: 0.92;
  font-size: clamp(34px, 5.4vw, 68px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.head h1 span {
  color: var(--teal);
}
.head p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
  max-width: 60ch;
}
.stage-wrap {
  max-width: 1360px;
  margin: 0 auto;
}
.stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1536/1024;
  border-radius: 14px;
  overflow: visible;
  isolation: isolate;
  box-shadow:
    0 30px 80px -30px #000000e6,
    0 0 0 1px var(--line);
}
.stage .base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  z-index: 1;
}
.dim {
  position: absolute;
  inset: 0;
  background: #04080a;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  border-radius: 14px;
}
.stage:has(.hotspot:hover) .dim {
  opacity: 0.52;
}
.hotspot {
  position: absolute;
  left: calc(var(--l) * 1%);
  top: calc(var(--t) * 1%);
  width: calc(var(--w) * 1%);
  height: calc(var(--h) * 1%);
  z-index: 3;
  cursor: pointer;
}
.hotspot:hover {
  z-index: 60;
}
.slice {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(0) scale(1);
  transform-origin: center bottom;
  transition:
    opacity 0.16s ease,
    transform 0.5s cubic-bezier(0.18, 0.84, 0.26, 1),
    box-shadow 0.5s ease;
  will-change: transform, opacity;
}
.slice img {
  position: absolute;
  max-width: none;
  left: calc(var(--l) / var(--w) * -100%);
  top: calc(var(--t) / var(--h) * -100%);
  width: calc(100% / var(--w) * 100);
  height: calc(100% / var(--h) * 100);
}
.hotspot:hover .slice {
  opacity: 1;
  transform: translateY(-4%) scale(1.055);
  box-shadow:
    0 30px 52px -14px #000000e6,
    0 0 0 1.5px var(--ring),
    0 0 36px -6px var(--glow);
}
.pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  margin: -6.5px 0 0 -6.5px;
  border-radius: 50%;
  background: var(--ring);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 0 0 var(--glow);
  animation: pulse 2.2s infinite;
  transition: opacity 0.25s ease;
}
.stage:has(.hotspot:hover) .pin {
  opacity: 0;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 #19c3b88c;
  }
  70% {
    box-shadow: 0 0 0 12px #19c3b800;
  }
  to {
    box-shadow: 0 0 #19c3b800;
  }
}
.card {
  position: absolute;
  width: 258px;
  z-index: 70;
  pointer-events: none;
  background: linear-gradient(180deg, #0b1212f7, #070c0cf7);
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 15px 16px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 50px -18px #000000d9;
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translate(var(--cx, 0), calc(var(--cy, 0) + 8px));
}
.hotspot:hover .card {
  opacity: 1;
  transform: translate(var(--cx, 0), var(--cy, 0));
}
.card.bottom {
  top: 100%;
  left: 50%;
  margin-top: 16px;
  --cx: -50%;
}
.card.top {
  bottom: 100%;
  left: 50%;
  margin-bottom: 16px;
  --cx: -50%;
}
.card.right {
  left: 100%;
  top: 50%;
  margin-left: 16px;
  --cy: -50%;
}
.card.left {
  right: 100%;
  top: 50%;
  margin-right: 16px;
  --cy: -50%;
}
.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.badge {
  font-family:
    Space Mono,
    monospace;
  font-weight: 700;
  font-size: 12px;
  color: #06100f;
  background: var(--ring);
  border-radius: 5px;
  padding: 3px 8px 2px;
  line-height: 1;
}
.card .eyebrow {
  font-family:
    Space Mono,
    monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.card h3 {
  font-family:
    Barlow Condensed,
    sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 7px;
}
.card h3 i {
  font-style: normal;
  color: var(--ring);
}
.card p {
  font-size: 13px;
  line-height: 1.45;
  color: #c2d3d0;
  margin-bottom: 11px;
}
.feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.feats li {
  font-family:
    Space Mono,
    monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #9fb4b1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feats li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ring);
  flex: none;
}
.legend {
  max-width: 1360px;
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.legend .lab {
  font-family:
    Space Mono,
    monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff05;
  font-family:
    Barlow Condensed,
    sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13.5px;
  color: #cfdedb;
  cursor: default;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.chip i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c, var(--teal));
  flex: none;
}
.chip:hover {
  border-color: var(--c, var(--teal));
  color: #fff;
  background: #ffffff0a;
}
.foot {
  max-width: 1360px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.foot .l {
  font-family:
    Barlow Condensed,
    sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 16px;
  color: #bccecb;
}
.foot .l b {
  color: var(--teal);
}
.foot .l .star {
  color: var(--gold);
}
.foot .r {
  font-family:
    Space Mono,
    monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) {
  .card {
    width: 210px;
  }
  .head p {
    font-size: 13.5px;
  }
}
