/* ================================================================
// PURGEX DESIGN SYSTEM — PulseChain Purple/Pink Theme
// ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand Colors */
  --primary:        #7c3aed;
  --primary-light:  #a855f7;
  --pink:           #ec4899;
  --pink-light:     #f472b6;
  --green:          #10b981;
  --red:            #ef4444;
  --yellow:         #f59e0b;

  /* Backgrounds */
  --bg-base:        #080810;
  --bg-surface:     #0f0f1c;
  --bg-card:        #14142a;
  --bg-card-alt:    #1a1a35;
  --bg-input:       #0d0d1f;
  --bg-overlay:     rgba(8, 8, 16, 0.95);

  /* Text */
  --text-1: #f0f0ff;
  --text-2: #a0a0c0;
  --text-3: #606080;

  /* Borders */
  --border-1: rgba(124, 58, 237, 0.15);
  --border-2: rgba(168, 85, 247, 0.35);
  --border-3: rgba(236, 72, 153, 0.4);

  /* Gradients */
  --grad-brand:    linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --grad-purple:   linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
  --grad-card:     linear-gradient(145deg, #14142a 0%, #0f0f1c 100%);
  --grad-glow-v:   linear-gradient(180deg, rgba(124,58,237,0.08) 0%, transparent 60%);
  --grad-success:  linear-gradient(135deg, #10b981 0%, #059669 100%);
  --grad-error:    linear-gradient(135deg, #ef4444 0%, #dc2626 100%);

  /* Shadows */
  --shadow-sm:   0 2px 4px rgba(0,0,0,0.1);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 20px rgba(124,58,237,0.3);
  --shadow-pink: 0 0 30px rgba(236,72,153,0.2);

  /* Radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;

  /* Font */
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ================================================================
// RESET & BASE
// ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-1);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ================================================================
// TYPOGRAPHY
// ================================================================ */

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
p  { line-height: 1.7; color: var(--text-2); }
a  { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--pink-light); }

/* ================================================================
// NAVBAR
// ================================================================ */

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-1);
}
.navbar-logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800;
  background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.navbar-links { display: flex; gap: 2rem; }
.navbar-links a { color: var(--text-2); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.navbar-links a:hover, .navbar-links a.active { color: var(--text-1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text-1); border-radius: 2px; transition: all 0.3s; }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-links { display: none; position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; background: var(--bg-overlay); padding: 2rem; gap: 1.5rem; }
  .navbar-links.open { display: flex; }
}

/* ================================================================
// WALLET BUTTON
// ================================================================ */

.wallet-btn {
  background: var(--grad-brand);
  border: none; border-radius: var(--r-pill);
  padding: 10px 22px; font-size: 0.9rem; font-weight: 600;
  color: white; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.35);
  position: relative; overflow: hidden;
}
.wallet-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.wallet-btn:hover::before { left: 100%; }
.wallet-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(236, 72, 153, 0.5);
}
.wallet-btn.connected {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  color: var(--primary-light);
  font-family: var(--font-mono); font-size: 0.85rem;
}

/* ================================================================
// NETWORK BANNER
// ================================================================ */

.network-banner {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(239, 68, 68, 0.1); border-bottom: 1px solid rgba(239,68,68,0.3);
  padding: 10px 2rem; display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-size: 0.9rem; color: #fca5a5;
}
.network-banner button {
  background: rgba(239,68,68,0.2); border: 1px solid rgba(239,68,68,0.5);
  border-radius: var(--r-pill); padding: 6px 16px; color: #fca5a5;
  cursor: pointer; font-size: 0.85rem; transition: all 0.2s;
}
.network-banner button:hover { background: rgba(239,68,68,0.35); }
.hidden { display: none !important; }

/* ================================================================
// MAIN CONTAINER
// ================================================================ */

