/* =====================================================================
   PURRBIT — one moon, two cats, zero sharing
   ===================================================================== */

:root {
  --void: #04081A;
  --deep: #070F26;
  --panel: #0A1631;
  --line: rgba(150, 180, 255, .14);
  --line-2: rgba(150, 180, 255, .26);

  --ink: #EAF0FD;
  --dim: #92A3C6;
  --faint: #6B7CA0;

  --terra: #FF8B2E;
  --terra-2: #FFB56B;
  --jade: #35E39A;

  --nova: #A98CFF;
  --nova-2: #C7B2FF;
  --violet: #7C5CFF;

  --moon: #FFF0CE;
  --earth: #2FA8FF;

  --up: #35E39A;
  --down: #FF6B6B;

  --wrap: 1180px;
  --r: 18px;
  --r-sm: 12px;

  --sans: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --disp: "Space Grotesk", Manrope, sans-serif;
  --mono: "Space Mono", ui-monospace, Menlo, Consolas, monospace;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, canvas { max-width: 100%; }
img { height: auto; }

a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--nova-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: fixed;
  top: -60px;
  left: 14px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--nova);
  color: #10061F;
  font-weight: 800;
  text-decoration: none;
  border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip:focus { top: 14px; }

.hot { color: var(--moon); }

/* ══════ DEEP SPACE ══════ */
.world {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  /* the two glows are deliberately wider than the viewport; a fixed child that
     sticks out still drags a scrollbar sideways on some mobile browsers even
     with overflow-x hidden on the body */
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, #0D1B44 0%, #060C20 44%, var(--void) 100%);
}
#stars { position: absolute; inset: 0; width: 100%; height: 100%; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .34;
}
.glow-a {
  width: 46vw; height: 46vw;
  left: -12vw; top: 6vh;
  background: radial-gradient(circle, rgba(255, 139, 46, .55), transparent 68%);
  animation: drift 26s ease-in-out infinite;
}
.glow-b {
  width: 52vw; height: 52vw;
  right: -16vw; top: 42vh;
  background: radial-gradient(circle, rgba(124, 92, 255, .5), transparent 68%);
  animation: drift 32s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(4vw, -5vh, 0) scale(1.12); }
}

.grain {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: radial-gradient(#fff 1px, transparent 1.2px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

/* ══════ SCROLL RAIL ══════ */
.rail {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 90;
  background: rgba(255, 255, 255, .05);
}
.rail span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--terra), var(--moon) 52%, var(--nova));
  box-shadow: 0 0 14px rgba(169, 140, 255, .7);
}

/* ══════ NAV ══════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 34px);
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(5, 10, 26, .78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 0 0 3px rgba(169, 140, 255, .1), 0 6px 20px rgba(0, 0, 0, .5);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-name {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.02em;
  background: linear-gradient(96deg, var(--terra-2), var(--moon) 46%, var(--nova-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-name.small { font-size: 19px; }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dim);
  text-decoration: none;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, .06); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

.ico {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--dim);
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  transition: border-color .18s, color .18s, background .18s, transform .18s var(--ease);
}
.ico:hover { color: var(--ink); border-color: var(--line-2); background: rgba(255, 255, 255, .08); transform: translateY(-2px); }
.ico img { width: 15px; height: 15px; filter: brightness(0) invert(1); opacity: .82; }
.ico svg { width: 18px; height: 18px; }
.ico[data-sound="off"] .on-wave { display: none; }
.ico[data-sound="on"] .off-x { display: none; }
.ico[data-sound="on"] { color: var(--nova-2); border-color: rgba(169, 140, 255, .45); }
.ico.nudge { animation: nudge 1s ease-in-out 3; }
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); box-shadow: 0 0 0 4px rgba(169, 140, 255, .16); }
}
.ico[aria-disabled="true"] { opacity: .4; pointer-events: none; }

/* ══════ BUTTONS ══════ */
.orb-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 19px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(96deg, var(--terra) 0%, #FF6FA0 48%, var(--violet) 100%);
  color: #FFF;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(124, 92, 255, .35), inset 0 1px 0 rgba(255, 255, 255, .28);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.orb-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, .45) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: sheen 5.5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 62% { transform: translateX(-120%); }
  86%, 100% { transform: translateX(120%); }
}
.orb-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(124, 92, 255, .48), inset 0 1px 0 rgba(255, 255, 255, .3); }
.orb-btn:active { transform: translateY(0); }
.orb-btn img { width: 16px; height: 16px; position: relative; z-index: 1; }
.orb-btn span { position: relative; z-index: 1; }
.orb-btn.big { padding: 15px 30px; font-size: 16.5px; }
.orb-btn.big img { width: 18px; height: 18px; }

