/* ============================================================
   PHINK COIN — Premium Fintech CSS
   Design System: #7026F2 → #F0506A (purple → coral-pink)
   Based on Phink BR UX v3 + Crypto additions
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== Variables ===== */
:root {
  --bg:        #06000E;
  --bg2:       #090018;
  --bg3:       #0C001F;

  --purple:    #7026F2;
  --violet:    #B03ACA;
  --coral:     #F0506A;

  --text:      #F2EFF8;
  --muted:     #8878A2;
  --faint:     #5A527A;
  --subtle:    rgba(255,255,255,0.05);
  --border:    rgba(255,255,255,0.08);

  --grad:      linear-gradient(90deg, #7026F2 0%, #F0506A 100%);
  --grad-btn:  linear-gradient(90deg, #8035F5 0%, #F0506A 100%);
  --grad-text: linear-gradient(90deg, #9B55F7 0%, #F0506A 100%);
  --grad-card: linear-gradient(135deg, rgba(112,38,242,0.1) 0%, rgba(240,80,106,0.04) 100%);
  --grad-border: linear-gradient(90deg, rgba(112,38,242,0.4) 0%, rgba(240,80,106,0.25) 100%);

  --glow:      0 0 70px rgba(112,38,242,0.22), 0 0 140px rgba(240,80,106,0.1);
  --glow-sm:   0 0 32px rgba(112,38,242,0.18);

  --green:     #00E676;
  --gold:      #F0B429;
  --red:       #F0506A;

  --radius:    20px;
  --radius-sm: 13px;
  --radius-xs: 9px;
  --nav-h:     72px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --tr:        all 0.32s var(--ease);
  --max:       1160px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img    { max-width: 100%; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== Layout ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ===== Utilities ===== */
.g-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A86EEE;
  background: rgba(112,38,242,0.09);
  border: 1px solid rgba(112,38,242,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #A86EEE;
  animation: blink 2.2s ease infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: var(--tr);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  border: none;
  box-shadow: 0 3px 22px rgba(112,38,242,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(200,68,165,0.5); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background: rgba(255,255,255,0.09); border-color: rgba(112,38,242,0.32); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #B06EF7;
  border: 1px solid rgba(112,38,242,0.38);
  padding: 11px 22px;
  font-size: 13.5px;
}
.btn-ghost:hover { background: rgba(112,38,242,0.1); transform: translateY(-1px); }
.btn-sm  { padding: 9px 20px; font-size: 13px; }
.btn-lg  { padding: 15px 34px; font-size: 15.5px; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(6,0,14,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo-name { font-size: 20px; font-weight: 400; letter-spacing: -0.03em; color: #fff; font-family: 'Poppins', sans-serif; }

.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); position: relative; transition: color 0.22s; letter-spacing: 0.01em; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--grad-btn); border-radius: 2px; transition: width 0.28s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px;
}
.lang-btn {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--faint);
  transition: var(--tr);
  letter-spacing: 0.05em;
}
.lang-btn.active { background: var(--grad-btn); color: #fff; box-shadow: 0 2px 10px rgba(112,38,242,0.4); }

.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: var(--tr);
}
.nav-ig:hover { color: #F07090; border-color: rgba(240,80,106,0.35); background: rgba(240,80,106,0.06); }
.nav-ig svg { width: 15px; height: 15px; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: var(--grad-btn);
  color: #fff; border: none; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: var(--tr);
  box-shadow: 0 3px 18px rgba(112,38,242,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(200,68,165,0.45); }
.nav-cta svg { width: 13px; height: 13px; }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; gap: 4.5px; padding: 8px; cursor: pointer; }
.nav-burger span { display: block; width: 21px; height: 1.8px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,0,14,0.97);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px 24px;
  flex-direction: column;
  gap: 2px;
  z-index: 998;
  animation: slideDown 0.26s var(--ease);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 16px; font-weight: 600; color: var(--muted); padding: 12px 0; border-bottom: 1px solid var(--border); transition: var(--tr); }
.nav-mobile a:last-child { border: none; }
.nav-mobile a:hover { color: var(--text); padding-left: 6px; }
.nav-mobile-cta { margin-top: 16px; text-align: center; }
.nav-mobile-cta a {
  display: inline-flex; justify-content: center;
  width: 100%; border: none !important; color: #fff !important;
  background: var(--grad-btn); border-radius: 50px;
  padding: 14px 24px !important; font-size: 15px !important; font-weight: 700 !important;
  box-shadow: 0 4px 22px rgba(112,38,242,0.4);
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Background orbs & grid ===== */
.bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(88px); will-change: transform; animation: drift 11s ease-in-out infinite; }
.orb-a { width: 640px; height: 640px; background: radial-gradient(circle, rgba(112,38,242,0.28) 0%, transparent 65%); top: -160px; right: -100px; animation-duration: 13s; }
.orb-b { width: 480px; height: 480px; background: radial-gradient(circle, rgba(176,58,202,0.18) 0%, transparent 65%); bottom: -80px; left: -60px; animation-delay: -4s; }
.orb-c { width: 320px; height: 320px; background: radial-gradient(circle, rgba(240,80,106,0.14) 0%, transparent 65%); top: 42%; left: 40%; animation-delay: -7s; animation-duration: 15s; }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(24px, -30px) scale(1.05); } 66% { transform: translate(-16px, 16px) scale(0.97); } }

.bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(112,38,242,0.048) 1px, transparent 1px), linear-gradient(90deg, rgba(112,38,242,0.048) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 25%, transparent 100%);
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 90px; overflow: hidden; }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-text { max-width: 560px; }

.hero-h1 { font-size: clamp(34px, 4.2vw, 54px); font-weight: 900; line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 20px; animation: fadeUp 0.85s 0.1s both; }
.hero-sub { font-size: clamp(15px, 1.6vw, 17px); color: var(--muted); line-height: 1.72; max-width: 500px; margin-bottom: 32px; animation: fadeUp 0.85s 0.24s both; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeUp 0.85s 0.38s both; }

/* CA Bar */
.ca-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(112,38,242,0.22);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 28px;
  animation: fadeUp 0.85s 0.52s both;
  position: relative;
}
.ca-bar::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius-sm) + 1px);
  background: var(--grad-btn);
  opacity: 0.15;
  z-index: -1;
}
.ca-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A86EEE; flex-shrink: 0; }
.ca-address { font-family: 'Courier New', monospace; font-size: 12px; color: var(--muted); flex: 1; word-break: break-all; min-width: 0; }
.ca-copy-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  color: #A86EEE; padding: 4px 12px;
  border: 1px solid rgba(112,38,242,0.3);
  border-radius: 50px; transition: var(--tr); flex-shrink: 0;
  background: rgba(112,38,242,0.07);
}
.ca-copy-btn:hover { background: rgba(112,38,242,0.15); color: var(--text); }
.ca-copy-btn svg { width: 12px; height: 12px; }

/* Tracker links */
.hero-trackers { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; animation: fadeUp 0.85s 0.62s both; }
.tracker-lbl { font-size: 11px; color: var(--faint); font-weight: 500; }
.tracker-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
  padding: 5px 12px; border: 1px solid var(--border);
  border-radius: 50px; transition: var(--tr);
}
.tracker-link:hover { color: var(--text); border-color: rgba(112,38,242,0.3); background: rgba(112,38,242,0.06); }

/* Scroll hint */
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--faint); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; animation: fadeIn 2s 1.2s both; }
.scroll-track { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(112,38,242,0.7), transparent); animation: scrollPulse 2.4s ease infinite; }
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; opacity: 1; } 55% { transform: scaleY(1); transform-origin: top; opacity: 1; } 100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; } }

/* Hero visual */
.hero-visual { position: relative; align-self: center; animation: fadeUp 0.85s 0.3s both; z-index: 2; }
.hv-illustration { width: 100%; max-width: 420px; height: auto; display: block; filter: drop-shadow(0 0 48px rgba(112,38,242,0.18)); }

/* ===== Stats Ticker ===== */
.stats-ticker {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.stats-ticker::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 1.5px;
  background: var(--grad-btn);
  animation: scanLine 8s linear infinite;
}
@keyframes scanLine { 0% { left: -60%; } 100% { left: 100%; } }
.ticker-track { display: flex; align-items: center; gap: 40px; animation: ticker 35s linear infinite; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ticker-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); }
.ticker-value { font-size: 14px; font-weight: 700; color: var(--text); }
.ticker-value.up { color: var(--green); }
.ticker-value.grad { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ticker-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); flex-shrink: 0; }

