/* ═══════════════════════════════════════════════════════════
   SPORTRADE — Financial Infrastructure
   Estética: banca privada de Nueva York. Navy · Marfil · Oro.
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy-950: #060A14;
  --navy-900: #0A0F1E;
  --navy-800: #101830;
  --navy-700: #1A2440;
  --ivory: #F5F2EA;
  --ivory-dim: #D8D3C4;
  --gold: #C9A96A;
  --gold-bright: #E3C88C;
  --gold-dim: rgba(201, 169, 106, 0.35);
  --green: #3DBE8B;
  --red: #E05C5C;
  --ink: #141824;
  --ink-soft: #4A5065;
  --paper: #F7F5F0;
  --paper-dark: #EFEBE1;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
  --ticker-h: 34px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--navy-900);
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1240px, 92vw); margin: 0 auto; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h2 em { font-style: italic; color: var(--gold); }
h2.light { color: var(--ivory); }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.section-eyebrow.light { color: var(--gold-bright); }
.section-head { max-width: 720px; margin-bottom: 4rem; }
.section-sub { color: var(--ink-soft); margin-top: 1.2rem; font-size: 1.05rem; }

/* ─────────── Botones ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.1rem; font-size: 0.92rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-gold { background: var(--gold); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(201,169,106,0.45); }
.btn-outline { border-color: rgba(245,242,234,0.35); color: var(--ivory); background: rgba(255,255,255,0.02); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-ghost { color: var(--ivory-dim); padding: 0.75rem 1rem; }
.btn-ghost:hover { color: var(--gold-bright); }
.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex; gap: 0.5rem; align-items: center;
  color: var(--ink); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem; margin-top: 1.5rem;
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.text-link:hover { gap: 0.9rem; color: var(--gold); }

/* ─────────── Preloader ─────────── */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--navy-950);
  display: flex; flex-direction: column; gap: 2rem;
  align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-mark { display: flex; align-items: center; gap: 1rem; }
.preloader-letter {
  width: 56px; height: 56px; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--serif); font-size: 1.8rem;
  animation: pulse-border 1.6s ease-in-out infinite;
}
.preloader-word { letter-spacing: 0.42em; font-size: 0.9rem; color: var(--ivory); font-weight: 500; }
.preloader-bar { width: 180px; height: 1px; background: rgba(255,255,255,0.12); overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 40%; background: var(--gold); animation: load-slide 1.2s ease-in-out infinite; }
@keyframes load-slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(450%); } }
@keyframes pulse-border { 0%,100% { box-shadow: 0 0 0 0 rgba(201,169,106,0.4);} 50% { box-shadow: 0 0 0 8px rgba(201,169,106,0);} }

/* ─────────── Ticker ─────────── */
.market-ticker {
  position: fixed; top: 0; left: 0; right: 0; height: var(--ticker-h);
  background: var(--navy-950); border-bottom: 1px solid rgba(201,169,106,0.15);
  z-index: 90; overflow: hidden; display: flex; align-items: center;
  transition: transform 0.4s var(--ease-out);
}
.market-ticker.hidden { transform: translateY(-100%); }
.ticker-track { display: flex; gap: 3rem; white-space: nowrap; animation: ticker-scroll 45s linear infinite; padding-left: 100vw; }
.ticker-track span { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ivory-dim); font-weight: 500; }
.ticker-track b { color: var(--ivory); font-weight: 600; margin: 0 0.35rem; }
.ticker-track .tick-up { color: var(--green); }
.ticker-track .tick-down { color: var(--red); }
@keyframes ticker-scroll { to { transform: translateX(-100%); } }

