/* =========================
   ALGORIM TOKEN — STYLE.CSS
   ========================= */

:root {
  --bg: #02040a;
  --bg-2: #050b20;
  --bg-3: #081b4d;
  --blue: #006bff;
  --cyan: #00d9ff;
  --purple: #8b3dff;
  --violet: #b43cff;
  --silver: #e9eef7;
  --white: #ffffff;
  --muted: #98a7c4;
  --line: rgba(143, 190, 255, 0.18);
  --glass: rgba(8, 17, 49, 0.54);
  --glass-strong: rgba(8, 19, 58, 0.76);
  --gradient: linear-gradient(135deg, #b03aed, #7966b5, #4f46e5);
  --gradient-deep: linear-gradient(135deg, #081b4d, #006bff, #8b3dff);
  --shadow-glow: 0 0 30px rgba(0, 217, 255, 0.16), 0 0 80px rgba(139, 61, 255, 0.12);
  --radius: 24px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 107, 255, 0.12), transparent 25%),
    radial-gradient(circle at 90% 20%, rgba(139, 61, 255, 0.11), transparent 28%),
    linear-gradient(180deg, #02040a 0%, #040819 34%, #02040a 100%);
  color: var(--silver);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(0, 217, 255, 0.26);
  color: #fff;
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #02040a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blue), var(--purple));
  border-radius: 999px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.glass-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(5, 11, 32, 0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), var(--shadow-glow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  margin-bottom: 64px;
}

.section-head.centered {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.section-index {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  opacity: 0.72;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.05);
  color: #bfefff;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-title {
  margin: 20px 0 18px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #f6f9ff;
}

.section-intro {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.centered .section-intro {
  margin-inline: auto;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0,217,255,0.55);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(0,217,255,0.58); }
  70% { box-shadow: 0 0 0 9px rgba(0,217,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,217,255,0); }
}

/* Background FX */

.network-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.42;
  z-index: -3;
}

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(circle, rgba(0,217,255,0.08), rgba(139,61,255,0.04) 38%, transparent 72%);
  transform: translate(-50%, -50%);
  left: -999px;
  top: -999px;
  filter: blur(8px);
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Preloader */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  gap: 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,107,255,0.14), transparent 34%),
    #02040a;
}

.preloader-core {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.preloader-logo {
  width: 98px;
  height: 98px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(0,217,255,0.36));
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,217,255,0.28);
  border-radius: 50%;
}

.preloader-ring::before,
.preloader-ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.preloader-ring::before {
  top: -4px;
  left: 50%;
}

.preloader-ring::after {
  bottom: 20px;
  right: 15px;
  background: var(--violet);
  box-shadow: 0 0 18px var(--violet);
}

.ring-a {
  animation: spin 3.5s linear infinite;
}

.ring-b {
  inset: 20px;
  border-style: dashed;
  border-color: rgba(139,61,255,0.4);
  animation: spinReverse 2.7s linear infinite;
}

.preloader-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #b9c8e7;
}

.preloader-percent {
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  font-size: 22px;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(2, 4, 10, 0.75);
  border-bottom-color: rgba(0,217,255,0.12);
  box-shadow: 0 14px 45px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 84px;
  display: grid;
  grid-template-columns: 230px 1fr 160px;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,217,255,0.22));
}

.brand div {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #f4f8ff;
}

.brand span {
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(17px, 2.2vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: #afbdd7;
  font-size: 13px;
  font-weight: 600;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 1px;
  background: var(--gradient);
  transition: right .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.desktop-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .3s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 84px 18px auto 18px;
  z-index: 120;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(3, 8, 25, 0.95);
  backdrop-filter: blur(22px);
  transform: translateY(-20px) scale(.98);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  overflow: hidden;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mobile-menu a:not(.btn) {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: "Orbitron", sans-serif;
  font-size: 15px;
}

.mobile-menu-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  right: -70px;
  bottom: -90px;
  background: rgba(139,61,255,0.12);
  filter: blur(30px);
  pointer-events: none;
}

/* Buttons */

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.btn::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -30%;
  width: 24%;
  height: 240%;
  transform: rotate(20deg) translateX(-240%);
  background: rgba(255,255,255,0.32);
  filter: blur(2px);
  transition: transform .6s ease;
}

