:root {
  --bg-deep: #05060b;
  --bg-mid: #11121d;
  --panel: rgba(13, 16, 28, 0.72);
  --panel-strong: rgba(24, 16, 40, 0.92);
  --line: rgba(184, 138, 255, 0.2);
  --line-strong: rgba(111, 255, 187, 0.3);
  --text: #f7f3ff;
  --muted: #cdc1e4;
  --violet: #b176ff;
  --violet-strong: #7f3ee0;
  --mint: #64ffb0;
  --pink: #ff759d;
  --cyan: #7fd8ff;
  --gold: #ffd772;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 16% 14%, rgba(177, 118, 255, 0.24), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 117, 157, 0.18), transparent 22%),
    radial-gradient(circle at 58% 82%, rgba(100, 255, 176, 0.14), transparent 26%),
    linear-gradient(180deg, #190e24 0%, #0d1018 42%, #05070b 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Gill Sans", sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -16%;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 22% 28%, rgba(177, 118, 255, 0.18), transparent 18%),
    radial-gradient(circle at 76% 22%, rgba(255, 117, 157, 0.14), transparent 18%),
    radial-gradient(circle at 50% 72%, rgba(100, 255, 176, 0.1), transparent 22%);
  filter: blur(80px);
  animation: sky-drift 20s ease-in-out infinite;
}

body::after {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.08), transparent 0 18%, transparent 36%);
  opacity: 0.85;
}

@media (pointer: fine) {
  body.glb-cursor-active,
  body.glb-cursor-active a,
  body.glb-cursor-active button,
  body.glb-cursor-active [role="button"] {
    cursor: none !important;
  }
}

.site-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    max(env(safe-area-inset-top), 18px)
    max(env(safe-area-inset-right), 18px)
    max(env(safe-area-inset-bottom), 22px)
    max(env(safe-area-inset-left), 18px);
}

.ambient,
.pointer-glow {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
}

.ambient {
  filter: blur(28px);
  opacity: 0.72;
}

.ambient-a {
  top: 2%;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(177, 118, 255, 0.3), transparent 72%);
  animation: float-a 17s ease-in-out infinite;
}

.ambient-b {
  top: 20%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 117, 157, 0.22), transparent 72%);
  animation: float-b 18s ease-in-out infinite;
}

.ambient-c {
  bottom: -70px;
  left: 14%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(100, 255, 176, 0.16), transparent 76%);
  animation: float-c 22s ease-in-out infinite;
}

.ambient-d {
  top: 48%;
  right: 18%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(127, 216, 255, 0.12), transparent 74%);
  animation: float-d 15s ease-in-out infinite;
}

.pointer-glow {
  inset: auto;
  width: 180px;
  height: 180px;
  left: calc(var(--pointer-x) - 90px);
  top: calc(var(--pointer-y) - 90px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
  filter: blur(22px);
  opacity: 0.72;
}

.swarm-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glb-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 124px;
  height: 124px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-200px, -200px, 0);
  transition:
    opacity 220ms ease,
    filter 220ms ease,
    transform 120ms linear;
  will-change: transform;
}

.glb-cursor-fallback {
  position: absolute;
  inset: 26px;
  z-index: 2;
  display: block;
  width: calc(100% - 52px);
  height: calc(100% - 52px);
  object-fit: contain;
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.24))
    saturate(1.06);
}

.glb-cursor::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(177, 118, 255, 0.2), transparent 66%);
  filter: blur(18px);
  opacity: 0.9;
}

.glb-cursor canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.26));
}

.glb-cursor.is-booting {
  opacity: 0.88;
}

.glb-cursor.is-fallback-only {
  opacity: 0.96;
}

.glb-cursor.is-fallback-only .glb-cursor-fallback {
  opacity: 1;
}

.glb-cursor.is-ready .glb-cursor-fallback {
  opacity: 0;
}

.glb-cursor.is-ready {
  opacity: 1;
}

