/* =========================================================================
   Z TOKEN — design system
   Palette: midnight navy/near-black · royal purple · electric violet ·
   neon purple · magenta accents · metallic silver/chrome · white.
   ========================================================================= */
:root {
  --bg-0: #050112;
  --bg-1: #0a0323;
  --bg-2: #12052e;
  --panel: rgba(26, 9, 58, 0.72);
  --panel-2: rgba(15, 5, 36, 0.9);
  --purple: #8b3dff;
  --violet: #a55cff;
  --lav: #c9a0ff;
  --lav-2: #e4d1ff;
  --magenta: #ff5ffb;
  --text: #efeaff;
  --text-dim: #b7a6dd;
  --text-faint: #8d78bd;
  --line: rgba(170, 100, 255, 0.28);
  --glow: rgba(150, 70, 255, 0.45);
  --ok: #4ade80;
  --warn: #fbbf24;
  --err: #fb7185;
  --nav-h: 72px;
  --radius: 18px;
  --font-disp: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --font-num: 'Exo 2', sans-serif;
  --font-lbl: 'Rajdhani', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--lav); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; scroll-margin-top: calc(var(--nav-h) + 12px); }
.hidden { display: none !important; }

.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

/* ---------------- typography helpers ---------------- */
.kicker {
  font-family: var(--font-lbl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 13px;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 14px;
}
.kicker::before { content: ''; width: 34px; height: 2px; background: linear-gradient(90deg, transparent, var(--violet)); }

.h-display {
  font-family: var(--font-disp);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
  transform: skewX(-4deg);
}
.chrome-txt {
  background: linear-gradient(180deg, #ffffff 0%, #eeeaf8 30%, #c5bdd8 46%, #7e7396 52%, #e2dcf0 62%, #f9f7fd 80%, #a49bba 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(150, 70, 255, 0.4)) drop-shadow(0 3px 3px rgba(0, 0, 0, 0.85));
}
.purple-txt {
  background: linear-gradient(180deg, #f6ecff 0%, #dfc2ff 22%, #b57bff 42%, #7a2df0 56%, #a55cff 70%, #e4ccff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(160, 80, 255, 0.45)) drop-shadow(0 3px 3px rgba(0, 0, 0, 0.85));
}
.sec-head { margin-bottom: 44px; display: grid; gap: 14px; }
.sec-head h2 { font-size: clamp(38px, 6vw, 62px); }
.sec-head p.lead { color: var(--text-dim); max-width: 640px; font-size: 17px; }

/* ---------------- glass / panels ---------------- */
.glass {
  position: relative;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  background:
    linear-gradient(160deg, rgba(34, 12, 66, 0.82), rgba(13, 4, 32, 0.92)) padding-box,
    linear-gradient(160deg, rgba(240, 220, 255, 0.85), rgba(139, 61, 255, 0.75) 30%, rgba(70, 25, 140, 0.6) 60%, rgba(190, 130, 255, 0.8)) border-box;
  box-shadow: 0 0 24px rgba(139, 61, 255, 0.18), 0 14px 34px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.glass-bright {
  border-radius: var(--radius);
  border: 2px solid transparent;
  background:
    linear-gradient(160deg, rgba(44, 16, 86, 0.9), rgba(18, 6, 44, 0.96)) padding-box,
    linear-gradient(160deg, #ffffff, #d9b2ff 20%, #8b3dff 48%, #4c1690 72%, #c084fc) border-box;
  box-shadow: 0 0 30px rgba(155, 80, 255, 0.32), 0 16px 36px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 0 44px rgba(130, 50, 235, 0.14);
}
.card-3d { transition: transform 0.25s ease, box-shadow 0.25s ease; will-change: transform; }
.card-3d:hover { box-shadow: 0 0 40px rgba(155, 80, 255, 0.4), 0 20px 44px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2); }

/* light sweep on hover */
.sweep { overflow: hidden; }
.sweep::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.10) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.sweep:hover::after { transform: translateX(120%); }

/* ---------------- buttons / chips / badges ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px;
  font-family: var(--font-lbl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  padding: 14px 28px;
  min-height: 48px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #1c0538;
  background: linear-gradient(180deg, #efdcff 0%, #c084fc 35%, #8b3dff 100%);
  box-shadow: 0 0 22px rgba(160, 85, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 -8px 14px rgba(60, 10, 130, 0.45);
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 0 32px rgba(170, 95, 255, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 -8px 14px rgba(60, 10, 130, 0.45); }
.btn-ghost {
  color: var(--lav-2);
  background: rgba(30, 10, 62, 0.5);
  border: 1.5px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover { border-color: rgba(200, 140, 255, 0.6); box-shadow: 0 0 18px rgba(150, 70, 255, 0.3); color: #fff; }
.btn.is-connected { font-family: var(--font-num); text-transform: none; letter-spacing: 0.02em; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12.5px;
  color: var(--lav-2);
  background: rgba(34, 12, 70, 0.65);
  border: 1px solid var(--line);
}
.chip .dot-mg { width: 7px; height: 7px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-lbl); font-weight: 700; letter-spacing: 0.14em; font-size: 11.5px;
  padding: 4px 12px; border-radius: 999px;
  color: var(--text-faint); background: rgba(20, 7, 46, 0.9); border: 1px solid rgba(140, 90, 220, 0.35);
}
.badge.is-live { color: #86ffc6; border-color: rgba(74, 222, 128, 0.5); }
.badge.is-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.ok { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.dot.warn { background: var(--warn); box-shadow: 0 0 10px var(--warn); }
.dot.off { background: #5c4a85; }

/* ---------------- navbar ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 2, 26, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(150, 90, 255, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.nav-inner { width: min(1280px, calc(100% - 32px)); margin: 0 auto; height: 100%; display: flex; align-items: center; gap: 22px; }
.nav-logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav-logo img { width: 44px; height: 44px; filter: drop-shadow(0 0 10px rgba(160, 85, 255, 0.6)); }
.nav-logo b {
  font-family: var(--font-disp); font-weight: 800; font-size: 24px; letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff, #c9a0ff 70%, #9a55f0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-family: var(--font-lbl); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13.5px;
  color: var(--text-dim); padding: 9px 12px; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(140, 70, 250, 0.16); }
.nav-links a.active { color: #fff; background: rgba(140, 70, 250, 0.22); box-shadow: inset 0 0 0 1px rgba(190, 130, 255, 0.3); }
.nav .btn { padding: 10px 20px; min-height: 42px; font-size: 13.5px; }

.nav-burger {
  display: none;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(30, 10, 62, 0.6); border: 1.5px solid var(--line);
  position: relative;
}
.nav-burger span {
  position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 2px;
  background: var(--lav-2); transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 29px; }
.nav-burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: radial-gradient(120% 80% at 50% 0%, rgba(46, 16, 96, 0.97), rgba(6, 1, 22, 0.99));
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(24px, 6.5vw, 34px); letter-spacing: 0.05em;
  color: var(--lav-2); padding: 7px 22px; border-radius: 12px;
  transform: translateY(12px); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease, color 0.2s;
}
.mobile-menu.open a { transform: none; opacity: 1; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn { margin-top: 18px; opacity: 0; transition: opacity 0.4s ease 0.15s; }
.mobile-menu.open .btn { opacity: 1; }

/* ---------------- hero ---------------- */
.hero {
  min-height: max(640px, 100svh);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 70px;
  overflow: hidden;
}
.hero-bg-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%;
  transform: scale(1.06);
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 60% at 50% 30%, rgba(60, 20, 120, 0.10), rgba(5, 1, 18, 0.55) 70%),
    linear-gradient(180deg, rgba(5, 1, 18, 0.55) 0%, rgba(5, 1, 18, 0.18) 30%, rgba(5, 1, 18, 0.42) 68%, var(--bg-0) 100%);
}
#fx { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 40px; }
.hero-copy { display: grid; gap: 22px; justify-items: start; }
.hero-title { font-size: clamp(64px, 11vw, 132px); }
.hero-sub {
  font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3em; font-size: clamp(12px, 1.8vw, 17px); color: var(--lav-2);
  text-shadow: 0 0 14px rgba(160, 85, 255, 0.6);
}
.hero-desc { color: var(--text-dim); max-width: 520px; font-size: 17px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.hero-coin-wrap { position: relative; display: flex; justify-content: center; }
.hero-coin {
  width: min(400px, 78%);
  filter: drop-shadow(0 0 46px rgba(150, 70, 255, 0.55)) drop-shadow(0 26px 40px rgba(0, 0, 0, 0.7));
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
.hero-coin-glow {
  position: absolute; left: 50%; bottom: -8%; transform: translateX(-50%);
  width: 70%; height: 60px; border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(160, 85, 255, 0.5), transparent 70%);
  filter: blur(6px);
}
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-16px) rotate(1.2deg); } }
@media (prefers-reduced-motion: reduce) { .hero-coin { animation: none; } }
.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  color: var(--text-faint); font-size: 20px; z-index: 2; animation: floaty 3s ease-in-out infinite;
}

