@import url('https://fonts.googleapis.com/css2?family=Nosifer&family=Chakra+Petch:wght@500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-void: #0B120D;
  --bg-panel: #16281C;
  --bg-panel-raised: #1D3524;
  --green-neon: #39FF6A;
  --green-lime: #8BFF3C;
  --text-main: #E8FFE0;
  --text-dim: #8FAE94;
  --fire: #FF5A1F;
  --border-scale: rgba(57, 255, 106, 0.25);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-void);
  background-image:
    radial-gradient(ellipse at top, rgba(57,255,106,0.08), transparent 60%),
    repeating-linear-gradient(135deg, rgba(57,255,106,0.02) 0px, rgba(57,255,106,0.02) 2px, transparent 2px, transparent 12px);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

h1, h2, h3, .display {
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-main);
}

.mono { font-family: 'JetBrains Mono', monospace; }

a { color: var(--green-neon); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-scale);
}
.navbar .brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 700; }
.navbar .brand .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-neon);
  box-shadow: 0 0 8px var(--green-neon);
  animation: pulse 1.8s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.navbar nav a { margin-left: 24px; font-size: 14px; color: var(--text-dim); }

/* Hero */
.hero { padding: 100px 0 70px; text-align: center; }
.hero .status {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-scale);
  padding: 6px 16px; border-radius: 3px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--green-neon); margin-bottom: 28px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.hero h1 {
  font-size: 56px; line-height: 1.05; margin: 0 0 20px;
  background: linear-gradient(180deg, var(--text-main) 40%, var(--green-lime));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.sub { color: var(--text-dim); font-size: 18px; max-width: 560px; margin: 0 auto 36px; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 32px;
  font-family: 'Chakra Petch', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  border: none; cursor: pointer; font-size: 15px;
}
.btn-primary { background: var(--green-neon); color: #041006; }
.btn-primary:hover { background: var(--green-lime); text-decoration: none; }
.btn-ghost { background: transparent; border: 1px solid var(--border-scale); color: var(--text-main); margin-left: 12px; }
.btn-ghost:hover { border-color: var(--green-neon); text-decoration: none; }

/* Cards / plates */
.plate {
  background: var(--bg-panel);
  border: 1px solid var(--border-scale);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  padding: 28px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }

.tier-name { font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 15px; text-transform: uppercase; }
.tier-badge {
  display: inline-block; font-size: 11px; padding: 3px 10px; border-radius: 2px; margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
}
.badge-cliente { background: rgba(143,174,148,0.15); color: var(--text-dim); }
.badge-vip { background: rgba(57,255,106,0.15); color: var(--green-neon); }
.badge-super { background: rgba(139,255,60,0.15); color: var(--green-lime); }
.badge-gold { background: rgba(255,90,31,0.15); color: var(--fire); }

section { padding: 20px 0 40px; }
.section-title { font-size: 32px; margin-bottom: 8px; }
.section-sub { color: var(--text-dim); margin-bottom: 40px; }

footer { border-top: 1px solid var(--border-scale); padding: 30px 0; color: var(--text-dim); font-size: 13px; text-align: center; }

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .navbar nav { display: none; }
}

/* Logo animado */
.logo-spin {
  border-radius: 50%;
  animation: none;
  filter: drop-shadow(0 0 6px rgba(57,255,106,0.5));
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-spin { animation: none; }
}

/* ===== Animaciones extra ===== */

/* Fondo con glow en movimiento */
body {
  background-size: 200% 200%;
  animation: bgshift 18s ease-in-out infinite;
}
@keyframes bgshift {
  0%, 100% { background-position: 30% 0%; }
  50% { background-position: 70% 30%; }
}

/* Partículas / chispas flotantes */
.embers { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.ember {
  position: absolute; bottom: -10px; border-radius: 50%;
  background: var(--fire); box-shadow: 0 0 8px var(--fire);
  animation: rise linear infinite;
  opacity: 0;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(var(--drift, 20px)); opacity: 0; }
}

/* Navbar con blur al hacer scroll */
.navbar {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(5,8,6,0.6);
}

/* Botones con barrido de brillo */
.btn { position: relative; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::after { left: 130%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(57,255,106,0.35); }

/* Cards con elevación y glow al hover */
.plate { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.plate:hover {
  transform: translateY(-4px);
  border-color: var(--green-neon);
  box-shadow: 0 12px 30px rgba(57,255,106,0.15);
}

/* Reveal al hacer scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Status del hero con parpadeo de escaneo */
.hero .status {
  position: relative;
  overflow: hidden;
}
.hero .status::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57,255,106,0.25), transparent);
  animation: scan 3s ease-in-out infinite;
}
@keyframes scan {
  0% { left: -50%; }
  100% { left: 150%; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .embers { display: none; }
  .btn::after { display: none; }
  .plate:hover { transform: none; }
  .hero .status::before { display: none; }
}

/* ===== Título derritiéndose ===== */
.melt-title { position: relative; display: inline-block; }
.melt-title .drip {
  position: absolute;
  bottom: -4px;
  width: 8px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, var(--green-lime), var(--green-neon));
  box-shadow: 0 0 6px var(--green-neon);
  transform-origin: top;
  animation: drip 4s ease-in infinite;
}
.melt-title .drip:nth-child(1) { left: 8%;  height: 14px; animation-delay: 0s; }
.melt-title .drip:nth-child(2) { left: 22%; height: 20px; animation-delay: 0.8s; }
.melt-title .drip:nth-child(3) { left: 41%; height: 10px; animation-delay: 1.6s; }
.melt-title .drip:nth-child(4) { left: 58%; height: 24px; animation-delay: 0.4s; }
.melt-title .drip:nth-child(5) { left: 74%; height: 12px; animation-delay: 2.2s; }
.melt-title .drip:nth-child(6) { left: 89%; height: 18px; animation-delay: 1.2s; }