/* ===== Sections ===== */
.section { padding: 112px 0; }
.section-alt { background: var(--bg2); position: relative; z-index: 1; }
.sh { margin-bottom: 56px; }
.sh.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.sh h2 { font-size: clamp(26px, 2.8vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.13; margin-bottom: 16px; }
.sh p { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 580px; }
.sh.centered p { margin: 0 auto; }

/* ===== Problem section ===== */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.problem-visual { display: flex; align-items: center; justify-content: center; }
.problem-rings { position: relative; width: 300px; height: 300px; }
.prob-ring { position: absolute; border-radius: 50%; border: 1.5px solid; animation: ringPulse 3s ease-in-out infinite; }
.prob-ring:nth-child(1) { inset: 0; border-color: rgba(240,80,106,0.35); }
.prob-ring:nth-child(2) { inset: 36px; border-color: rgba(240,80,106,0.2); animation-delay: 0.5s; }
.prob-ring:nth-child(3) { inset: 72px; border-color: rgba(240,80,106,0.12); animation-delay: 1s; }
.prob-center { position: absolute; inset: 110px; border-radius: 50%; background: rgba(240,80,106,0.06); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.04); opacity: 0.4; } }

.problem-items { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.prob-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: var(--subtle); border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--tr);
}
.prob-item:hover { border-color: rgba(240,80,106,0.25); background: rgba(240,80,106,0.05); transform: translateX(4px); }
.prob-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(240,80,106,0.1); border: 1px solid rgba(240,80,106,0.18); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.prob-text h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.prob-text p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ===== About section ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text h2 { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 26px; }
.about-text p { font-size: 16px; color: var(--muted); line-height: 1.78; }
.about-text p + p { margin-top: 16px; }
.about-visual { position: relative; }
.about-card-stack { position: relative; height: 400px; }
.about-main-card { position: absolute; inset: 0; border-radius: var(--radius); overflow: hidden; background: var(--grad-card); border: 1px solid rgba(112,38,242,0.18); }
.about-main-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
.about-glow-ring { position: absolute; inset: -3px; border-radius: calc(var(--radius) + 3px); background: var(--grad); z-index: -1; opacity: 0.35; filter: blur(16px); }
.about-float-badge { position: absolute; bottom: -16px; left: -16px; background: rgba(9,0,26,0.92); border: 1px solid rgba(112,38,242,0.28); backdrop-filter: blur(14px); border-radius: var(--radius-sm); padding: 16px 20px; min-width: 160px; }
.badge-number { font-size: 28px; font-weight: 900; letter-spacing: -0.04em; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 3px; }
.badge-label { font-size: 11.5px; font-weight: 500; color: var(--muted); }

/* ===== Impact block ===== */
.impact-block { position: relative; padding: 84px 0; overflow: hidden; }
.impact-block::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(112,38,242,0.09) 0%, rgba(176,58,202,0.06) 50%, rgba(240,80,106,0.04) 100%); }
.impact-inner { position: relative; z-index: 1; text-align: center; max-width: 780px; margin: 0 auto; }
.impact-inner p { font-size: clamp(18px, 2.2vw, 26px); font-weight: 600; line-height: 1.55; color: var(--text); }
.impact-inner p + p { margin-top: 20px; font-size: clamp(15px, 1.7vw, 18px); font-weight: 400; color: var(--muted); }

