/* ============================================================
   BONKSTRIKE ($BSTK) — neon cyber-ninja theme
   ============================================================ */

:root {
  --bg: #050a18;
  --bg-2: #081020;
  --bg-3: #0b1730;
  --cyan: #4ee1ff;
  --cyan-soft: #7eeaff;
  --cyan-dim: rgba(78, 225, 255, 0.14);
  --orange: #f5a04a;
  --orange-deep: #e0812a;
  --text: #dbe7ff;
  --text-dim: #8fa3c8;
  --stroke: rgba(78, 225, 255, 0.22);
  --card: rgba(11, 23, 48, 0.72);
  --font-display: "Bungee", cursive;
  --font-body: "Space Grotesk", sans-serif;
  --shadow-cyan: 0 0 24px rgba(78, 225, 255, 0.45);
  --shadow-cyan-lg: 0 0 60px rgba(78, 225, 255, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: clamp(80px, 12vh, 140px) 0; position: relative; }

::selection { background: var(--cyan); color: var(--bg); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan), var(--orange)); border-radius: 8px; }

/* ============ GRAIN OVERLAY ============ */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 95;
  pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  width: 110px; height: 110px; margin: 0 auto 22px;
  border-radius: 26px;
  animation: preloader-bob 0.9s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 30px rgba(78, 225, 255, 0.6));
}
@keyframes preloader-bob {
  from { transform: translateY(0) rotate(-4deg) scale(0.96); }
  to   { transform: translateY(-14px) rotate(4deg) scale(1.02); }
}
.preloader-bar {
  width: 180px; height: 5px; margin: 0 auto 14px;
  background: rgba(78, 225, 255, 0.15);
  border-radius: 99px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 99px;
  animation: preloader-fill 1.4s ease forwards;
}
@keyframes preloader-fill { to { width: 100%; } }
.preloader-text {
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.25em; color: var(--cyan);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }

/* ============ PARTICLES ============ */
#stars {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ============ BONK LAYER (click shockwaves) ============ */
#bonk-layer { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.bonk-wave {
  position: absolute; width: 12px; height: 12px;
  border: 2px solid var(--cyan); border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: bonk-wave 0.6s ease-out forwards;
}
.bonk-word {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.9rem; color: var(--orange);
  transform: translate(-50%, -50%);
  text-shadow: 0 0 12px rgba(245, 160, 74, 0.8);
  animation: bonk-word 0.7s ease-out forwards;
}
@keyframes bonk-wave {
  to { width: 90px; height: 90px; opacity: 0; }
}
@keyframes bonk-word {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4) rotate(-8deg); }
  30% { opacity: 1; transform: translate(-50%, -80%) scale(1.15) rotate(4deg); }
  100% { opacity: 0; transform: translate(-50%, -160%) scale(1) rotate(-4deg); }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 110;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  box-shadow: 0 0 12px rgba(78, 225, 255, 0.7);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(5, 10, 24, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--stroke), 0 10px 40px rgba(0, 0, 0, 0.45);
  padding-top: 10px; padding-bottom: 10px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img {
  width: 44px; height: 44px; border-radius: 12px;
  box-shadow: var(--shadow-cyan);
  transition: transform 0.3s ease;
}
.nav-brand:hover img { transform: rotate(-10deg) scale(1.08); }
.nav-brand span {
  font-family: var(--font-display); font-size: 1.05rem; color: #fff; letter-spacing: 0.04em;
}
.nav-brand em { font-style: normal; color: var(--cyan); }
.nav-links { display: flex; gap: clamp(16px, 3vw, 36px); }
.nav-links a {
  color: var(--text-dim); font-weight: 600; font-size: 0.95rem;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--orange));
  transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav-burger span { width: 26px; height: 3px; background: var(--cyan); border-radius: 2px; transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5, 10, 24, 0.96); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; visibility: hidden; transition: 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu > a {
  font-family: var(--font-display); font-size: 1.4rem; color: #fff;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.05em;
  padding: 13px 26px; border-radius: 14px;
  position: relative; overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn img { width: 20px; height: 20px; }
.btn-lg { font-size: 0.95rem; padding: 17px 34px; border-radius: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #2ea8d8 100%);
  color: #04121f;
  box-shadow: 0 6px 24px rgba(78, 225, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 44px rgba(78, 225, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary::before {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3.2s ease infinite;
}
@keyframes btn-shine {
  0%, 60% { left: -80%; }
  100% { left: 160%; }
}
.btn-ghost {
  background: rgba(78, 225, 255, 0.06);
  color: var(--cyan);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(78, 225, 255, 0.14);
  box-shadow: 0 8px 30px rgba(78, 225, 255, 0.25);
  border-color: var(--cyan);
}
.btn:active { transform: translateY(1px) scale(0.98); }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
  padding: 130px 0 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none;
}
.hero-glow-1 {
  width: 620px; height: 620px; top: -180px; right: -140px;
  background: rgba(78, 225, 255, 0.16);
  animation: glow-drift 9s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 480px; height: 480px; bottom: -200px; left: -120px;
  background: rgba(245, 160, 74, 0.10);
  animation: glow-drift 11s ease-in-out infinite alternate-reverse;
}
@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, 40px) scale(1.15); }
}

