/*
Theme Name: Oceana FX
Theme URI: https://oceanafxinvest.com
Author: Oceana FX
Author URI: https://oceanafxinvest.com
Description: Tema personalizado para Oceana FX - Algorithmic Investment Fund
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: oceanafx
*/

/* Variables */
:root {
  --bg-deep:      #05080e;
  --bg-dark:      #080d18;
  --bg-card:      #0c1423;
  --bg-card2:     #0f1a2e;
  --teal:         #00d4b8;
  --teal-dark:    #009e89;
  --teal-glow:    rgba(0, 212, 184, 0.18);
  --gold:         #c99b3a;
  --gold-light:   #e8b84b;
  --gold-glow:    rgba(201, 155, 58, 0.18);
  --text:         #e2ede9;
  --text-muted:   #7a9990;
  --border:       rgba(0, 212, 184, 0.12);
  --border-gold:  rgba(201, 155, 58, 0.2);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title span { color: var(--teal); }

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── HEADER / NAV ─────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

#site-header.scrolled {
  background: rgba(5, 8, 14, 0.92);
  backdrop-filter: blur(18px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav-menu a {
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover,
.nav-menu a.active { color: var(--teal); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: 3px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--bg-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  transition: all 0.3s;
}

/* ─── HERO ─────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
/* ─── ENHANCED REVEAL SYSTEM ─────────────────────────────────── */

/* Base reveal — desde abajo (por defecto) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Desde abajo explícito */
.reveal.reveal-up {
  transform: translateY(36px);
}

/* Desde arriba */
.reveal.reveal-down {
  transform: translateY(-20px);
}

/* Desde la izquierda */
.reveal.reveal-left {
  transform: translateX(-40px);
  opacity: 0;
}

/* Desde la derecha */
.reveal.reveal-right {
  transform: translateX(40px);
  opacity: 0;
}

/* Escala — para elementos destacados */
.reveal.reveal-scale {
  transform: scale(0.94);
  opacity: 0;
}

/* Estado visible — igual para todos */
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── SECTION TITLE — línea animada ─────────────────────────── */
.section-title {
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.section-title.visible::after {
  width: 60px;
}

/* ─── STEP CARD — borde superior animado ─────────────────────── */
.step-card {
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  box-shadow: 0 8px 32px rgba(0, 212, 184, 0.1);
}

/* ─── WHY HERO CARD — brillo top border ─────────────────────── */
.why-hero-card {
  transition: box-shadow 0.4s, transform 0.4s;
}
.why-hero-card:hover {
  box-shadow: 0 12px 48px rgba(0, 212, 184, 0.12);
  transform: translateY(-3px);
}

/* ─── AUDIT BADGE — pulso ────────────────────────────────────── */
.audit-badge {
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 155, 58, 0); }
  50% { box-shadow: 0 0 0 6px rgba(201, 155, 58, 0.08); }
}

/* ─── NAV CTA — shimmer on hover ────────────────────────────── */
.nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,184,0.15), transparent);
  transition: left 0.5s;
}
.nav-cta:hover::after {
  left: 150%;
}

/* ─── BTN PRIMARY — shimmer ─────────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::after {
  left: 150%;
}

/* ─── FORM INPUT — focus glow mejorado ──────────────────────── */
.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 212, 184, 0.1), 0 0 12px rgba(0, 212, 184, 0.05);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0, 212, 184, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 155, 58, 0.05) 0%, transparent 60%),
    linear-gradient(160deg, #080d18 0%, #05080e 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 184, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
  background: rgba(0, 212, 184, 0.05);
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-title .highlight {
  color: var(--teal);
  position: relative;
}

.hero-title .gold { color: var(--gold); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--bg-deep);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0, 212, 184, 0.25);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 184, 0.4);
  color: var(--bg-deep);
}

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.15;
  pointer-events: none;
}

/* ─── SECTION BASE ──────────────────────────────── */
section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 184, 0.02) 50%, transparent 100%);
}

/* ─── HOW IT WORKS ──────────────────────────────── */
#como-funciona {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  border-color: var(--teal-dark);
  transform: translateY(-4px);
}

.step-card:hover::before { opacity: 1; }

.step-number {
  font-family: 'Exo 2', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0, 212, 184, 0.08);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.step-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Broker badge */
.broker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  background: rgba(201, 155, 58, 0.04);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.broker-badge {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.broker-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

/* ─── STRATEGIES ────────────────────────────────── */
#estrategias {
  position: relative;
}

.strategies-intro {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.strategies-intro p {
  color: var(--text-muted);
  font-size: 1rem;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.strategy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}

.strategy-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transition: opacity 0.3s;
  opacity: 0;
}

