/* ============================================================
   NOVA MICHIS · PREMIUM REFINEMENT LAYER
   Capa de refinamiento que eleva la calidad visual del sitio
   sin romper el sistema existente. Cargar DESPUÉS de styles.css
   ============================================================ */

:root {
  /* === Sombras refinadas (capas suaves, no brutalistas) === */
  --shadow-elegant-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-elegant-md: 0 4px 12px rgba(0, 0, 0, 0.18), 0 16px 40px rgba(0, 0, 0, 0.22);
  --shadow-elegant-lg: 0 8px 24px rgba(0, 0, 0, 0.22), 0 32px 64px rgba(0, 0, 0, 0.32);
  --shadow-elegant-xl: 0 16px 48px rgba(0, 0, 0, 0.28), 0 48px 96px rgba(0, 0, 0, 0.4);

  /* Ring suave para focus y acentos premium */
  --ring-gold: 0 0 0 1px rgba(255, 202, 79, 0.32), 0 0 0 4px rgba(255, 202, 79, 0.12);
  --ring-mint: 0 0 0 1px rgba(132, 227, 196, 0.32), 0 0 0 4px rgba(132, 227, 196, 0.12);

  /* Bordes refinados */
  --line-elegant: rgba(255, 247, 237, 0.08);
  --line-elegant-strong: rgba(255, 247, 237, 0.14);

  /* Easing curvas premium */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emphasized: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Backdrop blur */
  --blur-soft: blur(16px) saturate(160%);
  --blur-strong: blur(24px) saturate(180%);
}

/* ============================================================
   TIPOGRAFÍA · Refinamiento de jerarquía y rhythm
   ============================================================ */
body {
  font-feature-settings: "ss01", "cv11", "kern", "liga", "calt";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

h1, h2 {
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  margin-bottom: 18px !important;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem) !important;
  letter-spacing: -0.03em;
}

h3 {
  letter-spacing: -0.015em;
  font-weight: 600;
}

p {
  line-height: 1.65;
  letter-spacing: -0.003em;
}

.eyebrow {
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  padding: 7px 13px !important;
  border-color: rgba(255, 202, 79, 0.22) !important;
  background: rgba(255, 202, 79, 0.06) !important;
  backdrop-filter: var(--blur-soft);
  -webkit-backdrop-filter: var(--blur-soft);
}

.section-lead,
.hero-subtitle {
  font-weight: 400 !important;
  color: rgba(255, 247, 237, 0.78) !important;
  line-height: 1.55 !important;
  letter-spacing: -0.003em;
}

/* ============================================================
   SCROLLBAR · Refinada y elegante
   ============================================================ */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 202, 79, 0.32) transparent;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-track {
  background: rgba(10, 11, 20, 0.4);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 202, 79, 0.4), rgba(132, 227, 196, 0.3));
  border-radius: 999px;
  border: 2px solid rgba(10, 11, 20, 0.8);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 202, 79, 0.6), rgba(132, 227, 196, 0.5));
}

/* Selection refinement */
::selection {
  background: rgba(255, 202, 79, 0.32);
  color: var(--text);
  text-shadow: 0 0 8px rgba(255, 202, 79, 0.4);
}

/* ============================================================
   HEADER · Refinamiento premium con mejor backdrop
   ============================================================ */
.site-header {
  background: rgba(10, 11, 20, 0.55) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 247, 237, 0.06) !important;
  box-shadow:
    0 1px 0 rgba(255, 247, 237, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.32) !important;
  transition: all 320ms var(--ease-premium) !important;
}

.site-header.is-scrolled {
  background: rgba(10, 11, 20, 0.78) !important;
  border-bottom-color: rgba(255, 247, 237, 0.1) !important;
  box-shadow:
    0 1px 0 rgba(255, 247, 237, 0.06),
    0 12px 48px rgba(0, 0, 0, 0.42) !important;
}

