@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #05070c;
  --bg-soft: #080d14;
  --card: rgba(12, 18, 25, 0.62);
  --card-strong: rgba(13, 20, 28, 0.86);
  --text: #effff4;
  --muted: #8f9ba6;
  --line: rgba(211, 255, 190, 0.12);
  --primary: #c5fb04;
  --primary-rgb: 197, 251, 4;
  --secondary: #16d7ff;
  --accent: #a575ff;
  --dark: #040608;
  --font-orbitron: "Orbitron", sans-serif;
  --font-rajdhani: "Rajdhani", sans-serif;
  --font-space: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), 0.09), transparent 34rem),
    radial-gradient(circle at 12% 32%, rgba(22, 215, 255, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-space);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--primary-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: 0;
}

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

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

button {
  color: inherit;
  font: inherit;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  background: var(--bg);
  overflow: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
}

.sweep {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.72), transparent);
  animation: sweep 2.5s linear infinite;
}

.grid-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
}

.preloader-orb {
  position: relative;
  width: 112px;
  height: 112px;
  border: 2px solid rgba(var(--primary-rgb), 0.45);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(var(--primary-rgb), 0.28), 0 0 60px rgba(var(--primary-rgb), 0.12);
}

.preloader-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.ring {
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(var(--primary-rgb), 0.22);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

.ring-b {
  inset: -55px;
  border-color: rgba(22, 215, 255, 0.12);
  animation-duration: 14s;
  animation-direction: reverse;
}

.pre-title {
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 800;
  text-align: center;
}

.preloader p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.progress-track {
  width: min(80vw, 320px);
  height: 5px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(var(--primary-rgb), 0.7);
}

.progress-number {
  color: rgba(var(--primary-rgb), 0.75);
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
  background: rgba(5, 7, 12, 0.82);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.12);
  box-shadow: 0 8px 34px rgba(var(--primary-rgb), 0.05);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-orbitron);
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb), 0.35);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(var(--primary-rgb), 0.22);
}

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

.brand small {
  display: block;
  margin-left: 2px;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: 0.72rem;
  font-weight: 500;
}

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

.nav-links a {
  padding: 10px 15px;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: 0.94rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.nav-links .buy-link {
  margin-left: 12px;
  border: 1px solid rgba(var(--primary-rgb), 0.32);
  border-radius: 10px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 0.74rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.2s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 118px 16px 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    radial-gradient(circle at 50% 38%, rgba(var(--primary-rgb), 0.18), transparent 19rem),
    radial-gradient(circle at 30% 48%, rgba(22, 215, 255, 0.12), transparent 24rem),
    linear-gradient(120deg, transparent 0 42%, rgba(var(--primary-rgb), 0.05) 42% 43%, transparent 43% 100%),
    linear-gradient(240deg, transparent 0 47%, rgba(165, 117, 255, 0.05) 47% 48%, transparent 48% 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 7, 12, 0.62), rgba(5, 7, 12, 0.86), var(--bg)),
    linear-gradient(90deg, rgba(5, 7, 12, 0.42), transparent, rgba(5, 7, 12, 0.42));
}

.hero-halo,
.section-halo {
  position: absolute;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.hero-halo.primary {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(var(--primary-rgb), 0.08);
}

.hero-halo.accent {
  top: 44%;
  left: 20%;
  background: rgba(165, 117, 255, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  text-align: center;
}

.logo-orbit {
  position: relative;
  width: clamp(128px, 18vw, 176px);
  height: clamp(128px, 18vw, 176px);
  margin: 0 auto 32px;
}

.logo-disc {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(var(--primary-rgb), 0.45);
  border-radius: 50%;
}

.logo-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.23);
  inset: -20px;
  animation: spin 15s linear infinite;
}

.orbit-two {
  inset: -40px;
  border-color: rgba(22, 215, 255, 0.15);
  animation-duration: 25s;
  animation-direction: reverse;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  margin-bottom: 25px;
  border: 1px solid rgba(var(--primary-rgb), 0.22);
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.signal-pill span,
.status-box span,
.contract-box span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-orbitron);
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.06;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(var(--primary-rgb), 0.32);
}

