/* ============================================================
   FIXIUM — Landing  ·  v2
   Marca: navy #0B1B34 · esmeralda #10B981 · cian #38BDF8 · amber #FFB020
   ============================================================ */

:root {
  /* Navy de marca + profundidad */
  --navy-900:  #081221;
  --navy:      #0B1B34;
  --navy-800:  #0C2140;
  --navy-700:  #122e54;
  --navy-600:  #1b3d69;

  /* Acentos */
  --emerald:     #10B981;
  --emerald-600: #059669;
  --mint:        #34D399;
  --cyan:        #38BDF8;
  --blue:        #3B82F6;
  --amber:       #FFB020;
  --amber-700:   #B9770A;

  /* Superficies claras (tinte azul sutil = más premium) */
  --bg:        #FFFFFF;
  --surface:   #F4F8FD;
  --surface-2: #EAF2FB;
  --border:    #E2EAF5;
  --text:      #0B1B34;
  --muted:     #566783;

  /* Tipografía */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Radios */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 30px; --r-pill: 9999px;

  /* Sombras (suaves, con tinte navy) */
  --shadow-sm: 0 1px 2px rgba(11,27,52,.05), 0 2px 6px rgba(11,27,52,.06);
  --shadow-md: 0 10px 30px rgba(11,27,52,.09), 0 3px 8px rgba(11,27,52,.05);
  --shadow-lg: 0 30px 70px rgba(8,18,33,.22);
  --glow-emerald: 0 12px 34px rgba(16,185,129,.32);
  --gradient-accent: linear-gradient(120deg, #34D399 0%, #10B981 45%, #38BDF8 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body); background: var(--bg); color: var(--text);
  line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: rgba(16,185,129,.22); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.022em; line-height: 1.12; color: var(--text); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--emerald-600); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: var(--gradient-accent); }
.section__head.center .eyebrow { justify-content: center; }

.hl-green {
  background: var(--gradient-accent);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ============ BOTONES ============ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: var(--r-pill); border: 1px solid transparent;
  cursor: pointer; overflow: hidden;
  transition: transform .18s cubic-bezier(.34,1.4,.64,1), box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: .9rem; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* brillo que cruza al hover */
.btn--primary::after, .btn--amber::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn--primary:hover::after, .btn--amber:hover::after { left: 130%; }

.btn--primary { background: var(--emerald); color: #fff; box-shadow: var(--glow-emerald); }
.btn--primary:hover { background: var(--emerald-600); transform: translateY(-2px); box-shadow: 0 16px 42px rgba(16,185,129,.4); }
.btn--primary:active { transform: translateY(0); }

.btn--amber { background: var(--amber); color: #3a2500; box-shadow: 0 12px 32px rgba(255,176,32,.32); }
.btn--amber:hover { background: #f4a815; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: var(--surface); border-color: #cad7e8; }

.btn--ghost-dark { background: rgba(255,255,255,.07); color: #eaf1fb; border-color: rgba(255,255,255,.2); backdrop-filter: blur(6px); }
.btn--ghost-dark:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.38); transform: translateY(-2px); }

.btn:focus-visible { outline: 3px solid rgba(56,189,248,.6); outline-offset: 2px; }

/* ============ NAVBAR ============ */
.navbar { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 16px 0; transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease, padding .3s ease; }
.navbar.scrolled { background: rgba(9,18,33,.72); backdrop-filter: blur(18px) saturate(1.4); box-shadow: 0 1px 0 rgba(255,255,255,.08); padding: 10px 0; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: inline-flex; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,.3); transition: transform .25s ease; }
.brand:hover .brand__mark { transform: rotate(-4deg) scale(1.05); }
.brand__mark svg { border-radius: 10px; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.34rem; color: #fff; letter-spacing: -.01em; }

.navbar__links { display: flex; align-items: center; gap: 30px; }
.navbar__links a { position: relative; color: rgba(226,236,249,.78); font-size: .95rem; font-weight: 500; padding: 4px 0; transition: color .2s ease; }
.navbar__links a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; border-radius: 2px; background: var(--gradient-accent); transition: width .25s ease; }
.navbar__links a:hover, .navbar__links a.active { color: #fff; }
.navbar__links a.active::after { width: 100%; }

.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__login { color: #eaf1fb; }
.navbar__toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }

/* ============ HERO ============ */
.hero { position: relative; background: linear-gradient(165deg, #0C2140 0%, #0B1B34 55%, #081524 100%); color: #eaf1fb; padding: 152px 0 0; overflow: hidden; }
.hero__aurora { position: absolute; inset: -20% -10% auto -10%; height: 900px; pointer-events: none; filter: blur(10px); }
.hero__aurora span { position: absolute; border-radius: 50%; opacity: .5; mix-blend-mode: screen; animation: drift 18s ease-in-out infinite; }
.hero__aurora span:nth-child(1) { width: 560px; height: 560px; left: 8%;  top: -8%;  background: radial-gradient(circle, rgba(16,185,129,.55), transparent 62%); }
.hero__aurora span:nth-child(2) { width: 620px; height: 620px; right: 4%; top: -14%; background: radial-gradient(circle, rgba(59,130,246,.5), transparent 62%);  animation-delay: -6s; }
.hero__aurora span:nth-child(3) { width: 460px; height: 460px; left: 42%; top: 6%;   background: radial-gradient(circle, rgba(56,189,248,.42), transparent 62%); animation-delay: -11s; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,30px) scale(1.08); } 66% { transform: translate(-30px,20px) scale(.95); } }

.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 0%, transparent 75%); pointer-events: none; }

.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-bottom: 70px; z-index: 2; }
.hero__copy { max-width: 620px; }

.badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(16,185,129,.13); border: 1px solid rgba(16,185,129,.34); color: #6ee7b7; font-family: var(--font-display); font-weight: 600; font-size: .82rem; padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 26px; backdrop-filter: blur(6px); }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55); } 70% { box-shadow: 0 0 0 9px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }

.hero__headline { font-size: clamp(2.4rem, 5.2vw, 3.85rem); font-weight: 800; color: #fff; margin-bottom: 22px; }
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: rgba(214,225,240,.82); margin-bottom: 34px; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__micro { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; color: rgba(214,225,240,.72); }
.hero__micro svg { color: var(--mint); }

/* Mock perfil (glass) */
.hero__visual { position: relative; display: flex; justify-content: center; }
.profile-card { width: 100%; max-width: 388px; background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,250,254,.96)); backdrop-filter: blur(4px); color: var(--text); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.7); animation: floatCard 7s ease-in-out infinite; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.profile-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.profile-card__avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #1e40af); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.profile-card__name { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; }
.profile-card__role { color: var(--muted); font-size: .9rem; }
.verified-pill { display: inline-flex; align-items: center; gap: 4px; background: rgba(16,185,129,.13); color: var(--emerald-600); font-size: .72rem; font-weight: 600; font-family: var(--font-display); padding: 3px 9px; border-radius: var(--r-pill); }
.profile-card__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.profile-card__score { font-size: .85rem; color: var(--muted); font-weight: 500; }
.profile-card__creds { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.cred { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 500; color: #33445c; }
.cred svg { color: var(--emerald); flex-shrink: 0; }
.profile-card__foot { display: flex; align-items: center; justify-content: space-between; }
.profile-card__price { font-family: var(--font-display); font-weight: 700; color: var(--emerald-600); font-size: .95rem; }
.profile-card__cta { background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .85rem; padding: 9px 20px; border-radius: var(--r-pill); }

.floating-chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: .82rem; padding: 10px 15px; border-radius: var(--r-pill); box-shadow: var(--shadow-md); }
.floating-chip--1 { top: 4%; left: -5%; animation: floatChip 5.5s ease-in-out infinite; }
.floating-chip--1 svg { color: var(--blue); }
.floating-chip--2 { bottom: 6%; right: -4%; animation: floatChip 5.5s ease-in-out infinite -2.7s; }
.floating-chip--2 svg { color: var(--emerald); }
@keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Trustbar */
.trustbar { position: relative; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 26px 34px; margin-bottom: -44px; background: linear-gradient(180deg, rgba(21,44,78,.9), rgba(14,35,66,.9)); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); z-index: 4; backdrop-filter: blur(8px); }
.trustbar__item { display: flex; flex-direction: column; gap: 2px; }
.trustbar__item strong { font-family: var(--font-display); color: #fff; font-size: .96rem; font-weight: 600; }
.trustbar__item span { color: rgba(214,225,240,.64); font-size: .82rem; }
.trustbar__sep { width: 1px; height: 34px; background: rgba(255,255,255,.1); }

/* ============ STATS ============ */
.stats { background: var(--bg); padding: 96px 0 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--border); transition: transform .2s ease, box-shadow .2s ease; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 4vw, 2.9rem); line-height: 1; background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { margin-top: 10px; color: var(--muted); font-size: .92rem; font-weight: 500; }