.strategy-card.serena::after  { background: linear-gradient(90deg, #00d4b8, #00a896); }
.strategy-card.arrecife::after { background: linear-gradient(90deg, #c99b3a, #e8b84b); }
.strategy-card.tsunami::after  { background: linear-gradient(90deg, #6e8efb, #a777e3); }

.strategy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 184, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.strategy-card:hover::after { opacity: 1; }

.strategy-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.serena  .strategy-badge { background: rgba(0, 212, 184, 0.12); color: var(--teal); }
.arrecife .strategy-badge { background: rgba(201, 155, 58, 0.12); color: var(--gold); }
.tsunami  .strategy-badge { background: rgba(110, 142, 251, 0.12); color: #8fa8fc; }

.strategy-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.strategy-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  letter-spacing: 0.06em;
}

.strategy-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding: 1.4rem;
  background: rgba(0,0,0,0.25);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.04);
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.metric-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.serena  .metric-value { color: var(--teal); }
.arrecife .metric-value { color: var(--gold); }
.tsunami  .metric-value { color: #8fa8fc; }

.strategy-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.strategy-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.strategy-features li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.fee-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.fee-note strong { color: var(--gold); }

/* ─── RESULTADOS ────────────────────────────────── */
#resultados {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.audit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  background: rgba(201, 155, 58, 0.06);
}

.audit-badge::before {
  content: '✓';
  font-weight: 700;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.perf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s;
}

.perf-card:hover { border-color: var(--teal-dark); }

.perf-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.perf-value.gold { color: var(--gold); }

.perf-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chart-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chart-placeholder svg {
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0; left: 0;
  opacity: 0.4;
}

.chart-placeholder-label {
  position: relative;
  z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}

.chart-icon { font-size: 2.5rem; margin-bottom: 0.75rem; position: relative; z-index: 2; }

.whm-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem 1.8rem;
  background: rgba(0, 212, 184, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.whm-note strong { color: var(--teal); }

/* ─── CONTACT ──────────────────────────────────── */
#contacto {
  position: relative;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.contact-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-bullets li span {
  color: var(--teal);
  font-size: 1.1rem;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 212, 184, 0.08);
}

.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  padding: 1rem;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--bg-deep);
  border: none;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 212, 184, 0.2);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 184, 0.35);
}

.form-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* ─── FOOTER ────────────────────────────────────── */
#site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: var(--bg-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-logo img { height: 44px; }

.footer-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--teal); }

.footer-copy {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(122, 153, 144, 0.6);
  max-width: 600px;
  line-height: 1.5;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .strategies-grid { grid-template-columns: 1fr 1fr; }
  .performance-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 8, 14, 0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-menu.open a {
    font-size: 1.3rem;
    letter-spacing: 0.18em;
  }

  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .strategies-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .performance-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── VT MARKETS LOGO ────────────────────────────────────────── */
.footer-broker { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-broker-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-vtm-logo {
  height: auto;
  max-width: 90px;
  max-height: 36px;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 1;
  filter: brightness(1.8) contrast(1.2);
  transition: filter 0.3s;
}
.footer-vtm-logo:hover { filter: brightness(2.2) contrast(1.3); }

.broker-row-logo { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.broker-vtm-logo {
  height: 28px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 1;
  filter: brightness(1.8) contrast(1.2);
}

/* ─── ABOUT SECTION ──────────────────────────────────────────── */
#sobre-nosotros { background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%); }

.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-values { display: flex; flex-direction: column; gap: 1.5rem; }

.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.about-value h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.about-value p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0,212,184,0.04);
}

.about-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--bg-deep);
  flex-shrink: 0;
}

.about-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.about-role { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; }

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-stat {
  padding: 1.2rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-stat:nth-child(even) { border-right: none; }
.about-stat:nth-last-child(-n+2) { border-bottom: none; }

.about-stat-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal);
}

.about-stat-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

.about-broker-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── FAQ SECTION ────────────────────────────────────────────── */
#faq { }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}

.faq-col { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--teal); }

.faq-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--teal);
  transition: transform 0.3s;
  display: inline-block;
}

.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] { color: var(--teal); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.2rem;
}

.faq-answer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.faq-answer strong { color: var(--text); }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ─── RISK BANNER ────────────────────────────────────────────── */
.risk-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(8, 13, 24, 0.97);
  border-top: 1px solid rgba(201,155,58,0.2);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.risk-banner.visible { transform: translateY(0); }

.risk-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.risk-banner-icon { font-size: 1rem; flex-shrink: 0; }