.hero-inner {
  width: min(1180px, 92%); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 40px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 99px;
  border: 1px solid var(--stroke);
  background: var(--cyan-dim);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.22em; color: var(--cyan);
  margin-bottom: 26px;
}
.hero-badge img { width: 16px; height: 16px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9.5vw, 7.4rem);
  line-height: 0.98; color: #fff;
  text-shadow: 0 0 40px rgba(78, 225, 255, 0.35);
  margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-title .stroke {
  color: transparent;
  -webkit-text-stroke: 3px var(--cyan);
  text-shadow: 0 0 34px rgba(78, 225, 255, 0.5);
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: var(--text-dim); margin-bottom: 30px; max-width: 480px;
}
.hero-sub strong { color: var(--orange); }

/* CA pill */
.ca-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 14px; margin-bottom: 30px;
  background: var(--card); border: 1px solid var(--stroke);
  cursor: pointer; max-width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ca-pill:hover { border-color: var(--cyan); box-shadow: var(--shadow-cyan); }
.ca-label {
  font-family: var(--font-display); font-size: 0.7rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #1a0e02; padding: 5px 10px; border-radius: 8px;
}
.ca-value {
  font-size: 0.88rem; color: var(--text-dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ca-copy {
  background: none; border: 0; color: var(--cyan); cursor: pointer;
  display: grid; place-items: center; padding: 4px;
  transition: transform 0.2s;
}
.ca-copy:hover { transform: scale(1.2); }
.ca-pill.copied { border-color: #51e08a; box-shadow: 0 0 24px rgba(81, 224, 138, 0.4); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-partners span {
  display: block; font-size: 0.68rem; letter-spacing: 0.3em;
  color: var(--text-dim); margin-bottom: 14px; font-weight: 700;
}
.partner-icons { display: flex; gap: 22px; align-items: center; }
.partner-icons img {
  width: 30px; height: 30px; opacity: 0.65;
  filter: grayscale(0.4);
  transition: opacity 0.25s, transform 0.25s, filter 0.25s;
}
.partner-icons img:hover {
  opacity: 1; transform: translateY(-4px) scale(1.15); filter: none;
}

/* Hero art */
.hero-art { position: relative; display: grid; place-items: center; }
.hero-mascot {
  width: min(430px, 82%);
  border-radius: 36px;
  position: relative; z-index: 2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), var(--shadow-cyan-lg);
  will-change: transform;
}
.hero-art-ring {
  position: absolute; z-index: 1;
  width: 112%; aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(78, 225, 255, 0.3);
  animation: ring-spin 26s linear infinite;
}
.hero-art-ring.ring-2 {
  width: 130%; border-color: rgba(245, 160, 74, 0.18);
  animation-direction: reverse; animation-duration: 40s;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.hero-paws .paw {
  position: absolute; z-index: 3; font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(78, 225, 255, 0.8));
  animation: paw-float 5s ease-in-out infinite;
}
.paw.p1 { top: 6%; left: 4%; animation-delay: 0s; }
.paw.p2 { bottom: 12%; right: 2%; animation-delay: 1.4s; font-size: 2rem; }
.paw.p3 { top: 40%; right: -6%; animation-delay: 2.6s; font-size: 1.2rem; }
@keyframes paw-float {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-18px) rotate(12deg); }
}

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid var(--stroke); border-radius: 16px;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 4px; background: var(--cyan);
  animation: scroll-dot 1.6s ease infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ MARQUEE ============ */
