/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-main: #050815;
  --bg-dark: #080d1f;
  --bg-card: #101831;
  --line: #26355f;
  --text-main: #eef3ff;
  --text-muted: #9aa7ca;
  --brand-cyan: #2ecc71;
  --brand-pink: #ff2a2a;
  --brand-purple: #1f8f4d;
  --brand-glow: rgba(255, 42, 42, 0.35);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(
      circle at 18% -10%,
      rgba(46, 204, 113, 0.16),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% -15%,
      rgba(255, 42, 42, 0.13),
      transparent 36%
    ),
    var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  cursor: none;
  width: 100%;
  max-width: 100vw;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* === CA BANNER === */
.ca-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
  font-family: "Space Mono", monospace;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
}
.ca-banner.visible {
  display: flex;
}
.ca-banner-label {
  font-weight: 700;
  color: #071226;
  flex-shrink: 0;
}
.ca-banner-addr {
  color: #071226;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ca-banner-copy {
  background: #0b1430;
  color: var(--brand-cyan);
  border: none;
  padding: 3px 10px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 3px;
  transition: opacity 0.3s;
}
.ca-banner-copy:hover {
  opacity: 0.8;
}

/* === CUSTOM CURSOR === */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}
.custom-cursor.active {
  transform: translate(-50%, -50%) scale(1);
}
.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
}

/* === ENTRY GATE === */
.gate {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, #050712, #0a1130 70%);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gate-inner {
  text-align: center;
}
.gate-text {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: clamp(100px, 15vw, 360px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--brand-cyan);
  text-shadow: 2px 2px 0 #050914, 5px 5px 0 var(--brand-purple),
    0 0 40px var(--brand-glow);
  animation: gatePulse 0.8s ease-in-out infinite alternate;
}
.gate-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation: blink 1.5s ease-in-out infinite;
}
/* Entry hide handled by GSAP */

@keyframes gatePulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
    text-shadow: 2px 2px 0 #050914, 5px 5px 0 var(--brand-purple),
      0 0 80px rgba(63, 216, 255, 0.7);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(7, 12, 29, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(143, 107, 255, 0.22);
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}
.navbar.visible {
  transform: translateY(0);
}
.nav-logo {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-cyan);
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-sound {
  background: none;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  padding: 8px 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-sound:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
  padding-bottom: 14vh;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(46, 204, 113, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 42, 42, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.hero-title-wrap {
  position: relative;
  display: inline-block;
}
.hero-title {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: clamp(48px, 9.5vw, 160px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--brand-cyan);
  position: relative;
  line-height: 0.9;
  white-space: nowrap;
  text-shadow: 2px 2px 0 #050914, 5px 5px 0 var(--brand-purple),
    0 0 40px var(--brand-glow);
}
@keyframes glitchTop {
  0%,
  90%,
  100% {
    transform: translate(0);
  }
  92% {
    transform: translate(-8px, -2px);
  }
  94% {
    transform: translate(8px, 2px);
  }
  96% {
    transform: translate(-4px, 1px);
  }
}
@keyframes glitchBottom {
  0%,
  90%,
  100% {
    transform: translate(0);
  }
  91% {
    transform: translate(6px, 1px);
  }
  93% {
    transform: translate(-6px, -1px);
  }
  95% {
    transform: translate(3px, 2px);
  }
}
.hero-subtitle {
  font-size: clamp(12px, 2vw, 18px);
  letter-spacing: 6px;
  color: var(--brand-pink);
  margin-top: 20px;
  text-transform: uppercase;
}
.hero-chars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-char {
  position: absolute;
  width: clamp(220px, 32vw, 520px);
  height: auto;
  filter: grayscale(1) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  will-change: transform, filter;
  transform-origin: center bottom;
  transition: filter 0.18s ease-out;
}
.hc-left {
  left: 2vw;
  bottom: -47vh;
  width: clamp(260px, 38vw, 620px);
  transform: translateZ(0);
}
.hc-right {
  right: 6vw;
  bottom: -33vh;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-btn {
  padding: 14px 28px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.btn-x {
  background: rgba(63, 216, 255, 0.12);
  color: var(--brand-cyan);
  border: 2px solid var(--brand-cyan);
}
.btn-x:hover {
  background: var(--brand-cyan);
  color: #061125;
}
.btn-tg {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--line);
}
.btn-tg:hover {
  background: rgba(143, 107, 255, 0.2);
  border-color: var(--brand-purple);
  color: #fff;
}
.btn-buy {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: #fff;
  border: 2px solid transparent;
}
.btn-buy:hover {
  background: linear-gradient(90deg, #ff65ae, #9c7dff);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 76, 160, 0.35);
}

/* Hero Ticker */
.hero-ticker {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  margin-top: 60px;
  border-top: 1px solid rgba(63, 216, 255, 0.15);
  border-bottom: 1px solid rgba(143, 107, 255, 0.15);
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 20s linear infinite;
}
.ticker-track span {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--brand-cyan);
  white-space: nowrap;
  text-transform: uppercase;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  animation: blink 2s ease-in-out infinite;
}
.scroll-arrow {
  font-size: 20px;
  margin-top: 8px;
}

/* === SECTIONS === */
.section {
  padding: 120px 40px;
  position: relative;
}
.section-dark {
  background: var(--bg-dark);
}
.section-scenarios {
  background: var(--bg-main);
}
.section-tokenomics {
  background: linear-gradient(135deg, #060a1a 0%, #111533 100%);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === ABOUT CARDS === */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.about-card:hover {
  border-color: var(--brand-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(63, 216, 255, 0.12);
}
.about-card:hover .about-flash {
  opacity: 1;
  transform: scale(1);
}
.about-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  filter: grayscale(1);
  transition: filter 0.3s;
}
.about-card:hover .about-img {
  filter: grayscale(0);
}
.about-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--brand-cyan);
}
.about-card p {
  font-size: 14px;
  color: var(--text-muted);
}
.about-flash {
  position: absolute;
  inset: 0;
  background: rgba(143, 107, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 60px;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
  cursor: pointer;
}

/* About quote */
.about-quote {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-card);
}
.about-quote p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-main);
}
.about-quote p + p {
  margin-top: 1.25rem;
}
.about-quote span {
  display: block;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 12px;
}
.about-banner {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.about-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* === SCENARIOS === */
.scenarios-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scenario {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}
.scenario:hover {
  border-color: var(--brand-cyan);
  background: #121e3f;
  transform: translateX(8px);
}
.scenario:hover .scenario-flash {
  opacity: 1;
  color: var(--brand-pink);
}
.scenario-emoji {
  width: 64px;
  height: 64px;
  margin-right: 24px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-purple));
  color: #071226;
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  border-radius: 6px;
  box-shadow: 4px 4px 0 rgba(255, 76, 160, 0.65), 4px 4px 0 1px #070d1f;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}
