/* ============================================================
   PEPIK — main.css  |  Liquid Glass 2026
   ============================================================ */

@keyframes rainbow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.rainbow-text {
  display: inline;
  background: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00ff00, #0099ff, #aa00ff, #ff0000, #ff7700, #ffff00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow 3s linear infinite;
}

:root {
  --primary:    #00C9A7;
  --secondary:  #0098EA;
  --accent:     #00FFD1;

  --text:       #0a0a0a;
  --text-muted: rgba(10,10,10,0.52);

  --glass-bg:      rgba(255,255,255,0.52);
  --glass-bg-mid:  rgba(255,255,255,0.38);
  --glass-border:  rgba(255,255,255,0.78);
  --glass-blur:    blur(16px) saturate(160%);
  --glass-shadow:  0 8px 32px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95);

  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Nunito', sans-serif;

  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   44px;
  --r-full: 9999px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: #FFFFFF;
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw;
  cursor: auto;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ol, ul { list-style: none; }


/* ---- LOADER ---- */
#loader {
  position: fixed; inset: 0;
  background: #FFFFFF;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity .7s ease, visibility .7s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-frog { width: 100px; height: 100px; }
.loader-frog img { width: 100%; height: 100%; object-fit: contain; }
.loader-brand {
  font-family: var(--font);
  font-size: 2rem; font-weight: 800;
  letter-spacing: .22em;
  color: var(--text);
}
.loader-bar-wrap {
  width: 180px; height: 3px;
  background: rgba(0,0,0,0.08);
  border-radius: var(--r-full);
  overflow: hidden;
}
#loader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--r-full);
  transition: width .08s linear;
}
#loader-percent {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-muted);
}

/* ---- HEADER — три отдельных пилюли ---- */
.site-header {
  position: fixed;
  top: 14px; left: 16px; right: 16px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  pointer-events: none;
}

/* базовый стиль пилюли */
.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(180%) brightness(108%);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(108%);
  border: 2px solid rgba(255,255,255,0.90);
  border-top-color: rgba(255,255,255,1);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,1),
    inset 0 -2px 0 rgba(0,0,0,0.06),
    inset 2px 0 0 rgba(255,255,255,0.7),
    inset -2px 0 0 rgba(255,255,255,0.5),
    0 20px 60px rgba(0,0,0,0.18),
    0 6px 20px rgba(0,0,0,0.10);
  border-radius: var(--r-full);
  transition: box-shadow .3s, background .3s;
  will-change: transform;
  transform: translateZ(0);
}
.nav-pill:hover {
  background: rgba(255,255,255,0.98);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,1),
    inset 0 -2px 0 rgba(0,0,0,0.07),
    inset 2px 0 0 rgba(255,255,255,0.8),
    inset -2px 0 0 rgba(255,255,255,0.6),
    0 24px 64px rgba(0,0,0,0.20),
    0 8px 24px rgba(0,0,0,0.11);
}

/* лого */
.nav-pill--logo {
  gap: 12px;
  padding: 16px 26px 16px 18px;
  font-family: var(--font);
  font-weight: 800; font-size: 1.12rem;
  letter-spacing: .08em;
  color: var(--text);
}
.nav-pill--logo img { width: 38px; height: 38px; object-fit: contain; }

/* ссылки по центру */
.nav-pill--links {
  gap: 2px;
  padding: 10px 12px;
}
.nav-pill--links a {
  font-size: 1rem; font-weight: 800;
  font-family: var(--font);
  color: rgba(10,10,10,0.55);
  padding: 11px 20px;
  border-radius: var(--r-full);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-pill--links a:hover {
  background: rgba(255,255,255,0.70);
  color: var(--text);
}

/* кнопки справа */
.nav-pill--actions {
  gap: 10px;
  padding: 10px 12px;
}
.nav-cta {
  background: linear-gradient(135deg, #00C9A7, #00a882) !important;
  color: #fff !important;
  padding: 11px 22px;
  border-radius: var(--r-full) !important;
  box-shadow: 0 0 14px rgba(0,201,167,0.4);
  font-weight: 700 !important;
  font-size: .9rem !important;
  transition: opacity .2s, transform .2s !important;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .82; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---- BUTTONS ---- */
.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--text);
  font-family: var(--font);
  font-weight: 700; font-size: 1rem;
  padding: 15px 34px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,1);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,1); }