/* ===== Ecosystem Steps ===== */
.eco-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; margin-top: 56px; }
.eco-steps::before { content: ''; position: absolute; top: 36px; left: calc(16.66% + 10px); right: calc(16.66% + 10px); height: 1.5px; background: var(--grad-btn); opacity: 0.35; z-index: 0; }
.eco-step { text-align: center; position: relative; z-index: 1; }
.eco-step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--bg2); border: 2px solid var(--purple); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; color: var(--purple); margin: 0 auto 24px; box-shadow: 0 0 24px rgba(112,38,242,0.2); }
.eco-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.eco-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* IPO highlight */
.ipo-highlight {
  margin-top: 48px;
  background: var(--grad-card);
  border: 1px solid rgba(112,38,242,0.18);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ipo-tag { display: inline-block; background: rgba(112,38,242,0.09); border: 1px solid rgba(112,38,242,0.2); border-radius: 50px; padding: 5px 14px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #A86EEE; margin-bottom: 16px; }
.ipo-highlight h3 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.ipo-highlight p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.ipo-flow { display: flex; flex-direction: column; gap: 0; }
.ipo-step { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--subtle); border: 1px solid var(--border); border-radius: var(--radius-xs); transition: var(--tr); }
.ipo-step:hover { border-color: rgba(112,38,242,0.28); background: rgba(112,38,242,0.06); }
.ipo-step-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(112,38,242,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ipo-step-text { font-size: 13.5px; font-weight: 500; color: var(--text); }
.ipo-arrow { text-align: center; color: var(--faint); font-size: 1rem; padding: 4px 0; }

/* ===== Products (pcard) ===== */
.products-row-1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.products-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: calc(66.66% + 6px); margin: 0 auto; }

.pcard {
  background: var(--grad-card);
  border: 1px solid rgba(112,38,242,0.13);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: var(--tr); cursor: default;
}
.pcard::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius); border: 1px solid transparent; background: var(--grad-border) border-box; -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask-composite: destination-out; mask-composite: exclude; opacity: 0; transition: opacity 0.32s var(--ease); }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(112,38,242,0.16); background: linear-gradient(135deg, rgba(112,38,242,0.13) 0%, rgba(176,58,202,0.07) 50%, rgba(240,80,106,0.04) 100%); }
.pcard:hover::after { opacity: 1; }
.pcard-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--grad-btn); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 3px 16px rgba(112,38,242,0.38); flex-shrink: 0; }
.pcard-icon svg { width: 19px; height: 19px; color: #fff; }
.pcard-name { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text); }
.pcard-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== Tokenomics ===== */
.token-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.chart-wrap { position: relative; max-width: 340px; margin: 0 auto; }
.chart-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.chart-center-val { font-size: 1.4rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.chart-center-lbl { font-size: 10px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; }

.token-legend { display: flex; flex-direction: column; gap: 12px; }
.legend-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--subtle); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--tr); }
.legend-row:hover { border-color: rgba(112,38,242,0.22); transform: translateX(4px); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-name { flex: 1; font-size: 14px; font-weight: 500; color: var(--muted); }
.legend-pct { font-size: 16px; font-weight: 800; color: var(--text); }

.reserve-strip { margin-top: 32px; }
.reserve-bar { height: 44px; border-radius: var(--radius-xs); overflow: hidden; display: flex; border: 1px solid var(--border); }
.reserve-90 { flex: 9; background: linear-gradient(90deg, rgba(0,229,212,0.15), rgba(0,229,212,0.08)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #00E5D4; }
.reserve-10 { flex: 1; background: linear-gradient(90deg, rgba(112,38,242,0.25), rgba(112,38,242,0.12)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #A86EEE; }

/* ===== Investment Plans ===== */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-card {
  background: var(--grad-card);
  border: 1px solid rgba(112,38,242,0.13);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--tr);
  overflow: hidden;
}
.plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-btn); transform: scaleX(0); transition: transform 0.36s var(--ease); }
.plan-card:hover { transform: translateY(-8px); border-color: rgba(112,38,242,0.3); box-shadow: 0 24px 60px rgba(112,38,242,0.18); }
.plan-card:hover::before { transform: scaleX(1); }
.plan-card.featured { border-color: rgba(112,38,242,0.35); box-shadow: 0 12px 48px rgba(112,38,242,0.2); }
.plan-card.featured::before { transform: scaleX(1); }
.plan-badge { position: absolute; top: -1px; right: 24px; background: var(--grad-btn); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 0 0 8px 8px; color: #fff; }
.plan-tier { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #A86EEE; margin-bottom: 10px; }
.plan-range { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.plan-yield { font-size: 3.2rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 4px; }
.plan-yield-lbl { font-size: 12px; color: var(--faint); margin-bottom: 28px; }
.plan-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
.plan-feat { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); }
.plan-feat::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* ===== Differentials ===== */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.diff-head h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; }
.diff-head p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 40px; max-width: 440px; }
.diff-items { display: flex; flex-direction: column; gap: 12px; }
.diff-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--subtle); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--tr); }
.diff-item:hover { border-color: rgba(112,38,242,0.25); background: rgba(112,38,242,0.07); transform: translateX(4px); }
.diff-num { font-size: 12px; font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; flex-shrink: 0; padding-top: 1px; min-width: 24px; }
.diff-text { font-size: 14.5px; color: var(--text); font-weight: 500; line-height: 1.5; }
.diff-visual { position: sticky; top: calc(var(--nav-h) + 28px); }
.diff-card { background: var(--grad); border-radius: var(--radius); padding: 48px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--glow); }
.diff-card::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E") repeat; }
.diff-card > * { position: relative; z-index: 1; }
.diff-card-overline { font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.diff-card-text { font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; line-height: 1.2; letter-spacing: -0.03em; color: #fff; margin-bottom: 22px; }
.diff-card-sub { font-size: 14.5px; color: rgba(255,255,255,0.68); line-height: 1.65; }

/* ===== Bonus/Incentive Tables ===== */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bonus-card { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius); padding: 30px; }
.bonus-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.bonus-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.bonus-table th { text-align: left; padding: 10px 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); border-bottom: 1px solid var(--border); }
.bonus-table td { padding: 12px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.03); }
.bonus-table tr:hover td { background: rgba(112,38,242,0.04); }
.bonus-table td.grad { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
.bonus-table td.green { color: var(--green); font-weight: 700; }

/* ===== Roadmap ===== */
.road-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.road-legend { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.road-legend-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.road-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.road-dot.done { background: var(--green); box-shadow: 0 0 8px rgba(0,230,118,0.5); }
.road-dot.active { background: var(--purple); box-shadow: 0 0 8px rgba(112,38,242,0.5); animation: blink 2s ease infinite; }
.road-dot.next { background: var(--faint); }

.road-timeline { position: relative; padding-left: 28px; }
.road-timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 1.5px; background: linear-gradient(to bottom, var(--purple), rgba(176,58,202,0.2), rgba(240,80,106,0.08)); }
.road-item { position: relative; margin-bottom: 28px; }
.road-item-dot { position: absolute; left: -28px; top: 18px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--bg2); background: var(--faint); transition: var(--tr); }
.road-item.done .road-item-dot { background: var(--green); box-shadow: 0 0 10px rgba(0,230,118,0.45); }
.road-item.active .road-item-dot { background: var(--purple); box-shadow: 0 0 10px rgba(112,38,242,0.5); animation: blink 2s ease infinite; }
.road-card { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.1); border-radius: var(--radius-sm); padding: 22px 24px; transition: var(--tr); }
.road-card:hover { border-color: rgba(112,38,242,0.22); }
.road-item.active .road-card { border-color: rgba(112,38,242,0.32); box-shadow: 0 8px 32px rgba(112,38,242,0.1); }
.road-quarter { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A86EEE; margin-bottom: 6px; }
.road-title { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.road-tasks { display: flex; flex-direction: column; gap: 7px; }
.road-task { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.team-card { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--tr); position: relative; overflow: hidden; }
.team-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--grad-btn); transform: scaleX(0); transition: transform 0.36s var(--ease); }
.team-card:hover { transform: translateY(-6px); border-color: rgba(112,38,242,0.3); box-shadow: 0 20px 56px rgba(112,38,242,0.16); }
.team-card:hover::after { transform: scaleX(1); }
.team-avatar-wrap { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px; position: relative; }
.team-avatar-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid rgba(112,38,242,0.3); }
.team-avatar-wrap .avatar-glow { position: absolute; inset: -4px; border-radius: 50%; background: var(--grad); opacity: 0.25; filter: blur(10px); z-index: -1; }
.team-avatar-initials { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px; background: var(--grad-btn); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 900; color: #fff; box-shadow: 0 0 24px rgba(112,38,242,0.3); }
.team-name { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 5px; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A86EEE; margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* Founder page layout */
.founder-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: center; }
.founder-img-wrap { position: relative; }
.founder-frame { border-radius: var(--radius); overflow: hidden; background: var(--grad-card); border: 1px solid rgba(112,38,242,0.18); aspect-ratio: 4/5; }
.founder-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-glow { position: absolute; inset: -4px; border-radius: calc(var(--radius) + 4px); background: var(--grad); z-index: -1; opacity: 0.38; filter: blur(20px); }
.founder-name { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 5px; }
.founder-role { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #A86EEE; margin-bottom: 30px; }
.founder-bio p { font-size: 16px; color: var(--muted); line-height: 1.78; }
.founder-bio p + p { margin-top: 14px; }

/* ===== Vision slogan ===== */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vision-text p { font-size: 16px; color: var(--muted); line-height: 1.78; }
.vision-text p + p { margin-top: 16px; }
.vision-slogan { background: var(--grad); border-radius: var(--radius); padding: 52px 40px; text-align: center; box-shadow: var(--glow); position: relative; overflow: hidden; }
.vision-slogan::before { content: '"'; position: absolute; top: -14px; left: 18px; font-size: 160px; font-weight: 900; color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none; }
.vision-slogan-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.58); margin-bottom: 16px; position: relative; z-index: 1; }
.vision-slogan-q { font-size: clamp(22px, 2.6vw, 34px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.18; color: #fff; position: relative; z-index: 1; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.28s; }
.faq-item.open { border-color: rgba(112,38,242,0.3); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-weight: 600; font-size: 14.5px; cursor: pointer; gap: 16px; transition: color 0.22s; }
.faq-q:hover { color: #A86EEE; }
.faq-chevron, .faq-arrow { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: var(--faint); transition: var(--tr); }
.faq-item.open .faq-chevron, .faq-item.open .faq-arrow { background: rgba(112,38,242,0.12); border-color: rgba(112,38,242,0.28); color: #A86EEE; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ===== CTA Final ===== */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(112,38,242,0.11) 0%, rgba(176,58,202,0.07) 50%, rgba(240,80,106,0.05) 100%); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 18px; }
.cta-inner p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 40px; }

/* ===== Portfolio page ===== */
.pf-hero { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.18); border-radius: var(--radius); padding: 40px; margin-bottom: 40px; position: relative; overflow: hidden; }
.pf-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(112,38,242,0.08) 0%, transparent 60%); }
.pf-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.pf-stat { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius-sm); padding: 22px; transition: var(--tr); }
.pf-stat:hover { border-color: rgba(112,38,242,0.28); transform: translateY(-2px); }
.pf-stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); margin-bottom: 8px; }
.pf-stat-value { font-size: 1.7rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pf-stat-value.green { background: none; -webkit-text-fill-color: var(--green); }
.pf-stat-sub { font-size: 11px; color: var(--faint); margin-top: 4px; }
.pf-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }

/* Program cards */
.prog-card { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius); overflow: hidden; transition: var(--tr); margin-bottom: 20px; }
.prog-card:hover { border-color: rgba(112,38,242,0.28); }
.prog-header { padding: 20px 24px; background: linear-gradient(135deg, rgba(0,229,212,0.08), rgba(112,38,242,0.06)); display: flex; align-items: center; justify-content: space-between; }
.prog-name { font-size: 15px; font-weight: 700; }
.prog-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.prog-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.prog-badge.locked { background: rgba(240,80,106,0.1); color: var(--coral); border: 1px solid rgba(240,80,106,0.25); }
.prog-badge.active { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.25); }
.prog-body { padding: 24px; }
.prog-wallet { font-family: 'Courier New', monospace; font-size: 11.5px; color: var(--faint); background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 8px 12px; margin-bottom: 20px; word-break: break-all; }
.prog-amounts { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0; margin-bottom: 20px; }
.prog-amt { padding: 16px; }
.prog-amt:last-child { padding-left: 24px; }
.prog-amt-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 6px; }
.prog-amt-val { font-size: 2rem; font-weight: 900; }
.prog-amt-val.from { color: var(--faint); }
.prog-amt-val.to { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.prog-divider { background: var(--border); }
.prog-bar-wrap { margin-bottom: 16px; }
.prog-bar-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--faint); margin-bottom: 6px; }
.prog-bar { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.prog-bar-fill { height: 100%; border-radius: 3px; background: var(--grad-btn); }
.prog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.prog-yield-info { font-size: 13px; color: var(--muted); }
.prog-yield-pct { font-size: 14px; font-weight: 700; color: #A86EEE; }

/* Sidebar widget */
.pf-widget { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.pf-widget-header { padding: 14px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.pf-widget-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); }
.pf-widget-body { padding: 20px; }
.live-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 2s ease infinite; box-shadow: 0 0 6px var(--green); }

.qa-btn { display: flex; align-items: center; gap: 12px; padding: 13px 14px; background: var(--subtle); border: 1px solid var(--border); border-radius: var(--radius-xs); font-size: 13.5px; font-weight: 500; color: var(--muted); cursor: pointer; transition: var(--tr); width: 100%; margin-bottom: 8px; }
.qa-btn:hover { border-color: rgba(112,38,242,0.28); color: var(--text); background: rgba(112,38,242,0.06); }
.qa-icon { width: 32px; height: 32px; border-radius: 7px; background: rgba(112,38,242,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.qa-arrow { margin-left: auto; color: var(--faint); font-size: 12px; }

.tracker-row-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-xs); font-size: 13px; color: var(--muted); transition: var(--tr); margin-bottom: 7px; }
.tracker-row-item:hover { border-color: rgba(112,38,242,0.22); color: var(--text); background: rgba(112,38,242,0.04); }
.t-icon { width: 26px; height: 26px; border-radius: 6px; background: var(--subtle); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.t-ext { margin-left: auto; font-size: 10px; color: var(--faint); }

/* ===== Whitepaper ===== */
.wp-layout { display: grid; grid-template-columns: 240px 1fr; gap: 0; min-height: calc(100vh - var(--nav-h)); }
.wp-sidebar { position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto; background: rgba(6,0,14,0.96); border-right: 1px solid var(--border); padding: 28px 0; }
.wp-sidebar::-webkit-scrollbar { width: 3px; }
.wp-sidebar-title { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); padding: 0 20px; margin-bottom: 14px; }
.toc-link { display: block; padding: 7px 20px; font-size: 13px; color: var(--muted); border-left: 2px solid transparent; transition: var(--tr); }
.toc-link:hover { color: #A86EEE; border-left-color: rgba(112,38,242,0.4); background: rgba(112,38,242,0.04); }
.toc-link.active { color: #A86EEE; border-left-color: var(--purple); background: rgba(112,38,242,0.06); font-weight: 600; }
.toc-link.sub { padding-left: 36px; font-size: 12px; }
.wp-content { padding: 56px 64px; max-width: 860px; }
.wp-cover { min-height: 55vh; display: flex; flex-direction: column; justify-content: center; padding: 80px 0; border-bottom: 1px solid var(--border); margin-bottom: 64px; position: relative; }
.wp-cover::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(112,38,242,0.1) 0%, transparent 70%); pointer-events: none; }
.wp-version { display: inline-flex; align-items: center; gap: 8px; background: rgba(112,38,242,0.09); border: 1px solid rgba(112,38,242,0.2); border-radius: 50px; padding: 5px 14px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: #A86EEE; margin-bottom: 28px; width: fit-content; }
.wp-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; letter-spacing: -0.04em; }
.wp-subtitle { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.75; margin-bottom: 36px; }
.wp-meta { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); }
.wp-meta-item { display: flex; flex-direction: column; gap: 3px; }
.wp-meta-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.wp-meta-value { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.wp-section { margin-bottom: 64px; scroll-margin-top: 90px; }
.wp-section-num { font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #A86EEE; margin-bottom: 8px; }
.wp-section h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.03em; }
.wp-section h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; }
.wp-section h4 { font-size: 15px; font-weight: 700; margin: 20px 0 6px; color: #A86EEE; }
.wp-section p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.wp-section ul, .wp-section ol { padding-left: 20px; margin-bottom: 14px; }
.wp-section li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.wp-section li::marker { color: #A86EEE; }
.wp-box { border-radius: var(--radius-sm); padding: 22px 26px; margin: 20px 0; }
.wp-box.purple { background: rgba(112,38,242,0.07); border: 1px solid rgba(112,38,242,0.18); }
.wp-box.coral { background: rgba(240,80,106,0.07); border: 1px solid rgba(240,80,106,0.18); }
.wp-box.green { background: rgba(0,230,118,0.06); border: 1px solid rgba(0,230,118,0.16); }
.wp-box.gold { background: rgba(240,180,41,0.07); border: 1px solid rgba(240,180,41,0.18); }
.wp-box-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.wp-box-title.purple { color: #A86EEE; }
.wp-box-title.coral { color: var(--coral); }
.wp-box-title.green { color: var(--green); }
.wp-box-title.gold { color: var(--gold); }
.wp-box p { margin: 0; }
.wp-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 13.5px; }
.wp-table th { text-align: left; padding: 11px 14px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.wp-table td { padding: 13px 14px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.03); }
.wp-table tr:hover td { background: rgba(112,38,242,0.03); }
.wp-table td.grad { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
.wp-table td.green { color: var(--green); font-weight: 700; }
.wp-table td.cyan { color: #00E5D4; font-weight: 700; }

/* ===== Footer ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.footer-logo-row { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.footer-logo-row img { height: 28px; width: auto; }
.footer-logo-name { font-size: 18px; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.72; max-width: 300px; margin-bottom: 12px; }
.footer-slogan { font-size: 13px; font-weight: 600; color: #9060CC; font-style: italic; }
.footer-col-h { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: var(--tr); }
.footer-links a:hover { color: var(--text); padding-left: 4px; }
.footer-ig { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 50px; border: 1px solid rgba(240,80,106,0.22); background: rgba(240,80,106,0.05); font-size: 13px; font-weight: 500; color: #F07090; transition: var(--tr); margin-top: 4px; }
.footer-ig:hover { background: rgba(240,80,106,0.1); border-color: rgba(240,80,106,0.4); transform: translateY(-2px); }
.footer-ig svg { width: 14px; height: 14px; }
.footer-ca { padding: 16px 20px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 28px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy, .footer-tagline { font-size: 13px; color: var(--faint); }
.footer-tagline { font-style: italic; }

/* ===== Divider ===== */
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--border) 30%, var(--border) 70%, transparent); }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== Responsive 1024px ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .problem-grid, .token-grid, .diff-grid, .about-grid, .vision-grid { grid-template-columns: 1fr; gap: 44px; }
  .problem-visual { display: none; }
  .ipo-highlight { grid-template-columns: 1fr; }
  .eco-steps { grid-template-columns: 1fr; }
  .eco-steps::before { display: none; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .road-layout { grid-template-columns: 1fr; }
  .diff-visual { position: static; }
  .founder-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .wp-layout { grid-template-columns: 1fr; }
  .wp-sidebar { display: none; }
  .wp-content { padding: 40px 24px; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .hero { padding: 80px 0 60px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-cta, .nav-ig { display: none; }
  .nav-burger { display: flex; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .products-row-1, .products-row-2 { grid-template-columns: 1fr; }
  .products-row-2 { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-scroll { display: none; }
  .impact-block { padding: 56px 0; }
  .cta-section { padding: 80px 0; }
  .pf-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 60px 0 40px; }
  .pcard { padding: 24px 20px; }
  .vision-slogan, .diff-card { padding: 36px 24px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .ca-bar { flex-direction: column; }
  .pf-stats { grid-template-columns: 1fr; }
}

/* ===== BLOCO 1 — Hero centered ===== */
.hero--centered { padding: 130px 0 80px; }
.hero-centered-layout { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-h1--center { text-align: center; max-width: 820px; }
.hero-sub--center { text-align: center; max-width: 600px; margin: 20px auto 0; font-size: 17px; }
.hero-sub--center strong { color: var(--text); font-weight: 700; }

/* Crypto illustration */
.hero-illustration { width: 100%; max-width: 560px; margin: 40px auto 36px; }
.crypto-svg { width: 100%; height: auto; }

/* Buy row */
.hero-tagline { margin-bottom: 28px; }
.hero-buy-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-buy-row .btn { display: flex; align-items: center; gap: 8px; }

/* CA bar centered */
.ca-bar--centered { justify-content: center; max-width: 700px; margin: 0 auto; }

/* ===== BLOCO 2 — Purpose section ===== */
.purpose-section { padding: 0 0 80px; }
.purpose-card {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(112,38,242,0.28);
}
.purpose-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.purpose-icon { width: 72px; height: 72px; flex-shrink: 0; }
.purpose-icon svg { width: 100%; height: 100%; }
.purpose-text .tag--light .tag-dot { background: rgba(255,255,255,0.7); }
.purpose-text .tag--light { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.purpose-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -0.03em; }
.purpose-text p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.78; max-width: 520px; }
.purpose-stat-col { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; flex-shrink: 0; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 40px; }
.purpose-stat { text-align: right; }
.purpose-stat-num { font-size: 2rem; font-weight: 900; display: block; color: #fff; }
.purpose-stat-num.g-text { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.purpose-stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; }

/* ===== BLOCO 3 — Why grid ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--grad-card);
  border: 1px solid rgba(112,38,242,0.13);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-card:hover { border-color: rgba(112,38,242,0.3); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(112,38,242,0.14); }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--grad-btn); transform: scaleX(0); transition: transform 0.36s var(--ease); }
.why-card:hover::after { transform: scaleX(1); }
.why-num { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--faint); text-transform: uppercase; }
.why-icon { width: 44px; height: 44px; border-radius: var(--radius-xs); background: rgba(112,38,242,0.1); border: 1px solid rgba(112,38,242,0.18); display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 20px; height: 20px; stroke: #A86EEE; }
.why-card p { font-size: 15px; color: var(--text); font-weight: 600; line-height: 1.5; margin: 0; }

/* ===== BLOCO 4 — How steps ===== */
.how-section { background: var(--bg2); }
.how-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.how-step {
  flex: 1;
  max-width: 280px;
  background: var(--grad-card);
  border: 1px solid rgba(112,38,242,0.13);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  transition: var(--tr);
}
.how-step:hover { border-color: rgba(112,38,242,0.3); transform: translateY(-4px); }
.how-step-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(112,38,242,0.1); border: 1px solid rgba(112,38,242,0.2); display: flex; align-items: center; justify-content: center; }
.how-step-icon svg { width: 22px; height: 22px; stroke: #A86EEE; }
.how-step-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.how-step h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.how-step p { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.how-step .btn { margin-top: auto; }
.how-connector { display: flex; align-items: center; justify-content: center; padding: 0 4px; margin-top: 80px; flex-shrink: 0; opacity: 0.6; }
.how-connector svg { width: 40px; height: 24px; }

/* ===== BLOCO 5 — Vision / Founder ===== */
.vision-founder-section { background: var(--bg2); }
.vision-founder-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

/* Photo column */
.vision-founder-photo { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.vf-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
}
.vf-photo-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(112,38,242,0.2);
}
.vf-photo-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--grad);
  z-index: -1;
  opacity: 0.45;
  filter: blur(18px);
}

/* Name card */
.vf-name-card {
  background: var(--grad-card);
  border: 1px solid rgba(112,38,242,0.18);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  text-align: center;
  width: 100%;
  max-width: 340px;
}
.vf-name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vf-role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Text column */
.vision-founder-text .tag { margin-bottom: 20px; }
.vision-founder-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 20px;
}
.vision-intro {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.vision-founder-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 32px;
}

/* Social buttons */
.vf-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.vf-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(112,38,242,0.25);
  background: rgba(112,38,242,0.07);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: var(--tr);
}
.vf-social-btn:hover {
  border-color: rgba(112,38,242,0.45);
  background: rgba(112,38,242,0.14);
  color: #A86EEE;
  transform: translateY(-2px);
}
.vf-social-btn svg { flex-shrink: 0; }

@media (max-width: 1024px) {
  .vision-founder-layout { grid-template-columns: 1fr; gap: 48px; }
  .vision-founder-photo { flex-direction: row; align-items: flex-start; gap: 24px; }
  .vf-photo-wrap { max-width: 180px; }
  .vf-name-card { flex: 1; text-align: left; }
}

@media (max-width: 600px) {
  .vision-founder-photo { flex-direction: column; align-items: center; }
  .vf-photo-wrap { max-width: 260px; }
  .vf-name-card { max-width: 100%; text-align: center; }
}

/* ===== BLOCO 6 — Trust section ===== */
.trust-section { padding: 120px 0; position: relative; overflow: hidden; }
.trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.trust-text .tag { margin-bottom: 20px; }
.trust-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; letter-spacing: -0.035em; line-height: 1.12; margin-bottom: 20px; }
.trust-text p { font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 36px; }
.trust-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-pillars { display: flex; flex-direction: column; gap: 20px; }
.trust-pillar {
  background: var(--grad-card);
  border: 1px solid rgba(112,38,242,0.13);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--tr);
}
.trust-pillar:hover { border-color: rgba(112,38,242,0.28); transform: translateX(4px); }
.trust-pillar-icon { width: 44px; height: 44px; border-radius: var(--radius-xs); background: rgba(112,38,242,0.1); border: 1px solid rgba(112,38,242,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-pillar-icon svg { width: 18px; height: 18px; stroke: #A86EEE; }
.trust-pillar h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.trust-pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Responsive blocks */
@media (max-width: 1024px) {
  .purpose-card { grid-template-columns: 1fr; text-align: center; padding: 40px 32px; }
  .purpose-icon { margin: 0 auto; }
  .purpose-text p { margin: 0 auto; }
  .purpose-stat-col { flex-direction: row; border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding: 24px 0 0; justify-content: center; }
  .purpose-stat { text-align: center; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .how-connector { display: none; }
  .how-step { max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  .hero--centered { padding: 100px 0 60px; }
  .hero-buy-row { flex-direction: column; align-items: stretch; }
  .hero-buy-row .btn { justify-content: center; }
  .ca-bar--centered { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .purpose-card { padding: 32px 24px; }
  .trust-section { padding: 80px 0; }
}

/* ===== Whitepaper hero ===== */
.wp-hero { padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }
.wp-hero .hero-h1 { font-size: clamp(2.2rem, 5vw, 4rem); }

/* Whitepaper content styles (direct tags inside .wp-content) */
.wp-content section { margin-bottom: 64px; scroll-margin-top: 90px; }
.wp-content h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.03em; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.wp-content h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; color: var(--text); }
.wp-content p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.wp-content ul, .wp-content ol { padding-left: 22px; margin-bottom: 14px; }
.wp-content li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.wp-content li::marker { color: #A86EEE; }
.wp-content strong { color: var(--text); font-weight: 600; }
.wp-callout { background: rgba(112,38,242,0.07); border: 1px solid rgba(112,38,242,0.22); border-left: 3px solid var(--purple); border-radius: var(--radius-xs); padding: 20px 24px; margin: 24px 0; font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.wp-callout strong { color: #A86EEE; }
.wp-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius-xs); border: 1px solid var(--border); }
.wp-table-wrap table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.wp-table-wrap th { text-align: left; padding: 11px 14px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); white-space: nowrap; }
.wp-table-wrap td { padding: 13px 14px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.03); }
.wp-table-wrap tr:last-child td { border-bottom: none; }
.wp-table-wrap tr:hover td { background: rgba(112,38,242,0.03); }

/* Whitepaper sidebar TOC (using generic a tags) */
.wp-toc { padding: 28px 0; }
.wp-toc-title { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); padding: 0 20px; margin-bottom: 14px; }
.wp-toc nav { display: flex; flex-direction: column; }
.wp-toc a { display: block; padding: 7px 20px; font-size: 13px; color: var(--muted); border-left: 2px solid transparent; transition: var(--tr); }
.wp-toc a:hover { color: #A86EEE; border-left-color: rgba(112,38,242,0.4); background: rgba(112,38,242,0.04); }
.wp-toc a.active { color: #A86EEE; border-left-color: var(--purple); background: rgba(112,38,242,0.06); font-weight: 600; }

/* Whitepaper roadmap */
.wp-roadmap { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 32px; }
.wp-roadmap::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1.5px; background: linear-gradient(to bottom, var(--purple), rgba(176,58,202,0.2), rgba(240,80,106,0.08)); }
.wp-road-item { position: relative; margin-bottom: 32px; }
.wp-road-item::before { content: ''; position: absolute; left: -28px; top: 16px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--bg2); background: var(--faint); }
.wp-road-done::before { background: var(--green); box-shadow: 0 0 10px rgba(0,230,118,0.4); }
.wp-road-active::before { background: var(--purple); box-shadow: 0 0 10px rgba(112,38,242,0.5); animation: blink 2s ease infinite; }
.wp-road-marker { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A86EEE; margin-bottom: 6px; }
.wp-road-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.wp-road-item ul { padding-left: 18px; margin-bottom: 0; }
.wp-road-item li { font-size: 14px; color: var(--muted); margin-bottom: 4px; }

/* ===== About section ===== */
.about-section { background: rgba(9,0,24,0.6); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text .tag { margin-bottom: 20px; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; letter-spacing: -0.035em; line-height: 1.12; margin-bottom: 16px; }
.about-text > p { font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 32px; }
.values-grid { display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { width: 40px; height: 40px; border-radius: var(--radius-xs); background: rgba(112,38,242,0.12); border: 1px solid rgba(112,38,242,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 18px; height: 18px; stroke: #A86EEE; }
.value-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.value-item p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.about-visual { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(112,38,242,0.18); }
.about-visual img { width: 100%; height: auto; display: block; object-fit: cover; }

/* ===== Team avatar variants ===== */
.team-avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; border: 2px solid rgba(112,38,242,0.3); position: relative; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-avatar--placeholder { background: var(--grad-card); border-color: rgba(112,38,242,0.15); display: flex; align-items: center; justify-content: center; }
.team-avatar--placeholder svg { width: 80px; height: 80px; }
.team-socials { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(112,38,242,0.1); border: 1px solid rgba(112,38,242,0.2); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: var(--tr); }
.team-socials a:hover { background: rgba(112,38,242,0.2); color: #A86EEE; }
.team-socials svg { width: 13px; height: 13px; }

/* ===== Binary bonus visual ===== */
.binary-visual { margin-top: 20px; display: flex; justify-content: center; }
.binary-root svg { width: 200px; height: 140px; }

/* ===== Roadmap item dots (index.html uses .road-dot as ::before) ===== */
.road-item .road-dot { position: absolute; left: -28px; top: 18px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--bg2); background: var(--faint); }
.road-item--done .road-dot { background: var(--green); box-shadow: 0 0 10px rgba(0,230,118,0.4); }
.road-item--active .road-dot { background: var(--purple); box-shadow: 0 0 10px rgba(112,38,242,0.5); animation: blink 2s ease infinite; }
.road-content { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.1); border-radius: var(--radius-sm); padding: 22px 24px; transition: var(--tr); }
.road-item--active .road-content { border-color: rgba(112,38,242,0.3); box-shadow: 0 8px 32px rgba(112,38,242,0.1); }
.road-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A86EEE; display: block; margin-bottom: 6px; }
.road-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.road-content ul { padding-left: 16px; margin: 0; }
.road-content li { font-size: 13px; color: var(--muted); margin-bottom: 5px; }

/* ===== Portfolio new classes ===== */
.pf-hero { padding: 140px 0 60px; text-align: center; position: relative; overflow: hidden; }
.pf-stats-section { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 40px 0; }
.pf-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pf-stat-card { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius-sm); padding: 22px; display: flex; gap: 14px; align-items: flex-start; transition: var(--tr); }
.pf-stat-card:hover { border-color: rgba(112,38,242,0.28); transform: translateY(-2px); }
.pf-stat-icon { width: 40px; height: 40px; border-radius: var(--radius-xs); background: rgba(112,38,242,0.12); border: 1px solid rgba(112,38,242,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pf-stat-icon svg { width: 18px; height: 18px; stroke: #A86EEE; }
.pf-stat-icon--green { background: rgba(0,230,118,0.1); border-color: rgba(0,230,118,0.2); }
.pf-stat-icon--green svg { stroke: var(--green); }
.pf-stat-icon--violet { background: rgba(176,58,202,0.1); border-color: rgba(176,58,202,0.2); }
.pf-stat-icon--violet svg { stroke: var(--violet); }
.pf-stat-icon--coral { background: rgba(240,80,106,0.1); border-color: rgba(240,80,106,0.2); }
.pf-stat-icon--coral svg { stroke: var(--coral); }
.pf-stat-body { flex: 1; min-width: 0; }
.pf-stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); display: block; margin-bottom: 6px; }
.pf-stat-val { font-size: 1.6rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.pf-stat-note { font-size: 11px; color: var(--faint); display: block; margin-top: 3px; }
.pf-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.pf-main { min-width: 0; }
.pf-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.pf-section-head h2 { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.pf-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 64px 32px; background: var(--grad-card); border: 1px dashed rgba(112,38,242,0.2); border-radius: var(--radius); text-align: center; color: var(--muted); font-size: 14px; }
.pf-widget { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.pf-widget h3 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); margin-bottom: 14px; }
.pf-dex-links { display: flex; flex-direction: column; gap: 8px; }
.pf-dex-links .btn { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Portfolio program card overrides */
.prog-card-head { padding: 18px 22px; background: linear-gradient(135deg, rgba(112,38,242,0.08), rgba(176,58,202,0.06)); display: flex; align-items: center; justify-content: space-between; }
.prog-card-body { padding: 22px; }
.prog-status { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.25); padding: 3px 10px; border-radius: 50px; margin-left: 8px; }
.prog-rate { font-size: 18px; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.prog-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.prog-row strong { color: var(--text); }
.prog-earned { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.prog-progress { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; margin-top: 12px; overflow: hidden; }
.prog-progress-bar { height: 100%; border-radius: 2px; background: var(--grad-btn); transition: width 1s ease; }

/* CA bar small variant */
.ca-bar--sm .ca-address { font-size: 0.72rem; }

/* Footer new classes */
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 12px; display: inline-flex; }
.footer-tagline { font-size: 14px; color: var(--muted); margin: 8px 0 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(112,38,242,0.1); border: 1px solid rgba(112,38,242,0.2); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: var(--tr); }
.footer-socials a:hover { background: rgba(112,38,242,0.2); color: #A86EEE; transform: translateY(-2px); }
.footer-socials svg { width: 15px; height: 15px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: var(--tr); }
.footer-col a:hover { color: var(--text); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.footer-legal { font-size: 12px; color: var(--faint); line-height: 1.6; }
.footer-copy { font-size: 12px; color: var(--faint); }

/* ===== Tok meta ===== */
.tok-meta { display: flex; gap: 24px; margin: 20px 0; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tok-meta-item { display: flex; flex-direction: column; gap: 4px; }
.tok-meta-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); }
.tok-meta-val { font-size: 14px; font-weight: 700; color: var(--text); }

/* ===== Section head ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; letter-spacing: -0.035em; line-height: 1.12; margin-top: 12px; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 620px; margin: 0 auto; }

/* ===== cards-3 ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ===== Plans grid ===== */
.plan-card { background: var(--grad-card); border: 1px solid rgba(112,38,242,0.13); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; transition: var(--tr); }
.plan-card:hover { border-color: rgba(112,38,242,0.3); transform: translateY(-6px); box-shadow: 0 20px 56px rgba(112,38,242,0.16); }
.plan-card--featured { border-color: rgba(112,38,242,0.35); box-shadow: 0 12px 48px rgba(112,38,242,0.18); }
.plan-card--featured:hover { border-color: rgba(112,38,242,0.5); }
.plan-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A86EEE; }
.plan-min { font-size: 13px; color: var(--muted); }
.plan-rate { display: flex; align-items: baseline; gap: 4px; margin: 8px 0; }
.plan-rate-num { font-size: 2.6rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-rate-period { font-size: 13px; color: var(--muted); }
.plan-duration { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-features li { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.plan-features li::before { content: '✓'; color: #A86EEE; font-weight: 700; font-size: 11px; }
.plan-card .btn { margin-top: auto; text-align: center; justify-content: center; }

/* Responsive additions */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 500px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > *:first-child { grid-column: 1 / -1; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .pf-stats { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cards-3 { grid-template-columns: 1fr; }
  .pf-stats { grid-template-columns: 1fr 1fr; }
  .wp-hero { padding: 110px 0 60px; }
}

@media (max-width: 480px) {
  .pf-stats { grid-template-columns: 1fr; }
  .tok-meta { flex-wrap: wrap; }
}

/* ============================================================
   ECOSYSTEM PAGE
   ============================================================ */

/* --- Hero --- */
.eco-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}

.eco-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.eco-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.eco-hero-body {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 580px;
}

.eco-scroll-hint {
  margin-top: 12px;
  opacity: 0.35;
  animation: bounce 2.2s ease-in-out infinite;
}
.eco-scroll-hint svg { width: 28px; height: 28px; color: var(--coral); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Connect Section --- */
.eco-connect-section { background: var(--bg2); }

.eco-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eco-connect-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eco-connect-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.eco-connect-text p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-size: 1.05rem;
}

.eco-highlight-text {
  margin: 8px 0 0;
  padding: 20px 24px;
  border-left: 3px solid transparent;
  border-image: var(--grad) 1;
  background: var(--grad-card);
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-style: normal;
}

/* Network SVG wrapper */
.eco-network-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-network-svg {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.eco-network-svg svg { width: 100%; height: auto; }

/* animated dashed lines */
.eco-line { stroke-dashoffset: 0; animation: dashMove 6s linear infinite; }
.eco-line-1 { animation-duration: 6s; }
.eco-line-2 { animation-duration: 8s; animation-direction: reverse; }
.eco-line-3 { animation-duration: 7s; animation-direction: reverse; }
.eco-line-4 { animation-duration: 9s; }

@keyframes dashMove {
  to { stroke-dashoffset: -36; }
}

/* --- Pillars Section --- */
.eco-pillars-section { background: var(--bg); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.eco-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.eco-pillar-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 28px 40px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eco-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(112,38,242,0.35);
}

.eco-pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.eco-pillar-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  flex: 1;
}

/* Glow blobs per card */
.eco-pillar-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  top: -20px;
  right: -20px;
  opacity: 0;
  transition: opacity .4s ease;
}
.eco-pillar-card:hover .eco-pillar-glow { opacity: 1; }

.eco-pillar-glow--1 { background: rgba(112,38,242,0.28); }
.eco-pillar-glow--2 { background: rgba(240,80,106,0.22); }
.eco-pillar-glow--3 { background: rgba(112,38,242,0.28); }
.eco-pillar-glow--4 { background: rgba(240,80,106,0.22); }

/* Icons */
.eco-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(112,38,242,0.12);
  border: 1px solid rgba(112,38,242,0.25);
  flex-shrink: 0;
}

.eco-pillar-icon--2,
.eco-pillar-icon--4 {
  background: rgba(240,80,106,0.1);
  border-color: rgba(240,80,106,0.2);
}

.eco-pillar-icon svg { width: 28px; height: 28px; }

/* Faded card number */
.eco-pillar-number {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* --- Value Section --- */
.eco-value-section {
  background: var(--bg2);
  overflow: hidden;
}

.eco-value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eco-value-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eco-value-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.eco-value-content p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-size: 1.05rem;
}

.eco-value-emphasis {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.85) !important;
  padding: 18px 22px;
  background: var(--grad-card);
  border-radius: 12px;
  border: 1px solid rgba(112,38,242,0.2);
}

.eco-value-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Rising bars visual */
.eco-value-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.eco-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 220px;
  padding: 0 8px;
}

.eco-bar {
  width: 32px;
  border-radius: 6px 6px 0 0;
  background: var(--grad);
  opacity: 0.75;
  height: 0;
  transition: height 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in .eco-bar {
  height: var(--h);
  opacity: 0.9;
  animation: barPulse 3s ease-in-out calc(var(--d)) infinite alternate;
}

@keyframes barPulse {
  0%   { opacity: 0.75; }
  100% { opacity: 1; filter: drop-shadow(0 0 8px rgba(112,38,242,0.5)); }
}

.eco-bars-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .eco-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .eco-hero { padding: 120px 20px 80px; }
  .eco-connect-grid { grid-template-columns: 1fr; gap: 48px; }
  .eco-network-wrap { order: -1; }
  .eco-network-svg { max-width: 320px; }
  .eco-pillars-grid { grid-template-columns: 1fr; }
  .eco-value-inner { grid-template-columns: 1fr; gap: 48px; }
  .eco-value-visual { display: none; }
}

@media (max-width: 480px) {
  .eco-pillars-grid { grid-template-columns: 1fr; }
  .eco-value-ctas { flex-direction: column; }
}

/* ============================================================
   TOKENOMICS PAGE
   ============================================================ */

/* --- Hero --- */
.tok-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}

.tok-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.tok-hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.tok-hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 560px;
}

/* --- Overview --- */
.tok-overview-section { background: var(--bg2); }

.tok-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 0;
}

.tok-ov-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.tok-ov-item:hover {
  border-color: rgba(112,38,242,0.3);
  transform: translateY(-4px);
}

.tok-ov-item--symbol {
  border-color: rgba(112,38,242,0.2);
  background: rgba(112,38,242,0.06);
}

.tok-ov-icon {
  width: 40px;
  height: 40px;
  background: rgba(112,38,242,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tok-ov-icon svg { width: 20px; height: 20px; stroke: var(--purple); }

.tok-ov-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tok-ov-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.tok-ov-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.tok-ov-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* --- Distribution --- */
.tok-dist-section { background: var(--bg); }

.tok-dist-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.tok-dist-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
}

.tok-dist-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 520px;
}

.tok-dist-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

.tok-chart-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tok-chart-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.tok-chart-container canvas { width: 100% !important; height: 100% !important; }

.tok-chart-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tok-chart-total {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.tok-chart-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Legend */
.tok-legend {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tok-legend-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tok-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tok-legend-text {
  flex: 1;
  min-width: 0;
}

.tok-legend-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.tok-legend-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
}

.tok-legend-bar {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
}

.tok-legend-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}

/* --- Utility --- */
.tok-b2b-section { background: var(--bg1); }
.tok-b2b-advantage {
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(112,38,242,0.12) 0%, rgba(240,80,106,0.08) 100%);
  border: 1px solid rgba(112,38,242,0.3);
  border-radius: 16px;
  padding: 28px 32px;
}
.tok-b2b-adv-icon { flex-shrink: 0; width: 40px; height: 40px; background: linear-gradient(135deg,#7026F2,#F0506A); border-radius: 10px; display:flex; align-items:center; justify-content:center; color:#fff; }
.tok-b2b-adv-icon svg { width:20px; height:20px; }
.tok-b2b-adv-text h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 8px; }
.tok-b2b-adv-text p { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.6; }

.tok-util-section { background: var(--bg2); }

.tok-util-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.tok-util-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
}

.tok-util-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 540px;
}

.tok-util-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tok-b2b-section .tok-util-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.tok-util-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .3s, transform .3s;
}