@keyframes drip {
  0%   { transform: scaleY(0.4); opacity: 0; }
  15%  { opacity: 1; }
  70%  { transform: scaleY(1) translateY(0); opacity: 1; }
  100% { transform: scaleY(1.6) translateY(40px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .melt-title .drip { display: none; }
}

/* ===== Título estilo "Ghost" derretido ===== */
.melt-title {
  font-family: 'Nosifer', 'Chakra Petch', sans-serif;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 44px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--green-neon) 0%, var(--green-lime) 45%, var(--fire) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(57,255,106,0.35));
}

/* Badge píldora de estado */
.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-scale);
  padding: 10px 24px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--text-main); background: rgba(15,31,20,0.6);
  backdrop-filter: blur(6px);
}
.status-pill .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-neon); box-shadow: 0 0 8px var(--green-neon);
  animation: pulse 1.8s infinite ease-in-out;
}

/* Canvas de red de partículas */
#particle-net { position: fixed; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  #particle-net { display: none; }
}

/* Título flotando suavemente */
.melt-title {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .melt-title { animation: none; }
}

/* ===== Menú hamburguesa lateral ===== */
.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 30;
}
.burger span {
  display: block; width: 100%; height: 2px; background: var(--text-main);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 11px; }
.burger span:nth-child(3) { top: 22px; }
.burger.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.side-menu {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  background: var(--bg-panel); border-left: 1px solid var(--border-scale);
  z-index: 9999; transition: right 0.35s ease; padding: 90px 24px 24px; pointer-events: auto; overflow-y: auto; -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.side-menu.open { right: 0; }
.side-menu a {
  display: block; padding: 14px 12px; color: var(--text-main);
  border-bottom: 1px solid var(--border-scale); font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase; font-size: 14px; letter-spacing: 0.03em;
}
.side-menu a:hover { color: var(--green-neon); text-decoration: none; background: rgba(57,255,106,0.05); }
.side-menu .btn { display: block; text-align: center; margin-top: 20px; }

.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.overlay.open { opacity: 1; pointer-events: all; }

@media (max-width: 768px) {
  .navbar nav.desktop-nav { display: none; }
  .burger { display: block; }
}

/* ===== Barra de estadísticas ===== */
.stats-bar {
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
  padding: 50px 0; text-align: center;
}
.stat .num {
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 40px;
  background: linear-gradient(135deg, var(--green-neon), var(--green-lime));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .label { color: var(--text-dim); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* Cards de features con ícono */
.feature-card { display: flex; gap: 16px; align-items: flex-start; }
.feature-card .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-scale); border-radius: 10px;
  color: var(--green-neon); font-size: 20px;
}
.feature-card h3 { font-size: 16px; margin: 0 0 6px; }
.feature-card p { color: var(--text-dim); font-size: 14px; margin: 0; }

/* Botón flotante de soporte */
.float-support {
  position: fixed; bottom: 24px; right: 24px; z-index: 15;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green-neon); color: #041006;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 20px rgba(57,255,106,0.4);
  animation: float-btn 3s ease-in-out infinite;
}
@keyframes float-btn { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (prefers-reduced-motion: reduce) {
  .float-support { animation: none; }
}

/* ===== Ajuste: bordes redondeados en vez de cortes diagonales ===== */
.plate {
  clip-path: none;
  border-radius: 16px;
}
.btn {
  clip-path: none;
  border-radius: 10px;
}
.hero .status {
  clip-path: none;
  border-radius: 999px;
}

/* Stats en una sola línea, scrolleable en mobile si hace falta */
.stats-bar {
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 30px;
  padding: 40px 16px;
  -webkit-overflow-scrolling: touch;
}
.stat { flex-shrink: 0; min-width: 90px; }

/* Ajustes mobile generales */
@media (max-width: 768px) {
  .hero { padding: 70px 0 40px; }
  .hero .sub { font-size: 15px; padding: 0 10px; }
  .btn { display: block; margin: 10px auto; width: 80%; text-align: center; }
  .btn-ghost { margin-left: auto; }
  .stat .num { font-size: 30px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .plate { padding: 20px; }
  section { padding: 40px 0; }
  .section-title { font-size: 24px; }
  .float-support { width: 48px; height: 48px; font-size: 20px; bottom: 16px; right: 16px; }
}

/* Dos botones flotantes apilados */
.float-stack { position: fixed; bottom: 24px; right: 24px; z-index: 15; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: float-btn 3s ease-in-out infinite;
}
.float-btn.telegram { background: #229ED9; color: #fff; }
.float-btn.whatsapp { background: #25D366; color: #fff; }
@media (max-width: 768px) {
  .float-stack { bottom: 16px; right: 16px; }
  .float-btn { width: 46px; height: 46px; font-size: 18px; }
}

/* Imagen de fondo circular detrás del título */
.hero { position: relative; }
.hero-bg-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.45;
  filter: blur(0px);
  z-index: -1;
  animation: pulse-slow 6s ease-in-out infinite;
}
@keyframes pulse-slow {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.35; transform: translate(-50%, -50%) scale(1.05); }
}
@media (max-width: 768px) {
  .hero-bg-circle { width: 280px; height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-circle { animation: none; }
}

/* ===== Navbar de lado a lado ===== */
.navbar-wrap {
  width: 100%;
  border-bottom: 1px solid var(--border-scale);
  background: rgba(5,8,6,0.6);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 10;
}
.navbar-wrap .navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  border-bottom: none;
  position: static;
  backdrop-filter: none;
  background: none;
}

/* Hero con bloques de posición libre */
.hero-canvas {
  position: relative;
  min-height: 480px;
}
.hero-canvas .hb {
  position: absolute;
  transform: translate(-50%, 0);
  max-width: 90%;
}
@media (max-width: 768px) {
  .hero-canvas { min-height: 620px; }
}

/* Imagen de fondo del hero responsive (evita distorsión en mobile) */
.hb-logo {
  width: min(160px, 40vw);
  height: min(160px, 40vw);
  border-radius: 32px;
  object-fit: cover;
  opacity: 0.9;
  filter: drop-shadow(0 0 30px rgba(57,255,106,0.35));
  animation: logo-pulse 4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); filter: drop-shadow(0 0 30px rgba(57,255,106,0.35)); }
  50% { transform: translate(-50%, -50%) scale(1.03); filter: drop-shadow(0 0 45px rgba(57,255,106,0.55)); }
}
@media (prefers-reduced-motion: reduce) {
  .hb-logo { animation: none; }
}
@media (max-width: 480px) {
  .hb-logo { width: min(140px, 45vw); height: min(140px, 45vw); }
}