/* ─────────── Navegación ─────────── */
.nav {
  position: fixed; top: var(--ticker-h); left: 0; right: 0; z-index: 80;
  transition: background 0.4s, box-shadow 0.4s, top 0.4s;
}
.nav.scrolled {
  top: 0;
  background: rgba(6,10,20,0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(201,169,106,0.18);
}
/* backdrop-filter convierte a .nav en containing block de descendientes
   fixed; se desactiva mientras el menú móvil (position:fixed) está abierto */
.nav.menu-open { backdrop-filter: none; background: rgba(6,10,20,0.98); }
.nav-inner {
  width: min(1320px, 94vw); margin: 0 auto; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--serif); font-size: 1.3rem;
  transition: background 0.3s, color 0.3s;
}
.nav-logo:hover .logo-mark { background: var(--gold); color: var(--navy-950); }
.logo-text { display: flex; flex-direction: column; letter-spacing: 0.28em; font-size: 0.82rem; font-weight: 600; color: var(--ivory); }
.logo-text em { font-style: normal; letter-spacing: 0.14em; font-size: 0.55rem; color: var(--gold); font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--ivory-dim); position: relative; padding: 0.4rem 0;
  transition: color 0.3s; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-links .mobile-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

/* ─── Selector de idioma ─── */
.lang-switch {
  display: flex; align-items: center;
  border: 1px solid rgba(245,242,234,0.2); border-radius: 2px; overflow: hidden;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(245,242,234,0.5);
  padding: 0.4rem 0.55rem; transition: color 0.3s, background 0.3s;
}
.lang-btn + .lang-btn { border-left: 1px solid rgba(245,242,234,0.15); }
.lang-btn:hover { color: var(--ivory); background: rgba(255,255,255,0.06); }
.lang-btn.active { background: var(--gold); color: var(--navy-950); }
.lang-switch-mobile { display: none; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--ivory); transition: all 0.3s; }

/* ─────────── Hero ─────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + var(--ticker-h) + 3rem) 0 5rem;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: hero-zoom 18s var(--ease-out) forwards;
  background: var(--navy-800);
}
@keyframes hero-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,10,20,0.96) 0%, rgba(6,10,20,0.82) 42%, rgba(10,15,30,0.45) 75%, rgba(10,15,30,0.55) 100%),
    linear-gradient(to top, var(--navy-900) 0%, transparent 30%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.68rem; letter-spacing: 0.34em; color: var(--gold-bright);
  font-weight: 600; margin-bottom: 2.2rem;
}
.hero-eyebrow .line { width: 48px; height: 1px; background: var(--gold); display: inline-block; }
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.06; letter-spacing: -0.015em;
  margin-bottom: 2rem; color: var(--ivory); font-weight: 300;
}
.hero-line { display: block; overflow: hidden; }
.hero-line span { display: block; transform: translateY(110%); animation: line-up 1.1s var(--ease-out) forwards; }
.hero-line:nth-child(1) span { animation-delay: 0.9s; }
.hero-line:nth-child(2) span { animation-delay: 1.05s; }
.hero-line:nth-child(3) span { animation-delay: 1.2s; }
@keyframes line-up { to { transform: translateY(0); } }
.gold-serif { font-style: italic; color: var(--gold-bright); font-weight: 400; }
.hero-sub { max-width: 560px; color: rgba(245,242,234,0.78); font-size: 1.06rem; font-weight: 300; margin-bottom: 2.6rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4.5rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: 3.5rem;
  border-top: 1px solid rgba(201,169,106,0.25); padding-top: 2rem; width: fit-content;
}
.hstat strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold-bright); font-weight: 400; }
.hstat span { font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(245,242,234,0.6); text-transform: uppercase; }
.reveal-hero { opacity: 0; transform: translateY(24px); animation: hero-fade 1s var(--ease-out) forwards; }
.hero-eyebrow.reveal-hero { animation-delay: 0.7s; }
.hero-sub.reveal-hero { animation-delay: 1.35s; }
.hero-cta.reveal-hero { animation-delay: 1.5s; }
.hero-stats.reveal-hero { animation-delay: 1.7s; }
@keyframes hero-fade { to { opacity: 1; transform: translateY(0); } }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 1px; height: 64px; background: rgba(245,242,234,0.15); overflow: hidden; z-index: 2;
}
.hero-scroll span { display: block; width: 100%; height: 40%; background: var(--gold); animation: scroll-drop 2s ease-in-out infinite; }
@keyframes scroll-drop { 0% { transform: translateY(-100%);} 100% { transform: translateY(260%);} }

/* ─────────── Manifesto ─────────── */
.manifesto { background: var(--paper); padding: 8rem 0; }
.manifesto-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.manifesto-text p:not(.section-eyebrow) { color: var(--ink-soft); margin-top: 1.4rem; font-size: 1.02rem; }
.manifesto-media { position: relative; }
.manifesto-media img { aspect-ratio: 4/5; object-fit: cover; background: var(--paper-dark); }
.manifesto-media figcaption {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); background: rgba(6,10,20,0.55);
  padding: 0.5rem 0.9rem; backdrop-filter: blur(8px);
}