.wire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 19px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .04);
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s, background .2s;
}
.wire-btn:hover { transform: translateY(-2px); border-color: rgba(169, 140, 255, .55); background: rgba(169, 140, 255, .1); }
.wire-btn.big { padding: 14px 28px; font-size: 16px; }
[aria-disabled="true"] { opacity: .55; cursor: default; }

/* ══════ LAYOUT ══════ */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 118px) clamp(18px, 5vw, 30px);
}
.wrap.tight { padding-top: 0; padding-bottom: clamp(40px, 6vw, 70px); }

.head { margin-bottom: clamp(30px, 5vw, 52px); max-width: 720px; }
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--nova-2);
  margin-bottom: 14px;
}
.head h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(31px, 5.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.032em;
  margin: 0;
}
.head p {
  margin: 16px 0 0;
  color: var(--dim);
  font-size: 17px;
  max-width: 58ch;
}

/* letters get lit one at a time */
.head h2 .lt {
  display: inline-block;
  opacity: 0;
  transform: translateY(.22em);
}
.head h2 .lt.sp { width: .3em; }
.head h2.lit .lt {
  animation: lightUp .5s var(--ease) forwards;
  animation-delay: calc(var(--i) * 18ms);
}
@keyframes lightUp {
  to { opacity: 1; transform: none; }
}

/* scroll lift */
[data-lift] {
  opacity: calc(.08 + .92 * var(--p, 0));
  transform: translateY(calc((1 - var(--p, 0)) * 26px));
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
@supports (animation-timeline: view()) {
  html.js [data-lift] {
    --p: 0;
    animation: liftIn linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 26%;
    transition: none;
  }
  @keyframes liftIn { to { --p: 1; } }
  @property --p { syntax: "<number>"; inherits: false; initial-value: 0; }
}
@media (prefers-reduced-motion: reduce) {
  [data-lift] { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ══════ HERO ══════ */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) clamp(18px, 5vw, 30px) clamp(50px, 7vw, 84px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 24px;
}
.over {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .19em;
  color: var(--dim);
}
.beat {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 0 rgba(53, 227, 154, .6);
  animation: beat 2.1s ease-out infinite;
  flex: none;
}
@keyframes beat {
  0%   { box-shadow: 0 0 0 0 rgba(53, 227, 154, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(53, 227, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 227, 154, 0); }
}

.hero h1 {
  margin: 0;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(44px, 10.5vw, 108px);
  line-height: .96;
  letter-spacing: -.045em;
  display: grid;
  gap: 2px;
}
.hero h1 .ln { display: block; }
.hero h1 .hot {
  background: linear-gradient(96deg, var(--terra-2), var(--moon) 50%, var(--nova-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(255, 240, 206, .22));
}

/* the artwork */
.shot {
  position: relative;
  margin: 6px 0 0;
  width: min(430px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.shot .star {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(169, 140, 255, .3);
  box-shadow:
    0 0 0 8px rgba(124, 92, 255, .07),
    0 30px 90px rgba(0, 0, 0, .7),
    0 0 100px rgba(124, 92, 255, .3);
  animation: bob 9s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-.6deg); }
}
.halo {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 206, .22), transparent 62%);
  filter: blur(24px);
  z-index: -1;
  animation: pulseHalo 6s ease-in-out infinite;
}
@keyframes pulseHalo {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.07); }
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(169, 140, 255, .3);
  z-index: -1;
}
.ring-1 { inset: -9%; animation: spin 34s linear infinite; }
.ring-2 { inset: -19%; border-style: solid; border-color: rgba(255, 139, 46, .16); animation: spin 52s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.tug {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.tug-t {
  left: -6%;
  bottom: 20%;
  color: #2A1400;
  background: linear-gradient(96deg, var(--terra), var(--terra-2));
  box-shadow: 0 6px 20px rgba(255, 139, 46, .4);
  rotate: -8deg;
  animation: tugT 4.4s ease-in-out infinite;
}
.tug-n {
  right: -6%;
  top: 20%;
  color: #150A2E;
  background: linear-gradient(96deg, var(--nova-2), #E6DBFF);
  box-shadow: 0 6px 20px rgba(169, 140, 255, .45);
  rotate: 8deg;
  animation: tugN 4.4s ease-in-out infinite;
}
@keyframes tugT {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-7px, 5px); }
}
@keyframes tugN {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(7px, -5px); }
}

