:root {
  color-scheme: dark;
  --purple-1: #7c2cff;
  --purple-2: #c061ff;
  --purple-3: #d8c2ff;
  --deep-purple: #1c003f;
  --cyan: #a9f1ff;
  --mint: #39ff14;
  --gold: #e9f1ff;
  --dark-bg: #03000a;
  --ink: #f8faff;
  --muted: rgba(248, 250, 255, 0.78);
  --panel: rgba(12, 4, 34, 0.74);
  --panel-strong: rgba(28, 5, 72, 0.94);
  --line: rgba(169, 241, 255, 0.24);
  --line-hot: rgba(192, 97, 255, 0.48);
  --glass: linear-gradient(145deg, rgba(31, 9, 76, 0.88), rgba(4, 1, 18, 0.78));
  --glass-hot: linear-gradient(145deg, rgba(102, 28, 215, 0.5), rgba(5, 1, 22, 0.9));
  --shadow: 0 24px 70px rgba(3, 0, 10, 0.56);
  --shadow-strong: 0 34px 96px rgba(192, 97, 255, 0.32);
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --radius-pill: 999px;
  --font-display: "Audiowide", "Space Grotesk", system-ui, sans-serif;
  --font-main: "Space Grotesk", system-ui, sans-serif;
  --monad-float-logo: url("assets/monad-logo-float.png");
  --top-ticker-height: 42px;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 500;
  background:
    radial-gradient(circle at 12% 8%, rgba(192, 97, 255, 0.38), transparent 23rem),
    radial-gradient(circle at 82% 2%, rgba(169, 241, 255, 0.2), transparent 27rem),
    radial-gradient(circle at 72% 68%, rgba(57, 255, 20, 0.06), transparent 22rem),
    linear-gradient(180deg, #12002d 0%, #03000a 44%, #080016 100%);
  overflow-x: hidden;
  --pointer-x: 50%;
  --pointer-y: 18%;
}

body::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: -5vh;
  height: 58vh;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(174, 235, 255, 0.16) 46.2% 47.4%, transparent 47.6%),
    linear-gradient(225deg, transparent 0 42%, rgba(174, 235, 255, 0.14) 42.2% 43.4%, transparent 43.6%),
    linear-gradient(140deg, transparent 0 47%, rgba(168, 85, 247, 0.18) 47.2% 48.5%, transparent 48.7%),
    linear-gradient(168deg, transparent 0 51%, rgba(248, 250, 255, 0.1) 51.2% 52.2%, transparent 52.4%),
    linear-gradient(158deg, transparent 0 50%, rgba(22, 8, 51, 0.95) 50.2%),
    linear-gradient(198deg, transparent 0 44%, rgba(36, 0, 79, 0.92) 44.2%),
    linear-gradient(145deg, transparent 0 58%, rgba(11, 2, 31, 0.96) 58.2%);
  opacity: 0.82;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(174, 235, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(5, 1, 15, 0), rgba(5, 1, 15, 0.8) 84%);
  background-size: 44px 44px, 44px 44px, auto;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

button,
input,
select {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple-2), var(--mint));
  z-index: 1000;
  box-shadow: 0 0 18px rgba(122, 77, 245, 0.42);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.moni-spark-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1100;
  mix-blend-mode: normal;
}

.sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #ffffff 0, #e8b6ff 30%, #9a4dff 70%);
  box-shadow: 0 0 12px rgba(154, 77, 255, 0.9);
  animation: sparkle 600ms ease-out forwards;
  z-index: 1101;
}

@keyframes sparkle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(var(--dx), var(--dy)) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(0.4);
    opacity: 0;
  }
}

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

.snowflake {
  position: absolute;
  top: -20px;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(248, 250, 255, 0.9);
  box-shadow: 0 0 12px rgba(174, 235, 255, 0.58);
  opacity: var(--alpha);
  animation: snow-fall var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes snow-fall {
  to {
    transform: translate3d(var(--drift), calc(100vh + 40px), 0);
  }
}

.top-price-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 940;
  height: var(--top-ticker-height);
  overflow: hidden;
  border-bottom: 1px solid rgba(169, 241, 255, 0.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(192, 97, 255, 0.2), transparent 26rem),
    linear-gradient(90deg, rgba(3, 0, 10, 0.98), rgba(36, 0, 79, 0.92), rgba(3, 0, 10, 0.98));
  box-shadow: 0 14px 42px rgba(3, 0, 10, 0.42), inset 0 1px 0 rgba(248, 250, 255, 0.08);
  backdrop-filter: blur(18px);
}

.top-price-ticker::before,
.top-price-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 2;
}

.top-price-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #03000a, transparent);
}

.top-price-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #03000a, transparent);
}

.top-price-ticker-track {
  display: flex;
  width: max-content;
  animation: top-price-ticker-scroll 40s linear infinite;
}

.top-price-ticker-row {
  display: flex;
  align-items: center;
  min-height: var(--top-ticker-height);
  white-space: nowrap;
}

.top-price-ticker-row span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-inline: clamp(24px, 4vw, 48px);
  border-right: 1px solid rgba(169, 241, 255, 0.13);
}

.top-price-ticker-row i {
  color: rgba(169, 241, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-style: normal;
  text-transform: uppercase;
}

.top-price-ticker-row strong {
  color: #fff;
  font-family: ui-monospace, "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(192, 97, 255, 0.34);
}

.top-price-ticker-row strong.positive {
  color: var(--mint);
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.32);
}

.top-price-ticker-row strong.negative {
  color: #ff9bc3;
  text-shadow: 0 0 18px rgba(255, 77, 141, 0.3);
}

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

.nav {
  position: fixed;
  top: var(--top-ticker-height);
  left: 0;
  width: 100%;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(3, 0, 10, 0.9), rgba(28, 0, 63, 0.68)),
    radial-gradient(ellipse at 62% 0%, rgba(169, 241, 255, 0.12), transparent 24rem);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  z-index: 900;
}

.nav.scrolled {
  box-shadow: 0 14px 44px rgba(5, 1, 15, 0.42);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid rgba(174, 235, 255, 0.58);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.34);
}

.nav-brand span,
.section-head h2,
.hero-copy h1,
.terminal-copy h2 {
  font-family: var(--font-display);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: rgba(248, 250, 255, 0.78);
}

.nav-links a {
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple-2));
  transition: width 180ms ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent, rgba(248, 250, 255, 0.28), transparent);
  opacity: 0;
  transform: translateX(-72%);
  transition: opacity 160ms ease, transform 420ms ease;
  z-index: -1;
}

.nav-cta,
.button.primary {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.2), transparent 54%),
    linear-gradient(95deg, #6e25ff, #c061ff 55%, #7d36ff);
  border-color: rgba(248, 250, 255, 0.18);
  box-shadow:
    0 16px 42px rgba(192, 97, 255, 0.38),
    0 0 30px rgba(169, 241, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -10px 22px rgba(28, 0, 63, 0.28);
}

.button.secondary {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.08), transparent 58%),
    radial-gradient(circle at 28% 0%, rgba(169, 241, 255, 0.18), transparent 44%),
    rgba(169, 241, 255, 0.08);
  border-color: rgba(169, 241, 255, 0.3);
  box-shadow: 0 12px 34px rgba(5, 1, 15, 0.22), inset 0 1px 0 rgba(248, 250, 255, 0.12);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(174, 235, 255, 0.5);
  box-shadow: var(--shadow-strong), 0 0 34px rgba(168, 85, 247, 0.18);
}

.nav-cta:hover::before,
.button:hover::before {
  opacity: 1;
  transform: translateX(72%);
}

.nav-cta:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.moni-tool-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.moni-tool-strip a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(169, 241, 255, 0.22);
  border-radius: var(--radius-pill);
  color: rgba(248, 250, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.08), rgba(3, 0, 10, 0.18)),
    rgba(169, 241, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.08);
  font-family: var(--font-display);
  font-size: 0.62rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.moni-tool-strip a:hover {
  border-color: rgba(57, 255, 20, 0.54);
  background: rgba(57, 255, 20, 0.16);
  transform: translateY(-2px);
}

main {
  padding-top: calc(var(--top-ticker-height) + var(--nav-height));
}

