:root {
  --void: #05060f;
  --void-2: #0b0d1c;
  --glass: rgba(10, 12, 28, 0.62);
  --line: rgba(180, 210, 255, 0.16);
  --ice: #9ad8ff;
  --ice-deep: #4db8ff;
  --plasma: #e8a8ff;
  --azure: #5eb0ff;
  --violet: #a78bfa;
  --rose: #f9a8d4;
  --gold: #e8c9a0;
  --chrome-hi: #f5f7ff;
  --chrome-mid: #b7c4da;
  --text: #e8edf7;
  --muted: #9aa6be;
  --shadow: 0 30px 80px rgba(2, 4, 16, 0.55);
  --font-display: "Orbitron", sans-serif;
  --font-body: "Figtree", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background: var(--void);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.void {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(232, 201, 160, 0.14), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(167, 139, 250, 0.12), transparent 50%),
    radial-gradient(800px 520px at 10% 70%, rgba(77, 184, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #070814 0%, #05060f 42%, #080614 100%);
}

.spiral {
  position: absolute;
  width: 1400px;
  height: 1400px;
  left: 50%;
  top: -18%;
  transform: translateX(-50%);
  background:
    repeating-conic-gradient(from 0deg, transparent 0 14deg, rgba(232, 201, 160, 0.035) 14deg 16deg),
    radial-gradient(circle at 50% 50%, rgba(232, 201, 160, 0.16), transparent 42%);
  mask-image: radial-gradient(circle, black 20%, transparent 68%);
  animation: spin-slow 140s linear infinite;
  opacity: 0.7;
}

.nebula {
  position: absolute;
  filter: blur(70px);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.nebula-core {
  width: 520px;
  height: 360px;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 201, 160, 0.28), transparent 70%);
  animation: breathe 10s ease-in-out infinite;
}

.nebula-ice {
  width: 420px;
  height: 420px;
  right: -80px;
  top: 28%;
  background: radial-gradient(circle, rgba(154, 216, 255, 0.2), transparent 70%);
  animation: drift 18s ease-in-out infinite;
}

.nebula-rose {
  width: 380px;
  height: 380px;
  left: -90px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(249, 168, 212, 0.16), transparent 70%);
  animation: drift 22s ease-in-out infinite reverse;
}