.btn-primary:hover::after { left: 160%; }

.btn-secondary {
  display: inline-flex; align-items: center;
  font-family: var(--font);
  font-weight: 600; font-size: 1rem;
  color: var(--text-muted);
  padding: 15px 34px;
  border-radius: var(--r-full);
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color .2s, background .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--primary); background: rgba(0,201,167,.08); color: var(--text); }

.btn-large { font-size: 1.1rem; padding: 17px 44px; }
.btn-giveaway {
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  padding: 18px 44px !important;
  border: 2px solid rgba(0,0,0,0.15) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,1) !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* ---- HERO HIDDEN ---- */
.hero-standalone { display: none; }

/* ---- CANVAS ---- */
.canvas-wrap {
  position: fixed; inset: 0;
  z-index: 1;
  clip-path: none;
  pointer-events: none;
}
#canvas { width: 100%; height: 100%; display: block; }

/* ---- GLASS OVERLAY (permanent, over canvas) ---- */
#glass-overlay {
  position: fixed; inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

/* ---- DARK OVERLAY ---- */
#dark-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  position: fixed; bottom: 72px;
  left: 0; right: 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s;
}
.marquee-text {
  font-family: var(--font);
  font-size: 11vw; font-weight: 900;
  letter-spacing: -.02em;
  white-space: nowrap;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.12);
  will-change: transform;
}

/* ---- SCROLL PARTS ---- */
.scroll-part { position: relative; z-index: 3; }
#part1-scroll { height: 500vh; }
#part2-scroll { height: 400vh; }

/* ---- SCROLL SECTIONS ---- */
.scroll-section {
  position: absolute; left: 0; right: 0;
  opacity: 0; pointer-events: none;
  z-index: 5;
  transition: opacity .15s;
}
.scroll-section.visible { opacity: 1; pointer-events: auto; }

.align-left  { padding: 60px 55vw 60px 5vw; }
.align-right { padding: 60px 5vw 60px 55vw; }
.align-left .section-inner,
.align-right .section-inner { max-width: 40vw; }

/* Glass card for section content */
.section-inner {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--r-xl);
  padding: 36px 40px;
}

/* ---- SECTION TYPOGRAPHY ---- */
.section-label {
  display: block;
  font-family: var(--font);
  font-size: .66rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font);
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  font-weight: 800;
  line-height: 1.0; letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 18px;
}
.section-body {
  font-size: 1rem; font-weight: 400;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text);
}
.feature-dot {
  flex-shrink: 0;
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
}

.section-frog-inline { margin-top: 20px; }
.inline-frog { width: 72px; height: 72px; object-fit: contain; }

/* ---- STATS SECTION ---- */
.section-stats {
  left: 0; right: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
  padding: 60px 5vw;
  text-align: center;
}
.stats-label { width: 100%; text-align: center; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 860px; width: 100%;
}
.stat {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.stat-top {
  display: flex; align-items: baseline; justify-content: center;
  gap: 3px;
}
.stat-number {
  font-family: var(--font);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

/* ---- STORY IMAGE PLACEHOLDER ---- */
.story-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; margin-top: 20px;
  width: 100%; max-width: 280px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.story-img--alt { background: rgba(0,152,234,.04); }
.placeholder-icon { font-size: 2.5rem; }
.placeholder-label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted);
}
.placeholder-real-img { width: 100%; height: 100%; object-fit: cover; }

