/* ===================== RCOL — Colombia DAO ===================== */

:root {
  /* Dark premium — esmeralda + oro */
  --background: #060a09;
  --bg-elevated: #0a100e;
  --foreground: #eef3f1;
  --card: #0d1412;
  --card-glass: rgba(18, 28, 25, 0.55);
  --muted: #101815;
  --muted-fg: #93a39d;
  --secondary: #141d1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --primary: #e3b341;            /* oro brillante para dark */
  --primary-fg: #0a0f0e;
  --primary-soft: rgba(227, 179, 65, 0.12);
  --gold-light: #ffd700;
  --gold-dark: #b8860b;
  --emerald: #18c98a;            /* acento esmeralda (mariposa) */
  --emerald-soft: rgba(24, 201, 138, 0.14);
  --green: #18c98a;
  --uniswap: #ff2e88;

  --flag-yellow: #fcd116;
  --flag-blue: #003893;
  --flag-red: #ce1126;

  --radius: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 44px rgba(227, 179, 65, 0.28);
  --shadow-emerald: 0 10px 50px rgba(24, 201, 138, 0.3);

  --font-display: 'Bungee', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; width: 100%; }
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

/* Screen-reader-only (SEO/a11y heading without visual duplication) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Inline Colombia flag (consistent across all platforms incl. Windows) */
.co-flag {
  display: inline-block;
  width: 1.35em;
  height: 0.95em;
  vertical-align: -0.12em;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: linear-gradient(
    180deg,
    var(--flag-yellow) 0 50%,
    var(--flag-blue) 50% 75%,
    var(--flag-red) 75% 100%
  );
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(6, 10, 9, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-desktop a {
  color: rgba(238, 243, 241, 0.72);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--primary); }

.ca-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: var(--foreground);
  font-weight: 500;
  transition: background 0.2s;
}
.ca-button:hover { background: #e9e3d1; }

.ca-label { color: var(--muted-fg); font-family: var(--font-sans); }
.ca-button .icon { color: var(--muted-fg); transition: color 0.2s; }
.ca-button:hover .icon-copy { color: var(--primary); }

.ca-button .icon-check { display: none; color: var(--green); }
.ca-button.copied .icon-copy { display: none; }
.ca-button.copied .icon-check { display: block; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.nav-mobile a {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: rgba(238, 243, 241, 0.86);
}
.nav-mobile a:hover { color: var(--primary); background: var(--muted); }
.nav-mobile.open { display: flex; }

/* ============ LIVE TICKER ============ */
.ticker {
  overflow: hidden;
  background: linear-gradient(90deg, #14e07a 0%, #1fbf75 50%, #14e07a 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 14px rgba(31, 191, 117, 0.3);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-group {
  display: flex;
  flex-shrink: 0;
}

.tk-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #06210f;
  text-transform: uppercase;
}
.tk-item::after {
  content: "◆";
  margin: 0 1.5rem;
  font-size: 0.6rem;
  color: rgba(6, 33, 15, 0.5);
}
.tk-item b { font-weight: 800; color: #042a14; }
.tk-change.tk-down { color: #b81414; }
.tk-change.tk-up { color: #044d24; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 7.5rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(24, 201, 138, 0.10), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(227, 179, 65, 0.08), transparent 60%),
    linear-gradient(180deg, #060a09 0%, #070d0b 55%, #050807 100%);
}

/* Wallpaper full-bleed — la mariposa esmeralda 2K cubre todo el hero */
.hero-wallpaper {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-wallpaper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.05) contrast(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
/* Si no hay imagen, ocultamos el <picture> y usamos solo el fondo gradiente del .hero */
.hero-wallpaper.no-wallpaper { display: none; }

@keyframes heroZoom {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}

/* Overlay degradado: oscuro a la izquierda para legibilidad del texto */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 10, 9, 0.95) 0%, rgba(6, 10, 9, 0.82) 35%, rgba(6, 10, 9, 0.55) 60%, rgba(6, 10, 9, 0.35) 100%),
    linear-gradient(180deg, rgba(6, 10, 9, 0.4) 0%, transparent 25%, transparent 70%, rgba(6, 10, 9, 0.85) 100%),
    radial-gradient(700px 500px at 75% 40%, rgba(24, 201, 138, 0.18), transparent 60%);
}
@media (max-width: 768px) {
  .hero-wallpaper img { object-position: center center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 10, 9, 0.55) 0%, rgba(6, 10, 9, 0.75) 40%, rgba(6, 10, 9, 0.92) 100%),
      radial-gradient(500px 350px at 50% 30%, rgba(24, 201, 138, 0.20), transparent 70%);
  }
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
/* Cuando el wallpaper carga, ocultamos los blobs/Andes (el wallpaper YA tiene paisaje) */
.hero:has(.hero-wallpaper:not(.no-wallpaper)) .hero-bg .blob,
.hero:has(.hero-wallpaper:not(.no-wallpaper)) .hero-bg .andes,
.hero:has(.hero-wallpaper:not(.no-wallpaper)) .hero-bg .butterfly {
  display: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  background: rgba(184, 134, 11, 0.08);
}
.blob-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; }
.blob-2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; }
.blob-3 {
  top: 50%; left: 50%;
  width: 38rem; height: 38rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 134, 11, 0.12), transparent 70%);
  filter: blur(40px);
}