/* Línea de gradiente sutil bajo el header al hacer scroll */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 202, 79, 0.32) 30%,
    rgba(132, 227, 196, 0.32) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 400ms var(--ease-premium);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

/* Brand refinada */
.brand {
  letter-spacing: -0.025em;
  transition: transform 280ms var(--ease-premium);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  box-shadow:
    0 0 0 2px var(--mint),
    0 4px 12px rgba(132, 227, 196, 0.32),
    0 8px 24px rgba(0, 0, 0, 0.32) !important;
  transition: all 320ms var(--ease-premium);
}

.brand:hover .brand-mark {
  box-shadow:
    0 0 0 2px var(--mint-bright),
    0 6px 16px rgba(132, 227, 196, 0.48),
    0 12px 32px rgba(0, 0, 0, 0.4) !important;
  transform: scale(1.05) rotate(-3deg);
}

/* Navegación refinada */
.main-nav {
  font-size: 0.78rem !important;
  letter-spacing: 0.005em;
}

.main-nav a,
.nav-dropdown-toggle {
  font-weight: 500 !important;
  color: rgba(255, 247, 237, 0.68) !important;
  transition: color 240ms var(--ease-premium), transform 240ms var(--ease-premium) !important;
}

.main-nav a::after,
.nav-dropdown-toggle::after {
  background: linear-gradient(90deg, var(--mint), var(--gold)) !important;
  height: 2px !important;
  border-radius: 2px !important;
  bottom: 2px !important;
}

.main-nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--text) !important;
  transform: translateY(-1px);
}

/* Submenu del ecosistema refinado */
.ecosystem-submenu {
  border: 1px solid rgba(255, 247, 237, 0.08) !important;
  background: rgba(14, 16, 27, 0.92) !important;
  box-shadow:
    0 1px 0 rgba(255, 247, 237, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 202, 79, 0.08) !important;
  backdrop-filter: var(--blur-strong) !important;
  -webkit-backdrop-filter: var(--blur-strong) !important;
  padding: 12px !important;
  border-radius: 14px !important;
}

.ecosystem-submenu a {
  font-size: 0.72rem !important;
  letter-spacing: 0.04em !important;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  transition: all 220ms var(--ease-premium) !important;
  position: relative;
  overflow: hidden;
}

.ecosystem-submenu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--mint));
  opacity: 0;
  transition: opacity 220ms var(--ease-premium);
}

.ecosystem-submenu a:hover {
  background: rgba(255, 202, 79, 0.06) !important;
  color: var(--text) !important;
  padding-left: 18px !important;
}

.ecosystem-submenu a:hover::before {
  opacity: 1;
}

/* ============================================================
   BOTONES · Sistema premium con micro-interacciones
   ============================================================ */
.btn {
  position: relative;
  overflow: hidden;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  transition:
    transform 280ms var(--ease-premium),
    box-shadow 280ms var(--ease-premium),
    background 280ms var(--ease-premium),
    filter 280ms var(--ease-premium) !important;
  isolation: isolate;
}

