/* ═══════════════════════════════════════════════
   GLOBAL EFECTY · LANDING 2026
   Mobile-first · Sora + DM Sans
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0A0A0F;
  --bg-2: #11111A;
  --surface: #14141F;
  --surface-2: #1B1B28;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #FAFAFA;
  --text-2: #B4B4C0;
  --text-3: #71717A;

  --brand: #C026D3;
  --brand-2: #7C3AED;
  --brand-3: #22D3EE;
  --gradient: linear-gradient(135deg, #C026D3 0%, #7C3AED 50%, #22D3EE 100%);

  --green: #22C55E;
  --red: #EF4444;
  --orange: #F59E0B;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  --container: 1240px;
  --pad: clamp(16px, 4vw, 24px);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.landing-page {
  --ge-font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --ge-font-display: 'Sora', 'DM Sans', system-ui, sans-serif;
  --ge-font-hero: 'Sora', 'DM Sans', system-ui, sans-serif;
}

/* Superficie glass — reemplaza glass-card (clase sin estilos) */
.surface-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.coin-dot-icon {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, color-mix(in srgb, var(--coin-color, #7C3AED) 85%, #fff 15%), var(--coin-color, #7C3AED));
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--coin-color, #7C3AED) 35%, transparent);
}
.coin-dot-icon i { font-size: 0.9em; }

.ticker-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--brand-3);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ═══ Reset ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ge-font);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ge-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
code, .mono { font-family: var(--ge-font-mono); font-variant-ligatures: none; }

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--brand-2); color: #fff;
  padding: 10px 14px; border-radius: 8px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 8px; }

/* ═══ Layout helpers ═══ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--ge-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  user-select: none;
}
.btn-lg { padding: 14px 26px; font-size: 0.98rem; }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; border-radius: 10px; }
.btn-block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(192, 38, 211, 0.4); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(168, 85, 247, 0.4); }

/* ═══ Header ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 15, 0.88);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.brand-link { display: inline-flex; align-items: center; }
.brand-link img { height: 40px; width: auto; }

.site-nav { flex: 1; }
.nav-links {
  display: none;
  gap: 28px;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
  border-radius: 2px;
}
.nav-links a:hover::after { transform: scaleX(1); }

.header-cta { display: none; gap: 8px; }

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-left: auto;
  color: var(--text);
}

/* Mobile menu open */
.site-nav.is-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--pad) 20px;
}
.site-nav.is-open .nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.site-nav.is-open .nav-links a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.site-nav.is-open .nav-links a::after { display: none; }
.site-nav.is-open .header-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-nav.is-open .header-cta .btn { width: 100%; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .header-cta { display: flex; }
  .mobile-toggle { display: none; }
  .brand-link img { height: 44px; }
}

/* ═══ Hero ═══ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 380px; height: 380px;
  background: var(--brand);
  top: -150px; left: -100px;
}
.hero-orb-2 {
  width: 360px; height: 360px;
  background: var(--brand-3);
  bottom: -120px; right: -80px;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: var(--brand-2);
  top: 40%; left: 45%;
  opacity: 0.2;
}
@media (min-width: 900px) {
  .hero-orb-3 { display: block; }
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #67E8F9;
  font-family: var(--ge-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-family: var(--ge-font-hero);
  font-weight: 800;
  font-size: clamp(2.35rem, 6.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-title .gradient-text {
  display: block;
  margin-top: 0.15em;
}

.hero-desc {
  font-size: clamp(0.98rem, 1.6vw, 1.075rem);
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 38rem;
}
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 20px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-3);
}
.hero-trust i { color: var(--brand-3); font-size: 0.85rem; }

/* Hero visual — wallet preview card */
.hero-visual { position: relative; }
.wallet-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.wallet-card.in-view { opacity: 1; transform: translateY(0); }
.wallet-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.45), rgba(34, 211, 238, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.wallet-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.wallet-card-head small {
  display: block;
  font-family: var(--ge-font-display);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.wallet-card-amount {
  font-family: var(--ge-font-display);
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 6px;
}
.wallet-card-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
}
.wallet-card-change.positive { color: var(--green); }
.wallet-card-actions { display: flex; gap: 6px; }
.wallet-card-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.wallet-card-btn:hover { background: rgba(124, 58, 237, 0.18); border-color: rgba(168, 85, 247, 0.35); }

.wallet-card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.wallet-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background .15s;
}
.wallet-row:hover { background: rgba(255, 255, 255, 0.04); }
.coin-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ge-font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.coin-dot.lg { width: 42px; height: 42px; font-size: 0.9rem; }
.coin-info { display: flex; flex-direction: column; min-width: 0; }
.coin-info strong { font-family: var(--ge-font-display); font-size: 0.9rem; font-weight: 600; }
.coin-info span { color: var(--text-3); font-size: 0.72rem; }
.coin-val { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.coin-val strong { font-family: var(--ge-font-display); font-size: 0.88rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.coin-val .positive { color: var(--green); font-size: 0.7rem; }
.coin-val .negative { color: var(--red); font-size: 0.7rem; }

.wallet-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  .hero { padding: 72px 0 88px; }
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 56px; }
  .wallet-card { padding: 24px; }
}