.tok-util-card:hover {
  border-color: rgba(112,38,242,0.3);
  transform: translateY(-5px);
}

.tok-util-icon {
  width: 56px;
  height: 56px;
}
.tok-util-icon svg { width: 100%; height: 100%; }

.tok-util-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.tok-util-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
}

/* --- Growth / Wallet Card --- */
.tok-growth-section { background: var(--bg); }

.tok-growth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tok-growth-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tok-growth-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.tok-growth-text p {
  color: rgba(255,255,255,0.62);
  font-size: 1.05rem;
  line-height: 1.75;
}

.tok-growth-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Wallet card */
.tok-wallet-wrap {
  position: relative;
}

.tok-wallet-card {
  background: linear-gradient(135deg, #071423 0%, #0d1e30 40%, #071d18 100%);
  border: 1px solid rgba(10,132,255,0.2);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,200,150,0.08);
}

/* Blue-green shimmer overlay */
.tok-wallet-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.tok-wallet-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(10,132,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.tok-wallet-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.tok-wallet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A84FF, #00C896);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.tok-wallet-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tok-wallet-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.tok-wallet-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #00C896;
  background: rgba(0,200,150,0.12);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 20px;
  padding: 2px 10px;
}

.tok-wallet-coin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tok-wallet-coin img { width: 28px; height: 28px; object-fit: contain; }