/* ============ SECCIONES ============ */
.section { padding: 108px 0; }
.section__head { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__title { font-size: clamp(1.9rem, 3.6vw, 2.75rem); margin-bottom: 16px; }
.section__lead { color: var(--muted); font-size: 1.1rem; }

/* Problema */
.problem { padding-top: 130px; background: var(--bg); }
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; max-width: 940px; margin: 0 auto; }
.compare__col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px; }
.compare__col--after { background: #fff; border: 1px solid rgba(16,185,129,.3); box-shadow: 0 18px 50px rgba(16,185,129,.12); }
.compare__tag { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; padding: 5px 13px; border-radius: var(--r-pill); margin-bottom: 20px; }
.compare__tag--bad { background: #fdecec; color: #c0392b; }
.compare__tag--good { background: rgba(16,185,129,.13); color: var(--emerald-600); }
.compare__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare__list li { position: relative; padding-left: 30px; color: #4a5a70; font-size: .98rem; }
.compare__list li::before { content: '✕'; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 50%; background: #fdecec; color: #c0392b; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; }
.compare__list--good li { color: var(--text); }
.compare__list--good li::before { content: '✓'; background: rgba(16,185,129,.15); color: var(--emerald-600); }
.compare__arrow { color: #b6c2d3; }

/* Steps (con línea conectora) */
.how { background: var(--surface); }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps::before { content: ''; position: absolute; top: 58px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, transparent, rgba(16,185,129,.3), rgba(56,189,248,.3), transparent); z-index: 0; }
.step { position: relative; z-index: 1; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #fff; background: var(--gradient-accent); width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: var(--glow-emerald); }
.step__title { font-size: 1.25rem; margin-bottom: 10px; }
.step__text { color: var(--muted); font-size: .97rem; }

/* Features */
.features { background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(16,185,129,.08), transparent 60%); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d0ddec; }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-card__icon--green { background: rgba(16,185,129,.13); color: var(--emerald-600); }
.feature-card__icon--amber { background: rgba(255,176,32,.17); color: var(--amber-700); }
.feature-card__icon--blue  { background: rgba(59,130,246,.13); color: var(--blue); }
.feature-card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.feature-card p { color: var(--muted); font-size: .96rem; }

/* Market — pestañas interactivas */
.market { background: var(--surface); }
.tabs { max-width: 560px; margin: 0 auto 40px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 6px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; box-shadow: var(--shadow-sm); }
.tab { border: none; background: transparent; font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--muted); padding: 13px 18px; border-radius: var(--r-pill); cursor: pointer; transition: color .2s ease, background .2s ease; }
.tab.active { color: #fff; background: var(--navy); box-shadow: var(--shadow-sm); }
.tab--pro.active { background: linear-gradient(135deg, #B9770A, var(--amber)); color: #2a1a00; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeSwap .35s ease; }
@keyframes fadeSwap { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.market-card { border-radius: var(--r-xl); padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.market-card--client { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.market-card--pro { background: var(--navy); color: #eaf1fb; position: relative; overflow: hidden; }
.market-card--pro::after { content: ''; position: absolute; top: -30%; right: -12%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,176,32,.2), transparent 70%); pointer-events: none; }
.market-card__body { position: relative; z-index: 1; }
.market-card__label { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--emerald-600); background: rgba(16,185,129,.11); padding: 5px 13px; border-radius: var(--r-pill); margin-bottom: 20px; }
.market-card__label--pro { color: var(--amber); background: rgba(255,176,32,.15); }
.market-card h3 { font-size: 1.55rem; margin-bottom: 22px; }
.market-card--pro h3 { color: #fff; }
.ticklist { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.ticklist li { position: relative; padding-left: 30px; font-size: 1rem; color: #3a4a60; }
.ticklist li::before { content: ''; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: rgba(16,185,129,.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.ticklist--pro li { color: rgba(214,225,240,.9); }
.ticklist--pro li::before { background-color: rgba(255,176,32,.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FFB020' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.market-visual { display: flex; align-items: center; justify-content: center; }
.market-visual__badge { width: 168px; height: 168px; border-radius: 40px; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--surface), #fff); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.market-card--pro .market-visual__badge { background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border-color: rgba(255,255,255,.16); }
.market-visual__badge svg { width: 72px; height: 72px; }

/* Trades */
.trades { background: var(--bg); }
.trades-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trade-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px 30px; transition: transform .2s ease, box-shadow .2s ease; overflow: hidden; }
.trade-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.trade-card--active { background: linear-gradient(160deg, #0C2140, #0B1B34); color: #eaf1fb; border-color: transparent; }
.trade-card--active::after { content: ''; position: absolute; top: -40%; right: -20%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,176,32,.18), transparent 70%); pointer-events: none; }
.trade-card__glyph { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 17px; background: rgba(11,27,52,.06); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.trade-card--active .trade-card__glyph { background: rgba(255,176,32,.16); color: var(--amber); }
.trade-card h3 { position: relative; z-index: 1; font-size: 1.3rem; margin-bottom: 8px; }
.trade-card--active h3 { color: #fff; }
.trade-card p { position: relative; z-index: 1; color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.trade-card--active p { color: rgba(214,225,240,.78); }
.trade-card__status { position: relative; z-index: 1; display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .8rem; padding: 5px 14px; border-radius: var(--r-pill); background: var(--surface-2); color: var(--muted); }
.trade-card__status--live { background: rgba(16,185,129,.2); color: #6ee7b7; }

/* FAQ */
.faq { background: var(--surface); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: rgba(16,185,129,.4); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--text); }
.faq-q__icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--surface-2); color: var(--emerald-600); display: flex; align-items: center; justify-content: center; transition: transform .3s ease, background .2s ease; }
.faq-item.open .faq-q__icon { transform: rotate(45deg); background: var(--emerald); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 24px 22px; color: var(--muted); font-size: .98rem; line-height: 1.7; }

/* CTA final */
.cta-final { position: relative; background: linear-gradient(160deg, #0C2140, #0B1B34); color: #eaf1fb; padding: 104px 0; overflow: hidden; }
.cta-final__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 65% at 50% 0%, rgba(16,185,129,.26), transparent 60%), radial-gradient(ellipse 40% 50% at 85% 100%, rgba(59,130,246,.2), transparent 60%); pointer-events: none; }
.cta-final__inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(2rem, 4.4vw, 3rem); color: #fff; margin-bottom: 18px; }
.cta-final p { font-size: 1.15rem; color: rgba(214,225,240,.82); margin-bottom: 34px; }
.cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.cta-final__micro { font-size: .88rem; color: rgba(214,225,240,.62); }

/* Footer */
.footer { background: var(--navy-900); color: rgba(214,225,240,.7); padding: 72px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__tagline { margin-top: 16px; font-size: .92rem; max-width: 340px; line-height: 1.7; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer__col h4 { color: #fff; font-size: .95rem; font-weight: 600; margin-bottom: 16px; }
.footer__col a { display: block; font-size: .9rem; margin-bottom: 11px; color: rgba(214,225,240,.66); transition: color .2s ease, padding-left .2s ease; }
.footer__col a:hover { color: #fff; padding-left: 3px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: .84rem; color: rgba(214,225,240,.5); }

/* Animaciones de entrada */
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { padding-top: 120px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { max-width: none; }
  .floating-chip--1 { left: 2%; } .floating-chip--2 { right: 2%; }
  .trustbar { flex-direction: column; align-items: flex-start; gap: 18px; }
  .trustbar__sep { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .compare__arrow { transform: rotate(90deg); margin: -4px auto; }
  .steps { grid-template-columns: 1fr; } .steps::before { display: none; }
  .feature-grid, .trades-grid { grid-template-columns: 1fr; }
  .market-card { grid-template-columns: 1fr; gap: 30px; padding: 36px; }
  .market-visual { order: -1; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 720px) {
  .navbar__links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(9,18,33,.97); backdrop-filter: blur(16px); padding: 10px 24px 20px; border-top: 1px solid rgba(255,255,255,.08); }
  .navbar__links.open { display: flex; }
  .navbar__links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .navbar__links a::after { display: none; }
  .navbar__login { display: none; }
  .navbar__toggle { display: inline-flex; }
  .section { padding: 78px 0; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta-final__actions .btn { width: 100%; }
  .tabs { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  .hero__aurora span, .profile-card, .floating-chip, .badge__dot { animation: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