.btn:hover::after {
  transform: rotate(20deg) translateX(620%);
}

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

.btn-primary {
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,107,255,0.25);
}

.btn-primary::before {
  background: var(--gradient);
}

.btn-primary:hover {
  box-shadow: 0 16px 42px rgba(0,217,255,0.26), 0 0 34px rgba(139,61,255,0.18);
}

.btn-secondary {
  color: #e8f1ff;
  border-color: rgba(0,217,255,0.28);
  background: rgba(5,11,32,0.42);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(0,217,255,0.58);
  box-shadow: 0 0 30px rgba(0,217,255,0.12);
}

.btn-sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 10px;
}

/* Hero */

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
}

.hero-grid-bg,
.cta-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(0,217,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 86%);
  transform: perspective(850px) rotateX(62deg) scale(1.5) translateY(34%);
  transform-origin: center bottom;
}

.hero-orb {
  position: absolute;
  z-index: -4;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
}

.orb-one {
  width: 420px;
  height: 420px;
  right: 7%;
  top: 10%;
  background: rgba(0,107,255,0.28);
}

.orb-two {
  width: 340px;
  height: 340px;
  left: -8%;
  bottom: 5%;
  background: rgba(139,61,255,0.2);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
  gap: 50px;
  align-items: center;
}

.hero-kicker {
  margin: 22px 0 4px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(56px, 6vw, 98px);
  line-height: .95;
  letter-spacing: -0.055em;
}

.title-line {
  display: block;
  overflow: hidden;
}

.hero-text {
  max-width: 720px;
  margin: 28px 0 0;
  color: #aebbd2;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.token-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.mini-stat {
  padding: 16px;
  border-radius: 18px;
}

.mini-stat small,
.spec-grid span,
.token-meta-grid span {
  display: block;
  margin-bottom: 6px;
  color: #7586a8;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mini-stat strong,
.spec-grid strong,
.token-meta-grid strong {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  color: #f1f6ff;
}

.hero-visual-wrap {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.holo-stage {
  position: relative;
  width: min(92vw, 570px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.coin-glow {
  position: absolute;
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,217,255,.2), rgba(0,107,255,.09) 40%, rgba(139,61,255,.06) 58%, transparent 72%);
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-coin {
  width: 68%;
  position: relative;
  z-index: 5;
  filter:
    drop-shadow(0 0 25px rgba(0,217,255,.24))
    drop-shadow(0 0 65px rgba(139,61,255,.18));
  animation: coinFloat 5s ease-in-out infinite;
  will-change: transform;
}

.holo-ring,
.orbit,
.document-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,217,255,.25);
}

.ring-1 {
  width: 78%;
  height: 78%;
  box-shadow: inset 0 0 34px rgba(0,217,255,.07);
  animation: spin 13s linear infinite;
}

.ring-2 {
  width: 93%;
  height: 93%;
  border-style: dashed;
  border-color: rgba(139,61,255,.25);
  animation: spinReverse 18s linear infinite;
}

.ring-3 {
  width: 108%;
  height: 108%;
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 0 70px rgba(0,107,255,.08);
  animation: breathe 4.8s ease-in-out infinite;
}

.orbit {
  inset: 0;
  border-color: rgba(0,217,255,.12);
  animation: spin 10s linear infinite;
}

.orbit-b {
  inset: 10%;
  animation-duration: 7s;
  animation-direction: reverse;
}

.orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.orbit i:nth-child(1) { top: -4px; left: 50%; }
.orbit i:nth-child(2) { right: 8%; top: 30%; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
.orbit i:nth-child(3) { left: 16%; bottom: 14%; }

.visual-status {
  position: absolute;
  z-index: 8;
  font-family: "Orbitron", sans-serif;
  font-size: 9px;
  letter-spacing: .1em;
  color: #cfe8ff;
}

.glass-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(0,217,255,.18);
  border-radius: 12px;
  background: rgba(4,11,32,.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 22px rgba(0,217,255,.07);
}

.status-top { top: 12%; left: 3%; }
.status-side { right: -2%; top: 45%; }
.status-bottom { bottom: 10%; left: 12%; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 8px;
  letter-spacing: .16em;
  color: #71809d;
}

.scroll-indicator i {
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator i::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  background: var(--cyan);
  animation: scrollCue 1.8s infinite;
}

/* Ticker */

.status-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(0,217,255,.1);
  background: rgba(4,9,28,.8);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  padding: 15px 0;
  animation: ticker 30s linear infinite;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  color: #a6b5cf;
  white-space: nowrap;
}

.ticker-track b {
  color: var(--cyan);
  font-size: 8px;
}

/* AI */

.section-ai {
  background:
    radial-gradient(circle at 15% 15%, rgba(0,107,255,.11), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(139,61,255,.08), transparent 28%);
}

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

.ai-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(104,163,255,.15);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(9,24,69,.6), rgba(4,9,28,.78)),
    radial-gradient(circle at 80% 10%, rgba(139,61,255,.08), transparent 30%);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .3s ease, box-shadow .3s ease, transform .15s ease;
}

