:root {
  --bg: #050a12;
  --bg-soft: #0a1322;
  --panel: #0d192b;
  --panel-strong: #111f34;
  --text: #f5f1e8;
  --muted: #aab5c4;
  --faint: #6f7c8e;
  --gold: #d8ae4d;
  --gold-light: #f6d98a;
  --gold-soft: rgba(216, 174, 77, .14);
  --line: rgba(218, 185, 105, .17);
  --line-strong: rgba(218, 185, 105, .36);
  --green: #8bdbac;
  --danger: #ff9292;
  --ink: #161108;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --type-display: clamp(2.55rem, 5vw, 4rem);
  --type-h2: clamp(1.8rem, 3.2vw, 2.65rem);
  --type-h3: 1rem;
  --type-body-lg: clamp(.9rem, 1.25vw, 1.05rem);
  --type-body: .82rem;
  --type-small: .68rem;
  --type-label: .6rem;
  --shadow: 0 28px 70px rgba(0, 0, 0, .34);
  --focus-ring: 3px solid rgba(246, 217, 138, .72);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--gold) var(--bg); scrollbar-width: thin; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(800px 500px at 84% -12%, rgba(74, 109, 163, .22), transparent 68%),
    radial-gradient(700px 500px at 10% 20%, rgba(216, 174, 77, .08), transparent 68%),
    linear-gradient(180deg, #07111f 0%, var(--bg) 60%, #03060b 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.cf-account-open { overflow: hidden; }
body, button, a { -webkit-tap-highlight-color: transparent; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--ink); background: var(--gold-light); }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-light), var(--gold)); border: 2px solid var(--bg); border-radius: 99px; }
:focus { outline: none; }
:focus-visible { outline: var(--focus-ring); outline-offset: 3px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 10px max(18px, env(safe-area-inset-right)) 10px max(18px, env(safe-area-inset-left));
  background: #050a12;
  border-bottom: 1px solid rgba(218, 185, 105, .12);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .16);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 50%; background: linear-gradient(145deg, #172944, #09111d); box-shadow: 0 8px 20px rgba(0, 0, 0, .25); }
.brand-mark img { width: 37px; height: 37px; object-fit: contain; border-radius: 50%; }
.brand-copy { display: grid; gap: 1px; }
.brand-name { color: var(--text); font-family: Fraunces, Georgia, serif; font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.brand-caption { color: var(--faint); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 6px; margin-left: 18px; }
.site-nav a { padding: 9px 12px; border-radius: 10px; color: var(--muted); font-size: 12px; font-weight: 600; transition: color .18s ease, background .18s ease; }
.site-nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { cursor: wait; opacity: .56; transform: none; }
.btn-gold { color: var(--ink); background: linear-gradient(135deg, #f4d27c 0%, var(--gold) 100%); border-color: rgba(255, 225, 144, .56); box-shadow: 0 12px 28px rgba(216, 174, 77, .16); }
.btn-gold:hover { filter: brightness(1.07); }
.btn-quiet { color: var(--text); background: #16263a; border-color: rgba(169, 190, 216, .15); }
.btn-quiet:hover { background: #1c324b; border-color: rgba(218, 185, 105, .36); }
.btn-outline { color: var(--gold-light); background: transparent; border-color: var(--line-strong); }
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold-light); }
.btn-header { min-height: 40px; padding: 0 13px; border-radius: 11px; font-size: 11px; }
.btn-header-create { color: var(--gold-light); background: rgba(216, 174, 77, .07); border-color: var(--line-strong); }
.btn-header-create:hover { background: rgba(216, 174, 77, .15); }
.cf-icon { display: block; width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.cf-icon-sm { width: 16px; height: 16px; }
.btn .cf-icon { margin-right: -2px; }
.cf-account-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.js-crear-usuario.is-identified { max-width: 220px; }
.js-crear-usuario.is-identified::before { width: 7px; height: 7px; flex: 0 0 7px; content: ''; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(139, 219, 172, .1); }

.section { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.hero { display: grid; grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr); align-items: center; gap: clamp(30px, 5vw, 68px); min-height: auto; padding-top: clamp(36px, 5vw, 60px); padding-bottom: clamp(38px, 5vw, 60px); }
.hero-copy { min-width: 0; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 15px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .19em; line-height: 1.2; }
.eyebrow-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(216, 174, 77, .1); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
.hero h1 { max-width: 620px; margin-bottom: 16px; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-display); font-weight: 600; letter-spacing: -.055em; line-height: .98; }
h1 em, h2 em { color: var(--gold-light); font-style: normal; }
.hero-text { max-width: 450px; margin-bottom: 0; color: var(--muted); font-size: var(--type-body-lg); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn-hero { min-width: 150px; min-height: 52px; padding: 0 17px; }
.hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-icon { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--gold-light); background: var(--gold-soft); }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { color: var(--text); font-size: var(--type-body); }
.trust-item small { margin-top: 1px; color: var(--faint); font-size: var(--type-label); letter-spacing: .05em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 27px; background: var(--line); }

.hero-media-wrap { min-width: 0; padding: clamp(18px, 2.5vw, 28px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(17, 35, 58, .92), rgba(9, 17, 29, .96)); box-shadow: var(--shadow); }
.hero-media-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.hero-media-top .eyebrow { margin-bottom: 8px; font-size: 9px; }
.hero-media-top h2 { max-width: 350px; margin: 0; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-h2); font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
.video-subtitle { margin: 8px 0 18px; color: var(--muted); font-size: var(--type-small); }
.video-card { position: relative; overflow: hidden; margin: 0; border: 1px solid rgba(218, 185, 105, .24); border-radius: 18px; background: #03060b; box-shadow: 0 14px 32px rgba(0, 0, 0, .25); }
.hero-video { width: 100%; min-height: 280px; aspect-ratio: 16 / 10; object-fit: cover; background: #03060b; }
.video-cover { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 13px; width: 100%; border: 0; color: var(--text); background: linear-gradient(145deg, rgba(7, 17, 31, .76), rgba(7, 10, 17, .38)); transition: opacity .2s ease; }
.video-cover.is-hidden { pointer-events: none; opacity: 0; }
.video-cover:hover { background: linear-gradient(145deg, rgba(7, 17, 31, .66), rgba(7, 10, 17, .26)); }
.video-play { display: grid; place-items: center; width: 66px; height: 66px; border: 1px solid rgba(255, 230, 161, .7); border-radius: 50%; color: var(--ink); background: var(--gold-light); box-shadow: 0 0 0 10px rgba(216, 174, 77, .1), 0 15px 35px rgba(0, 0, 0, .28); }
.video-play svg { margin-left: 3px; }
.video-cover-text { font-size: var(--type-body); font-weight: 700; }
.media-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; color: var(--faint); font-size: var(--type-label); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.media-footer span:first-child { display: inline-flex; align-items: center; gap: 7px; color: var(--green); }
.media-footer i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(139, 219, 172, .1); }

.providers-section { padding-top: 32px; padding-bottom: 34px; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.section-heading h2 { max-width: 580px; margin: 0; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-h2); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.section-lead { max-width: 330px; margin: 0 0 4px; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }
.payment-section { padding-bottom: 30px; }
.payment-panel { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); align-items: center; gap: 26px; padding: clamp(20px, 3vw, 30px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(500px 220px at 100% 0%, rgba(216, 174, 77, .13), transparent 75%), #0b1626; }
.payment-copy h2 { margin: 0 0 7px; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-h2); font-weight: 600; letter-spacing: -.045em; line-height: 1.03; }
.payment-copy p:last-child { max-width: 310px; margin: 0; color: var(--muted); font-size: var(--type-small); }
.payment-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.payment-logo { display: grid; place-items: center; min-height: 70px; padding: 12px; border: 1px solid rgba(218, 185, 105, .14); border-radius: 13px; background: rgba(3, 8, 15, .48); transition: transform .18s ease, border-color .18s ease; }
.payment-logo:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.payment-logo img { width: 100%; height: 41px; object-fit: contain; }

.provider-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.provider-card { display: grid; place-items: center; min-height: 68px; padding: 11px 14px; border: 1px solid rgba(218, 185, 105, .13); border-radius: 14px; background: rgba(12, 24, 40, .56); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.provider-card:hover { transform: translateY(-3px); border-color: var(--line-strong); background: rgba(19, 37, 60, .75); }
.provider-card img { width: 100%; max-width: 125px; max-height: 43px; object-fit: contain; }

.support-section { padding-bottom: 34px; }
.support-panel { display: grid; grid-template-columns: minmax(0, .85fr) minmax(330px, 1.15fr); align-items: center; gap: 30px; padding: clamp(24px, 3.5vw, 36px); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(22, 39, 63, .95), rgba(9, 17, 29, .95)); box-shadow: var(--shadow); }
.support-copy h2 { margin: 0 0 9px; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-h2); font-weight: 600; letter-spacing: -.05em; line-height: .98; }
.support-copy > p:last-child { margin: 0; color: var(--muted); font-size: var(--type-body); }
.support-actions { display: grid; gap: 10px; }
.support-button { display: grid; grid-template-columns: 44px 1fr 18px; align-items: center; gap: 11px; min-height: 64px; padding: 9px 13px; border: 1px solid rgba(218, 185, 105, .18); border-radius: var(--radius-md); background: rgba(3, 9, 17, .44); transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.support-button:hover { transform: translateX(4px); border-color: var(--line-strong); background: rgba(3, 9, 17, .7); }
.support-icon { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 14px; background: rgba(255, 255, 255, .05); }
.support-icon-brand img { width: 27px; height: 27px; object-fit: contain; }
.support-whatsapp .support-icon { border-color: rgba(37, 211, 102, .25); background: rgba(37, 211, 102, .1); }
.support-telegram .support-icon { border-color: rgba(42, 171, 238, .25); background: rgba(42, 171, 238, .1); }
.support-button strong, .support-button small { display: block; }
.support-button strong { color: var(--text); font-size: var(--type-body); }
.support-button small { margin-top: 2px; color: var(--faint); font-size: var(--type-small); }
.support-arrow { width: 18px; height: 18px; color: var(--gold-light); }
.site-footer { display: flex; justify-content: space-between; gap: 18px; width: min(var(--container), calc(100% - 40px)); margin: 0 auto; padding: 22px 0 max(28px, env(safe-area-inset-bottom)); color: var(--faint); border-top: 1px solid rgba(218, 185, 105, .1); font-size: var(--type-label); line-height: 1.5; }
.site-footer span:last-child { text-align: right; }

/* Autenticación y perfil: mismo lenguaje visual que el resto del landing. */
.cf-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; overflow-y: auto; padding: 20px; background: rgba(1, 4, 9, .82); backdrop-filter: blur(12px); }
.cf-modal[hidden], .cf-welcome-widget[hidden], .cf-auth-launcher[hidden] { display: none !important; }
.cf-modal-card { position: relative; width: min(100%, 450px); max-height: calc(100dvh - 40px); overflow-y: auto; padding: 30px 26px 22px; border: 1px solid var(--line-strong); border-radius: 24px; background: linear-gradient(145deg, #102139, #091321); box-shadow: 0 30px 90px rgba(0, 0, 0, .56); }
.cf-modal-card h2 { margin: 4px 0 9px; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: clamp(29px, 6vw, 38px); font-weight: 600; letter-spacing: -.045em; line-height: 1; }
.cf-modal-close { position: absolute; top: 17px; right: 17px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); background: rgba(255, 255, 255, .04); }
.cf-modal-close:hover { color: var(--text); background: rgba(255, 255, 255, .09); }
.cf-auth-switch { display: flex; gap: 4px; padding: 4px; margin: 20px 0; border: 1px solid var(--line); border-radius: 13px; background: rgba(2, 7, 14, .62); }
.cf-auth-switch button { flex: 1; min-height: 40px; padding: 7px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-size: 11px; font-weight: 700; }
.cf-auth-switch button[aria-pressed="true"] { color: var(--gold-light); background: #192d48; }
.cf-modal-card label { display: block; margin-top: 15px; color: var(--muted); font-size: 11px; font-weight: 700; }
.cf-modal-card input { width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; color: var(--text); background: rgba(2, 8, 16, .68); }
.cf-modal-card input:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(216, 174, 77, .14); }
.cf-modal-card .btn { width: 100%; margin-top: 17px; }
.cf-modal-text, .cf-account-note { color: var(--muted); font-size: 12px; line-height: 1.6; }
.cf-modal-error { min-height: 1.35em; margin: 9px 0 0; color: var(--danger); font-size: 11px; }
.cf-password-field { position: relative; display: flex; align-items: center; }
.cf-password-field input { padding-right: 75px; }
.cf-password-toggle { position: absolute; right: 7px; min-height: 30px; padding: 4px 7px; border: 0; border-radius: 7px; color: var(--gold-light); background: var(--gold-soft); font-size: 10px; }
.cf-field-hint { min-height: 1.35em; margin: 6px 0 0; color: var(--muted); font-size: 10px; }
.cf-field-hint.is-valid { color: var(--green); }
.cf-field-hint.is-invalid { color: var(--danger); }
.cf-modal-card input.is-invalid { border-color: var(--danger); }
.cf-modal-card input.is-valid { border-color: var(--green); }
.cf-account-summary { display: flex; align-items: center; gap: 13px; margin: 21px 0; }
.cf-account-avatar { display: grid; place-items: center; width: 52px; height: 52px; flex: 0 0 52px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-light); background: var(--gold-soft); }
.cf-account-avatar img { width: 30px; height: 30px; object-fit: contain; }
.cf-account-avatar .cf-avatar-image { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cf-account-summary strong { display: block; overflow-wrap: anywhere; color: var(--text); }
.cf-account-badge { display: block; margin-top: 3px; color: var(--green); font-size: 11px; }
.cf-ticket { padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(2, 8, 16, .46); }
.cf-ticket span, .cf-ticket strong { display: block; }
.cf-ticket span { color: var(--faint); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.cf-ticket strong { margin-top: 4px; overflow-wrap: anywhere; color: var(--gold-light); font-size: 16px; }
.cf-modal-card #cf-copy-user, .cf-modal-card #cf-ir-chat { margin-top: 10px; }
.cf-account-note { margin: 17px 0; }
.cf-account-logout { display: block; width: 100%; padding: 13px 4px 2px; border: 0; border-top: 1px solid var(--line); color: var(--muted); background: transparent; font-size: 11px; }
.cf-account-logout:hover { color: var(--text); }
.cf-auth-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 10px; border: 1px solid var(--line-strong); border-radius: 17px; color: var(--text); background: #102037; box-shadow: 0 15px 38px rgba(0, 0, 0, .42); text-align: left; }
.cf-auth-launcher-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: var(--ink); background: linear-gradient(145deg, #ffe29e, var(--gold)); }
.cf-auth-launcher-icon .cf-icon { width: 22px; height: 22px; }
.cf-auth-launcher-text { display: grid; gap: 2px; line-height: 1.2; }
.cf-auth-launcher-text strong { color: var(--gold-light); font-size: 12px; }
.cf-auth-launcher-text small { color: var(--muted); font-size: 10px; }
.cf-welcome-widget { position: fixed; right: 22px; bottom: 96px; z-index: 950; width: min(370px, calc(100vw - 32px)); overflow: hidden; border: 1px solid var(--line-strong); border-radius: 22px; background: #f5f0e7; box-shadow: 0 24px 70px rgba(0, 0, 0, .55); }
.cf-welcome-header { display: flex; align-items: center; gap: 10px; min-height: 66px; padding: 11px 14px; color: var(--text); background: linear-gradient(135deg, #0c192b, #1a304b); }
.cf-welcome-brand { display: grid; place-items: center; width: 40px; height: 40px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-light); background: var(--gold-soft); }
.cf-welcome-brand img { width: 32px; height: 32px; object-fit: contain; border-radius: 50%; }
.cf-welcome-header > span:nth-child(2) { display: grid; gap: 3px; }
.cf-welcome-header strong { font-size: 13px; }
.cf-welcome-header small { color: #bfccdc; font-size: 9px; letter-spacing: .1em; }
#cf-welcome-close { display: grid; place-items: center; width: 36px; height: 36px; margin-left: auto; border: 0; border-radius: var(--radius-sm); color: var(--text); background: transparent; }
#cf-welcome-close:hover { background: rgba(255, 255, 255, .08); }
.cf-welcome-body { display: grid; justify-items: center; min-height: 340px; padding: 37px 25px 27px; color: #19202b; text-align: center; }
.cf-welcome-user { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; color: var(--gold-light); background: #14243a; font-size: 32px; }
.cf-welcome-body h2 { margin: 18px 0 8px; color: #17202d; font-family: Fraunces, Georgia, serif; font-size: 27px; }
.cf-welcome-body p { max-width: 285px; margin: 0; color: #697483; font-size: 13px; line-height: 1.55; }
.cf-welcome-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; width: 100%; margin-top: 28px; }
.cf-welcome-actions .btn { min-width: 0; min-height: 47px; padding: 0 9px; font-size: 11px; }

@media (max-width: 1000px) {
  .site-nav { margin-left: 4px; }
  .hero { grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr); gap: 32px; }
  .provider-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .site-header { gap: 12px; min-height: 64px; padding-top: 8px; padding-bottom: 8px; }
  .brand-caption, .site-nav { display: none; }
  .brand-mark { width: 40px; height: 40px; border-radius: 50%; }
  .brand-mark img { width: 34px; height: 34px; border-radius: 50%; }
  .brand-name { font-size: 17px; }
  .header-actions { gap: 6px; }
  .btn-header { min-height: 40px; padding: 0 10px; font-size: 10px; }
  .section { width: min(100% - 28px, var(--container)); }
  .hero { display: block; min-height: auto; padding-top: 48px; }
  .hero-copy { max-width: 620px; margin-bottom: 24px; }
  .hero h1 { font-size: var(--type-display); }
  .hero-media-wrap { max-width: 650px; margin: 0 auto; }
  .section-heading-row { display: block; }
  .section-lead { margin-top: 14px; }
  .payment-panel, .support-panel { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .site-header { padding-left: 12px; padding-right: 12px; }
  .brand-name { font-size: 16px; }
  .header-actions .js-fichas { max-width: 124px; overflow: hidden; padding: 0 9px; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
  .header-actions .js-crear-usuario { max-width: 108px; overflow: hidden; padding: 0 9px; }
  .section { width: calc(100% - 24px); }
  .hero { padding-top: 30px; padding-bottom: 38px; }
  .hero h1 { max-width: 360px; margin-bottom: 13px; font-size: clamp(39px, 12vw, 52px); }
  .hero-text { font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }
  .btn-hero { min-width: 0; min-height: 49px; padding: 0 9px; font-size: 11px; }
  .hero-trust { gap: 12px; margin-top: 26px; }
  .trust-item { gap: 7px; }
  .trust-item strong { font-size: 11px; }
  .trust-item small { font-size: 8px; }
  .hero-media-wrap { padding: 16px; border-radius: 21px; }
  .hero-media-top h2 { font-size: var(--type-h2); }
  .hero-video { min-height: 205px; }
  .providers-section { padding-top: 38px; padding-bottom: 38px; }
  .section-heading h2 { font-size: var(--type-h2); }
  .payment-panel, .support-panel { gap: 25px; padding: 22px 17px; border-radius: 22px; }
  .payment-copy h2, .support-copy h2 { font-size: var(--type-h2); }
  .payment-logos { grid-template-columns: repeat(2, 1fr); }
  .provider-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .provider-card { min-height: 75px; padding: 10px; }
  .support-button { min-height: 64px; padding: 9px 12px; }
  .site-footer { display: grid; width: calc(100% - 24px); gap: 7px; padding-top: 18px; font-size: 9px; }
  .site-footer span:last-child { text-align: left; }
  .cf-modal { padding: 10px; }
  .cf-modal-card { max-height: calc(100dvh - 20px); padding: 27px 17px 18px; border-radius: 20px; }
  .cf-auth-launcher { right: 14px; bottom: 15px; width: 54px; height: 54px; padding: 5px; border-radius: 16px; }
  .cf-auth-launcher-icon { width: 44px; height: 44px; }
  .cf-auth-launcher-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .cf-welcome-widget { right: 12px; bottom: 79px; width: calc(100vw - 24px); }
  .cf-welcome-body { min-height: 300px; padding: 28px 17px 22px; }
}
@media (max-width: 360px) {
  .brand-name { font-size: 15px; }
  .header-actions .js-fichas { max-width: 101px; }
  .header-actions .js-crear-usuario { max-width: 92px; }
  .header-actions .js-fichas, .header-actions .js-crear-usuario { padding: 0 7px; font-size: 9px; }
  .hero-actions { grid-template-columns: 1fr; }
  .btn-hero { width: 100%; }
  .hero-trust { flex-wrap: wrap; }
  .trust-divider { display: none; }
  .hero-media-top h2 { font-size: var(--type-h2); }
  .payment-copy h2, .support-copy h2 { font-size: var(--type-h2); }
  .cf-modal-card h2 { font-size: 31px; }
}

/* Bloque 2: enlace de salto para teclado/lectores de pantalla (tomado del rediseño). */
.skip-link{position:absolute;left:12px;top:-100px;z-index:1000;padding:10px 14px;border-radius:10px;background:#f0ce82;color:#1b1406;font-weight:700;text-decoration:none;transition:top .15s ease}
.skip-link:focus{top:12px;outline:2px solid #fff;outline-offset:2px}

/* =========================================================
   BLOQUE 2 · Lenguaje visual del rediseño portado al DOM real
   (capa aditiva; la estructura y el JS de producción no cambian).
   Tokens: dorado más cálido, tarjetas navy planas, radios unificados,
   controles de 48 px, ritmo vertical --sec-y.
   ========================================================= */
:root {
  --bg: #05080f;
  --bg-deep: #030509;
  --card: #0a1428;
  --card-soft: #101e3d;
  --panel: var(--card);
  --panel-strong: var(--card-soft);
  --gold: #e3b93e;
  --gold-light: #f6da85;
  --gold-deep: #9c7420;
  --gold-soft: rgba(227, 185, 62, .12);
  --line: rgba(227, 185, 62, .16);
  --line-strong: rgba(227, 185, 62, .28);
  --shadow: 0 22px 55px rgba(0, 0, 0, .30);
  --shadow-gold: 0 16px 34px rgba(227, 185, 62, .22);
  --focus-ring: 3px solid rgba(246, 218, 133, .55);
  --r-xs: 10px; --r-sm: 12px; --r-md: 16px; --r-lg: 20px; --r-xl: 24px; --r-pill: 999px;
  --radius-sm: var(--r-sm); --radius-md: var(--r-md); --radius-lg: var(--r-lg);
  --sec-y: 34px;
  --control-h: 48px;
  --t-fast: .16s ease;
  --t-base: .22s cubic-bezier(.2, .7, .3, 1);
}
body {
  background:
    radial-gradient(760px 480px at 84% -12%, rgba(60, 92, 150, .18), transparent 68%),
    radial-gradient(640px 460px at 8% 18%, rgba(227, 185, 62, .07), transparent 68%),
    linear-gradient(180deg, #06101c 0%, var(--bg) 58%, var(--bg-deep) 100%);
}

/* ---- header / marca ---- */
.site-header { min-height: 74px; background: rgba(5, 8, 15, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.site-header .btn-header { box-shadow: 0 2px 5px rgba(0, 0, 0, .20); }
.site-header .btn-header:hover { box-shadow: 0 3px 7px rgba(0, 0, 0, .22); }
.brand-mark { width: 48px; height: 48px; border-color: rgba(227, 185, 62, .45); background: var(--bg-deep); box-shadow: 0 0 0 3px rgba(227, 185, 62, .06); transition: border-color .25s ease, box-shadow .25s ease; }
.brand:hover .brand-mark { border-color: var(--gold-light); box-shadow: 0 0 0 4px rgba(227, 185, 62, .12); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-size: clamp(15px, 2vw, 18px); letter-spacing: .01em; white-space: nowrap; }

/* ---- botones ---- */
.btn { min-height: var(--control-h); padding: 0 20px; border-radius: var(--r-sm); letter-spacing: .01em; transition: transform var(--t-fast), filter var(--t-fast), background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast); }
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(180deg, var(--gold-light), var(--gold)); border-color: transparent; box-shadow: 0 12px 26px rgba(0, 0, 0, .28), var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, .32); }
.btn-gold:hover { filter: brightness(1.03); box-shadow: 0 16px 32px rgba(0, 0, 0, .32), 0 14px 32px rgba(227, 185, 62, .32), inset 0 1px 0 rgba(255, 255, 255, .38); }
.btn-gold:active { transform: translateY(0); filter: brightness(.98); }
.btn-header { min-height: 44px; padding: 0 15px; border-radius: 11px; font-size: 12px; }
.btn-header-create { background: rgba(227, 185, 62, .07); }
.btn-header-create:hover { background: rgba(227, 185, 62, .12); }
.btn-hero { position: relative; overflow: hidden; isolation: isolate; min-height: 56px; padding: 0 24px; border-radius: 14px; font-size: 14px; }
.btn-hero.btn-gold::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .5), transparent); transform: skewX(-20deg); transition: left .6s ease; pointer-events: none; }
.btn-hero.btn-gold:hover::after { left: 130%; }
.btn-quiet { background: var(--card-soft); border-color: rgba(255, 255, 255, .09); }
.btn-quiet:hover { border-color: var(--line-strong); }

/* ---- tipografía / secciones ---- */
.hero h1 { font-weight: 500; letter-spacing: -.02em; line-height: 1.04; }
h1 em, h2 em { background: linear-gradient(110deg, var(--gold-light) 15%, var(--gold) 50%, var(--gold-light) 85%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { color: var(--gold-light); letter-spacing: .18em; }
.eyebrow-dot { background: var(--gold); box-shadow: 0 0 0 5px rgba(227, 185, 62, .1); }
.section { width: min(var(--container), calc(100% - 28px)); }
.payment-section { padding-top: 0; padding-bottom: var(--sec-y); }
.providers-section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.support-section { padding-bottom: var(--sec-y); }

/* ---- hero: indicadores como tarjetas (DOM .hero-trust/.trust-item intacto) ---- */
.hero-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; width: min(100%, 430px); margin-top: 24px; }
.trust-divider { display: none; }
.trust-item {
  flex-direction: column; justify-content: center; gap: 8px; min-height: 84px; padding: 12px 6px; text-align: center;
  border: 1px solid rgba(246, 218, 133, .28); border-radius: 13px;
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 65%), var(--card);
}
.trust-item:nth-child(3) { border-color: rgba(246, 218, 133, .42); background: var(--card-soft); }
.trust-icon { width: 34px; height: 34px; border-radius: 10px; border-color: rgba(246, 218, 133, .22); background: rgba(227, 185, 62, .09); }
.trust-item strong { font-size: clamp(15px, 1.6vw, 18px); font-weight: 800; line-height: 1; }
.trust-item small { margin-top: 3px; color: var(--gold-light); font-size: clamp(8px, .85vw, 9.5px); font-weight: 800; letter-spacing: .08em; line-height: 1.1; }

/* ---- hero: bloque de video ---- */
.hero-media-wrap { border-radius: var(--r-xl); border-color: var(--line); background: linear-gradient(145deg, rgba(16, 30, 61, .92), rgba(10, 20, 40, .96)); }
.video-card { border-radius: clamp(15px, 1.7vw, 21px); border-color: rgba(255, 255, 255, .13); background: var(--bg-deep); box-shadow: var(--shadow); }
.video-card::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035); }
.video-cover { background: linear-gradient(180deg, rgba(3, 5, 9, .25), rgba(3, 5, 9, .73)); }
.video-cover::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(227, 185, 62, .12), transparent 43%); pointer-events: none; }
.video-cover:hover { background: linear-gradient(180deg, rgba(3, 5, 9, .18), rgba(3, 5, 9, .66)); }
.video-play { position: relative; z-index: 2; transition: transform var(--t-base); }
.video-cover:hover .video-play { transform: scale(1.05); }
.video-cover-text { position: relative; z-index: 2; color: rgba(255, 255, 255, .95); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* ---- medios de pago ---- */
.payment-panel { border-radius: var(--r-xl); background: radial-gradient(500px 220px at 100% 0%, rgba(227, 185, 62, .12), transparent 60%), var(--card); }
.payment-logo { min-height: 72px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 12px; background: var(--card-soft); transition: transform var(--t-fast), border-color var(--t-fast); }
.payment-logo:hover { transform: translateY(-2px); border-color: rgba(227, 185, 62, .35); }
.payment-logo img { width: auto; height: auto; max-width: 88%; max-height: 44px; }
.payment-logo img[src*="mercado-pago"] { max-width: 160px; max-height: 40px; }
.payment-logo img[src*="galicia"] { max-width: 150px; max-height: 39px; }
.payment-logo img[src*="banco-uala"] { max-width: 150px; max-height: 40px; }
.payment-logo img[src*="banco-nacion"] { max-width: 90px; max-height: 48px; }

/* ---- proveedores ---- */
.provider-card {
  min-height: 80px; padding: 10px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 13px;
  background: linear-gradient(165deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0) 65%), var(--card);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.provider-card:hover { transform: translateY(-2px); border-color: rgba(227, 185, 62, .35); background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 65%), var(--card-soft); box-shadow: 0 10px 22px rgba(0, 0, 0, .22); }
.provider-card img { width: auto; height: auto; max-width: 88%; max-height: 54px; }

/* ---- soporte ---- */
.support-panel { border-radius: var(--r-xl); border-color: rgba(227, 185, 62, .20); background: radial-gradient(620px 220px at 8% 0%, rgba(227, 185, 62, .10), transparent 60%), linear-gradient(135deg, rgba(16, 30, 61, .95), rgba(10, 20, 40, .98)); }
.support-button { border-radius: var(--r-md); border-color: var(--line); background: rgba(3, 5, 9, .44); transition: transform var(--t-fast), filter var(--t-fast), border-color var(--t-fast), background var(--t-fast); }
.support-button:hover { transform: translateY(-1px); filter: brightness(1.03); border-color: var(--line-strong); background: rgba(3, 5, 9, .62); }

/* ---- footer ---- */
.site-footer { width: min(var(--container), calc(100% - 28px)); padding: 24px 0 max(32px, env(safe-area-inset-bottom)); border-top: 1px solid rgba(227, 185, 62, .14); color: var(--muted); font-size: 11px; }

/* ---- modal de cuenta (DOM real: cf-modal / cf-modal-card) ---- */
.cf-modal-card { border-radius: var(--r-lg); background: var(--card); box-shadow: 0 24px 64px rgba(0, 0, 0, .5); }
.cf-modal-card input { border-radius: var(--r-xs); background: rgba(3, 5, 9, .68); min-height: var(--control-h); }
.cf-modal-card input:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(227, 185, 62, .16); }

/* ---- widget: alinear sus tokens propios al dorado del rediseño (widget.css real intacto) ---- */
#cf-widget-root, .cf-welcome-widget, .cf-auth-launcher {
  --cf-gold: #e3b93e; --cf-gold-bright: #f6da85;
  --cf-panel: var(--card); --cf-panel-alt: var(--card-soft);
  --cf-line: rgba(227, 185, 62, .18); --cf-line-strong: rgba(227, 185, 62, .38);
}

/* ---- responsive de la capa (los breakpoints funcionales del real siguen vigentes) ---- */
@media (max-width: 900px) {
  :root { --sec-y: 26px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-name { font-size: 15px; }
  .btn-header { min-height: 42px; padding: 0 12px; font-size: 11px; }
  .provider-card { min-height: 76px; }
}
@media (max-width: 520px) {
  .hero-trust { gap: 6px; margin-top: 22px; width: 100%; }
  .trust-item { min-height: 76px; padding: 10px 4px; gap: 6px; }
  .trust-icon { width: 30px; height: 30px; }
  .trust-item strong { font-size: 14px; }
  .trust-item small { font-size: 8px; }
  .btn-hero { min-height: 50px; padding: 0 12px; font-size: 12px; }
  .payment-logo { min-height: 66px; }
  .provider-card { min-height: 70px; }
  .provider-card img { max-height: 44px; }
}
@media (max-width: 360px) {
  .hero-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-item strong { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .btn, .btn-hero.btn-gold::after, .provider-card, .payment-logo, .support-button, .video-play { transition: none; }
}

/* ---- copy restaurado en el hero (landing-before-etapa2b): tagline + frase original ---- */
.hero-tagline { margin: -4px 0 14px; color: var(--gold-light); font-family: Fraunces, Georgia, serif; font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 500; letter-spacing: -.01em; line-height: 1.2; text-wrap: balance; }
.hero-text-secondary { margin-top: 10px; color: var(--faint); font-size: var(--type-body); }
.hero-media-top h2 { max-width: 420px; }
.video-subtitle { max-width: 440px; }
@media (max-width: 520px) { .hero-tagline { font-size: 1.02rem; margin-bottom: 12px; } .hero-text-secondary { font-size: .8rem; } }
