:root {
  --paper: #080613;
  --ink: #f0edff;
  --soft: #0d0a1e;
  --muted: rgba(240, 237, 255, 0.58);
  --line: rgba(240, 237, 255, 0.1);
  --dark: #04030a;
  --mint: #00ff88;
  --cyan: #00e5ff;
  --violet: #9b30ff;
  --purple: #c050ff;
  --lime: #aaff00;
  --yellow: #ffe500;
  --red: #ff2d55;
  --pink: #ff2bad;
  --radius: 8px;
  --big-radius: 28px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32), 0 0 40px rgba(155, 48, 255, 0.08);
  --prism: linear-gradient(135deg, #9b30ff, #00e5ff 30%, #00ff88 55%, #ffe500 75%, #ff2d55);
  --aurora: linear-gradient(120deg, #00e5ff 0%, #00ff88 42%, #aaff00 100%);
  --plasma: linear-gradient(135deg, #ff2bad, #9b30ff, #00e5ff);
  --action: linear-gradient(135deg, #7c5cff 0%, #00b8ff 100%);
  --action-soft: rgba(124, 92, 255, 0.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 60% at 50% 12%, rgba(26, 0, 58, 0.72), transparent 70%),
    radial-gradient(ellipse 50% 40% at 16% 54%, rgba(0, 229, 255, 0.08), transparent 62%),
    radial-gradient(ellipse 44% 50% at 86% 32%, rgba(255, 45, 85, 0.07), transparent 60%),
    var(--paper);
  font-family: "Exo 2", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(20, 241, 149, 0.08), transparent 26rem),
    radial-gradient(circle at 82% 58%, rgba(0, 212, 255, 0.08), transparent 28rem);
  background-size: 100% 100%;
  background-position: 0 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: screen;
}

main,
.site-footer,
.sticky-buy,
.chat-launcher {
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em {
  display: inline-block;
  padding: 0.06em 0.16em 0.08em 0.07em;
  margin: -0.06em -0.12em -0.08em -0.03em;
  color: transparent;
  font-style: italic;
  background: var(--prism);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: visible;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, calc(100% - 40px));
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 6, 19, 0.82);
  border: 1px solid rgba(240, 237, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

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

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 14px rgba(0, 229, 255, 0.18))
    drop-shadow(0 0 18px rgba(0, 255, 136, 0.12));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: "Exo 2", Arial, sans-serif;
}

.site-nav a { color: #fff; white-space: nowrap; }
.site-nav .active { color: var(--mint); text-shadow: 0 0 18px rgba(20, 241, 149, 0.7); }

.nav-cta,
.button,
.sticky-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.nav-cta,
.button.primary,
.sticky-buy {
  color: #fff;
  background: var(--action);
  box-shadow: 0 12px 32px rgba(124, 92, 255, 0.28), 0 0 24px rgba(0, 184, 255, 0.18);
}

.nav-cta { padding: 0 26px; font-size: 0.86rem; }
.button { padding: 0 16px 0 22px; }
.button.dark { color: var(--ink); background: rgba(240, 237, 255, 0.08); border: 1px solid rgba(240, 237, 255, 0.08); box-shadow: none; }
.button b { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 7px; background: #fff; color: #111; }
.button.primary b { background: rgba(255, 255, 255, 0.94); color: #080613; }
.button.centered { margin: 28px auto 0; width: max-content; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; }

.mobile-menu-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 86%, rgba(20, 241, 149, 0.28), transparent 12rem),
    radial-gradient(circle at 78% 86%, rgba(153, 69, 255, 0.42), transparent 18rem),
    radial-gradient(circle at 12% 12%, rgba(20, 241, 149, 0.16), transparent 20rem),
    #030304;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 0 42%, rgba(0, 0, 0, 0.55) 74%);
  pointer-events: none;
}

.hero-liquid span {
  position: absolute;
  border: 13px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(0.5px);
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.15), 0 0 60px rgba(0, 0, 0, 0.5);
  animation: liquidFloat 8s ease-in-out infinite;
}
.hero-liquid span:nth-child(1) { width: 660px; height: 820px; left: -210px; top: -90px; transform: rotate(28deg); }
.hero-liquid span:nth-child(2) { width: 540px; height: 760px; right: -110px; top: -20px; animation-delay: -2s; }
.hero-liquid span:nth-child(3) { width: 740px; height: 260px; left: 37%; bottom: -90px; animation-delay: -4s; }

.coin-orbit i {
  position: absolute;
  right: 11vw;
  bottom: -5vw;
  width: clamp(150px, 20vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 40deg, var(--mint), var(--cyan), var(--violet), var(--mint));
  opacity: 0.85;
  filter: blur(1px);
  animation: spin 9s linear infinite;
}
.coin-orbit i::after {
  content: "";
  position: absolute;
  inset: 20%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  background-image: url("assets/brand/favicon-512.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 82%;
}
.coin-orbit i:nth-child(2), .coin-orbit i:nth-child(3) { width: 62px; bottom: auto; right: 28vw; top: 34%; opacity: 0.45; }
.coin-orbit i:nth-child(3) { right: 16vw; top: 28%; width: 88px; animation-direction: reverse; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 28px));
  text-align: center;
  transform: translateY(-18px);
}
.hero-content p {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-content h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.4rem, 7.8vw, 8.6rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero-content span {
  display: block;
  max-width: 700px;
  margin: 18px auto 22px;
  line-height: 1.4;
}
.hero-copy {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.hero-copy small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88em;
  font-weight: 500;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.coin-orbit i:nth-child(4),
.coin-orbit i:nth-child(5),
.coin-orbit i:nth-child(6) {
  right: auto;
  bottom: auto;
  left: 8vw;
  top: 22%;
  width: 70px;
  opacity: 0.42;
}

.coin-orbit i:nth-child(5) {
  left: 18vw;
  top: 14%;
  width: 54px;
  animation-delay: -2.4s;
  animation-direction: reverse;
}

.coin-orbit i:nth-child(6) {
  left: 25vw;
  top: 27%;
  width: 46px;
  animation-delay: -4s;
}

.audit-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(920px, calc(100% - 34px));
  margin: 0 auto 34px;
  padding: 22px 28px;
  border: 1px solid rgba(240, 237, 255, 0.12);
  border-radius: 18px;
  background: rgba(4, 3, 10, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.audit-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

.audit-strip strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}

.audit-strip img {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(240, 237, 255, 0.08);
  filter: grayscale(1) saturate(0) brightness(1.55) contrast(1.05);
  opacity: 0.86;
}

.stats-audit {
  margin-top: 30px;
  margin-bottom: 28px;
}

.mega {
  margin: 0;
  text-align: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
}
.subhead {
  max-width: 680px;
  margin: 18px auto 34px;
  text-align: center;
  line-height: 1.5;
  color: var(--muted);
}

.leaders, .stats-shell, .missed, .works, .tokenomics, .roadmap, .news, .investing {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 92px 0;
}
.leaders { padding-top: 112px; }

.leader-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.leader-dots {
  display: none;
}
.leader-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 390px;
  overflow: visible;
  border: 1px solid rgba(240, 237, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(13, 10, 30, 0.92), rgba(8, 6, 19, 0.98));
  box-shadow: 0 14px 0 rgba(155, 48, 255, 0.08), var(--shadow);
  transition: box-shadow 0.25s ease;
}

.leader-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.leader-card > div {
  position: relative;
  z-index: 1;
}
.leader-card > div:first-child { min-height: 305px; padding: 34px 38px; display: flex; flex-direction: column; justify-content: space-between; }
.leader-card h3 { margin: 0; font-size: clamp(2.2rem, 3vw, 3.2rem); line-height: 0.95; }
.leader-card h3,
.work-card h3,
.road-card h3,
.news-card h3,
.invest h3,
.note-card h3,
.comparison-card h3 {
  font-family: "Exo 2", Arial, sans-serif;
  font-weight: 900;
}
.leader-card p { max-width: 330px; margin: 0; line-height: 1.45; color: var(--muted); }

.image-scene {
  padding: 0;
  background: #040405;
}

.image-scene img,
.image-art img,
.road-card > img,
.final-cta > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(260px, 100%);
  min-height: 48px;
  margin-top: 22px;
  padding: 0 9px 0 18px;
  border: 1px solid rgba(240, 237, 255, 0.16);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(rgba(8, 6, 19, 0.96), rgba(8, 6, 19, 0.96)) padding-box,
    var(--action) border-box;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18), inset 0 0 24px rgba(124, 92, 255, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), 0 0 24px rgba(0, 229, 255, 0.18);
}
.card-cta b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  background: var(--action);
}
.cta-two {
  background:
    linear-gradient(rgba(8, 6, 19, 0.96), rgba(8, 6, 19, 0.96)) padding-box,
    linear-gradient(135deg, var(--purple), var(--cyan)) border-box;
}
.cta-three {
  background:
    linear-gradient(rgba(8, 6, 19, 0.96), rgba(8, 6, 19, 0.96)) padding-box,
    linear-gradient(135deg, var(--violet), var(--pink)) border-box;
}
.cta-three b { background: linear-gradient(135deg, var(--lime), var(--yellow)); }
.scene { position: relative; min-height: 280px; overflow: hidden; background: #030303; }
.unicorn-scene, .number-scene, .unlock-scene {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 48%, rgba(0, 255, 136, 0.1), transparent 12rem),
    #040405;
}
.glass-ball {
  position: relative;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 22%, rgba(255,255,255,.9), transparent 12%), radial-gradient(circle at 55% 55%, rgba(20,241,149,.45), transparent 34%), rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.45);
  box-shadow: inset -22px -22px 50px rgba(0,0,0,.65), 0 28px 70px rgba(0,0,0,.35);
  animation: bob 4s ease-in-out infinite;
}
.glass-ball i { position: absolute; inset: 30%; border: 4px dotted var(--mint); border-radius: 40% 50% 36% 44%; filter: drop-shadow(0 0 12px var(--mint)); animation: pulse 2s ease-in-out infinite alternate; }
.number-scene strong { color: var(--mint); font-size: clamp(5rem, 12vw, 9rem); text-shadow: 0 0 36px rgba(20,241,149,.7); animation: bob 3.4s ease-in-out infinite; }
.unlock-scene i {
  position: absolute;
  border-radius: 50%;
  background: var(--prism);
  box-shadow: 0 0 34px rgba(0, 229, 255, 0.28);
  animation: bob 4s ease-in-out infinite;
}
.unlock-scene i:nth-child(1) {
  width: 180px;
  aspect-ratio: 1;
  opacity: 0.86;
}
.unlock-scene i:nth-child(1)::after {
  content: "";
  position: absolute;
  inset: 22%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(4, 3, 10, 0.22);
  background-image: url("assets/brand/favicon-512.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 82%;
}
.unlock-scene i:nth-child(2) {
  width: 62px;
  aspect-ratio: 1;
  left: 18%;
  top: 24%;
  opacity: 0.62;
  animation-delay: -1s;
}
.unlock-scene i:nth-child(3) {
  width: 46px;
  aspect-ratio: 1;
  right: 20%;
  bottom: 24%;
  opacity: 0.68;
  animation-delay: -2s;
}

.wallet-scene {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 48%, rgba(0, 229, 255, 0.12), transparent 10rem),
    #040405;
}