.marquee-wrap {
  position: relative; z-index: 2;
  transform: rotate(-1.6deg) scale(1.02);
  border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke);
  background: linear-gradient(90deg, rgba(78, 225, 255, 0.08), rgba(245, 160, 74, 0.08), rgba(78, 225, 255, 0.08));
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.marquee-wrap.flip { transform: rotate(1.4deg) scale(1.02); }
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; gap: 34px; align-items: center;
  padding: 15px 0; white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee-track span {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 34px;
}
.marquee-track span.alt { color: var(--orange); }
.marquee-track img { width: 22px; height: 22px; border-radius: 6px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTION HEADERS ============ */
.section-tag {
  display: inline-block; font-weight: 700; letter-spacing: 0.28em;
  color: var(--orange); font-size: 0.75rem; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  color: #fff; line-height: 1.08;
  margin-bottom: 18px;
}
.section-title .accent {
  color: var(--cyan);
  text-shadow: 0 0 26px rgba(78, 225, 255, 0.55);
}
.section-head { text-align: center; margin-bottom: clamp(40px, 7vh, 70px); }

/* ============ ABOUT ============ */
.about { z-index: 1; }
.about-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.banner-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 50px rgba(78, 225, 255, 0.18);
}
.banner-frame img { transition: transform 0.6s ease; }
.banner-frame:hover img { transform: scale(1.05); }
.banner-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.14) 48%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.9s ease;
  pointer-events: none;
}
.banner-frame:hover .banner-shine { transform: translateX(120%); }

.about-copy .lead { font-size: 1.12rem; color: var(--text); margin-bottom: 16px; }
.about-copy p { color: var(--text-dim); margin-bottom: 16px; }
.about-copy strong { color: var(--cyan); }
.about-copy em { color: var(--orange); font-style: normal; }

.about-points { list-style: none; margin: 26px 0 32px; display: grid; gap: 14px; }
.about-points li {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 18px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--stroke);
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.about-points li:hover {
  transform: translateX(8px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.pt-ico { font-size: 1.5rem; filter: drop-shadow(0 0 8px rgba(78, 225, 255, 0.5)); }
.about-points strong { color: #fff; }
.about-points div { color: var(--text-dim); }

/* ============ TOKENOMICS ============ */
.tokenomics {
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(78, 225, 255, 0.07), transparent 60%),
    radial-gradient(700px 400px at 10% 100%, rgba(245, 160, 74, 0.06), transparent 60%);
}
.tok-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.tok-card {
  padding: 34px 26px; border-radius: 22px;
  background: var(--card); border: 1px solid var(--stroke);
  text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
  will-change: transform;
}
.tok-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: 22px;
  background: linear-gradient(140deg, rgba(78, 225, 255, 0.35), transparent 40%, transparent 60%, rgba(245, 160, 74, 0.3));
  opacity: 0; transition: opacity 0.35s;
  z-index: 0; pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}
.tok-card:hover::before { opacity: 1; }
.tok-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(78, 225, 255, 0.2);
}
.tok-ico {
  font-size: 2.2rem; margin-bottom: 14px;
  filter: drop-shadow(0 0 12px rgba(78, 225, 255, 0.5));
}
.tok-value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--cyan);
  text-shadow: 0 0 22px rgba(78, 225, 255, 0.5);
  margin-bottom: 6px;
}
.tok-label {
  font-weight: 700; color: #fff; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.82rem; margin-bottom: 10px;
}
.tok-card p { color: var(--text-dim); font-size: 0.9rem; }

.ticker-strip {
  margin-top: 46px; text-align: center;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
  font-family: var(--font-display); font-size: 0.85rem;
  color: var(--text-dim); letter-spacing: 0.1em;
}
.ticker-strip .dot { color: var(--orange); }