.page-container { padding-top: 72px; }
.section { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ================================================================
// CARDS
// ================================================================ */

.card {
  background: var(--grad-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-glow {
  box-shadow: var(--shadow-glow);
}
.card-glow:hover {
  box-shadow: var(--shadow-pink);
}

/* ================================================================
// HERO SECTION
// ================================================================ */

.hero-section {
  padding: 4rem 0;
  text-align: center;
}
.hero-title {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-2);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ================================================================
// SECTION TITLES
// ================================================================ */

.section-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 2rem;
}

/* ================================================================
// BUTTONS
// ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--r-md);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}
.btn-full {
  width: 100%;
}
.btn-primary {
  background: var(--grad-brand);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-1);
  border: 1px solid var(--border-2);
}
.btn-secondary:hover {
  background: var(--bg-card-alt);
  border-color: var(--border-3);
}
.btn-success {
  background: var(--grad-success);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-success:hover {
  box-shadow: var(--shadow-md);
}

/* ================================================================
// INPUTS
// ================================================================ */

.input-group {
  margin-bottom: 1.5rem;
}
.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-2);
}
.input-with-max {
  display: flex;
  gap: 0.5rem;
}
.input-with-max input {
  flex: 1;
}
input {
  background: var(--bg-input);
  border: 1px solid var(--border-1);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--text-1);
  font-family: var(--font-body);
  transition: all 0.2s;
}
input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* ================================================================
// COPY BUTTONS
// ================================================================ */

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: all 0.2s;
  font-size: 0.9rem;
}
.copy-btn:hover {
  background: var(--bg-input);
}

/* ================================================================
// MONO TEXT
// ================================================================ */

.mono {
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
  border-radius: var(--r-lg); padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.card-glow { box-shadow: 0 0 40px rgba(124, 58, 237, 0.12); }

/* ================================================================
// STAT CARDS
// ================================================================ */

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r-md); padding: 20px;
  text-align: center;
}
.stat-card .label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.stat-card .value { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--text-1); }
.stat-card .sub   { font-size: 0.8rem; color: var(--text-3); margin-top: 4px; }
.stat-card.accent .value { background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ================================================================
// BUTTONS
// ================================================================ */

.btn-primary {
  background: var(--grad-brand); border: none; border-radius: var(--r-pill);
  padding: 14px 32px; font-size: 1rem; font-weight: 700;
  color: white; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.4);
  font-family: var(--font-body); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(236, 72, 153, 0.55); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.btn-secondary {
  background: transparent; border: 1px solid var(--border-2);
  border-radius: var(--r-pill); padding: 13px 30px;
  font-size: 1rem; font-weight: 600; color: var(--primary-light);
  cursor: pointer; transition: all 0.25s; font-family: var(--font-body);
}
.btn-secondary:hover { background: rgba(124, 58, 237, 0.1); border-color: var(--primary-light); }

.btn-icon { width: 40px; height: 40px; border-radius: var(--r-md); display: flex;
  align-items: center; justify-content: center; border: 1px solid var(--border-1);
  background: var(--bg-card); cursor: pointer; color: var(--text-2); transition: all 0.2s; }
.btn-icon:hover { border-color: var(--border-2); color: var(--text-1); }

.btn-max {
  background: rgba(124,58,237,0.15); border: 1px solid var(--border-2);
  border-radius: var(--r-sm); padding: 4px 10px;
  font-size: 0.75rem; font-weight: 700; color: var(--primary-light);
  cursor: pointer; letter-spacing: 0.05em; transition: all 0.2s;
}
.btn-max:hover { background: rgba(124,58,237,0.3); }

/* ================================================================
// INPUTS
// ================================================================ */

.input-group { position: relative; }
.input {
  background: var(--bg-input); border: 1px solid var(--border-1);
  border-radius: var(--r-md); padding: 14px 18px;
  color: var(--text-1); font-family: var(--font-mono);
  font-size: 1rem; width: 100%; transition: border-color 0.2s;
}
.input:focus { outline: none; border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15); }
.input::placeholder { color: var(--text-3); }

.input-with-max {
  padding-right: 70px;
}
.input-max-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }

/* ================================================================
// CHECKBOX
// ================================================================ */