/* Shimmer effect en hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform 720ms var(--ease-premium);
  pointer-events: none;
  z-index: 1;
}

.btn:hover::before {
  transform: translateX(110%);
}

.btn > * {
  position: relative;
  z-index: 2;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) !important;
}

.btn:active {
  transform: translateY(0) scale(0.98) !important;
  transition-duration: 80ms !important;
}

/* Primary refinado */
.btn-primary {
  background: linear-gradient(135deg, #ffd770 0%, #ffca4f 50%, #ffb238 100%) !important;
  color: #1a1300 !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    0 8px 16px rgba(255, 202, 79, 0.32),
    0 16px 36px rgba(255, 202, 79, 0.22) !important;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    0 10px 24px rgba(255, 202, 79, 0.42),
    0 24px 48px rgba(255, 202, 79, 0.32) !important;
  filter: brightness(1.06) saturate(1.05);
}

/* Secondary refinado */
.btn-secondary {
  background: linear-gradient(135deg, #a4ecd2 0%, #84e3c4 50%, #5ed4ab 100%) !important;
  color: #052018 !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.08) inset,
    0 8px 16px rgba(132, 227, 196, 0.28),
    0 16px 36px rgba(132, 227, 196, 0.18) !important;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    0 10px 24px rgba(132, 227, 196, 0.42),
    0 24px 48px rgba(132, 227, 196, 0.28) !important;
  filter: brightness(1.05) saturate(1.05);
}

/* Ghost refinado */
.btn-ghost {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 247, 237, 0.14) !important;
  backdrop-filter: var(--blur-soft) !important;
  -webkit-backdrop-filter: var(--blur-soft) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 12px rgba(0, 0, 0, 0.18) !important;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 247, 237, 0.24) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 8px 24px rgba(0, 0, 0, 0.24) !important;
}

/* Focus visible mejorado */
.btn:focus-visible {
  outline: none;
  box-shadow:
    var(--ring-gold),
    0 8px 24px rgba(255, 202, 79, 0.32) !important;
}

.btn-secondary:focus-visible {
  box-shadow:
    var(--ring-mint),
    0 8px 24px rgba(132, 227, 196, 0.32) !important;
}

/* ============================================================
   HERO · Composición más elegante y respirada
   ============================================================ */
.hero {
  padding-top: 72px !important;
  padding-bottom: 64px !important;
}

.hero-grid {
  gap: 40px 64px !important;
}

.hero-motto {
  color: transparent !important;
  background: linear-gradient(120deg, var(--gold) 0%, var(--mint) 60%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  animation: heroMottoShine 8s ease-in-out infinite;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}

@keyframes heroMottoShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  max-width: 560px !important;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem) !important;
}

/* Floating stats refinados */
.floating-stat {
  border: 1px solid rgba(10, 11, 20, 0.12) !important;
  background: linear-gradient(135deg, #fffaf0 0%, #fff5e5 100%) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 -1px 0 rgba(0, 0, 0, 0.06) inset,
    0 4px 8px rgba(0, 0, 0, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-stat-icon {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 4px 12px rgba(0, 0, 0, 0.32);
}

/* Trust copy refinada */
.trust-copy {
  border-left-width: 2px !important;
  border-left-color: rgba(132, 227, 196, 0.6) !important;
  background: linear-gradient(
    90deg,
    rgba(132, 227, 196, 0.06) 0%,
    rgba(132, 227, 196, 0.02) 50%,
    transparent 100%
  ) !important;
  border-radius: 10px;
  padding: 14px 18px !important;
  font-size: 0.88rem !important;
  letter-spacing: -0.002em;
  position: relative;
}

.trust-copy::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: var(--mint);
  font-weight: 700;
}

/* Network badges refinados */
.network-badge {
  background: linear-gradient(135deg, rgba(20, 241, 149, 0.06), rgba(153, 69, 255, 0.06)) !important;
  border: 1px solid rgba(128, 236, 255, 0.18) !important;
  backdrop-filter: var(--blur-soft);
  -webkit-backdrop-filter: var(--blur-soft);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 4px 12px rgba(20, 241, 149, 0.08) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.02em !important;
  font-weight: 600 !important;
  transition: all 280ms var(--ease-premium);
}

.network-badge:hover {
  border-color: rgba(128, 236, 255, 0.32) !important;
  background: linear-gradient(135deg, rgba(20, 241, 149, 0.1), rgba(153, 69, 255, 0.1)) !important;
  transform: translateY(-1px);
}

/* ============================================================
   CARDS · Glassmorphism refinado y bordes premium
   ============================================================ */
.value-card,
.benefit-grid article,
.pillar-list article,
.security-list article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 247, 237, 0.08) !important;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 1px 2px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.16) !important;
  transition:
    transform 380ms var(--ease-premium),
    border-color 380ms var(--ease-premium),
    background 380ms var(--ease-premium),
    box-shadow 380ms var(--ease-premium) !important;
  position: relative;
  overflow: hidden;
}

