:root {
  --blue-deep: #061a5c;
  --blue-mid: #0d3bb8;
  --blue-bright: #1a56e8;
  --blue-grid: #2a6dff;
  --cyan: #4de8ff;
  --cyan-soft: #9ef3ff;
  --orange: #ff7a18;
  --orange-hot: #ff9a3c;
  --orange-glow: #ffb45c;
  --ink: #0a0a0a;
  --paper: #f4f8ff;
  --panel: rgba(8, 28, 110, 0.72);
  --radius: 18px;
  --font-stonk: "Bangers", "Oswald", Impact, sans-serif;
  --font-display: "Oswald", "Space Grotesk", sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --shadow-hard: 6px 6px 0 var(--ink);
  --mx: 50%;
  --my: 40%;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: var(--font-body);
  background: var(--blue-deep);
  overflow-x: hidden;
  line-height: 1.55;
  cursor: none;
}

body.touch-device { cursor: auto; }
body.touch-device .cursor-glow { display: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

body.touch-device a,
body.touch-device button { cursor: pointer; }

/* Cursor + progress */
.cursor-glow {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px rgba(255, 122, 24, 0.55), inset 0 0 12px rgba(77, 232, 255, 0.35);
  transition: width 0.2s, height 0.2s, background 0.2s;
  will-change: left, top;
}

.cursor-glow.hot {
  width: 48px;
  height: 48px;
  background: rgba(255, 122, 24, 0.18);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  box-shadow: 0 0 12px rgba(255, 122, 24, 0.7);
}

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

.burst-bit {
  position: absolute;
  font-family: var(--font-stonk);
  font-size: 1rem;
  color: var(--orange);
  text-shadow: 2px 2px 0 var(--ink);
  animation: burstFly 0.9s ease-out forwards;
}

@keyframes burstFly {
  to {
    transform: translate(var(--bx), var(--by)) scale(0.4) rotate(var(--br));
    opacity: 0;
  }
}

/* Background */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 122, 24, 0.14), transparent 28%),
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(77, 232, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 85% 20%, rgba(255, 122, 24, 0.14), transparent 50%),
    linear-gradient(165deg, #041248 0%, #0a2f9a 42%, #071e70 78%, #030d3a 100%);
}

.bg-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(120, 180, 255, 0.14) 2px, transparent 2px),
    linear-gradient(90deg, rgba(120, 180, 255, 0.14) 2px, transparent 2px);
  background-size: 56px 56px;
  transform: perspective(900px) rotateX(58deg) translateY(-12%) scale(1.35);
  transform-origin: center top;
  animation: gridDrift 28s linear infinite;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
}

.bg-grid-fine {
  background-size: 18px 18px;
  opacity: 0.35;
  animation-duration: 18s;
  animation-direction: reverse;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 112px, 112px 56px; }
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.bg-glow-a {
  width: 42vw; height: 42vw; top: -8%; left: -10%;
  background: #1c5cff;
  animation: pulseGlow 7s ease-in-out infinite;
}

.bg-glow-b {
  width: 36vw; height: 36vw; right: -8%; bottom: 10%;
  background: #ff7a18; opacity: 0.28;
  animation: pulseGlow 9s ease-in-out infinite reverse;
}

.bg-glow-c {
  width: 28vw; height: 28vw; left: 40%; top: 45%;
  background: #4de8ff; opacity: 0.16;
  animation: pulseGlow 11s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.72; }
}

.bg-beams {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 40px, rgba(255, 255, 255, 0.015) 40px 42px);
  animation: beamSlide 16s linear infinite;
  opacity: 0.7;
}

@keyframes beamSlide {
  to { transform: translateX(42px); }
}

.bg-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px, rgba(0, 20, 80, 0.08) 3px, rgba(0, 20, 80, 0.08) 6px
  );
  mix-blend-mode: soft-light;
  animation: scanPulse 4.5s ease-in-out infinite;
}

@keyframes scanPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.55; }
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  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)'/%3E%3C/svg%3E");
}

#floatCanvas,
#sparkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#floatCanvas { opacity: 0.5; }
#sparkCanvas { opacity: 0.7; }