.wallet-scene i {
  position: absolute;
  border-radius: 50%;
  background: var(--prism);
  box-shadow: 0 0 34px rgba(0, 229, 255, 0.28);
  animation: bob 4s ease-in-out infinite;
}

.wallet-scene i:nth-child(1) {
  width: 170px;
  aspect-ratio: 1;
}

.wallet-scene i:nth-child(1)::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: rgba(4, 3, 10, 0.22) url("assets/brand/favicon-512.png") center / 82% no-repeat;
}

.wallet-scene i:nth-child(2) {
  width: 60px;
  aspect-ratio: 1;
  left: 24%;
  top: 22%;
  opacity: 0.7;
  animation-delay: -1.4s;
}

.wallet-scene i:nth-child(3) {
  width: 46px;
  aspect-ratio: 1;
  right: 22%;
  bottom: 24%;
  opacity: 0.75;
  animation-delay: -2.2s;
}

.commerce-scene {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 55%, rgba(0, 229, 255, 0.12), transparent 9rem),
    #040405;
}

.phone-art {
  width: 118px;
  height: 205px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(8, 6, 19, 0.64), rgba(8, 6, 19, 0.64)) padding-box,
    var(--aurora) border-box;
  border: 3px solid transparent;
  box-shadow: 0 0 34px rgba(0, 255, 136, 0.16);
  transform: rotate(-10deg);
}