/* Border gradient sutil al hover */
.value-card::after,
.benefit-grid article::after,
.pillar-list article::after,
.security-list article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 202, 79, 0.4),
    rgba(132, 227, 196, 0.3) 50%,
    rgba(169, 118, 255, 0.3)
  );
  -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;
  opacity: 0;
  transition: opacity 380ms var(--ease-premium);
  pointer-events: none;
}

.value-card:hover,
.benefit-grid article:hover,
.pillar-list article:hover,
.security-list article:hover {
  transform: translateY(-6px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(255, 255, 255, 0.025) !important;
  border-color: rgba(255, 247, 237, 0.16) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 4px 8px rgba(0, 0, 0, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.32),
    0 0 64px rgba(255, 202, 79, 0.04) !important;
}

.value-card:hover::after,
.benefit-grid article:hover::after,
.pillar-list article:hover::after,
.security-list article:hover::after {
  opacity: 0.8;
}

.value-card-icon {
  background: linear-gradient(
    135deg,
    rgba(132, 227, 196, 0.12) 0%,
    rgba(255, 202, 79, 0.12) 100%
  ) !important;
  border: 1px solid rgba(255, 247, 237, 0.08) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 12px rgba(0, 0, 0, 0.16) !important;
  transition: all 320ms var(--ease-premium);
}

.value-card:hover .value-card-icon {
  background: linear-gradient(
    135deg,
    rgba(132, 227, 196, 0.18) 0%,
    rgba(255, 202, 79, 0.18) 100%
  ) !important;
  transform: scale(1.05) rotate(-4deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 8px 24px rgba(255, 202, 79, 0.18) !important;
}

/* ============================================================
   SECCIONES · Espaciado refinado
   ============================================================ */
.section {
  padding: 110px 0 !important;
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0 !important;
  }
}

/* Allocation cards (tokenomics) refinadas */
.allocation-card {
  border: 1px solid rgba(255, 247, 237, 0.08) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 4px 12px rgba(0, 0, 0, 0.16) !important;
  transition: all 320ms var(--ease-premium) !important;
}

.allocation-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 202, 79, 0.24) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 16px 48px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(255, 202, 79, 0.06) !important;
}

.allocation-bar {
  background: rgba(255, 247, 237, 0.06) !important;
  border-radius: 999px;
  overflow: hidden;
  height: 6px;
  margin-top: 14px;
}

.allocation-bar span {
  display: block;
  height: 100%;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, var(--mint), var(--gold));
  border-radius: 999px;
  position: relative;
  transition: width 800ms var(--ease-emphasized);
}

.allocation-bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: barShine 3s ease-in-out infinite;
}

@keyframes barShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* ============================================================
   FAQ · Detalles refinados
   ============================================================ */
.faq-list details {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)) !important;
  border: 1px solid rgba(255, 247, 237, 0.08) !important;
  border-radius: 14px !important;
  overflow: hidden;
  transition: all 320ms var(--ease-premium) !important;
}

.faq-list details:hover {
  border-color: rgba(255, 247, 237, 0.14) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)) !important;
}

.faq-list details[open] {
  border-color: rgba(255, 202, 79, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(255, 202, 79, 0.04), rgba(255, 255, 255, 0.01)) !important;
  box-shadow:
    0 1px 0 rgba(255, 202, 79, 0.08) inset,
    0 8px 24px rgba(0, 0, 0, 0.18),
    0 0 32px rgba(255, 202, 79, 0.04);
}

.faq-list summary {
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  transition: color 240ms var(--ease-premium);
}

.faq-list summary::after {
  transition: transform 320ms var(--ease-premium), background 240ms var(--ease-premium) !important;
}