/* ─────────── Soluciones ─────────── */
.solutions { background: var(--paper); padding: 4rem 0 8rem; }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sol-card {
  background: #fff; border: 1px solid rgba(20,24,36,0.08);
  padding: 2.4rem 2.1rem 2.1rem; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
}
.sol-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out);
}
.sol-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px -20px rgba(10,15,30,0.22); border-color: var(--gold-dim); }
.sol-card:hover::before { transform: scaleX(1); }
.sol-num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--serif); font-size: 0.85rem; color: rgba(20,24,36,0.25); font-style: italic; }
.sol-icon { width: 46px; height: 46px; color: var(--gold); margin-bottom: 1.6rem; }
.sol-icon svg { width: 100%; height: 100%; }
.sol-card h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.8rem; }
.sol-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.sol-card ul { list-style: none; }
.sol-card li {
  font-size: 0.8rem; color: var(--ink-soft); padding: 0.45rem 0 0.45rem 1.3rem;
  position: relative; border-top: 1px solid rgba(20,24,36,0.06);
}
.sol-card li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* ─────────── Plataforma ─────────── */
.platform {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(201,169,106,0.08), transparent 60%),
    var(--navy-900);
  padding: 8rem 0;
}
.platform-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }

.dash {
  background: var(--navy-950); border: 1px solid rgba(201,169,106,0.2);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.7);
}
.dash-top {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #FF5F57; } .dash-dot.y { background: #FEBC2E; } .dash-dot.g { background: #28C840; }
.dash-url { margin-left: 1rem; font-size: 0.7rem; color: rgba(245,242,234,0.45); letter-spacing: 0.04em; }
.dash-live { margin-left: auto; display: flex; align-items: center; gap: 0.4rem; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--green); font-weight: 700; }
.dash-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.dash-body { display: grid; grid-template-columns: 150px minmax(0, 1fr); min-height: 460px; }
.dash-main, .kpi, .dash-chart { min-width: 0; }
.dash-side { border-right: 1px solid rgba(255,255,255,0.06); padding: 1.4rem 0; display: flex; flex-direction: column; }
.ds-item {
  padding: 0.7rem 1.4rem; font-size: 0.78rem; color: rgba(245,242,234,0.5);
  cursor: default; border-left: 2px solid transparent; transition: all 0.3s;
}
.ds-item.active { color: var(--gold-bright); border-left-color: var(--gold); background: rgba(201,169,106,0.06); }
.dash-main { padding: 1.4rem; display: flex; flex-direction: column; gap: 1.2rem; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.kpi { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 0.9rem 1rem; border-radius: 6px; }
.kpi span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,242,234,0.45); }
.kpi strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--ivory); margin: 0.2rem 0; font-weight: 400; }
.kpi em { font-style: normal; font-size: 0.68rem; font-weight: 600; }
.kpi .up { color: var(--green); } .kpi .down { color: var(--red); }
.dash-chart { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 6px; padding: 1rem; }
.chart-head { display: flex; justify-content: space-between; font-size: 0.68rem; color: rgba(245,242,234,0.5); margin-bottom: 0.6rem; letter-spacing: 0.05em; }
.chart-legend { display: flex; gap: 0.9rem; align-items: center; }
.chart-legend i { display: inline-block; width: 14px; height: 2px; margin-right: 5px; vertical-align: middle; }
.li-in { background: var(--gold); } .li-out { background: rgba(245,242,234,0.3); }
#cashChart { width: 100%; height: 160px; display: block; }
.dash-rows { display: flex; flex-direction: column; gap: 2px; }
.drow {
  display: grid; grid-template-columns: 34px minmax(0, 1fr) auto auto; gap: 0.9rem; align-items: center;
  padding: 0.55rem 0.7rem; font-size: 0.74rem; border-radius: 5px;
  background: rgba(255,255,255,0.015);
  opacity: 0; transform: translateY(8px); animation: row-in 0.5s var(--ease-out) forwards;
}
@keyframes row-in { to { opacity: 1; transform: translateY(0); } }
.drow .avatar { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 0.6rem; font-weight: 700; background: rgba(201,169,106,0.18); color: var(--gold-bright); }
.drow .who { min-width: 0; }
.drow .who strong { display: block; color: rgba(245,242,234,0.85); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drow .who span { display: block; color: rgba(245,242,234,0.35); font-size: 0.64rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drow .amount { font-weight: 600; white-space: nowrap; }
.drow .amount.pos { color: var(--green); } .drow .amount.neg { color: rgba(245,242,234,0.7); }
.drow .status { font-size: 0.58rem; letter-spacing: 0.12em; padding: 0.25rem 0.55rem; border-radius: 20px; background: rgba(61,190,139,0.12); color: var(--green); font-weight: 700; }

.platform-feats { display: flex; flex-direction: column; gap: 0; }
.pfeat { display: flex; gap: 1.4rem; padding: 1.8rem 0; border-bottom: 1px solid rgba(245,242,234,0.08); }
.pfeat:first-child { padding-top: 0.4rem; }
.pf-num { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.pfeat:hover .pf-num { transform: translateX(6px); }
.pfeat h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--ivory); margin-bottom: 0.4rem; }
.pfeat p { font-size: 0.88rem; color: rgba(245,242,234,0.55); }

/* ─────────── Cifras ─────────── */
.numbers { background: var(--navy-950); padding: 5.5rem 0; border-block: 1px solid rgba(201,169,106,0.12); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.num { text-align: center; position: relative; }
.num:not(:last-child)::after {
  content: ""; position: absolute; right: -1.5rem; top: 15%; height: 70%; width: 1px;
  background: rgba(201,169,106,0.18);
}
.num strong { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 3.6vw, 3.2rem); color: var(--gold-bright); font-weight: 300; margin-bottom: 0.5rem; }
.num span { font-size: 0.78rem; color: rgba(245,242,234,0.55); letter-spacing: 0.04em; }

/* ─────────── Precios ─────────── */
.pricing {
  background:
    radial-gradient(900px 500px at 12% 110%, rgba(201,169,106,0.14), transparent 65%),
    var(--navy-900);
  padding: 8rem 0;
  border-bottom: 1px solid rgba(201,169,106,0.12);
}
.pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.pricing-big {
  text-align: center;
  border: 1px solid rgba(201,169,106,0.3);
  padding: 4.5rem 2rem;
  position: relative;
  background: rgba(6,10,20,0.5);
}
.pricing-big::before, .pricing-big::after {
  content: ""; position: absolute; width: 22px; height: 22px;
  border: 1px solid var(--gold);
}
.pricing-big::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.pricing-big::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.pricing-rate {
  display: flex; align-items: baseline; justify-content: center; gap: 0.6rem;
  font-family: var(--serif); color: var(--gold-bright); font-weight: 300;
  line-height: 1;
}
.pricing-rate em { font-style: normal; font-size: clamp(4.5rem, 9vw, 8rem); }
.pricing-rate i { font-style: normal; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--gold); }
.pricing-tagline {
  display: block; margin-top: 1.6rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; color: rgba(245,242,234,0.75);
}
.pricing-text h2 { color: var(--ivory); }
.pricing-text > p:not(.section-eyebrow) { color: rgba(245,242,234,0.7); margin-top: 1.4rem; }
.pricing-list { list-style: none; margin: 2rem 0 2.4rem; }
.pricing-list li {
  display: flex; gap: 0.9rem; align-items: baseline;
  padding: 0.7rem 0; font-size: 0.94rem; color: rgba(245,242,234,0.8);
  border-top: 1px solid rgba(245,242,234,0.08);
}
.pricing-list li span { color: var(--gold); font-size: 0.85rem; }