/* En mobile, ignorar posiciones libres y apilar en orden fijo y prolijo */
@media (max-width: 768px) {
  .hero-canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 24px 16px 30px;
  }
  .hero-canvas .hb {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px;
    text-align: center;
  }
  .hero-canvas .hb-logo { order: 0; margin: 0 auto 16px; }
  .hb-order-status   { order: 1; }
  .hb-order-title    { order: 2; }
  .hb-order-subtitle { order: 3; }
  .hb-order-buttons  { order: 4; }
  .hb-order-stats    { order: 5; }
}

/* ===== Auth forms (Breeze) ===== */
.text-input {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-panel-raised);
  border: 1px solid var(--border-scale);
  color: var(--text-main);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
}
.text-input:focus {
  outline: none;
  border-color: var(--green-neon);
}
.input-label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.input-error {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  color: var(--fire);
  font-size: 13px;
}
.auth-status {
  color: var(--green-neon);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ===== Checkout de pago (TecnoPay) ===== */
.checkout-box {
  background: var(--bg-panel-raised);
  border: 1px solid var(--green-neon);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.checkout-qr {
  width: 200px;
  border-radius: 16px;
  padding: 10px;
  background: #fff;
  margin: 0 auto 16px;
  display: block;
}
.checkout-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green-neon);
  background: rgba(57,255,106,0.08);
  border: 1px dashed var(--green-neon);
  border-radius: 12px;
  padding: 12px 20px;
  margin: 10px 0 20px;
}
.checkout-steps {
  text-align: left;
  max-width: 340px;
  margin: 0 auto 16px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.checkout-steps li {
  counter-increment: step;
  position: relative;
  padding: 8px 0 8px 34px;
  color: var(--text-main);
  font-size: 14px;
}
.checkout-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 6px;
  width: 22px; height: 22px;
  background: var(--green-neon);
  color: #041006;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.checkout-note-highlight {
  color: var(--fire);
  font-weight: 700;
}
.checkout-waiting {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-neon);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  margin-top: 10px;
}
.checkout-waiting .spin {
  width: 12px; height: 12px;
  border: 2px solid var(--green-neon);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Fix: la imagen de fondo no debe estirarse al 100% en mobile, mantiene proporción cuadrada */
@media (max-width: 768px) {
  .hero-canvas .hb.hb-logo {
    width: min(140px, 40vw) !important;
    height: min(140px, 40vw) !important;
    max-width: min(140px, 40vw) !important;
  }
}

/* Badge ON/OFF de servicios */
.status-dot-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px;
}
.status-dot-badge .dot-inline { width: 8px; height: 8px; border-radius: 50%; }
.status-on { background: rgba(57,255,106,0.12); color: var(--green-neon); }
.status-on .dot-inline { background: var(--green-neon); box-shadow: 0 0 6px var(--green-neon); }
.status-off { background: rgba(255,90,31,0.12); color: var(--fire); }
.status-off .dot-inline { background: var(--fire); box-shadow: 0 0 6px var(--fire); }