.lede {
  margin: 0;
  max-width: 60ch;
  color: var(--dim);
  font-size: clamp(16.5px, 2vw, 19.5px);
}
.lede b { color: var(--ink); font-weight: 700; }

.acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* contract pill */
.ca {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: min(560px, 92vw);
  padding: 9px 9px 9px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.ca:hover { border-color: rgba(169, 140, 255, .5); background: rgba(169, 140, 255, .09); transform: translateY(-2px); }
.ca-k {
  flex: none;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(96deg, var(--terra), var(--violet));
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
}
.ca-v {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
}
.ca svg { width: 15px; height: 15px; flex: none; margin-right: 8px; }

/* live strip */
.live {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  font-size: 13.5px;
  color: var(--dim);
}
.live b { color: var(--ink); font-family: var(--mono); font-weight: 700; }
.live.on { border-color: rgba(53, 227, 154, .3); }
.live.stale { opacity: .6; }
.live .li { display: inline-flex; align-items: center; gap: 7px; }
.live .li i { font-style: normal; color: var(--faint); font-size: 12px; }
.live .li b { font-size: 14.5px; }
.live .up { color: var(--up); }
.live .down { color: var(--down); }

/* ══════ TAPE ══════ */
.tape {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 139, 46, .07), rgba(124, 92, 255, .07));
  padding: 13px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tape-run {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: run 34s linear infinite;
}
@keyframes run { to { transform: translateX(-50%); } }
.tape-run span {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.tape-run i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--nova);
  flex: none;
}

/* ══════ BEATS ══════ */
.beats {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 118px) clamp(18px, 5vw, 30px);
}
.turn {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: clamp(14px, 3vw, 30px);
  padding: 26px 0;
  position: relative;
}
.turn-n {
  font-family: var(--mono);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(169, 140, 255, .45);
}
.turn-txt h3 {
  margin: 0 0 8px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 27px);
  letter-spacing: -.022em;
}
.turn-txt p { margin: 0; color: var(--dim); max-width: 62ch; }
.turn-rule {
  grid-column: 1 / -1;
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--line-2), transparent 72%);
}
.turn:last-child .turn-rule { display: none; }