section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 7vw, 92px);
  scroll-margin-top: calc(var(--top-ticker-height) + var(--nav-height) + 18px);
}

.mountain-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 180px;
  padding-block: clamp(36px, 6vw, 78px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(100deg, rgba(3, 0, 10, 0.92), rgba(86, 22, 190, 0.5)),
    url("assets/memes/tg-070.jpg") center 42%/cover no-repeat;
  border-bottom: 1px solid rgba(174, 235, 255, 0.2);
}

.mountain-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(174, 235, 255, 0.2), transparent 20rem),
    linear-gradient(180deg, rgba(5, 1, 15, 0.14), rgba(5, 1, 15, 0.78));
  z-index: -1;
}

.mountain-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(248, 250, 255, 0.16) 48.2% 50%, transparent 50.2%),
    linear-gradient(210deg, transparent 0 44%, rgba(174, 235, 255, 0.14) 44.2% 46%, transparent 46.2%),
    linear-gradient(155deg, transparent 0 56%, rgba(5, 1, 15, 0.95) 56.2%);
}

.banner-copy,
.banner-line {
  position: relative;
  z-index: 1;
}

.banner-copy span {
  display: block;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.banner-copy strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 7.2rem;
  line-height: 0.86;
  color: #fff;
  text-shadow:
    0 0 24px rgba(192, 97, 255, 0.72),
    0 0 56px rgba(169, 241, 255, 0.16),
    0 18px 58px rgba(3, 0, 10, 0.9);
  animation: title-glow 4.8s ease-in-out infinite;
}

.banner-copy p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(248, 250, 255, 0.82);
  font-weight: 800;
}

.banner-line {
  align-self: end;
  max-width: 340px;
  padding: 16px 18px;
  border: 1px solid rgba(174, 235, 255, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(5, 1, 15, 0.42);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  line-height: 1.55;
  box-shadow: 0 20px 48px rgba(5, 1, 15, 0.36);
}

.hero {
  min-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(169, 241, 255, 0.16), transparent 18rem),
    radial-gradient(circle at calc(100% - var(--pointer-x)) 64%, rgba(192, 97, 255, 0.12), transparent 20rem);
  mix-blend-mode: screen;
  opacity: 0.76;
  z-index: -1;
  transition: opacity 180ms ease;
}

.hero-bg {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 18% 20%, rgba(168, 85, 247, 0.24), transparent 22rem),
    radial-gradient(circle at 86% 12%, rgba(174, 235, 255, 0.16), transparent 24rem),
    linear-gradient(90deg, rgba(5, 1, 15, 0.94), rgba(36, 0, 79, 0.64)),
    repeating-linear-gradient(
      90deg,
      rgba(174, 235, 255, 0.04) 0 1px,
      transparent 1px 44px
    );
  opacity: 1;
  z-index: -1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -2%;
  width: min(640px, 46vw);
  aspect-ratio: 1.35;
  background: url("assets/memes/tg-070.jpg") center/cover no-repeat;
  opacity: 0.2;
  border: 1px solid rgba(174, 235, 255, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 80px rgba(5, 1, 15, 0.42);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 52%, rgba(174, 235, 255, 0.08) 52.2% 53%, transparent 53.2%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 4px
    );
  animation: static-drift 2.8s steps(4, end) infinite, aurora-drift 11s ease-in-out infinite;
}

@keyframes static-drift {
  25% { transform: translate(-8px, 3px); }
  50% { transform: translate(6px, -5px); }
  75% { transform: translate(-2px, 4px); }
}

@keyframes aurora-drift {
  50% { filter: hue-rotate(14deg) saturate(1.16); }
}

@keyframes title-glow {
  50% {
    text-shadow: 0 0 36px rgba(168, 85, 247, 0.9), 0 0 60px rgba(174, 235, 255, 0.18), 0 16px 54px rgba(5, 1, 15, 0.82);
  }
}

.hero-status,
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: rgba(174, 235, 255, 0.08);
  border: 1px solid rgba(174, 235, 255, 0.24);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 44px rgba(5, 1, 15, 0.32);
}

.hero-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(93, 255, 189, 0.85);
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4.4rem, 9vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  color: #fff;
  text-shadow:
    0 0 28px rgba(192, 97, 255, 0.82),
    0 0 60px rgba(169, 241, 255, 0.14),
    0 18px 58px rgba(3, 0, 10, 0.9);
  animation: title-glow 4.8s ease-in-out infinite;
}

.hero .reveal {
  transition-delay: 80ms;
}

.hero-kicker {
  margin: 18px 0 0;
  max-width: 760px;
  font-family: var(--font-display);
  color: rgba(169, 241, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.5;
}

.hero-text,
.section-head p,
.terminal-copy p,
.tool-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(169, 241, 255, 0.22);
  border-radius: var(--radius-pill);
  color: rgba(248, 250, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.08), rgba(3, 0, 10, 0.18)),
    rgba(169, 241, 255, 0.06);
  box-shadow: 0 14px 34px rgba(3, 0, 10, 0.3), inset 0 1px 0 rgba(248, 250, 255, 0.1);
  font-family: var(--font-display);
  font-size: 0.68rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-actions,
.bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 12px;
  margin-top: 30px;
}

.stat-strip div,
.token-box,
.token-contract,
.info-card,
.tool-card {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-strip div {
  position: relative;
  overflow: hidden;
  padding: 13px 15px;
  border-radius: var(--radius-md);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.stat-strip div::before,
.info-card::before,
.token-contract::before,
.token-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(174, 235, 255, 0.12), transparent);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 180ms ease, transform 520ms ease;
  pointer-events: none;
}

.stat-strip div:hover,
.info-card:hover,
.token-contract:hover,
.token-box:hover {
  border-color: rgba(174, 235, 255, 0.42);
  box-shadow: var(--shadow-strong), 0 0 28px rgba(174, 235, 255, 0.1);
  transform: translateY(-3px);
}

.stat-strip div:hover::before,
.info-card:hover::before,
.token-contract:hover::before,
.token-box:hover::before {
  opacity: 1;
  transform: translateX(60%);
}

.stat-strip span,
.token-box span,
.token-contract span,
.tool-top span {
  display: block;
  color: rgba(174, 235, 255, 0.68);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-strip strong {
  display: block;
  margin-top: 5px;
  font-size: 0.95rem;
}

.holo-shell {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  border: 1px solid rgba(174, 235, 255, 0.34);
  background: linear-gradient(145deg, rgba(34, 10, 79, 0.9), rgba(8, 2, 28, 0.84));
  box-shadow: 0 28px 86px rgba(5, 1, 15, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 14px;
  transform-style: preserve-3d;
  transition: transform 140ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: holo-float 5.6s ease-in-out infinite;
}

.holo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px 12px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.holo-head strong {
  color: var(--cyan);
}

.holo-main {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(174, 235, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(122, 77, 245, 0.14), rgba(70, 223, 255, 0.12));
  box-shadow: inset 0 0 38px rgba(168, 85, 247, 0.12);
}

.holo-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.04);
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(70, 223, 255, 0.24), transparent);
  height: 22%;
  animation: scan 3.8s linear infinite;
}

@keyframes scan {
  from { transform: translateY(-100%); }
  to { transform: translateY(460%); }
}

@keyframes holo-float {
  50% {
    box-shadow: 0 34px 94px rgba(5, 1, 15, 0.7), 0 0 42px rgba(168, 85, 247, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
}

.holo-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-top: 12px;
}

.holo-proof-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(174, 235, 255, 0.2);
  border-radius: 18px;
  filter: saturate(1.12) contrast(1.04);
  box-shadow: 0 12px 28px rgba(5, 1, 15, 0.28), inset 0 1px 0 rgba(248, 250, 255, 0.12);
}

.holo-proof-grid img:nth-child(even) {
  transform: translateY(8px);
}

.float-card {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgba(174, 235, 255, 0.58);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(92, 57, 190, 0.25);
  animation: float-card 5s ease-in-out infinite;
}

.float-one {
  top: 8%;
  left: -2%;
  width: 154px;
}

.float-two {
  right: 0;
  bottom: 10%;
  animation-delay: -2s;
}