/* ---- BREAK SECTION — liquid glass ---- */
.break-section {
  position: relative; z-index: 25;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  padding: 100px 5vw;
  border-top: 1px solid rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 80px rgba(0,0,0,0.04);
}
.break-inner { max-width: 1100px; margin: 0 auto; }
.break-header { text-align: center; margin-bottom: 56px; }
.break-heading {
  font-family: var(--font); font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900; line-height: 1.0; letter-spacing: -.03em;
  color: var(--text); margin-bottom: 14px;
}
.break-heading--accent { color: var(--primary); }
.break-subtext { font-size: 1rem; color: var(--text-muted); max-width: 400px; margin: 0 auto; }

.buy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 48px;
}
.buy-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,1);
  border-radius: var(--r-lg); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s, box-shadow .25s;
}
.buy-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,1); }
.buy-card-num {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; color: var(--primary); opacity: .7;
}
.buy-card-icon { font-size: 1.8rem; }
.buy-card-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.buy-card-text { font-size: .88rem; line-height: 1.6; color: var(--text-muted); }
.buy-card-ca {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 6px 12px; border-radius: var(--r-sm); margin-top: 4px;
}
.break-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ---- SOCIAL ---- */
.social-links { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border-radius: var(--r-lg);
  font-family: var(--font);
  font-size: .88rem; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  width: fit-content;
  color: var(--text);
}
.social-btn:hover { transform: translateX(5px); box-shadow: 0 6px 24px rgba(0,0,0,0.10); }
.social-icon { font-size: 1rem; }
.social-icon-img { width: 20px; height: 20px; object-fit: contain; }

/* ---- CONTRACT ---- */
.contract-label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .15em;
  color: var(--primary);
  text-transform: uppercase;
}
.contract-address {
  font-family: 'Courier New', monospace;
  font-size: .72rem;
  color: var(--text-muted);
  word-break: break-all;
}

/* ---- CTA SECTION ---- */
.section-cta {
  left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 5vw;
  text-align: center;
}
.cta-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  max-width: 540px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--r-xl);
  padding: 52px 44px;
}
.cta-frog { width: 100px; height: 100px; }
.cta-frog-img { width: 100%; height: 100%; object-fit: contain; }
.cta-heading {
  font-family: var(--font);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--text);
}
.cta-body {
  font-size: 1rem; line-height: 1.65;
  color: var(--text-muted);
}
.cta-contract {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 8px 16px;
  border-radius: var(--r-md);
}

/* ---- FOOTER ---- */
.site-footer {
  position: relative; z-index: 30;
  background: rgba(240, 248, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.5);
  padding: 56px 5vw;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
  text-align: center;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font);
  font-weight: 800; font-size: 1.3rem;
  letter-spacing: .1em; color: var(--text);
}
.footer-logo img { width: 36px; height: 36px; object-fit: contain; }
.footer-disclaimer {
  font-size: .78rem; line-height: 1.65;
  color: var(--text-muted);
  max-width: 460px;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy {
  font-size: .72rem;
  color: rgba(0,0,0,0.28);
  letter-spacing: .04em;
}

/* ---- SCROLL ARROW ---- */
.scroll-arrow {
  width: 26px; height: 26px;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 6px rgba(0,201,167,0.6));
  animation: scroll-bounce 1.4s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 0.6; }
}

/* ============================================================
   LANG TOGGLE
   ============================================================ */
.nav-right {
  display: flex; align-items: center; gap: 14px;
}
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(0,0,0,0.05);
  border-radius: var(--r-full);
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-muted);
  padding: 5px 11px;
  border-radius: var(--r-full);
  transition: background .2s, color .2s;
}
.lang-btn.active {
  background: rgba(255,255,255,0.9);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* ============================================================
   CANVAS HERO — first viewport, canvas plays behind it
   ============================================================ */
.canvas-hero {
  position: relative; z-index: 5;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 7vh;
  pointer-events: none;
}

/* ---- compact action bar ---- */
.hero-cta-bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-full);
  flex-wrap: wrap;
  justify-content: center;
}

.btn-buy-hero {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #00C9A7, #00a882);
  color: #fff;
  font-family: var(--font);
  font-weight: 700; font-size: .9rem;
  padding: 11px 22px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(0,201,167,0.45), 0 4px 16px rgba(0,201,167,0.3);
  transition: box-shadow .2s, transform .2s;
}
.btn-buy-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0,201,167,0.65), 0 6px 24px rgba(0,201,167,0.4);
}

