/* ═══════════════════════════════════════════════════════════════
   Minelandia — styles.css
   Tema: Survival Gaming | Modo Oscuro profundo + acentos violeta / magenta
═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Fondo y superficies */
  --bg:           #08050F;
  --surface:      #0E0A1C;
  --surface-2:    #130E24;
  --surface-3:    #18132D;

  /* Bordes */
  --border:       #251A42;
  --border-subtle:#160F2F;

  /* Violeta (acento primario) */
  --purple:       #A855F7;
  --purple-dark:  #7C3AED;
  --purple-glow:  rgba(168, 85, 247, 0.22);
  --purple-dim:   rgba(168, 85, 247, 0.08);
  --purple-dim-2: rgba(168, 85, 247, 0.14);

  /* Magenta / Fucsia (acento secundario) */
  --magenta:      #E879F9;
  --magenta-dark: #C026D3;
  --magenta-glow: rgba(232, 121, 249, 0.18);
  --magenta-dim:  rgba(232, 121, 249, 0.07);

  /* Dorado (terciario — economía) */
  --gold:         #F59E0B;
  --gold-dark:    #D97706;
  --gold-glow:    rgba(245, 158, 11, 0.2);
  --gold-dim:     rgba(245, 158, 11, 0.07);
  --gold-dim-2:   rgba(245, 158, 11, 0.12);

  /* Lavanda (recursos — morado claro) */
  --green:        #C084FC;
  --green-dim:    rgba(192, 132, 252, 0.09);

  /* Texto */
  --text:         #E2D9F3;
  --text-2:       #7B6E9E;
  --text-3:       #3E3060;

  /* Tipografía */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-title:   'Rajdhani', 'Trebuchet MS', sans-serif;
  --font-body:    'Exo 2', 'Segoe UI', sans-serif;

  /* Radios */
  --r-sm:   8px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  /* Sombras */
  --shadow:         0 4px 20px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.65);
  --shadow-purple:  0 0 22px rgba(168,85,247,.35), 0 0 55px rgba(168,85,247,.12);
  --shadow-magenta: 0 0 20px rgba(232,121,249,.3),  0 0 50px rgba(232,121,249,.1);
  --shadow-gold:    0 0 20px rgba(245,158,11,.3),   0 0 50px rgba(245,158,11,.1);

  /* Transiciones */
  --t:        .2s cubic-bezier(.4,0,.2,1);
  --t-spring: .35s cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
strong, b { font-weight: 700; font-synthesis: none; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--magenta); }

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 9999;
  padding: .6rem 1.2rem;
  background: var(--purple);
  color: #08050F;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 0 0 var(--r) var(--r);
  transition: top var(--t);
}
.skip-link:focus { top: 0; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ══════════════════════════════════════════════════════════════
   BOTONES
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.6rem;
  border-radius: var(--r-full);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .025em;
  border: none;
  cursor: pointer;
  transition: transform var(--t-spring), box-shadow var(--t), background-color var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.btn:active { transform: scale(.97) !important; }

/* Primario violeta */
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  color: #fff;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  transform: translateX(-150%);
  transition: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--purple) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover::before {
  transform: translateX(150%);
  transition: transform .55s ease;
}

.btn-sm { padding: .5rem 1.1rem; font-size: .875rem; }

/* Copiar IP */
.btn-copy {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  padding: .9rem 1.4rem;
  gap: .8rem;
}
.btn-copy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--purple-dim);
  opacity: 0;
  transition: opacity var(--t);
}
.btn-copy:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}
.btn-copy:hover::after { opacity: 1; }

.btn-copy .btn-ip-text {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: .95rem;
  letter-spacing: .06em;
  position: relative;
  z-index: 1;
}
.btn-copy .btn-copy-label {
  font-size: .72rem;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  background: var(--border);
  color: var(--text-2);
  border-radius: var(--r-full);
  transition: background var(--t), color var(--t);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.btn-copy .icon { position: relative; z-index: 1; flex-shrink: 0; }

.btn-copy:hover .btn-copy-label {
  background: var(--purple);
  color: #fff;
}
.btn-copy.copied {
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.btn-copy.copied::after { opacity: 1; }
.btn-copy.copied .btn-copy-label {
  background: var(--purple);
  color: #fff;
}
.btn-copy--lg { padding: 1.05rem 1.75rem; font-size: 1.05rem; }
.btn-copy--lg .btn-ip-text { font-size: 1rem; }

/* Tienda */
.btn-store {
  background: var(--surface-2);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,.25);
}
.btn-store:hover {
  background: var(--gold-dim-2);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Wiki */
.btn-wiki {
  background: var(--surface-2);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-wiki:hover {
  background: var(--purple-dim);
  border-color: rgba(168,85,247,.4);
  color: var(--purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}

/* ══════════════════════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════════════════════ */
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-logo-wrap {
  margin-bottom: 1.75rem;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,.3);
  animation: logoRing 3.5s ease-in-out infinite;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(232,121,249,.12);
  animation: logoRing 3.5s ease-in-out infinite .6s;
}
@keyframes logoRing {
  0%, 100% { opacity: .45; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}
.hero-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 28px rgba(168,85,247,.5));
  animation: logoFloat 5.5s ease-in-out infinite;
  will-change: transform;
  position: relative;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0);    filter: drop-shadow(0 0 22px rgba(168,85,247,.45)); }
  50%       { transform: translateY(-11px); filter: drop-shadow(0 0 40px rgba(232,121,249,.65)); }
}