/* ============ HOW TO BUY ============ */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.how-card {
  position: relative;
  padding: 40px 26px 32px; border-radius: 22px;
  background: var(--card); border: 1px solid var(--stroke);
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
.how-card:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-cyan);
}
.how-step {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-size: 2rem;
  color: transparent; -webkit-text-stroke: 1.5px rgba(78, 225, 255, 0.35);
}
.how-ico {
  width: 52px; height: 52px; margin-bottom: 20px;
  filter: drop-shadow(0 0 14px rgba(78, 225, 255, 0.4));
}
.how-ico-logo { border-radius: 14px; }
.how-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; color: #fff; margin-bottom: 10px;
}
.how-card p { color: var(--text-dim); font-size: 0.92rem; }
.how-card a { font-weight: 600; border-bottom: 1px dashed rgba(78, 225, 255, 0.4); }

/* ============ ROADMAP ============ */
.roadmap {
  background: radial-gradient(600px 380px at 50% 0%, rgba(78, 225, 255, 0.06), transparent 60%);
}
.road-line {
  position: relative; height: 4px; border-radius: 4px;
  background: rgba(78, 225, 255, 0.12);
  margin: 0 8% 46px;
  overflow: hidden;
}
.road-line span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  box-shadow: 0 0 16px rgba(78, 225, 255, 0.8);
  border-radius: 4px;
}
.road-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.road-card {
  padding: 34px 28px; border-radius: 22px;
  background: var(--card); border: 1px solid var(--stroke);
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
.road-card::before {
  content: ""; position: absolute; top: -46px; left: 50%; margin-left: -7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 14px rgba(78, 225, 255, 0.9);
}
.road-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-cyan);
}
.road-phase {
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--orange); margin-bottom: 12px;
}
.road-card h3 {
  font-family: var(--font-display); font-size: 1.12rem; color: #fff; margin-bottom: 16px;
}
.road-card ul { list-style: none; display: grid; gap: 10px; }
.road-card li {
  color: var(--text-dim); font-size: 0.94rem;
  padding-left: 22px; position: relative;
}
.road-card li::before {
  content: "▸"; position: absolute; left: 0; color: var(--cyan);
}

/* ============ COMMUNITY ============ */
.community { text-align: center; overflow: hidden; }
.community-glow {
  position: absolute; left: 50%; top: 50%;
  width: 720px; height: 720px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(78, 225, 255, 0.14) 0%, transparent 60%);
  pointer-events: none;
  animation: pulse-glow 4.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
}
.community-logo {
  width: 130px; height: 130px; margin: 0 auto 28px;
  border-radius: 30px;
  box-shadow: var(--shadow-cyan-lg);
  animation: mascot-bob 3.4s ease-in-out infinite;
}
@keyframes mascot-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
.community-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 14px;
}
.community-title .accent { color: var(--cyan); text-shadow: 0 0 30px rgba(78, 225, 255, 0.6); }
.community p { color: var(--text-dim); margin-bottom: 34px; font-size: 1.08rem; }
.community-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--stroke);
  padding: 48px 0 30px;
  background: linear-gradient(180deg, transparent, rgba(8, 16, 32, 0.9));
  position: relative; z-index: 1;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 28px;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--stroke);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.footer-links a:hover {
  transform: translateY(-4px) rotate(-6deg);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.footer-links img { width: 20px; height: 20px; }
.disclaimer {
  color: var(--text-dim); font-size: 0.8rem; max-width: 640px; margin-bottom: 16px;
}
.copyright { color: var(--text-dim); font-size: 0.85rem; font-weight: 600; }

/* ============ REVEAL DEFAULTS (JS toggles) ============ */
[data-reveal] { opacity: 0; will-change: transform, opacity; }
.no-js [data-reveal], [data-reveal].revealed { opacity: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .tok-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
  .road-grid { grid-template-columns: 1fr; }
  .road-line { display: none; }
  .road-card::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 560px; }
  .hero-art { order: -1; margin-top: 20px; }
  .hero-mascot { width: min(300px, 64%); }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .tok-grid, .how-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .hero-ctas { justify-content: center; }
  .ca-value { max-width: 180px; }
}

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