/* ============================================================
   ZORO INU ($ZORO) — The Warrior of BNB Chain
   Black · Neon Green · BNB Gold · Image-forward redesign
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg:          #05070a;
  --bg-2:        #0a0f12;
  --bg-3:        #0e1418;
  --panel:       rgba(255, 255, 255, 0.035);
  --panel-2:     rgba(255, 255, 255, 0.06);

  --green:       #25e26a;
  --green-bright:#4dff9e;
  --green-soft:  #19c46a;
  --gold:        #f3ba2f;
  --gold-bright: #ffd24a;

  --text:        #eafff3;
  --muted:       #93a89d;
  --faint:       #5d6f66;

  --border:      rgba(43, 255, 136, 0.14);
  --border-2:    rgba(255, 255, 255, 0.08);

  --radius:      18px;
  --radius-lg:   26px;
  --radius-sm:   12px;

  --shadow-green: 0 0 40px rgba(37, 226, 106, 0.30);
  --shadow-gold:  0 0 40px rgba(243, 186, 47, 0.28);

  --font-display: 'Orbitron', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --maxw: 1180px;
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(37, 226, 106, 0.3); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- Background layers ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 226, 106, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 226, 106, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 25%, transparent 80%);
}
.bg-glow {
  position: fixed; z-index: -3; border-radius: 50%; filter: blur(120px); pointer-events: none; opacity: 0.5;
}
.bg-glow--1 { width: 520px; height: 520px; background: #0c6b3c; top: -160px; left: -140px; animation: drift1 20s ease-in-out infinite; }
.bg-glow--2 { width: 460px; height: 460px; background: #8a6510; bottom: -140px; right: -120px; animation: drift2 24s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,40px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,-40px); } }

.bg-sparks { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.spark {
  position: absolute; bottom: -10px; border-radius: 50%;
  background: var(--green-bright); box-shadow: 0 0 8px var(--green-bright);
  opacity: 0; animation-name: rise; animation-timing-function: linear; animation-iteration-count: infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-104vh) scale(0.4); opacity: 0; }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--green), var(--gold));
  box-shadow: 0 0 12px rgba(37, 226, 106, 0.7);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
  overflow: hidden; text-transform: uppercase;
}
.btn--sm { padding: 9px 18px; font-size: 0.78rem; }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--primary {
  color: #032012;
  background: linear-gradient(135deg, var(--green-bright), var(--green) 55%, var(--gold));
  box-shadow: 0 8px 28px rgba(37, 226, 106, 0.35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 38px rgba(37, 226, 106, 0.55); }
.btn--ghost {
  color: var(--text); background: var(--panel); border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-green); color: #fff; }
.btn__pulse {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.45), transparent 60%);
  opacity: 0; animation: btnPulse 2.6s ease-in-out infinite;
}
@keyframes btnPulse { 0%,100% { opacity: 0; transform: scale(0.8); } 50% { opacity: 0.5; transform: scale(1.05); } }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 7, 10, 0.82); backdrop-filter: blur(14px);
  border-bottom-color: var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid var(--green); box-shadow: 0 0 16px rgba(37, 226, 106, 0.5);
}
.brand__text { font-family: var(--font-display); font-weight: 900; font-size: 1.32rem; letter-spacing: 0.02em; }
.brand__accent { color: var(--gold); }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-weight: 600; font-size: 0.92rem; color: var(--muted); position: relative; transition: color .2s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold)); transition: width .25s ease; border-radius: 2px;
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__socials { display: flex; gap: 8px; }
.icon-btn {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  color: var(--muted); background: var(--panel); border: 1px solid var(--border-2); transition: all .2s ease;
}
.icon-btn:hover { color: var(--green-bright); border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-green); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all .25s ease; }
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(5, 7, 10, 0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px; padding: 18px 22px;
  transform: translateY(-130%); opacity: 0; transition: transform .35s ease, opacity .3s ease; pointer-events: none;
}
.nav__mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__mobile a { padding: 12px 8px; font-weight: 600; color: var(--muted); border-radius: 10px; }
.nav__mobile a:hover { color: #fff; background: var(--panel); }
.nav__mobile .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 70px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 70% 40%, rgba(37, 226, 106, 0.12), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(243, 186, 47, 0.10), transparent 55%);
}
.hero__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px;
  max-width: 1000px; margin-inline: auto;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  color: var(--green-bright); background: rgba(37, 226, 106, 0.08); border: 1px solid var(--border);
}
.badge img { width: 18px; height: 18px; border-radius: 50%; }

.hero__title {
  font-family: var(--font-display); font-weight: 900; line-height: 0.95;
  font-size: clamp(3.2rem, 9vw, 6.6rem); letter-spacing: 0.01em;
}
.hero__tagline { font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--muted); font-weight: 500; }

.grad-text {
  background: linear-gradient(110deg, var(--green-bright) 0%, var(--green) 35%, var(--gold-bright) 70%, var(--green-bright) 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: shimmerText 6s linear infinite;
}
@keyframes shimmerText { to { background-position: 220% center; } }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contract widget */
.ca-widget {
  width: 100%; max-width: 520px; background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.ca-widget--center { margin-inline: auto; }
.ca-widget__label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--faint); margin-bottom: 8px; font-weight: 600; }
.ca-widget__row { display: flex; align-items: center; gap: 10px; }
.ca-widget__addr {
  flex: 1; font-family: 'Courier New', monospace; font-size: 0.82rem; color: var(--green-bright);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: 0.02em;
}
.ca-widget__copy {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 10px; cursor: pointer;
  background: linear-gradient(135deg, var(--green), var(--green-soft)); color: #032012; border: none;
  font-weight: 700; font-size: 0.78rem; transition: all .2s ease; flex-shrink: 0;
}
.ca-widget__copy:hover { box-shadow: var(--shadow-green); transform: translateY(-1px); }
.ca-icon { flex-shrink: 0; }
.ca-icon--check { display: none; }
.ca-widget__copy.copied { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); }
.ca-widget__copy.copied .ca-icon--copy { display: none; }
.ca-widget__copy.copied .ca-icon--check { display: block; }