.cta-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  position: relative;
  filter: drop-shadow(0 0 18px rgba(168,85,247,.35));
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  padding-block: 1.25rem;
  transition: background-color .35s ease, backdrop-filter .35s ease,
              -webkit-backdrop-filter .35s ease, padding-block .35s ease,
              border-bottom-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background-color: rgba(8, 5, 15, .9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding-block: .85rem;
  border-bottom-color: var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.nav-logo { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-inline-start: auto;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .9rem;
  border-radius: var(--r);
  font-family: var(--font-title);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--t), background-color var(--t);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: .9rem;
  right: .9rem;
  height: 1.5px;
  background: var(--purple);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: center;
}
.nav-link:hover { color: var(--text); background-color: var(--surface-2); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link--insta:hover { color: #E879F9; }
.nav-link--insta:hover::after { background: #E879F9; }

.nav-link--store {
  background: rgba(245,158,11,.1);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,.28);
  font-weight: 700;
}
.nav-link--store:hover {
  background: rgba(245,158,11,.18);
  color: var(--gold);
  border-color: rgba(245,158,11,.55);
  box-shadow: 0 0 14px rgba(245,158,11,.18);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: .5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color var(--t);
}
.hamburger:hover { border-color: var(--purple); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), background-color var(--t);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--purple); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--purple); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 8rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(60deg, rgba(168,85,247,.055) 1px, transparent 1px),
    linear-gradient(-60deg, rgba(168,85,247,.035) 1px, transparent 1px);
  background-size: 38px 66px;
  mask-image: radial-gradient(ellipse 75% 90% at 25% 50%, rgba(0,0,0,.9) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 25% 50%, rgba(0,0,0,.9) 0%, transparent 70%);
}

.hero-bg::after {
  content: 'MINELANDIA';
  position: absolute;
  bottom: -2%;
  right: -3%;
  font-family: var(--font-display);
  font-size: clamp(70px, 16vw, 260px);
  letter-spacing: .06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(168,85,247,.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.glow-primary {
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(168,85,247,.18) 0%, transparent 60%);
  top: -420px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
}
.glow-secondary {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,121,249,.1) 0%, transparent 65%);
  bottom: -200px;
  right: -100px;
  filter: blur(90px);
}
.glow-tertiary {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  filter: blur(80px);
}

/* Píxeles flotantes — bloques estilo Minecraft */
.voxel-float {
  position: absolute;
  border: 1.5px solid rgba(168,85,247,.28);
  background: linear-gradient(135deg, rgba(168,85,247,.08), rgba(168,85,247,.02));
  animation: vfloat 7s ease-in-out infinite;
  will-change: transform, opacity;
  border-radius: 3px;
}
.v1 { width: 28px; height: 28px; top: 16%; left: 7%;   animation-duration: 7s;  animation-delay: 0s;    }
.v2 { width: 16px; height: 16px; top: 32%; left: 13%;  animation-duration: 5s;  animation-delay: -1.5s; border-color: rgba(232,121,249,.3); background: rgba(232,121,249,.03); }
.v3 { width: 44px; height: 44px; top: 18%; right: 9%;  animation-duration: 9s;  animation-delay: -.8s;  }
.v4 { width: 20px; height: 20px; top: 58%; right: 16%; animation-duration: 6s;  animation-delay: -2s;   border-color: rgba(245,158,11,.25); background: rgba(245,158,11,.025); }
.v5 { width: 12px; height: 12px; bottom: 28%; left: 22%; animation-duration: 8s; animation-delay: -3.5s; }
.v6 { width: 36px; height: 36px; bottom: 18%; right: 28%; animation-duration: 10s; animation-delay: -1s; border-color: rgba(168,85,247,.12); }
.v7 { width: 22px; height: 22px; top: 45%; left: 4%;   animation-duration: 6.5s; animation-delay: -2.8s; border-color: rgba(232,121,249,.2); background: rgba(232,121,249,.025); }

@keyframes vfloat {
  0%, 100% { transform: translateY(0) rotate(0deg);      opacity: .45; }
  50%       { transform: translateY(-16px) rotate(6deg); opacity: 1; }
}

/* Contenido del hero — split layout */
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 1140px;
  margin-inline: auto;
}

.hero-text { text-align: left; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-visual-rings {
  position: absolute;
  inset: -60px;
  pointer-events: none;
}
.hvr {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,.18);
  animation: hvrPulse 4s ease-in-out infinite;
}
.hvr-1 { inset: 0;      animation-delay: 0s; }
.hvr-2 { inset: -24px;  animation-delay: .9s; border-color: rgba(232,121,249,.1); }
.hvr-3 { inset: -52px;  animation-delay: 1.8s; border-color: rgba(168,85,247,.06); }
@keyframes hvrPulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.04); }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem 1.1rem;
  background: var(--purple-dim);
  border: 1px solid rgba(168,85,247,.3);
  border-radius: var(--r-full);
  font-family: var(--font-title);
  font-size: .82rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(168,85,247,.08), inset 0 1px 0 rgba(168,85,247,.14);
  animation: badgeGlow 3.5s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 14px rgba(168,85,247,.08), inset 0 1px 0 rgba(168,85,247,.14); }
  50%       { box-shadow: 0 0 30px rgba(168,85,247,.24), inset 0 1px 0 rgba(168,85,247,.22); }
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  animation: badgePulse 2.2s ease-in-out infinite;
  will-change: box-shadow, opacity;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(168,85,247,.6); }
  60%       { opacity: .8; box-shadow: 0 0 0 7px rgba(168,85,247,0); }
}