/* ─────────── Conversión Express ─────────── */
.express { background: var(--paper); padding: 8rem 0; }
.express-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.express-text > p:not(.section-eyebrow) { color: var(--ink-soft); margin-top: 1.4rem; }
.express-points { margin-top: 2.2rem; display: flex; flex-direction: column; }
.expt { display: flex; gap: 1.3rem; align-items: baseline; padding: 1rem 0; border-top: 1px solid rgba(20,24,36,0.1); }
.expt strong {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: 1.4rem; font-weight: 400; flex-shrink: 0;
}
.expt p { font-size: 0.92rem; color: var(--ink-soft); }
.express-note { margin-top: 1.6rem; font-size: 0.74rem; color: rgba(74,80,101,0.75); max-width: 480px; line-height: 1.6; }

.express-form {
  background: var(--navy-950); border: 1px solid rgba(201,169,106,0.3);
  padding: 2.8rem; position: relative;
  box-shadow: 0 50px 100px -30px rgba(10,15,30,0.45);
}
.express-form::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.express-form h3 { font-size: 1.6rem; color: var(--ivory); margin-bottom: 1.8rem; }
.express-form label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,242,234,0.55); font-weight: 600; }
.express-form input, .express-form select {
  width: 100%; margin-top: 0.45rem; padding: 0.8rem 0.9rem;
  border: 1px solid rgba(245,242,234,0.18); background: rgba(255,255,255,0.04);
  font-family: var(--sans); font-size: 0.9rem; color: var(--ivory);
  border-radius: 2px; transition: border-color 0.3s, box-shadow 0.3s;
}
.express-form select option { background: var(--navy-950); color: var(--ivory); }
.express-form input::placeholder { color: rgba(245,242,234,0.3); }
.express-form input:focus, .express-form select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,106,0.2);
}
.express-form .form-note { color: rgba(245,242,234,0.45); }
.express-form .field-label {
  display: block; font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,242,234,0.55); font-weight: 600;
}
.direction-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 0.45rem;
  border: 1px solid rgba(245,242,234,0.18); border-radius: 2px; overflow: hidden;
}
.dir-btn {
  padding: 0.8rem 0.5rem; background: rgba(255,255,255,0.04); border: none;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.03em; color: rgba(245,242,234,0.6); cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s;
}
.dir-btn + .dir-btn { border-left: 1px solid rgba(245,242,234,0.18); }
.dir-btn:hover { color: var(--ivory); background: rgba(255,255,255,0.08); }
.dir-btn.active { background: var(--gold); color: var(--navy-950); }
.express-form .form-success h3 { color: var(--ivory); }
.express-form .form-success p { color: rgba(245,242,234,0.65); }