@keyframes float-card {
  50% { transform: translateY(-18px) rotate(2deg); }
}

.band {
  background: rgba(36, 0, 79, 0.22);
  border-block: 1px solid rgba(174, 235, 255, 0.14);
}

.section-head {
  width: min(860px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2,
.terminal-copy h2,
.timeline-copy h2,
.split-copy h2,
.raid-tape-copy h2 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, #dff8ff 46%, #c061ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(168, 85, 247, 0.44), 0 0 46px rgba(174, 235, 255, 0.08);
}

.section-head p,
.terminal-copy p,
.timeline-copy p,
.split-copy p,
.raid-tape-copy p {
  margin: 18px auto 0;
  max-width: 770px;
}

.timeline-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  background:
    radial-gradient(ellipse at 12% 22%, rgba(169, 241, 255, 0.1), transparent 22rem),
    radial-gradient(ellipse at 78% 50%, rgba(192, 97, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(3, 0, 10, 0.7), rgba(17, 0, 43, 0.48));
  border-block: 1px solid rgba(169, 241, 255, 0.14);
}

.timeline-section::before,
.raid-tape-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(169, 241, 255, 0.13), transparent 18rem),
    linear-gradient(118deg, transparent 0 42%, rgba(169, 241, 255, 0.06) 42.2% 42.8%, transparent 43.1% 100%),
    radial-gradient(circle at 84% 12%, rgba(192, 97, 255, 0.12), transparent 18rem);
  opacity: 0.9;
}

.timeline-copy,
.split-copy,
.raid-tape-copy {
  max-width: 560px;
}

.timeline-copy h2,
.split-copy h2,
.raid-tape-copy h2 {
  font-size: clamp(2.45rem, 5.6vw, 4.4rem);
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(169, 241, 255, 0.05), rgba(192, 97, 255, 0.7), rgba(57, 255, 20, 0.28));
  box-shadow: 0 0 24px rgba(192, 97, 255, 0.36);
}

.timeline-track article {
  position: relative;
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(169, 241, 255, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.08), transparent 52%),
    radial-gradient(circle at 24% 0%, rgba(169, 241, 255, 0.14), transparent 12rem),
    linear-gradient(145deg, rgba(43, 10, 106, 0.78), rgba(5, 1, 22, 0.92));
  box-shadow: 0 26px 70px rgba(3, 0, 10, 0.48), inset 0 1px 0 rgba(248, 250, 255, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.timeline-track article:hover {
  border-color: rgba(169, 241, 255, 0.46);
  box-shadow: var(--shadow-strong), 0 0 34px rgba(169, 241, 255, 0.1);
  transform: translateY(-5px);
}

.timeline-track span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(169, 241, 255, 0.35);
  border-radius: 50%;
  color: #071009;
  background: linear-gradient(135deg, var(--mint), #d9fff1);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.18);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.timeline-track strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.25;
}

.timeline-track p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-reveal-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
  min-height: 620px;
  background:
    radial-gradient(ellipse at 14% 18%, rgba(169, 241, 255, 0.12), transparent 22rem),
    radial-gradient(ellipse at 86% 50%, rgba(192, 97, 255, 0.2), transparent 30rem),
    linear-gradient(180deg, rgba(3, 0, 10, 0.88), rgba(18, 0, 46, 0.7));
  border-block: 1px solid rgba(169, 241, 255, 0.14);
}

.split-reveal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 46%, rgba(169, 241, 255, 0.08) 46.2% 46.8%, transparent 47.1% 100%),
    repeating-linear-gradient(90deg, rgba(169, 241, 255, 0.035) 0 1px, transparent 1px 64px);
  opacity: 0.8;
}

.split-copy {
  transform: translateZ(36px);
}

.split-stage {
  --split-progress: 0;
  --split-open: calc(var(--split-progress) * 1%);
  position: relative;
  min-height: clamp(360px, 46vw, 570px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(169, 241, 255, 0.3);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 12%, rgba(169, 241, 255, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(43, 10, 106, 0.78), rgba(3, 0, 10, 0.94));
  box-shadow:
    0 34px 94px rgba(3, 0, 10, 0.6),
    0 0 48px rgba(192, 97, 255, 0.14),
    inset 0 1px 0 rgba(248, 250, 255, 0.12);
  transform: translateZ(42px);
  transition: box-shadow 220ms ease, filter 220ms ease;
}

.split-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--split-art) center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(1.2) blur(2px);
  transform: scale(1.08);
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

.split-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 0, 10, 0.72), transparent 28%, transparent 72%, rgba(3, 0, 10, 0.72)),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(3, 0, 10, 0.32) 68%);
}

.split-panel {
  position: absolute;
  inset: 14px;
  background: var(--split-art) center/cover no-repeat;
  border: 1px solid rgba(169, 241, 255, 0.24);
  border-radius: calc(var(--radius-xl) - 10px);
  box-shadow: 0 30px 80px rgba(3, 0, 10, 0.5), inset 0 1px 0 rgba(248, 250, 255, 0.16);
  filter: saturate(1.18) contrast(1.04);
  will-change: transform;
  transition: transform 90ms linear, opacity 220ms ease, filter 220ms ease;
  z-index: 2;
}

.split-stage.split-swapping {
  filter: saturate(1.18);
  box-shadow:
    0 34px 94px rgba(3, 0, 10, 0.6),
    0 0 74px rgba(192, 97, 255, 0.32),
    inset 0 1px 0 rgba(248, 250, 255, 0.16);
}

.split-stage.split-swapping::before {
  opacity: 0.34;
  filter: saturate(1.34) blur(1px);
  transform: scale(1.12);
}

.split-stage.split-swapping .split-panel {
  opacity: 0.46;
  filter: saturate(1.3) contrast(1.08) blur(1px);
}

.split-stage.split-mobile-animating {
  box-shadow:
    0 34px 94px rgba(3, 0, 10, 0.62),
    0 0 78px rgba(192, 97, 255, 0.3),
    inset 0 1px 0 rgba(248, 250, 255, 0.16);
}

.split-stage.split-mobile-animating .split-panel {
  transition: transform 120ms linear, opacity 220ms ease, filter 220ms ease;
}

.split-stage.split-mobile-animating .split-message {
  box-shadow:
    inset 0 1px 0 rgba(248, 250, 255, 0.16),
    0 0 46px rgba(192, 97, 255, 0.2),
    0 0 24px rgba(169, 241, 255, 0.08);
}

.split-left {
  clip-path: inset(0 50% 0 0 round calc(var(--radius-xl) - 10px));
  transform:
    translateX(calc(var(--split-progress) * -0.34%))
    rotate(calc(var(--split-progress) * -0.018deg))
    scale(calc(1 + var(--split-progress) * 0.0008));
}

.split-right {
  clip-path: inset(0 0 0 50% round calc(var(--radius-xl) - 10px));
  transform:
    translateX(calc(var(--split-progress) * 0.34%))
    rotate(calc(var(--split-progress) * 0.018deg))
    scale(calc(1 + var(--split-progress) * 0.0008));
}

.split-message {
  position: absolute;
  inset: 14%;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 4vw, 42px);
  border: 1px solid rgba(169, 241, 255, 0.22);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(169, 241, 255, 0.16), transparent 14rem),
    linear-gradient(145deg, rgba(19, 7, 45, 0.72), rgba(3, 0, 10, 0.66));
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.12), 0 0 40px rgba(192, 97, 255, 0.12);
  text-align: center;
  opacity: calc(0.36 + var(--split-progress) * 0.006);
  transform: scale(calc(0.96 + var(--split-progress) * 0.0006));
}

.split-message span {
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.split-message strong {
  max-width: 640px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 3.25rem);
  line-height: 1;
  text-shadow: 0 0 26px rgba(192, 97, 255, 0.5);
}

.split-message p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.raid-tape-section {
  position: relative;
  overflow: hidden;
  padding-inline: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(169, 241, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(13, 0, 34, 0.92), rgba(3, 0, 10, 0.94));
  border-block: 1px solid rgba(169, 241, 255, 0.14);
}

.raid-tape-copy {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto 34px;
  text-align: center;
}