.faq-list details[open] summary::after {
  background: rgba(255, 202, 79, 0.12) !important;
  color: var(--gold);
}

/* ============================================================
   FOOTER · Premium con gradiente sutil
   ============================================================ */
.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 11, 20, 0) 0%, rgba(6, 7, 14, 0.8) 100%);
  border-top: 1px solid rgba(255, 247, 237, 0.06);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 202, 79, 0.32) 30%,
    rgba(132, 227, 196, 0.32) 70%,
    transparent 100%
  );
}

.site-footer a {
  transition: color 220ms var(--ease-premium), transform 220ms var(--ease-premium);
  display: inline-block;
}

.site-footer a:hover {
  color: var(--gold) !important;
  transform: translateX(2px);
}

.site-footer h3 {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: rgba(255, 247, 237, 0.78) !important;
  margin-bottom: 16px !important;
}

/* ============================================================
   FLOATING SOCIAL · Más sofisticado
   ============================================================ */
.float-btn {
  backdrop-filter: blur(16px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 8px 24px rgba(0, 0, 0, 0.4) !important;
  transition: all 320ms var(--ease-premium) !important;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.06) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 16px 36px rgba(0, 0, 0, 0.48) !important;
}

/* ============================================================
   ANIMACIONES DE ENTRADA · Más refinadas
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms var(--ease-premium),
    transform 720ms var(--ease-premium);
  will-change: transform, opacity;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger sutil */
[data-reveal]:nth-child(2) { transition-delay: 60ms; }
[data-reveal]:nth-child(3) { transition-delay: 120ms; }
[data-reveal]:nth-child(4) { transition-delay: 180ms; }
[data-reveal]:nth-child(5) { transition-delay: 240ms; }

/* ============================================================
   IMÁGENES · Loading suave y hover refinado
   ============================================================ */
img {
  transition: opacity 320ms var(--ease-premium);
}

.supporter-art-card,
.nft-market-card {
  transition: all 420ms var(--ease-premium) !important;
}

.supporter-art-card:hover,
.nft-market-card:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(255, 202, 79, 0.08) !important;
}

.supporter-art-card img,
.nft-market-card img {
  transition: transform 600ms var(--ease-premium) !important;
}

.supporter-art-card:hover img,
.nft-market-card:hover img {
  transform: scale(1.05);
}

/* ============================================================
   INPUTS Y FORMS · Premium feel
   ============================================================ */
input[type="email"],
input[type="text"] {
  transition: all 280ms var(--ease-premium);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 247, 237, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

input[type="email"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: rgba(255, 202, 79, 0.4) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow:
    0 0 0 4px rgba(255, 202, 79, 0.08),
    0 8px 24px rgba(255, 202, 79, 0.12);
}

/* ============================================================
   LANGUAGE SWITCHER · Refinado
   ============================================================ */
.lang-toggle {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 247, 237, 0.1) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 240ms var(--ease-premium) !important;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 247, 237, 0.2) !important;
  transform: translateY(-1px);
}

.lang-menu {
  border: 1px solid rgba(255, 247, 237, 0.1) !important;
  background: rgba(14, 16, 27, 0.92) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.48) !important;
  backdrop-filter: var(--blur-strong) !important;
  -webkit-backdrop-filter: var(--blur-strong) !important;
}

.lang-menu button {
  transition: all 220ms var(--ease-premium);
}

.lang-menu button:hover {
  background: rgba(255, 202, 79, 0.06) !important;
}

/* ============================================================
   STRONG MESSAGE · Box quote refinado
   ============================================================ */
.strong-message,
.closing-claim {
  position: relative;
  border-left-width: 3px !important;
  background:
    linear-gradient(90deg, rgba(255, 202, 79, 0.08) 0%, rgba(255, 202, 79, 0.02) 60%, transparent 100%) !important;
  border-radius: 12px;
  padding: 24px 28px !important;
  letter-spacing: -0.01em;
  line-height: 1.45;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ============================================================
   NOISE/GRAIN TEXTURE · Adds premium feel
   ============================================================ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ============================================================
   FOCUS STATES · Accesibilidad premium
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--ring-gold);
  border-radius: 6px;
}