.phone-art::before {
  content: "";
  position: absolute;
  inset: 34px 22px;
  border-radius: 16px;
  background: var(--prism);
}

.card-art,
.shield-art {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.card-art {
  width: 138px;
  height: 86px;
  left: 14%;
  bottom: 18%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  transform: rotate(12deg);
}

.shield-art {
  width: 82px;
  height: 96px;
  right: 18%;
  top: 20%;
  clip-path: polygon(50% 0, 88% 16%, 78% 72%, 50% 100%, 22% 72%, 12% 16%);
  background: linear-gradient(135deg, var(--mint), var(--lime));
}

.network-panel {
  position: relative;
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 54px;
  width: min(1540px, calc(100% - 70px));
  margin: 34px auto 70px;
  min-height: 520px;
  padding: 66px 72px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 229, 255, 0.1), transparent 22rem),
    radial-gradient(circle at 18% 72%, rgba(0, 255, 136, 0.08), transparent 20rem),
    linear-gradient(135deg, rgba(13, 10, 30, 0.96), rgba(4, 3, 10, 0.98));
  border: 1px solid rgba(240, 237, 255, 0.08);
  overflow: hidden;
}

.network-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 46%, rgba(0, 229, 255, 0.08), transparent 24rem);
  opacity: 0.7;
}

.network-copy,
.partner-ticker {
  position: relative;
  z-index: 1;
}

.network-copy h2 {
  margin: 0;
  font-size: clamp(3.4rem, 5.6vw, 6.8rem);
  line-height: 0.92;
  text-align: left;
  letter-spacing: -0.02em;
}

.network-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(240, 237, 255, 0.66);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.45;
  font-weight: 700;
}

.partner-ticker {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 24px;
  height: 430px;
  overflow: hidden;
  mask-image: linear-gradient(transparent 0%, #000 16%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.partner-lane {
  overflow: hidden;
  border-radius: 24px;
}

.partner-roll {
  display: grid;
  gap: 24px;
  will-change: transform;
}

.lane-up .partner-roll {
  animation: partnersUp 18s linear infinite;
}

.lane-down .partner-roll {
  animation: partnersDown 18s linear infinite;
}

.partner-ticker:hover .partner-roll {
  animation-play-state: paused;
}

.partner-roll span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 16px 22px;
  border: 1px solid rgba(240, 237, 255, 0.1);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(0, 255, 136, 0.08)),
    rgba(240, 237, 255, 0.045);
  box-shadow: inset 0 0 32px rgba(0, 229, 255, 0.035), 0 18px 38px rgba(0, 0, 0, 0.18);
}

.partner-roll img {
  width: min(300px, 100%);
  height: 70px;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: grayscale(1) saturate(0) brightness(1.45) contrast(1.08);
  box-shadow: none;
}

.presale-live {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1320px, calc(100% - 34px));
  margin: -22px auto 74px;
  padding: 18px 22px 18px 34px;
  border: 1px solid rgba(124, 92, 255, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(4, 3, 10, 0.94), rgba(13, 10, 30, 0.82)),
    radial-gradient(circle at 78% 50%, rgba(0, 184, 255, 0.14), transparent 18rem);
  box-shadow: var(--shadow), inset 0 0 26px rgba(124, 92, 255, 0.08);
}

.presale-live strong {
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.presale-live-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  min-width: 0;
}

.presale-live-icons span {
  display: grid;
  place-items: center;
  width: clamp(34px, 4vw, 52px);
  height: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(240, 237, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.6), rgba(0, 184, 255, 0.38)),
    rgba(240, 237, 255, 0.06);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08), 0 0 24px rgba(0, 184, 255, 0.1);
  overflow: hidden;
}