.raid-tape {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 16px 28px;
  transform: translateZ(20px);
}

.raid-tape::before,
.raid-tape::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(34px, 9vw, 150px);
  pointer-events: none;
  z-index: 2;
}

.raid-tape::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 0, 10, 0.98), transparent);
}

.raid-tape::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 0, 10, 0.98), transparent);
}

.raid-tape-row {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: 18px;
  animation: raid-scroll var(--raid-speed, 32s) linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.raid-tape .poster {
  --poster-w: clamp(176px, 20vw, 286px);
  --poster-h: clamp(220px, 25vw, 358px);
  width: var(--poster-w);
  height: var(--poster-h);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(169, 241, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow:
    0 28px 64px rgba(3, 0, 10, 0.56),
    0 0 28px rgba(192, 97, 255, 0.14),
    inset 0 1px 0 rgba(248, 250, 255, 0.14);
  filter: saturate(1.14) contrast(1.04);
  transform: rotate(var(--poster-tilt, -2deg));
}

.raid-tape .poster.square {
  --poster-w: clamp(190px, 21vw, 300px);
  --poster-h: clamp(190px, 21vw, 300px);
  aspect-ratio: 1 / 1;
}

.raid-tape .poster.wide {
  --poster-w: clamp(245px, 30vw, 410px);
  --poster-h: clamp(153px, 18.75vw, 256px);
  aspect-ratio: 16 / 10;
}

.raid-tape .poster:nth-child(even) {
  --poster-tilt: 2deg;
  margin-top: 28px;
}

@keyframes raid-scroll {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.chart-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "copy stats"
    "frame frame"
    "actions actions";
  gap: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 8% 10%, rgba(169, 241, 255, 0.15), transparent 24rem),
    radial-gradient(circle at 85% 12%, rgba(57, 255, 20, 0.07), transparent 20rem),
    linear-gradient(180deg, rgba(8, 2, 31, 0.18), rgba(36, 0, 79, 0.26));
  isolation: isolate;
}

.chart-section::before {
  content: "";
  position: absolute;
  inset: 10% -10% auto;
  height: 70%;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(169, 241, 255, 0.12) 42.3% 43.6%, transparent 44%),
    linear-gradient(225deg, transparent 0 53%, rgba(192, 97, 255, 0.16) 53.2% 54.4%, transparent 54.8%);
  opacity: 0.64;
  transform: skewY(-5deg);
  z-index: -1;
}

.chart-copy {
  grid-area: copy;
  align-self: center;
  max-width: 620px;
}

.chart-copy h2,
.channels-copy h2 {
  margin: 10px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.95;
  text-shadow:
    0 0 28px rgba(192, 97, 255, 0.44),
    0 18px 54px rgba(3, 0, 10, 0.78);
}

.chart-copy p,
.channels-copy p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.chart-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-self: end;
}

.chart-stats div {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(169, 241, 255, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.08), transparent 52%),
    rgba(169, 241, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.08);
}

.chart-stats div::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(248, 250, 255, 0.12), transparent),
    radial-gradient(circle at 82% 18%, rgba(57, 255, 20, 0.08), transparent 10rem);
  opacity: 0.55;
  transform: translateX(-18%);
}

.chart-stats span,
.chart-stats strong {
  position: relative;
  z-index: 1;
}

.chart-stats span {
  color: rgba(169, 241, 255, 0.68);
  font-family: var(--font-display);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.chart-stats strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.4vw, 1.22rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.chart-stats strong.negative {
  color: #ff9bc3;
}

.chart-shell {
  grid-area: frame;
  position: relative;
  overflow: hidden;
  padding: clamp(10px, 2vw, 16px);
  border: 1px solid rgba(169, 241, 255, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 0%, rgba(169, 241, 255, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(55, 14, 125, 0.76), rgba(5, 1, 22, 0.95));
  box-shadow:
    0 34px 96px rgba(3, 0, 10, 0.58),
    0 0 42px rgba(192, 97, 255, 0.16),
    inset 0 1px 0 rgba(248, 250, 255, 0.12);
}

.chart-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(248, 250, 255, 0.1) 48%, transparent 58%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(169, 241, 255, 0.1), transparent 18rem);
  opacity: 0.62;
  z-index: 1;
}

.chart-frame {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
  background: #0d0b14;
  min-height: clamp(460px, 72vh, 680px);
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: clamp(460px, 72vh, 680px);
  border: 0;
  background: #0d0b14;
}

.chart-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.channels-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 0%, rgba(192, 97, 255, 0.2), transparent 24rem),
    linear-gradient(180deg, rgba(5, 1, 15, 0.05), rgba(36, 0, 79, 0.22));
}

.channels-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(169, 241, 255, 0.1) 48.2% 49.2%, transparent 49.4%),
    linear-gradient(215deg, transparent 0 56%, rgba(192, 97, 255, 0.12) 56.2% 57.2%, transparent 57.4%);
  opacity: 0.72;
}

.channels-copy,
.channel-grid {
  position: relative;
  z-index: 1;
}

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

.channel-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(169, 241, 255, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 0%, rgba(169, 241, 255, 0.13), transparent 15rem),
    linear-gradient(135deg, rgba(47, 13, 105, 0.72), rgba(8, 2, 31, 0.88));
  box-shadow: 0 18px 52px rgba(5, 1, 15, 0.3), inset 0 1px 0 rgba(248, 250, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(248, 250, 255, 0.12) 46%, transparent 58% 100%),
    radial-gradient(circle at 84% 16%, rgba(192, 97, 255, 0.2), transparent 11rem);
  opacity: 0.68;
  transform: translateX(-14%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.channel-card:hover {
  border-color: rgba(169, 241, 255, 0.42);
  box-shadow: 0 24px 64px rgba(168, 85, 247, 0.19), inset 0 1px 0 rgba(248, 250, 255, 0.12);
  transform: translateY(-5px);
}

.channel-card:hover::before {
  opacity: 1;
  transform: translateX(12%);
}

.channel-card span,
.channel-card strong,
.channel-card p {
  position: relative;
  z-index: 1;
}

.channel-card span {
  display: inline-flex;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.channel-card strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.18;
}

.channel-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.story-ribbon {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1040px, 100%);
  margin: -14px auto 28px;
  padding: 12px;
  border: 1px solid rgba(169, 241, 255, 0.22);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(145deg, rgba(248, 250, 255, 0.08), rgba(3, 0, 10, 0.42)),
    radial-gradient(ellipse at 50% 0%, rgba(192, 97, 255, 0.2), transparent 26rem);
  box-shadow: 0 22px 58px rgba(3, 0, 10, 0.42), inset 0 1px 0 rgba(248, 250, 255, 0.12);
}

.story-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(169, 241, 255, 0.18);
  border-radius: var(--radius-pill);
  color: rgba(248, 250, 255, 0.9);
  background: rgba(169, 241, 255, 0.07);
  font-family: var(--font-display);
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.08);
}

.about-grid,
.tool-grid,
.token-grid {
  display: grid;
  gap: 16px;
}

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

.info-card,
.tool-card,
.token-box {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card h3,
.tool-card h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  color: var(--ink);
}

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

.tool-card {
  position: relative;
  min-height: 248px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  background: var(--glass-hot);
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(174, 235, 255, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(168, 85, 247, 0.2), transparent 58%),
    linear-gradient(110deg, transparent 0 38%, rgba(248, 250, 255, 0.1) 46%, transparent 56% 100%);
  opacity: 0.7;
  transform: translateX(-12%);
  transition: opacity 180ms ease, transform 420ms ease;
  z-index: 1;
}

.tool-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: min(150px, 42%);
  aspect-ratio: 1;
  background: var(--card-art) center/cover no-repeat;
  border: 1px solid rgba(174, 235, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 36px rgba(58, 31, 128, 0.12);
  opacity: 0.18;
  transform: rotate(-3deg);
  transition: opacity 180ms ease, transform 220ms ease;
  z-index: 0;
}

.tool-card:hover::before {
  opacity: 1;
  transform: translateX(12%);
}

.tool-card:hover {
  border-color: rgba(174, 235, 255, 0.36);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.tool-card:hover::after {
  opacity: 0.38;
  transform: rotate(1deg) scale(1.07);
}

.tool-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  z-index: 2;
}