/* Título */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 11rem);
  line-height: .9;
  letter-spacing: .015em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.title-accent {
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 55%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  filter: drop-shadow(0 0 32px rgba(168,85,247,.55));
}

/* Subtítulo */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding: .28rem .75rem;
  border-radius: var(--r-full);
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.platform-badge--java {
  background: var(--purple-dim);
  color: var(--purple);
  border: 1px solid rgba(168,85,247,.22);
}
.platform-badge--bedrock {
  background: rgba(167,139,250,.08);
  color: #A78BFA;
  border: 1px solid rgba(167,139,250,.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: flex-start;
}
.hero-hint {
  font-size: .78rem;
  color: var(--text-3);
  letter-spacing: .03em;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   STATUS SECTION
══════════════════════════════════════════════════════════════ */
.status-section {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  padding-bottom: 4rem;
}

.status-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 2rem 1.25rem 2.5rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(168,85,247,.04) inset;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.status-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--purple-dark));
  box-shadow: 0 0 18px rgba(168,85,247,.7);
  animation: statusBarPulse 2.5s ease-in-out infinite;
}
@keyframes statusBarPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(168,85,247,.5); }
  50%       { opacity: .8; box-shadow: 0 0 26px rgba(168,85,247,.85); }
}

.status-online-group {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
  min-width: 180px;
}
.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  animation: statusPulse 2s ease-out infinite;
  flex-shrink: 0;
}
.pulse-dot.offline {
  background: #EF4444;
  animation: none;
  box-shadow: none;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0   rgba(168,85,247,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(168,85,247,0);  }
  100% { box-shadow: 0 0 0 0   rgba(168,85,247,0);  }
}
.status-label {
  font-family: var(--font-title);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.status-divider {
  width: 1px;
  height: 2.2rem;
  background: var(--border);
  flex-shrink: 0;
}
.status-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding-inline: 1.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--text);
  letter-spacing: .04em;
  line-height: 1;
}
.stat-num--sm { font-size: 1.4rem; }
.stat-sep { color: var(--text-3); margin-inline: .1em; font-size: 1.4rem; }
.stat-lbl {
  font-size: .68rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-title);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════════════════════════ */
.features-section { padding-block: 5rem 6rem; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: .75rem;
}
.section-kicker::before,
.section-kicker::after {
  content: '';
  width: 32px;
  height: 1px;
  flex-shrink: 0;
}
.section-kicker::before {
  background: linear-gradient(90deg, transparent, rgba(168,85,247,.6));
}
.section-kicker::after {
  background: linear-gradient(270deg, transparent, rgba(168,85,247,.6));
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .9rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.75;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Feature cards */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-spring), border-color var(--t), box-shadow var(--t);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0), transparent);
  transition: background .4s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    108deg,
    transparent 0%,
    rgba(255,255,255,.025) 40%,
    rgba(255,255,255,.06) 50%,
    rgba(255,255,255,.025) 60%,
    transparent 100%
  );
  transform: skewX(-12deg);
  transition: left .7s ease;
  pointer-events: none;
}
.feature-card:hover::after { left: 150%; }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,85,247,.3);
  box-shadow: 0 24px 48px rgba(0,0,0,.55), 0 0 40px rgba(168,85,247,.08);
}
.feature-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(168,85,247,.55), transparent);
}

/* Variantes de color en cards */
.feature-card--purple:hover {
  border-color: rgba(168,85,247,.35);
  box-shadow: 0 24px 48px rgba(0,0,0,.5), 0 0 35px rgba(168,85,247,.09);
}
.feature-card--purple:hover::before {
  background: linear-gradient(90deg, transparent, rgba(168,85,247,.55), transparent);
}
.feature-card--gold:hover {
  border-color: rgba(245,158,11,.3);
  box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 0 30px rgba(245,158,11,.07);
}
.feature-card--gold:hover::before {
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.45), transparent);
}
.feature-card--magenta:hover {
  border-color: rgba(232,121,249,.3);
  box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 0 30px rgba(232,121,249,.07);
}
.feature-card--magenta:hover::before {
  background: linear-gradient(90deg, transparent, rgba(232,121,249,.45), transparent);
}
.feature-card--green:hover {
  border-color: rgba(192,132,252,.3);
  box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 0 30px rgba(192,132,252,.07);
}
.feature-card--green:hover::before {
  background: linear-gradient(90deg, transparent, rgba(192,132,252,.45), transparent);
}

/* Iconos */
.feat-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--r);
  margin-bottom: 1.25rem;
  transition: box-shadow var(--t), transform var(--t-spring);
}
.feature-card:hover .feat-icon { transform: scale(1.08); }

