/* ═══════════════════════════════════════════════
   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; }
.coin-dot-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.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;
}
.ticker-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ═══ 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-color: #08080e;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 25%, rgba(192, 38, 211, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 55%, rgba(34, 211, 238, 0.05), transparent 45%),
    linear-gradient(180deg, #0c0c14 0%, #08080e 35%, #0a0712 70%, #07070c 100%);
  background-attachment: fixed;
  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: 14px;
  border: none;
  font-family: var(--ge-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
}
.btn-lg { padding: 14px 26px; font-size: 0.98rem; }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; border-radius: 12px; }
.btn-block { width: 100%; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}

/* ═══ 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; }
.header-cta-mobile { display: none; }
.header-login-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  min-height: 44px;
  padding-inline: 12px;
  white-space: nowrap;
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-left: 8px;
  color: var(--text);
  cursor: pointer;
}
body.landing-nav-open { overflow: hidden; }

/* 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: 14px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.site-nav.is-open .nav-links a::after { display: none; }
.site-nav.is-open .header-cta-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-nav.is-open .header-cta-mobile .btn { width: 100%; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .header-cta-desktop { display: flex; }
  .header-cta-mobile,
  .header-login-mobile,
  .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;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  transform: scale(1.04);
}
.hero-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.72) 42%, rgba(10, 10, 15, 0.55) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(124, 58, 237, 0.28), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(34, 211, 238, 0.18), transparent 50%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
}
.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.18;
}
@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;
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(168, 85, 247, 0.28);
  color: #67E8F9;
  font-family: var(--ge-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.hero-pill i { color: var(--brand-3); }
.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ge-font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--text);
}
.hero-brand-mark i { color: var(--brand-3); }
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 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-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.15rem;
}
.hero-feature-chips span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
}
.hero-feature-chips i { color: var(--brand-3); }

/* Hero visual — wallet preview card */
.hero-visual { position: relative; }
.hero-float-badges {
  position: absolute;
  left: -0.5rem;
  bottom: -0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  z-index: 2;
}
.hero-float-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.82);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: #e2e8f0;
  font-size: .72rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hero-float-badge i { color: var(--brand-3); }
.section-header .eyebrow i { margin-right: .3rem; opacity: .9; }