.tool-top i {
  color: var(--mint);
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.68rem;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(93, 255, 189, 0.12);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.14);
  animation: status-pulse 2.8s ease-in-out infinite;
}

.tool-card h3,
.tool-card p,
.tool-card .tool-url,
.tool-card strong {
  position: relative;
  z-index: 2;
}

.tool-url {
  display: inline-flex;
  max-width: 100%;
  margin-top: 4px;
  padding: 6px 9px;
  color: rgba(169, 241, 255, 0.86);
  background: rgba(169, 241, 255, 0.08);
  border: 1px solid rgba(169, 241, 255, 0.18);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-style: normal;
  line-height: 1.2;
  overflow-wrap: anywhere;
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.08);
}

.tool-card strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--cyan);
  font-size: 0.92rem;
}

.tool-card strong::after {
  content: ">";
  color: var(--purple-2);
  transition: transform 160ms ease;
}

.tool-card:hover strong::after {
  transform: translateX(4px);
}

@keyframes status-pulse {
  50% {
    box-shadow: 0 0 24px rgba(57, 255, 20, 0.28);
  }
}

.community-board-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  background:
    radial-gradient(circle at 84% 12%, rgba(168, 85, 247, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(5, 1, 15, 0.1), rgba(36, 0, 79, 0.2));
}

.community-board {
  display: grid;
  gap: 14px;
  transform: translateZ(36px);
}

.community-board article {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(174, 235, 255, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 0%, rgba(174, 235, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(47, 13, 105, 0.72), rgba(8, 2, 31, 0.86));
  color: #fff;
  box-shadow: 0 18px 52px rgba(5, 1, 15, 0.34), inset 0 1px 0 rgba(248, 250, 255, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.community-board article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(248, 250, 255, 0.12) 46%, transparent 58% 100%),
    radial-gradient(circle at 86% 18%, rgba(168, 85, 247, 0.22), transparent 12rem);
  opacity: 0.7;
  transform: translateX(-10%);
  transition: transform 420ms ease, opacity 180ms ease;
}

.community-board article:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 24px 64px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(248, 250, 255, 0.14);
  transform: translateY(-4px);
}

.community-board article:hover::before {
  opacity: 1;
  transform: translateX(12%);
}

.community-board span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 9px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
}

.community-board strong,
.community-board p {
  position: relative;
  z-index: 1;
}

.community-board strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.community-board p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.market-card {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(169, 241, 255, 0.26);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 0%, rgba(169, 241, 255, 0.16), transparent 19rem),
    radial-gradient(circle at 86% 20%, rgba(57, 255, 20, 0.08), transparent 15rem),
    linear-gradient(145deg, rgba(55, 14, 125, 0.78), rgba(5, 1, 22, 0.92));
  box-shadow:
    0 32px 92px rgba(3, 0, 10, 0.54),
    0 0 38px rgba(192, 97, 255, 0.14),
    inset 0 1px 0 rgba(248, 250, 255, 0.12);
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent, rgba(248, 250, 255, 0.12), transparent),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(169, 241, 255, 0.1), transparent 16rem);
  opacity: 0.64;
  transform: translateX(-18%);
}

.market-head,
.market-price-row,
.market-grid,
.market-foot {
  position: relative;
  z-index: 1;
}

.market-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.market-head h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1;
  text-shadow: 0 0 28px rgba(192, 97, 255, 0.36);
}

.market-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--cyan);
  border: 1px solid rgba(169, 241, 255, 0.24);
  border-radius: var(--radius-pill);
  background: rgba(169, 241, 255, 0.08);
  font-family: var(--font-display);
  font-size: 0.68rem;
  text-decoration: none;
}

.market-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  margin-top: 18px;
}

.market-price-row strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
  white-space: nowrap;
  text-shadow:
    0 0 28px rgba(192, 97, 255, 0.5),
    0 0 46px rgba(169, 241, 255, 0.12);
}

.market-change {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  color: #08140b;
  background: linear-gradient(90deg, var(--mint), #b8ffd8);
  font-family: var(--font-display);
  font-size: 0.74rem;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.18);
}

.market-change.negative {
  color: #fff;
  background: linear-gradient(90deg, #ff4d8d, #a855f7);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.market-grid div {
  min-height: 104px;
  padding: 15px;
  border: 1px solid rgba(169, 241, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.08), transparent 52%),
    rgba(169, 241, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.08);
}

.market-grid span,
.market-foot span {
  color: rgba(169, 241, 255, 0.68);
  font-family: var(--font-display);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.market-grid strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.market-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}

.token-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 16px;
  align-items: stretch;
}

.token-contract {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(174, 235, 255, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(55, 14, 125, 0.78), rgba(8, 2, 31, 0.88));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.token-contract button {
  display: block;
  width: 100%;
  margin-top: 18px;
  color: #fff;
  background: rgba(174, 235, 255, 0.06);
  border: 1px solid rgba(174, 235, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 15px 16px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.08);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.token-contract button:hover {
  color: var(--cyan);
  border-color: rgba(174, 235, 255, 0.48);
  background: rgba(174, 235, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.12), 0 0 26px rgba(174, 235, 255, 0.1);
}

.token-box {
  min-height: 134px;
  border-radius: var(--radius-lg);
}

.token-box strong,
.token-box button {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.token-box button {
  width: 100%;
  color: var(--cyan);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 160ms ease, text-shadow 160ms ease;
}

.token-box button:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(174, 235, 255, 0.4);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 30px clamp(18px, 7vw, 92px);
  color: rgba(248, 250, 255, 0.58);
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--purple-1), var(--purple-2));
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 44px rgba(80, 45, 180, 0.28);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.top-button {
  position: fixed;
  right: 20px;
  bottom: 74px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(19, 7, 45, 0.88);
  border-radius: 50%;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 900;
}

.top-button.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

.reveal.visible {
  animation: reveal-rise 680ms ease both;
}

@keyframes reveal-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Full MONI wow pass */
main {
  background:
    linear-gradient(180deg, rgba(174, 235, 255, 0.03), transparent 18rem),
    radial-gradient(ellipse at 50% 34%, rgba(168, 85, 247, 0.12), transparent 36rem);
}

section {
  perspective: 1200px;
  transform-style: preserve-3d;
}

section > * {
  position: relative;
  z-index: 1;
}

.nav {
  box-shadow: 0 18px 54px rgba(5, 1, 15, 0.5), inset 0 -1px 0 rgba(174, 235, 255, 0.12);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 28%, rgba(174, 235, 255, 0.12) 38%, transparent 50% 100%),
    radial-gradient(ellipse at 92% 0%, rgba(168, 85, 247, 0.2), transparent 18rem);
  opacity: 0.62;
}

.nav-brand,
.nav-links,
.nav-cta {
  position: relative;
  z-index: 1;
}