/* Tickers */
.ticker-rail {
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: linear-gradient(90deg, #ff7a18, #ff9a3c 40%, #4de8ff 100%);
  color: var(--ink);
  font-family: var(--font-stonk);
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}

.ticker-top {
  position: sticky;
  top: 0;
  z-index: 40;
}

.ticker-bottom {
  border-top: 3px solid var(--ink);
  border-bottom: 0;
  background: linear-gradient(90deg, #4de8ff, #1a56e8 45%, #ff7a18 100%);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.45rem 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.ticker-track.reverse { animation-direction: reverse; animation-duration: 34s; }

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.ticker-track .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 34px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: blur(14px);
  background: rgba(4, 18, 72, 0.78);
  border-bottom: 3px solid rgba(10, 10, 10, 0.85);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
}

.brand-pulse {
  position: absolute;
  left: 0; top: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: brandPulse 2s ease-out infinite;
}

@keyframes brandPulse {
  to { transform: scale(1.7); opacity: 0; }
}

.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  object-fit: cover;
  background: var(--blue-bright);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.08); }

.brand-text {
  font-family: var(--font-stonk);
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  text-shadow: 3px 3px 0 var(--ink);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.88rem;
}

.nav a {
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover { color: var(--orange-hot); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--blue-bright);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.icon-btn:hover {
  transform: translate(-2px, -2px);
  background: var(--orange);
}

.btn-mini {
  padding: 0.45rem 0.9rem !important;
  font-size: 1rem !important;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

.icon { width: 1.15rem; height: 1.15rem; object-fit: contain; }
.icon-x, .icon-tg, .icon-phantom { filter: brightness(0) invert(1); }
.icon-dex {
  filter: brightness(0) saturate(100%) invert(84%) sepia(42%) saturate(541%) hue-rotate(127deg) brightness(101%) contrast(101%);
}
.icon-sol { width: 1.25rem; height: 1.25rem; }
.btn .icon, .social-tile .icon, .step-brand .icon { width: 1.35rem; height: 1.35rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-stonk);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-orange {
  background: linear-gradient(180deg, var(--orange-hot), var(--orange));
  color: var(--ink);
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

.btn-ghost {
  background: rgba(10, 40, 140, 0.85);
  color: var(--paper);
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  backdrop-filter: blur(6px);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  min-height: calc(100vh - 110px);
  padding: clamp(2rem, 5vw, 4rem) clamp(20rem, 4vw, 2.5rem) 3rem;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orbit-num {
  position: absolute;
  font-family: var(--font-stonk);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: rgba(180, 220, 255, 0.28);
  letter-spacing: 0.04em;
  animation: floatNum 6s ease-in-out infinite;
}

.orbit-num.n1 { top: 12%; left: 8%; }
.orbit-num.n2 { top: 28%; right: 42%; animation-delay: 1.2s; }
.orbit-num.n3 { bottom: 22%; left: 18%; animation-delay: 0.6s; font-size: clamp(2rem, 4vw, 3.4rem); }
.orbit-num.n4 { top: 18%; right: 8%; color: rgba(255, 154, 60, 0.45); animation-delay: 1.8s; }
.orbit-num.n5 { bottom: 30%; right: 30%; animation-delay: 2.4s; }
.orbit-num.n6 { top: 55%; left: 42%; color: rgba(77, 232, 255, 0.28); animation-delay: 1s; }
.orbit-num.n7 { bottom: 12%; right: 8%; animation-delay: 2s; }

@keyframes floatNum {
  0%, 100% { transform: translateY(0) rotate(-2deg); opacity: 0.35; }
  50% { transform: translateY(-14px) rotate(2deg); opacity: 0.75; }
}

.shockwave {
  position: absolute;
  right: 18%;
  top: 28%;
  width: 120px; height: 120px;
  border: 3px solid rgba(255, 122, 24, 0.45);
  border-radius: 50%;
  animation: shock 3s ease-out infinite;
}

.shockwave.delay { animation-delay: 1.5s; border-color: rgba(77, 232, 255, 0.4); }

@keyframes shock {
  from { transform: scale(0.4); opacity: 0.8; }
  to { transform: scale(2.4); opacity: 0; }
}

.hero-arrow {
  position: absolute;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.45));
  animation: arrowRise 2.8s ease-in-out infinite;
}

.hero-arrow.a1 {
  width: clamp(140px, 18vw, 220px);
  right: 6%; bottom: 12%;
}

.hero-arrow.a2 {
  width: clamp(90px, 12vw, 140px);
  left: 48%; top: 14%;
  opacity: 0.7;
  animation-delay: 0.8s;
  animation-direction: reverse;
}

@keyframes arrowRise {
  0%, 100% { transform: translate(0, 8px) rotate(-4deg); }
  50% { transform: translate(8px, -14px) rotate(2deg); }
}

.hero-copy, .hero-visual { position: relative; z-index: 1; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: rgba(8, 40, 150, 0.75);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
}

.kicker-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5cff9a;
  box-shadow: 0 0 10px #5cff9a;
  animation: liveBlink 1.2s ease-in-out infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.hero-title { margin: 0; line-height: 0.9; }

.title-stroke {
  display: inline-block;
  font-family: var(--font-stonk);
  font-size: clamp(4.2rem, 14vw, 8.5rem);
  letter-spacing: 0.06em;
  color: var(--orange);
  -webkit-text-stroke: 4px var(--ink);
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 var(--ink), 0 0 40px rgba(255, 122, 24, 0.45);
  animation: titlePop 3.2s ease-in-out infinite;
  position: relative;
}

@keyframes titlePop {
  0%, 100% { transform: scale(1) rotate(-1deg); }
  50% { transform: scale(1.03) rotate(1deg); }
}

.glitch:hover {
  animation: glitchShake 0.35s steps(2) infinite, titlePop 3.2s ease-in-out infinite;
}

@keyframes glitchShake {
  0% { transform: translate(0); }
  25% { transform: translate(3px, -2px); text-shadow: -4px 0 #4de8ff, 4px 0 #ff7a18; }
  50% { transform: translate(-3px, 2px); }
  75% { transform: translate(2px, 1px); text-shadow: 4px 0 #4de8ff, -4px 0 #ff7a18; }
  100% { transform: translate(0); }
}

.hero-symbol {
  margin: 0.85rem 0 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
  color: var(--cyan-soft);
}

.hero-symbol strong {
  color: var(--orange-hot);
  font-family: var(--font-stonk);
  letter-spacing: 0.08em;
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-tag {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(230, 240, 255, 0.9);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ca-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  padding: 0.55rem 0.65rem 0.55rem 0.9rem;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: rgba(3, 16, 70, 0.8);
  box-shadow: 4px 4px 0 var(--ink);
  animation: caGlow 3s ease-in-out infinite;
}

@keyframes caGlow {
  0%, 100% { box-shadow: 4px 4px 0 var(--ink); }
  50% { box-shadow: 4px 4px 0 var(--ink), 0 0 22px rgba(77, 232, 255, 0.35); }
}

.ca-label {
  font-family: var(--font-stonk);
  letter-spacing: 0.08em;
  color: var(--orange);
}

.ca-value {
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(48vw, 320px);
}

.btn-copy {
  padding: 0.4rem 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--cyan);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-copy.slim { margin-top: 0.55rem; }
.btn-copy:hover { background: var(--orange-hot); transform: translateY(-1px); }
.btn-copy.copied { background: #5cff9a; }

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.18);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: chipBob 3.5s ease-in-out infinite;
}

.chip:nth-child(2) { animation-delay: 0.4s; background: rgba(77, 232, 255, 0.16); }
.chip:nth-child(3) { animation-delay: 0.8s; }
.chip:nth-child(4) { animation-delay: 1.2s; background: rgba(77, 232, 255, 0.16); }

@keyframes chipBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
}

.logo-frame {
  position: relative;
  width: min(92%, 460px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-ring {
  position: absolute;
  inset: 4%;
  border: 3px dashed rgba(77, 232, 255, 0.45);
  border-radius: 50%;
  animation: spinSlow 22s linear infinite;
}

.logo-ring.delay {
  inset: -2%;
  border-style: solid;
  border-color: rgba(255, 122, 24, 0.35);
  animation-duration: 16s;
  animation-direction: reverse;
}

.logo-ring.delay2 {
  inset: 12%;
  border-style: dotted;
  border-color: rgba(255, 255, 255, 0.25);
  animation-duration: 12s;
}

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

.logo-sparks i {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 2px;
  animation: sparkOrbit 5s linear infinite;
}

.logo-sparks i:nth-child(1) { top: 8%; left: 48%; animation-delay: 0s; }
.logo-sparks i:nth-child(2) { top: 22%; right: 10%; animation-delay: 0.4s; background: var(--cyan); }
.logo-sparks i:nth-child(3) { bottom: 18%; right: 14%; animation-delay: 0.8s; }
.logo-sparks i:nth-child(4) { bottom: 8%; left: 46%; animation-delay: 1.2s; background: var(--cyan); }
.logo-sparks i:nth-child(5) { top: 45%; left: 2%; animation-delay: 1.6s; }
.logo-sparks i:nth-child(6) { top: 45%; right: 2%; animation-delay: 2s; background: var(--cyan); }
.logo-sparks i:nth-child(7) { top: 12%; left: 16%; animation-delay: 2.4s; }
.logo-sparks i:nth-child(8) { bottom: 22%; left: 12%; animation-delay: 2.8s; background: var(--cyan); }

@keyframes sparkOrbit {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.4) rotate(180deg); opacity: 1; }
}

.hero-logo {
  width: 86%;
  border-radius: 28px;
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink), 0 0 60px rgba(77, 232, 255, 0.25);
  animation: logoFloat 4.5s ease-in-out infinite;
  background: var(--blue-bright);
  transition: transform 0.2s ease;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

.candle-strip {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 70px;
  opacity: 0.85;
}

.candle-strip i {
  display: block;
  width: 10px;
  height: var(--h);
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--cyan), #1fd18a);
  box-shadow: 2px 2px 0 var(--ink);
  animation: candlePulse 2.2s ease-in-out infinite;
}

.candle-strip i:nth-child(odd) {
  background: linear-gradient(180deg, #ff8a8a, #ff4d4d);
  animation-delay: 0.4s;
}

.candle-strip i:nth-child(3n) { animation-delay: 0.8s; }

@keyframes candlePulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.18); }
}