.hero-ca-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 9px 14px 9px 12px;
  border-radius: var(--r-full);
}
.hero-ca-label {
  font-size: .6rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
}
.hero-ca-addr {
  font-family: 'Courier New', monospace;
  font-size: .72rem;
  color: var(--text-muted);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-ca-copy {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font);
  font-size: .72rem; font-weight: 600;
  color: var(--text-muted);
  padding: 3px 6px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.hero-ca-copy:hover { color: var(--text); background: rgba(0,0,0,0.06); }
.hero-ca-copy.copied { color: var(--primary); }

.btn-chart-hero {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text);
  font-family: var(--font);
  font-weight: 600; font-size: .9rem;
  padding: 11px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: background .2s, transform .2s;
  pointer-events: auto;
}
.btn-chart-hero:hover { background: rgba(0,0,0,0.10); transform: translateY(-1px); }

/* ---- scroll hint ---- */
.hero-scroll-hint {
  pointer-events: none;
  margin-top: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 1;
}
.hero-scroll-hint span {
  font-size: .75rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
  text-shadow: 0 0 12px rgba(0,201,167,0.4);
}

/* ============================================================
   GLASS CARD BASE
   ============================================================ */
.glass-card {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
  border-radius: var(--r-xl);
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s;
  will-change: transform;
}
.tilt-card { transform-style: preserve-3d; }

/* ============================================================
   PAGE SECTIONS (static, after animation)
   ============================================================ */
.page-section {
  position: relative; z-index: 30;
  padding: 100px 5vw;
  background: rgba(255, 255, 255, 0.30);
}
.page-section--alt {
  background: rgba(255, 255, 255, 0.30);
}
.section-container {
  max-width: 1200px; margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  font-size: .66rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.35rem; font-weight: 700; line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px; margin: 0 auto;
}
.section-label-sm {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary);
}

/* ============================================================
   WINNERS SECTION
   ============================================================ */
.winners-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.winners-video-card {
  overflow: hidden;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.winners-video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}