.feat-icon--purple { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(168,85,247,.18); }
.feature-card:hover .feat-icon--purple { box-shadow: 0 0 0 6px rgba(168,85,247,.08); }
.feat-icon--gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,158,11,.18); }
.feature-card:hover .feat-icon--gold { box-shadow: 0 0 0 6px rgba(245,158,11,.08); }
.feat-icon--magenta { background: var(--magenta-dim); color: var(--magenta); border: 1px solid rgba(232,121,249,.18); }
.feature-card:hover .feat-icon--magenta { box-shadow: 0 0 0 6px rgba(232,121,249,.08); }
.feat-icon--blue { background: rgba(167,139,250,.08); color: #A78BFA; border: 1px solid rgba(167,139,250,.18); }
.feature-card:hover .feat-icon--blue { box-shadow: 0 0 0 6px rgba(167,139,250,.07); }
.feat-icon--green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(192,132,252,.18); }
.feature-card:hover .feat-icon--green { box-shadow: 0 0 0 6px rgba(192,132,252,.07); }

/* Badges */
.feat-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  margin-bottom: .75rem;
}
.feat-badge--purple { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(168,85,247,.22); }
.feat-badge--gold   { background: var(--gold-dim);   color: var(--gold);   border: 1px solid rgba(245,158,11,.22); }
.feat-badge--magenta { background: var(--magenta-dim); color: var(--magenta); border: 1px solid rgba(232,121,249,.22); }
.feat-badge--blue   { background: rgba(167,139,250,.08); color: #A78BFA; border: 1px solid rgba(167,139,250,.22); }
.feat-badge--green  { background: var(--green-dim); color: var(--green); border: 1px solid rgba(192,132,252,.22); }

.feat-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .65rem;
  letter-spacing: .01em;
  transition: color var(--t);
}
.feature-card:hover .feat-title { color: #fff; }
.feat-desc {
  font-size: .93rem;
  color: var(--text-2);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════════ */
.about-section { padding-block: 4rem 5rem; }

.about-inner {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 3.5rem 3rem;
  overflow: hidden;
}

.about-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(168,85,247,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 100%, rgba(232,121,249,.06) 0%, transparent 65%);
}
.about-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,.018) 1px, transparent 1px);
  background-size: 36px 36px;
}

.about-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative; z-index: 1;
}

.about-text p { font-size: .97rem; color: var(--text-2); line-height: 1.85; margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 0; }
.about-text strong { color: var(--text); }

.about-stats-row {
  display: flex; align-items: center; gap: 0;
  margin-top: 1.75rem;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; width: fit-content;
}
.about-stat { display: flex; flex-direction: column; align-items: center; gap: .1rem; padding: .75rem 1.1rem; }
.about-stat strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); line-height: 1; letter-spacing: .02em; }
.about-stat span { font-family: var(--font-title); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.about-stat-sep { width: 1px; height: 2rem; background: var(--border); flex-shrink: 0; }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.about-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.4rem 1.25rem;
  position: relative; overflow: hidden;
  transition: transform var(--t-spring), border-color var(--t), box-shadow var(--t);
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ac, rgba(168,85,247,.45)), transparent);
  opacity: 0; transition: opacity .35s ease;
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.4); }
.about-card:hover::before { opacity: 1; }

.about-card--purple { --ac: rgba(168,85,247,.55); }
.about-card--purple:hover { border-color: rgba(168,85,247,.28); }
.about-card--magenta { --ac: rgba(232,121,249,.5); }
.about-card--magenta:hover { border-color: rgba(232,121,249,.28); }
.about-card--blue { --ac: rgba(167,139,250,.5); }
.about-card--blue:hover { border-color: rgba(167,139,250,.28); }
.about-card--gold { --ac: rgba(245,158,11,.5); }
.about-card--gold:hover { border-color: rgba(245,158,11,.28); }

.about-card-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r); margin-bottom: .9rem; }
.about-card--purple .about-card-icon  { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(168,85,247,.22); }
.about-card--magenta .about-card-icon { background: var(--magenta-dim); color: var(--magenta); border: 1px solid rgba(232,121,249,.22); }
.about-card--blue .about-card-icon    { background: rgba(167,139,250,.08); color: #A78BFA; border: 1px solid rgba(167,139,250,.22); }
.about-card--gold .about-card-icon    { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,158,11,.22); }

.about-card-title { font-family: var(--font-title); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; letter-spacing: .01em; }
.about-card-desc { font-size: .83rem; color: var(--text-2); line-height: 1.65; }

@media (max-width: 900px) {
  /* Hero split → columna única */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-platforms { justify-content: center; }
  .hero-badge { margin-inline: auto; }
  .hero-visual { order: -1; }
  .hero-logo-img { width: 140px; height: 140px; }
  /* About */
  .about-inner { padding: 2.5rem 1.75rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats-row { width: 100%; justify-content: space-between; }
}
@media (max-width: 480px) { .about-cards { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   CONTRIBUIDORES
══════════════════════════════════════════════════════════════ */
.contrib-section { padding-block: 5rem; position: relative; }

/* Etiqueta de bloque */
.contrib-block-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,.07);
  border: 1px solid rgba(245,158,11,.22);
  border-radius: var(--r-full);
  padding: .32rem 1rem;
  margin-bottom: 2rem;
}
.contrib-block-label--builders {
  color: var(--purple);
  background: var(--purple-dim);
  border-color: rgba(168,85,247,.22);
}

/* ── Pódium 1er puesto ── */
.supporter-podium {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ── Cards ── */
.supporter-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: transform var(--t-spring), box-shadow var(--t), border-color var(--t);
}

/* 1er puesto */
.supporter-card--first {
  max-width: 300px;
  width: 100%;
  border-color: rgba(245,158,11,.38);
  box-shadow: 0 0 50px rgba(245,158,11,.18), 0 0 100px rgba(245,158,11,.07);
  padding-top: 2.5rem;
}
.supporter-card--first:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 80px rgba(245,158,11,.3), 0 0 140px rgba(245,158,11,.12);
}