.form-error {
  margin-top: 1rem; font-size: 0.78rem; text-align: center;
  color: var(--red); line-height: 1.6;
}
.form-error a { color: var(--gold); text-decoration: underline; }

.footer-contact { margin-top: 1.2rem; }
.footer-contact a { font-size: 0.85rem; color: var(--gold-bright); line-height: 1.9; transition: color 0.3s; }
.footer-contact a:hover { color: var(--ivory); }

/* ─────────── Testimonios ─────────── */
.testimonials { background: var(--paper); padding: 8rem 0; }
.testimonials .section-eyebrow { text-align: center; }
.testi-slider { max-width: 820px; margin: 0 auto; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.7s var(--ease-out); }
.testi { min-width: 100%; padding: 2rem 1rem; text-align: center; }
.testi p {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.45; color: var(--ink); font-weight: 400; margin-bottom: 2.2rem;
}
.testi footer { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testi footer img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); background: var(--paper-dark); }
.testi footer div { text-align: left; }
.testi footer strong { display: block; font-size: 0.9rem; color: var(--ink); }
.testi footer span { font-size: 0.76rem; color: var(--ink-soft); }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }
.testi-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(20,24,36,0.2);
  background: none; cursor: pointer; font-size: 1rem; color: var(--ink);
  transition: all 0.3s;
}
.testi-nav button:hover { background: var(--navy-950); color: var(--gold); border-color: var(--navy-950); }
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dots i { width: 24px; height: 2px; background: rgba(20,24,36,0.15); cursor: pointer; transition: background 0.3s; }
.testi-dots i.active { background: var(--gold); }