.winners-right {
  display: flex; flex-direction: column; gap: 16px;
}
.winners-stats-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  width: 100%;
}
.winners-stat {
  padding: 28px 20px;
  text-align: center;
}
.winners-num {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.03em;
  color: var(--text);
}
.winners-stat-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.winners-prize-card {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 16px;
  width: 100%;
}
.winners-prize-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  background: #FFFFFF;
}
.prize-img {
  width: 100%; border-radius: var(--r-lg);
  object-fit: cover; aspect-ratio: 4/3;
}
.winners-prize-text {
  font-size: 1.05rem; font-weight: 700; line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-layout {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: start;
}
.story-video-card {
  overflow: hidden;
  background: #fff;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.story-video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}
.story-video-label {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.story-text-side {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 780px; width: 100%;
}
.story-info-card {
  padding: 36px 36px;
}
.story-inline-img {
  width: 100%;
  margin-top: 16px;
}
.story-inline-img img {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: contain;
}
.story-info-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.story-info-body {
  font-size: 1.08rem; font-weight: 700; line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.story-info-body p {
  margin: 0;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}
.story-social-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ============================================================
   TOKENOMICS SECTION
   ============================================================ */
.tokenomics-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}
.tokenomics-chart-card {
  padding: 36px 36px;
  display: flex; flex-direction: row; align-items: center; gap: 24px;
  overflow: visible;
  height: 332px;
}
.donut-wrap {
  position: relative;
  width: 260px; height: 260px;
}
#donut-chart { display: block; cursor: crosshair; }
.donut-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.donut-center-val {
  font-size: 1.8rem; font-weight: 900;
  color: var(--text); letter-spacing: -.03em;
  line-height: 1;
}
.donut-center-label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.chart-legend {
  display: flex; flex-direction: column; gap: 10px; width: 100%;
}
.token-img-wrap {
  flex: 2; display: flex; justify-content: center; align-items: center;
  overflow: visible;
}
.token-img {
  width: auto; height: 100%; min-height: 260px;
  object-fit: contain;
  transform: scale(1.47) translateY(-10px);
  transform-origin: center center;
}
.legend-item {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.legend-item:hover { background: rgba(0,0,0,0.04); }
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 3px; flex-shrink: 0;
}
.legend-label {
  font-size: .95rem; font-weight: 600;
  color: var(--text-muted);
}
.tokenomics-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.token-stat {
  padding: 28px 24px;
  text-align: center;
}
.token-stat-num {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.03em;
  color: var(--text);
}
.token-stat-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.token-ca-card {
  grid-column: 1 / -1;
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.token-ca-label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary);
}
.token-alloc-card {
  padding: 20px 20px;
  display: flex; flex-direction: column; gap: 4px;
  border-left: 4px solid var(--alloc-color);
  transition: background .35s ease, box-shadow .35s ease, transform .35s cubic-bezier(.25,.46,.45,.94), backdrop-filter .35s ease;
}
.token-alloc-card.alloc-active {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(200%) brightness(112%);
  -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(112%);
  box-shadow: 0 0 0 1.5px var(--alloc-color),
              0 8px 32px rgba(0,0,0,0.10),
              inset 0 1px 0 rgba(255,255,255,1),
              0 0 20px color-mix(in srgb, var(--alloc-color) 25%, transparent);
  transform: translateX(5px) scale(1.02);
}
.token-alloc-pct {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.03em;
  color: var(--alloc-color);
}
.token-alloc-label {
  font-size: .78rem; font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}
.token-alloc-amount {
  font-size: .68rem; font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   ROADMAP SECTION
   ============================================================ */
.roadmap-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  gap: 0;
}
.roadmap-img-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 32px 0;
}
.roadmap-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}
.roadmap-timeline {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: center;
}
.roadmap-phase-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-right: 24px;
}
.roadmap-phase-row:not(.roadmap-phase-row--last)::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 14px;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(0,0,0,0.12), rgba(0,0,0,0.04));
}
.roadmap-phase-left {
  margin-bottom: 10px;
}
.phase-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}
.phase-dot--done   { background: #00C9A7; box-shadow: 0 0 10px rgba(0,201,167,0.5); }
.phase-dot--active { background: #0098EA; box-shadow: 0 0 10px rgba(0,152,234,0.5); animation: pulse-dot 1.8s ease-in-out infinite; }
.phase-dot--soon   { background: rgba(0,0,0,0.15); }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px rgba(0,152,234,0.4); }
  50%       { box-shadow: 0 0 18px rgba(0,152,234,0.8); }
}