/* Aura dorada pulsante */
.supporter-glow-ring {
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--r-xl) + 10px);
  background:
    radial-gradient(ellipse 90% 45% at 50% 0%,   rgba(252,211,77,.55) 0%, transparent 68%),
    radial-gradient(ellipse 90% 45% at 50% 100%, rgba(245,158,11,.38) 0%, transparent 68%),
    radial-gradient(ellipse 55% 55% at 50% 50%,  rgba(245,158,11,.07) 0%, transparent 75%);
  filter: blur(4px);
  animation: goldAura 3s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
.supporter-card--first > *:not(.supporter-glow-ring):not(.supporter-shine) { position: relative; z-index: 1; }
@keyframes goldAura {
  from { opacity: .6;  transform: scale(.96); }
  to   { opacity: 1;   transform: scale(1.04); }
}

/* Brillo barrido */
.supporter-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,220,60,.1) 50%, transparent 65%);
  animation: shineSweep 3.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes shineSweep {
  0%, 100% { transform: translateX(-160%); }
  60%       { transform: translateX(160%); }
}

/* Corona */
.supporter-crown {
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(245,158,11,.8));
  margin-bottom: .6rem;
  animation: crownBob 2.8s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes crownBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-5px) rotate(3deg); }
}

/* Badge de rango */
.supporter-rank-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  font-family: var(--font-display);
  letter-spacing: .02em;
  border-radius: var(--r-full);
  padding: .1rem .65rem;
  font-size: 1.1rem;
  z-index: 3;
}
.supporter-rank-badge--1 {
  background: linear-gradient(135deg, #D97706, #FBBF24, #F59E0B);
  color: #1a0800;
  font-size: 1.3rem;
  box-shadow: 0 0 18px rgba(245,158,11,.6), 0 2px 6px rgba(0,0,0,.4);
  animation: badgeGlowGold 2.5s ease-in-out infinite;
}
@keyframes badgeGlowGold {
  0%, 100% { box-shadow: 0 0 14px rgba(245,158,11,.55); }
  50%       { box-shadow: 0 0 28px rgba(245,158,11,.9); }
}
.supporter-rank-badge--2 {
  background: linear-gradient(135deg, #6B7280, #D1D5DB, #9CA3AF);
  color: #111;
  box-shadow: 0 0 10px rgba(209,213,219,.3);
}
.supporter-rank-badge--3 {
  background: linear-gradient(135deg, #92400E, #D97706, #B45309);
  color: #fef3c7;
  box-shadow: 0 0 10px rgba(180,83,9,.35);
}
.supporter-rank-badge--4 {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  font-size: .95rem;
  box-shadow: 0 0 10px rgba(168,85,247,.3);
}

/* Avatares */
.supporter-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.supporter-avatar {
  display: block;
  border-radius: var(--r);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.supporter-avatar.img-error { display: none; }

.avatar-fallback {
  display: grid;
  place-items: center;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .02em;
}
.sa-lg { width: 112px; height: 112px; }
.sa-lg .avatar-fallback { width: 112px; height: 112px; font-size: 3rem; }
.sa-md { width: 80px; height: 80px; }
.sa-md .avatar-fallback { width: 80px; height: 80px; }

.af--gold   { background: linear-gradient(135deg, #78350F, #D97706); color: #FDE68A; border: 2px solid rgba(245,158,11,.45); box-shadow: 0 0 24px rgba(245,158,11,.35); }
.af--silver { background: linear-gradient(135deg, #374151, #9CA3AF); color: #F9FAFB; border: 2px solid rgba(209,213,219,.35); }
.af--bronze { background: linear-gradient(135deg, #451a03, #B45309); color: #FEF3C7; border: 2px solid rgba(180,83,9,.35); }
.af--purple { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); color: #EDE9FE; border: 2px solid rgba(168,85,247,.35); box-shadow: 0 0 16px rgba(168,85,247,.2); }

/* Bordes en imagen según rango */
.supporter-card--first  .supporter-avatar { border: 2px solid rgba(245,158,11,.55); box-shadow: 0 0 28px rgba(245,158,11,.45); }
.supporter-card--second .supporter-avatar { border: 2px solid rgba(209,213,219,.4);  box-shadow: 0 0 18px rgba(209,213,219,.25); }
.supporter-card--third  .supporter-avatar { border: 2px solid rgba(180,83,9,.45);   box-shadow: 0 0 18px rgba(180,83,9,.3); }
.supporter-card--fourth .supporter-avatar { border: 2px solid rgba(168,85,247,.35); box-shadow: 0 0 14px rgba(168,85,247,.25); }

/* Nombre */
.supporter-name {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
  letter-spacing: .015em;
}
.supporter-card--first .supporter-name { font-size: 1.2rem; }

/* Título / subtítulo */
.supporter-title-tag {
  font-family: var(--font-title);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.supporter-desc {
  font-size: .81rem;
  color: rgba(220, 210, 240, 0.78);
  line-height: 1.65;
  margin-top: .8rem;
  max-width: 230px;
  margin-inline: auto;
  font-style: italic;
}

.supporter-title-tag--gold   { color: rgba(245,158,11,.85); }
.supporter-title-tag--silver { color: rgba(209,213,219,.75); }
.supporter-title-tag--bronze { color: rgba(205,124,50,.8); }
.supporter-title-tag--purple { color: rgba(168,85,247,.8); }

/* Hover para 2°, 3°, 4° */
.supporter-card--second:hover { transform: translateY(-5px); border-color: rgba(209,213,219,.3); box-shadow: 0 12px 40px rgba(209,213,219,.1); }
.supporter-card--third:hover  { transform: translateY(-5px); border-color: rgba(180,83,9,.35);   box-shadow: 0 12px 40px rgba(180,83,9,.12); }
.supporter-card--fourth:hover { transform: translateY(-5px); border-color: rgba(168,85,247,.3);  box-shadow: 0 12px 40px rgba(168,85,247,.1); }

/* Row 2°-4° */
.supporters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 820px;
  margin-inline: auto;
}

/* ── Builders ── */
.builders-block { margin-top: 4rem; }
.builders-subtitle {
  font-size: .9rem;
  color: var(--text-2);
  margin-bottom: 1.75rem;
  margin-top: -.75rem;
}

.builders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 700px;
  margin-inline: auto;
}
.builder-card {
  background: var(--surface);
  border: 1px solid rgba(168,85,247,.2);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t-spring);
}
.builder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--magenta));
}
.builder-card:hover {
  border-color: rgba(168,85,247,.38);
  box-shadow: 0 10px 36px rgba(168,85,247,.12);
  transform: translateY(-5px);
}
.builder-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: .85rem;
}
.builder-avatar {
  display: block;
  border-radius: var(--r);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border: 2px solid rgba(168,85,247,.3);
  box-shadow: 0 0 16px rgba(168,85,247,.22);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.builder-avatar.img-error { display: none; }
.builder-avatar-wrap { width: 72px; height: 72px; }
.builder-avatar-wrap .avatar-fallback { width: 72px; height: 72px; font-size: 1.7rem; }
.builder-name {
  font-family: var(--font-title);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .45rem;
}
.builder-role {
  display: inline-block;
  font-family: var(--font-title);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-dim);
  border: 1px solid rgba(168,85,247,.22);
  border-radius: var(--r-full);
  padding: .16rem .7rem;
}
.builder-desc {
  font-size: .78rem;
  color: rgba(220, 210, 240, 0.72);
  line-height: 1.6;
  margin-top: .7rem;
  font-style: italic;
}
.builder-period {
  display: inline-block;
  margin-top: .55rem;
  font-family: var(--font-title);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(168,85,247,.65);
}

@media (max-width: 700px) {
  .supporters-row { grid-template-columns: 1fr; }
  .builders-grid  { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.cta-section { padding-block: 5rem 7rem; }

.cta-inner {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(168,85,247,.18) !important;
  border-radius: var(--r-2xl);
  padding: 4.5rem 3rem;
  text-align: center;
  overflow: hidden;
  transition: border-color .4s ease, box-shadow .4s ease;
}
.cta-inner:hover {
  border-color: rgba(168,85,247,.32) !important;
  box-shadow: 0 0 70px rgba(168,85,247,.07);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 50% 105%, rgba(168,85,247,.16) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 15% 80%, rgba(232,121,249,.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 85% 80%, rgba(124,58,237,.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(168,85,247,.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 55% 55% at 50% 110%, rgba(0,0,0,.45) 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at 50% 110%, rgba(0,0,0,.45) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: .95;
  color: var(--text);
  margin-bottom: 1.1rem;
  position: relative;
}
.cta-sub { font-size: 1.1rem; color: var(--text-2); margin-bottom: 2.5rem; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; position: relative; }

/* Redes sociales */
.cta-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 2.25rem;
  position: relative;
  padding-top: 1.5rem;
}
.cta-socials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--border);
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-family: var(--font-title);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--t), border-color var(--t), background-color var(--t), transform var(--t-spring);
}
.social-link:hover {
  color: var(--purple);
  border-color: rgba(168,85,247,.35);
  background: var(--purple-dim);
  transform: translateY(-2px);
}
.social-link--insta:hover {
  color: var(--magenta);
  border-color: rgba(232,121,249,.35);
  background: var(--magenta-dim);
}
.social-link--twitter:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
}
.social-link--discord:hover {
  color: #fff;
  border-color: rgba(88,101,242,.5);
  background: rgba(88,101,242,.15);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid transparent;
  border-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(168,85,247,.35) 30%,
    rgba(232,121,249,.2) 65%,
    transparent 100%
  ) 1;
}

/* ══════════════════════════════════════════════════════════════
   WIKI SECTION
══════════════════════════════════════════════════════════════ */
.wiki-section { padding-block: 5rem 6rem; }

/* ══════════════════════════════════════════════════════════════
   WIKI — Rediseño sidebar
══════════════════════════════════════════════════════════════ */

/* Layout sidebar + contenido */
.wiki-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.wiki-panels { flex: 1; min-width: 0; }

/* Sidebar de tabs */
.wiki-tabs {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  width: 195px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}

.wiki-tab {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  border-radius: var(--r-lg);
  border: none;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-title);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: color var(--t), background-color var(--t), box-shadow var(--t), transform var(--t);
}
.wiki-tab svg { flex-shrink: 0; opacity: .65; transition: opacity var(--t); }
.wiki-tab:hover {
  color: var(--text);
  background: rgba(168,85,247,.08);
  transform: translateX(3px);
}
.wiki-tab.active {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(168,85,247,.38), inset 0 1px 0 rgba(255,255,255,.1);
  transform: translateX(3px);
}
.wiki-tab.active svg { opacity: 1; }

/* Panels */
.wiki-panel { display: none; }
.wiki-panel.active { display: block; animation: wikiIn .22s ease; }
@keyframes wikiIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Grid "Cómo unirse" */
.wiki-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.wiki-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.wiki-card:hover { transform: translateY(-3px); }
.wiki-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.wiki-card--java::before { background: linear-gradient(90deg, var(--purple), var(--magenta)); }
.wiki-card--java { border-color: rgba(168,85,247,.2); }
.wiki-card--java:hover { border-color: rgba(168,85,247,.4); box-shadow: 0 12px 40px rgba(168,85,247,.12); }
.wiki-card--bedrock::before { background: linear-gradient(90deg, #A78BFA, #7C3AED); }
.wiki-card--bedrock { border-color: rgba(167,139,250,.2); }
.wiki-card--bedrock:hover { border-color: rgba(167,139,250,.4); box-shadow: 0 12px 40px rgba(124,58,237,.12); }

.wiki-card-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.wiki-card-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--purple-dim);
  color: var(--purple);
  border: 1px solid rgba(168,85,247,.18);
  flex-shrink: 0;
}
.wiki-card--bedrock .wiki-card-icon {
  background: rgba(167,139,250,.08);
  color: #A78BFA;
  border-color: rgba(167,139,250,.18);
}
.wiki-card-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.wiki-card-sub {
  font-size: .77rem;
  color: var(--text-3);
  font-family: var(--font-title);
  letter-spacing: .04em;
  margin-top: .15rem;
}

/* Pasos numerados */
.wiki-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.wiki-steps li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.wiki-steps li strong { color: var(--text); }
.wiki-steps li code {
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  background: rgba(168,85,247,.12);
  color: #C4B5FD;
  padding: .1em .45em;
  border-radius: 4px;
  border: 1px solid rgba(168,85,247,.22);
  white-space: nowrap;
}
.step-num {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  font-family: var(--font-title);
  font-size: .68rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .12rem;
  box-shadow: 0 2px 8px rgba(168,85,247,.35);
}

/* Tip */
.wiki-tip {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .85rem 1.2rem;
  background: rgba(168,85,247,.05);
  border: 1px solid rgba(168,85,247,.16);
  border-left: 3px solid var(--purple);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-size: .87rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-top: 1rem;
}
.wiki-tip svg { color: var(--purple); flex-shrink: 0; margin-top: .15rem; }
.wiki-tip code {
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  background: rgba(168,85,247,.12);
  color: #C4B5FD;
  padding: .08em .4em;
  border-radius: 4px;
}

/* Grid de comandos */
.wiki-cmd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wiki-cmd-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.wiki-cmd-group:hover {
  border-color: rgba(168,85,247,.25);
  box-shadow: 0 6px 24px rgba(168,85,247,.06);
}

.wiki-cmd-group-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  padding: .75rem 1.1rem;
  background: linear-gradient(90deg, rgba(168,85,247,.1), transparent);
  border-bottom: 1px solid var(--border);
}
.wiki-cmd-group-title svg { opacity: .8; }

.cmd-list { display: flex; flex-direction: column; padding: .4rem; }

.cmd-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: .6rem;
  padding: .4rem .65rem;
  border-radius: var(--r-sm);
  transition: background-color var(--t);
}
.cmd-row:hover { background: rgba(168,85,247,.06); }
.cmd-row code {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: .75rem;
  color: #C4B5FD;
  background: rgba(168,85,247,.12);
  padding: .18em .55em;
  border-radius: 4px;
  border: 1px solid rgba(168,85,247,.2);
  white-space: nowrap;
}
.cmd-row span {
  font-size: .81rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* Intro de sección */
.wiki-parcelas-intro {
  background: rgba(168,85,247,.05);
  border: 1px solid rgba(168,85,247,.15);
  border-left: 3px solid var(--purple);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: .9rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: .93rem;
  color: var(--text-2);
  line-height: 1.7;
}
.wiki-parcelas-intro strong { color: var(--text); }

/* Economía — cards con acento de color */
.wiki-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.wiki-eco-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.wiki-eco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
}
.wiki-eco-card:nth-child(1)::before { background: linear-gradient(90deg, var(--gold), #FCD34D); }
.wiki-eco-card:nth-child(2)::before { background: linear-gradient(90deg, var(--magenta), var(--purple)); }
.wiki-eco-card:nth-child(3)::before { background: linear-gradient(90deg, var(--purple), #A78BFA); }
.wiki-eco-card:nth-child(1) { border-color: rgba(245,158,11,.18); }
.wiki-eco-card:nth-child(2) { border-color: rgba(232,121,249,.18); }
.wiki-eco-card:nth-child(3) { border-color: rgba(168,85,247,.18); }
.wiki-eco-card:nth-child(1):hover { border-color: rgba(245,158,11,.38); box-shadow: 0 8px 32px rgba(245,158,11,.08); transform: translateY(-4px); }
.wiki-eco-card:nth-child(2):hover { border-color: rgba(232,121,249,.38); box-shadow: 0 8px 32px rgba(232,121,249,.08); transform: translateY(-4px); }
.wiki-eco-card:nth-child(3):hover { border-color: rgba(168,85,247,.38); box-shadow: 0 8px 32px rgba(168,85,247,.08); transform: translateY(-4px); }

.wiki-eco-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--r);
  margin-bottom: .8rem;
}
.wiki-eco-card:nth-child(1) .wiki-eco-icon { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,158,11,.2); }
.wiki-eco-card:nth-child(2) .wiki-eco-icon { background: var(--magenta-dim); color: var(--magenta); border: 1px solid rgba(232,121,249,.2); }
.wiki-eco-card:nth-child(3) .wiki-eco-icon { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(168,85,247,.2); }

.wiki-eco-card h3 {
  font-family: var(--font-title);
  font-size: .93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .7rem;
}
.wiki-eco-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .38rem;
}
.wiki-eco-list li {
  font-size: .83rem;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.wiki-eco-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  font-size: .65rem;
  top: .22em;
  opacity: .7;
}
.wiki-eco-card:nth-child(1) .wiki-eco-list li::before { color: var(--gold); }
.wiki-eco-card:nth-child(2) .wiki-eco-list li::before { color: var(--magenta); }
.wiki-eco-card:nth-child(3) .wiki-eco-list li::before { color: var(--purple); }
.wiki-eco-list li code {
  font-family: 'Courier New', monospace;
  font-size: .76rem;
  color: #C4B5FD;
  background: rgba(168,85,247,.1);
  padding: .05em .35em;
  border-radius: 3px;
}