/* Andes silhouette — subtle depth behind the hero */
.andes {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 42%;
  min-height: 220px;
  pointer-events: none;
  will-change: transform;
}
.andes-back {
  fill: rgba(184, 134, 11, 0.10);
}
.andes-front {
  fill: rgba(139, 105, 20, 0.14);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 3rem 1rem 5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.4rem;
  max-width: 640px;
  animation: heroSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 768px) {
  .hero-inner { justify-content: center; padding: 2.5rem 1rem 4rem; }
  .hero-content { align-items: center; text-align: center; }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-coin {
  animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}
.coin-img {
  width: 13rem;
  height: 13rem;
  filter: drop-shadow(0 8px 24px rgba(184, 134, 11, 0.4));
}

/* Hero banner image */
.hero-banner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(184, 134, 11, 0.25), 0 4px 18px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(184, 134, 11, 0.25);
  animation: bannerIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both, float 6s ease-in-out 0.9s infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(184, 134, 11, 0.35), 0 6px 22px rgba(0, 0, 0, 0.15);
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2172 / 724;
  object-fit: cover;
}
/* Mobile swaps to the 3:2 banner via <picture>; match its ratio to avoid layout shift */
@media (max-width: 640px) {
  .hero-banner-img { aspect-ratio: 3 / 2; }
}
/* Soft moving shine sweep across the banner */
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  animation: bannerShine 5.5s ease-in-out 1.2s infinite;
  pointer-events: none;
}

@keyframes bannerIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bannerShine {
  0% { left: -60%; }
  55%, 100% { left: 130%; }
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: #1fbf75;
  text-shadow: 0 0 12px rgba(31, 191, 117, 0.6);
  animation: tagPulse 3s ease-in-out infinite;
}

