/* ================================================================
   HAUV — Design System v3 (Brandbook oficial)
   Fuente: hauv-design-system/project/colors_and_type.css
   Tipografía: Plus Jakarta Sans + IBM Plex Mono
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=IBM+Plex+Mono:wght@500;600;700&display=swap');

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  /* Colores primarios (Brandbook) */
  --purple:         #4B0082;
  --purple-light:   #8855CC;
  --purple-lighter: #C4A8E8;
  --purple-tint:    rgba(75, 0, 130, 0.08);
  --purple-mid:     rgba(75, 0, 130, 0.15);
  --purple-grad:    linear-gradient(135deg, #4B0082 0%, #8855CC 100%);
  --purple-grad-h:  linear-gradient(135deg, #5A009A 0%, #9966DD 100%);

  /* Dorado (secundario) */
  --gold:           #CCA251;
  --gold-light:     #E8D5A3;
  --gold-dark:      #A07828;
  --gold-tint:      rgba(204, 162, 81, 0.12);
  --gold-grad:      linear-gradient(135deg, #CCA251 0%, #E8D5A3 100%);

  /* Fondos */
  --bg-base:    #F5F5F5;
  --bg-card:    #FFFFFF;
  --bg-section: #FFFFFF;

  /* Texto */
  --text-primary:   #1A1A1A; /* Darkened for better contrast */
  --text-secondary: #555555; /* Darkened for WCAG AA contrast (4.5:1) */
  --text-muted:     #737373; /* Darkened for WCAG AA contrast */

  /* Bordes */
  --border-subtle:  rgba(0, 0, 0, 0.07);
  --border-default: rgba(0, 0, 0, 0.12);
  --border:         rgba(0, 0, 0, 0.12); /* alias de --border-default para compatibilidad */

  /* Semánticos */
  --color-success:     #149E61;
  --color-success-bg:  rgba(20, 158, 97, 0.12);
  --color-error:       #DC2626;
  --color-pending:     #CCA251;
  --color-pending-bg:  rgba(204, 162, 81, 0.15);

  /* Sombras */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.11);
  --shadow-purple: 0 4px 20px rgba(75,0,130,0.25);
  --shadow-gold:   0 4px 16px rgba(204,162,81,0.25);

  /* Radios */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-pill: 9999px;

  /* Tipografía */
  --font-body:  'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono:  'IBM Plex Mono', monospace;

  /* Layout */
  --max-w: 1200px;

  /* Transitions */
  --ease: all 180ms ease-out;
}

/* ── Top Notice Bar ────────────────────────────────────────── */
.top-notice-bar {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

/* ── Nav ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Topbar ───────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 14px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 32px; width: auto; }
.brand .tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--r-md);
  transition: var(--ease);
}
.menu a:hover,
.menu a.active {
  color: var(--purple);
  background: var(--purple-tint);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
}
.lang-btn {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
  padding: 2px 4px;
}
.lang-btn.active { color: var(--purple); }
.lang-switcher .sep { color: var(--border-default); font-size: 10px; }

@media (max-width: 768px) {
  .menu, .lang-switcher { display: none; }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn.primary {
  background: var(--purple-grad);
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn.primary:hover {
  background: var(--purple-grad-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(75,0,130,0.4);
  overflow: hidden;
}
.btn.primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.6s;
}
.btn.primary:hover::before {
  left: 100%;
}
.btn.primary:active { transform: scale(0.97); }

.btn.outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn.outline:hover {
  background: var(--purple-tint);
}

.btn.ghost {
  background: var(--purple-tint);
  color: var(--purple);
}
.btn.ghost:hover {
  background: var(--purple-mid);
}

.btn.gold-btn {
  background: var(--gold-grad);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn.neutral {
  background: #F5F5F5;
  color: var(--text-primary);
}
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-full { width: 100%; }

/* ── Badges / Kicker ──────────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-tint);
  border: 1px solid var(--purple-mid);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(75,0,130,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(75,0,130,0); }
  100% { box-shadow: 0 0 0 0 rgba(75,0,130,0); }
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-sm);
}
.badge.pending  { background: var(--color-pending-bg);  color: var(--gold-dark); }
.badge.success  { background: var(--color-success-bg);  color: #065F46; }
.badge.error    { background: rgba(220,38,38,0.10);      color: var(--color-error); }
.badge.purple   { background: var(--purple-tint);        color: var(--purple); }

/* ── Section helpers ──────────────────────────────────────────── */
.section { padding: 80px 0; }
.section.bg-white  { background: var(--bg-card); }
.section.bg-gray   { background: var(--bg-base); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-header p {
  margin-top: 12px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
}
.section-header.center p { margin-left: auto; margin-right: auto; }

.cta-center { text-align: center; margin-top: 40px; }

/* ── Cards (base) ─────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  transition: var(--ease);
}
.card:hover {
  border-color: var(--border-default);
  box-shadow: var(--shadow-md);
}

/* ── Divider ──────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 12px 0;
}

/* ========================================================
   SPLASH SCREEN
   ======================================================== */
body.splash-active { overflow: hidden; }

#splash-screen {
  position: fixed;
  inset: 0;
  background: #0A0A0B;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 1.2s ease;
}
#splash-screen.hide {
  opacity: 0;
  pointer-events: none;
}
#splash-content {
  text-align: center;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
#splash-content.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}
#splash-text {
  font-size: 64px;
  letter-spacing: 12px;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 20px;
}
#splash-text span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  animation: letterIn 0.6s forwards;
}
#splash-text span:nth-child(1) { animation-delay: 0.3s; }
#splash-text span:nth-child(2) { animation-delay: 0.6s; }
#splash-text span:nth-child(3) { animation-delay: 0.9s; }
#splash-text span:nth-child(4) { animation-delay: 1.2s; }
@keyframes letterIn {
  to { opacity: 1; transform: translateY(0); }
}
.splash-logo {
  width: 140px;
  opacity: 0;
  animation: logoIn 1.2s ease forwards;
  animation-delay: 1.8s;
}
@keyframes logoIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
.logo-shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.logo-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -150%;
  width: 200%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,215,0,0.7) 50%, transparent 65%);
  transform: skewX(-25deg);
  opacity: 0;
  animation: shineMove 1.6s ease forwards;
  animation-delay: 1.9s;
}
@keyframes shineMove {
  0%   { left: -150%; opacity: 0; }
  10%  { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
  padding: 80px 0 60px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75,0,130,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
}
/* Global accent colors for headings */
.accent-purple { color: var(--purple); }
.accent-gold   { color: var(--gold); }
.hero-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-person-img {
  position: absolute;
  bottom: -60px;
  right: -20%;
  width: 140%;
  max-width: 550px;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  animation: floatHuman 7s ease-in-out infinite alternate;
}
@keyframes floatHuman {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* Hero Phone Mockup */
.phone-frame {
  background: #1a1a1a;
  padding: 14px;
  border-radius: 48px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
  max-width: 320px;
  width: 100%;
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
.phone-frame:hover {
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0 50px 100px rgba(0,0,0,0.15);
}

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

.phone-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #1a1a1a;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 2;
}

/* App mockup card inside phone */
.app-card {
  background: #fff;
  border-radius: 36px;
  padding: 32px 24px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.app-card-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.app-card-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 14px;
}
.app-card .badge { margin-bottom: 20px; }
.app-card .divider { margin: 16px 0; }
.app-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 12px;
}
.app-row span { font-size: 14px; color: var(--text-secondary); }
.app-row strong {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}
.app-row-sub {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -6px;
  margin-bottom: 10px;
}
.app-row-sub .val-purple {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
}
.app-card-id {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}
.app-card-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content h1 { font-size: 36px; }
  .hero-content .lead { max-width: 100%; }
  .btn-row { justify-content: center; }
  .hero-visual { justify-content: center; }
}