.scenario:hover .scenario-emoji {
  transform: rotate(0deg) scale(1.05);
}
.scenario-text {
  flex: 1;
  font-size: 18px;
  color: var(--text-main);
}
.scenario-flash {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #506191;
  opacity: 0.3;
  transition: all 0.3s;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.4s;
}
.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--brand-cyan);
  box-shadow: 0 10px 40px rgba(63, 216, 255, 0.15);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: filter 0.3s;
}
.gallery-item:hover img {
  filter: grayscale(0);
}
.gallery-feature {
  grid-column: 1 / -1;
}
.gallery-feature img {
  aspect-ratio: 16 / 6;
}
.gallery-feature .gallery-caption {
  font-size: 18px;
  padding: 28px 24px;
}
.gallery-empty {
  aspect-ratio: 1;
  border: 2px dashed rgba(63, 216, 255, 0.25);
  background: rgba(63, 216, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  color: rgba(63, 216, 255, 0.45);
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 4px;
  text-align: center;
}
.gallery-empty:hover {
  transform: none;
  border-color: rgba(63, 216, 255, 0.5);
  box-shadow: none;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(
    transparent 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.95) 100%
  );
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.8);
}
.gallery-caption strong {
  color: var(--brand-cyan);
  font-size: 18px;
  text-shadow: 0 0 8px var(--brand-glow);
}

/* === TOKENOMICS === */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.token-stat {
  text-align: center;
  padding: 40px 20px;
  background: rgba(63, 216, 255, 0.06);
  border: 1px solid rgba(63, 216, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s;
}
.token-stat:hover {
  background: rgba(63, 216, 255, 0.12);
  border-color: var(--brand-pink);
  transform: translateY(-4px);
}
.token-number {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--brand-cyan);
  margin-bottom: 8px;
}
.token-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.token-sub {
  font-size: 11px;
  color: #7384ad;
  font-style: italic;
}

/* Contract Address */
.token-ca {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  flex-wrap: wrap;
}
.ca-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
}
.ca-address {
  font-size: 14px;
  color: var(--brand-cyan);
  background: #151f40;
  padding: 8px 16px;
  border-radius: 6px;
}
.ca-copy {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.ca-copy:hover {
  background: linear-gradient(90deg, #ff65ae, #9c7dff);
  transform: scale(1.05);
}

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.3s;
}
.step:hover {
  border-color: var(--brand-cyan);
  transform: translateY(-4px);
}
.step-number {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--brand-pink);
  opacity: 0.3;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}
.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step p a {
  color: var(--brand-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.step p a:hover {
  color: var(--brand-pink);
}
.step strong {
  color: var(--brand-cyan);
}

/* === FOOTER === */
.footer {
  padding: 60px 40px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}
.footer-logo {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-cyan);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--brand-pink);
}
.footer-copy {
  font-size: 11px;
  color: #506191;
}
.footer-strip {
  padding: 20px 0;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100vw;
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  color: rgba(16, 24, 49, 0.85);
  animation: tickerScroll 15s linear infinite;
  display: flex;
  width: max-content;
}
.footer-strip span {
  margin-right: 20px;
}

/* === MONEY CANVAS === */
#moneyCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

/* === REVEAL ANIMATIONS === */
.reveal-text {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.reveal-text.revealed {
  clip-path: inset(0 0% 0 0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* === NOISE OVERLAY === */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 99998;
  opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-grid,
  .tokenomics-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .navbar {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  .section {
    padding: 80px 20px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .about-grid,
  .tokenomics-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  /* Push hero content below the fixed CA banner + nav */
  .hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }
  .hero-char.hc-left {
    display: none;
  }
  /* Promote the right char out of absolute positioning so it flows below
     the buttons + ticker as the last item in hero-content */
  .hero-chars {
    display: contents;
  }
  .hero-char.hc-right {
    position: relative;
    display: block;
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
    margin: 24px auto 0;
    width: 70vw;
    max-width: 320px;
  }
}

/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
  body {
    cursor: auto;
  }
  * {
    cursor: auto !important;
  }
}