/* Eyebrow esmeralda con dot-live */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(24, 201, 138, 0.08);
  border: 1px solid rgba(24, 201, 138, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 0 18px rgba(24, 201, 138, 0.5);
  box-shadow: 0 0 24px rgba(24, 201, 138, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.dot-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px rgba(24, 201, 138, 0.9);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Tagline grande estilo "Nuestra identidad, nuestro respaldo" */
.hero-tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: rgba(238, 243, 241, 0.92);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: -0.4rem;
}
.tagline-accent {
  background: linear-gradient(90deg, var(--emerald), #5ee8b8 60%, var(--emerald));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Mariposa / arte del hero */
.hero-art {
  position: relative;
  display: inline-flex;
  margin: 0.25rem auto;
  isolation: isolate;
}
.hero-art-glow {
  position: absolute;
  inset: -16%;
  z-index: -1;
  background: radial-gradient(circle at 50% 45%, rgba(24, 201, 138, 0.40), rgba(227, 179, 65, 0.14) 45%, transparent 70%);
  filter: blur(40px);
  animation: glowPulse 5s ease-in-out infinite;
}
.hero-butterfly {
  width: min(540px, 88vw);
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(24, 201, 138, 0.28);
  box-shadow: var(--shadow-emerald), 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: bannerIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both, float 6s ease-in-out 0.9s infinite;
}
/* Fallback: si no hay mariposa, usa la moneda redonda */
.hero-art.art-coin .hero-butterfly {
  width: min(260px, 60vw);
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(227, 179, 65, 0.45), 0 22px 60px rgba(0, 0, 0, 0.6);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.72; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.07); }
}

.hero-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0;
  display: inline-block;
  background-image: linear-gradient(180deg, #fff5d6 0%, #ffe9a8 25%, var(--primary) 60%, #a9760a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 32px rgba(227, 179, 65, 0.55));
  animation: titleScale 5s ease-in-out infinite;
}
.hero-title-fill,
.hero-title-stripes {
  display: inline-block;
  position: relative;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px rgba(184, 134, 11, 0.85);
}
.hero-title-fill {
  background-image: linear-gradient(
    180deg,
    var(--flag-yellow) 0%,
    var(--flag-yellow) 50%,
    var(--flag-blue) 50%,
    var(--flag-blue) 75%,
    var(--flag-red) 75%,
    var(--flag-red) 100%
  );
  filter: drop-shadow(0 6px 18px rgba(184, 134, 11, 0.35));
}
.hero-title-stripes {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0) 0%,
    rgba(255, 235, 130, 0.95) 50%,
    rgba(255, 215, 0, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmerMove 3s linear infinite;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: rgba(238, 243, 241, 0.86);
}
.hero-subtitle strong { font-weight: 700; color: var(--foreground); }
.hero-subtitle .sep { margin: 0 0.5rem; color: var(--primary); }
.hero-subtitle .flag { margin-left: 0.5rem; }

.hero-desc {
  color: var(--muted-fg);
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  border-radius: 0.85rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(180deg, #ffe9a8 0%, var(--primary) 50%, #b9870b 100%);
  color: var(--primary-fg);
  box-shadow: 0 10px 36px rgba(227, 179, 65, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 14px 44px rgba(227, 179, 65, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: brightness(1.08);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(24, 201, 138, 0.20), rgba(24, 201, 138, 0.08));
  color: #c7ffe8;
  border: 1px solid rgba(24, 201, 138, 0.55);
  box-shadow: 0 10px 30px rgba(24, 201, 138, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(24, 201, 138, 0.28), rgba(24, 201, 138, 0.14));
  border-color: rgba(24, 201, 138, 0.85);
  box-shadow: 0 14px 44px rgba(24, 201, 138, 0.40);
}

.btn-uniswap {
  background: var(--uniswap);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 0, 122, 0.3);
}
.btn-uniswap:hover { background: #e30070; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 243, 241, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.10);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 38rem;
}

.stat-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 1rem 0.85rem;
  text-align: center;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(24, 201, 138, 0.35), transparent 40%, transparent 70%, rgba(227, 179, 65, 0.25));
  -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.6;
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 201, 138, 0.30);
  box-shadow: 0 14px 40px rgba(24, 201, 138, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  font-weight: 800;
  background: linear-gradient(180deg, #ffe9a8 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.stat-emoji { font-size: clamp(1.8rem, 4vw, 2.3rem); }
.stat-check { font-size: clamp(1.8rem, 4vw, 2.3rem); color: var(--emerald); font-weight: 700; }
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 243, 241, 0.65);
  margin-top: 0.4rem;
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(184, 134, 11, 0.4);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  width: 0.35rem;
  height: 0.7rem;
  background: var(--primary);
  border-radius: 999px;
}

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.section-sub {
  color: var(--muted-fg);
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============ ABOUT ============ */
.about { padding: 6rem 0; background: var(--card); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature:hover {
  border-color: rgba(184, 134, 11, 0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: background 0.2s;
}
.feature:hover .feature-icon { background: rgba(184, 134, 11, 0.2); }
.feature-icon svg { width: 1.75rem; height: 1.75rem; }

.feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}
.feature p {
  color: var(--muted-fg);
  line-height: 1.65;
}

/* ============ TOKENOMICS ============ */
.tokenomics { padding: 6rem 0; background: var(--background); }

.token-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.token-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.token-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.token-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(184, 134, 11, 0.7) 50%, rgba(184, 134, 11, 0.3) 100%);
}
.token-bar-2 { background: linear-gradient(90deg, rgba(184, 134, 11, 0.3) 0%, var(--primary) 50%, rgba(184, 134, 11, 0.3) 100%); }
.token-bar-3 { background: linear-gradient(90deg, rgba(184, 134, 11, 0.3) 0%, rgba(184, 134, 11, 0.7) 50%, var(--primary) 100%); }

.token-num {
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.token-emoji { line-height: 1.2; }
.token-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--foreground);
}
.token-desc {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted-fg);
}

.distribution {
  margin-top: 5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.distribution h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--foreground);
}