.checkbox-custom { width: 18px; height: 18px; border: 1px solid var(--border-2);
  border-radius: 4px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checkbox-custom.checked { background: var(--grad-brand); border-color: transparent; }

/* ================================================================
// TOKEN TABLE
// ================================================================ */

.token-table { width: 100%; border-collapse: collapse; }
.token-table th {
  padding: 12px 16px; text-align: left; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); border-bottom: 1px solid var(--border-1);
}
.token-table td {
  padding: 14px 16px; border-bottom: 1px solid rgba(124,58,237,0.06);
  vertical-align: middle;
}
.token-table tr:hover td { background: rgba(124, 58, 237, 0.04); }
.token-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-brand); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.75rem; color: white;
}
.token-symbol { font-weight: 600; font-size: 0.95rem; }
.token-name   { font-size: 0.8rem; color: var(--text-3); }
.mono         { font-family: var(--font-mono); }

/* ================================================================
// STATUS LOG
// ================================================================ */

.status-log {
  background: var(--bg-base); border: 1px solid var(--border-1);
  border-radius: var(--r-md); padding: 16px;
  font-family: var(--font-mono); font-size: 0.82rem;
  max-height: 200px; overflow-y: auto;
}
.log-entry { padding: 4px 0; display: flex; gap: 10px; }
.log-entry.info    { color: var(--text-2); }
.log-entry.success { color: #6ee7b7; }
.log-entry.error   { color: #fca5a5; }
.log-entry.pending { color: #c4b5fd; }

/* ================================================================
// TOAST
// ================================================================ */

.toast-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--bg-card-alt); border: 1px solid var(--border-2);
  border-radius: var(--r-md); padding: 14px 20px;
  font-size: 0.9rem; min-width: 280px;
  animation: slideInRight 0.3s ease;
}
.toast.success { border-color: rgba(16,185,129,0.4); }
.toast.error   { border-color: rgba(239,68,68,0.4); }

/* ================================================================
// MODAL
// ================================================================ */

.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(8, 8, 16, 0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.modal {
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-radius: var(--r-xl); padding: 2rem; width: 100%; max-width: 480px;
  animation: scaleIn 0.25s ease;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; }

/* ================================================================
// LOADING SKELETON
// ================================================================ */

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-alt) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}
.skeleton-row { height: 52px; margin-bottom: 8px; border-radius: var(--r-md); }

/* ================================================================
// BADGES
// ================================================================ */

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}
.badge-green  { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.badge-purple { background: rgba(124,58,237,0.15); color: #c4b5fd; border: 1px solid var(--border-2); }
.badge-pink   { background: rgba(236,72,153,0.15); color: #f9a8d4; border: 1px solid rgba(236,72,153,0.3); }
.badge-red    { background: rgba(239,68,68,0.15);  color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

/* ================================================================
// GLOW EFFECTS
// ================================================================ */

.glow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-glow 2s infinite;
}

/* ================================================================
// PROGRESS BAR
// ================================================================ */

.progress-bar { height: 8px; background: var(--bg-card-alt); border-radius: var(--r-pill); overflow: hidden; }
.progress-fill {
  height: 100%; background: var(--grad-brand); border-radius: var(--r-pill);
  transition: width 0.5s ease;
}

/* ================================================================
// DIVIDER
// ================================================================ */

.divider { border: none; border-top: 1px solid var(--border-1); margin: 2rem 0; }

/* ================================================================
// REWARD COUNTER
// ================================================================ */

.reward-counter {
  font-family: var(--font-mono); font-size: 2.5rem; font-weight: 500;
  background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

/* ================================================================
// ANIMATIONS
// ================================================================ */

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px var(--green); }
  50%       { box-shadow: 0 0 16px var(--green); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0.6; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(124,58,237,0.3); }
  50%       { box-shadow: 0 0 30px rgba(236,72,153,0.5); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }
.animate-scale { animation: scaleIn 0.3s ease forwards; }
.animate-shimmer { animation: shimmer 2s infinite; }
.animate-pulse { animation: pulse-glow 2s infinite; }
.animate-glow { animation: glow-pulse 3s infinite; }

/* ================================================================
// LOADING STATES
// ================================================================ */

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-alt) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-md);
}
.skeleton-text { height: 1rem; margin-bottom: 0.5rem; }
.skeleton-button { height: 40px; width: 120px; }
.skeleton-card { height: 120px; }

/* ================================================================
// TOKEN ICONS
// ================================================================ */

.token-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-purple);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}

/* ================================================================
// LIVE COUNTER
// ================================================================ */