/* ═══ Ticker ═══ */
.ticker-section {
  padding: 14px 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
}
.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--green);
  font-family: var(--ge-font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: var(--pad);
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: inline-flex;
  gap: 36px;
  padding-left: 24px;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
}
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.ticker-code {
  font-family: var(--ge-font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ticker-name {
  display: none;
  font-size: 0.78rem;
  color: var(--text-3);
}
.ticker-price {
  font-family: var(--ge-font-mono);
  font-size: 0.86rem;
}
.ticker-change {
  font-family: var(--ge-font-display);
  font-size: 0.8rem;
  font-weight: 600;
}
.ticker-change.positive { color: var(--green); }
.ticker-change.negative { color: var(--red); }

@media (min-width: 600px) {
  .ticker-name { display: inline; }
}

/* ═══ Stats section ═══ */
.stats-section {
  padding: 48px 0 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s, transform .4s, border-color .15s;
}
.stat-card.in-view { opacity: 1; transform: translateY(0); }
.stat-card:hover { border-color: var(--border-strong); }
.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--brand-3);
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.stat-value {
  font-family: var(--ge-font-display);
  font-size: clamp(1.65rem, 4vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 500;
}

@media (min-width: 900px) {
  .stats-section { padding: 64px 0 24px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .stat-card { padding: 22px; }
}

/* ═══ Section base ═══ */
.section {
  padding: 56px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--brand-3);
  border-radius: var(--radius-full);
  font-family: var(--ge-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--ge-font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.4vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 56px; }
}

/* ═══ Features (bento) ═══ */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.bento-card {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease, border-color .2s, background .2s;
}
.bento-card.in-view { opacity: 1; transform: translateY(0); }
.bento-card:hover { border-color: rgba(168, 85, 247, 0.3); }
.bento-bg-orb {
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(192, 38, 211, 0.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bento-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--gradient);
  border: none;
  border-radius: 16px;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
  position: relative;
  z-index: 1;
}
.bento-card h3 {
  font-family: var(--ge-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.bento-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-2);
}
.bento-card strong { color: var(--text); font-weight: 600; }

.bento-coins {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.bento-coins span {
  padding: 5px 11px;
  border-radius: var(--radius-full);
  font-family: var(--ge-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}
.bento-checks {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.bento-checks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-2);
}
.bento-checks i { color: var(--green); font-size: 0.75rem; }

@media (min-width: 700px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bento-large, .bento-wide { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
}

/* ═══ Assets table ═══ */
.assets-section {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04));
}
.assets-table-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.assets-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.assets-table th {
  text-align: left;
  padding: 14px 16px;
  font-family: var(--ge-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.assets-table th.num { text-align: right; }
.assets-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}
.assets-table tr:last-child td { border-bottom: none; }
.assets-table td.num { text-align: right; }
.assets-table td.muted {
  color: var(--text-3);
  font-family: var(--ge-font-mono);
  font-size: 0.82rem;
}
.assets-table tbody tr { transition: background .15s; }
.assets-table tbody tr:hover { background: rgba(255, 255, 255, 0.025); }

.asset-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.asset-cell .coin-dot { width: 32px; height: 32px; font-size: 0.74rem; }
.asset-cell div { display: flex; flex-direction: column; }
.asset-cell strong { font-family: var(--ge-font-display); font-weight: 600; font-size: 0.92rem; }
.asset-cell .muted { color: var(--text-3); font-size: 0.74rem; }

.change-pill {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 8px;
  font-family: var(--ge-font-display);
  font-size: 0.78rem;
  font-weight: 600;
}
.change-pill.positive { background: rgba(34, 197, 94, 0.12); color: var(--green); }
.change-pill.negative { background: rgba(239, 68, 68, 0.12); color: var(--red); }

.apy-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(124, 58, 237, 0.16));
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: #67E8F9;
  font-family: var(--ge-font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.action-col {
  width: 1%;
  white-space: nowrap;
  text-align: right;
}

/* ═══ How it works (steps) ═══ */
.how-section {
  background: rgba(255, 255, 255, 0.015);
  border-block: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.step-card {
  position: relative;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease, border-color .2s;
}
.step-card.in-view { opacity: 1; transform: translateY(0); }
.step-card:hover { border-color: rgba(168, 85, 247, 0.3); }
.step-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--ge-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.9;
  line-height: 1;
}
.step-icon {
  font-size: 1.4rem;
  color: #A855F7;
  margin-bottom: 12px;
}
.step-card h3 {
  font-family: var(--ge-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.step-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.6; }

@media (min-width: 700px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* ═══ Earn / Staking ═══ */
.earn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.earn-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s, transform .4s, border-color .15s;
}
.earn-card.in-view { opacity: 1; transform: translateY(0); }
.earn-card:hover { border-color: rgba(168, 85, 247, 0.3); }
.earn-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.earn-card-head strong {
  display: block;
  font-family: var(--ge-font-display);
  font-size: 0.95rem;
  font-weight: 600;
}
.earn-card-head span {
  color: var(--text-3);
  font-size: 0.76rem;
}
.earn-apy small {
  display: block;
  color: var(--text-3);
  font-family: var(--ge-font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.earn-apy div {
  font-family: var(--ge-font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ═══ Security ═══ */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.security-grid h2 {
  font-family: var(--ge-font-display);
  font-size: clamp(1.85rem, 4.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 6px 0 12px;
}
.lead {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.65;
}
.sec-list {
  display: grid;
  gap: 16px;
}
.sec-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.sec-list > li > i {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(34, 211, 238, 0.2));
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: #A855F7;
  font-size: 0.95rem;
}
.sec-list strong {
  display: block;
  font-family: var(--ge-font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.sec-list span {
  display: block;
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.55;
}

.security-visual {
  position: relative;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
}
.sec-shield {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.25), rgba(34, 211, 238, 0.25));
  border: 1px solid rgba(168, 85, 247, 0.35);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: #67E8F9;
  font-size: 2.2rem;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}
.security-visual h3 {
  font-family: var(--ge-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.security-visual p {
  color: var(--text-2);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.sec-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sec-badge {
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s, transform .35s, border-color .15s;
}
.sec-badge.in-view { opacity: 1; transform: translateY(0); }
.sec-badge:hover { border-color: rgba(168, 85, 247, 0.3); }
.sec-badge i {
  display: block;
  font-size: 1.05rem;
  color: var(--brand-3);
  margin-bottom: 6px;
}
.sec-badge strong {
  display: block;
  font-family: var(--ge-font-display);
  font-size: 0.82rem;
  font-weight: 600;
}
.sec-badge span {
  display: block;
  color: var(--text-3);
  font-size: 0.7rem;
  margin-top: 2px;
}

@media (min-width: 900px) {
  .security-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
}

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] { border-color: rgba(168, 85, 247, 0.3); }
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--ge-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.12);
  color: #A855F7;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  transition: transform .2s ease, background .2s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: rgba(168, 85, 247, 0.25); }
.faq-item > div {
  padding: 0 20px 16px;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ═══ CTA final ═══ */
.cta-section { padding: 56px 0; }
.cta-box {
  position: relative;
  padding: 48px 24px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.1), rgba(124, 58, 237, 0.06), rgba(34, 211, 238, 0.1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(192, 38, 211, 0.25), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(34, 211, 238, 0.25), transparent 55%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: var(--ge-font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-box p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 38rem;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 700px) { .cta-box { padding: 64px 32px; } }
@media (min-width: 900px) { .cta-section { padding: 80px 0; } }

/* ═══ Footer ═══ */
.site-footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 12px; }
.footer-brand p {
  color: var(--text-2);
  font-size: 0.9rem;
  max-width: 28rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-2);
  font-size: 0.95rem;
  transition: all .15s;
}
.footer-social a:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--text);
  transform: translateY(-2px);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--ge-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-2);
  transition: color .15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  color: var(--text-3);
  font-size: 0.82rem;
}
.footer-disclaimer {
  font-size: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.75;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-orb { display: none; }
  .ticker-track { animation: none; transform: none; }
  .pulse-dot { animation: none; }
}

/* ═══ Hide elements on mobile ═══ */
@media (max-width: 699px) {
  .hide-mobile { display: none !important; }
}