/* ============================================================
   COMMUNITY GRID & PILLAR LIST · Refinamientos
   ============================================================ */
.pillar-list article,
.security-list article {
  padding: 26px;
  border-radius: 18px;
}

.pillar-list article::before,
.security-list article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 202, 79, 0.4) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 320ms var(--ease-premium);
}

.pillar-list article:hover::before,
.security-list article:hover::before {
  opacity: 1;
}

/* ============================================================
   ECOSYSTEM FEATURES · Cards refinadas
   ============================================================ */
.ecosystem-feature {
  transition: all 420ms var(--ease-premium);
}

.ecosystem-feature:hover {
  transform: translateY(-4px);
}

/* ============================================================
   HONORAR PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PRESALE / AIRDROP REWARDS · Tabla refinada
   ============================================================ */
.reward-table {
  border-collapse: separate;
  border-spacing: 0;
}

.reward-table thead th {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 247, 237, 0.6);
}

.reward-table tbody tr {
  transition: background 240ms var(--ease-premium);
}

.reward-table tbody tr:hover {
  background: rgba(255, 202, 79, 0.04);
}

.reward-channel {
  transition: transform 240ms var(--ease-spring);
}

.reward-table tbody tr:hover .reward-channel {
  transform: scale(1.15);
}

/* ============================================================
   NEWSLETTER CARD · Refinamiento
   ============================================================ */
.newsletter-form input[type="email"]:focus {
  border-color: rgba(132, 227, 196, 0.5) !important;
  box-shadow:
    0 0 0 4px rgba(132, 227, 196, 0.1),
    0 8px 24px rgba(132, 227, 196, 0.16) !important;
}

/* ============================================================
   LAUNCH AIRDROP · Pasos + Snapshot
   ============================================================ */
.presale-marquee-track span b {
  width: 40px !important;
  height: 28px !important;
  border-radius: 8px !important;
  font-size: 0.68rem !important;
  letter-spacing: 0 !important;
}

.presale-airdrop-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.78fr);
  gap: 44px;
}

.presale-airdrop-copy h2 {
  max-width: 720px;
  font-size: 3.25rem !important;
  letter-spacing: 0 !important;
  line-height: 1.02 !important;
}

.presale-airdrop-copy .section-lead {
  max-width: 760px;
  color: #3b3024 !important;
  font-size: 1.04rem;
  line-height: 1.65 !important;
}

.presale-countdown-pill svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.airdrop-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 18px;
}

.airdrop-path-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border: 2px solid #151106;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 238, 0.86)),
    linear-gradient(135deg, rgba(255, 202, 79, 0.22), rgba(132, 227, 196, 0.18));
  box-shadow: 8px 8px 0 rgba(21, 17, 6, 0.95);
  overflow: hidden;
  transition:
    transform 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    border-color 240ms var(--ease-premium);
}

.airdrop-path-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--mint), var(--solana-purple));
}

.airdrop-path-card:hover {
  transform: translateY(-3px);
  border-color: #0a0b14;
  box-shadow: 10px 12px 0 rgba(21, 17, 6, 0.95);
}

.airdrop-path-card-snapshot {
  grid-column: 1 / -1;
  min-height: 188px;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(18, 20, 31, 0.98), rgba(34, 28, 19, 0.96)),
    linear-gradient(90deg, rgba(255, 202, 79, 0.18), rgba(132, 227, 196, 0.2));
  color: var(--text);
}

.airdrop-path-card-snapshot .airdrop-path-index {
  color: rgba(255, 247, 237, 0.42);
}

.airdrop-path-card-snapshot .airdrop-path-icon {
  background: rgba(255, 202, 79, 0.12);
  color: var(--gold);
}