/* ========================================================
   SECTION 2 — VALOR
   ======================================================== */
.valor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.valor-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.valor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(75,0,130,0.08);
  border-color: rgba(75,0,130,0.15);
}
.valor-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--purple-tint);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--ease);
}
.valor-card:hover .valor-icon {
  background: var(--purple);
  color: #fff;
  transform: rotate(5deg) scale(1.1);
}
.valor-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.valor-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
@media (max-width: 900px) { .valor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .valor-grid { grid-template-columns: 1fr; } }

/* ========================================================
   SECTION 3 — SERVICIOS
   ======================================================== */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.servicio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  cursor: pointer;
  transition: var(--ease);
}
.servicio-card:hover {
  border-color: rgba(204,162,81,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.servicio-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--gold-tint);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.servicio-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.servicio-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
@media (max-width: 900px) { .servicios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .servicios-grid { grid-template-columns: 1fr; } }

/* ========================================================
   SECTION 4 — ACTIVOS
   ======================================================== */
.activos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.activo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: var(--ease);
}
.activo-card:hover {
  border-color: var(--border-default);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.activo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.activo-ticker {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-sm);
  letter-spacing: 0.04em;
}
.activo-ticker.usdt {
  background: rgba(20,158,97,0.12);
  color: #0A7A4A;
}
.activo-ticker.xaut {
  background: var(--gold-tint);
  color: var(--gold-dark);
}
.activo-tipo {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.activo-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.3;
}
.activo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.activo-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 9px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.activo-features li:last-child { border-bottom: none; }
.activo-features li i { color: var(--color-success); font-size: 13px; }

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

