/* ===== TOKENS ===== */
:root {
  --bg: #060b14;
  --bg-2: #0a1320;
  --bg-3: #0e1a2b;
  --panel: #101e30;
  --panel-2: #14263c;
  --line: rgba(120, 200, 255, 0.12);
  --text: #e8f1ff;
  --muted: #9fb4ccff;
  --muted-2: #7d92ad;

  --lime: #b6ff3c;
  --lime-2: #7ee04a;
  --blue: #3da0ff;
  --blue-2: #2f7bff;
  --teal: #58f5d4;

  --grad-lime: linear-gradient(100deg, #b6ff3c, #58f5d4);
  --grad-blue: linear-gradient(100deg, #3da0ff, #6a7bff);

  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.1; font-weight: 700; }

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

/* ===== TYPE HELPERS ===== */
.text-grad {
  background: var(--grad-lime);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-dark-grad {
  background: linear-gradient(100deg, #1a3a0e, #0c3d2e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow, .kicker {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lime);
}
.kicker { color: var(--blue); }
.kicker--dark { color: #0c3d2e; }
.center { text-align: center; align-items: center; }
.center-text { text-align: center; margin-left: auto; margin-right: auto; }
.stack { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.stack.center { align-items: center; }

/* ===== BUTTONS ===== */
.btn {
  --b: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .95rem;
  padding: 12px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad-blue); color: #fff;
  box-shadow: 0 8px 26px rgba(47, 123, 255, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(47, 123, 255, .5); }
.btn--outline { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.btn--outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn--ghost { color: var(--muted); }
.btn--ghost:hover { color: var(--text); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 11, 20, .55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.is-stuck { background: rgba(6, 11, 20, .9); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.nav__links { display: flex; gap: 28px; margin-left: 12px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-lime); transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== LOGO ===== */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark {
  position: relative; display: block;
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .4), 0 0 0 1px var(--line);
}
.logo__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo__text { font-family: "Russo One", sans-serif; font-size: 1.05rem; letter-spacing: .02em; }
.logo__text span { color: var(--lime); }

/* ===== HERO ===== */
.hero { position: relative; padding: 0 0 80px; overflow: hidden; }
.hero__banner { position: relative; width: 100%; line-height: 0; background: #0a1424; }
.hero__art { width: 100%; height: auto; display: block; }
.hero__fade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(6,11,20,.55) 80%, var(--bg) 100%); }
.hero__inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; margin-top: 44px; }
.hero__title { font-size: clamp(1.8rem, 4.2vw, 3.2rem); letter-spacing: -.02em; max-width: 880px; }
.hero__sub { max-width: 620px; color: var(--muted); font-size: 1.12rem; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.hero__stats { display: flex; gap: 40px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Russo One", sans-serif; font-size: 1.7rem; background: var(--grad-lime); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stats span { color: var(--muted-2); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }

/* ===== SECTIONS ===== */
.section { padding: 92px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.02em; }
.section__title--dark { color: #06251a; }
.section__lead { color: var(--muted); font-size: 1.1rem; max-width: 560px; }
.section__lead--dark { color: #0d3326; }
.section__lead strong { color: var(--text); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ===== EXPLORE FEATURES ===== */
.features { display: flex; flex-direction: column; gap: 18px; width: 100%; }
.features li { display: flex; gap: 16px; align-items: flex-start; }
.features__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.2rem;
  background: rgba(126,224,74,.1); color: var(--lime); border: 1px solid rgba(126,224,74,.25);
}
.features h3 { font-size: 1.05rem; margin-bottom: 2px; }
.features p { color: var(--muted); font-size: .95rem; }

/* ===== MEDIA CARD ===== */
.media-card { position: relative; }
.media-card__frame {
  border-radius: var(--radius-lg); padding: 14px;
  background: linear-gradient(160deg, var(--panel), var(--bg-3));
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.media-card__screen {
  aspect-ratio: 16/11; border-radius: 14px; overflow: hidden; position: relative;
}
.screen--game {
  background:
    radial-gradient(600px 200px at 30% 0%, rgba(58,160,255,.4), transparent 60%),
    repeating-linear-gradient(115deg, #123 0 18px, #0f2236 18px 36px),
    linear-gradient(180deg, #1c4a2e, #0c2a18);
}
.screen--game::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120px 120px at 70% 60%, rgba(182,255,60,.5), transparent 70%),
    radial-gradient(90px 90px at 30% 70%, rgba(88,245,212,.4), transparent 70%);
}
.media-card__badge {
  position: absolute; bottom: -14px; right: 24px;
  background: var(--grad-lime); color: #06210a; font-weight: 700; font-size: .8rem;
  padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(126,224,74,.4);
}

/* ===== WORLD MAP ===== */
.worldmap {
  margin-top: 44px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.5);
  background: #2a3f5a;
}
.worldmap__img { display: block; width: 100%; height: auto; }

/* ===== MARKETPLACE ===== */
.market { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.market__card {
  background: linear-gradient(170deg, var(--panel), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.market__card--feature { border-color: rgba(126,224,74,.3); box-shadow: 0 0 0 1px rgba(126,224,74,.1), 0 24px 60px rgba(0,0,0,.4); }
.market__head { display: flex; align-items: center; justify-content: space-between; }
.market__head h3 { font-size: 1.25rem; }
.market__card > p { color: var(--muted); font-size: .96rem; }
.pill { font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .04em; }
.pill--blue { background: rgba(58,160,255,.15); color: var(--blue); }
.pill--lime { background: rgba(182,255,60,.15); color: var(--lime); }
.market__rows { display: flex; flex-direction: column; gap: 10px; }
.row { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; }
.row__art { width: 38px; height: 38px; border-radius: 9px; flex: none; }
.row__name { font-weight: 600; font-size: .92rem; }
.row__price { margin-left: auto; font-family: "Russo One", sans-serif; font-size: .92rem; color: var(--lime); }
.art--a { background: linear-gradient(135deg,#3da0ff,#1b2c6b); }
.art--b { background: linear-gradient(135deg,#ff6b6b,#7a1f3d); }
.art--c { background: linear-gradient(135deg,#b6ff3c,#1f6b2f); }
.art--d { background: linear-gradient(135deg,#c08bff,#3a1f6b); }
.art--e { background: linear-gradient(135deg,#58f5d4,#0c4a5e); }
.art--f { background: linear-gradient(135deg,#ffd166,#7a5a1f); }

/* ===== TOKENOMICS ===== */
.coins { background: var(--grad-lime); }
.coins .section__lead--dark { color: #0d3326; }
.coins__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.token {
  background: rgba(255,255,255,.16); border: 1px solid rgba(6,37,26,.18);
  border-radius: var(--radius-lg); padding: 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  backdrop-filter: blur(4px);
}
.token h3 { color: #06251a; font-size: 1.3rem; }
.token p { color: #0d3326; max-width: 320px; }
.token__coin {
  width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Russo One", sans-serif; font-size: 2rem; color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.25), inset 0 3px 10px rgba(255,255,255,.4);
}
.token__coin--r { background: radial-gradient(circle at 35% 30%, #5fc1ff, #1e63c8); }
.token__coin--t { background: radial-gradient(circle at 35% 30%, #ffd87a, #d98a1e); color: #4a2c00; }

/* ===== BURN ===== */
.burn__diagram { position: relative; aspect-ratio: 1; max-width: 380px; margin: 0 auto; display: grid; place-items: center; }
.burn__ring {
  width: 220px; height: 220px; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(var(--lime) 0 18deg, rgba(255,255,255,.06) 18deg 360deg);
  position: relative;
}
.burn__ring::before { content: ""; position: absolute; inset: 18px; border-radius: 50%; background: var(--bg-2); }
.burn__core { position: relative; font-family: "Russo One", sans-serif; font-size: 2.6rem; background: var(--grad-lime); -webkit-background-clip: text; background-clip: text; color: transparent; }
.burn__chip { position: absolute; background: var(--panel); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.burn__chip--1 { top: 6%; left: 50%; transform: translateX(-50%); }
.burn__chip--2 { bottom: 22%; left: -4%; }
.burn__chip--3 { bottom: 22%; right: -4%; color: var(--lime); }
.checks { display: flex; flex-direction: column; gap: 12px; }
.checks li { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.checks li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 50%; background: rgba(126,224,74,.15); color: var(--lime); font-weight: 700; font-size: .8rem; }

/* ===== COLLECT ===== */
.collect { position: relative; overflow: hidden; }
.collect__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(700px 300px at 50% 110%, rgba(88,245,212,.18), transparent 60%),
    linear-gradient(180deg, var(--bg), #0a1f1a 60%, var(--bg)); }
.collect .container { position: relative; z-index: 1; }
.collect__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin: 44px 0; }
.hero-card {
  aspect-ratio: 3/4; border-radius: var(--radius); position: relative; overflow: hidden;
  border: 1px solid var(--line); display: flex; align-items: flex-end; padding: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hero-card span { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: rgba(0,0,0,.45); padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px); }
.hero-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.hero-card.is-featured { transform: scale(1.06); box-shadow: 0 0 0 2px var(--lime), 0 24px 60px rgba(182,255,60,.25); }
.hero-card.is-featured:hover { transform: scale(1.06) translateY(-8px); }
.hero-card--1 { background: linear-gradient(180deg, #2a4a6b, #0c1c2e); }
.hero-card--2 { background: linear-gradient(180deg, #2e5a3a, #0c2418); }
.hero-card--3 { background: linear-gradient(180deg, #6b4a1f, #2e1c08); }
.hero-card--4 { background: linear-gradient(180deg, #4a2a6b, #1c0c2e); }
.hero-card--5 { background: linear-gradient(180deg, #1f5a5a, #082424); }
.hero-card span { color: #fff; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; }
.cta-banner__inner {
  text-align: center; border-radius: var(--radius-lg); padding: 64px 24px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(58,160,255,.25), transparent 60%),
    linear-gradient(160deg, var(--panel-2), var(--bg-3));
  border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-banner p { color: var(--muted); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 56px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; }
.footer__brand p { color: var(--muted); margin: 16px 0; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.social { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line); color: var(--muted); transition: .2s; }
.social:hover { color: var(--lime); border-color: var(--lime); transform: translateY(-2px); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 14px; }
.footer__cols a { display: block; color: var(--muted); padding: 5px 0; font-size: .94rem; transition: color .2s; }
.footer__cols a:hover { color: var(--lime); }
.footer__bar { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .86rem; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a:hover { color: var(--text); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ===== MODERN EFFECTS ===== */
/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-lime); z-index: 100;
  box-shadow: 0 0 12px rgba(182, 255, 60, .6);
  transition: width .08s linear;
}

/* Animated gradient text shimmer */
.text-grad { background-size: 220% auto; animation: text-shimmer 7s linear infinite; }
@keyframes text-shimmer { to { background-position: 220% center; } }

/* Primary button light sweep */
.btn--primary { position: relative; overflow: hidden; isolation: isolate; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  transform: skewX(-20deg); z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transition: left .6s var(--ease);
}
.btn--primary:hover::after { left: 150%; }

/* Animated conic glow border on featured market card */
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.market__card--feature::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px;
  background: conic-gradient(from var(--angle), var(--lime), var(--blue), var(--teal), var(--lime));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: border-spin 6s linear infinite; pointer-events: none;
}
@keyframes border-spin { to { --angle: 360deg; } }

/* 3D tilt base */
.tilt { transition: transform .3s var(--ease); will-change: transform; }

/* Floating aurora orbs in CTA banner */
.cta-banner__inner { position: relative; overflow: hidden; isolation: isolate; }
.cta-banner__inner::before,
.cta-banner__inner::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%; filter: blur(50px);
}
.cta-banner__inner::before {
  width: 260px; height: 260px; background: rgba(58, 160, 255, .35);
  top: -60px; left: -40px; animation: orb-float 9s ease-in-out infinite;
}
.cta-banner__inner::after {
  width: 220px; height: 220px; background: rgba(182, 255, 60, .25);
  bottom: -70px; right: -30px; animation: orb-float 11s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -24px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(6,11,20,.97); border-bottom: 1px solid var(--line); padding: 8px 24px 16px;
  }
  .nav.is-open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__actions { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6,11,20,.97); padding: 16px 24px; gap: 12px; }
  .nav.is-open .nav__actions .btn { flex: 1; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .market, .coins__grid { grid-template-columns: 1fr; }
  .collect__row { grid-template-columns: repeat(3, 1fr); }
  .hero-card--4, .hero-card--5 { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  /* Show the full banner (no cropping) at its natural ratio on mobile */
  .hero__art { height: auto; object-fit: contain; }
  .hero__inner { margin-top: 28px; }
  .hero__sub { font-size: 1.02rem; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .hero { padding: 0 0 56px; }
  .hero__inner { margin-top: 22px; gap: 18px; }
  .hero__title { font-size: clamp(1.55rem, 7vw, 2.2rem); }
  .hero__sub { font-size: 1rem; max-width: 100%; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 20px 28px; }
  .hero__stats strong { font-size: 1.45rem; }
  .collect__row { grid-template-columns: repeat(2, 1fr); }
  .hero-card--3 { display: none; }
  .footer__bar { flex-direction: column; gap: 12px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
