/* Social Token Platform - WhatsApp-inspired green theme */
/* ========== Animations - "Something happening" feel ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroLand {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroSubLand {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroBgFade {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 0.35; transform: scale(1); }
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(16px) scale(0.98); box-shadow: 0 0 0 rgba(37,211,102,0); }
  to { opacity: 1; transform: translateY(0) scale(1); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
}
@keyframes iconPop {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes donutSeg1 {
  to { stroke-dashoffset: 0; }
}
@keyframes donutSeg2 {
  to { stroke-dashoffset: -163; }
}
@keyframes donutSeg3 {
  to { stroke-dashoffset: -245; }
}
@keyframes donutSeg4 {
  to { stroke-dashoffset: -294; }
}
@keyframes scaleInPop {
  from { opacity: 0; transform: scale(0.5); }
  70% { opacity: 1; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInBounce {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes roadmapMarkerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.5); }
}
@keyframes sectionReveal {
  from { opacity: 0; transform: translateY(36px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes allocationReveal {
  from { opacity: 0; transform: translateX(-24px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Hero - strong entrance, feels like arrival */
.hero-animate {
  animation: heroLand 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-animate h1 {
  animation: heroLand 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}
.hero-bg-animate {
  animation: heroBgFade 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-animate p {
  animation: heroSubLand 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.hero-cta {
  animation: heroSubLand 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) 0.45s both;
}
.hero-cta .btn-primary {
  animation: ctaGlow 2.5s ease-in-out 1.2s infinite;
}

/* Sections - reveal with weight */
.animate-block {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-block.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.animate-block.animated .section-icon-wrap {
  animation: iconPop 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}
.animate-block .section-title-wrap .section-title { opacity: 0; }
.animate-block.animated .section-title-wrap .section-title {
  animation: fadeIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}
.animate-block.animated .glass-card {
  animation: cardReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Donut chart - draw then pop */
.section-tokenomics.animated .donut-chart {
  animation: fadeIn 0.3s ease-out;
}
.section-tokenomics.animated .donut-seg-1 {
  animation: donutSeg1 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.section-tokenomics.animated .donut-seg-2 {
  animation: donutSeg2 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.section-tokenomics.animated .donut-seg-3 {
  animation: donutSeg3 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}
.section-tokenomics.animated .donut-seg-4 {
  animation: donutSeg4 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}
.section-tokenomics .donut-total-animate,
.section-tokenomics .donut-label { opacity: 0; }
.section-tokenomics .donut-total-animate { transform: scale(0.5); }
.section-tokenomics.animated .donut-total-animate {
  animation: scaleInPop 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) 1.35s forwards;
}
.section-tokenomics.animated .donut-label {
  animation: fadeIn 0.4s ease-out 1.6s forwards;
}

/* Tokenomics allocation rows - slide in with slight scale */
.allocation-item {
  opacity: 0;
  transform: translateX(-24px) scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-block.animated .allocation-item-1 { transition-delay: 0.15s; }
.animate-block.animated .allocation-item-2 { transition-delay: 0.28s; }
.animate-block.animated .allocation-item-3 { transition-delay: 0.41s; }
.animate-block.animated .allocation-item-4 { transition-delay: 0.54s; }
.animate-block.animated .allocation-item {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Roadmap - markers pulse when visible */
.roadmap-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-block.animated .roadmap-item-1 { transition-delay: 0.12s; }
.animate-block.animated .roadmap-item-2 { transition-delay: 0.28s; }
.animate-block.animated .roadmap-item-3 { transition-delay: 0.44s; }
.animate-block.animated .roadmap-item-4 { transition-delay: 0.6s; }
.animate-block.animated .roadmap-item {
  opacity: 1;
  transform: translateX(0);
}
.section-roadmap.animated .roadmap-marker {
  animation: roadmapMarkerPulse 2s ease-in-out 1s infinite;
}
.section-roadmap.animated .roadmap-item-2 .roadmap-marker { animation-delay: 0.2s; }
.section-roadmap.animated .roadmap-item-3 .roadmap-marker { animation-delay: 0.4s; }
.section-roadmap.animated .roadmap-item-4 .roadmap-marker { animation-delay: 0.6s; }

/* Step cards - bounce in from left */
.animate-block.animated .step-card {
  animation: slideInBounce 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) backwards;
}
.animate-block.animated .step-card:nth-child(1) { animation-delay: 0.12s; }
.animate-block.animated .step-card:nth-child(2) { animation-delay: 0.24s; }
.animate-block.animated .step-card:nth-child(3) { animation-delay: 0.36s; }
.animate-block.animated .step-card:nth-child(4) { animation-delay: 0.48s; }

:root {
  /* WhatsApp brand colors - https://www.whatsapp.com/ */
  --wa-green: #25D366;
  --wa-teal: #128C7E;
  --wa-dark: #075E54;
  --wa-darkest: #053d36;
  --bg-primary: #0a1628;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(37, 211, 102, 0.12);
  --text-primary: #e8f5e9;
  --text-muted: #a5d6a7;
  --accent: #25D366;
  --accent-light: #5ee68a;
  --gradient-start: #25D366;
  --gradient-end: #128C7E;
  --success: #25D366;
  --warning: #eab308;
  --danger: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  background-image: radial-gradient(ellipse at 20% 20%, rgba(37, 211, 102, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(18, 140, 126, 0.1) 0%, transparent 50%);
}

a {
  color: var(--accent-light);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Glass card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: background 0.25s ease, border-color 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
}
.glass-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(37, 211, 102, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
}
.btn-primary:hover:not(:disabled) {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px) scale(1.02);
}
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--bg-card-hover);
}
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }

/* Form */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-family: inherit;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--wa-green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
}
label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--text-muted);
}
.form-group {
  margin-bottom: 1.25rem;
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.alert-success { background: rgba(37, 211, 102, 0.2); border: 1px solid var(--wa-green); color: var(--accent-light); }
.alert-error { background: rgba(239, 68, 68, 0.2); border: 1px solid var(--danger); color: #fca5a5; }
.alert-info { background: rgba(37, 211, 102, 0.15); border: 1px solid var(--wa-green); color: var(--accent-light); }
.alert-warning { background: rgba(245, 158, 11, 0.2); border: 1px solid #f59e0b; color: #fde68a; }

/* Nav */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-nav a {
  color: var(--text-muted);
  font-weight: 500;
}
.navbar-nav a:hover {
  color: var(--wa-green);
  text-decoration: none;
}
.navbar-nav .btn-primary { color: #fff; }

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--wa-green) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.hero p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* Hero with background image */
.hero-with-bg {
  position: relative;
  padding: 5rem 2rem;
  max-width: none;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../hero-bg.png') center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}
.hero-with-bg .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section */
.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

/* Section title with icon */
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.section-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--wa-green);
  flex-shrink: 0;
}
.section-icon-wrap .section-icon {
  width: 32px;
  height: 32px;
}
.section-title-wrap .section-title {
  margin-bottom: 0;
}

/* Section images / visuals */
.section-img {
  display: block;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
}
.section-img-referral {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.section-img-token {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.section-img-contact {
  float: right;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}
.about-card {
  position: relative;
}
.about-visual {
  float: right;
  margin: 0 0 1rem 1.5rem;
  opacity: 0.9;
}
.about-visual img {
  display: block;
}
@media (max-width: 640px) {
  .section-img-token,
  .section-img-contact,
  .about-visual { float: none; margin-left: 0; margin-right: 0; }
}

/* Dashboard grid */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dash-sidebar a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.dash-sidebar a:hover,
.dash-sidebar a.active {
  background: var(--bg-card);
  color: var(--text-primary);
  text-decoration: none;
}
.dash-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .dash-layout { grid-template-columns: 1fr; }
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
}
.badge-success { background: rgba(34, 197, 94, 0.3); color: var(--success); }
.badge-warning { background: rgba(234, 179, 8, 0.3); color: var(--warning); }
.badge-danger { background: rgba(239, 68, 68, 0.3); color: var(--danger); }
.badge-info { background: rgba(37, 211, 102, 0.25); color: var(--accent-light); }

/* Activity feed */
.activity-list {
  list-style: none;
}
.activity-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.activity-list li:last-child { border-bottom: none; }
.activity-list .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Balance counter */
.balance-display {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--wa-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}
th, td {
  padding: 0.75rem 1rem;
  text-align: left;
}
th {
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.85rem;
}
tr:hover {
  background: var(--bg-card-hover);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  color: #a5d6a7;
  font-size: 0.9rem;
  background: #1a202a;
  border-top: 1px solid rgba(37, 211, 102, 0.15);
  margin-top: 3rem;
}

/* Token logo in nav */
.token-logo-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Full site logo (wordmark) in navbar */
.navbar-brand-with-logo .site-logo-nav {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  vertical-align: middle;
  display: block;
}
.navbar-brand-with-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
}

/* Content cards - rich CMS content */
.content-card { padding: 2rem; }
.content-card p { margin-bottom: 1rem; }
.content-card p:last-child { margin-bottom: 0; }
.about-block .lead {
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.utility-list {
  list-style: none;
  margin: 1rem 0;
}
.utility-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-glass);
}
.utility-list li:last-child { border-bottom: none; }
.utility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wa-green);
}