/* ══════ BANNER PLATE ══════ */
.strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.strip img {
  display: block;
  width: 100%;
  height: clamp(220px, 38vw, 460px);
  object-fit: cover;
  object-position: center;
}
.strip-edge {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--void) 0%, transparent 16%, transparent 84%, var(--void) 100%),
    linear-gradient(180deg, rgba(4, 8, 26, .5), transparent 30%, transparent 62%, rgba(4, 8, 26, .85));
  pointer-events: none;
}
.stamp {
  position: absolute;
  top: clamp(14px, 3vw, 26px);
  left: clamp(14px, 3vw, 30px);
  display: grid;
  gap: 2px;
  padding: 9px 15px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 240, 206, .35);
  background: rgba(4, 8, 26, .5);
  backdrop-filter: blur(8px);
}
.stamp span {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--moon);
}
.stamp i { font-style: normal; font-size: 11px; color: var(--faint); letter-spacing: .1em; }
.strip-cap {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(12px, 2.5vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: clamp(9.5px, 1.5vw, 12px);
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--dim);
  text-align: center;
  padding-inline: 12px;
}

/* ══════ CLAIMANTS ══════ */
.duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(14px, 2.4vw, 26px);
}
.claim {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.claim::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto -30%;
  height: 70%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.claim.terra::before { background: radial-gradient(circle, var(--terra), transparent 70%); }
.claim.nova::before  { background: radial-gradient(circle, var(--violet), transparent 70%); }
.claim:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(0, 0, 0, .45); }
.claim.terra:hover { border-color: rgba(255, 139, 46, .5); }
.claim.nova:hover  { border-color: rgba(169, 140, 255, .5); }

.claim header { position: relative; }
.claim-side {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.claim.terra .claim-side { color: var(--terra-2); }
.claim.nova .claim-side  { color: var(--nova-2); }
.claim h3 {
  margin: 8px 0 10px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 42px);
  letter-spacing: -.035em;
  line-height: 1;
}
.claim.terra h3 { color: var(--terra-2); }
.claim.nova h3  { color: var(--nova-2); }
.claim-law {
  margin: 0 0 22px;
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  padding-left: 14px;
  border-left: 2px solid var(--line-2);
}
.claim-list { margin: 0; display: grid; gap: 0; }
.claim-list div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.claim-list dt {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.claim-list dd { margin: 0; font-weight: 600; font-size: 15px; text-align: right; }
.claim-note {
  margin: 18px 0 0;
  font-size: 14.5px;
  color: var(--dim);
}

.versus {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 14px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(4, 8, 26, .7);
}
.versus b {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--terra-2), var(--nova-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.versus i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--faint);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

/* ══════ KEEP-AWAY DECK ══════ */
.deck {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  overflow: hidden;
  transition: box-shadow .3s;
}
.deck.flash { box-shadow: 0 0 0 1px rgba(255, 240, 206, .5), 0 0 70px rgba(255, 240, 206, .3); }

.deck-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px clamp(14px, 2.5vw, 22px);
  border-bottom: 1px solid var(--line);
}
.go {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14.5px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: transform .12s var(--ease), box-shadow .2s, filter .2s;
}
.go i {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 10px currentColor;
}
.go.terra {
  background: linear-gradient(96deg, rgba(255, 139, 46, .22), rgba(255, 139, 46, .1));
  border-color: rgba(255, 139, 46, .45);
  color: var(--terra-2);
}
.go.terra i { background: var(--terra); color: var(--terra); }
.go.nova {
  background: linear-gradient(96deg, rgba(169, 140, 255, .1), rgba(169, 140, 255, .22));
  border-color: rgba(169, 140, 255, .45);
  color: var(--nova-2);
}
.go.nova i { background: var(--nova); color: var(--nova); }
.go:hover { filter: brightness(1.2); }
.go.on, .go:active { transform: scale(.96); }
.go.terra.on { box-shadow: 0 0 0 3px rgba(255, 139, 46, .22), 0 0 30px rgba(255, 139, 46, .4); }
.go.nova.on  { box-shadow: 0 0 0 3px rgba(169, 140, 255, .22), 0 0 30px rgba(169, 140, 255, .4); }

.deck-msg {
  margin: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--faint);
}

.tugbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(14px, 2.5vw, 22px);
  border-bottom: 1px solid var(--line);
}
.tugbar-side {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
}
.tugbar-side.t { color: var(--terra-2); }
.tugbar-side.n { color: var(--nova-2); }
.tugbar-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}
.tugbar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: linear-gradient(90deg, var(--terra), var(--terra-2));
  box-shadow: 0 0 16px rgba(255, 139, 46, .55);
  transition: width .12s linear;
}
.tugbar-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, transparent);
  pointer-events: none;
}
.tugbar-mid {
  position: absolute;
  left: 50%;
  top: -3px; bottom: -3px;
  width: 1px;
  background: rgba(255, 255, 255, .35);
}

.deck-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  background: radial-gradient(120% 110% at 50% 120%, rgba(47, 168, 255, .16), transparent 55%), #030713;
  touch-action: none;
}
@media (max-width: 620px) { .deck-stage { aspect-ratio: 4 / 5; min-height: 380px; } }
#orbitCv { position: absolute; inset: 0; width: 100%; height: 100%; display: block; cursor: grab; }
#orbitCv:active { cursor: grabbing; }

.deck-plate, .deck-live {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(3, 7, 19, .72);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--dim);
  pointer-events: none;
}
.deck-plate { left: 14px; bottom: 14px; }
.deck-live { right: 14px; top: 14px; color: var(--jade); border-color: rgba(53, 227, 154, .3); }

.calm {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(3, 7, 19, .72);
  backdrop-filter: blur(8px);
  color: var(--dim);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  transition: color .18s, border-color .18s;
}
.calm:hover { color: var(--ink); border-color: var(--line-2); }

.scores {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.scores li {
  display: grid;
  gap: 3px;
  padding: 16px 14px;
  border-right: 1px solid var(--line);
  transition: background .3s;
}
.scores li:last-child { border-right: 0; }
.scores li.bump { background: rgba(255, 240, 206, .09); }
.scores i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
}
.scores b {
  font-family: var(--disp);
  font-size: clamp(19px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.overheard {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px clamp(14px, 2.5vw, 22px) 20px;
}
.oh-n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--nova-2);
  letter-spacing: .1em;
}
.overheard p { margin: 0; color: var(--dim); font-size: 15.5px; }
.oh-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, .05);
}
.oh-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--terra), var(--nova));
}

/* ══════ CHIPS ══════ */
.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.chips li {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  transition: border-color .25s, transform .25s var(--ease);
}
.chips li:hover { border-color: var(--line-2); transform: translateY(-3px); }
.chips b {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--moon);
}
.chips span { font-size: 13.5px; color: var(--dim); }

/* ══════ CHART ══════ */
.glass {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
}
.glass-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.glass-t {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink);
}
.glass-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-left: auto; }
.glass-stats span { display: inline-flex; align-items: baseline; gap: 6px; }
.glass-stats i { font-style: normal; font-size: 11px; color: var(--faint); font-family: var(--mono); }
.glass-stats b { font-size: 13.5px; font-weight: 700; }
.thin {
  font-size: 13px;
  font-weight: 600;
  color: var(--nova-2);
  text-decoration: none;
  margin-left: auto;
}
.glass-stats + .thin { margin-left: 0; }
.thin:hover { text-decoration: underline; }

.glass-body { position: relative; min-height: 440px; }
.glass-body iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.glass-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: clamp(48px, 9vw, 96px) 24px;
}
.glass-empty h3 {
  margin: 0;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -.022em;
}
.glass-empty p { margin: 0; color: var(--dim); max-width: 46ch; }

/* ══════ HOW TO BUY ══════ */
.path {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.path li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: clamp(14px, 2.4vw, 24px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  transition: border-color .25s, transform .25s var(--ease), background .25s;
}
.path li:hover { border-color: rgba(169, 140, 255, .4); background: rgba(169, 140, 255, .06); transform: translateX(5px); }
.path-n {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--faint);
  padding-top: 4px;
}
.path img { width: 26px; height: 26px; margin-top: 2px; }
.path img.round { border-radius: 50%; }
.path h3 {
  margin: 0 0 6px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.02em;
}
.path p { margin: 0; color: var(--dim); font-size: 15.5px; }