/* Stats */
.stats-rail {
  padding: 0 clamp(1rem, 4vw, 2.5rem) 2rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.stat-card {
  padding: 1.2rem 1rem;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 122, 24, 0.2), rgba(8, 30, 120, 0.85));
  box-shadow: var(--shadow-hard);
  text-align: center;
  transition: transform 0.25s ease;
}

.stat-card:hover { transform: translateY(-8px) rotate(-1deg); }

.stat-label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--cyan-soft);
  margin-bottom: 0.35rem;
}

.stat-value {
  display: block;
  font-family: var(--font-stonk);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--ink);
}

.stat-card small {
  display: block;
  margin-top: 0.4rem;
  color: rgba(220, 235, 255, 0.75);
  font-size: 0.82rem;
}

/* Dividers */
.divider-arrow {
  max-width: 1100px;
  margin: 0.5rem auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.divider-arrow svg {
  width: 100%;
  height: 48px;
  display: block;
  animation: waveShift 5s ease-in-out infinite;
}

.divider-arrow.flip svg { animation-direction: reverse; }

@keyframes waveShift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--cyan);
}

.section-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-stonk);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  letter-spacing: 0.06em;
  color: var(--orange);
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--ink);
}

.section-sub {
  margin: 0 auto;
  max-width: 36rem;
  color: rgba(210, 230, 255, 0.85);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* About */
.about-story {
  max-width: 1100px;
  margin: 0 auto 1.75rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem;
  border: 4px solid var(--ink);
  border-radius: 24px;
  background: rgba(6, 24, 100, 0.7);
  box-shadow: var(--shadow-hard);
}

.story-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.story-logo {
  width: min(100%, 280px);
  border-radius: 22px;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  animation: logoFloat 5s ease-in-out infinite;
}

.story-badge {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  padding: 0.35rem 0.75rem;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-stonk);
  letter-spacing: 0.06em;
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}