/* Hero stats */
.hero__stats { display: flex; gap: 14px; flex-wrap: wrap; }
.stat {
  flex: 1; min-width: 90px; text-align: center; padding: 14px 10px;
  background: var(--panel); border: 1px solid var(--border-2); border-radius: var(--radius-sm);
}
.stat__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--green-bright); }
.stat__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* Hero cinematic banner */
.hero__banner { position: relative; width: 100%; max-width: 980px; margin: 4px auto; }
.hero__banner-glow {
  position: absolute; inset: -10%; z-index: 0; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(37, 226, 106, 0.4), rgba(243, 186, 47, 0.16) 55%, transparent 72%);
  filter: blur(40px); animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity: 0.7; transform: scale(0.97); } 50% { opacity: 1; transform: scale(1.03); } }
.hero__banner-img {
  position: relative; z-index: 1; width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: 0 28px 80px rgba(0,0,0,0.6), 0 0 60px rgba(37, 226, 106, 0.22);
  animation: floatArt 6s ease-in-out infinite;
}
@keyframes floatArt { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-coin {
  position: absolute; z-index: 2; border-radius: 50%;
  border: 1.5px solid var(--gold); box-shadow: 0 0 20px rgba(243, 186, 47, 0.6);
}
.float-coin--1 { top: -6%; right: -2%; width: 64px; height: 64px; animation: floatCoin 5s ease-in-out infinite; }
.float-coin--2 { bottom: -6%; left: -1%; width: 46px; height: 46px; animation: floatCoin 6.5s ease-in-out infinite reverse; }
@keyframes floatCoin { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-16px) rotate(6deg); } }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px; color: var(--muted);
}
.scroll-cue__mouse { width: 24px; height: 38px; border: 2px solid var(--muted); border-radius: 13px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-cue__mouse span { width: 3px; height: 7px; background: var(--green-bright); border-radius: 2px; animation: scrollWheel 1.6s ease-in-out infinite; }
@keyframes scrollWheel { 0% { opacity: 0; transform: translateY(-3px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(8px); } }
.scroll-cue__text { font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.25em; }

/* ---------- Ticker ---------- */
.ticker {
  background: linear-gradient(90deg, rgba(37,226,106,0.10), rgba(243,186,47,0.10));
  border-block: 1px solid var(--border); overflow: hidden; padding: 13px 0; white-space: nowrap;
}
.ticker__track { display: inline-flex; align-items: center; gap: 24px; animation: tickerScroll 28s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.06em; color: var(--text); }
.ticker__dot { color: var(--green-bright); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 88px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, var(--bg-2) 12%, var(--bg-2) 88%, transparent); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 14px;
}
.section__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.1; }
.section__sub { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }
.lead { color: var(--muted); font-size: 1.1rem; }