.phase-line { display: none; }
.roadmap-phase-content {
  flex: 1;
}
.roadmap-phase-row--last .roadmap-phase-content {
  padding-bottom: 0;
}
.phase-tag {
  display: inline-block;
  font-size: .58rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 6px;
}
.phase-tag--done   { background: rgba(0,201,167,0.12); color: #00C9A7; border: 1px solid rgba(0,201,167,0.3); }
.phase-tag--active { background: rgba(0,152,234,0.12); color: #0098EA; border: 1px solid rgba(0,152,234,0.3); }
.phase-tag--soon   { background: rgba(0,0,0,0.05); color: var(--text-muted); border: 1px solid rgba(0,0,0,0.1); }
.phase-title {
  font-family: var(--font);
  font-size: 1.15rem; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.phase-list {
  display: flex; flex-direction: column; gap: 0;
}
.phase-list li {
  font-size: .88rem; font-weight: 700; line-height: 1.5;
  color: var(--text-muted);
  list-style: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.phase-list li:last-child { border-bottom: none; padding-bottom: 0; }
.phase-list li:first-child { padding-top: 0; }

/* ============================================================
   HOW TO BUY SECTION
   ============================================================ */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.buy-step-card {
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.buy-step-num {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; color: var(--primary); opacity: .7;
}
.buy-step-icon { font-size: 1.8rem; display: flex; align-items: center; }
.step-icon-img { width: 40px; height: 40px; object-fit: contain; }
.buy-step-title { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.buy-step-text  { font-size: 1rem; font-weight: 700; line-height: 1.6; color: var(--text-muted); }
.buy-ca {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 6px 12px; border-radius: var(--r-sm); margin-top: 4px;
}
.buy-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

/* ---- TWEMOJI ---- */
img.emoji {
  height: 1.1em; width: 1.1em;
  vertical-align: -0.15em;
  display: inline-block;
}

/* ============================================================
   MOBILE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .site-header { padding: 12px 16px; gap: 10px; justify-content: space-between; flex-wrap: nowrap; }
  .nav-pill--links { display: none; }
  .nav-pill--links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 80px; left: 16px; right: 16px;
    padding: 16px; gap: 4px; z-index: 999;
  }
  .nav-pill--links.mobile-open a { padding: 12px 16px; font-size: 1.1rem; }
  .nav-pill--actions { gap: 6px; padding: 8px 10px; }
  .nav-pill--logo { padding: 12px 16px 12px 14px; font-size: .9rem; }
  #nav-burger { display: flex; }

  /* Hero */
  .canvas-hero { padding: 0 20px; align-items: center; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-sub   { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-ca-pill { flex-direction: column; gap: 8px; padding: 14px 16px; width: 100%; }
  .hero-scroll-hint { width: 100%; align-self: center; }

  /* Sections */
  .page-section { padding: 64px 16px; }
  .section-container { padding: 0; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .section-desc  { font-size: .9rem; }

  /* Story */
  .story-layout { flex-direction: column; }
  .story-text-side { max-width: 100%; }
  .story-inline-img img { width: 100%; }

  /* Winners */
  .winners-layout { gap: 24px; }
  .giveaway-card  { padding: 28px 20px; }
  .prize-list li  { font-size: .85rem; }

  /* Tokenomics */
  .tokenomics-layout { grid-template-columns: 1fr; }
  .tokenomics-chart-card {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 24px 20px;
  }
  .token-img-wrap { flex: unset; width: 100%; overflow: visible; }
  .token-img { height: auto; width: 110%; max-width: 360px; transform: scale(1.25) translateY(-8px); }
  .tokenomics-stats { grid-template-columns: 1fr 1fr; }
  .donut-wrap { width: 220px; height: 220px; }
  #donut-chart { width: 220px !important; height: 220px !important; }

  /* Roadmap */
  .roadmap-card { flex-direction: column; }
  .roadmap-img-col { width: 100%; padding: 20px 20px 0; }
  .roadmap-img { max-height: 260px; object-fit: contain; }
  .roadmap-timeline {
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
  }
  .roadmap-phase-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 6px;
    padding-right: 0;
    padding-bottom: 32px;
    align-items: start;
  }
  .roadmap-phase-row:not(.roadmap-phase-row--last)::after {
    top: 14px; left: 7px;
    width: 2px; height: 100%;
    right: auto; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.04));
  }
  .roadmap-phase-left { grid-column: 1; grid-row: 1 / -1; padding-top: 3px; }
  .phase-tag { grid-column: 2; grid-row: 1; white-space: nowrap; align-self: start; margin-bottom: 2px; }
  .phase-title { grid-column: 2; grid-row: 2; font-size: 1rem; text-align: left; margin-bottom: 6px; }
  .roadmap-phase-content { display: contents; }
  .phase-list { grid-column: 2; grid-row: 3; width: 100%; }
  .phase-list li { font-size: .8rem; }

  /* How to Buy */
  .buy-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .buy-step-card { padding: 20px 16px; }

  /* Social */
  .social-links { flex-wrap: wrap; justify-content: center; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
}

/* ============================================================
   SMALL MOBILE — max-width: 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 12vw, 3rem); }
  .buy-grid   { grid-template-columns: 1fr; }
  .tokenomics-stats { grid-template-columns: 1fr 1fr; }
  .nav-pill--actions .btn-primary { display: none; }
  .roadmap-img { max-height: 200px; }
}