/* ========================================================
   SECTION 5 — CÓMO FUNCIONA
   ======================================================== */
.steps-flow {
  display: flex;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 12px;
  padding: 0 8px;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple-grad);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(75,0,130,0.28);
}
.trust-visual {
  display: flex;
  justify-content: center;
  animation: imageFloat 8s ease-in-out infinite;
}
.trust-visual img {
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  max-width: 100%;
  transition: transform 0.5s var(--ease);
}
.trust-visual:hover img {
  transform: scale(1.02);
}
@keyframes imageFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.step-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.step-body p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.step-connector {
  flex: 0 0 32px;
  height: 2px;
  background: linear-gradient(to right, var(--purple-lighter), var(--gold));
  margin-top: 22px;
  opacity: 0.35;
}
.frase-clave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px auto 0;
  padding: 18px 28px;
  max-width: 560px;
  background: var(--purple-tint);
  border: 1px solid var(--purple-mid);
  border-radius: var(--r-lg);
  font-size: 15px;
  font-weight: 600;
  color: var(--purple);
}
.frase-clave i { color: var(--color-success); font-size: 18px; }

@media (max-width: 760px) {
  .steps-flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .step-item {
    flex-direction: row;
    text-align: left;
    gap: 14px;
    padding: 12px 0;
    flex: unset;
    width: 100%;
  }
  .step-body { text-align: left; }
  .step-connector {
    width: 2px;
    height: 24px;
    flex: 0 0 24px;
    margin: 0 0 0 21px;
    background: linear-gradient(to bottom, var(--purple-lighter), var(--gold));
  }
}

/* ========================================================
   SECTION 6 — TRANSPARENCIA
   ======================================================== */
.transparencia-block {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: 60px 56px;
}
.transparencia-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.mini-tx {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 20px;
}
.mini-tx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-primary);
  padding: 8px 0;
}
.mini-tx-row .label-sm { color: var(--text-secondary); }
.mini-tx-row .val-mono {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
}
.mini-tx-row.total .val-mono { font-size: 16px; color: var(--text-primary); }
.mini-tx-row .val-gold {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
}

@media (max-width: 800px) {
  .transparencia-block {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
}

/* ========================================================
   SECTION 7 — CONFIANZA
   ======================================================== */
.confianza-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.confianza-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--ease);
}
.confianza-item:hover {
  border-color: rgba(75,0,130,0.2);
  background: var(--purple-tint);
}
.confianza-item i { color: var(--purple); font-size: 16px; flex-shrink: 0; }
@media (max-width: 540px) { .confianza-grid { grid-template-columns: 1fr; } }

/* ========================================================
   SECTION 8 — CONÓCENOS
   ======================================================== */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: stretch;
}
.nosotros-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nosotros-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 12px 0 20px;
  max-width: 420px;
}
.nosotros-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}
.nosotros-visual img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 800px) {
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========================================================
   SECTION 9 — ATENCIÓN
   ======================================================== */
.atencion-block {
  text-align: center;
  padding: 70px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  max-width: 640px;
  margin: 0 auto;
}
.atencion-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--purple-grad);
  color: #fff;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-purple);
}
.atencion-block h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.atencion-block p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(204,162,81,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 300px;
}
.footer-address {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 300px;
  margin-top: 10px;
}
.footer-address a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-address a:hover {
  color: rgba(255,255,255,0.6);
}