/* How it works - steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.step-card {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card {
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), 0 0 20px rgba(37, 211, 102, 0.15);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Referral table */
.referral-table-wrap {
  margin: 1.5rem 0;
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}
.referral-levels {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.2);
}
.referral-levels th,
.referral-levels td {
  padding: 0.75rem 1.25rem;
  text-align: left;
}
.referral-levels th {
  background: rgba(37, 211, 102, 0.15);
  color: var(--accent-light);
  font-weight: 600;
}
.referral-levels tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.referral-levels td:last-child { font-weight: 600; color: var(--wa-green); }

/* FAQ list */
.faq-list { margin-top: 0.5rem; }
.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-glass);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact card */
.contact-card p { margin-bottom: 0.5rem; }
.contact-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem !important;
}

/* ========== Tokenomics ========== */
.tokenomics-card { padding: 2rem; }
.tokenomics-lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.tokenomics-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .tokenomics-grid { grid-template-columns: 1fr; }
}
.tokenomics-chart-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.donut-chart {
  position: relative;
  width: 180px;
  height: 180px;
}
.donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
}
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.donut-total {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.donut-label {
  font-size: 0.8rem;
  color: var(--wa-green);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.tokenomics-allocations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.allocation-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}
.allocation-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.allocation-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.allocation-text strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}
.allocation-text span {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.tokenomics-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}
.tokenomics-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.meta-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-light);
}

/* ========== Roadmap ========== */
.roadmap-card { padding: 2rem; }
.roadmap-lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.roadmap-timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid rgba(37, 211, 102, 0.35);
  margin-left: 0.5rem;
}
.roadmap-item {
  position: relative;
  padding-bottom: 2rem;
}
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-marker {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--wa-teal);
  box-sizing: content-box;
}
.roadmap-item.roadmap-done .roadmap-marker {
  background: var(--wa-green);
  border-color: var(--wa-green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}
.roadmap-content {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-left: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.roadmap-content:hover {
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.roadmap-phase {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wa-green);
  margin-bottom: 0.5rem;
}
.roadmap-content h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.roadmap-content ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.roadmap-content li {
  margin-bottom: 0.35rem;
}
.roadmap-content li:last-child { margin-bottom: 0; }