.ai-card::before,
.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,217,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .55;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.ai-card:hover {
  border-color: rgba(0,217,255,.38);
  box-shadow: 0 18px 55px rgba(0,107,255,.12), inset 0 0 35px rgba(0,217,255,.025);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(0,217,255,.08), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}

.ai-card:hover .scan-line {
  opacity: 1;
  animation: scan 2.1s linear infinite;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.ai-number {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: .14em;
}

.ai-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,217,255,.25);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(0,107,255,.16), rgba(139,61,255,.12));
  color: #e9f8ff;
  font-family: "Orbitron", sans-serif;
  font-size: 27px;
  box-shadow: 0 0 25px rgba(0,217,255,.07);
  transition: transform .4s ease, box-shadow .4s ease;
}

.ai-card:hover .ai-icon {
  transform: rotate(8deg) translateZ(18px);
  box-shadow: 0 0 28px rgba(0,217,255,.18);
}

.ai-card h3,
.tech-card h3,
.roadmap-card h3 {
  position: relative;
  margin: 0 0 8px;
  font-family: "Orbitron", sans-serif;
  color: #f3f7ff;
  font-size: 22px;
  line-height: 1.25;
}

.ai-tagline {
  margin: 0 0 18px !important;
  color: var(--cyan) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ai-card p {
  position: relative;
  margin: 0;
  color: #8999b5;
  font-size: 14px;
}

.card-data {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-family: "Orbitron", sans-serif;
  font-size: 8px;
  letter-spacing: .12em;
  color: #647490;
}

.card-data b {
  color: var(--cyan);
  font-weight: 600;
}

.ai-hub-panel {
  margin-top: 70px;
  padding: 42px;
  border: 1px solid rgba(0,217,255,.14);
  border-radius: 30px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(145deg, rgba(7,17,50,.7), rgba(2,5,16,.75)),
    radial-gradient(circle at 70% 50%, rgba(0,107,255,.12), transparent 35%);
}

.hub-copy h3 {
  margin: 20px 0 14px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
}

.hub-copy p {
  max-width: 480px;
  color: var(--muted);
}

.ai-hub {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.hub-lines {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(0,217,255,.16);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.hub-lines::before,
.hub-lines::after {
  content: "";
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  border: 1px solid rgba(139,61,255,.14);
}

.hub-lines::after {
  inset: -12%;
  border-color: rgba(255,255,255,.05);
}

.hub-core {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
}

.hub-core img {
  width: 145px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 24px rgba(0,217,255,.24));
  animation: coinFloat 5s ease-in-out infinite;
}

.hub-core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,217,255,.24);
  box-shadow: 0 0 45px rgba(0,107,255,.14);
  animation: spin 7s linear infinite;
}

.hub-node {
  position: absolute;
  z-index: 3;
  padding: 10px 12px;
  border: 1px solid rgba(0,217,255,.18);
  border-radius: 10px;
  background: rgba(5,11,32,.86);
  color: #cfdbef;
  font-family: "Orbitron", sans-serif;
  font-size: 9px;
  letter-spacing: .06em;
  box-shadow: 0 0 20px rgba(0,217,255,.06);
}

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