/* ══════ SPEC SHEET ══════ */
.sheet {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255, 139, 46, .07), rgba(124, 92, 255, .09));
}
.sheet-copy h2 {
  margin: 0 0 14px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -.032em;
  line-height: 1.08;
}
.sheet-copy p { margin: 0 0 22px; color: var(--dim); }
.sheet-links { display: flex; flex-wrap: wrap; gap: 10px; }
.sheet-list { margin: 0; align-self: center; }
.sheet-list div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.sheet-list div:last-child { border-bottom: 0; }
.sheet-list dt {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
}
.sheet-list dd { margin: 0; font-weight: 700; font-size: 15.5px; }

/* ══════ FINALE ══════ */
.finale {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(70px, 11vw, 130px) clamp(18px, 5vw, 30px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 22px;
}
.finale h2 {
  margin: 0;
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(36px, 7.6vw, 76px);
  line-height: .98;
  letter-spacing: -.042em;
}
.finale p { margin: 0; color: var(--dim); max-width: 56ch; font-size: 17.5px; }

/* ══════ FOOTER ══════ */
.foot {
  border-top: 1px solid var(--line);
  padding: clamp(34px, 5vw, 54px) clamp(18px, 5vw, 30px);
  max-width: var(--wrap);
  margin: 0 auto;
}
.foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dim);
  text-decoration: none;
  transition: color .18s;
}
.foot-links a:hover { color: var(--ink); }
.fine {
  margin: 22px 0 0;
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--faint);
  max-width: 92ch;
}
.fine.dim { opacity: .68; margin-top: 12px; }

/* ══════ TOAST + HINT ══════ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 150;
  transform: translate(-50%, 26px);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(169, 140, 255, .45);
  background: rgba(10, 16, 40, .94);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .55);
  opacity: 0;
  pointer-events: none;
  max-width: min(92vw, 480px);
  text-align: center;
  transition: opacity .28s, transform .28s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.hint {
  position: fixed;
  right: 18px;
  top: 66px;
  z-index: 150;
  padding: 9px 15px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: rgba(10, 16, 40, .94);
  backdrop-filter: blur(10px);
  font-size: 12.5px;
  color: var(--dim);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s, transform .3s var(--ease);
  pointer-events: none;
}
.hint.show { opacity: 1; transform: none; }

/* ══════ DEBRIS ══════ */
.spark {
  position: fixed;
  z-index: 140;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  pointer-events: none;
}
.rip {
  position: fixed;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid rgba(169, 140, 255, .5);
  pointer-events: none;
}

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .duo { grid-template-columns: 1fr; }
  .versus { justify-self: center; padding: 10px 16px; }
  .versus i { writing-mode: horizontal-tb; }
  .sheet { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-cta .orb-btn span { display: none; }
  .nav-cta .orb-btn { padding: 11px 14px; }
  .deck-bar { grid-template-columns: 1fr 1fr; gap: 10px; }
  .deck-msg { grid-column: 1 / -1; order: 3; }
  .go { justify-content: center; padding: 12px 12px; font-size: 13.5px; }
  .scores { grid-template-columns: 1fr 1fr; }
  .scores li:nth-child(2) { border-right: 0; }
  .scores li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .turn { grid-template-columns: 54px 1fr; }
  .path li { grid-template-columns: auto 1fr; }
  .path img { grid-row: 1; }
  .path div { grid-column: 1 / -1; }
  .glass-body { min-height: 380px; }
  .tug { font-size: 9.5px; padding: 4px 9px; }
}
@media (max-width: 420px) {
  .ca { font-size: 11.5px; gap: 8px; }
  .live { font-size: 12.5px; }
}