/* ── KYC Tooltip (step 2) ──────────────────────────────────────── */
.kyc-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: inherit;
}
.kyc-tooltip-trigger:hover { color: var(--purple); }
.kyc-tooltip-content {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  padding: 20px;
  max-width: 320px;
  width: 320px;
  max-height: 80vh;
  overflow-y: auto;
  /* left / top set dynamically by JS */
}
.kyc-tooltip-content[hidden] { display: none; }
.step-body { position: relative; }
.kyc-tooltip-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px;
}
.kyc-tooltip-close:hover { color: var(--text-base); }
.kyc-tooltip-content h4 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-base);
}
.kyc-tooltip-content > p {
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.kyc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.kyc-item:last-child { margin-bottom: 0; }
.kyc-badge {
  flex-shrink: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--purple);
  color: #fff;
  padding: 2px 6px;
  border-radius: 5px;
  margin-top: 2px;
}
.kyc-badge.kyb { background: var(--gold-dark); }
.kyc-badge.kyt { background: #1a7a4a; }
.kyc-item strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-base);
  margin-bottom: 2px;
}
.kyc-item p {
  font-size: 9.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ── Página: Conócenos (hauv-info) ─────────────────────────────── */
.info-hero-kicker { margin-bottom: 12px; }
.info-sections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .info-sections-grid { grid-template-columns: 1fr; }
}
.info-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px;
  transition: box-shadow 0.25s;
}
.info-card:hover { box-shadow: var(--shadow-lg); }
.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple-tint);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-base);
}
.info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.info-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
/* Each card spans 2 of 6 columns → same width as 3-column layout */
.info-placeholder-grid > * {
  grid-column: span 2;
}
/* Last 2 cards: shift to center them in the row */
.info-placeholder-grid > *:nth-child(4) {
  grid-column: 2 / 4;
}
.info-placeholder-grid > *:nth-child(5) {
  grid-column: 4 / 6;
}
@media (max-width: 900px) {
  .info-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .info-placeholder-grid { grid-template-columns: 1fr; }
}
.info-placeholder-card {
  background: var(--bg-base);
  border: 2px dashed var(--border-subtle);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  color: var(--text-muted);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.info-placeholder-card:hover {
  border-color: var(--purple-lighter);
  background: var(--purple-tint);
}
.info-placeholder-card i { font-size: 28px; color: var(--purple-lighter); }
.info-placeholder-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.info-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .info-team-grid { grid-template-columns: repeat(2, 1fr); }
}
.info-team-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
}
.info-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--purple-grad);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.info-team-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.info-team-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========================================================
   FLOATING SUPPORT BUTTON
   ======================================================== */
.soporte-flotante {
  position: fixed;
  left: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  background: #ffffff;
  color: var(--text-primary);
  border-radius: var(--r-pill);
  height: 54px;
  width: 54px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 9999;
}
.soporte-flotante:hover { 
  width: 210px; 
  box-shadow: 0 15px 40px rgba(75,0,130,0.15);
  border-color: var(--purple-mid);
}
.icono-soporte {
  min-width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: var(--purple-grad);
  color: #fff;
  border-radius: 50%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.texto-soporte {
  white-space: nowrap;
  opacity: 0;
  margin-right: 16px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.25s ease;
}
.soporte-flotante:hover .texto-soporte { opacity: 1; margin-left: 10px; }

/* ── Buttons App Store ───────────────────────────────────────── */
.app-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.btn-app {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--ease);
}
.btn-app:hover {
  background: #222;
  transform: translateY(-2px);
  border-color: var(--purple-light);
}
.btn-app i { font-size: 24px; }
.btn-app .btn-text { text-align: left; line-height: 1.2; }
.btn-app .btn-text span { display: block; font-size: 10px; opacity: 0.6; }
.btn-app .btn-text strong { display: block; font-size: 15px; }

/* ── Video Section (Vertical Mobile) ────────────────────────── */
.video-feature-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.phone-mockup {
  background: #000;
  border: 12px solid #1a1a1a;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
  aspect-ratio: 9 / 19.5;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
/* Notch/Speaker area */
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 25px;
  background: #1a1a1a;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 2;
}
.phone-mockup video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Since it's vertical now, cover will work well for vertical videos */
}
.video-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-item {
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 15px;
}
.video-item:hover, .video-item.active {
  border-color: var(--purple);
  background: var(--purple-tint);
}
.video-item.active .video-item-icon {
  background: var(--purple);
  color: #fff;
}
.video-item-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.video-item-content h4 { font-size: 14px; margin-bottom: 2px; }
.video-item-content p { font-size: 12px; color: var(--text-secondary); }

/* ── Human/Lifestyle Section ──────────────────────────────────── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}
.lifestyle-card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  height: 450px;
}
.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #fff;
}
.lifestyle-overlay h3 { font-size: 28px; margin-bottom: 12px; }
.lifestyle-overlay p { font-size: 16px; opacity: 0.9; max-width: 80%; }

@media (max-width: 900px) {
  .video-feature-grid, .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-card { height: 350px; }
}

/* .reveal starts visible — GSAP sets opacity/transform via JS.
   If JS fails, content remains fully visible (no opacity:0 trap). */
.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* CSS-only fallback when GSAP is not available */
.reveal.js-ready {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ── Footer Logo Badge ────────────────────────────────────────── */
.footer-logo-box {
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.footer-logo-box img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}
.footer-brand-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}