.node-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 26%; right: 3%; }
.node-3 { bottom: 24%; right: 1%; }
.node-4 { bottom: 7%; left: 50%; transform: translateX(-50%); }
.node-5 { bottom: 24%; left: 1%; }
.node-6 { top: 26%; left: 3%; }

.node-1::after,
.node-2::after,
.node-3::after { left: -4px; top: 50%; }
.node-4::after,
.node-5::after,
.node-6::after { right: -4px; top: 50%; }

/* Whitepaper */

.section-whitepaper {
  background:
    radial-gradient(circle at 15% 50%, rgba(139,61,255,.11), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.008), transparent);
}

.whitepaper-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.whitepaper-art {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.holo-document {
  position: relative;
  width: min(72%, 350px);
  aspect-ratio: .72;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(0,217,255,.3);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(8,27,77,.92), rgba(3,7,22,.95)),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(0,217,255,.03) 24px 25px);
  box-shadow:
    -28px 28px 0 rgba(5,11,32,.75),
    -29px 29px 0 rgba(139,61,255,.16),
    0 30px 80px rgba(0,0,0,.35),
    0 0 50px rgba(0,217,255,.1);
  transform: rotateY(-12deg) rotateX(3deg);
  animation: documentFloat 5s ease-in-out infinite;
}

.holo-document::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
}

.holo-document img {
  width: 130px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 18px rgba(0,217,255,.2));
}

.holo-document strong {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  text-align: center;
}

.holo-document > span {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  letter-spacing: .18em;
  font-size: 14px;
}

.holo-document small {
  margin-top: 10px;
  color: #7384a4;
  font-size: 8px;
  letter-spacing: .1em;
}

.doc-chip {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "Orbitron", sans-serif;
  font-size: 8px;
  color: #8190aa;
}

.document-orbit {
  width: 430px;
  height: 430px;
  border-color: rgba(0,217,255,.12);
  animation: spin 18s linear infinite;
}

.orbit-doc-2 {
  width: 520px;
  height: 520px;
  border-style: dashed;
  border-color: rgba(139,61,255,.1);
  animation-direction: reverse;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.spec-grid > div {
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  background: rgba(255,255,255,.02);
}

.inline-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--cyan);
  font-size: 13px;
}

/* Roadmap */

.section-roadmap {
  overflow: hidden;
}

.roadmap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.06);
  transform: translateX(-50%);
}

.roadmap-line span {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--cyan), var(--blue), var(--purple));
  box-shadow: 0 0 15px rgba(0,217,255,.35);
}

.roadmap-item {
  position: relative;
  width: 50%;
  margin-bottom: 70px;
}

.roadmap-item.left {
  padding-right: 70px;
  text-align: right;
}

.roadmap-item.right {
  margin-left: 50%;
  padding-left: 70px;
}

.phase-dot {
  position: absolute;
  top: 40px;
  width: 16px;
  height: 16px;
  border: 3px solid #091431;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0,217,255,.08), 0 0 20px rgba(0,217,255,.5);
}

.left .phase-dot { right: -8px; }
.right .phase-dot { left: -8px; }

.roadmap-card {
  display: inline-block;
  width: 100%;
  padding: 28px;
  border-radius: 22px;
  text-align: left;
}

.phase-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: .15em;
}

.roadmap-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-card li {
  position: relative;
  padding: 8px 0 8px 19px;
  color: #8f9db7;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.045);
}

.roadmap-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--cyan);
  font-size: 7px;
}

/* Tokenomics */

.section-tokenomics {
  background:
    radial-gradient(circle at 70% 30%, rgba(0,107,255,.1), transparent 30%),
    radial-gradient(circle at 20% 90%, rgba(139,61,255,.08), transparent 28%);
}

.tokenomics-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: stretch;
}

.chart-panel {
  padding: 32px;
  border-radius: 28px;
}

.chart-wrap {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.chart-center {
  position: absolute;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  pointer-events: none;
}

.chart-center span,
.chart-center b {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: #fff;
}

.chart-center b {
  color: var(--cyan);
}

.chart-center small {
  display: block;
  margin-top: 10px;
  color: #7788a8;
  font-size: 9px;
  letter-spacing: .14em;
}

.token-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.token-meta-grid > div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.018);
}