.glb-cursor.is-interactive {
  filter: saturate(1.16) brightness(1.06);
}

.glb-cursor.is-interactive::before {
  background:
    radial-gradient(circle, rgba(100, 255, 176, 0.24), transparent 68%);
}

.swarm-trail,
.swarm-fly {
  position: absolute;
  pointer-events: none;
}

.swarm-trail {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(100, 255, 176, 0.6), rgba(255, 255, 255, 0));
  filter: blur(1px);
  opacity: 0.5;
}

.swarm-trail--a {
  top: 14%;
  left: -12%;
  width: 26vw;
  transform: rotate(13deg);
  animation: trail-sweep-a 14s linear infinite;
}

.swarm-trail--b {
  top: 52%;
  right: -18%;
  width: 30vw;
  transform: rotate(-18deg);
  animation: trail-sweep-b 18s linear infinite;
}

.swarm-trail--c {
  bottom: 12%;
  left: 8%;
  width: 18vw;
  transform: rotate(-8deg);
  animation: trail-sweep-c 16s linear infinite;
}

.swarm-fly {
  width: 22px;
  height: 16px;
  border-radius: 50% 46% 52% 48%;
  background:
    radial-gradient(circle at 35% 45%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #8a52d7, #5f2f9e 54%, #3c1d67);
  box-shadow:
    0 0 22px rgba(177, 118, 255, 0.26),
    0 6px 16px rgba(0, 0, 0, 0.18);
}

.swarm-fly::before,
.swarm-fly::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 11px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 65% 35% 65% 35%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(222, 233, 255, 0.22));
  opacity: 0.85;
  transform-origin: bottom center;
  animation: wing-beat 180ms linear infinite;
}

.swarm-fly::before {
  left: 2px;
  transform: rotate(-22deg);
}

.swarm-fly::after {
  right: 2px;
  transform: rotate(22deg);
}

.swarm-fly--a {
  top: 16%;
  left: 8%;
  animation: fly-path-a 16s ease-in-out infinite;
}

.swarm-fly--b {
  top: 32%;
  right: 14%;
  transform: scale(0.8);
  animation: fly-path-b 18s ease-in-out infinite;
}

.swarm-fly--c {
  top: 62%;
  left: 18%;
  transform: scale(0.72);
  animation: fly-path-c 17s ease-in-out infinite;
}

.swarm-fly--d {
  top: 74%;
  right: 20%;
  transform: scale(0.9);
  animation: fly-path-d 20s ease-in-out infinite;
}

.swarm-fly--e {
  top: 10%;
  right: 34%;
  transform: scale(0.66);
  animation: fly-path-e 13s ease-in-out infinite;
}

.topbar,
.ticker-wrap,
.hero,
.feature-grid,
.snapshot,
.gallery-section,
.final-cta {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.topbar,
.ticker-wrap,
.feature-grid,
.snapshot,
.gallery-section,
.final-cta {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.topbar.is-visible,
.ticker-wrap.is-visible,
.feature-grid.is-visible,
.snapshot.is-visible,
.gallery-section.is-visible,
.final-cta.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 16, 36, 0.86), rgba(10, 12, 20, 0.82)),
    linear-gradient(120deg, rgba(177, 118, 255, 0.06), transparent 34%, rgba(127, 216, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 215, 114, 0.14), rgba(177, 118, 255, 0.24), rgba(100, 255, 176, 0.12)),
    linear-gradient(180deg, rgba(33, 18, 55, 0.96), rgba(12, 12, 22, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 40px rgba(177, 118, 255, 0.14);
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: brand-pulse 4.6s ease-in-out infinite;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: rgba(220, 211, 239, 0.72);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.top-actions,
.cta-row,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-btn,
.cta {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  min-width: 0;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #f8f5ff;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.platform-btn::before,
.cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 32%, transparent 72%, rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 56%);
  pointer-events: none;
}

.platform-btn::after,
.cta::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -34%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-22deg);
  opacity: 0;
  pointer-events: none;
}

