:root {
  --void: #050814;
  --navy: #070b18;
  --navy-2: #0c1228;
  --navy-3: #141c3a;
  --cosmic: #1d3f9a;
  --cyan: #3ee7ff;
  --cyan-dim: rgba(62, 231, 255, 0.18);
  --cyan-soft: #9af4ff;
  --violet: #6b4cff;
  --violet-dim: rgba(107, 76, 255, 0.22);
  --burgundy: #6e1634;
  --crimson: #c41e4a;
  --crimson-dim: rgba(196, 30, 74, 0.22);
  --armor: #8b2d4a;
  --silver: #d7e0f0;
  --white: #f4f8ff;
  --muted: #8b97b3;
  --line: rgba(158, 196, 255, 0.16);
  --glass: rgba(8, 12, 28, 0.62);
  --header-h: 76px;
  --font-display: "Segoe UI Condensed", "Arial Narrow", "Segoe UI", Tahoma, sans-serif;
  --font-body: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-mono: "Cascadia Mono", Consolas, "Courier New", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--silver);
  background: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--cyan);
  color: var(--navy);
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 0.75rem;
}

.void {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(107, 76, 255, 0.18), transparent 55%),
    radial-gradient(900px 600px at 100% 8%, rgba(196, 30, 74, 0.14), transparent 50%),
    radial-gradient(800px 500px at 50% 120%, rgba(62, 231, 255, 0.08), transparent 55%),
    var(--void);
}

.void-nebula {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(29, 63, 154, 0.28), transparent 42%),
    radial-gradient(ellipse at 78% 70%, rgba(110, 22, 52, 0.2), transparent 40%);
  filter: blur(8px);
}

.void-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62, 231, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 231, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}

body.nav-open {
  overflow: hidden;
}

.site-header.is-scrolled {
  background: rgba(7, 11, 24, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(62, 231, 255, 0.35), 0 0 18px rgba(62, 231, 255, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--white);
}

.brand-ticker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.16em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.primary-nav > a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.primary-nav > a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.4rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 28, 0.5);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), top 0.25s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  touch-action: manipulation;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(62, 231, 255, 0.55);
  box-shadow: 0 0 22px rgba(62, 231, 255, 0.12);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(62, 231, 255, 0.18), rgba(62, 231, 255, 0.05));
  border-color: rgba(62, 231, 255, 0.55);
  color: var(--cyan-soft);
  box-shadow: inset 0 0 12px rgba(62, 231, 255, 0.08);
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(62, 231, 255, 0.28), rgba(62, 231, 255, 0.08));
  box-shadow: 0 0 28px rgba(62, 231, 255, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
}

.btn-lg {
  min-height: 48px;
  padding: 0 1.3rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 0.6rem) 0 5rem;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-copy {
  min-width: 0;
}

.hero-layout {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
}

.eyebrow-mark {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--crimson), var(--cyan));
  box-shadow: 0 0 8px var(--cyan);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 40px rgba(62, 231, 255, 0.18);
}

.hero-ticker {
  margin: 0.85rem 0 1.4rem;
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.38em;
  color: var(--cyan);
}

.hero-lead {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: 1.12rem;
  color: var(--white);
}

.hero-support {
  margin: 0 0 1.8rem;
  max-width: 32rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.launch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 10px var(--crimson);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.hero-stage {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-parallax {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1145 / 1374;
  max-height: calc(100vh - var(--header-h) - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  animation: float-warden 7s ease-in-out infinite;
  will-change: transform;
}

.hero-character {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.hero-glow {
  position: absolute;
  width: 68%;
  height: 58%;
  left: 16%;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(62, 231, 255, 0.38) 0%, rgba(107, 76, 255, 0.16) 38%, transparent 70%);
  filter: blur(18px);
  z-index: 1;
  animation: glow-breathe 5.5s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(62, 231, 255, 0.22);
  z-index: 2;
  pointer-events: none;
}

.orbit-ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  top: -4px;
  left: 50%;
}

.ring-a {
  width: 92%;
  height: 92%;
  left: 4%;
  top: 4%;
  animation: spin 48s linear infinite;
}

.ring-b {
  width: 74%;
  height: 46%;
  left: 13%;
  top: 27%;
  border-color: rgba(196, 30, 74, 0.35);
  animation: spin-reverse 36s linear infinite;
}

.ring-b::after {
  background: var(--crimson);
  box-shadow: 0 0 12px var(--crimson);
}

.ring-c {
  width: 118%;
  height: 70%;
  left: -9%;
  top: 16%;
  border-style: dashed;
  border-color: rgba(107, 76, 255, 0.28);
  animation: spin 64s linear infinite;
}

.energy-arc {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(62, 231, 255, 0.6));
}

.arc-a {
  width: 70%;
  height: 38%;
  left: 6%;
  top: 22%;
  border-top-color: var(--cyan);
  transform: rotate(-28deg);
  animation: arc-pulse 5s ease-in-out infinite;
}

.arc-b {
  width: 52%;
  height: 30%;
  right: 2%;
  bottom: 22%;
  border-bottom-color: var(--crimson);
  transform: rotate(18deg);
  filter: drop-shadow(0 0 10px rgba(196, 30, 74, 0.55));
  animation: arc-pulse 6.4s ease-in-out infinite reverse;
}

.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}