.airdrop-path-card-snapshot div {
  grid-column: 2;
}

.airdrop-path-index {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(21, 17, 6, 0.18);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.airdrop-path-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid #151106;
  border-radius: 8px;
  background: var(--gold);
  color: #151106;
}

.airdrop-path-card-social .airdrop-path-icon {
  background: var(--mint);
}

.airdrop-path-card svg {
  width: 24px;
  height: 24px;
}

.airdrop-path-card h3 {
  margin: 0;
  max-width: 86%;
  color: #151106;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}

.airdrop-path-card-snapshot h3 {
  color: var(--gold);
}

.airdrop-path-card p {
  margin: 0;
  color: rgba(21, 17, 6, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
  letter-spacing: 0;
}

.airdrop-path-card-snapshot p {
  color: rgba(255, 247, 237, 0.76);
}

.airdrop-path-link,
.airdrop-social-actions a,
.airdrop-channel-grid a {
  cursor: pointer;
}

.airdrop-path-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px 10px 14px;
  border: 2px solid #151106;
  border-radius: 8px;
  background: #151106;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    background 220ms var(--ease-premium),
    color 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.airdrop-path-link svg {
  width: 20px;
  height: 20px;
  transition: transform 220ms var(--ease-premium);
}

.airdrop-path-link:hover,
.airdrop-path-link:focus-visible {
  background: var(--gold);
  color: #151106;
  transform: translateY(-1px);
}

.airdrop-path-link:hover svg,
.airdrop-path-link:focus-visible svg {
  transform: translateX(3px);
}

.airdrop-social-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.airdrop-social-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px;
  border: 2px solid #151106;
  border-radius: 8px;
  background: #151106;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    background 220ms var(--ease-premium),
    color 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.airdrop-social-actions a:first-child {
  background: #ffffff;
  color: #151106;
}

.airdrop-social-actions a:hover,
.airdrop-social-actions a:focus-visible {
  background: var(--mint);
  color: #151106;
  transform: translateY(-1px);
}

.airdrop-social-actions span,
.airdrop-channel-grid span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #151106;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.airdrop-social-actions svg,
.airdrop-channel-grid svg {
  width: 24px;
  height: 24px;
}

.snapshot-program-card {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 24px;
  border: 2px solid #151106;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(21, 17, 6, 0.98), rgba(27, 31, 48, 0.98)),
    linear-gradient(90deg, rgba(255, 202, 79, 0.2), rgba(132, 227, 196, 0.18));
  color: var(--text);
  box-shadow: 8px 8px 0 rgba(21, 17, 6, 0.95);
  overflow: hidden;
}

.snapshot-program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--mint), var(--gold), var(--coral));
}

.snapshot-program-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.snapshot-program-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 247, 237, 0.18);
  border-radius: 8px;
  background: rgba(255, 202, 79, 0.12);
  color: var(--gold);
  flex: 0 0 auto;
}

.snapshot-program-icon svg {
  width: 27px;
  height: 27px;
}

.snapshot-program-head h3 {
  margin: 2px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}