.dist-bar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dist-bar {
  flex: 1;
  background: var(--secondary);
  border-radius: 999px;
  height: 1.25rem;
  overflow: hidden;
}
.dist-fill {
  background: linear-gradient(90deg, var(--primary), rgba(184, 134, 11, 0.8));
  height: 100%;
  width: 100%;
  border-radius: 999px;
}
.dist-label {
  font-weight: 700;
  white-space: nowrap;
  color: var(--foreground);
}

.dist-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.dist-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  font-weight: 500;
}
.dist-check .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ============ CHART ============ */
.chart-section { padding: 6rem 0; background: var(--card); }

.chart-wrap {
  max-width: 64rem;
  margin: 0 auto;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chart-wrap iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.chart-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}
.chart-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
}
.chart-link a:hover { color: #ffe9a8; transform: translateY(-1px); }

/* ============ COMMUNITY ============ */
.community { padding: 6rem 0; background: var(--background); }

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 2px solid var(--border);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.social-card:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.social-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--foreground);
  transition: color 0.2s;
}
.social-card:hover .social-icon { color: var(--primary); }
.social-card .ext { color: var(--muted-fg); width: 1.25rem; height: 1.25rem; }

.flag-banner {
  margin: 5rem auto 0;
  display: flex;
  width: max-content;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.flag-y, .flag-b, .flag-r { width: 6rem; height: 3rem; }
.flag-y { background: var(--flag-yellow); }
.flag-b { background: var(--flag-blue); }
.flag-r { background: var(--flag-red); }

.community-foot {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted-fg);
  font-size: 1.05rem;
}

/* ============ JUEGOS / MINI APPS ============ */
.games { padding: 6rem 0; background: var(--card); }

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.game-card:hover {
  border-color: rgba(24, 201, 138, 0.5);
  box-shadow: var(--shadow-emerald);
  transform: translateY(-4px);
}

.game-badge {
  align-self: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--emerald);
  background: var(--emerald-soft);
  border: 1px solid rgba(24, 201, 138, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.25rem;
}

.game-art {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-md);
}
.game-art img { width: 4.5rem; height: 4.5rem; border-radius: 50%; }
.game-emoji { font-size: 3rem; line-height: 1; }
.game-art-hub { background: radial-gradient(circle at 30% 25%, rgba(227, 179, 65, 0.35), rgba(227, 179, 65, 0.08)); }
.game-art-vuela { background: radial-gradient(circle at 30% 25%, rgba(24, 201, 138, 0.35), rgba(24, 201, 138, 0.08)); }
.game-art-flappy { background: radial-gradient(circle at 30% 25%, rgba(252, 209, 22, 0.35), rgba(252, 209, 22, 0.08)); }
.game-art-runner { background: radial-gradient(circle at 30% 25%, rgba(0, 255, 213, 0.38), rgba(139, 92, 246, 0.12)); }

.game-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.6rem;
}
.game-desc {
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.game-cta { width: 100%; }
.game-cta .icon { transition: transform 0.2s; }
.game-card:hover .game-cta .icon { transform: translateX(3px); }

/* ============ FOOTER ============ */
.site-footer {
  padding: 4rem 0;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; box-shadow: var(--shadow-md); }
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary);
}

.footer-ca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-ca-label {
  font-size: 0.85rem;
  color: var(--muted-fg);
  font-weight: 500;
}
.ca-full { padding: 0.85rem 1.25rem; max-width: 100%; }
.ca-full-text {
  word-break: break-all;
  font-size: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-weight: 500;
}
.footer-nav a {
  color: rgba(238, 243, 241, 0.72);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--primary); }

.disclaimer {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 40rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.disclaimer strong { color: var(--foreground); }

.copy {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

/* ============ SCROLL REVEAL ============ */
/* Base hidden state only applies once JS marks the page ready,
   so content stays visible if JS is disabled. */
.reveal-ready .is-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-ready .is-reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ============ ANIMATIONS ============ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.4)); }
  50% { filter: drop-shadow(0 0 40px rgba(184, 134, 11, 0.7)); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes tagPulse {
  0%, 100% { opacity: 0.75; text-shadow: 0 0 8px rgba(31, 191, 117, 0.5); }
  50% { opacity: 1; text-shadow: 0 0 22px rgba(31, 191, 117, 0.95); }
}
@keyframes titleScale {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 8px 30px rgba(184, 134, 11, 0.25)); }
  50% { transform: scale(1.03); filter: drop-shadow(0 12px 44px rgba(184, 134, 11, 0.45)); }
}
@keyframes shimmerMove {
  0% { background-position: -100% center; }
  100% { background-position: 200% center; }
}
@keyframes butterflyFly {
  0%   { transform: translate(0, 0) rotate(-8deg); }
  25%  { transform: translate(40px, -30px) rotate(6deg); }
  50%  { transform: translate(70px, -10px) rotate(-4deg); }
  75%  { transform: translate(30px, 20px) rotate(10deg); }
  100% { transform: translate(0, 0) rotate(-8deg); }
}
@keyframes wingFlap {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.85); }
}