.platform-btn:hover,
.cta:hover {
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0) scale(1.012);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 40px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(177, 118, 255, 0.12);
}

.platform-btn:hover::after,
.cta:hover::after {
  animation: button-sheen 1s ease;
  opacity: 1;
}

.platform-btn span,
.cta-stack {
  position: relative;
  z-index: 1;
}

.platform-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.platform-btn:hover .platform-icon,
.cta:hover .platform-icon {
  transform: translateY(-1px) scale(1.08) rotate(-4deg);
}

.platform-btn--x {
  background:
    linear-gradient(180deg, rgba(24, 28, 42, 0.94), rgba(9, 13, 22, 0.9)),
    radial-gradient(circle at top, rgba(127, 216, 255, 0.14), transparent 54%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(0, 0, 0, 0.22);
}

.platform-btn--dex,
.cta-dex {
  background:
    linear-gradient(180deg, rgba(17, 34, 37, 0.96), rgba(8, 14, 18, 0.92)),
    radial-gradient(circle at top, rgba(100, 255, 176, 0.16), transparent 54%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(0, 0, 0, 0.22),
    0 0 32px rgba(100, 255, 176, 0.08);
}

.platform-btn--sea {
  background:
    linear-gradient(180deg, rgba(18, 34, 47, 0.96), rgba(7, 14, 24, 0.9)),
    radial-gradient(circle at top, rgba(127, 216, 255, 0.14), transparent 52%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(127, 216, 255, 0.08);
}

.platform-btn--play,
.cta-primary {
  color: #fff9ea;
  border-color: rgba(255, 215, 114, 0.34);
  background:
    linear-gradient(120deg, rgba(255, 215, 114, 0.16), rgba(177, 118, 255, 0.2), rgba(100, 255, 176, 0.12)),
    linear-gradient(180deg, rgba(91, 45, 156, 0.98), rgba(34, 16, 58, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 20px 38px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(177, 118, 255, 0.16);
  animation: cta-breathe 4.8s ease-in-out infinite;
}

.cta-secondary {
  background:
    linear-gradient(180deg, rgba(18, 34, 47, 0.96), rgba(8, 14, 22, 0.92)),
    radial-gradient(circle at top, rgba(127, 216, 255, 0.12), transparent 52%);
}

.cta-ghost {
  background:
    linear-gradient(180deg, rgba(24, 20, 36, 0.94), rgba(11, 12, 20, 0.92)),
    radial-gradient(circle at top, rgba(255, 117, 157, 0.12), transparent 54%);
}

.cta-stack {
  display: grid;
  gap: 3px;
}

.cta-title {
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-copy {
  color: rgba(234, 227, 247, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker-wrap {
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(20, 17, 32, 0.8), rgba(11, 12, 19, 0.82));
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 30px rgba(0, 0, 0, 0.18);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  min-width: 100%;
  padding: 12px 18px;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
  position: relative;
  padding-right: 32px;
  color: #ebe2ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), #fff8c7);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(100, 255, 176, 0.38);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: calc(100vh - 180px);
  min-height: calc(100dvh - 180px);
  margin-bottom: 42px;
}

.hero-copy,
.hero-art,
.feature-panel,
.snapshot-card,
.gallery-card,
.mini-stat {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.hero-copy.is-visible,
.hero-art.is-visible,
.feature-panel.is-visible,
.snapshot-card.is-visible,
.gallery-card.is-visible,
.mini-stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.eyebrow,
.feature-kicker,
.signal-label,
.claim-tag {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ecdcff;
}

.pulse-pill {
  padding: 8px 12px;
  border: 1px solid rgba(255, 215, 114, 0.24);
  border-radius: 999px;
  background: rgba(255, 215, 114, 0.1);
  color: #fff0c8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255, 215, 114, 0.12);
  animation: pill-pulse 2.8s ease-in-out infinite;
}

.claim-card,
.feature-panel,
.snapshot-card,
.gallery-card,
.hero-stage,
.final-cta,
.mini-stat {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(24, 16, 40, 0.78), rgba(8, 10, 18, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow);
  backdrop-filter: blur(18px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.claim-card:hover,
.feature-panel:hover,
.snapshot-card:hover,
.gallery-card:hover,
.hero-stage:hover,
.final-cta:hover,
.mini-stat:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(177, 118, 255, 0.08);
}

.claim-card {
  display: grid;
  gap: 10px;
  width: fit-content;
  max-width: min(100%, 420px);
  padding: 16px 18px;
  border-radius: 24px;
}

.claim-card p {
  margin: 0;
  color: #f6efff;
  font-size: 0.96rem;
  line-height: 1.55;
}

.claim-tag {
  color: var(--mint);
}

.hero h1,
.section-heading h2,
.wide-copy h2,
.final-copy h2 {
  margin: 0;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(3.7rem, 9.6vw, 8.4rem);
  color: #fff9ff;
  text-shadow:
    0 0 22px rgba(177, 118, 255, 0.26),
    0 0 48px rgba(255, 117, 157, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.34);
}

.headline-accent {
  display: block;
  color: #f2f8ff;
}

.cycle-word {
  color: var(--mint);
}

.lead {
  max-width: 38rem;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.08rem, 2.1vw, 1.34rem);
  line-height: 1.62;
}

.sublead,
.wide-copy p,
.feature-copy,
.section-heading p,
.final-copy p,
.signal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sublead {
  max-width: 34rem;
  font-size: 0.99rem;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
}

.mini-stat {
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
  border-radius: 22px;
}

.mini-stat span {
  color: rgba(215, 201, 238, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-stat strong {
  font-size: 1rem;
  color: #fff9ff;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-stage {
  position: relative;
  width: min(620px, 100%);
  min-height: 640px;
  padding: 20px;
  border-radius: 38px;
  overflow: hidden;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 82%);
  opacity: 0.35;
}

.hero-stage::after {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 117, 157, 0.12), transparent 22%),
    radial-gradient(circle at 22% 80%, rgba(100, 255, 176, 0.1), transparent 24%),
    linear-gradient(135deg, transparent 28%, rgba(255, 255, 255, 0.04) 44%, transparent 62%);
  animation: hero-sheen 8s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-orbit-a {
  inset: 8% 12%;
  animation: rotate-ring 16s linear infinite;
}

.hero-orbit-b {
  inset: 16% 22%;
  border-style: dashed;
  opacity: 0.5;
  animation: rotate-ring-reverse 20s linear infinite;
}

.hero-image {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.3);
}

.hero-image-main {
  inset: 28px 28px 108px 28px;
  width: calc(100% - 56px);
  height: calc(100% - 136px);
  border-radius: 28px;
}

.hero-image-float {
  right: 18px;
  bottom: 20px;
  width: clamp(160px, 26vw, 210px);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  transform: rotate(-6deg);
  animation: float-card 6s ease-in-out infinite;
}

.signal-card {
  position: absolute;
  left: 20px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(300px, calc(100% - 270px));
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(22, 16, 36, 0.86), rgba(9, 10, 18, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 36px rgba(0, 0, 0, 0.22);
}

.signal-label,
.feature-kicker {
  color: var(--mint);
}

.signal-card strong {
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  margin-bottom: 28px;
}

.feature-panel {
  padding: 22px;
  border-radius: 30px;
}

.feature-panel--quote blockquote {
  margin: 0 0 14px;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-panel--wide {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: 18px;
}

.wide-copy {
  display: grid;
  gap: 12px;
}

.wide-image {
  display: block;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.snapshot,
.gallery-section {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.live-pair-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(20, 16, 36, 0.82), rgba(9, 10, 18, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 72px rgba(0, 0, 0, 0.26);
}

.live-pair-copy {
  display: grid;
  gap: 10px;
}

.live-pair-copy h3 {
  margin: 0;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-pair-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.live-pair-copy code {
  display: inline-block;
  margin-top: 2px;
  color: #fff4c6;
  font-size: 0.86rem;
  word-break: break-all;
}

.pair-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pair-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ece5ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-pair-action {
  min-width: 186px;
}

.section-heading {
  display: grid;
  gap: 10px;
}

.live-note {
  min-height: 1.65em;
}

.live-note.is-warning {
  color: var(--gold);
}

.section-heading h2,
.final-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.snapshot-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
}

.snapshot-card span {
  color: rgba(215, 201, 238, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.snapshot-card strong {
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.15rem);
  letter-spacing: 0.03em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.gallery-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card--tall {
  grid-row: span 2;
  min-height: 720px;
}

.gallery-card--wide {
  grid-column: span 2;
  min-height: 280px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-radius: 34px;
  margin-bottom: 24px;
}

.final-copy {
  display: grid;
  gap: 12px;
}

.final-actions {
  justify-content: flex-end;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 1180px) {
  .feature-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .feature-panel--wide {
    grid-template-columns: 1fr;
  }

  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-pair-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .top-actions {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }

  .hero-art {
    order: -1;
  }

  .hero-stage {
    min-height: 560px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card--tall,
  .gallery-card--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding:
      max(env(safe-area-inset-top), 14px)
      max(env(safe-area-inset-right), 14px)
      max(env(safe-area-inset-bottom), 18px)
      max(env(safe-area-inset-left), 14px);
  }

  .brand {
    justify-content: center;
  }

  .glb-cursor {
    display: none;
  }

  .topbar {
    padding: 14px;
    border-radius: 22px;
  }

  .top-actions,
  .cta-row,
  .final-actions,
  .hero-mini-grid,
  .snapshot-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .top-actions,
  .cta-row,
  .final-actions {
    display: grid;
  }

  .platform-btn,
  .cta {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

  .hero-stage {
    min-height: 500px;
    padding: 14px;
    border-radius: 28px;
  }

  .hero-image-main {
    inset: 16px 16px 136px 16px;
    width: calc(100% - 32px);
    height: calc(100% - 152px);
    border-radius: 22px;
  }

  .hero-image-float {
    width: 118px;
    right: 14px;
    bottom: 14px;
  }

  .signal-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .hero-mini-grid,
  .snapshot-grid {
    display: grid;
  }

  .feature-panel,
  .final-cta {
    padding: 18px;
    border-radius: 24px;
  }

  .feature-panel--quote blockquote {
    font-size: clamp(1.7rem, 10vw, 2.9rem);
  }

  .section-heading h2,
  .final-copy h2 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .platform-btn,
  .cta {
    min-height: 54px;
    padding: 14px 16px;
  }

  .cta-title {
    font-size: 0.82rem;
  }

  .hero-stage {
    min-height: 460px;
  }

  .gallery-card--tall,
  .gallery-card--wide,
  .gallery-card {
    min-height: 240px;
  }
}

@keyframes sky-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2.2%, -1.6%, 0) scale(1.04);
  }
}

@keyframes brand-pulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 18px 34px rgba(0, 0, 0, 0.24),
      0 0 40px rgba(177, 118, 255, 0.14);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 22px 40px rgba(0, 0, 0, 0.28),
      0 0 54px rgba(177, 118, 255, 0.22),
      0 0 74px rgba(255, 117, 157, 0.08);
  }
}

@keyframes pill-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 24px rgba(255, 215, 114, 0.12);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 34px rgba(255, 215, 114, 0.2),
      0 0 52px rgba(255, 117, 157, 0.08);
  }
}

@keyframes float-a {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(20px, 18px, 0);
  }
}

@keyframes float-b {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-26px, 18px, 0);
  }
}

@keyframes float-c {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(30px, -18px, 0);
  }
}

@keyframes float-d {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-16px, -12px, 0);
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes cta-breathe {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 20px 38px rgba(0, 0, 0, 0.28),
      0 0 34px rgba(177, 118, 255, 0.16);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 24px 44px rgba(0, 0, 0, 0.3),
      0 0 48px rgba(177, 118, 255, 0.22),
      0 0 62px rgba(255, 215, 114, 0.12);
  }
}

@keyframes button-sheen {
  0% {
    transform: translateX(-120%) skewX(-22deg);
  }
  100% {
    transform: translateX(520%) skewX(-22deg);
  }
}

@keyframes float-card {
  0%, 100% {
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-8px);
  }
}

@keyframes hero-sheen {
  0%, 100% {
    transform: translateX(-6%) translateY(0);
    opacity: 0.56;
  }
  50% {
    transform: translateX(6%) translateY(-1%);
    opacity: 0.86;
  }
}

@keyframes rotate-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-ring-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wing-beat {
  0%, 100% {
    transform: rotate(-22deg) scaleY(1);
  }
  50% {
    transform: rotate(-6deg) scaleY(0.78);
  }
}

.swarm-fly::after {
  animation-name: wing-beat-right;
}

@keyframes wing-beat-right {
  0%, 100% {
    transform: rotate(22deg) scaleY(1);
  }
  50% {
    transform: rotate(6deg) scaleY(0.78);
  }
}

@keyframes fly-path-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  25% { transform: translate3d(90px, -32px, 0) scale(1.06) rotate(6deg); }
  50% { transform: translate3d(180px, 18px, 0) scale(0.96) rotate(-4deg); }
  75% { transform: translate3d(60px, 42px, 0) scale(1.02) rotate(3deg); }
}