/* ---------- Split (About) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__text { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.split__text .section__title { text-align: left; }

.warrior-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.warrior-frame__glow { position: absolute; inset: 0; z-index: 2; pointer-events: none; box-shadow: inset 0 0 70px rgba(37, 226, 106, 0.22); }
.warrior-art { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.warrior-frame:hover .warrior-art { transform: scale(1.05); }
.warrior-frame__tag {
  position: absolute; bottom: 14px; left: 14px; z-index: 3; font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 0.12em; color: var(--green-bright); background: rgba(5,7,10,0.7); padding: 6px 12px; border-radius: 8px; border: 1px solid var(--border);
}

.about-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.about-pill {
  font-size: 0.85rem; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--border); color: var(--text);
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards--compact .card { text-align: center; }
.card {
  position: relative; padding: 26px 22px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--border-2); overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card::before {
  content: ''; position: absolute; width: 220px; height: 220px; left: var(--mx, 50%); top: var(--my, 0);
  transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(37,226,106,0.16), transparent 65%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.card:hover { border-color: var(--green); box-shadow: var(--shadow-green); }
.card:hover::before { opacity: 1; }
.card__icon { font-size: 2.1rem; margin-bottom: 12px; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 7px; }
.card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- How to Buy ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  position: relative; padding: 30px 22px 26px; border-radius: var(--radius); text-align: center;
  background: var(--panel); border: 1px solid var(--border-2); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow-green); }
.step__num {
  position: absolute; top: 14px; right: 16px; font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem; color: rgba(37, 226, 106, 0.22);
}
.step__icon {
  width: 64px; height: 64px; margin: 0 auto 14px; display: grid; place-items: center; font-size: 1.9rem;
  border-radius: 50%; background: rgba(37, 226, 106, 0.1); border: 1px solid var(--border);
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 0.9rem; }
.how__cta { text-align: center; margin-top: 40px; }

/* ---------- BNB strip ---------- */
.bnb-strip { position: relative; padding: 56px 0; overflow: hidden; border-block: 1px solid var(--border); }
.bnb-strip__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('images/bnb-network.png') center/cover no-repeat; opacity: 0.22;
}
.bnb-strip__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 5%, transparent 50%, var(--bg) 95%); }
.bnb-strip__inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 36px; justify-content: center; flex-wrap: wrap; text-align: left; }
.bnb-strip__coin { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); box-shadow: var(--shadow-gold); animation: floatArt 6s ease-in-out infinite; }
.bnb-strip__text { max-width: 420px; }
.bnb-strip__text .section__title { text-align: left; }

/* ---------- Full-width image band ---------- */
.img-band { position: relative; padding: 110px 0; overflow: hidden; border-block: 1px solid var(--border); }
.img-band__bg {
  position: absolute; inset: 0; z-index: 0; background-position: center; background-size: cover;
  background-repeat: no-repeat; background-attachment: fixed; transform: scale(1.02);
}
.img-band__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,7,10,0.78), rgba(5,7,10,0.62) 50%, rgba(5,7,10,0.82));
}
.img-band__inner { position: relative; z-index: 1; text-align: center; }
.img-band__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.05; }
.img-band__sub { color: var(--text); font-size: clamp(1rem, 2.4vw, 1.25rem); margin-top: 12px; opacity: 0.92; }

/* ---------- Tokenomics ---------- */
.highlight-banner {
  position: relative; display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  padding: 13px 26px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: #032012; background: linear-gradient(135deg, var(--green-bright), var(--gold-bright));
  box-shadow: 0 8px 30px rgba(37, 226, 106, 0.35);
}
.highlight-banner__pulse { width: 9px; height: 9px; border-radius: 50%; background: #032012; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.tokenomics { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 30px; align-items: start; }
.metrics { display: flex; flex-direction: column; gap: 16px; }
.metric {
  padding: 24px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--border-2);
  text-align: center; transition: border-color .25s ease, box-shadow .25s ease;
}
.metric:hover { border-color: var(--green); box-shadow: var(--shadow-green); }
.metric__label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 8px; }
.metric__value { display: block; font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; line-height: 1; color: var(--green-bright); }
.metric__unit { font-size: 0.82rem; color: var(--faint); }