.dust {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.6px, transparent 0.7px);
  background-size: 140px 140px;
  opacity: 0.18;
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nav,
main,
.foot {
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 7vw;
  background: rgba(5, 6, 15, 0.42);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.nav.scrolled {
  background: rgba(5, 6, 15, 0.78);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(154, 216, 255, 0.35);
  box-shadow: 0 0 24px rgba(154, 216, 255, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tick {
  color: var(--ice);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(154, 216, 255, 0.18), rgba(232, 168, 255, 0.12));
  border: 1px solid rgba(154, 216, 255, 0.35);
  color: var(--text) !important;
}

.nav-buy img {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 48px 7vw 72px;
}

.hero-stage {
  position: relative;
  height: min(620px, 78vw);
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(154, 216, 255, 0.22);
  box-shadow: 0 0 24px rgba(154, 216, 255, 0.08), inset 0 0 24px rgba(232, 168, 255, 0.05);
}

.orbit-a {
  width: 78%;
  height: 78%;
  animation: spin-slow 28s linear infinite;
}

.orbit-b {
  width: 94%;
  height: 62%;
  border-color: rgba(232, 168, 255, 0.22);
  animation: spin-slow 40s linear infinite reverse;
}

.orbit-c {
  width: 64%;
  height: 92%;
  border-color: rgba(232, 201, 160, 0.18);
  animation: spin-slow 52s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 16px var(--ice);
  top: 8%;
  left: 50%;
}

.orbit-b::after {
  background: var(--plasma);
  box-shadow: 0 0 16px var(--plasma);
  top: 50%;
  left: 4%;
}

.orbit-c::after {
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}

.moon {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  z-index: 2;
}

.moon-blue {
  background: radial-gradient(circle at 30% 30%, #d8efff, var(--azure));
  box-shadow: 0 0 18px var(--azure);
  animation: orbit-path 16s linear infinite;
}

.moon-violet {
  background: radial-gradient(circle at 30% 30%, #efe7ff, var(--violet));
  box-shadow: 0 0 18px var(--violet);
  animation: orbit-path 22s linear infinite reverse;
}

.moon-rose {
  background: radial-gradient(circle at 30% 30%, #ffe6f2, var(--rose));
  box-shadow: 0 0 18px var(--rose);
  animation: orbit-path 19s linear infinite;
  animation-delay: -6s;
}

.hero-glass {
  width: min(420px, 72%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(245, 247, 255, 0.18);
  box-shadow:
    var(--shadow),
    0 0 80px rgba(154, 216, 255, 0.16),
    inset 0 0 40px rgba(5, 6, 15, 0.25);
  animation: float 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.hero-glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy h1 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.chrome {
  background: linear-gradient(180deg, #ffffff 0%, #d7e4f7 36%, #8fb4d8 58%, #f4f7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(154, 216, 255, 0.28));
  animation: chrome-shift 8s ease-in-out infinite;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 28, 0.5);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 12px var(--ice);
  animation: pulse 1.8s ease-in-out infinite;
}

.signal-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}

.ticker {
  margin: 0 0 8px;
  color: var(--ice);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.28em;
}

.manifesto {
  margin: 0 0 16px;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  color: #f2e6ff;
}

.lead {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin-bottom: 22px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8, 10, 24, 0.7);
  border: 1px solid var(--line);
}

.ca-label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ca-bar code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  font-size: 13px;
}

.ca-copy {
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  background: rgba(154, 216, 255, 0.14);
  color: var(--ice);
  cursor: pointer;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ice {
  background: linear-gradient(135deg, rgba(154, 216, 255, 0.22), rgba(232, 168, 255, 0.12));
  border-color: rgba(154, 216, 255, 0.45);
  box-shadow: 0 10px 30px rgba(77, 184, 255, 0.12);
}

.btn-ghost {
  background: rgba(8, 10, 24, 0.5);
}

.ticker-tape {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(8, 10, 24, 0.45);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 14px 0;
  animation: marquee 32s linear infinite;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.section {
  padding: 96px 7vw;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.kicker {
  margin: 0 0 10px;
  color: var(--ice);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-head h2,
.section-lead {
  margin: 0;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}

.section-lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.star-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 16, 34, 0.82), rgba(8, 10, 22, 0.72));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.star-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), var(--plasma), transparent);
  animation: scan 4.5s linear infinite;
}

.star-orb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 18px;
}

.star-orb.azure {
  background: radial-gradient(circle at 30% 30%, #dff2ff, var(--azure));
  box-shadow: 0 0 24px rgba(94, 176, 255, 0.45);
}

.star-orb.violet {
  background: radial-gradient(circle at 30% 30%, #efe8ff, var(--violet));
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.45);
}

.star-orb.rose {
  background: radial-gradient(circle at 30% 30%, #ffe8f3, var(--rose));
  box-shadow: 0 0 24px rgba(249, 168, 212, 0.45);
}

.star-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
}

.star-card p,
.lore p,
.burn p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.lore {
  margin: 36px auto 0;
  max-width: 820px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 28, 0.55);
  text-align: center;
}

.burns {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0 0 36px;
}

.burn {
  position: relative;
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(8, 10, 22, 0.7);
  border: 1px solid var(--line);
}

.burn-index {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.14em;
}

.burn-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.burn-icon img {
  width: 100%;
  height: 100%;
}

.burn h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.route-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route,
.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(8, 10, 24, 0.62);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.route:hover,
.channel:hover,
.btn-ice:hover {
  border-color: rgba(154, 216, 255, 0.5);
  box-shadow: 0 12px 30px rgba(77, 184, 255, 0.12);
}

.route img,
.channel img {
  width: 28px;
  height: 28px;
}

.route strong,
.channel-name {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
}

.route em,
.channel-meta {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.scope {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(8, 10, 22, 0.72);
  box-shadow: var(--shadow);
}

.scope-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.scope-bar img {
  width: 18px;
  height: 18px;
}

.scope-bar a {
  margin-left: auto;
  color: var(--ice);
  font-weight: 700;
}

.scope-frame {
  height: min(640px, 78vh);
  background: #0a0c14;
}

.scope-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-placeholder {
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--muted);
  padding: 40px;
}

.banner-lock {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto 36px;
  aspect-ratio: 3 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(154, 216, 255, 0.28);
  box-shadow: 0 0 60px rgba(154, 216, 255, 0.12), var(--shadow);
}

.banner-lock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: sheen 6.5s ease-in-out infinite;
}

.channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.channel {
  flex-direction: column;
  align-items: flex-start;
  min-height: 150px;
}

.foot {
  padding: 48px 7vw 64px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.foot-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(154, 216, 255, 0.3);
}

.foot-name {
  margin: 0;
  font-family: var(--font-display);
}

.foot-tick,
.foot-line,
.foot-note {
  margin: 8px 0 0;
  color: var(--muted);
}

.foot-line {
  color: #f2e6ff;
}

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

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

.orbit,
.orbit-b,
.orbit-c {
  transform: none;
}

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

.spiral {
  animation-name: spiral-spin;
}

@keyframes spiral-spin {
  to { transform: translateX(-50%) rotate(360deg); }
}

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

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}

@keyframes chrome-shift {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(154, 216, 255, 0.28)); }
  50% { filter: drop-shadow(0 0 26px rgba(232, 168, 255, 0.32)); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes sheen {
  0%, 20% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes orbit-path {
  0% { transform: rotate(0deg) translateX(210px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(210px) rotate(-360deg); }
}

@media (max-width: 1080px) {
  .hero,
  .trio,
  .burns,
  .route-row,
  .channels {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy,
  .lead,
  .ca-bar {
    margin-left: auto;
    margin-right: auto;
  }

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

  .burns,
  .channels {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 7vw 22px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 6, 15, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .trio,
  .burns,
  .route-row,
  .channels {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    height: 420px;
  }

  @keyframes orbit-path {
    0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
  }
}