.allocation-list {
  display: grid;
  gap: 14px;
}

.allocation-card {
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8,20,58,.7), rgba(3,8,24,.8));
}

.allocation-card.featured {
  border-color: rgba(0,217,255,.28);
  box-shadow: 0 0 35px rgba(0,217,255,.08);
}

.allocation-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.allocation-card span {
  font-family: "Orbitron", sans-serif;
  color: #f3f7ff;
  font-size: 14px;
}

.allocation-card strong {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
}

.allocation-card p {
  margin: 3px 0 12px;
  color: #7887a3;
  font-size: 12px;
}

.progress {
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(0,217,255,.3);
}

.supply-banner {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid rgba(0,217,255,.18);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(0,107,255,.11), rgba(139,61,255,.09)),
    rgba(5,11,32,.56);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.supply-banner > span,
.supply-banner small {
  font-family: "Orbitron", sans-serif;
  font-size: 9px;
  letter-spacing: .14em;
  color: #7586a6;
}

.supply-banner strong {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
}

/* Tech */

.section-tech {
  padding-top: 20px;
}

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

.tech-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8,20,58,.62), rgba(3,8,24,.72));
  transform-style: preserve-3d;
}

.tech-card > span {
  position: relative;
  display: inline-block;
  margin-bottom: 70px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
}

.tech-card h3 {
  font-size: 18px;
}

.tech-card p {
  position: relative;
  margin: 12px 0 0;
  color: #8796b1;
  font-size: 14px;
}

/* Contact */

.section-contact {
  padding-bottom: 130px;
}

.contact-shell {
  position: relative;
  padding: 52px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  overflow: hidden;
}

.contact-shell::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  left: -160px;
  bottom: -180px;
  background: rgba(0,107,255,.12);
  filter: blur(50px);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,217,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  transition: .25s ease;
}

.social-row a:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,217,255,.12);
}

.contact-form {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  outline: none;
  background: rgba(2,6,18,.62);
  color: #eef5ff;
  padding: 22px 16px 11px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: #72819d;
  font-size: 13px;
  pointer-events: none;
  transition: .2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(0,217,255,.5);
  box-shadow: 0 0 0 4px rgba(0,217,255,.05);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--cyan);
  font-size: 13px;
}

/* Final CTA */

.final-cta {
  min-height: 760px;
  display: grid;
  place-items: center;
  text-align: center;
  border-top: 1px solid rgba(0,217,255,.08);
}

.cta-content {
  position: relative;
  z-index: 5;
  max-width: 960px;
}

.cta-content p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

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

.cta-watermark {
  position: absolute;
  width: min(66vw, 720px);
  opacity: .055;
  filter: blur(1px);
  animation: spin 60s linear infinite;
}

.cta-ring {
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(0,217,255,.08);
  border-radius: 50%;
}

.cta-ring.ring-b {
  width: 780px;
  height: 780px;
  border-color: rgba(139,61,255,.07);
}

/* Footer */

.site-footer {
  padding: 70px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #02040a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr 1fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #71809b;
  font-size: 14px;
}

.site-footer h4 {
  margin: 0 0 18px;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) > span,
.footer-system div {
  margin: 6px 0;
  color: #71809a;
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-system div:first-of-type {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9d8e7;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.055);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #56637a;
  font-size: 10px;
  letter-spacing: .06em;
}

/* Animations */

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

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

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotateY(-2deg) rotateX(1deg); }
  50% { transform: translateY(-18px) rotateY(3deg) rotateX(-1deg); }
}