.allocation { padding: 30px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--border-2); }
.allocation__title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 22px; }
.alloc-row { margin-bottom: 18px; }
.alloc-row__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.alloc-row__name { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; font-weight: 500; }
.alloc-row__name em { color: var(--gold); font-style: normal; font-size: 0.82rem; }
.alloc-row__pct { font-family: var(--font-display); font-weight: 800; color: var(--green-bright); }
.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot--1 { background: var(--green-bright); }
.dot--2 { background: var(--gold-bright); }
.dot--3 { background: #3ba3ff; }
.dot--4 { background: #b07bff; }
.alloc-bar { height: 9px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.alloc-bar span { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--gold)); transition: width 1.2s cubic-bezier(.2,.8,.2,1); }
.alloc-bar.animate span { width: var(--w); }
.allocation__note { margin-top: 18px; font-size: 0.86rem; color: var(--muted); }

/* ---------- Roadmap ---------- */
.timeline { position: relative; max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 26px; }
.timeline::before { content: ''; position: absolute; left: 23px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--green), var(--gold)); opacity: 0.4; }
.phase { display: flex; gap: 22px; align-items: flex-start; }
.phase__marker {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #032012;
  background: linear-gradient(135deg, var(--green-bright), var(--gold)); box-shadow: var(--shadow-green); z-index: 1;
}
.phase__body { flex: 1; padding: 22px 26px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--border-2); transition: border-color .25s ease, box-shadow .25s ease; }
.phase:hover .phase__body { border-color: var(--green); box-shadow: var(--shadow-green); }
.phase__tag { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.phase__body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin: 6px 0 12px; }
.phase__body ul { display: flex; flex-direction: column; gap: 7px; }
.phase__body li { position: relative; padding-left: 22px; color: var(--muted); font-size: 0.94rem; }
.phase__body li::before { content: '⚔'; position: absolute; left: 0; color: var(--green-bright); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px;
}
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-2); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(0,0,0,0.4); transition: box-shadow .3s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover { border-color: var(--green); box-shadow: var(--shadow-green); }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.pack__cta { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ---------- Buy CTA ---------- */
.buy-cta { overflow: hidden; }
.buy-cta__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('images/zoro-shatter.jpg') center/cover no-repeat; opacity: 0.28;
}
.buy-cta__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 20%, var(--bg) 85%); }
.buy-cta__inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.buy-cta__btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 50px 0 30px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand .brand__text { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; }
.footer__tagline { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.footer__socials { display: flex; gap: 10px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color .2s ease; }
.footer__links a:hover { color: var(--green-bright); }
.footer__bottom { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border-2); text-align: center; }
.footer__disclaimer { color: var(--faint); font-size: 0.82rem; max-width: 640px; margin: 0 auto 8px; }
.footer__copy { color: var(--faint); font-size: 0.82rem; }

/* ---------- Floating buttons ---------- */
.music-btn {
  position: fixed; bottom: 22px; left: 22px; z-index: 90; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; color: var(--green-bright);
  background: rgba(5,7,10,0.85); border: 1px solid var(--border); backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4); transition: all .25s ease;
}
.music-btn:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-green); }
.music-btn__icon { display: none; }
.music-btn__bars { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.music-btn__bars span { width: 3px; height: 6px; background: var(--green-bright); border-radius: 2px; }
.music-btn.playing .music-btn__bars span { animation: eq 0.9s ease-in-out infinite; }
.music-btn.playing .music-btn__bars span:nth-child(2) { animation-delay: .15s; }
.music-btn.playing .music-btn__bars span:nth-child(3) { animation-delay: .3s; }
.music-btn.playing .music-btn__bars span:nth-child(4) { animation-delay: .45s; }
@keyframes eq { 0%,100% { height: 6px; } 50% { height: 20px; } }

.to-top {
  position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; color: #032012;
  background: linear-gradient(135deg, var(--green-bright), var(--gold)); border: none;
  box-shadow: 0 6px 24px rgba(37,226,106,0.4); opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,226,106,0.6); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 30px); z-index: 200;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: #032012;
  background: linear-gradient(135deg, var(--green-bright), var(--gold)); box-shadow: var(--shadow-green);
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__socials { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__text { align-items: center; }
  .hero__tagline { max-width: none; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__art { max-width: 380px; order: -1; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split__text { align-items: center; text-align: center; }
  .split__text .section__title { text-align: center; }
  .tokenomics { grid-template-columns: 1fr; }
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .bnb-strip__inner { flex-direction: column; text-align: center; }
  .bnb-strip__text, .bnb-strip__text .section__title { text-align: center; }
  .split--reverse .split__media { order: 0; }
  .img-band { padding: 80px 0; }
  .img-band__bg { background-attachment: scroll; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .cards, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .hero__title { font-size: clamp(2.8rem, 16vw, 4rem); }
  .ca-widget__addr { font-size: 0.72rem; }
  .nav__cta { display: none; }
  .float-coin { display: none; }
  .music-btn, .to-top { width: 46px; height: 46px; }
}

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