.scroll-cue-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: cue-drop 2.2s ease-in-out infinite;
}

.contract {
  padding: 0 1rem 4.5rem;
}

.contract-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  position: relative;
  padding: 1.3rem 1.4rem 1.2rem;
  background: linear-gradient(180deg, rgba(16, 22, 48, 0.86), rgba(8, 12, 28, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(62, 231, 255, 0.04), 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hud-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background:
    linear-gradient(var(--cyan), var(--cyan)) top left / 16px 2px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) top left / 2px 16px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) top right / 16px 2px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) top right / 2px 16px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) bottom left / 16px 2px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) bottom left / 2px 16px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) bottom right / 16px 2px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) bottom right / 2px 16px no-repeat;
  opacity: 0.75;
}

.contract-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.contract-label,
.contract-status {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contract-label {
  color: var(--cyan);
}

.contract-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ca-value {
  flex: 1;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: clamp(1.05rem, 3.4vw, 1.7rem);
  color: var(--white);
  letter-spacing: 0.12em;
  word-break: break-all;
  user-select: all;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(62, 231, 255, 0.12);
  padding: 0.7rem 0.9rem;
}

#copy-ca.is-copied {
  border-color: var(--cyan);
  color: var(--navy);
  background: var(--cyan);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-kicker span:first-child {
  color: var(--cyan);
}

.section-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.2vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.lore,
.warden,
.circle,
.watch {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.fracture-stage {
  position: relative;
  min-height: 58vh;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.fragment {
  text-align: center;
  will-change: transform;
}

.fragment-word {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.9;
}

.fragment-left .fragment-word {
  color: var(--crimson);
  text-shadow: 0 0 24px rgba(196, 30, 74, 0.35);
}

.fragment-right .fragment-word {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(62, 231, 255, 0.3);
}

.fragment-sub {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
}

.fracture-core {
  position: relative;
  width: 110px;
  height: min(62vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fracture-crack {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    var(--crimson),
    var(--violet),
    var(--cyan),
    transparent
  );
  box-shadow: 0 0 18px var(--cyan), 0 0 28px var(--violet);
}

.crack-pulse {
  position: absolute;
  left: -3px;
  width: 8px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #fff, transparent);
  filter: blur(1px);
  animation: crack-travel 3.6s linear infinite;
}

.unity-sphere {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  will-change: transform;
}

.sphere-core {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff, var(--cyan) 38%, var(--violet) 68%, #140816);
  box-shadow: 0 0 18px var(--cyan), 0 0 42px var(--violet);
}

.sphere-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(62, 231, 255, 0.45);
  animation: spin 12s linear infinite;
}

.verses {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.verse {
  margin: 0 0 0.55rem;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: var(--silver);
}

.verse-accent {
  color: var(--cyan);
  font-weight: 700;
}

.verse-close {
  color: var(--white);
}

.warden-verse {
  margin: 0 0 2.2rem;
  max-width: 36rem;
  border: 0;
  padding: 0;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  line-height: 1.55;
  color: var(--white);
}

.warden-cinematic {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 52vh;
  background: #070b16;
}

.warden-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 11, 24, 0.42), transparent 24%, transparent 76%, rgba(7, 11, 24, 0.42)),
    linear-gradient(to top, rgba(7, 11, 24, 0.46), transparent 36%);
}

.warden-banner {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: cover;
  object-position: center 42%;
}

.anno {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 220px;
  z-index: 2;
}

.anno-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  flex: 0 0 auto;
}