.story-copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-stonk);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.story-copy p { margin: 0 0 0.85rem; color: rgba(225, 238, 255, 0.9); }

.story-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.story-list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35rem;
  width: 0.7rem; height: 0.7rem;
  background: var(--orange);
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.panel {
  padding: 1.4rem 1.2rem;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel:hover {
  transform: translate(-4px, -6px) rotate(-0.5deg);
  box-shadow: 10px 12px 0 var(--ink);
}

.panel h3 {
  margin: 0.7rem 0 0.45rem;
  font-family: var(--font-stonk);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
}

.panel p { margin: 0; color: rgba(220, 235, 255, 0.88); font-size: 0.95rem; }

.panel-icon {
  width: 52px; height: 52px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--orange);
  position: relative;
  box-shadow: 3px 3px 0 var(--ink);
}

.panel-icon.arrow-up::before {
  content: "";
  position: absolute;
  inset: 12px 16px 10px;
  background: var(--ink);
  clip-path: polygon(50% 0, 100% 55%, 68% 55%, 68% 100%, 32% 100%, 32% 55%, 0 55%);
}

.panel-icon.candle { background: var(--cyan); }
.panel-icon.candle::before,
.panel-icon.candle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
}
.panel-icon.candle::before { top: 8px; width: 3px; height: 36px; }
.panel-icon.candle::after { top: 16px; width: 16px; height: 22px; border-radius: 3px; }