@media (max-width: 960px) {
  .wiki-layout { flex-direction: column; }
  .wiki-tabs {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    border-radius: var(--r-lg);
    padding: .4rem;
  }
  .wiki-tab {
    flex: 1;
    min-width: 110px;
    justify-content: center;
    transform: none !important;
  }
  .wiki-eco-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .wiki-grid, .wiki-cmd-grid { grid-template-columns: 1fr; }
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-block: 4rem;
  align-items: flex-start;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-tagline {
  font-size: .9rem;
  color: var(--text-2);
  margin-top: .9rem;
  line-height: 1.65;
  max-width: 230px;
}
.footer-tagline strong { color: var(--text); }

.footer-socials { display: flex; gap: .5rem; margin-top: 1.1rem; flex-wrap: wrap; }
.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-2);
  transition: color var(--t), border-color var(--t), transform var(--t-spring), box-shadow var(--t), background-color var(--t);
}
.footer-socials a:hover {
  color: var(--purple);
  border-color: rgba(168,85,247,.4);
  background: var(--purple-dim);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(168,85,247,.18);
}

.footer-nav { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.footer-col-title {
  font-family: var(--font-title);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .9rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .9rem; color: var(--text-2); transition: color var(--t); }
.footer-col a:hover { color: var(--purple); }

.footer-bottom { border-top: 1px solid var(--border-subtle); padding-block: 1.4rem; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .78rem; color: var(--text-3); }

/* ══════════════════════════════════════════════════════════════
   REVEAL (IntersectionObserver)
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ══════════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════════ */
.btn-back-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text-2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t), transform var(--t-spring), color var(--t),
              border-color var(--t), box-shadow var(--t);
  pointer-events: none;
}
.btn-back-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.btn-back-top:hover {
  color: var(--purple);
  border-color: rgba(168,85,247,.45);
  box-shadow: var(--shadow-purple);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════════ */
.sc-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 9000;
  padding: .65rem 1.4rem;
  background: var(--surface-3);
  border: 1px solid rgba(168,85,247,.3);
  border-radius: var(--r-full);
  font-family: var(--font-title);
  font-size: .88rem;
  font-weight: 600;
  color: var(--purple);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), var(--shadow-purple);
}
.sc-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(8, 5, 15, .97);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: .75rem;
    gap: .2rem;
    margin-inline-start: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,.6);
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; }
}

@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
  .status-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
  }
  .status-divider { display: none; }
  .status-stat { align-items: flex-start; padding-inline: 0; }
  .hero-title { font-size: clamp(3.8rem, 18vw, 6rem); }
  .cta-inner { padding: 3rem 1.5rem; }
  .footer-inner { gap: 2rem; }
  .footer-nav { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-copy--lg, .btn-store, .btn-wiki { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .about-inner { padding: 2rem 1.25rem; }
}