/* ---------------- section base + backgrounds ---------------- */
.sec { padding: 96px 0; }
.sec-art {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.sec-art img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.sec-art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg-0) 0%, rgba(5, 1, 18, 0.55) 22%, rgba(5, 1, 18, 0.62) 70%, var(--bg-0) 100%);
}
.sec > .wrap { position: relative; z-index: 2; }

/* ---------------- dashboard ---------------- */
.dash-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.dash-card { padding: 26px; display: grid; gap: 16px; align-content: start; }
.dash-card h3 {
  font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 14px; color: var(--lav);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.c-span4 { grid-column: span 4; }
.c-span6 { grid-column: span 6; }
.c-span8 { grid-column: span 8; }
.c-span12 { grid-column: span 12; }
.kv { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px dashed rgba(150, 90, 255, 0.18); }
.kv:last-child { border-bottom: none; }
.kv .k { color: var(--text-dim); font-size: 14px; }
.kv .v { font-family: var(--font-num); font-weight: 700; font-size: 17px; color: #fff; text-align: right; }
.big-price { font-family: var(--font-num); font-weight: 800; font-style: italic; font-size: clamp(38px, 5vw, 52px); line-height: 1; }
.delta { font-family: var(--font-num); font-weight: 600; font-size: 14px; }
.delta.up { color: var(--ok); }
.delta.down { color: var(--err); }
.dash-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.dash-actions .btn { padding: 10px 18px; min-height: 42px; font-size: 13px; }
.mini-note { font-size: 12.5px; color: var(--text-faint); }
.cfg-note {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; border-radius: 14px;
  background: rgba(60, 30, 8, 0.35);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fde68a;
}
.wallet-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.addr-pill {
  font-family: var(--font-num); font-weight: 600; font-size: 15px; color: #fff;
  background: rgba(34, 12, 70, 0.8); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px;
}

/* ---------------- about ---------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.about-card { padding: 32px 34px; font-size: 17.5px; line-height: 1.75; color: #eae1fa; }
.about-card b { color: var(--lav); }
.tok-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 22px; }
.tok-block { padding: 26px; text-align: center; display: grid; gap: 10px; justify-items: center; }
.tok-block .t {
  font-family: var(--font-disp); font-weight: 800; text-transform: uppercase; font-size: 24px;
  background: linear-gradient(180deg, #fff, #c9a0ff 65%, #9a55f0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tok-block p { color: var(--text-dim); font-size: 15px; }
.tok-ic {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 28%, #38136e, #190740 72%);
  border: 2px solid rgba(200, 140, 255, 0.5);
  box-shadow: 0 0 16px rgba(150, 75, 255, 0.4), inset 0 2px 6px rgba(255, 255, 255, 0.15);
  color: var(--lav-2);
}

/* ---------------- legacy ---------------- */
.legacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.legacy-item { padding: 24px 26px; display: flex; gap: 18px; }
.legacy-item .rule { min-width: 4px; width: 4px; border-radius: 3px; background: linear-gradient(180deg, #e2c8ff, #8b3dff); box-shadow: 0 0 10px var(--glow); }
.legacy-item p { color: #e5dcf6; font-size: 15.5px; line-height: 1.68; }
.legacy-item b { color: var(--lav); }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 26px; }

/* ---------------- zclub ---------------- */
.zclub-cta-line { font-size: 19px; color: #eae1fa; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0; }
.dest-card { padding: 22px 14px; text-align: center; display: grid; gap: 8px; justify-items: center; }
.dest-card .pin { color: var(--magenta); }
.dest-card .n { font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 15px; color: #fff; }
.dest-card .s { font-family: var(--font-lbl); font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; font-size: 10px; color: var(--text-faint); }
.dest-card.hot { background:
    linear-gradient(160deg, rgba(80, 24, 150, 0.92), rgba(40, 10, 90, 0.95)) padding-box,
    linear-gradient(160deg, #ffe3ff, #ff5ffb 40%, #8b3dff) border-box; }
.dest-card.hot .s { color: #f4c9f2; }

/* ---------------- mission / vision ---------------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.mv-main { padding: 32px 34px; display: grid; gap: 14px; }
.mv-main .statement { font-size: 18.5px; line-height: 1.7; color: #f1eafe; }
.mv-main .statement b { color: var(--lav); }
.ready-list { display: grid; gap: 12px; }
.ready-item { display: flex; align-items: center; gap: 16px; padding: 15px 18px; }
.ready-item .ic {
  min-width: 46px; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 28%, #38136e, #190740 72%);
  border: 2px solid rgba(200, 140, 255, 0.5); color: var(--lav-2);
}
.ready-item p { font-size: 15px; color: #eae1fa; }
.pillar-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 22px; }
.pillar { padding: 20px 12px; text-align: center; display: grid; gap: 10px; justify-items: center; }
.pillar p { font-size: 13px; color: #e5dcf6; line-height: 1.45; font-weight: 600; }

/* ---------------- ecosystem ---------------- */
.eco-stage { position: relative; margin-top: 10px; }
#orbit { position: relative; }
#orbit.is-orbit { height: 640px; }
.eco-core {
  display: grid; justify-items: center; gap: 4px; text-align: center;
  padding: 30px; border-radius: 50%;
}
#orbit.is-orbit .eco-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 250px; height: 250px; align-content: center; z-index: 2;
}
.eco-core img { width: 104px; filter: drop-shadow(0 0 20px rgba(160, 85, 255, 0.6)); }
.eco-core .zv { font-family: var(--font-lbl); font-weight: 700; letter-spacing: 0.24em; font-size: 21px; color: var(--lav-2); }
.eco-core .zs { font-family: var(--font-lbl); font-weight: 600; letter-spacing: 0.3em; font-size: 9.5px; color: var(--text-faint); }
.eco-nodes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
#orbit.is-orbit .eco-nodes { display: contents; }
.eco-node { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 14px; }
#orbit.is-orbit .eco-node {
  position: absolute; transform: translate(-50%, -50%);
  width: 168px; flex-direction: column; text-align: center; gap: 6px; padding: 14px 10px;
}
.eco-node .zi {
  min-width: 40px; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp); font-weight: 800; font-size: 20px; color: var(--lav-2);
  background: radial-gradient(circle at 32% 28%, #38136e, #190740 72%);
  border: 2px solid rgba(200, 140, 255, 0.5);
}
.eco-node .nm { font-family: var(--font-lbl); font-weight: 700; letter-spacing: 0.1em; font-size: 14.5px; color: #fff; }
.eco-node .ds { font-family: var(--font-lbl); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 9.5px; color: var(--text-faint); }
.eco-node > div { display: grid; gap: 1px; }

/* ---------------- mining ---------------- */
.mining-tag { display: inline-flex; margin-bottom: 8px; }
.feat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0; }
.feat-card { padding: 26px 22px; text-align: center; display: grid; gap: 10px; justify-items: center; }
.feat-card .t { font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 15.5px; color: var(--lav-2); }
.feat-card p { font-size: 14px; color: var(--text-dim); }
.step-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; }
.step-card { padding: 22px 14px; text-align: center; display: grid; gap: 8px; justify-items: center; position: relative; }
.step-card .num {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  width: 27px; height: 27px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-lbl); font-weight: 700; font-size: 13.5px; color: #24063f;
  background: linear-gradient(160deg, #e6d0ff, #8b3dff);
  box-shadow: 0 0 12px rgba(160, 85, 255, 0.55);
}
.step-card .t { font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; color: #fff; }
.step-card p { font-size: 12.5px; color: var(--text-faint); }
.chain-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }

.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px; }
.pkg-card { padding: 24px 18px 18px; text-align: center; display: grid; gap: 10px; justify-items: center; }
.pkg-card .plate {
  font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px;
  color: #f1eafe; padding: 6px 16px; border-radius: 10px;
  background: rgba(52, 20, 98, 0.9); border: 1.5px solid rgba(200, 140, 255, 0.45);
}
.pkg-card .val {
  font-family: var(--font-num); font-weight: 800; font-style: italic; font-size: 46px; line-height: 1;
  background: linear-gradient(180deg, #ffffff, var(--pkg-accent, #c9a0ff));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 12px rgba(160, 85, 255, 0.35)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.8));
}
.pkg-card .roi { font-family: var(--font-lbl); font-weight: 700; letter-spacing: 0.08em; font-size: 17px; color: #fff; }
.pkg-card .days { font-size: 11.5px; }
.pkg-card .total {
  width: 100%; padding: 8px 0; border-radius: 10px;
  font-family: var(--font-lbl); font-weight: 700; letter-spacing: 0.1em; font-size: 13.5px; color: #12032b;
  background: linear-gradient(90deg, color-mix(in srgb, var(--pkg-accent, #c9a0ff) 80%, white 20%), var(--pkg-accent, #c9a0ff));
  box-shadow: 0 0 14px color-mix(in srgb, var(--pkg-accent, #c9a0ff) 40%, transparent);
}
.mini-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.mini-chips--3 { grid-template-columns: repeat(3, 1fr); }
.mini-chip { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; }
.mini-chip .ic { min-width: 40px; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 32% 28%, #38136e, #190740 72%); border: 2px solid rgba(200, 140, 255, 0.5); color: var(--lav-2); }
.mini-chip .t { font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12.5px; color: var(--lav-2); }
.mini-chip p { font-size: 11.5px; color: var(--text-faint); }
.mini-chip > div { display: grid; gap: 1px; }

/* ---------------- distribution ---------------- */
.dist-list { display: grid; gap: 13px; }
.dist-row { display: grid; grid-template-columns: 46px 220px 1fr 90px; align-items: center; gap: 16px; padding: 13px 20px 13px 14px; border-radius: 15px; }
.dist-row .ic { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 32% 28%, #38136e, #190740 72%); border: 2px solid rgba(200, 140, 255, 0.5); color: var(--lav-2); }
.dist-row .lbl { font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14.5px; color: #f1eafe; }
.bar-track { height: 14px; border-radius: 7px; background: #150735; border: 1px solid rgba(170, 100, 255, 0.4); box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.7); overflow: hidden; }
.bar-fill {
  height: 100%; width: 0; border-radius: 7px;
  background: linear-gradient(90deg, #8b3dff, #c9a0ff 70%, #f0e3ff);
  box-shadow: 0 0 12px rgba(170, 100, 255, 0.8);
  transition: width 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dist-row .pct {
  font-family: var(--font-num); font-weight: 800; font-style: italic; font-size: 24px; text-align: right;
  background: linear-gradient(180deg, #fff, #c9a0ff 65%, #9a55f0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dist-total { display: flex; align-items: center; justify-content: space-between; padding: 18px 26px; margin-top: 6px; }
.dist-total .t { font-family: var(--font-disp); font-weight: 800; text-transform: uppercase; font-size: 27px; letter-spacing: 0.02em; background: linear-gradient(180deg, #fff, #c9a0ff 70%, #9a55f0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dist-total .v { font-family: var(--font-num); font-weight: 800; font-style: italic; font-size: 36px; }
.dist-note { display: flex; gap: 14px; align-items: center; padding: 16px 22px; margin-top: 16px; font-size: 15px; color: #e9e0fb; }
.dist-note b.mg { color: var(--magenta); }
.dist-note b.lv { color: var(--lav); }

/* ---------------- tables ---------------- */
.tbl-scroll { overflow-x: auto; border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
table.zt { width: 100%; border-collapse: collapse; min-width: 560px; }
table.zt thead th {
  font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13.5px;
  color: #24063f; padding: 14px 16px; text-align: center;
  background: linear-gradient(180deg, #eadaff, #b57bff 60%, #8b3dff);
}
table.zt thead th:first-child { border-radius: 14px 0 0 0; }
table.zt thead th:last-child { border-radius: 0 14px 0 0; }
table.zt tbody td { padding: 12px 16px; text-align: center; font-size: 15px; border-bottom: 1px solid rgba(170, 100, 255, 0.14); }
table.zt tbody tr:nth-child(even) { background: rgba(130, 55, 235, 0.10); }
table.zt tbody tr:hover { background: rgba(150, 70, 250, 0.16); }
table.zt .lv { font-family: var(--font-lbl); font-weight: 700; letter-spacing: 0.1em; color: #f1eafe; }
table.zt .num {
  font-family: var(--font-num); font-weight: 700; font-size: 16px;
  background: linear-gradient(180deg, #fff, #c9a0ff); -webkit-background-clip: text; background-clip: text; color: transparent;
}
table.zt .plain { font-family: var(--font-num); font-weight: 600; color: #e0d4f7; }
table.zt tr.grp-brk td { border-top: 2px solid rgba(200, 140, 255, 0.4); }

/* ---------------- booster ---------------- */
.boost-list { display: grid; gap: 20px; }
.boost-card { display: grid; grid-template-columns: 150px 1px 190px 1px 1fr; align-items: center; gap: 22px; padding: 26px 30px; }
.boost-ic-col { display: grid; gap: 10px; justify-items: center; text-align: center; }
.boost-ic {
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 28%, #38136e, #190740 72%);
  border: 3px solid transparent;
  background: radial-gradient(circle at 32% 28%, #38136e, #190740 72%) padding-box, linear-gradient(150deg, #f2e2ff, #a55cff 45%, #5b21a8 80%, #d8b4fe) border-box;
  box-shadow: 0 0 18px rgba(150, 75, 255, 0.5); color: var(--lav-2);
}
.boost-name { font-family: var(--font-lbl); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13.5px; color: #fff; line-height: 1.3; }
.boost-sep { width: 1px; height: 100px; background: linear-gradient(180deg, transparent, rgba(190, 130, 255, 0.7), transparent); }
.boost-pct {
  font-family: var(--font-num); font-weight: 800; font-style: italic; font-size: clamp(56px, 7vw, 84px); text-align: center; line-height: 1;
  filter: drop-shadow(0 3px 0 #2a0f55) drop-shadow(0 0 22px rgba(170, 90, 255, 0.55));
}
.boost-rules { display: grid; gap: 9px; justify-items: start; }
.boost-rule { display: flex; gap: 10px; align-items: baseline; font-size: 15.5px; color: #f1eafe; }
.boost-rule .arw { color: var(--magenta); font-weight: 800; font-size: 13px; }
.boost-rule b { font-weight: 700; }
.boost-rule .val { color: var(--lav); font-weight: 700; }
.boost-dist {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 6px;
  padding: 8px 18px 8px 9px; border-radius: 999px;
  color: #24063f; font-family: var(--font-lbl); font-weight: 700; letter-spacing: 0.1em; font-size: 14px; text-transform: uppercase;
  background: linear-gradient(180deg, #e6d0ff 0%, #b57bff 40%, #7a2df0 100%);
  box-shadow: 0 0 18px rgba(160, 85, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.boost-dist .bic { width: 27px; height: 27px; border-radius: 8px; background: #24063f; display: flex; align-items: center; justify-content: center; color: var(--lav-2); }

/* ---------------- rank ---------------- */
#rank table.zt { min-width: 640px; }
#referral table.zt { min-width: 320px; }
.scroll-hint { display: none; margin: 0 4px 10px; }
@media (max-width: 820px) { .scroll-hint { display: block; } }
#rank .trophy { color: #e8b34b; filter: drop-shadow(0 0 5px rgba(232, 179, 75, 0.6)); }

/* ---------------- final CTA + footer ---------------- */
.final-cta { text-align: center; display: grid; gap: 20px; justify-items: center; padding: 60px 30px; }
.final-cta h2 { font-size: clamp(34px, 5.6vw, 56px); }
.final-cta .hero-chips { justify-content: center; }
footer { border-top: 1px solid rgba(150, 90, 255, 0.2); padding: 44px 0 30px; background: rgba(6, 1, 20, 0.8); }
.foot-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img { width: 46px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.foot-links a { font-family: var(--font-lbl); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12.5px; color: var(--text-faint); }
.foot-links a:hover { color: var(--lav-2); }
.foot-base { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(150, 90, 255, 0.14); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 12.5px; color: var(--text-faint); }

/* ---------------- toast ---------------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); z-index: 200;
  max-width: min(480px, calc(100% - 40px));
  padding: 13px 22px; border-radius: 999px;
  background: rgba(26, 9, 58, 0.95); border: 1.5px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.6), 0 0 20px rgba(150, 70, 255, 0.3);
  font-size: 14px; color: #f1eafe; text-align: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.warn { border-color: rgba(251, 191, 36, 0.5); }
.toast.err { border-color: rgba(251, 113, 133, 0.55); }
.toast.ok { border-color: rgba(74, 222, 128, 0.5); }

/* ---------------- reveal ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .pillar-row { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav .btn-cta-desktop { display: none; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { justify-items: center; }
  .hero-desc { max-width: 620px; }
  .hero-coin-wrap { order: -1; }
  .hero-coin { width: min(280px, 60%); }
  .dash-grid { grid-template-columns: repeat(6, 1fr); }
  .c-span4 { grid-column: span 3; }
  .c-span6, .c-span8 { grid-column: span 6; }
  .mv-grid { grid-template-columns: 1fr; }
  .legacy-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .sec { padding: 72px 0; }
  .hero-coin-wrap { display: none; }
  .hero-veil {
    background:
      radial-gradient(90% 60% at 50% 30%, rgba(15, 4, 40, 0.30), rgba(5, 1, 18, 0.66) 70%),
      linear-gradient(180deg, rgba(5, 1, 18, 0.62) 0%, rgba(5, 1, 18, 0.34) 30%, rgba(5, 1, 18, 0.55) 68%, var(--bg-0) 100%);
  }
  .feat-row { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .mini-chips, .mini-chips--3 { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .tok-blocks { grid-template-columns: 1fr; }
  .pillar-row { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-nodes { grid-template-columns: 1fr; }
  .dist-row { grid-template-columns: 40px 1fr 84px; }
  .dist-row .bar-track { display: none; }
  .boost-card { grid-template-columns: 1fr; text-align: center; gap: 16px; padding: 26px 20px; }
  .boost-sep { display: none; }
  .boost-rules { justify-items: center; }
  .boost-rule { text-align: left; }
}
@media (max-width: 480px) {
  .wrap { width: calc(100% - 32px); }
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero-title { font-size: clamp(56px, 17vw, 76px); }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .pkg-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; }
  .mini-chips, .mini-chips--3 { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .pillar-row { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .c-span4, .c-span6, .c-span8, .c-span12 { grid-column: span 1; }
  .dist-row { padding: 12px 14px; gap: 10px; }
  .dist-row .lbl { font-size: 12.5px; }
  .dist-row .pct { font-size: 20px; }
  .sec-head h2 { font-size: clamp(32px, 9vw, 44px); }
}
@media (max-width: 360px) {
  .dest-grid, .pillar-row { grid-template-columns: 1fr; }
}