h1 span:last-child,
h2 em {
  color: var(--primary);
  font-style: normal;
}

.hero-copy {
  width: min(100%, 700px);
  margin: 0 auto 38px;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.mini-actions,
.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.outline-btn,
.copy-btn,
.mini-actions a,
.ready-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-orbitron);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #071004;
  box-shadow: 0 0 26px rgba(var(--primary-rgb), 0.26);
}

.primary-btn:hover,
.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(var(--primary-rgb), 0.36);
}

.outline-btn {
  border: 1px solid rgba(var(--primary-rgb), 0.34);
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
}

.btn-icon {
  font-size: 0.66rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  width: min(100%, 540px);
  margin: 64px auto 0;
}

.hero-stats div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(13, 20, 28, 0.62);
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.supply-box strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 1.1rem;
}

.hero-stats span,
.supply-box span,
.supply-box small {
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.scanlines::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(var(--primary-rgb), 0.018) 2px, rgba(var(--primary-rgb), 0.018) 4px);
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 128px) 16px;
  overflow: hidden;
}

.wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 1152px);
  margin: 0 auto;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading > span,
.eyebrow {
  display: block;
  margin-bottom: 15px;
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.08;
  font-weight: 800;
}

.section-heading i {
  display: block;
  width: 96px;
  height: 2px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-heading p {
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: 1.12rem;
  line-height: 1.6;
}

.section-halo.left {
  top: 28%;
  left: -18rem;
  background: rgba(165, 117, 255, 0.06);
}

.section-halo.right {
  top: 8%;
  right: -14rem;
  background: rgba(22, 215, 255, 0.06);
}

.cinema-panel {
  position: relative;
  height: clamp(220px, 31vw, 288px);
  margin-bottom: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: var(--card-strong);
}

.cinema-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(var(--primary-rgb), 0.22), transparent 14rem),
    radial-gradient(circle at 28% 65%, rgba(22, 215, 255, 0.15), transparent 16rem),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(var(--primary-rgb), 0.045) 70px 71px),
    linear-gradient(to top, rgba(5, 7, 12, 1), rgba(5, 7, 12, 0.56), rgba(5, 7, 12, 0.18));
}

.cinema-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 40px);
}

.cinema-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(239, 255, 244, 0.92);
  font-family: var(--font-rajdhani);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-style: italic;
  line-height: 1.48;
}

.cinema-copy strong {
  color: var(--primary);
}

.lore-grid,
.feature-grid,
.token-panels,
.social-grid {
  display: grid;
  gap: 24px;
}

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

.feature-grid,
.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.info-card,
.data-panel,
.feature-grid article,
.social-card,
.ready-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: var(--card);
  backdrop-filter: blur(14px);
}

.info-card {
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.info-card:hover,
.feature-grid article:hover,
.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--primary-rgb), 0.34);
  background: rgba(17, 28, 25, 0.7);
}

.info-card b {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(var(--primary-rgb), 0.28);
  font-family: var(--font-orbitron);
  font-size: 0.78rem;
}

.card-icon,
.feature-grid span,
.social-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
  font-weight: 800;
}

.info-card h3,
.feature-grid h3,
.data-panel h3,
.timeline-item h3,
.social-card h3,
.ready-panel h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.info-card p,
.feature-grid p,
.about-copy p,
.social-card p,
.ready-panel p,
.timeline-item li {
  color: var(--muted);
  font-family: var(--font-rajdhani);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 7vw, 72px);
  align-items: center;
}

.fragment-frame {
  position: relative;
  display: grid;
  place-items: center;
}

.fragment-image {
  width: min(80vw, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--primary-rgb), 0.22), transparent 35%),
    repeating-linear-gradient(0deg, rgba(var(--primary-rgb), 0.04) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(var(--primary-rgb), 0.04) 0 1px, transparent 1px 18px),
    rgba(5, 7, 12, 0.86);
}

.fragment-signal {
  position: relative;
  display: grid;
  place-items: center;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--primary-rgb), 0.28);
  border-radius: 50%;
}