@media (prefers-reduced-motion: reduce) {
  .hero-video-el { display: none; }
  .hero-particles { display: none; }
}
.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: 12px;
  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, 211, 238, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 211, 238, 0.28);
  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, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.28);
  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;
  isolation: isolate;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
}
.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-coin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.bento-coin-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--coin-color, #7C3AED) 16%, transparent), rgba(255,255,255,0.03));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.bento-coin-tile:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--coin-color, #7C3AED) 45%, transparent);
}
.bento-coin-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.bento-coin-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.bento-coin-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 1px;
}
.bento-coin-meta strong {
  font-family: var(--ge-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
}
.bento-coin-meta small {
  font-size: 0.7rem;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 520px) {
  .bento-coin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .bento-coin-tile { padding: 9px 10px; gap: 8px; }
  .bento-coin-logo { width: 30px; height: 30px; }
}
@media (min-width: 1024px) {
  .bento-large .bento-coin-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.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, 211, 238, 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: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.earn-card {
  flex: 0 1 180px;
  width: min(100%, 180px);
  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 {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(8, 8, 14, 0.92) 28%, #07070c 100%);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  inset: auto 0 -20% 0;
  height: 55%;
  background:
    radial-gradient(ellipse 50% 60% at 20% 100%, rgba(124, 58, 237, 0.18), transparent 70%),
    radial-gradient(ellipse 45% 55% at 80% 100%, rgba(34, 211, 238, 0.12), transparent 70%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  max-width: 22rem;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-tagline {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 20px;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ge-font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: #67e8f9;
  margin-bottom: 22px;
  transition: color .2s ease, gap .2s ease;
}
.footer-cta:hover {
  color: #fff;
  gap: 12px;
}
.footer-cta i { font-size: 0.78rem; }

.footer-social {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer-social-btn:hover {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
}

.footer-navs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col h4 {
  font-family: var(--ge-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 4px;
}
.footer-col a {
  font-size: 0.92rem;
  color: var(--text-2);
  width: fit-content;
  transition: color .18s ease, transform .18s ease;
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
  padding: clamp(28px, 4vw, 36px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-stat strong {
  display: block;
  font-family: var(--ge-font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 20%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
  margin-bottom: 4px;
}
.footer-stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-3);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  list-style: none;
  margin: 0;
  padding: clamp(22px, 3vw, 28px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-trust i {
  color: var(--brand-3);
  font-size: 0.78rem;
}

.footer-bottom {
  display: grid;
  gap: 10px;
  padding-top: clamp(22px, 3vw, 28px);
  color: var(--text-3);
  font-size: 0.8rem;
}
.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.55;
  max-width: 42rem;
  opacity: 0.8;
}
.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-2);
  font-size: 0.82rem;
  width: fit-content;
  transition: color .18s ease;
}
.footer-mail:hover { color: #67e8f9; }
.footer-mail i { color: var(--brand-3); font-size: 0.78rem; }

@media (min-width: 700px) {
  .footer-navs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .footer-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-bottom {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px 24px;
  }
  .footer-disclaimer { justify-self: center; text-align: center; }
}

@media (min-width: 960px) {
  .footer-main {
    grid-template-columns: minmax(240px, 1.05fr) minmax(0, 1.6fr);
    align-items: start;
    gap: 72px;
  }
  .footer-trust {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .footer-trust li {
    flex: 1;
    justify-content: center;
  }
}

/* ── Footer mobile ── */
@media (max-width: 699px) {
  .site-footer {
    padding: 44px 0 28px;
  }

  .footer-main {
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-logo img {
    height: 36px;
  }

  .footer-tagline {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: 34ch;
  }

  .footer-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #d946ef 0%, #7c3aed 55%, #22d3ee 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 10px 28px rgba(124, 58, 237, 0.28);
  }
  .footer-cta:hover {
    color: #fff;
    gap: 12px;
  }

  .footer-social {
    gap: 10px;
  }
  .footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  /* Nav: 2 cols + Compañía a ancho completo en grilla 2×2 */
  .footer-navs {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
  .footer-col {
    gap: 8px;
  }
  .footer-col a {
    font-size: 0.9rem;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 2px 0;
  }
  .footer-col:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 8px;
  }
  .footer-col:nth-child(3) h4 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  /* Stats en matriz 2×2 con divisores */
  .footer-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-stat {
    padding: 16px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .footer-stat:nth-child(2n) {
    border-right: none;
  }
  .footer-stat:nth-child(n + 3) {
    border-bottom: none;
  }
  .footer-stat strong {
    font-size: 1.2rem;
  }
  .footer-stat span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  /* Trust: carrusel horizontal táctil */
  .footer-trust {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 18px 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    scroll-snap-type: x proximity;
  }
  .footer-trust::-webkit-scrollbar {
    display: none;
  }
  .footer-trust li {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
    padding: 9px 14px;
    font-size: 0.76rem;
  }

  .footer-bottom {
    justify-items: stretch;
    text-align: left;
    gap: 12px;
    padding-top: 20px;
  }
  .footer-copy {
    font-size: 0.78rem;
  }
  .footer-disclaimer {
    font-size: 0.72rem;
    max-width: none;
    line-height: 1.5;
  }
  .footer-mail {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.82rem;
    word-break: break-all;
  }
}

/* ═══ 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; }
  .assets-table { min-width: 0; }
  .assets-table th,
  .assets-table td { padding: 12px 10px; font-size: 0.86rem; }
  .hero { min-height: auto; }
  .landing-page { overflow-x: clip; }
}
@media (max-width: 480px) {
  .assets-table-wrap { border-radius: 14px; }
  .site-nav.is-open { padding-inline: max(16px, var(--pad)); }
}

/* ═══════════════════════════════════════════════
   LANDING · MODERN REFRESH 2026
   Impacto visual sin romper la esencia GE
   ═══════════════════════════════════════════════ */

.landing-page {
  --glow-brand: rgba(192, 38, 211, 0.35);
  --glow-cyan: rgba(34, 211, 238, 0.28);
}

/* Aurora cinematográfica detrás del copy */
.hero-aurora {
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(ellipse 45% 40% at 18% 35%, rgba(192, 38, 211, 0.32), transparent 70%),
    radial-gradient(ellipse 40% 45% at 78% 25%, rgba(124, 58, 237, 0.28), transparent 68%),
    radial-gradient(ellipse 50% 35% at 55% 85%, rgba(34, 211, 238, 0.2), transparent 70%);
  filter: blur(40px);
  opacity: 0.85;
  animation: auroraDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes auroraDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate3d(2%, -1.5%, 0) scale(1.05); opacity: 0.95; }
  100% { transform: translate3d(-1.5%, 2%, 0) scale(1.02); opacity: 0.8; }
}

.hero-video-shade {
  background:
    linear-gradient(105deg, rgba(8, 8, 14, 0.94) 0%, rgba(8, 8, 14, 0.78) 38%, rgba(8, 8, 14, 0.52) 72%, rgba(8, 8, 14, 0.62) 100%),
    radial-gradient(ellipse at 72% 28%, rgba(124, 58, 237, 0.32), transparent 58%),
    radial-gradient(ellipse at 18% 78%, rgba(34, 211, 238, 0.16), transparent 48%);
}

.hero-video-el {
  opacity: 0.48;
  filter: saturate(1.15) contrast(1.05);
}

.hero-orb {
  opacity: 0.34;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-2 { animation-delay: -4s; animation-direction: reverse; }
.hero-orb-3 { animation-delay: -7s; }
@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -22px, 0); }
}

.hero-grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  opacity: 0.7;
}

/* ═══ Hero Motion — coreografía visible (CSS siempre) ═══ */
@keyframes geHeroIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 64px, 0) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes geHeroVisualIn {
  0% {
    opacity: 0;
    transform: translate3d(72px, 48px, 0) scale(0.86) rotate(2.5deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}
@keyframes geHeroRowIn {
  0% { opacity: 0; transform: translate3d(28px, 0, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes geHeroChipIn {
  0% { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.85); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes geHeroBadgeIn {
  0% { opacity: 0; transform: translate3d(0, 24px, 0) scale(0.8); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes geHeroVideoIn {
  0% { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0.5; transform: scale(1.04); }
}
@keyframes geHeroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -16px, 0); }
}
@keyframes geHeroBadgeFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes geHeroGlow {
  0%, 100% {
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 0 40px rgba(124, 58, 237, 0.12);
  }
  50% {
    box-shadow:
      0 28px 72px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(34, 211, 238, 0.18),
      0 0 70px rgba(192, 38, 211, 0.28);
  }
}
@keyframes geTrustGlow {
  0%, 100% { border-color: rgba(255, 255, 255, 0.06); background: rgba(255, 255, 255, 0.03); }
  50% { border-color: rgba(34, 211, 238, 0.32); background: rgba(34, 211, 238, 0.08); }
}

.hero-motion .hero-video-el {
  animation: geHeroVideoIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-motion [data-hero="item"] {
  opacity: 0;
  animation: geHeroIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-motion .hero-pill { animation-delay: 0.12s; }
.hero-motion .hero-brand-mark { animation-delay: 0.28s; }
.hero-motion .hero-title { animation-delay: 0.42s; }
.hero-motion .hero-desc { animation-delay: 0.58s; }
.hero-motion .hero-actions { animation-delay: 0.72s; }

.hero-motion .hero-trust li {
  opacity: 0;
  animation: geHeroChipIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-motion .hero-trust li:nth-child(1) { animation-delay: 0.88s; }
.hero-motion .hero-trust li:nth-child(2) { animation-delay: 0.96s; }
.hero-motion .hero-trust li:nth-child(3) { animation-delay: 1.04s; }
.hero-motion .hero-trust li:nth-child(4) { animation-delay: 1.12s; }
.hero-motion .hero-trust li:nth-child(5) { animation-delay: 1.2s; }
.hero-motion .hero-trust li:nth-child(odd) {
  animation:
    geHeroChipIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both,
    geTrustGlow 3.8s ease-in-out 2.1s infinite;
}
.hero-motion .hero-trust li:nth-child(1) { animation-delay: 0.88s, 2.1s; }
.hero-motion .hero-trust li:nth-child(3) { animation-delay: 1.04s, 2.5s; }
.hero-motion .hero-trust li:nth-child(5) { animation-delay: 1.2s, 2.9s; }

.hero-motion [data-hero="visual"] {
  opacity: 0;
  animation: geHeroVisualIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
  transform-style: preserve-3d;
}

.hero-motion [data-hero="wallet"] {
  animation:
    geHeroFloat 5.2s ease-in-out 1.7s infinite,
    geHeroGlow 4.5s ease-in-out 1.7s infinite;
}

.hero-motion [data-hero="row"] {
  opacity: 0;
  animation: geHeroRowIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-motion [data-hero="row"]:nth-child(1) { animation-delay: 0.85s; }
.hero-motion [data-hero="row"]:nth-child(2) { animation-delay: 0.98s; }
.hero-motion [data-hero="row"]:nth-child(3) { animation-delay: 1.11s; }
.hero-motion [data-hero="row"]:nth-child(4) { animation-delay: 1.24s; }

.hero-motion [data-hero="badge"] {
  opacity: 0;
  animation:
    geHeroBadgeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both,
    geHeroBadgeFloat 3.8s ease-in-out infinite;
}
.hero-motion [data-hero="badge"]:nth-child(1) { animation-delay: 1.15s, 2.2s; }
.hero-motion [data-hero="badge"]:nth-child(2) { animation-delay: 1.3s, 2.6s; }

.hero-motion [data-hero="visual"],
.hero-motion [data-hero="wallet"] {
  will-change: transform, opacity;
}

.hero-pill {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(168, 85, 247, 0.38);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.06), 0 8px 28px rgba(0, 0, 0, 0.25);
  gap: 10px;
  padding: 7px 16px 7px 12px;
}

.hero-brand-mark {
  background: linear-gradient(90deg, #fff 0%, #e9d5ff 45%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(124, 58, 237, 0.25));
}
.hero-brand-mark i {
  -webkit-text-fill-color: var(--brand-3);
  color: var(--brand-3);
  filter: none;
}

.hero-title {
  font-size: clamp(2.45rem, 7vw, 4.25rem);
  text-wrap: balance;
}
.hero-title .gradient-text {
  background-size: 200% 100%;
  animation: gradientShift 8s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-desc {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  color: rgba(180, 180, 192, 0.95);
}

.hero-trust {
  gap: 10px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
  padding-top: 20px;
}
.hero-trust li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 500;
  transition: border-color .2s ease, background .2s ease;
}
.hero-trust li:hover {
  border-color: rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.06);
}

/* CTA shine */
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: btnShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

.btn-primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 10px 28px rgba(124, 58, 237, 0.32);
}
.btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 14px 36px rgba(192, 38, 211, 0.36);
}

.hero .wallet-card {
  opacity: 1;
  transform: none;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 80px rgba(124, 58, 237, 0.12);
}

/* Header más nítido al scrollear */
.site-header.is-scrolled {
  background: rgba(8, 8, 14, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

/* Ticker premium + atmósfera post-hero */
.ticker-section {
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, rgba(12, 10, 22, 0.65) 100%);
  border-block-color: rgba(168, 85, 247, 0.14);
}

.stats-section {
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(192, 38, 211, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(14, 10, 24, 0.55), rgba(8, 8, 14, 0.2));
}

/* Degradés por sección — rompe el negro plano */
#features::before {
  background:
    radial-gradient(ellipse 55% 65% at 0% 30%, rgba(124, 58, 237, 0.2), transparent 60%),
    radial-gradient(ellipse 45% 50% at 100% 70%, rgba(34, 211, 238, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(16, 12, 28, 0.5), rgba(8, 8, 14, 0.15));
}

.assets-section::before,
#assets::before {
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(192, 38, 211, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(124, 58, 237, 0.1), transparent 55%),
    linear-gradient(165deg, rgba(10, 8, 18, 0.35), rgba(18, 12, 32, 0.45) 50%, rgba(8, 8, 14, 0.2));
}

.how-section::before,
#how::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34, 211, 238, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(124, 58, 237, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(12, 14, 24, 0.4), rgba(10, 8, 18, 0.25));
}

.earn-section::before,
#earn::before {
  background:
    radial-gradient(ellipse 65% 55% at 20% 20%, rgba(192, 38, 211, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 50% at 100% 80%, rgba(124, 58, 237, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(14, 8, 22, 0.45), rgba(8, 8, 14, 0.2));
}

.security-section::before,
#security::before {
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(124, 58, 237, 0.15), transparent 60%),
    radial-gradient(ellipse 40% 45% at 0% 60%, rgba(34, 211, 238, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 20, 0.35), rgba(12, 8, 22, 0.4));
}

.faq-section::before,
#faq::before {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124, 58, 237, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 14, 0.15), rgba(14, 10, 26, 0.4));
}

.cta-section {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124, 58, 237, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(10, 8, 18, 0.3), rgba(8, 8, 14, 0.6));
}

@media (prefers-reduced-motion: reduce) {
  body {
    background-attachment: scroll;
  }
}

@media (max-width: 899px) {
  body {
    background-attachment: scroll;
  }
}

/* Stats / cards con lift */
.stat-card,
.bento-card,
.earn-card,
.step-card {
  transition:
    opacity .5s cubic-bezier(0.16, 1, 0.3, 1),
    transform .5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color .2s ease,
    box-shadow .25s ease;
}
.stat-card.in-view:hover,
.bento-card.in-view:hover,
.earn-card.in-view:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-color: rgba(168, 85, 247, 0.35);
}

.bento-card:nth-child(1) { transition-delay: 0ms; }
.bento-card:nth-child(2) { transition-delay: 60ms; }
.bento-card:nth-child(3) { transition-delay: 120ms; }
.bento-card:nth-child(4) { transition-delay: 180ms; }
.bento-card:nth-child(5) { transition-delay: 240ms; }
.bento-card:nth-child(6) { transition-delay: 300ms; }

.stat-card:nth-child(1) { transition-delay: 0ms; }
.stat-card:nth-child(2) { transition-delay: 70ms; }
.stat-card:nth-child(3) { transition-delay: 140ms; }
.stat-card:nth-child(4) { transition-delay: 210ms; }

/* Eyebrow más limpio */
.eyebrow {
  letter-spacing: 0.14em;
  color: #67e8f9;
}

.section-header h2 {
  text-wrap: balance;
}

/* CTA final más impactante */
.cta-box {
  border-color: rgba(168, 85, 247, 0.35);
  background:
    linear-gradient(145deg, rgba(192, 38, 211, 0.14), rgba(124, 58, 237, 0.08) 45%, rgba(34, 211, 238, 0.12)),
    rgba(16, 16, 24, 0.6);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cta-bg {
  animation: auroraDrift 22s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora,
  .hero-orb,
  .btn-shine::after,
  .hero-title .gradient-text,
  .cta-bg,
  .hero-motion [data-hero],
  .hero-motion .hero-trust li,
  .hero-motion .hero-video-el,
  .hero-motion [data-hero="wallet"],
  .hero-motion [data-hero="badge"] {
    animation: none !important;
  }
  .hero-motion [data-hero],
  .hero-motion .hero-trust li,
  .hero-motion .hero-video-el {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