.risk-banner-inner p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.risk-banner-inner strong { color: var(--gold); }

.risk-banner-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.risk-banner-close:hover { border-color: var(--teal); color: var(--teal); }

/* ─── LEGAL PAGES ────────────────────────────────────────────── */
.legal-page { padding: 8rem 0 5rem; }

.legal-wrap { max-width: 780px; margin: 0 auto; }

.legal-wrap h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin: 2rem 0 0.75rem;
}

.legal-content p, .legal-content li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-content strong { color: var(--text); }
.legal-content a { color: var(--teal); }

.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ─── ONBOARDING PAGE ────────────────────────────────────────── */
.onboarding-page { padding: 8rem 0 5rem; }

.onboarding-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.onboarding-header h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin: 0.75rem 0 1rem;
}

.onboarding-header p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

.onboarding-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }

.ob-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.ob-step:hover { border-color: rgba(0,212,184,0.2); }

.ob-step-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0,212,184,0.03);
}

.ob-step-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.ob-step-header h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.ob-step-time { font-size: 0.78rem; color: var(--text-muted); }

.ob-step-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 2rem;
}

.ob-step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }

.ob-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  counter-reset: ob-counter;
}

.ob-checklist li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  align-items: flex-start;
  counter-increment: ob-counter;
}

.ob-checklist li::before {
  content: counter(ob-counter);
  width: 20px;
  height: 20px;
  background: rgba(0,212,184,0.1);
  border: 1px solid rgba(0,212,184,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.ob-cta { display: inline-block; }

.ob-tip {
  display: flex;
  gap: 0.8rem;
  background: rgba(0,212,184,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ob-tip-icon { font-size: 1.1rem; flex-shrink: 0; }
.ob-tip strong { color: var(--text); display: block; margin-bottom: 0.3rem; }

.ob-broker-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ob-minimums {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem;
}

.ob-minimums-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.ob-minimum-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.ob-minimum-row:last-child { border-bottom: none; }
.ob-minimum-row strong { margin-left: auto; color: var(--text); font-family: 'Exo 2', sans-serif; }

.ob-strategy-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.serena-dot   { background: var(--teal); }
.arrecife-dot { background: var(--gold); }
.tsunami-dot  { background: #8fa8fc; }

.onboarding-cta-wrap {
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.onboarding-cta-wrap h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.onboarding-cta-wrap p { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .ob-step-body { grid-template-columns: 1fr; }
}

/* ─── WHY US SECTION ─────────────────────────────────────────── */
#por-que-nosotros {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.why-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.why-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.why-hero-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(0,212,184,0.25);
  border-radius: 10px;
  padding: 2.2rem 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.why-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.why-hero-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,184,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-hero-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.why-hero-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,155,58,0.1);
  border: 1px solid rgba(201,155,58,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.why-hero-content h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-hero-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 0.75rem;
}

.why-hero-content p:last-child { margin-bottom: 0; }
.why-hero-content strong { color: var(--text); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-card:hover {
  border-color: rgba(0,212,184,0.2);
  transform: translateY(-3px);
}

.why-card-icon { font-size: 1.6rem; }

.why-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.why-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.68;
  flex: 1;
}

.why-vs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.why-vs-them, .why-vs-us {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.why-vs-them { color: var(--text-muted); }
.why-vs-them::before { content: '✗'; color: #ff6b6b; flex-shrink: 0; }
.why-vs-us { color: var(--teal); }
.why-vs-us::before { content: '✓'; flex-shrink: 0; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-hero-card { flex-direction: column; gap: 1rem; }
}

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

/* ─── CINZEL LOGO SYSTEM ─────────────────────────────────────── */
.ofx-nav-logo {
  display: flex !important;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.ofx-nav-icon { display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }
.ofx-nav-topline { width: 22px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.ofx-nav-botline { width: 22px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0.5; }
.ofx-nav-o { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: 0.1em; line-height: 1; }
.ofx-nav-sep { width: 1px; height: 24px; background: rgba(201,155,58,0.25); flex-shrink: 0; }
.ofx-nav-words { display: flex; flex-direction: column; gap: 1px; }
.ofx-nav-name { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; color: var(--text); line-height: 1; }
.ofx-nav-name em { font-style: normal; color: var(--gold); font-weight: 400; }
.ofx-nav-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 0.42rem; font-weight: 600; letter-spacing: 0.25em; color: var(--text-muted); text-transform: uppercase; }

.ofx-footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.ofx-footer-topline { width: 50px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.ofx-footer-botline { width: 50px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0.4; }
.ofx-footer-name { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.2em; color: var(--text); line-height: 1; }
.ofx-footer-name em { font-style: normal; color: var(--gold); font-weight: 400; }
.ofx-footer-tagline { font-family: 'Cinzel', serif; font-size: 0.36rem; font-weight: 400; letter-spacing: 0.4em; color: var(--text-muted); text-transform: uppercase; margin-top: 1px; }

/* ─── ACCESSIBILITY: Screen Reader Text ──────────────────────── */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #000000;
  clip: auto !important;
  clip-path: none;
  color: #ffffff;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 6px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 7px;
  width: auto;
  z-index: 100000;
}

/* ─── LEGAL CHECKBOX ────────────────────────────── */
.form-legal-check { margin-bottom: 1rem; }
.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--teal);
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  -webkit-appearance: checkbox !important;
  appearance: checkbox !important;
}
.checkbox-label a { color: var(--teal); text-decoration: underline; }
.checkbox-label a:hover { color: var(--gold); }
/* ─── SPLASH SCREEN ──────────────────────────────── */
#ofx-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #05080e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.8s;
}
#ofx-splash.ofx-splash-hide { opacity: 0; visibility: hidden; pointer-events: none; }
.ofx-splash-inner { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.ofx-splash-logo { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0; transform: translateY(16px); animation: splash-logo-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards; }
@keyframes splash-logo-in { to { opacity: 1; transform: translateY(0); } }
.ofx-splash-lines { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ofx-splash-line { height: 1px; width: 0; background: linear-gradient(90deg, transparent, #c99b3a, transparent); animation: splash-line-grow 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
.ofx-splash-line.bot { opacity: 0.5; }
@keyframes splash-line-grow { to { width: 220px; } }
.ofx-splash-name { font-family: 'Cinzel', serif; font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 700; letter-spacing: 0.3em; color: #e2ede9; line-height: 1; opacity: 0; animation: splash-name-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards; }
@keyframes splash-name-in { to { opacity: 1; } }
.ofx-splash-name em { font-style: normal; color: #c99b3a; font-weight: 400; }
.ofx-splash-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(0.6rem, 2vw, 0.78rem); font-weight: 400; letter-spacing: 0.5em; text-transform: uppercase; color: #7a9990; opacity: 0; animation: splash-tag-in 0.4s ease 0.3s forwards; }
@keyframes splash-tag-in { to { opacity: 1; } }
.ofx-splash-bar { width: 200px; height: 1px; background: rgba(0,212,184,0.12); border-radius: 1px; overflow: hidden; opacity: 0; animation: splash-bar-appear 0.2s ease 0.2s forwards; }
@keyframes splash-bar-appear { to { opacity: 1; } }
.ofx-splash-progress { height: 100%; width: 0%; background: linear-gradient(90deg, #c99b3a, #00d4b8); border-radius: 1px; animation: splash-progress 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; }
@keyframes splash-progress { to { width: 100%; } }
#ofx-splash::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,184,0.05) 0%, transparent 70%); animation: splash-glow 2.5s ease-in-out infinite alternate; pointer-events: none; }
@keyframes splash-glow { from { transform: scale(0.85); opacity: 0.4; } to { transform: scale(1.15); opacity: 1; } }
body.splash-active { overflow: hidden; -webkit-overflow-scrolling: auto; }


/* ─── ONBOARDING PASO A PASO (Tsunami / Serena) ─────────────────── */

/* Alias para compatibilidad con el nuevo template */
.ob-step-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.ob-step-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ob-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.ob-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.ob-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ob-body strong { color: var(--text); }

.ob-tip {
  display: flex;
  gap: 0.8rem;
  background: rgba(201,155,58,0.05);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
}

.ob-tip-icon { font-size: 1.1rem; flex-shrink: 0; }

.ob-tip strong {
  color: var(--gold);
  display: inline;
}

.ob-tip strong:first-child {
  display: block;
  margin-bottom: 0.3rem;
}

/* Config table */
.config-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.config-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.config-table td {
  padding: 0.7rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,212,184,0.05);
}

.config-table td strong {
  color: var(--teal);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  .ob-body { grid-template-columns: 1fr; }
}

/* Onboarding step screenshots */
.ob-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}


/* ─── NAV DROPDOWN ──────────────────────────────────────────── */
.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 13, 24, 0.97);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0;
  min-width: 220px;
  list-style: none;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(8, 13, 24, 0.97);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  color: var(--teal);
  background: rgba(0,212,184,0.05);
}

.nav-has-dropdown:hover .nav-dropdown {
  display: block;
}