/* Dates */
.tok-wallet-dates {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.tok-wallet-date-item {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tok-wallet-date-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}

.tok-wallet-date-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.tok-wallet-date-arrow {
  color: rgba(10,132,255,0.6);
}
.tok-wallet-date-arrow svg { width: 20px; height: 20px; }

/* Divider */
.tok-wallet-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,132,255,0.15), rgba(0,200,150,0.15), transparent);
  margin-bottom: 24px;
}

/* Evolution */
.tok-wallet-evolution {
  margin-bottom: 24px;
}

.tok-wallet-evo-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 10px;
}

.tok-wallet-evo-amounts {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tok-wallet-evo-from {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
}

.tok-wallet-evo-arrow-wrap { flex: 1; }
.tok-wallet-evo-arrow { width: 100%; height: 12px; }

.tok-wallet-evo-to {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #0A84FF, #00C896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mini chart inside card */
.tok-wallet-chart {
  position: relative;
}

.tok-wallet-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.tok-wc-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(0,200,150,0.6) 0%, rgba(10,132,255,0.3) 100%);
  height: var(--wh);
  transition: height 0.8s ease;
}

.tok-wc-bar--active {
  background: linear-gradient(180deg, #00C896 0%, #0A84FF 100%);
  box-shadow: 0 0 12px rgba(0,200,150,0.4);
}

.tok-wallet-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 2px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  font-weight: 500;
}