.nav-brand img {
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-brand:hover img {
  box-shadow: 0 14px 34px rgba(168, 85, 247, 0.5), 0 0 22px rgba(174, 235, 255, 0.2);
  transform: translateY(-2px) rotate(-3deg);
}

.mountain-banner {
  min-height: 230px;
  box-shadow: inset 0 -70px 90px rgba(5, 1, 15, 0.72), 0 28px 90px rgba(5, 1, 15, 0.54);
}

.mountain-banner::before {
  background:
    linear-gradient(115deg, rgba(174, 235, 255, 0.18), transparent 18% 100%),
    radial-gradient(ellipse at 28% 16%, rgba(248, 250, 255, 0.18), transparent 14rem),
    radial-gradient(ellipse at 78% 22%, rgba(168, 85, 247, 0.34), transparent 20rem),
    linear-gradient(180deg, rgba(5, 1, 15, 0.12), rgba(5, 1, 15, 0.84));
  animation: aurora-drift 9s ease-in-out infinite;
}

.mountain-banner::after {
  height: 108px;
  filter: drop-shadow(0 -12px 24px rgba(174, 235, 255, 0.1));
}

.banner-copy {
  transform: translateZ(50px);
}

.banner-copy strong {
  transform: translateZ(70px);
  letter-spacing: 0;
}

.banner-line {
  transform: translateZ(54px) rotateY(-8deg);
  border-color: rgba(174, 235, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(248, 250, 255, 0.1), rgba(5, 1, 15, 0.52)),
    rgba(36, 0, 79, 0.38);
  box-shadow: 0 24px 64px rgba(5, 1, 15, 0.5), 0 0 34px rgba(168, 85, 247, 0.14);
}

.hero {
  background:
    radial-gradient(ellipse at 18% 42%, rgba(168, 85, 247, 0.1), transparent 24rem),
    linear-gradient(180deg, transparent, rgba(36, 0, 79, 0.1));
}

.hero-copy {
  transform: translateZ(42px);
}

.hero-text {
  text-shadow: 0 1px 18px rgba(5, 1, 15, 0.38);
}

.hero-actions .button {
  min-width: 126px;
}

.stat-strip div {
  background:
    radial-gradient(circle at var(--shine-x, 22%) var(--shine-y, 0%), rgba(174, 235, 255, 0.18), transparent 42%),
    var(--glass);
  box-shadow: 0 20px 54px rgba(5, 1, 15, 0.34), inset 0 1px 0 rgba(248, 250, 255, 0.11);
}

.holo-shell {
  perspective: 1200px;
}

.holo-card {
  outline: 1px solid rgba(168, 85, 247, 0.12);
  outline-offset: 8px;
}

.holo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(174, 235, 255, 0.32), transparent 22%, rgba(168, 85, 247, 0.2) 72%, transparent);
  opacity: 0.5;
  mix-blend-mode: screen;
}

.holo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 12%, rgba(248, 250, 255, 0.2), transparent 16rem);
  mix-blend-mode: screen;
}

.float-card {
  box-shadow: 0 24px 58px rgba(5, 1, 15, 0.46), 0 0 24px rgba(168, 85, 247, 0.18);
}

.about,
.tools,
.token,
.timeline-section,
.split-reveal-section,
.raid-tape-section {
  position: relative;
  overflow: hidden;
}

.about.band {
  background:
    radial-gradient(ellipse at 12% 18%, rgba(169, 241, 255, 0.1), transparent 22rem),
    radial-gradient(ellipse at 88% 2%, rgba(192, 97, 255, 0.16), transparent 26rem),
    linear-gradient(180deg, rgba(10, 2, 30, 0.7), rgba(28, 0, 63, 0.22));
}

.tools.band {
  background:
    linear-gradient(135deg, rgba(3, 0, 10, 0.4), rgba(28, 0, 63, 0.28)),
    radial-gradient(ellipse at 72% 26%, rgba(57, 255, 20, 0.05), transparent 18rem),
    radial-gradient(ellipse at 20% 80%, rgba(192, 97, 255, 0.14), transparent 30rem);
}

.token.band {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(169, 241, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(28, 0, 63, 0.14), rgba(3, 0, 10, 0.52));
}

.about::before,
.tools::before,
.token::before,
.community-board-section::before,
.timeline-section::after,
.split-reveal-section::after,
.raid-tape-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(128deg, transparent 0 48%, rgba(174, 235, 255, 0.06) 48.3% 48.8%, transparent 49.1% 100%),
    radial-gradient(ellipse at 88% 14%, rgba(168, 85, 247, 0.14), transparent 18rem);
  opacity: 0.78;
}

.info-card,
.tool-card,
.token-contract,
.token-box,
.market-card,
.community-board article,
.timeline-track article {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.info-card,
.token-box {
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.08), transparent 48%),
    radial-gradient(circle at var(--shine-x, 20%) var(--shine-y, 0%), rgba(169, 241, 255, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(43, 10, 106, 0.78), rgba(5, 1, 22, 0.9));
  border-color: rgba(169, 241, 255, 0.26);
  box-shadow:
    0 28px 78px rgba(3, 0, 10, 0.48),
    0 0 30px rgba(192, 97, 255, 0.1),
    inset 0 1px 0 rgba(248, 250, 255, 0.1);
}

.info-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-content: start;
  column-gap: 16px;
  min-height: 190px;
}

.info-card img {
  grid-row: span 2;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(174, 235, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(5, 1, 15, 0.32), 0 0 22px rgba(168, 85, 247, 0.18);
}

.info-card h3,
.tool-card h3 {
  font-size: 1.12rem;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.18);
}

.info-card h3 {
  margin-top: 5px;
}

.info-card p {
  grid-column: 2;
  margin-top: 0;
}

.tool-card {
  min-height: 276px;
  padding: 26px;
  border-color: rgba(169, 241, 255, 0.26);
  box-shadow:
    0 30px 86px rgba(3, 0, 10, 0.54),
    0 0 30px rgba(192, 97, 255, 0.1),
    inset 0 1px 0 rgba(248, 250, 255, 0.1);
}

.tool-card::after {
  width: min(176px, 46%);
  opacity: 0.22;
  box-shadow: 0 22px 52px rgba(5, 1, 15, 0.32), 0 0 28px rgba(168, 85, 247, 0.12);
}

.tool-card p {
  max-width: 78%;
}

.tool-top i {
  color: #08140b;
  background: linear-gradient(90deg, var(--mint), #b8ffd8);
  text-shadow: none;
}

.community-board-section {
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(174, 235, 255, 0.08), transparent 24rem),
    radial-gradient(ellipse at 82% 38%, rgba(168, 85, 247, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(5, 1, 15, 0.1), rgba(36, 0, 79, 0.24));
}

.community-board article {
  box-shadow: 0 20px 58px rgba(5, 1, 15, 0.34), inset 0 1px 0 rgba(248, 250, 255, 0.12);
}

.token-grid {
  align-items: stretch;
}

.token-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.token-box {
  min-height: 154px;
}

.token-box strong,
.token-box button {
  letter-spacing: 0;
}

.bottom-actions {
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 12px;
  border: 1px solid rgba(174, 235, 255, 0.16);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 20% 0%, rgba(174, 235, 255, 0.1), transparent 12rem),
    rgba(5, 1, 15, 0.42);
  box-shadow: 0 22px 58px rgba(5, 1, 15, 0.4), inset 0 1px 0 rgba(248, 250, 255, 0.08);
}

.bottom-actions .button {
  min-width: 138px;
}

footer {
  background:
    linear-gradient(90deg, rgba(5, 1, 15, 0.72), rgba(36, 0, 79, 0.28)),
    radial-gradient(ellipse at 50% 0%, rgba(174, 235, 255, 0.08), transparent 20rem);
  border-top: 1px solid rgba(174, 235, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(248, 250, 255, 0.04);
}

[data-scroll-fx] {
  --fx-progress: 0;
  --fx-enter: 0;
  --fx-depth: 0;
  --fx-shift: 0;
  --fx-depth-px: 0px;
  --fx-shift-px: 0px;
  --fx-rise-px: 46px;
}

[data-scroll-fx] .fx-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: calc(0.44 + var(--fx-enter) * 0.5);
  mix-blend-mode: screen;
}

[data-scroll-fx] .fx-layer span {
  position: absolute;
  width: clamp(78px, 11vw, 170px);
  aspect-ratio: 1;
  background: var(--monad-float-logo) center/contain no-repeat;
  filter:
    drop-shadow(0 0 12px rgba(174, 235, 255, 0.24))
    drop-shadow(0 0 26px rgba(168, 85, 247, 0.42));
  opacity: calc(0.2 + var(--fx-enter) * 0.5);
  transform: translate3d(var(--fx-shift-px), var(--fx-rise-px), 0) rotate(calc(var(--fx-progress) * 0.22deg)) scale(calc(0.72 + var(--fx-enter) * 0.34));
  will-change: transform, opacity;
  animation: monad-logo-float 6.8s ease-in-out infinite;
}

[data-scroll-fx] .fx-layer span:nth-child(1) {
  left: 7%;
  top: 14%;
}

[data-scroll-fx] .fx-layer span:nth-child(2) {
  right: 9%;
  top: 22%;
  width: clamp(54px, 8vw, 118px);
  animation-delay: -2.1s;
  transform: translate3d(calc(var(--fx-shift-px) * -0.78), calc(var(--fx-rise-px) * 0.52), 0) rotate(calc(var(--fx-progress) * -0.32deg)) scale(calc(0.62 + var(--fx-enter) * 0.42));
}

