:root {
  --void: #050022;
  --space: #090047;
  --indigo: #13006f;
  --violet: #6f19ff;
  --magenta: #ff2ff8;
  --pink: #ff7cf7;
  --white: #fff7ff;
  --cyan: #7df7ff;
  --muted: rgba(255, 247, 255, 0.68);
  --line: rgba(255, 247, 255, 0.16);
  --glass: rgba(255, 247, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 47, 248, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(125, 247, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, var(--void) 0%, var(--space) 45%, #050018 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 247, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black 0, transparent 74%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -15vw 0;
  z-index: -1;
  height: 36vh;
  background: radial-gradient(ellipse at center, rgba(255, 47, 248, 0.35), transparent 70%);
  filter: blur(38px);
  pointer-events: none;
}

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

button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 0, 34, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-orbit {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--void);
  border: 1px solid rgba(255, 247, 255, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 24%, transparent 25%),
    conic-gradient(from 220deg, transparent 0 36%, var(--magenta) 38% 72%, var(--white) 72% 88%, transparent 88% 100%);
  box-shadow: 0 0 28px rgba(255, 47, 248, 0.55);
  font-weight: 950;
}

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

.brand-name {
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-ticker {
  color: rgba(255, 247, 255, 0.6);
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link,
.mini-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 247, 255, 0.86);
  background: rgba(255, 247, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.mini-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 47, 248, 0.72);
  box-shadow: 0 0 28px rgba(255, 47, 248, 0.25);
}

.hero {
  padding: 28px 0 76px;
}

.neon-stage {
  --mx: 0px;
  --my: 0px;
  position: relative;
  min-height: clamp(620px, 82vh, 850px);
  overflow: hidden;
  display: grid;
  align-items: end;
  border: 1px solid rgba(255, 247, 255, 0.18);
  border-radius: 34px;
  background: #080031;
  box-shadow: var(--shadow), inset 0 0 90px rgba(255, 47, 248, 0.12);
}

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

.neon-stage::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 0, 34, 0.94) 0%, rgba(5, 0, 34, 0.46) 45%, rgba(5, 0, 34, 0.12) 80%),
    linear-gradient(0deg, rgba(5, 0, 34, 0.96) 0%, transparent 44%);
}

.neon-stage::after {
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 47, 248, 0.28), inset 0 0 70px rgba(125, 247, 255, 0.08);
}

.banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(var(--mx), var(--my)) scale(1.03);
  transition: transform 140ms ease-out;
  filter: saturate(1.1) contrast(1.03);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(740px, 100%);
  padding: clamp(28px, 5.4vw, 72px);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 47, 248, 0.45);
  border-radius: 999px;
  background: rgba(255, 47, 248, 0.14);
  box-shadow: 0 0 24px rgba(255, 47, 248, 0.25);
  font-family: "Courier New", monospace;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 8ch;
  color: var(--white);
  font-size: clamp(4rem, 12vw, 10.8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 0 36px rgba(255, 47, 248, 0.72);
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 247, 255, 0.76);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.ghost-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  color: var(--void);
  border: 0;
  background: linear-gradient(135deg, var(--white), var(--magenta) 72%);
  box-shadow: 0 0 40px rgba(255, 47, 248, 0.45);
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 247, 255, 0.22);
  background: rgba(255, 247, 255, 0.08);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.orbit-card {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(20px, 5vw, 64px);
  z-index: 3;
  width: min(330px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(255, 247, 255, 0.18);
  border-radius: 24px;
  background: rgba(5, 0, 34, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 44px rgba(255, 47, 248, 0.22);
}

.orbit-card p {
  margin: 0;
  color: rgba(255, 247, 255, 0.56);
  font-family: "Courier New", monospace;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-card strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1.05;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.signal-item {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(255, 247, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 247, 255, 0.075);
  box-shadow: inset 0 0 34px rgba(255, 47, 248, 0.07);
}

.signal-item span:first-child {
  color: var(--white);
  font-size: clamp(1.28rem, 2.5vw, 2.15rem);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 47, 248, 0.6);
}

.signal-item span:last-child {
  color: rgba(255, 247, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  padding: 76px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 247, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 247, 255, 0.08);
  box-shadow: var(--shadow), 0 0 46px rgba(255, 47, 248, 0.2);
}

.portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
}

.portrait-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 247, 255, 0.24);
  border-radius: 999px;
  color: var(--void);
  background: var(--white);
  font-family: "Courier New", monospace;
  font-weight: 950;
  box-shadow: 0 0 26px rgba(255, 247, 255, 0.4);
}