.anno-line {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  flex: 0 0 auto;
}

.anno-copy {
  padding: 0.15rem 0.15rem 0.15rem 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.anno-copy h3 {
  margin: 0 0 0.15rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.anno-copy p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--silver);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.anno-self {
  top: 12%;
  left: 4%;
}

.anno-double {
  top: 18%;
  right: 4%;
  flex-direction: row-reverse;
}

.anno-double .anno-line {
  background: linear-gradient(90deg, transparent, var(--crimson));
}

.anno-double .anno-node {
  background: var(--crimson);
  box-shadow: 0 0 12px var(--crimson);
}

.anno-sphere {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  text-align: center;
  max-width: 260px;
}

.anno-sphere .anno-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--violet), transparent);
}

.orbit-stage {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
}

.giant-orbit {
  position: absolute;
  width: min(86vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-path {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(62, 231, 255, 0.18);
}

.orbit-path-b {
  inset: 9%;
  border-style: dashed;
  border-color: rgba(196, 30, 74, 0.25);
}

.orbit-cross {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(107, 76, 255, 0.18);
  background:
    linear-gradient(var(--line), var(--line)) center / 1px 100% no-repeat,
    linear-gradient(var(--line), var(--line)) center / 100% 1px no-repeat;
}

.orbit-nucleus {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--cyan) 55%, var(--violet));
  box-shadow: 0 0 24px var(--cyan);
}

.orbit-particle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  will-change: transform;
}

.orbit-particle-alt {
  background: var(--crimson);
  box-shadow: 0 0 16px var(--crimson);
}

.orbit-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  text-align: center;
  padding: 2.4rem 1.2rem;
  background: radial-gradient(circle, rgba(7, 11, 24, 0.88) 0%, rgba(7, 11, 24, 0.62) 52%, transparent 74%);
}

.orbit-lead,
.orbit-aside {
  font-size: 1.08rem;
  color: var(--silver);
}

.orbit-aside {
  color: var(--white);
}

.orbit-note {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.duality {
  padding: 0;
  width: 100%;
}

.duality-stage {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  overflow: hidden;
  --split: 50%;
}

.dual-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.dual-radiant {
  background:
    radial-gradient(circle at 28% 50%, rgba(62, 231, 255, 0.22), transparent 42%),
    linear-gradient(90deg, #07111f 0%, #10284a 100%);
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  justify-content: flex-start;
  padding-left: 6vw;
}

.dual-dire {
  background:
    radial-gradient(circle at 72% 50%, rgba(196, 30, 74, 0.28), transparent 42%),
    linear-gradient(90deg, #2a0b16 0%, #12060c 100%);
  justify-content: flex-end;
  padding-right: 6vw;
}

.dual-word {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 10vw, 9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.85;
}

.dual-radiant .dual-word {
  color: var(--cyan-soft);
  text-shadow: 0 0 30px rgba(62, 231, 255, 0.35);
}

.dual-dire .dual-word {
  color: #ff6b8a;
  text-shadow: 0 0 30px rgba(196, 30, 74, 0.4);
}

.dual-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, #fff, var(--cyan), #fff, transparent);
  box-shadow: 0 0 18px var(--cyan);
  z-index: 2;
  pointer-events: none;
}

.duality-center {
  position: relative;
  z-index: 3;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.dual-times {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  text-shadow: 0 0 20px #fff;
  position: absolute;
  top: 7%;
}

.duality-figure {
  width: min(42vw, 380px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.55));
}

.duality-line {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}

.watch-sub {
  margin: -0.6rem 0 1.6rem;
  color: var(--muted);
}

.watch-frame {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(7, 11, 24, 0.8);
}

.watch-chrome {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.watch-status {
  color: var(--cyan);
}

.watch-body {
  position: relative;
  min-height: 420px;
}

.watch-shell,
.watch-embed {
  min-height: 420px;
}

.watch-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 2.5rem 1.2rem;
  overflow: hidden;
}

.watch-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62, 231, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 231, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.watch-sweep {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(62, 231, 255, 0.2);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}

.watch-signal {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.watch-signal-sub {
  position: relative;
  margin: 0 0 0.6rem;
  color: var(--muted);
  text-align: center;
}

.watch-embed iframe {
  width: 100%;
  height: 480px;
  border: 0;
  background: #0b1220;
}

.watch-fallback {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.is-hidden {
  display: none;
}

.finale {
  position: relative;
  padding: 7rem 1rem 6.5rem;
  text-align: center;
  overflow: hidden;
}

.finale-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90vw, 640px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(62, 231, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(107, 76, 255, 0.08);
  pointer-events: none;
}

.finale-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
}

.finale h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
}

.finale-sub {
  margin: 1rem 0 0;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--silver);
}

.finale-ticker {
  margin: 1.2rem 0 2rem;
  font-family: var(--font-mono);
  letter-spacing: 0.4em;
  font-size: 1.4rem;
  color: var(--cyan);
}

.finale-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1rem 2.4rem;
  background: rgba(5, 8, 20, 0.8);
}

.footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-brand p {
  margin: 0;
  line-height: 1.3;
}

.footer-brand p:first-child {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-x {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.footer-disclaimer {
  width: min(1240px, 100%);
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float-warden {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(-18deg); }
  to { transform: rotate(-378deg); }
}

@keyframes arc-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes cue-drop {
  0% { transform: scaleY(0.4); opacity: 0; transform-origin: top; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: top; }
}

@keyframes crack-travel {
  0% { top: -10%; opacity: 0; }
  15% { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-stage {
    min-height: 0;
    order: -1;
  }

  .hero-parallax {
    max-height: none;
    width: min(100%, 480px);
    aspect-ratio: 1145 / 1374;
    margin: 0 auto;
  }

  .hero {
    padding-top: calc(var(--header-h) + 0.5rem);
  }

  .duality-figure {
    width: min(58vw, 320px);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1rem 1.2rem;
    background: rgba(7, 11, 24, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a {
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions {
    margin: 0.9rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .nav-actions .btn {
    min-height: 46px;
  }

  .fracture-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .fracture-core {
    width: 100%;
    height: 180px;
  }

  .fracture-crack {
    left: 0;
    right: 0;
    top: 50%;
    width: auto;
    height: 2px;
    transform: none;
    background: linear-gradient(to right, transparent, var(--crimson), var(--violet), var(--cyan), transparent);
  }

  .crack-pulse {
    left: auto;
    top: -3px;
    width: 48px;
    height: 8px;
    animation: crack-travel-x 3.6s linear infinite;
  }

  .fragment-left,
  .fragment-right {
    padding: 0.4rem 0;
  }

  .anno {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    max-width: none;
    padding: 0.85rem 1rem;
    background: linear-gradient(90deg, rgba(7, 11, 24, 0.0), rgba(7, 11, 24, 0.55));
  }

  .anno-double {
    flex-direction: row;
  }

  .anno-sphere {
    flex-direction: row;
    text-align: left;
  }

  .anno-sphere .anno-line {
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--violet), transparent);
  }

  .warden-cinematic {
    display: flex;
    flex-direction: column;
  }

  .warden-cinematic::after {
    display: none;
  }

  .dual-word {
    font-size: clamp(2.2rem, 14vw, 4rem);
  }

  .dual-radiant,
  .dual-dire {
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: flex-start;
    padding-top: 8vh;
  }

  .ca-value {
    width: 100%;
  }

  .contract-row .btn {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 600px) {
  .hero-actions .btn,
  .finale-actions .btn {
    width: 100%;
  }

  .hero-parallax {
    width: min(94vw, 420px);
  }

  .header-inner {
    width: calc(100% - 1.2rem);
  }

  .watch-body,
  .watch-shell,
  .watch-embed,
  .watch-embed iframe {
    min-height: 360px;
  }

  .watch-embed iframe {
    height: 360px;
  }
}

@keyframes crack-travel-x {
  0% { left: -10%; opacity: 0; }
  15% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-float,
  .hero-glow,
  .orbit-ring,
  .energy-arc,
  .chip-dot,
  .scroll-cue-line,
  .crack-pulse,
  .sphere-ring,
  .watch-sweep {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