/* ============ BUTTERFLIES ============ */
.butterfly {
  position: absolute;
  width: 60px;
  height: 48px;
  color: var(--primary);
  opacity: 0.55;
  pointer-events: none;
  animation: butterflyFly 12s ease-in-out infinite, wingFlap 0.6s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(184, 134, 11, 0.45));
  z-index: 1;
}
.butterfly-1 { top: 12%; left: 8%; width: 70px; height: 56px; animation-duration: 14s, 0.55s; }
.butterfly-2 { top: 22%; right: 10%; width: 50px; height: 40px; color: var(--flag-yellow); opacity: 0.7; animation-duration: 11s, 0.5s; animation-delay: -3s, 0s; }
.butterfly-3 { bottom: 18%; left: 14%; width: 56px; height: 44px; color: var(--flag-red); opacity: 0.55; animation-duration: 16s, 0.65s; animation-delay: -6s, -0.1s; }
.butterfly-4 { bottom: 25%; right: 16%; width: 64px; height: 52px; color: var(--gold-light); opacity: 0.6; animation-duration: 13s, 0.58s; animation-delay: -2s, -0.2s; }
.butterfly-5 { top: 50%; left: 4%; width: 44px; height: 36px; color: var(--flag-blue); opacity: 0.5; animation-duration: 15s, 0.62s; animation-delay: -4s, -0.05s; }