/* ─────────── Proceso ─────────── */
.process { background: var(--paper-dark); padding: 8rem 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; counter-reset: step; }
.step { position: relative; padding-top: 1.8rem; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: rgba(20,24,36,0.15); }
.step::after {
  content: ""; position: absolute; top: -3px; left: 0; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold);
}
.step span { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: rgba(20,24,36,0.14); display: block; margin-bottom: 0.6rem; }
.step h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); font-size: 1.12rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--ink-soft); }

/* ─────────── CTA ─────────── */
.cta { position: relative; padding: 8rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; background: var(--navy-800); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,10,20,0.95) 30%, rgba(6,10,20,0.8)); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.cta-text > p:not(.section-eyebrow) { color: rgba(245,242,234,0.7); margin-top: 1.4rem; max-width: 460px; }
.cta-contacts { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0.4rem; }
.cta-contacts a { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-bright); transition: color 0.3s; }
.cta-contacts a:hover { color: var(--ivory); }
.cta-contacts span { font-size: 0.85rem; color: rgba(245,242,234,0.5); letter-spacing: 0.04em; }

.cta-form {
  background: rgba(247,245,240,0.98); padding: 2.8rem;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.6);
}
.cta-form h3 { font-size: 1.6rem; color: var(--ink); margin-bottom: 1.8rem; }
.form-row { margin-bottom: 1.1rem; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cta-form label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%; margin-top: 0.45rem; padding: 0.8rem 0.9rem;
  border: 1px solid rgba(20,24,36,0.18); background: #fff;
  font-family: var(--sans); font-size: 0.9rem; color: var(--ink);
  border-radius: 2px; transition: border-color 0.3s, box-shadow 0.3s;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,106,0.18);
}
.cta-form textarea { resize: vertical; }
.form-note { margin-top: 1rem; font-size: 0.7rem; color: var(--ink-soft); text-align: center; }
.form-note a { color: inherit; border-bottom: 1px solid var(--gold); transition: color 0.3s; }
.form-note a:hover { color: var(--gold); }
.cta-form.sent { position: relative; }
.form-success {
  text-align: center; padding: 3rem 1rem;
}
.form-success .check {
  width: 64px; height: 64px; margin: 0 auto 1.4rem; border-radius: 50%;
  border: 1.5px solid var(--gold); display: grid; place-items: center;
  font-size: 1.6rem; color: var(--gold); animation: pulse-border 1.8s infinite;
}
.form-success h3 { margin-bottom: 0.6rem; }
.form-success p { font-size: 0.9rem; color: var(--ink-soft); }