[data-scroll-fx] .fx-layer span:nth-child(3) {
  left: 42%;
  bottom: 8%;
  width: clamp(92px, 13vw, 210px);
  opacity: calc(0.14 + var(--fx-enter) * 0.38);
  animation-delay: -4.2s;
  transform: translate3d(calc(var(--fx-shift-px) * 0.46), calc(var(--fx-rise-px) * -0.34), 0) rotate(calc(var(--fx-progress) * 0.16deg)) scale(calc(0.86 + var(--fx-enter) * 0.24));
}

@keyframes monad-logo-float {
  50% {
    filter:
      drop-shadow(0 0 18px rgba(174, 235, 255, 0.34))
      drop-shadow(0 0 36px rgba(168, 85, 247, 0.56));
  }
}

.mountain-banner[data-scroll-fx] .banner-copy {
  transform: translate3d(0, calc(var(--fx-rise-px) * -0.18), 50px);
}

.mountain-banner[data-scroll-fx] .banner-line {
  transform: translate3d(calc(var(--fx-shift-px) * -0.18), calc(var(--fx-rise-px) * -0.12), 54px) rotateY(-8deg);
  box-shadow:
    0 24px 64px rgba(5, 1, 15, 0.5),
    0 0 calc(24px + var(--fx-enter) * 28px) rgba(168, 85, 247, 0.2);
}

.hero[data-scroll-fx] .hero-bg {
  transform: translate3d(0, calc(var(--fx-depth-px) * -0.65), 0) scale(calc(1.02 + var(--fx-enter) * 0.025));
  filter: saturate(calc(1.02 + var(--fx-enter) * 0.16));
}

.hero[data-scroll-fx] .holo-card {
  box-shadow:
    0 28px 86px rgba(5, 1, 15, 0.62),
    0 0 calc(18px + var(--fx-enter) * 42px) rgba(168, 85, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero[data-scroll-fx] .float-one {
  transform: translate3d(calc(var(--fx-shift-px) * -0.32), calc(var(--fx-depth-px) * -0.7), 0) rotate(calc(var(--fx-progress) * -0.05deg));
}

.hero[data-scroll-fx] .float-two {
  transform: translate3d(calc(var(--fx-shift-px) * 0.28), calc(var(--fx-depth-px) * 0.58), 0) rotate(calc(var(--fx-progress) * 0.05deg));
}

.about[data-scroll-fx] .story-ribbon,
.tools[data-scroll-fx] .tool-grid,
.token[data-scroll-fx] .token-grid {
  transform: translate3d(0, calc(var(--fx-rise-px) * 0.24), 0);
}

.about[data-scroll-fx] .info-card::after,
.timeline-section[data-scroll-fx] .timeline-track article::after,
.token[data-scroll-fx] .token-box::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 10px 14px 8px 16px;
  background: linear-gradient(135deg, rgba(248, 250, 255, 0.82), rgba(169, 241, 255, 0.2) 38%, rgba(168, 85, 247, 0.64));
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.32);
  clip-path: polygon(50% 0, 100% 42%, 76% 100%, 18% 84%, 0 28%);
  opacity: calc(0.16 + var(--fx-enter) * 0.54);
  transform: translate3d(calc(var(--fx-shift-px) * -0.16), calc(var(--fx-rise-px) * -0.22), 0) rotate(calc(var(--fx-progress) * 0.46deg));
  pointer-events: none;
}

.about[data-scroll-fx] .info-card:nth-child(2)::after,
.timeline-section[data-scroll-fx] .timeline-track article:nth-child(even)::after,
.token[data-scroll-fx] .token-box:nth-child(2)::after {
  left: 18px;
  right: auto;
  transform: translate3d(calc(var(--fx-shift-px) * 0.12), calc(var(--fx-rise-px) * -0.18), 0) rotate(calc(var(--fx-progress) * -0.5deg));
}

.timeline-section[data-scroll-fx] .timeline-track::before {
  transform: scaleX(calc(0.28 + var(--fx-enter) * 0.72));
  transform-origin: left center;
}

.timeline-section[data-scroll-fx] .timeline-track article {
  box-shadow:
    0 26px 70px rgba(3, 0, 10, 0.48),
    0 0 calc(18px + var(--fx-enter) * 22px) rgba(168, 85, 247, 0.14),
    inset 0 1px 0 rgba(248, 250, 255, 0.1);
}

.timeline-section[data-scroll-fx] .timeline-track span {
  transform: scale(calc(0.82 + var(--fx-enter) * 0.18));
}

.split-reveal-section[data-scroll-fx] .split-stage {
  box-shadow:
    0 34px 94px rgba(3, 0, 10, 0.6),
    0 0 calc(34px + var(--fx-enter) * 58px) rgba(192, 97, 255, 0.2),
    inset 0 1px 0 rgba(248, 250, 255, 0.12);
}

.split-reveal-section[data-scroll-fx] .split-stage::after {
  background:
    linear-gradient(90deg, rgba(3, 0, 10, 0.72), transparent 28%, transparent 72%, rgba(3, 0, 10, 0.72)),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(3, 0, 10, 0.32) 68%),
    linear-gradient(110deg, transparent 0 43%, rgba(248, 250, 255, calc(0.04 + var(--fx-enter) * 0.12)) 49%, transparent 55% 100%);
}

.split-reveal-section[data-scroll-fx] .split-message {
  box-shadow:
    inset 0 1px 0 rgba(248, 250, 255, 0.12),
    0 0 calc(28px + var(--fx-enter) * 42px) rgba(192, 97, 255, 0.18);
}

.raid-tape-section[data-scroll-fx] .raid-tape {
  transform: translate3d(calc(var(--fx-shift-px) * -0.12), calc(var(--fx-rise-px) * 0.12), 20px) rotateX(calc(var(--fx-depth) * 1deg));
  filter: drop-shadow(0 0 calc(12px + var(--fx-enter) * 18px) rgba(168, 85, 247, 0.18));
}

.tools[data-scroll-fx] .tool-card {
  box-shadow:
    0 30px 86px rgba(3, 0, 10, 0.54),
    0 0 calc(16px + var(--fx-enter) * 26px) rgba(192, 97, 255, 0.13),
    inset 0 1px 0 rgba(248, 250, 255, 0.1);
}

.tools[data-scroll-fx] .tool-card::before,
.community-board article::before {
  background-position: calc(var(--fx-progress) * 1%) 50%;
}

.community-board-section[data-scroll-fx] .community-board {
  filter: drop-shadow(0 0 calc(12px + var(--fx-enter) * 22px) rgba(169, 241, 255, 0.12));
}

.community-board-section[data-scroll-fx] .community-board article {
  border-color: rgba(174, 235, 255, calc(0.2 + var(--fx-enter) * 0.18));
}

.community-board-section[data-scroll-fx] .community-board article::after {
  content: "";
  position: absolute;
  inset: auto 20px 16px 20px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.8), rgba(169, 241, 255, 0.64), transparent);
  opacity: calc(0.2 + var(--fx-enter) * 0.58);
  transform: scaleX(calc(0.16 + var(--fx-enter) * 0.84));
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.22);
}

.token[data-scroll-fx] .token-contract {
  box-shadow:
    0 28px 78px rgba(3, 0, 10, 0.48),
    0 0 calc(18px + var(--fx-enter) * 36px) rgba(169, 241, 255, 0.14),
    inset 0 1px 0 rgba(248, 250, 255, 0.1);
}

.token[data-scroll-fx] .bottom-actions {
  transform: translate3d(0, calc(var(--fx-rise-px) * -0.16), 0);
  box-shadow:
    0 22px 58px rgba(5, 1, 15, 0.4),
    0 0 calc(16px + var(--fx-enter) * 24px) rgba(168, 85, 247, 0.2),
    inset 0 1px 0 rgba(248, 250, 255, 0.08);
}

.timeline-track article:hover,
.tool-card:hover,
.info-card:hover,
.token-contract:hover,
.token-box:hover,
.community-board article:hover,
.chart-stats div:hover,
.channel-card:hover {
  transform: translateY(-6px);
}