.panel-icon.moon { background: #7aa7ff; }
.panel-icon.moon::before {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  top: 12px; left: 14px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 8px -2px 0 0 #f4f8ff;
}

.panel-icon.suit { background: #2a2a2a; }
.panel-icon.suit::before {
  content: "";
  position: absolute;
  left: 50%; top: 10px;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 28px solid #1a56e8;
}

/* Tokenomics */
.token-layout {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.token-ring-wrap { display: grid; place-items: center; }

.token-ring {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
}

.ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 16;
}

.ring-fill {
  fill: none;
  stroke: url(#none);
  stroke: var(--orange);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 490;
  stroke-dashoffset: 490;
  transition: stroke-dashoffset 1.6s ease;
}

.token-ring.in .ring-fill { stroke-dashoffset: 0; }

.ring-core {
  position: absolute;
  inset: 18%;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: rgba(8, 30, 120, 0.9);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.15rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.ring-core img {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

.ring-core strong {
  font-family: var(--font-stonk);
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  line-height: 1;
}

.ring-core span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--cyan-soft);
}

.token-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.token-card {
  padding: 1.15rem;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-hard);
  transition: transform 0.25s ease;
}

.token-card:hover { transform: translateY(-6px); }

.token-pct {
  font-family: var(--font-stonk);
  font-size: 1.8rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
}

.token-card h3 {
  margin: 0.25rem 0 0.4rem;
  font-family: var(--font-stonk);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.token-card p { margin: 0; color: rgba(220, 235, 255, 0.85); font-size: 0.92rem; }
.token-card .mono {
  font-family: ui-monospace, monospace;
  color: var(--cyan);
  word-break: break-all;
}

.mission-track {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem;
  border: 4px solid var(--ink);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(255, 122, 24, 0.14), rgba(77, 232, 255, 0.1));
  box-shadow: var(--shadow-hard);
}

.mission-title {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--font-stonk);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
}

.mission-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.mission-step {
  padding: 1rem;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: rgba(4, 18, 70, 0.75);
  position: relative;
  overflow: hidden;
}

.mission-step::after {
  content: "";
  position: absolute;
  right: -8px; top: 40%;
  width: 18px; height: 4px;
  background: var(--orange);
}

.mission-step:last-child::after { display: none; }

.m-num {
  font-family: var(--font-stonk);
  color: var(--orange);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.mission-step h4 {
  margin: 0.25rem 0 0.35rem;
  font-family: var(--font-stonk);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.mission-step p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(220, 235, 255, 0.85);
}

/* How to buy */
.buy-pipeline {
  max-width: 860px;
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.buy-pipeline span {
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.buy-pipeline span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: translateX(-100%);
  animation: pipeFill 2.8s ease-in-out infinite;
}

.buy-pipeline span:nth-child(2)::after { animation-delay: 0.25s; }
.buy-pipeline span:nth-child(3)::after { animation-delay: 0.5s; }
.buy-pipeline span:nth-child(4)::after { animation-delay: 0.75s; }

@keyframes pipeFill {
  0% { transform: translateX(-100%); }
  40%, 60% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.buy-steps {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 860px;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.3rem;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-hard);
  transition: transform 0.25s ease;
}

.step:hover { transform: translateX(10px); }

.step-num {
  font-family: var(--font-stonk);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  line-height: 1;
}

.step-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.step-body h3 {
  margin: 0;
  font-family: var(--font-stonk);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.step-body p { margin: 0; color: rgba(220, 235, 255, 0.88); }

.buy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Chart */
.chart-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.chart-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(92, 255, 154, 0.15);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-pill i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5cff9a;
  box-shadow: 0 0 10px #5cff9a;
  animation: liveBlink 1.2s ease-in-out infinite;
}

.chart-ca {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--cyan-soft);
}

.chart-open {
  padding: 0.35rem 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-stonk);
  letter-spacing: 0.05em;
  box-shadow: 3px 3px 0 var(--ink);
}

.chart-frame {
  border: 5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-hard), 0 0 40px rgba(77, 232, 255, 0.18);
  background: #0b1220;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  position: relative;
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(77, 232, 255, 0.25);
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
  animation: framePulse 3s ease-in-out infinite;
}