/* ===== Menú mobile simplificado (pantalla completa, sin overlay separado) ===== */
.mobile-menu-full {
  position: fixed;
  inset: 0;
  background: var(--bg-panel);
  z-index: 99999;
  display: none;
  flex-direction: column;
  padding: 80px 24px 24px;
  overflow-y: auto;
}
.mobile-menu-full.open { display: flex; }
.mobile-menu-full a {
  display: block;
  padding: 16px 12px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-scale);
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
}
.mobile-menu-full .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--text-main); font-size: 28px;
  cursor: pointer;
}

/* Logo estilo insignia (cuadrado redondeado con brillo) */
.logo-badge {
  border-radius: 22%;
  box-shadow: 0 0 12px rgba(57,255,106,0.6), 0 0 24px rgba(57,255,106,0.3);
  border: 1px solid rgba(57,255,106,0.5);
}

/* ===== Tarjetas de Reseller ===== */
.reseller-card {
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
}
.reseller-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-neon);
  box-shadow: 0 0 16px rgba(57,255,106,0.4);
  margin: 0 auto 16px;
  display: block;
}
.reseller-icons {
  display: flex; gap: 12px; justify-content: center; margin-top: 16px;
}
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.icon-btn:hover { transform: translateY(-3px); }
.icon-btn.whatsapp { background: #25D366; color: #fff; }
.icon-btn.telegram { background: #229ED9; color: #fff; }
.icon-btn.website { background: var(--bg-panel-raised); color: var(--green-neon); border: 1px solid var(--border-scale); }

.nav-balance {
  font-family: 'JetBrains Mono', monospace;
  color: var(--green-neon);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(57,255,106,0.1);
  border: 1px solid rgba(57,255,106,0.3);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 10px;
}

/* ===== Hero v2 ===== */
.hero-v2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  padding: 20px 0 40px;
  position: relative;
  z-index: 1;
}
.hero-v2-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(57,255,106,0.08);
  border: 1px solid rgba(57,255,106,0.35);
  color: var(--green-neon);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 20px;
}
.hero-v2-badge .dot-inline { width: 7px; height: 7px; border-radius: 50%; background: var(--green-neon); box-shadow: 0 0 6px var(--green-neon); }
.hero-v2-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.hero-v2-title .line1 { display: block; color: var(--text-main); }
.hero-v2-title .line2 { display: block; color: var(--green-neon); text-shadow: 0 0 20px rgba(57,255,106,0.5); }
.hero-v2-sub { color: var(--text-dim); font-size: 16px; max-width: 480px; margin-bottom: 32px; line-height: 1.6; }
.hero-v2-stats { display: flex; gap: 40px; margin-bottom: 32px; padding-top: 24px; border-top: 1px solid var(--border-scale); }
.hero-v2-stat .num { font-family: 'Orbitron', sans-serif; font-size: 28px; font-weight: 800; color: var(--green-neon); }
.hero-v2-stat .label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.hero-v2-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-v2-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 380px; }
.hero-v2-visual img { max-width: 100%; max-height: 420px; border-radius: 20px; object-fit: cover; }
.hero-v2-float {
  position: absolute;
  background: rgba(11,18,13,0.85);
  border: 1px solid rgba(57,255,106,0.35);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-main);
  backdrop-filter: blur(6px);
}
.hero-v2-float.f1 { bottom: 20%; left: -8%; animation: float-box 3.5s ease-in-out infinite; }
.hero-v2-float.f2 { top: 15%; right: -5%; animation: float-box 3.5s ease-in-out infinite 0.6s; }
.hero-v2-float.f3 { bottom: 8%; left: 50%; transform: translateX(-50%); color: var(--green-neon); }