.live-counter {
  font-family: var(--font-mono); font-size: 1.2rem; font-weight: 600;
  color: var(--primary-light); transition: all 0.3s;
}
.live-counter.updating {
  animation: countUp 0.3s ease;
  color: var(--green);
}

/* ================================================================
// PROGRESS BARS
// ================================================================ */

.progress-bar {
  width: 100%; height: 8px; background: var(--bg-input);
  border-radius: var(--r-pill); overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--grad-brand); border-radius: var(--r-pill);
  transition: width 0.5s ease;
  position: relative;
}
.progress-fill::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

/* ================================================================
// RESPONSIVE
// ================================================================ */

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .stat-grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .modal { padding: 1.5rem; }
  
  /* Hero responsive */
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .how-it-works { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ================================================================
// ENHANCED COMPONENTS
// ================================================================ */

.price-ticker {
  background: var(--grad-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 400px;
  box-shadow: var(--shadow-md);
}
.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.price-label {
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
}
.prgx-price-display {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-light);
  font-family: var(--font-mono);
}
.price-timestamp {
  font-size: 0.8rem;
  color: var(--text-3);
}

.stats-bar {
  background: var(--grad-card);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  transition: all 0.3s;
}
.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.stat-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-purple);
  border-radius: 50%;
  flex-shrink: 0;
}
.stat-content {
  flex: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 0.25rem;
}
.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-1);
  font-family: var(--font-mono);
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}
.step-number {
  width: 40px;
  height: 40px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.step-description {
  color: var(--text-2);
  line-height: 1.6;
}

.cta-section {
  background: var(--grad-card);
  border-radius: var(--r-xl);
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid var(--border-2);
}
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.activity-list {
  max-height: 300px;
  overflow-y: auto;
}
.activity-item {
  padding: 1rem;
  border-bottom: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}
.activity-item:hover {
  background: var(--bg-input);
}
.activity-item:last-child {
  border-bottom: none;
}

/* ================================================================
// STAKING COMPONENTS
// ================================================================ */

.live-indicator {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-left: 0.5rem;
}

.wallet-balance {
  background: var(--bg-input);
  border: 1px solid var(--border-1);
  border-radius: var(--r-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.balance-label {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}
.balance-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  font-family: var(--font-mono);
}

.action-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all 0.3s;
}
.action-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.action-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.staked-display {
  background: var(--bg-input);
  border: 1px solid var(--border-1);
  border-radius: var(--r-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.claim-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-1);
}
.claim-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.claim-amount {
  text-align: center;
}
.claim-label {
  font-size: 0.9rem;
  color: var(--text-2);
  display: block;
  margin-bottom: 0.5rem;
}
.claim-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-light);
  font-family: var(--font-mono);
}
.claim-rate {
  text-align: center;
}
.rate-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  font-family: var(--font-mono);
}

.protocol-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.protocol-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-input);
  border-radius: var(--r-md);
}
.info-label {
  font-size: 0.9rem;
  color: var(--text-2);
}
.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  font-family: var(--font-mono);
}

.security-features {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-input);
  border-radius: var(--r-md);
}
.security-features h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 1rem;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 0.5rem 0;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.performance-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.performance-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.metric-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-input);
  border-radius: var(--r-md);
}
.metric-label {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}
.metric-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-light);
  font-family: var(--font-mono);
}

.progress-section {
  margin-top: 2rem;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.progress-percentage {
  font-weight: 600;
  color: var(--primary-light);
  font-family: var(--font-mono);
}

/* ================================================================
// LAYOUT UTILITIES
// ================================================================ */

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ================================================================
// HERO SECTION
// ================================================================ */

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(124,58,237,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(236,72,153,0.15) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(168,85,247,0.1) 0%, transparent 70%);
  z-index: -1;
}
.hero-content {
  text-align: center; max-width: 800px;
  padding: 2rem; z-index: 1;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--text-2); margin-bottom: 3rem;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.price-ticker {
  margin-top: 3rem; padding: 1rem 2rem;
  background: var(--bg-card); border: 1px solid var(--border-1);
  border-radius: var(--r-lg); display: inline-flex;
  align-items: center; gap: 1rem;
}
.price-ticker .price { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 600; }
.price-ticker .updated { font-size: 0.8rem; color: var(--text-3); }