@keyframes documentFloat {
  0%, 100% { transform: rotateY(-12deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(1deg) translateY(-16px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: .65; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes breathe {
  0%, 100% { transform: scale(.98); opacity: .55; }
  50% { transform: scale(1.03); opacity: 1; }
}

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

@keyframes scrollCue {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}

@keyframes scan {
  from { top: -30%; }
  to { top: 120%; }
}

/* Accessibility & motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .network-canvas,
  .cursor-glow {
    display: none;
  }
}

/* Responsive */

@media (max-width: 1200px) {
  .nav-wrap {
    grid-template-columns: 200px 1fr 145px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: 1fr 480px;
  }

  .hero-visual-wrap {
    min-height: 540px;
  }

  .ai-hub-panel {
    grid-template-columns: 1fr;
  }

  .hub-copy {
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
  }

  .hub-copy p {
    margin-inline: auto;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 95px 0;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual-wrap {
    min-height: 580px;
  }

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

  .whitepaper-layout,
  .tokenomics-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .whitepaper-layout {
    gap: 20px;
  }

  .whitepaper-art {
    order: 2;
    min-height: 520px;
  }

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

  .contact-shell {
    gap: 42px;
    padding: 38px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-system {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    font-size: clamp(34px, 10vw, 55px);
  }

  .section-intro {
    font-size: 15px;
  }

  .nav-wrap {
    height: 74px;
  }

  .mobile-menu {
    inset: 74px 14px auto 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 90px;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 76px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions .btn {
    flex: 1 1 220px;
  }

  .token-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-wrap {
    min-height: 500px;
  }

  .holo-stage {
    width: min(92vw, 500px);
  }

  .status-side {
    right: 0;
  }

  .scroll-indicator {
    display: none;
  }

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

  .ai-card {
    min-height: 360px;
  }

  .ai-hub-panel {
    padding: 25px;
  }

  .ai-hub {
    min-height: auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hub-lines {
    display: none;
  }

  .hub-core {
    order: -1;
    margin-bottom: 18px;
  }

  .hub-node {
    position: relative;
    inset: auto !important;
    transform: none !important;
    width: min(100%, 330px);
    text-align: center;
  }

  .hub-node::after {
    display: none;
  }

  .whitepaper-art {
    min-height: 460px;
  }

  .holo-document {
    width: min(70%, 310px);
  }

  .document-orbit {
    width: 360px;
    height: 360px;
  }

  .orbit-doc-2 {
    width: 430px;
    height: 430px;
  }

  .roadmap-line {
    left: 10px;
    transform: none;
  }

  .roadmap-item,
  .roadmap-item.right {
    width: 100%;
    margin-left: 0;
    padding-left: 44px;
    padding-right: 0;
    text-align: left;
  }

  .left .phase-dot,
  .right .phase-dot {
    left: 2px;
    right: auto;
  }

  .token-meta-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .supply-banner {
    grid-template-columns: 1fr;
  }

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

  .tech-card {
    min-height: 220px;
  }

  .contact-shell {
    padding: 25px;
  }

  .final-cta {
    min-height: 650px;
  }

  .cta-ring {
    width: 430px;
    height: 430px;
  }

  .cta-ring.ring-b {
    width: 540px;
    height: 540px;
  }

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

  .footer-brand,
  .footer-system {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .eyebrow {
    font-size: 9px;
    letter-spacing: .1em;
  }

  .hero-title {
    font-size: clamp(43px, 16vw, 62px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    flex-basis: auto;
  }

  .hero-visual-wrap {
    min-height: 420px;
  }

  .visual-status {
    font-size: 7px;
  }

  .status-top {
    top: 8%;
    left: 0;
  }

  .status-bottom {
    bottom: 7%;
    left: 3%;
  }

  .holo-document {
    width: 76%;
    padding: 24px;
  }

  .document-orbit {
    width: 310px;
    height: 310px;
  }

  .orbit-doc-2 {
    width: 370px;
    height: 370px;
  }

  .chart-panel {
    padding: 20px;
  }

  .chart-center span,
  .chart-center b {
    font-size: 38px;
  }

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

  .footer-brand,
  .footer-system {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .brand div {
    display: none;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-title {
    font-size: 13.5vw;
  }

  .hero-visual-wrap {
    min-height: 370px;
  }

  .visual-status.status-side {
    display: none;
  }

  .ai-card {
    padding: 22px;
    min-height: 390px;
  }

  .card-data {
    left: 22px;
    right: 22px;
  }

  .whitepaper-art {
    min-height: 390px;
  }

  .holo-document {
    width: 82%;
  }

  .document-orbit {
    width: 270px;
    height: 270px;
  }

  .orbit-doc-2 {
    width: 330px;
    height: 330px;
  }

  .contact-shell {
    border-radius: 22px;
  }
}