/* ============ POLYGON SECTION ============ */
.polygon {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at top, rgba(130, 71, 229, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(255, 0, 122, 0.12), transparent 60%),
    #0a0a14;
  color: #e6e6f2;
  overflow: hidden;
  border-top: 1px solid rgba(130, 71, 229, 0.25);
  border-bottom: 1px solid rgba(130, 71, 229, 0.25);
}
.polygon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(130, 71, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 71, 229, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.butterfly-pg-1 { top: 8%; left: 5%; color: #8247e5; opacity: 0.55; animation-duration: 16s, 0.6s; }
.butterfly-pg-2 { bottom: 10%; right: 6%; color: #ff007a; opacity: 0.5; animation-duration: 14s, 0.55s; animation-delay: -5s, -0.1s; width: 70px; height: 56px; }

.polygon-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.polygon-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8247e5, #b388ff);
  box-shadow: 0 0 18px rgba(130, 71, 229, 0.7);
}
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: #1fbf75;
  text-shadow: 0 0 12px rgba(31, 191, 117, 0.5);
}

.polygon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.polygon-card {
  background: rgba(15, 12, 28, 0.85);
  border: 1px solid rgba(130, 71, 229, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.polygon-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #b388ff;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 16px rgba(179, 136, 255, 0.4);
}

.polygon-list { display: flex; flex-direction: column; }
.polygon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(130, 71, 229, 0.18);
}
.polygon-row:last-child { border-bottom: none; }
.polygon-row dt { color: #a8a8c2; font-size: 0.95rem; }
.polygon-row dd {
  font-family: var(--font-mono);
  color: #f0f0ff;
  font-weight: 600;
  text-align: right;
  font-size: 0.92rem;
}

.polygon-ca {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.polygon-ca-label { color: #a8a8c2; font-size: 0.85rem; }

.ca-polygon {
  background: rgba(20, 16, 36, 0.9);
  border: 1px solid rgba(130, 71, 229, 0.4);
  color: #b388ff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ca-polygon:hover {
  border-color: #b388ff;
  box-shadow: 0 0 0 3px rgba(130, 71, 229, 0.15);
}
.ca-polygon-text {
  word-break: break-all;
  text-align: left;
  flex: 1;
  color: #d0c4ff;
}
.ca-copy-text, .ca-copied-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(130, 71, 229, 0.5);
  border-radius: 0.35rem;
  flex-shrink: 0;
}
.ca-copied-text {
  display: none;
  color: #1fbf75;
  border-color: rgba(31, 191, 117, 0.5);
}
.ca-polygon.copied .ca-copy-text { display: none; }
.ca-polygon.copied .ca-copied-text { display: inline-block; }

.polygon-desc {
  color: #b8b8d0;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.polygon-actions { display: flex; flex-direction: column; gap: 0.85rem; }

.btn-polygon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-polygon-primary {
  background: rgba(130, 71, 229, 0.18);
  color: #c4a8ff;
  border: 1px solid rgba(130, 71, 229, 0.55);
}
.btn-polygon-primary:hover {
  background: rgba(130, 71, 229, 0.3);
  border-color: #b388ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(130, 71, 229, 0.35);
}
.btn-polygon-sushi {
  background: linear-gradient(90deg, rgba(255, 0, 122, 0.2), rgba(255, 0, 122, 0.12));
  color: #ff5fa0;
  border: 1px solid rgba(255, 0, 122, 0.55);
}
.btn-polygon-sushi:hover {
  background: linear-gradient(90deg, rgba(255, 0, 122, 0.32), rgba(255, 0, 122, 0.2));
  border-color: #ff007a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 122, 0.4);
}
.btn-polygon-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(130, 71, 229, 0.3);
  border-radius: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: #a8a8c2;
  background: rgba(15, 12, 28, 0.5);
}
.btn-polygon-tags .dot-sep { color: #8247e5; }

/* ============ HOW TO BUY ============ */
.how-to-buy {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at top left, rgba(31, 191, 117, 0.12), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(255, 220, 0, 0.08), transparent 55%),
    #0a0e10;
  color: #f0f5f0;
  overflow: hidden;
  border-top: 1px solid rgba(31, 191, 117, 0.2);
  border-bottom: 1px solid rgba(31, 191, 117, 0.2);
}
.butterfly-htb-1 { top: 10%; right: 8%; color: #1fbf75; opacity: 0.55; animation-duration: 15s, 0.55s; }
.butterfly-htb-2 { bottom: 12%; left: 6%; color: #ffd700; opacity: 0.5; animation-duration: 13s, 0.6s; animation-delay: -4s, -0.1s; width: 64px; height: 52px; }

.htb-head { margin-bottom: 3rem; }
.htb-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: #1fbf75;
  text-shadow: 0 0 14px rgba(31, 191, 117, 0.6);
  margin-bottom: 1rem;
}
.htb-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.htb-line-1 { color: #f5f5f5; }
.htb-line-2 { color: #f5f5f5; }
.htb-accent {
  color: #ffd700;
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.45);
  animation: tagPulse 3s ease-in-out infinite;
}

.htb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.htb-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: rgba(12, 18, 14, 0.85);
  border: 1px solid rgba(31, 191, 117, 0.22);
  border-radius: 0.85rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.htb-step:hover {
  border-color: rgba(31, 191, 117, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 191, 117, 0.15);
}

.htb-num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #1fbf75;
  color: #1fbf75;
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(31, 191, 117, 0.08);
  box-shadow: 0 0 18px rgba(31, 191, 117, 0.25);
}
.htb-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}
.htb-body p {
  color: #a8b3aa;
  font-size: 0.92rem;
  line-height: 1.65;
}

.htb-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.btn-htb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem;
  background: #1fbf75;
  color: #06170d;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  border-radius: 0.75rem;
  box-shadow: 0 0 28px rgba(31, 191, 117, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-htb:hover {
  background: #25d987;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(31, 191, 117, 0.65);
}

/* ============ RESPONSIVE ============ */
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
  .hero-cta { flex-direction: row; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .dist-checks { grid-template-columns: 1fr 1fr; }
  .coin-img { width: 16rem; height: 16rem; }
  .chart-wrap iframe { height: 600px; }
}

@media (min-width: 768px) {
  .header-inner { padding: 0.85rem 1.5rem; gap: 1rem; }
  .nav-desktop { display: flex; gap: 1rem; font-size: 0.92rem; }
  .nav-toggle { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .token-grid { grid-template-columns: repeat(3, 1fr); }
  .coin-img { width: 18rem; height: 18rem; }
  .polygon-grid { grid-template-columns: 1fr 1fr; }
  .htb-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-desktop { gap: 1.75rem; font-size: 1rem; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-coin, .scroll-indicator, .butterfly, .hero-title,
  .hero-title-stripes, .hero-tag, .htb-accent, .ticker-track,
  .hero-banner { animation: none !important; }
  .hero-banner::after { display: none; }
  * { transition-duration: 0.01ms !important; }
}