/* Floating badge */
.tok-wallet-badge-float {
  position: absolute;
  top: -16px;
  right: 20px;
  background: linear-gradient(90deg, #0A84FF, #00C896);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0,200,150,0.35);
}
.tok-wallet-badge-float svg { width: 14px; height: 14px; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .tok-overview-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .tok-util-grid { grid-template-columns: repeat(2, 1fr); }
  .tok-dist-grid { grid-template-columns: 1fr; gap: 48px; }
  .tok-chart-wrap { justify-content: center; }
}

@media (max-width: 768px) {
  .tok-hero { padding: 120px 20px 80px; }
  .tok-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .tok-growth-inner { grid-template-columns: 1fr; gap: 48px; }
  .tok-growth-ctas { flex-direction: column; }
}

@media (max-width: 480px) {
  .tok-overview-grid { grid-template-columns: 1fr; }
  .tok-util-grid { grid-template-columns: 1fr; }
  .tok-wallet-dates { flex-direction: column; gap: 12px; }
  .tok-wallet-date-arrow { transform: rotate(90deg); }
}

/* ============================================================
   ROADMAP PAGE
   ============================================================ */

/* Hero */
.rm-hero { padding: 160px 20px 100px; text-align: center; position: relative; overflow: hidden; }
.rm-hero-inner { max-width: 720px; margin: 0 auto; }
.rm-hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; margin: 16px 0 24px; letter-spacing: -0.03em; }
.rm-hero-body { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0 auto 56px; }