@keyframes framePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Join */
.joinus { padding-bottom: 5rem; }

.banner-wrap {
  margin: 0 auto 1rem;
  max-width: 1100px;
  aspect-ratio: 3 / 1;
  border: 5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-hard), 0 0 50px rgba(255, 122, 24, 0.22);
  position: relative;
}

.banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.14) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: sheen 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sheen {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.join-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.banner-wrap:hover .join-banner { transform: scale(1.06); }

.banner-caption {
  position: absolute;
  left: 12px; bottom: 10px;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(4, 16, 70, 0.85);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.join-manifesto {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 1.25rem 1.4rem;
  border: 4px solid var(--ink);
  border-radius: 18px;
  background: rgba(8, 28, 110, 0.72);
  box-shadow: var(--shadow-hard);
}

.join-manifesto h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-stonk);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.rule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.rule-grid p {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: rgba(3, 14, 60, 0.7);
}

.rule-grid strong {
  font-family: var(--font-stonk);
  color: var(--cyan);
  margin-right: 0.4rem;
  letter-spacing: 0.04em;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.social-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(8, 30, 120, 0.78);
  box-shadow: var(--shadow-hard);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.social-tile:hover {
  transform: translate(-4px, -6px);
  background: linear-gradient(160deg, rgba(255, 122, 24, 0.9), rgba(26, 86, 232, 0.95));
  box-shadow: 10px 12px 0 var(--ink);
}

.social-tile span {
  font-family: var(--font-stonk);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}

.social-tile small {
  color: rgba(220, 235, 255, 0.75);
  font-size: 0.85rem;
}

.social-tile:hover small { color: rgba(10, 10, 10, 0.75); }

/* Float buy */
.float-buy {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-hot), var(--orange));
  color: var(--ink);
  font-family: var(--font-stonk);
  letter-spacing: 0.05em;
  box-shadow: 5px 5px 0 var(--ink);
  animation: floatBuy 2.8s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.float-buy img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

@keyframes floatBuy {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Footer */
.site-footer {
  border-top: 4px solid var(--ink);
  background: rgba(2, 10, 40, 0.92);
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  color: rgba(190, 210, 240, 0.7);
  font-size: 0.9rem;
}

.footer-links { display: flex; gap: 0.55rem; }

.footer-links a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--blue-bright);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
  background: var(--orange);
  transform: translate(-2px, -2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .about-grid,
  .stats-inner,
  .mission-steps,
  .social-row {
    grid-template-columns: 1fr 1fr;
  }

  .mission-step::after { display: none; }
}

@media (max-width: 960px) {
  body { cursor: auto; }
  .cursor-glow { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-copy { order: 2; }
  .hero-visual { order: 1; }

  .hero-ctas, .ca-bar, .hero-kicker, .hero-chip-row {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .ca-bar { flex-wrap: wrap; }

  .about-story,
  .token-layout {
    grid-template-columns: 1fr;
  }

  .nav {
    position: fixed;
    top: 90px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    border: 4px solid var(--ink);
    border-radius: 16px;
    background: rgba(6, 24, 90, 0.96);
    box-shadow: var(--shadow-hard);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  }

  .nav a:last-child { border-bottom: 0; }
  .menu-toggle { display: flex; }
  .header-buy { display: none; }
  .hero-arrow.a2 { display: none; }
}

@media (max-width: 640px) {
  .stats-inner,
  .about-grid,
  .token-cards,
  .mission-steps,
  .social-row,
  .rule-grid {
    grid-template-columns: 1fr;
  }

  .site-header { top: 30px; }
  .title-stroke { -webkit-text-stroke: 3px var(--ink); }
  .chart-frame { aspect-ratio: 4 / 5; min-height: 360px; }
  .hero-arrow.a1 { display: none; }
  .float-buy span { display: none; }
  .float-buy { padding: 0.45rem; }
  .banner-caption { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