.kicker {
  margin: 0 0 10px;
  color: var(--pink);
  font-family: "Courier New", monospace;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 6.4vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 0 30px rgba(255, 47, 248, 0.4);
}

.section-copy {
  margin: 22px 0 0;
  color: rgba(255, 247, 255, 0.7);
  font-size: 1.04rem;
}

.phase-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.phase-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 247, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 47, 248, 0.16), transparent 44%),
    rgba(255, 247, 255, 0.075);
  box-shadow: inset 0 0 38px rgba(255, 47, 248, 0.06);
}

.phase-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(125, 247, 255, 0.13), transparent 44%),
    rgba(255, 247, 255, 0.075);
}

.phase-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(255, 247, 255, 0.14), transparent 44%),
    rgba(255, 247, 255, 0.075);
}

.phase-card b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--void);
  background: var(--white);
  box-shadow: 0 0 24px rgba(255, 247, 255, 0.25);
}

.phase-card h3 {
  margin: 34px 0 10px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.05;
}

.phase-card p {
  margin: 0;
  color: rgba(255, 247, 255, 0.66);
}

.token-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 26px;
  align-items: end;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(255, 247, 255, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 47, 248, 0.28), transparent 20rem),
    radial-gradient(circle at 86% 18%, rgba(125, 247, 255, 0.12), transparent 20rem),
    rgba(255, 247, 255, 0.075);
  box-shadow: var(--shadow), inset 0 0 80px rgba(255, 47, 248, 0.08);
}

.token-panel::before {
  content: "67";
  position: absolute;
  right: -0.05em;
  top: -0.25em;
  color: rgba(255, 247, 255, 0.055);
  font-size: clamp(7rem, 20vw, 18rem);
  font-weight: 950;
  line-height: 1;
}

.token-panel > * {
  position: relative;
}

.token-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.85;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(255, 47, 248, 0.5);
}

.token-panel p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 247, 255, 0.7);
  font-size: 1.04rem;
}

.facts {
  padding: 22px;
  border: 1px solid rgba(255, 247, 255, 0.16);
  border-radius: 22px;
  background: rgba(5, 0, 34, 0.5);
}

.facts dl {
  margin: 0;
}

.facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 247, 255, 0.12);
}

.facts div:last-child {
  border-bottom: 0;
}

.facts dt {
  color: rgba(255, 247, 255, 0.52);
}

.facts dd {
  margin: 0;
  color: var(--white);
  text-align: right;
  font-weight: 950;
}

.footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: rgba(255, 247, 255, 0.5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 940px) {
  .neon-stage {
    min-height: 730px;
    align-items: start;
  }

  .neon-stage::before {
    background:
      linear-gradient(0deg, rgba(5, 0, 34, 0.98) 0%, rgba(5, 0, 34, 0.72) 54%, rgba(5, 0, 34, 0.18) 100%);
  }

  .hero-content {
    padding-bottom: 220px;
  }

  .orbit-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
  }

  .signal-row,
  .split,
  .phase-cards,
  .token-panel {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 16px;
  }

  .neon-stage,
  .portrait-card,
  .token-panel {
    border-radius: 22px;
  }

  .hero-content {
    padding: 22px;
    padding-bottom: 245px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5.3rem);
  }

  .nav-link,
  .mini-button {
    min-height: 38px;
    padding: 0 12px;
  }
}