@media (hover: hover) and (pointer: fine) {
  .info-card.tilting,
  .tool-card.tilting,
  .market-card.tilting,
  .chart-stats div.tilting,
  .channel-card.tilting,
  .community-board article.tilting,
  .timeline-track article.tilting,
  .token-contract.tilting,
  .token-box.tilting {
    transform: perspective(980px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-7px);
    border-color: rgba(174, 235, 255, 0.48);
    box-shadow: var(--shadow-strong), 0 0 36px rgba(174, 235, 255, 0.12);
  }
}

@media (max-width: 1020px) {
  .hero,
  .community-board-section,
  .channels-section,
  .timeline-section,
  .split-reveal-section {
    grid-template-columns: 1fr;
  }

  .chart-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stats"
      "frame"
      "actions";
  }

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

  .banner-line {
    max-width: none;
  }

  .holo-shell {
    min-height: auto;
  }

  .about-grid,
  .tool-grid,
  .token-grid,
  .timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-track::before {
    display: none;
  }

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

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

  .chart-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-copy strong {
    font-size: 5.4rem;
  }

  .hero-copy h1 {
    font-size: 4.8rem;
  }

  .section-head h2,
  .terminal-copy h2,
  .timeline-copy h2,
  .split-copy h2,
  .raid-tape-copy h2,
  .chart-copy h2,
  .channels-copy h2 {
    font-size: 3rem;
  }
}

@media (max-width: 760px) {
  :root {
    --top-ticker-height: 38px;
    --nav-height: 74px;
  }

  body {
    overflow-x: hidden;
  }

  .nav {
    min-height: var(--nav-height);
    padding-inline: 14px;
  }

  .nav-links {
    display: none;
  }

  main {
    padding-top: calc(var(--top-ticker-height) + var(--nav-height));
  }

  section {
    padding: 56px clamp(18px, 6vw, 28px);
  }

  .mountain-banner {
    min-height: 210px;
    padding-top: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg::before {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3.9rem;
  }

  .moni-tool-strip {
    gap: 7px;
    margin-top: 16px;
  }

  .moni-tool-strip a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.55rem;
  }

  .banner-copy strong {
    font-size: 4.1rem;
  }

  .section-head h2,
  .terminal-copy h2,
  .timeline-copy h2,
  .split-copy h2,
  .raid-tape-copy h2,
  .chart-copy h2,
  .channels-copy h2 {
    font-size: 2.35rem;
  }

  .stat-strip,
  .about-grid,
  .tool-grid,
  .token-grid,
  .timeline-track,
  .chart-stats,
  .channel-grid {
    grid-template-columns: 1fr;
  }

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

  .top-price-ticker::before,
  .top-price-ticker::after {
    width: 54px;
  }

  .top-price-ticker-track {
    animation-duration: 24s;
  }

  .top-price-ticker-row {
    min-height: var(--top-ticker-height);
  }

  .top-price-ticker-row span {
    gap: 8px;
    padding-inline: 18px;
  }

  .top-price-ticker-row i {
    font-size: 0.54rem;
  }

  .top-price-ticker-row strong {
    font-size: 0.76rem;
  }

  .chart-section,
  .channels-section {
    padding-top: 72px;
  }

  .channels-section {
    gap: 28px;
    padding-bottom: 56px;
  }

  .chart-stats div,
  .channel-card {
    min-height: auto;
  }

  .chart-shell {
    border-radius: var(--radius-lg);
    padding: 8px;
  }

  .chart-frame {
    min-height: 500px;
    border-radius: calc(var(--radius-lg) - 6px);
  }

  .chart-frame iframe {
    height: 500px;
  }

  .hero-badges span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .timeline-section {
    padding-top: 72px;
  }

  .split-reveal-section {
    min-height: auto;
    padding-top: 72px;
  }

  .split-stage {
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .split-left {
    transform:
      translateX(calc(var(--split-progress) * -0.52%))
      rotate(calc(var(--split-progress) * -0.026deg))
      scale(calc(1 + var(--split-progress) * 0.001));
  }

  .split-right {
    transform:
      translateX(calc(var(--split-progress) * 0.52%))
      rotate(calc(var(--split-progress) * 0.026deg))
      scale(calc(1 + var(--split-progress) * 0.001));
  }

  .split-message {
    inset: 12%;
    padding: 16px;
  }

  .split-message strong {
    font-size: clamp(1.28rem, 8vw, 2.25rem);
  }

  .split-message p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .timeline-track article {
    min-height: auto;
  }

  .raid-tape-copy {
    width: calc(100% - 28px);
  }

  .raid-tape-row {
    --raid-speed: 16s;
    gap: 12px;
    padding-inline: 14px;
    animation-play-state: running;
  }

  .raid-tape .poster {
    --poster-w: 172px;
    --poster-h: 215px;
  }

  .raid-tape .poster.square {
    --poster-w: 180px;
    --poster-h: 180px;
  }

  .raid-tape .poster.wide {
    --poster-w: 230px;
    --poster-h: 144px;
  }

  .story-ribbon {
    border-radius: var(--radius-lg);
  }

  .story-ribbon span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .info-card {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: auto;
  }

  .info-card img {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .tool-card {
    min-height: auto;
  }

  .tool-card p,
  .tool-card .tool-url {
    max-width: 100%;
  }

  .tool-card::after {
    width: 132px;
    opacity: 0.12;
  }

  .token-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .token {
    padding-top: 58px;
    padding-bottom: 34px;
  }

  .market-card {
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    padding: 14px;
  }

  .market-head {
    align-items: stretch;
    flex-direction: column;
  }

  .market-head a {
    width: max-content;
  }

  .market-price-row strong {
    font-size: clamp(1.55rem, 8.2vw, 2.15rem);
  }

  .market-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .market-grid div {
    min-height: auto;
    padding: 12px;
  }

  .token-contract {
    min-height: auto;
    padding: 14px;
  }

  .token-contract button {
    margin-top: 12px;
    padding: 13px;
    font-size: clamp(0.62rem, 3.4vw, 0.76rem);
    line-height: 1.42;
  }

  .token-grid {
    gap: 10px;
  }

  .token-box {
    min-height: 104px;
    padding: 16px;
  }

  .token-box strong,
  .token-box button {
    margin-top: 10px;
  }

  .bottom-actions {
    width: 100%;
    gap: 8px;
    margin-top: 18px;
    padding: 9px;
    border-radius: var(--radius-lg);
  }

  .bottom-actions .button {
    flex: 1 1 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
  }

  footer {
    display: grid;
    gap: 8px;
    padding: 22px 72px 24px 22px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .top-button {
    right: 14px;
    bottom: 22px;
    width: 40px;
    height: 40px;
    z-index: 901;
  }

  .toast {
    right: 14px;
    bottom: 72px;
    max-width: calc(100vw - 28px);
  }

  .float-card {
    display: none;
  }

  [data-scroll-fx] .fx-layer {
    opacity: calc(0.32 + var(--fx-enter) * 0.22);
  }

  [data-scroll-fx] .fx-layer span {
    width: 74px;
    opacity: calc(0.14 + var(--fx-enter) * 0.24);
    filter:
      drop-shadow(0 0 8px rgba(174, 235, 255, 0.16))
      drop-shadow(0 0 18px rgba(168, 85, 247, 0.3));
  }

  [data-scroll-fx] .fx-layer span:nth-child(1) {
    left: -18px;
    top: 10%;
  }

  [data-scroll-fx] .fx-layer span:nth-child(2) {
    right: -22px;
    top: 38%;
    width: 62px;
  }

  [data-scroll-fx] .fx-layer span:nth-child(3) {
    display: none;
  }

  .token[data-scroll-fx] .bottom-actions {
    transform: none;
  }
}

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

  .moni-spark-canvas,
  .sparkle,
  .snowflake,
  [data-scroll-fx] .fx-layer {
    display: none;
  }

  .split-stage {
    --split-progress: 72 !important;
  }

  [data-scroll-fx] *,
  [data-scroll-fx] *::before,
  [data-scroll-fx] *::after {
    transform: none !important;
    filter: none !important;
  }
}