.fragment-signal span {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(var(--primary-rgb), 0.45);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.fragment-signal b {
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: clamp(2rem, 9vw, 4rem);
}

.fragment-signal small {
  position: absolute;
  bottom: 22%;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.corner {
  position: absolute;
  width: 36px;
  height: 36px;
}

.corner.tl {
  top: -12px;
  left: calc(50% - 180px);
  border-top: 2px solid rgba(var(--primary-rgb), 0.62);
  border-left: 2px solid rgba(var(--primary-rgb), 0.62);
  border-radius: 9px 0 0;
}

.corner.br {
  right: calc(50% - 180px);
  bottom: -12px;
  border-right: 2px solid rgba(var(--primary-rgb), 0.62);
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.62);
  border-radius: 0 0 9px;
}

.fragment-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100vw - 32px);
  padding: 8px 16px;
  border: 1px solid rgba(var(--primary-rgb), 0.34);
  border-radius: 999px;
  background: var(--card-strong);
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 0.68rem;
  white-space: nowrap;
}

.about-copy p {
  margin: 0 0 30px;
  font-size: 1.16rem;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  min-height: 160px;
  padding: 18px;
}

.feature-grid span {
  min-width: 36px;
  min-height: 36px;
  margin-bottom: 12px;
}

.feature-grid h3 {
  font-size: 0.88rem;
}

.feature-grid p {
  margin: 0;
  font-size: 0.88rem;
}

.data-panel {
  padding: clamp(24px, 4vw, 32px);
}

.data-panel h3 {
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

dl div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font-family: var(--font-rajdhani);
}

dd {
  margin: 0;
  font-family: var(--font-orbitron);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: right;
}

.status-box,
.contract-box,
.supply-box {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.status-box p,
.contract-box p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
}

.status-box > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.status-box b {
  display: block;
  padding: 9px;
  border-radius: 8px;
  background: rgba(5, 7, 12, 0.5);
  color: var(--secondary);
  font-family: var(--font-orbitron);
  font-size: 0.82rem;
}

.status-box b:last-child {
  color: var(--primary);
}

.status-box small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: 0.64rem;
}

.contract-box {
  overflow: hidden;
}

.contract-box code,
.footer-contract code {
  display: block;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.copy-btn {
  width: 100%;
  margin-top: 18px;
  border: 1px solid rgba(var(--primary-rgb), 0.34);
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.copy-btn.is-copied {
  background: rgba(var(--primary-rgb), 0.2);
}

.mini-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mini-actions a {
  min-height: 46px;
  padding: 12px;
  border: 1px solid rgba(22, 215, 255, 0.28);
  color: var(--secondary);
  background: rgba(22, 215, 255, 0.08);
  font-size: 0.68rem;
  text-align: center;
}

.mini-actions a:nth-child(2) {
  border-color: rgba(165, 117, 255, 0.3);
  color: var(--accent);
  background: rgba(165, 117, 255, 0.08);
}

.supply-box {
  text-align: center;
}

.supply-box strong {
  margin-top: 5px;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.carousel-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: var(--card-strong);
}

.carousel-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at calc(20% + (var(--slide, 0) * 5%)) 35%, rgba(var(--primary-rgb), 0.22), transparent 14rem),
    radial-gradient(circle at 78% 62%, rgba(22, 215, 255, 0.15), transparent 16rem),
    radial-gradient(circle at 45% 70%, rgba(165, 117, 255, 0.11), transparent 20rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 70px),
    rgba(5, 7, 12, 0.8);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.carousel-stage.is-changing .carousel-visual {
  opacity: 0.45;
  transform: scale(1.03);
}

.stage-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 12, 0.98), rgba(5, 7, 12, 0.36), transparent);
}

.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(22px, 4vw, 40px);
}