/* Progress bar */
.rm-progress-bar { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 40px; }
.rm-progress-track { position: relative; height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; margin: 32px 0; }
.rm-progress-fill { position: absolute; left: 0; top: 0; height: 100%; width: 50%; border-radius: 4px; background: var(--grad); }
.rm-progress-dot { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); background: var(--bg); }
.rm-dot--done { background: var(--purple); border-color: var(--purple); box-shadow: 0 0 12px rgba(112,38,242,0.6); }
.rm-dot--active { background: var(--coral); border-color: var(--coral); box-shadow: 0 0 16px rgba(240,80,106,0.7); animation: dotPulse 2s ease-in-out infinite; }
.rm-dot--coming { background: var(--bg2); border-color: rgba(255,255,255,0.2); }
.rm-dot-label { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(240,80,106,0.5); }
  50%       { box-shadow: 0 0 24px rgba(240,80,106,0.9); }
}

/* Phase sections */
.rm-phase-section { padding: 40px 0; }
.rm-phase-section--active { padding: 60px 0; }
.rm-phase-card { position: relative; background: var(--grad-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; overflow: hidden; transition: var(--tr); }
.rm-phase-card:hover { border-color: rgba(112,38,242,0.25); transform: translateY(-3px); }
.rm-phase-card--active { border-color: rgba(240,80,106,0.25); background: linear-gradient(135deg, rgba(112,38,242,0.08) 0%, rgba(240,80,106,0.06) 100%); }
.rm-phase-card--coming { opacity: 0.75; }
.rm-phase-card--coming:hover { opacity: 1; transform: translateY(-2px); }

/* Active glow border */
.rm-active-glow { position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none; box-shadow: inset 0 0 0 1px rgba(240,80,106,0.3), 0 0 40px rgba(240,80,106,0.06); }

/* Header */
.rm-phase-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; gap: 16px; }
.rm-phase-meta { display: flex; align-items: center; gap: 14px; }
.rm-phase-number { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.rm-phase-status { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.rm-status--done   { color: #7EE787; background: rgba(126,231,135,0.1); border: 1px solid rgba(126,231,135,0.2); }
.rm-status--active { color: #F0506A; background: rgba(240,80,106,0.1); border: 1px solid rgba(240,80,106,0.3); animation: statusPulse 3s ease-in-out infinite; }
.rm-status--coming { color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }

@keyframes statusPulse {
  0%, 100% { box-shadow: none; }
  50%       { box-shadow: 0 0 12px rgba(240,80,106,0.35); }
}

/* Phase icon */
.rm-phase-icon { width: 56px; height: 56px; flex-shrink: 0; }
.rm-phase-icon svg { width: 100%; height: 100%; }

/* Body */
.rm-phase-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.rm-phase-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 640px; margin-bottom: 32px; }

/* Checklist */
.rm-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.rm-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; line-height: 1.55; }
.rm-check-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.rm-check-icon svg { width: 100%; height: 100%; }
.rm-check--done .rm-check-icon { color: #7EE787; }
.rm-check--done span:last-child { color: var(--text); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.2); }
.rm-check--active .rm-check-icon--active { color: #F0506A; }
.rm-check--active span:last-child { color: var(--text); }
.rm-check--coming .rm-check-icon--coming { color: var(--faint); }
.rm-check--coming span:last-child { color: var(--muted); }

/* Deco number */
.rm-phase-deco { position: absolute; bottom: -20px; right: 24px; font-size: 7rem; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; user-select: none; pointer-events: none; letter-spacing: -0.05em; }

/* CTA section */
.rm-cta-section { padding: 80px 0 100px; }
.rm-cta-inner { position: relative; background: var(--grad-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 64px 48px; text-align: center; overflow: hidden; }
.rm-cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(112,38,242,0.12) 0%, transparent 70%); pointer-events: none; }
.rm-cta-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; position: relative; }
.rm-cta-body { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 520px; margin: 0 auto 36px; position: relative; }
.rm-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

@media (max-width: 768px) {
  .rm-hero { padding: 120px 20px 80px; }
  .rm-phase-card { padding: 32px 24px; }
  .rm-phase-header { flex-direction: column-reverse; align-items: flex-start; }
  .rm-cta-inner { padding: 40px 24px; }
  .rm-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .rm-progress-bar { padding: 0 24px; }
  .rm-phase-deco { font-size: 5rem; }
}

/* ============================================================
   CARTEIRA PAGE
   ============================================================ */

/* Hero body extra paragraph */
.cart-hero-body2 { margin-top: -4px; }

/* Illustration below hero title — inside tok-hero-inner (already centered) */
.cart-hero-img-wrap {
  width: 100%;
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.cart-hero-svg {
  width: 100%;
  max-width: 700px;
  height: auto;
  filter: drop-shadow(0 0 48px rgba(10,132,255,0.12));
}

/* 3-column grid for participant wallet cards */
.cart-participants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* Wrapper mirrors tok-wallet-wrap (for the badge positioning) */
.cart-participant-wrap {
  position: relative;
  padding-top: 20px;
}

/* Wallet address block inside card */
.cart-addr-block {
  margin-bottom: 24px;
}
.cart-addr-code {
  display: block;
  font-size: 0.68rem;
  font-family: 'Courier New', Courier, monospace;
  color: rgba(255,255,255,0.38);
  word-break: break-all;
  line-height: 1.6;
  margin-top: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
}

/* Token symbol next to the amount */
.cart-token-symbol {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
}

/* 4-col metrics grid (same columns as tok-util-grid but forced 4) */
.cart-metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Contact email — footer */
.footer-contact { margin-top: 6px; }
.footer-contact a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(255,255,255,0.7); }

/* Floating contact button — fixed bottom-right */
.contact-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 5, 30, 0.75);
  border: 1px solid rgba(112,38,242,0.4);
  border-radius: 50px;
  padding: 10px 20px 10px 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: all 0.25s ease;
}
.contact-float svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #9B55F7;
}
.contact-float:hover {
  background: rgba(112,38,242,0.22);
  border-color: rgba(112,38,242,0.7);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(112,38,242,0.25);
}
.contact-float:hover svg { color: #fff; }

@media (max-width: 480px) {
  .contact-float { bottom: 20px; right: 16px; padding: 9px 14px 9px 12px; font-size: 0; gap: 0; }
  .contact-float svg { width: 20px; height: 20px; }
}

/* Footer note */
.cart-footer-note {
  margin-top: 40px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1100px) {
  .cart-metrics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cart-participants-grid { grid-template-columns: 1fr; }
  .cart-hero-svg { max-width: 420px; }
}
@media (max-width: 640px) {
  .cart-metrics-grid { grid-template-columns: 1fr; }
  .cart-addr-code { font-size: 0.62rem; }
}