.presale-live-icons img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

.stats-shell {
  width: min(1980px, calc(100% - 24px));
  padding: 86px 0 72px;
  border-radius: 36px;
  background: rgba(240, 237, 255, 0.035);
  border: 1px solid rgba(240, 237, 255, 0.08);
  backdrop-filter: blur(12px);
}
.live-dot { display: inline-block; width: 24px; height: 24px; margin-right: 24px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 22px rgba(20,241,149,.45); vertical-align: middle; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(940px, calc(100% - 34px));
  margin: 0 auto;
}
.stat-card {
  min-height: 310px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 10, 30, 0.9), rgba(8, 6, 19, 0.96));
  border: 1px solid rgba(240, 237, 255, 0.08);
  box-shadow: var(--shadow);
}
.stat-card small { display: block; color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.stat-card strong { display: block; margin: 28px 0; font-size: clamp(2.2rem, 3vw, 3rem); }
.pill { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: #06120d; background: rgba(20,241,149,.15); font-size: .78rem; font-weight: 800; }
.mini-progress { height: 10px; margin: 72px 0 18px; border-radius: 99px; background: #ececec; overflow: hidden; }
.mini-progress i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--mint), var(--cyan), var(--violet)); transition: width 1.2s ease; }
.chart-line { height: 100px; margin-top: 54px; background: radial-gradient(circle at 94% 42%, var(--mint) 0 7px, transparent 8px), linear-gradient(150deg, transparent 0 42%, rgba(20,241,149,.12) 42% 50%, transparent 51%); border-bottom: 1px solid #ececec; }
.countdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; margin: 18px 0; }
.countdown div { padding: 10px 6px; border-radius: 7px; background: rgba(240, 237, 255, 0.06); text-align: center; }
.countdown b, .countdown span { display: block; }
.countdown span { color: var(--muted); font-size: .62rem; text-transform: uppercase; }
.stat-card button { min-height: 48px; width: 100%; border: 0; border-radius: var(--radius); color: #06120d; background: linear-gradient(135deg,var(--mint),var(--cyan)); font-weight: 900; }

.presale-dashboard {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(980px, calc(100% - 34px));
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(240, 237, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 32% 12%, rgba(0, 229, 255, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(13, 10, 30, 0.94), rgba(4, 3, 10, 0.98));
  box-shadow: var(--shadow);
}

.phase-orb {
  --sold: 68%;
  --pie-start: 0deg;
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--mint) 0 var(--sold), rgba(255,255,255,.12) var(--sold) 100%);
  box-shadow: 0 0 42px rgba(0, 255, 136, 0.2);
  overflow: hidden;
}

.phase-copy {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  padding: 22% 10% 18%;
  text-align: center;
}

