/* ============================================================
   GetGenLife — Sistema de diseño "Clean / editorial"
   Blanco, aire, monocromo + un acento. Sobrio y premium.
   ============================================================ */

:root {
  /* Fondo / superficies */
  --bg:        #ffffff;
  --bg-soft:   #f6f7f8;
  --bg-panel:  #ffffff;
  --bg-ink:    #0b0c0e;   /* secciones oscuras puntuales */

  /* Tinta */
  --ink:       #0a0a0b;
  --ink-2:     #23262b;
  --muted:     #616a75;
  --muted-2:   #98a0aa;

  /* Líneas */
  --line:      #eaecef;
  --line-2:    #dbdee3;

  /* Acento (verde vitalidad, uso comedido) */
  --accent:    #0aa06a;
  --accent-ink:#067a4f;
  --accent-soft:#e8f6ef;

  /* Señales de dato */
  --pos:  #0aa06a;
  --warn: #d8892b;
  --neg:  #d64545;

  /* Sombra suave (nada de glow) */
  --shadow-sm: 0 1px 2px rgba(16,24,40,.05);
  --shadow:    0 12px 30px -14px rgba(16,24,40,.16);
  --shadow-lg: 0 40px 80px -32px rgba(16,24,40,.24);

  /* Tipografía */
  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Ritmo */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: #0a0a0b; color: #fff; }

/* Utilidades */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.accent-text { color: var(--accent-ink); }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; color: var(--muted);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Botones — estilo sobrio (negro sólido / contorno) */
.btn {
  --pad: 12px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); background: #000; box-shadow: var(--shadow); }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line-2); }
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--accent-ink); }
.btn-lg { --pad: 15px 28px; font-size: 16px; }

/* Chips */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.dot-live { box-shadow: 0 0 0 0 rgba(10,160,106,.5); animation: livePulse 2.2s infinite; }
@keyframes livePulse { 70% { box-shadow: 0 0 0 6px rgba(10,160,106,0); } 100% { box-shadow: 0 0 0 0 rgba(10,160,106,0); } }

/* Reveal (solo si JS activo; nunca esconde contenido si algo falla) */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .06s; }
[data-reveal-delay="2"] { transition-delay: .12s; }
[data-reveal-delay="3"] { transition-delay: .18s; }
[data-reveal-delay="4"] { transition-delay: .24s; }

/* Compat: clases antiguas del panel → acento plano y limpio */
.gem-text, .gold-text { color: var(--accent-ink); }