.caption div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.caption span {
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.caption b {
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.caption h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.caption p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(5, 7, 12, 0.62);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.carousel-btn:hover {
  border-color: rgba(var(--primary-rgb), 0.42);
  color: var(--primary);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.thumbs {
  display: flex;
  gap: 9px;
  margin-top: 16px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.thumbs::-webkit-scrollbar {
  display: none;
}

.thumbs button {
  flex: 0 0 128px;
  width: 128px;
  height: 80px;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--primary-rgb), 0.14), transparent 40%),
    var(--card);
  opacity: 0.5;
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.thumbs button.is-active {
  border-color: var(--primary);
  opacity: 1;
}

.thumbs span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 1.3rem;
  font-weight: 800;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(143, 155, 166, 0.35);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.dots button.is-active {
  width: 24px;
  background: var(--primary);
}

.timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.5), rgba(22, 215, 255, 0.28), rgba(165, 117, 255, 0.2));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
}

.timeline-item:nth-child(even) > div {
  grid-column: 2;
}

.timeline-item:nth-child(odd) > div {
  grid-column: 1;
}

.timeline-item .node {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: var(--card-strong);
  color: var(--muted);
  font-family: var(--font-orbitron);
  font-size: 0.75rem;
  transform: translateX(-50%);
}

.timeline-item.active .node {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.25);
}

.timeline-item > div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: var(--card);
  backdrop-filter: blur(12px);
}

.timeline-item p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 10px;
  color: var(--primary);
  font-family: var(--font-orbitron);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.timeline-item strong {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.12);
}

.timeline-item ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item li {
  position: relative;
  padding-left: 16px;
}

.timeline-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.58);
}

.social-card {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 26px;
  text-align: center;
}

.social-card p {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.social-card b {
  color: var(--primary);
  font-family: var(--font-rajdhani);
  font-size: 0.82rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.social-card:hover b {
  opacity: 1;
}

.ready-panel {
  width: min(100%, 720px);
  margin: 48px auto 0;
  padding: 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.07), rgba(12, 18, 25, 0.74), rgba(165, 117, 255, 0.07));
}

.ready-panel p {
  max-width: 540px;
  margin: 0 auto 24px;
}

footer {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1152px);
  margin: 0 auto;
  padding: 46px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  color: var(--muted);
  font-family: var(--font-rajdhani);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.footer-contract {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 34px auto;
  flex-wrap: wrap;
  text-align: center;
}

.footer-contract span {
  flex-basis: 100%;
  color: var(--muted);
  font-family: var(--font-orbitron);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.footer-contract code {
  max-width: 100%;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-contract button {
  border: 0;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-rajdhani);
  cursor: pointer;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(143, 155, 166, 0.78);
  font-family: var(--font-rajdhani);
  font-size: 0.78rem;
}

.footer-bottom p:last-child {
  max-width: 540px;
  text-align: right;
}

.pending-link {
  cursor: pointer;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.float {
  animation: float 6s ease-in-out infinite;
}

.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.48;
  }
}

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

@keyframes sweep {
  to {
    top: 110%;
  }
}

@keyframes float {
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatSlow {
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.22), 0 0 40px rgba(var(--primary-rgb), 0.1);
  }
  50% {
    box-shadow: 0 0 32px rgba(var(--primary-rgb), 0.42), 0 0 64px rgba(var(--primary-rgb), 0.22);
  }
}

@media (max-width: 900px) {
  .site-nav {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 3px;
    padding: 12px 16px 18px;
    background: rgba(5, 7, 12, 0.95);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.12);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(20px);
  }

  .nav-links.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 13px 14px;
    border-radius: 10px;
  }

  .nav-links .buy-link {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    padding-top: 94px;
  }

  .split,
  .lore-grid,
  .token-panels {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 64px;
  }

  .timeline-item:nth-child(even) > div,
  .timeline-item:nth-child(odd) > div {
    grid-column: 1;
  }

  .timeline-item .node {
    left: 24px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p:last-child {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero-stats,
  .feature-grid,
  .mini-actions,
  .status-box > div {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
  }

  .cinema-panel,
  .carousel-stage {
    border-radius: 14px;
  }

  .carousel-stage {
    aspect-ratio: 4 / 5;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .caption {
    padding: 20px;
  }

  .fragment-label {
    font-size: 0.62rem;
  }

  dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  dd {
    text-align: left;
  }
}