.phase-copy small,
.phase-copy span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phase-copy-light {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
  -webkit-mask-image: conic-gradient(transparent 0 var(--sold), #000 var(--sold) 100%);
  mask-image: conic-gradient(transparent 0 var(--sold), #000 var(--sold) 100%);
}

.phase-copy-dark {
  color: #06120d;
  -webkit-mask-image: conic-gradient(#000 0 var(--sold), transparent var(--sold) 100%);
  mask-image: conic-gradient(#000 0 var(--sold), transparent var(--sold) 100%);
}

.phase-copy strong {
  font-size: 4.5rem;
  line-height: 0.8;
}

.presale-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.presale-metrics > div {
  min-height: 108px;
  padding: 14px;
  border: 1px solid rgba(240, 237, 255, 0.08);
  border-radius: 14px;
  background: rgba(240, 237, 255, 0.055);
}

.presale-metrics > div > span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.presale-metrics strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.metric-bonus {
  color: #06120d;
  background: var(--prism) !important;
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.2);
}

.metric-bonus[hidden] { display: none; }
.metric-bonus > span { color: rgba(6, 18, 13, 0.72) !important; }

.time-cell {
  grid-column: span 2;
}

.missed { text-align: center; }
mark { padding: 0 .14em; border-radius: 10px; color: #fff; background: #0d0d11; }
.missed-layout { display: grid; grid-template-columns: 260px 1fr 260px; gap: 28px; align-items: center; margin-top: 42px; }
.side-notes { display: grid; gap: 20px; }
.note-card { min-height: 190px; padding: 28px 18px; border: 1px solid rgba(0, 255, 136, 0.32); border-radius: 22px; background: rgba(13, 10, 30, 0.84); text-align: left; box-shadow: var(--shadow); }
.note-card span { color: var(--mint); font-size: 1.35rem; }
.note-card h3 { margin: 54px 0 12px; font-size: 1.28rem; }
.note-card p { margin: 0; line-height: 1.35; }
.note-card.quote p { font-size: 1.35rem; font-style: italic; }
.comparison-card { padding: 28px; border: 12px solid rgba(240, 237, 255, 0.06); border-radius: 22px; background: rgba(13, 10, 30, 0.9); box-shadow: var(--shadow); text-align: left; }
.comparison-card h3 { font-size: 1.65rem; margin: 0 0 24px; }
.comparison-card div { display: grid; grid-template-columns: 90px 1fr auto; gap: 12px; align-items: center; margin: 12px 0; padding: 18px; border-radius: 14px; background: rgba(240, 237, 255, 0.06); }
.comparison-card strong { color: var(--mint); }
.comparison-card p { color: var(--muted); }

.works { overflow: visible; width: min(1320px, calc(100% - 34px)); }
.works-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; margin: 54px auto 0; }
.work-card { position: relative; min-height: 410px; padding: 26px 30px 30px; border: 1px solid rgba(240, 237, 255, 0.08); border-radius: 18px; background: rgba(13, 10, 30, 0.86); box-shadow: var(--shadow); }
.work-art { height: 250px; border-radius: 16px; background: rgba(0, 229, 255, 0.08); overflow: hidden; }
.work-art.image-art { background: #040405; }
.work-card h3 {
  position: relative;
  display: block;
  margin: 18px 0 12px;
  padding: 16px 18px;
  border: 2px solid var(--mint);
  border-radius: 14px;
  background: #080613;
  box-shadow: inset 0 0 18px rgba(0, 255, 136, 0.05);
  font-size: 1.45rem;
}
.work-card p { margin: 0; line-height: 1.45; }
.work-art {
  position: relative;
}

.work-art.apy-lock,
.work-art.fee-flow,
.work-art.yield-meter {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 60%, rgba(0, 229, 255, 0.18), transparent 9rem),
    #05050a;
}

.apy-lock {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  padding: 28px;
}

.apy-lock span {
  display: grid;
  align-content: end;
  min-height: 86px;
  padding: 10px 8px;
  border-radius: 12px 12px 6px 6px;
  color: #06120d;
  background: linear-gradient(180deg, var(--mint), var(--cyan));
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.16);
  font-weight: 900;
}

.apy-lock span:nth-child(2) { min-height: 112px; background: linear-gradient(180deg, var(--cyan), var(--violet)); color: #fff; }
.apy-lock span:nth-child(3) { min-height: 142px; background: linear-gradient(180deg, var(--mint), var(--cyan)); }
.apy-lock span:nth-child(4) { min-height: 178px; background: linear-gradient(180deg, var(--lime), var(--yellow)); }
.apy-lock b,
.apy-lock i {
  display: block;
  font-style: normal;
  text-align: center;
}
.apy-lock i { font-size: 0.78rem; }

.fee-flow {
  grid-template-columns: 1fr 90px 1fr;
  gap: 12px;
  padding: 28px;
}

.fee-flow span,
.yield-meter span {
  display: grid;
  place-items: center;
  min-height: 72px;
  width: 100%;
  border: 1px solid rgba(240, 237, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  background: rgba(240, 237, 255, 0.06);
  font-weight: 900;
  text-align: center;
}

.fee-flow b {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  color: #06120d;
  background: var(--aurora);
  box-shadow: 0 0 34px rgba(0, 255, 136, 0.24);
  font-size: 1.7rem;
}

.yield-meter {
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  padding: 28px;
}

.yield-meter strong {
  color: var(--mint);
  font-size: 2.4rem;
}

.yield-meter b {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: #06120d;
  background: conic-gradient(var(--mint), var(--cyan), var(--violet), var(--mint));
  box-shadow: 0 0 34px rgba(0, 229, 255, 0.18);
  font-size: 2rem;
}

.tokenomics { text-align: center; }
.supply-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1080px, calc(100% - 34px));
  margin: 64px auto 18px;
  padding: 20px 22px 20px 28px;
  border: 1px solid rgba(124, 92, 255, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 0%, rgba(0, 255, 136, 0.12), transparent 18rem),
    rgba(245, 242, 255, 0.055);
  box-shadow: var(--shadow);
  text-align: left;
}
.supply-strip span {
  display: block;
  color: rgba(240, 237, 255, 0.72);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.supply-strip strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.8rem, 3.7vw, 3.2rem);
  line-height: 1;
}
.supply-strip .button {
  flex: 0 0 auto;
}
.supply-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-warning { color: var(--red); }

.legal-page {
  min-height: 100svh;
}
.legal-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}
.legal-main {
  width: min(980px, calc(100% - 32px));
  margin: 88px auto 64px;
}
.legal-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(240, 237, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 229, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 86% 16%, rgba(155, 48, 255, 0.16), transparent 18rem),
    rgba(13, 10, 30, 0.88);
  box-shadow: var(--shadow);
}
.legal-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--mint);
  font-weight: 900;
}
.legal-card h1 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.legal-card h2 {
  margin: 34px 0 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.legal-card p {
  margin: 0 0 16px;
  color: rgba(240, 237, 255, 0.78);
  line-height: 1.7;
  font-weight: 600;
}
.legal-card .legal-date {
  color: var(--mint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}
.token-layout { display: grid; grid-template-columns: 1fr 330px; gap: 60px; align-items: center; width: min(1040px, 100%); margin: 42px auto 0; }
.pie-board {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(190px, 230px);
  gap: 30px;
  align-items: center;
}
.pie {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--mint) 0 60%, var(--cyan) 60% 70%, var(--violet) 70% 75%, #68e49d 75% 80%, var(--yellow) 80% 90%, #d4e8ff 90% 100%);
  box-shadow: inset -22px -28px 0 rgba(0,0,0,.08), 0 30px 54px rgba(0,0,0,.12);
}
.token-legend {
  display: grid;
  gap: 10px;
  text-align: left;
}
.token-legend span {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 9px 12px 9px 18px;
  border: 1px solid rgba(240, 237, 255, 0.1);
  border-radius: 14px;
  background: rgba(13, 10, 30, 0.78);
  box-shadow: inset 0 0 24px rgba(0, 229, 255, 0.035);
}
.token-legend span::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 99px;
  background: var(--legend-color);
}
.token-legend span:nth-child(1) { --legend-color: var(--mint); }
.token-legend span:nth-child(2) { --legend-color: var(--cyan); }
.token-legend span:nth-child(3) { --legend-color: var(--violet); }
.token-legend span:nth-child(4) { --legend-color: #68e49d; }
.token-legend span:nth-child(5) { --legend-color: var(--yellow); }
.token-legend span:nth-child(6) { --legend-color: #d4e8ff; }
.token-legend b {
  color: var(--legend-color);
  font-size: 1.18rem;
  line-height: 1;
}
.token-legend small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}
.numbers h3 { color: var(--mint); font-size: 1.6rem; }
.numbers div { margin: 10px 0; padding: 18px; border-radius: 14px; color: #fff; background: #17171b; }
.numbers strong { display: block; color: var(--mint); font-size: 3rem; line-height: 1; }
.numbers span { font-weight: 800; }
.section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.roadmap { text-align: center; }
.road-intro {
  width: min(760px, 100%);
  margin: 14px auto 0;
  color: rgba(240, 237, 255, 0.72);
  line-height: 1.55;
  font-weight: 700;
}
.road-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px; margin-top: 42px; align-items: start; }
.road-card { position: relative; min-height: 240px; padding: 18px 22px 28px; border: 1px solid rgba(240, 237, 255, 0.08); border-radius: 18px; background: rgba(13, 10, 30, 0.86); box-shadow: var(--shadow); text-align: left; overflow: hidden; }
.road-card:nth-child(even) {
  margin-top: 58px;
}
.road-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  width: 30px;
  height: 18px;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  clip-path: polygon(0 35%, 62% 35%, 62% 0, 100% 50%, 62% 100%, 62% 65%, 0 65%);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.35));
}
.road-card > img {
  display: block;
  height: 150px;
  margin: -18px -22px 20px;
  width: calc(100% + 44px);
  object-fit: cover;
}