.snapshot-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.snapshot-flow div {
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.snapshot-flow strong,
.snapshot-flow span {
  display: block;
  letter-spacing: 0;
}

.snapshot-flow strong {
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
}

.snapshot-flow span {
  color: rgba(255, 247, 237, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.snapshot-program-card p {
  margin: 0;
  padding: 15px 16px;
  border: 1px solid rgba(132, 227, 196, 0.24);
  border-radius: 8px;
  background: rgba(132, 227, 196, 0.08);
  color: rgba(255, 247, 237, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
  letter-spacing: 0;
}

.snapshot-program-card p b {
  color: var(--mint);
}

.airdrop-conversion-column {
  gap: 16px;
}

.airdrop-join-card {
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, #fffdf7 0%, #fff4df 100%) !important;
  box-shadow:
    0 18px 42px rgba(21, 17, 6, 0.16),
    8px 8px 0 #151106 !important;
}

.airdrop-join-card::before,
.airdrop-join-card .airdrop-info-spark {
  display: none !important;
}

.airdrop-join-card .buy-card-header {
  align-items: flex-start;
}

.airdrop-join-card .buy-card-header h3 {
  font-size: 1.54rem;
  letter-spacing: 0;
  line-height: 1.14;
}

.airdrop-join-prize {
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, #151106 0%, #201713 46%, #12271f 100%) !important;
  box-shadow: 6px 6px 0 #151106 !important;
}

.airdrop-join-prize strong {
  font-size: 1.34rem !important;
  letter-spacing: 0;
  line-height: 1.08;
}

.airdrop-join-stats {
  border-radius: 8px !important;
  background: #ffffff !important;
}

.airdrop-channel-grid {
  display: grid;
  gap: 10px;
}

.airdrop-channel-grid a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1.5px solid rgba(21, 17, 6, 0.14);
  border-radius: 8px;
  background: #ffffff;
  transition:
    border-color 220ms var(--ease-premium),
    background 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.airdrop-channel-grid a:hover,
.airdrop-channel-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(20, 168, 102, 0.42);
  background: #f3fff9;
}

.airdrop-channel-grid svg,
.airdrop-channel-grid span {
  grid-row: 1 / span 2;
}

.airdrop-channel-grid svg {
  padding: 4px;
  border-radius: 6px;
  background: #2aabee;
  color: #ffffff;
}

.airdrop-channel-grid strong,
.airdrop-channel-grid em {
  grid-column: 2;
  display: block;
  letter-spacing: 0;
}

.airdrop-channel-grid strong {
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
}

.airdrop-channel-grid em {
  color: rgba(21, 17, 6, 0.58);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.35;
}

.follow-airdrop-banner-redesign {
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, #151106 0%, #191c2d 54%, #0d362a 100%) !important;
  box-shadow:
    0 18px 42px rgba(21, 17, 6, 0.18),
    8px 8px 0 #151106 !important;
}

.follow-airdrop-banner-redesign .follow-airdrop-links {
  grid-template-columns: 1fr;
}

@media (max-width: 1080px) {
  .presale-airdrop-layout {
    grid-template-columns: 1fr;
  }

  .airdrop-conversion-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .presale-airdrop-copy h2 {
    font-size: 2.35rem !important;
  }

  .presale-airdrop-copy .section-lead {
    font-size: 0.98rem;
  }

  .airdrop-path-grid,
  .snapshot-flow,
  .airdrop-conversion-column {
    grid-template-columns: 1fr;
  }

  .airdrop-path-card,
  .airdrop-path-card-snapshot {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .airdrop-path-card-snapshot div {
    grid-column: auto;
  }

  .airdrop-social-actions {
    grid-template-columns: 1fr;
  }

  .snapshot-program-card {
    padding: 18px;
  }

  .snapshot-program-head {
    align-items: flex-start;
  }

  .airdrop-join-card .buy-card-header {
    display: grid;
  }

  .airdrop-join-card .buy-card-pills {
    justify-content: flex-start;
  }

  .floating-social {
    right: 8px !important;
    bottom: 18px !important;
    gap: 6px !important;
  }

  .float-btn {
    width: 38px !important;
    height: 38px !important;
    border-width: 1.5px !important;
  }

  .float-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* ============================================================
   STORE / TIENDA · Mejoras de cards
   ============================================================ */
.store-info-card,
.store-story-card {
  transition: all 380ms var(--ease-premium) !important;
}

.store-info-card:hover,
.store-story-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.28) !important;
}

/* ============================================================
   PRINT STYLES (limpieza)
   ============================================================ */
@media print {
  body::after,
  .float-btn,
  .stars,
  .hero-glow,
  .hero-halo,
  .coin-ring {
    display: none !important;
  }
}