@media (max-width: 900px) {
  .hero-v2 { grid-template-columns: 1fr; padding: 30px 0; }
  .hero-v2-stats { gap: 24px; flex-wrap: wrap; }
  .hero-v2-visual { min-height: 260px; margin-top: 24px; }
  .hero-v2-title, .hero-v2-sub, .hero-v2-stats, .hero-v2-buttons { text-align: center; }
  .hero-v2-stats { justify-content: center; }
  .hero-v2-buttons { justify-content: center; }
  .hero-v2-float.f1, .hero-v2-float.f2 { display: none; }
}

/* ===== Marco de celular con candado ===== */
.phone-frame {
  width: 240px;
  height: 480px;
  border: 3px solid var(--green-neon);
  border-radius: 36px;
  position: relative;
  background-color: var(--bg-panel-raised);
  background-size: contain; background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 0 30px rgba(57,255,106,0.25);
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,13,0.2), rgba(11,18,13,0.75));
}
.phone-lock {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.phone-lock svg { color: var(--green-neon); filter: drop-shadow(0 0 10px rgba(57,255,106,0.7)); }
.phone-lock-text {
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--green-neon);
  font-size: 13px;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .phone-frame { width: 200px; height: 400px; margin: 0 auto; }
}

@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone-frame { animation: float-phone 4.5s ease-in-out infinite; }

@keyframes float-box {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-frame {
  border-radius: 44px;
  border-width: 4px;
}
.phone-island {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
}

.phone-frame {
  border-radius: 44px;
  border-width: 4px;
}
.phone-island {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
}

@media (max-width: 768px) {
  .navbar { flex-wrap: nowrap; gap: 8px; }
  .navbar .brand { font-size: 16px; gap: 8px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex-shrink: 1; }
  .nav-balance { font-size: 11px; padding: 5px 8px; margin: 0 4px; flex-shrink: 0; white-space: nowrap; }
  .burger { flex-shrink: 0; }
}

/* Aprovechar mejor el ancho en pantallas grandes */
@media (min-width: 1400px) {
  .container { max-width: 1400px; }
}
@media (min-width: 1700px) {
  .container { max-width: 1600px; }
}
.phone-frame {
  width: 280px;
  height: 560px;
}
@media (max-width: 900px) {
  .phone-frame { width: 200px; height: 400px; }
}

.hero-badge-text {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #a8e063 35%, #4caf50 55%, #2e7d32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(76,175,80,0.6), 0 0 30px rgba(76,175,80,0.4);
  filter: drop-shadow(0 0 3px #1b5e20);
}