@media (max-width: 820px) {
  .road-card > img {
    height: auto;
    object-fit: contain;
  }
}
.road-card span { color: var(--mint); font-weight: 900; }
.road-card h3 { margin: 14px 0 12px; font-size: 1.4rem; }
.dark-card { color: #fff; background: linear-gradient(135deg, rgba(155, 48, 255, 0.18), rgba(4, 3, 10, 0.96)); }

.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 34px; }
.news-card { overflow: hidden; border: 1px solid rgba(240, 237, 255, 0.08); border-radius: 12px; background: rgba(13, 10, 30, 0.9); box-shadow: var(--shadow); }
.news-card div { height: 180px; background: radial-gradient(circle at 70% 40%, var(--mint), transparent 22%), linear-gradient(135deg, #050505, #151515 45%, var(--violet)); }
.news-card div[style] { background-size: cover; background-position: center; }
.news-card:nth-child(2) div:not([style]) { background: radial-gradient(circle, var(--cyan), transparent 22%), linear-gradient(135deg, #050505, #111, var(--mint)); }
.news-card:nth-child(3) div:not([style]) { background: radial-gradient(circle at 80% 20%, var(--violet), transparent 20%), linear-gradient(135deg, #050505, #111, var(--cyan)); }
.news-card h3, .news-card p { padding: 0 18px; }
.news-card p { color: rgba(240, 237, 255, 0.68); }
.news-card a { display: flex; justify-content: space-between; align-items: center; margin: 18px; min-height: 48px; padding: 0 12px 0 18px; border-radius: 8px; color: #fff; background: var(--action); font-weight: 900; }
.news-loading div {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(240, 237, 255, 0.06), rgba(0, 229, 255, 0.14), rgba(240, 237, 255, 0.06));
  background-size: 220% 100%;
  animation: newsLoading 1.4s ease-in-out infinite;
}
@keyframes newsLoading {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

.investing { text-align: center; }
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: min(1050px, 100%); margin: 64px auto 0; align-items: end; text-align: left; }
.invest { min-height: 380px; padding: 32px; border: 1px solid rgba(240, 237, 255, 0.08); border-radius: 22px; background: rgba(13, 10, 30, 0.76); box-shadow: var(--shadow); color: var(--muted); }
.invest.blue { background: rgba(0, 229, 255, 0.12); border-top: 8px solid var(--cyan); }
.invest.featured { min-height: 480px; color: #04030a; background: var(--prism); }
.invest h3 { margin: 0 0 30px; font-size: 1.55rem; }
.invest p { padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,.1); font-weight: 800; }
.invest.featured p { border-color: rgba(255,255,255,.28); }
.invest.featured a { display: flex; justify-content: space-between; align-items: center; min-height: 56px; margin-top: 30px; padding: 0 12px 0 18px; border-radius: 10px; color: #fff; background: rgba(8, 6, 19, 0.9); font-weight: 900; }

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  width: min(1180px, calc(100% - 34px));
  min-height: 330px;
  margin: 16px auto 76px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 48%, rgba(0, 255, 136, 0.2), transparent 14rem),
    linear-gradient(90deg, rgba(13, 10, 30, 0.98), rgba(4, 3, 10, 0.84)),
    #04030a;
  border: 1px solid rgba(240, 237, 255, 0.08);
  box-shadow: var(--shadow);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 52%, rgba(0, 229, 255, 0.14), transparent 12rem);
  opacity: 0.6;
}

.final-cta > div:first-child {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 58px);
}

.final-cta h2 {
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 5.2vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.final-cta p {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(240, 237, 255, 0.72);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.final-cta > img {
  min-height: 330px;
  align-self: stretch;
}

.cta-coin {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  width: min(230px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  color: transparent;
  background: conic-gradient(from 40deg, var(--mint), var(--cyan), var(--violet), var(--mint));
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  animation: bob 4s ease-in-out infinite;
}

.cta-coin::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: rgba(4, 3, 10, 0.18) url("assets/brand/favicon-512.png") center / 82% no-repeat;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 80px;
  width: min(1980px, calc(100% - 24px));
  min-height: 390px;
  margin: 0 auto 12px;
  padding: 78px 64px 44px;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, rgba(13, 10, 30, 0.98), rgba(4, 3, 10, 0.98));
  border: 1px solid rgba(240, 237, 255, 0.08);
}

.footer-bg {
  position: absolute;
  left: 48px;
  right: -50px;
  bottom: -120px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 241, 149, 0.55);
  font-size: clamp(8rem, 21vw, 25rem);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.08em;
  opacity: 0.72;
  pointer-events: none;
}

.footer-brand,
.footer-links {
  position: relative;
  z-index: 2;
}

.footer-brand .brand {
  width: 230px;
  min-width: 230px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0;
  line-height: 1.35;
}

.footer-brand small {
  display: block;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.35;
}

.footer-brand strong {
  display: block;
  margin-top: 34px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 7px;
  color: #fff;
  background: var(--action);
}

.socials img {
  width: 22px;
  height: 22px;
}

.audits {
  color: rgba(255, 255, 255, 0.84);
}

.audits b {
  margin-left: 12px;
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-links h3 {
  margin: 0 0 20px;
  font-size: 1rem;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  margin-top: 20px;
}

.newsletter input {
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
}

.newsletter button {
  border: 0;
  border-radius: 7px;
  color: #06120d;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  font-size: 1.35rem;
  font-weight: 900;
}

.sticky-buy {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  padding: 0 18px;
}

.chat-launcher {
  display: none;
  position: fixed;
  z-index: 60;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(124, 92, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 6, 19, 0.92), rgba(13, 10, 30, 0.82)) padding-box,
    var(--action) border-box;
  box-shadow: 0 14px 36px rgba(124, 92, 255, 0.18), 0 0 24px rgba(0, 184, 255, 0.1);
  backdrop-filter: blur(12px);
  font-weight: 900;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.chat-launcher.hidden,
body.tawk-chat-open .chat-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(124, 92, 255, 0.24), 0 0 30px rgba(0, 184, 255, 0.16);
}

.chat-launcher img {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(240, 237, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.chat-launcher span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
}


.reveal { opacity: 0; transform: translateY(32px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes liquidFloat { 0%,100%{ transform: translateY(0) rotate(18deg) scale(1); } 50%{ transform: translateY(-22px) rotate(25deg) scale(1.04); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-18px); } }
@keyframes pulse { to { transform: scale(1.12) rotate(9deg); opacity: .65; } }
@keyframes partnersUp {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-50% - 12px)); }
}
@keyframes partnersDown {
  from { transform: translateY(calc(-50% - 12px)); }
  to { transform: translateY(0); }
}
@media (max-width: 1100px) {
  .site-nav { gap: 12px; font-size: .78rem; }
  .brand { width: 178px; min-width: 178px; }
  .presale-dashboard { grid-template-columns: 180px 1fr; }
  .presale-dashboard .button { grid-column: 1 / -1; justify-self: center; }
  .presale-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .works-track { margin-inline: 0; gap: 24px; }
  .road-grid, .stats-grid, .news-grid, .invest-grid { grid-template-columns: repeat(2, 1fr); }
  .road-card:not(:last-child)::after { display: none; }
  .missed-layout { grid-template-columns: 1fr; width: min(720px, 100%); margin-inline: auto; }
  .site-footer { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .site-header { width: min(520px, calc(100% - 24px)); }
  .site-header .brand { width: 180px; min-width: 180px; }
  .site-nav, .nav-cta { display: none; }
  .nav-toggle {
    position: relative;
    z-index: 100;
    display: block;
  }
  .site-header.open {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    padding: 22px 26px 32px;
    align-items: start;
    background:
      radial-gradient(circle at 50% 28%, rgba(124, 92, 255, 0.18), transparent 18rem),
      rgba(4, 3, 10, 0.76);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
  .site-header.open .brand {
    opacity: 0;
    pointer-events: none;
  }
  .site-header.open .nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 54px;
    height: 44px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
  }
  .site-header.open .nav-toggle span {
    position: absolute;
    left: 17px;
    top: 21px;
    margin: 0;
    width: 20px;
  }
  .site-header.open .nav-toggle span:nth-child(1) { transform: rotate(45deg); }
  .site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .nav-toggle span:nth-child(3) { transform: rotate(-45deg); }
  .site-header.open .site-nav {
    position: fixed;
    top: 96px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: grid;
    gap: 26px;
    width: min(320px, calc(100% - 48px));
    padding: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    font-size: 1rem;
  }
  .site-header.open .site-nav a { padding: 0; }
  .site-header.open .mobile-menu-panel {
    position: fixed;
    left: 26px;
    right: 26px;
    bottom: 30px;
    display: grid;
    gap: 18px;
    text-align: center;
  }
  body.menu-open .chat-launcher,
  body.menu-open .sticky-buy {
    display: none;
  }
  .mobile-secured {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    color: rgba(255, 255, 255, 0.86);
  }
  .mobile-secured span {
    flex: 0 0 100%;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
  }
  .mobile-secured b {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border: 1px solid rgba(240, 237, 255, 0.14);
    border-radius: 999px;
    background: rgba(240, 237, 255, 0.07);
    font-weight: 900;
  }
  .mobile-secured b:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    transform: translateY(-50%);
  }
  .mobile-presale {
    display: grid;
    place-items: center;
    min-height: 66px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: var(--action);
    box-shadow: 0 14px 38px rgba(124, 92, 255, 0.3);
    font-weight: 900;
  }
  .mobile-login {
    display: grid;
    place-items: center;
    min-height: 54px;
    border: 1px solid rgba(240, 237, 255, 0.22);
    border-radius: 14px;
    color: #fff;
    background: rgba(240, 237, 255, 0.08);
    font-weight: 900;
  }
  .mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: 54px;
  }
  .mobile-menu-socials a {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #fff;
    border-radius: 12px;
    background: var(--action);
  }
  .mobile-menu-socials img {
    width: 24px;
    height: 24px;
  }
  .hero-content { transform: translateY(-54px); }
  .hero-content h1 { font-size: clamp(3.4rem, 16vw, 5.6rem); }
  .hero-content p { font-size: clamp(1.7rem, 8vw, 2.6rem); }
  .hero-content span { margin: 14px auto 16px; }
  .hero-actions .button { min-height: 40px; }
  .audit-strip { flex-wrap: wrap; }
  .token-layout { grid-template-columns: 1fr; }
  .leader-stack {
    display: flex;
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 0 14px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .leader-stack::-webkit-scrollbar { display: none; }
  .leader-card {
    flex: 0 0 min(86vw, 430px);
    grid-template-columns: 1fr;
    scroll-snap-align: center;
  }
  .leader-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
  }
  .leader-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    transition: width 0.2s ease, background-color 0.2s ease;
  }
  .leader-dots button.active {
    width: 30px;
    background: #fff;
  }
  .presale-dashboard { grid-template-columns: 1fr; width: min(520px, calc(100% - 28px)); }
  .phase-orb { width: 200px; justify-self: center; }
  .presale-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-current { order: 1; }
  .metric-listing { order: 2; }
  .metric-time {
    order: 3;
    grid-column: 1 / -1;
  }
  .metric-sold { order: 4; }
  .metric-next { order: 5; }
  .token-layout { width: min(520px, calc(100% - 28px)); gap: 34px; }
  .pie-board {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pie {
    width: min(340px, calc(100vw - 80px));
    margin: 12px auto 0;
  }
  .token-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scene { min-height: 320px; }
  .network-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    width: min(100% - 22px, 1540px);
    padding: 76px 22px 46px;
  }
  .network-copy h2,
  .network-copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .partner-ticker {
    height: 360px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .presale-live {
    grid-template-columns: 1fr;
    width: min(100% - 22px, 720px);
    margin-top: -26px;
    padding: 20px;
    text-align: center;
  }
  .presale-live-icons {
    flex-wrap: wrap;
  }
  .partner-roll { gap: 14px; }
  .partner-roll span {
    justify-content: center;
    min-height: 70px;
    padding: 10px;
    border-radius: 16px;
    overflow: hidden;
  }
  .stats-grid, .road-grid, .news-grid, .invest-grid, .works-track { grid-template-columns: 1fr; }
  .road-card:nth-child(even) { margin-top: 0; }
  .cta-coin { position: absolute; right: -34px; bottom: -54px; width: 170px; opacity: 0.64; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 54px 28px 36px; }
}

@media (max-width: 560px) {
  .hero { min-height: 100svh; }
  .leaders, .stats-shell, .missed, .works, .tokenomics, .roadmap, .news, .investing { width: min(100% - 22px, 1180px); padding: 62px 0; }
  .supply-strip {
    flex-direction: column;
    align-items: stretch;
    width: min(100% - 22px, 1080px);
    margin-top: 42px;
    text-align: center;
  }
  .supply-strip .button {
    width: 100%;
  }
  .supply-actions {
    width: 100%;
  }
  .stats-shell { width: min(100% - 12px, 1980px); padding-inline: 10px; }
  .leader-card > div:first-child { padding: 24px; }
  .comparison-card div { grid-template-columns: 1fr; }
  .mega { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero-content { transform: translateY(-76px); }
  .hero-content h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero-copy { font-size: 0.95rem; }
  .hero-copy small { font-size: 0.82rem; }
  .audit-strip { justify-content: flex-start; padding: 18px; }
  .audit-strip strong { width: 100%; }
  .presale-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .time-cell { grid-column: 1 / -1; }
  .presale-metrics > div { min-height: 104px; padding: 13px; }
  .partner-roll img { width: 100%; height: 54px; }
  .pie {
    width: min(288px, calc(100vw - 58px));
    box-shadow: inset -14px -18px 0 rgba(0, 0, 0, 0.08), 0 22px 42px rgba(0, 0, 0, 0.16);
  }
  .token-legend span {
    grid-template-columns: 46px 1fr;
    min-height: 52px;
    padding: 8px 10px 8px 16px;
  }
  .sticky-buy { display: none; }
  .chat-launcher { left: 14px; bottom: 14px; }
  .final-cta {
    grid-template-columns: 1fr;
    min-height: 300px;
    margin-bottom: 44px;
  }
  .final-cta > div:first-child { padding: 28px; }
  .final-cta > img {
    min-height: 220px;
    max-height: 260px;
    order: -1;
  }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bg { left: 18px; bottom: -52px; font-size: 7rem; }
  .footer-brand .brand { width: 200px; min-width: 200px; }
}