/* ─────────── Footer ─────────── */
.footer { background: var(--navy-950); padding: 5rem 0 2.5rem; border-top: 1px solid rgba(201,169,106,0.14); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand p { margin-top: 1.4rem; font-size: 0.85rem; color: rgba(245,242,234,0.5); max-width: 300px; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.26em; color: var(--gold); margin-bottom: 1.2rem; font-weight: 600; text-transform: uppercase; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(245,242,234,0.6); padding: 0.3rem 0; transition: color 0.3s, transform 0.3s; }
.footer-col a:hover { color: var(--gold-bright); transform: translateX(4px); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.8rem; }
.footer-legal p { font-size: 0.74rem; color: rgba(245,242,234,0.4); }
.footer-registry {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.footer-registry .sep { color: rgba(201,169,106,0.5); }
.footer-registry a {
  color: rgba(245,242,234,0.55); border-bottom: 1px solid rgba(201,169,106,0.4);
  padding-bottom: 1px; transition: color 0.3s, border-color 0.3s;
}
.footer-registry a:hover { color: var(--gold-bright); border-color: var(--gold); }
.footer-disclaimer { margin-top: 0.7rem; font-size: 0.68rem !important; color: rgba(245,242,234,0.28) !important; max-width: 860px; line-height: 1.7; }

/* ─────────── Reveal on scroll ─────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-img { opacity: 0; transform: translateY(40px) scale(0.98); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
.reveal-img.in { opacity: 1; transform: translateY(0) scale(1); }

/* ─────────── Responsive ─────────── */
@media (max-width: 1360px) {
  .nav-links { gap: 1.4rem; }
  .nav-actions .btn-ghost { display: none; }
}
@media (max-width: 1080px) {
  .nav-links {
    position: fixed; inset: 0; background: rgba(6,10,20,0.98);
    flex-direction: column; align-items: center; justify-content: center; gap: 2.4rem;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; z-index: -1;
  }
  .nav-links.open { opacity: 1; visibility: visible; z-index: 5; }
  .nav-links a { font-size: 1.3rem; font-family: var(--serif); }
  .nav-links .mobile-cta {
    display: inline-flex; margin-top: 1rem; background: var(--gold);
    color: var(--navy-950); padding: 0.9rem 2rem; font-size: 1rem;
    font-family: var(--sans); font-weight: 600; letter-spacing: 0.05em;
  }
  .nav-links .mobile-cta::after { display: none; }
  .nav-burger { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .num:not(:last-child)::after { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .nav-actions .btn-ghost { display: none; }
}
@media (max-width: 860px) {
  /* El selector de idioma se traslada al menú desplegable: en la barra
     no caben logo, idiomas y botón de menú a la vez. */
  .nav-actions { display: none; }
  .lang-switch-mobile { display: flex; margin-top: 0.5rem; }
  .lang-switch-mobile .lang-btn { padding: 0.6rem 1.1rem; font-size: 0.75rem; }
  .nav-inner { gap: 0.8rem; }
  .manifesto-grid, .cta-grid, .pricing-grid, .express-grid { grid-template-columns: 1fr; gap: 3rem; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0; }
  .ds-item { border-left: none; border-bottom: 2px solid transparent; white-space: nowrap; }
  .ds-item.active { border-bottom-color: var(--gold); }
}
@media (max-width: 600px) {
  .sol-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .numbers-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row.two { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: 1fr; }
  .cta-form { padding: 1.8rem; }
  .logo-text { font-size: 0.7rem; letter-spacing: 0.18em; }
  .logo-text em { font-size: 0.48rem; }
  .logo-mark { width: 34px; height: 34px; font-size: 1.1rem; }
  .manifesto, .solutions, .platform, .testimonials, .process, .cta, .pricing, .express { padding: 4.5rem 0; }
  .pricing-big { padding: 3rem 1.2rem; }
  .express-form { padding: 1.8rem; }
  .drow { grid-template-columns: 28px minmax(0, 1fr) auto; }
  .drow .status { display: none; }
  .drow .amount { font-size: 0.68rem; }
}

/* ─────────── Accesibilidad: reduce motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-img, .reveal-hero, .hero-line span { opacity: 1 !important; transform: none !important; }
}