@keyframes fly-path-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.8) rotate(0deg); }
  30% { transform: translate3d(-110px, 34px, 0) scale(0.9) rotate(-8deg); }
  60% { transform: translate3d(-170px, -20px, 0) scale(0.76) rotate(4deg); }
}

@keyframes fly-path-c {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.72) rotate(0deg); }
  25% { transform: translate3d(70px, -40px, 0) scale(0.78) rotate(7deg); }
  50% { transform: translate3d(140px, -10px, 0) scale(0.68) rotate(-4deg); }
  75% { transform: translate3d(42px, 26px, 0) scale(0.74) rotate(3deg); }
}

@keyframes fly-path-d {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.9) rotate(0deg); }
  40% { transform: translate3d(-80px, -48px, 0) scale(0.98) rotate(-7deg); }
  80% { transform: translate3d(-150px, -10px, 0) scale(0.82) rotate(4deg); }
}

@keyframes fly-path-e {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.66) rotate(0deg); }
  35% { transform: translate3d(58px, 24px, 0) scale(0.74) rotate(5deg); }
  70% { transform: translate3d(116px, -22px, 0) scale(0.64) rotate(-4deg); }
}

@keyframes trail-sweep-a {
  0% { transform: translateX(0) rotate(13deg); opacity: 0; }
  20% { opacity: 0.5; }
  80% { opacity: 0.16; }
  100% { transform: translateX(70vw) rotate(13deg); opacity: 0; }
}

@keyframes trail-sweep-b {
  0% { transform: translateX(0) rotate(-18deg); opacity: 0; }
  18% { opacity: 0.45; }
  80% { opacity: 0.12; }
  100% { transform: translateX(-68vw) rotate(-18deg); opacity: 0; }
}

@keyframes trail-sweep-c {
  0% { transform: translateX(0) rotate(-8deg); opacity: 0; }
  22% { opacity: 0.42; }
  80% { opacity: 0.1; }
  100% { transform: translateX(54vw) rotate(-8deg); opacity: 0; }
}
