/* =============================================================
   HappyPay — Design system. Light Premium (logo blue + cyan).
   ============================================================= */

/* =============================================================
   0. Fonts (self-hosted — no external dependency)
   ============================================================= */
@font-face { font-family:"Poppins"; font-style:normal; font-weight:600; font-display:swap; src:url("assets/fonts/poppins-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family:"Poppins"; font-style:normal; font-weight:700; font-display:swap; src:url("assets/fonts/poppins-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family:"Poppins"; font-style:normal; font-weight:800; font-display:swap; src:url("assets/fonts/poppins-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:400; font-display:swap; src:url("assets/fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:500; font-display:swap; src:url("assets/fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap; src:url("assets/fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:700; font-display:swap; src:url("assets/fonts/inter-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family:"JetBrains Mono"; font-style:normal; font-weight:400; font-display:swap; src:url("assets/fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family:"JetBrains Mono"; font-style:normal; font-weight:500; font-display:swap; src:url("assets/fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family:"JetBrains Mono"; font-style:normal; font-weight:600; font-display:swap; src:url("assets/fonts/jetbrains-mono-latin-600-normal.woff2") format("woff2"); }

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy-950: #04122E;
  --navy-900: #06152F;
  --navy-800: #0A2150;
  --navy-700: #0E2A66;
  --brand-800: #013A86;
  --brand-700: #0048A8;   /* logo blue (deep) */
  --brand-600: #0A5AD6;   /* primary interactive */
  --brand-500: #1E7FD6;
  --azure-400: #2CA6E0;
  --cyan-600:  #12B7C4;
  --cyan-500:  #17C9C9;
  --cyan-400:  #2ED9D9;   /* logo cyan */
  --cyan-300:  #7FEDEA;
  --cyan-200:  #B7F5F2;

  --ink:       #0B1E3D;
  --ink-soft:  #3B4C67;
  --ink-mute:  #6C7B93;
  --ink-faint: #97A3B6;
  --on-dark:      #EAF2FF;
  --on-dark-soft: #B4C6E6;
  --on-dark-mute: #8298BE;

  --bg:        #FFFFFF;
  --bg-tint:   #F2F7FF;   /* very light blue */
  --bg-soft:   #E9F1FD;
  --paper:     #FFFFFF;
  --paper-2:   #FFFFFF;
  --line:      rgba(11, 30, 61, 0.10);
  --line-soft: rgba(11, 30, 61, 0.06);
  --glass:     rgba(255, 255, 255, 0.62);
  --glass-line:rgba(255, 255, 255, 0.75);

  --grad-brand: linear-gradient(103deg, #0048A8 0%, #0A5AD6 40%, #1AA6D6 76%, #35DCDC 100%);
  --grad-brand-soft: linear-gradient(103deg, #0A5AD6 0%, #24C6D6 100%);
  --grad-cyan: linear-gradient(120deg, #0A5AD6 0%, #35DCDC 100%);
  --grad-dark: linear-gradient(158deg, #071A3A 0%, #0B2E6B 62%, #0C3E86 100%);
  --grad-text: linear-gradient(96deg, #0A5AD6 0%, #17B6D8 55%, #2BD3D3 100%);

  --sh-xs: 0 1px 2px rgba(8,40,102,.06);
  --sh-sm: 0 4px 16px -6px rgba(8,40,102,.16);
  --sh-md: 0 18px 38px -16px rgba(8,40,102,.22);
  --sh-lg: 0 40px 74px -26px rgba(8,40,102,.30);
  --sh-brand: 0 18px 40px -14px rgba(10,90,214,.42);
  --sh-cyan: 0 16px 36px -14px rgba(23,201,201,.42);

  --r-xs: 12px; --r-sm: 16px; --r: 22px; --r-lg: 28px;
  --r-xl: 36px; --r-2xl: 46px; --r-pill: 999px;

  --display: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gutter: clamp(1.15rem, 4vw, 2.4rem);
  --maxw: 1200px; --maxw-wide: 1320px; --nav-h: 84px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 14px); }
body {
  font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip; overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--display); text-wrap: balance; line-height: 1.06; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }
::selection { background: var(--cyan-300); color: var(--navy-900); }
:focus-visible { outline: 2.5px solid var(--brand-600); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .7rem 1.1rem; background: var(--brand-600); color: #fff; z-index: 9999; border-radius: 10px; font-weight: 700; }
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--maxw-wide); }
.container-narrow { max-width: 820px; }
.section { padding-block: clamp(3.6rem, 8vw, 7rem); position: relative; }
.section-sm { padding-block: clamp(2.6rem, 5vw, 4rem); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-600); padding: .42rem .82rem; border-radius: var(--r-pill);
  background: linear-gradient(120deg, rgba(10,90,214,.09), rgba(53,220,220,.14)); border: 1px solid rgba(10,90,214,.16);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(25,203,203,.22); }
.eyebrow--light { color: var(--cyan-200); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }

.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); line-height: 1.65; }
.muted { color: var(--ink-mute); }
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.left { margin-inline: 0; text-align: left; }
.section-title { font-size: clamp(1.9rem, 4.4vw, 3.05rem); }
.section-title.xl { font-size: clamp(2.2rem, 5.4vw, 3.6rem); }
.h-hero { font-size: clamp(2.5rem, 6.4vw, 4.7rem); line-height: 1.02; letter-spacing: -0.03em; }
.balance { text-wrap: balance; }
.mono { font-family: var(--mono); font-feature-settings: "tnum" 1; letter-spacing: -0.01em; }

.glow-top { position: relative; }
.glow-top::before { content: ""; position: absolute; inset: -20% -10% auto -10%; height: 50%; background: radial-gradient(50% 100% at 50% 0%, rgba(10,90,214,.08), transparent 70%); pointer-events: none; z-index: 0; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn { --btn-py: .85rem; --btn-px: 1.5rem; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 700; font-size: .98rem; padding: var(--btn-py) var(--btn-px); border-radius: var(--r-pill);
  cursor: pointer; white-space: nowrap; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), opacity .3s; will-change: transform; }
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 46px -14px rgba(10,90,214,.55); }
.btn-cyan { background: linear-gradient(120deg, #12B9C6, #35DCDC); color: var(--navy-900); box-shadow: var(--sh-cyan); }
.btn-cyan:hover { transform: translateY(-2px); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost { background: rgba(10,90,214,.07); color: var(--brand-700); }
.btn-ghost:hover { background: rgba(10,90,214,.12); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--brand-600); color: var(--brand-700); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--brand-700); box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-lg { --btn-py: 1.05rem; --btn-px: 1.9rem; font-size: 1.05rem; }
.btn-sm { --btn-py: .6rem; --btn-px: 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; transform: none !important; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--display); font-weight: 700; color: var(--brand-600); }
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease-out); }
.link-arrow:hover { color: var(--brand-700); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =============================================================
   5. Navigation
   ============================================================= */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 500; height: var(--nav-h); display: flex; align-items: center;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(255,255,255,.8); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line-soft); box-shadow: 0 6px 24px -18px rgba(8,40,102,.5); }
.nav-inner { width: 100%; max-width: var(--maxw-wide); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand img { height: 54px; width: auto; }
@media (min-width: 960px) { .brand img { height: 66px; } }
.cta-logo { height: 68px; width: auto; margin: 0 auto 1.4rem; display: block; }
.nav-links { display: none; align-items: center; gap: .2rem; }
.nav-link { position: relative; font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--ink-soft); padding: .55rem .85rem; border-radius: var(--r-sm); transition: color .25s var(--ease-out), background .25s; }
.nav-link:hover { color: var(--brand-700); background: rgba(10,90,214,.06); }
.nav-link.is-active { color: var(--brand-700); }
.nav-actions { display: none; align-items: center; gap: .55rem; }
.nav-cta-wallet { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--display); font-weight: 700; font-size: .93rem; color: var(--brand-700);
  padding: .55rem .95rem; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1.5px rgba(10,90,214,.22); transition: background .25s, box-shadow .25s, transform .3s var(--ease-out); }
.nav-cta-wallet:hover { background: rgba(10,90,214,.07); transform: translateY(-1px); }
.nav-cta-wallet svg { width: 1.05em; height: 1.05em; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; border-radius: 12px; }
.nav-toggle span { width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
/* Language toggle (ES/EN) — pequeño y discreto */
.lang-toggle { display: inline-flex; align-items: center; gap: .34rem; font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .02em; line-height: 1; color: var(--ink-soft); background: transparent; border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: .42rem .6rem; cursor: pointer; -webkit-appearance: none; appearance: none; transition: color .2s, border-color .2s, background .25s, transform .3s var(--ease-out); }
.lang-toggle:hover { color: var(--brand-700); border-color: var(--brand-600); background: rgba(10,90,214,.06); transform: translateY(-1px); }
.lang-toggle:focus-visible { outline: 2.5px solid var(--brand-600); outline-offset: 2px; }
.lang-toggle svg { width: 14px; height: 14px; opacity: .78; flex-shrink: 0; }
.lang-toggle [data-lang-label] { min-width: 1.2em; text-align: center; }
.lang-toggle--mobile { margin-left: auto; }
.hero-photo .lang-toggle, .nav-solid .lang-toggle { color: var(--ink-soft); }
.lang-toggle--ondark { color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.28); }
.lang-toggle--ondark:hover { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.12); }
.lang-float-tr { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3; }

/* ---- Onboarding: botón validar mail ---- */
.ob-validate { margin: -.3rem 0 1.2rem; }
.ob-validate .btn { gap: .45rem; }
.ob-validate .btn svg { width: 16px; height: 16px; }
.ob-validate .btn.is-validated { color: #1a7f43; box-shadow: inset 0 0 0 1.6px #1a7f43; background: rgba(26,127,67,.07); cursor: default; transform: none; }

/* ---- Transferencia: validación de destino ---- */
.tr-verify { margin: .3rem 0 1rem; }
.tr-verify-check { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--ink-mute); padding: .75rem .9rem; background: var(--bg-tint); border-radius: 12px; }
.tr-spin { width: 15px; height: 15px; border: 2.5px solid rgba(10,90,214,.22); border-top-color: var(--brand-600); border-radius: 50%; animation: hp-spin .7s linear infinite; flex-shrink: 0; }
@keyframes hp-spin { to { transform: rotate(360deg); } }
.tr-holder { display: flex; align-items: center; gap: .7rem; padding: .8rem .9rem; background: rgba(26,127,67,.07); border: 1px solid rgba(26,127,67,.24); border-radius: 12px; }
.tr-holder-ic { width: 26px; height: 26px; border-radius: 50%; background: #1a7f43; color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.tr-holder > div { flex: 1; min-width: 0; }
.tr-holder b { display: block; font-size: .98rem; }
.tr-holder > div span { font-size: .82rem; color: var(--ink-mute); }
.tr-verified-badge { font-size: .72rem; font-weight: 700; color: #1a7f43; background: #fff; border: 1px solid rgba(26,127,67,.3); padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.tr-summary { margin-top: .2rem; }
.tr-sum-row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; }
.tr-sum-row span { color: var(--ink-mute); }
.tr-sum-row b { text-align: right; word-break: break-all; }

/* ---- Comprobante de transferencia (con marca) ---- */
.receipt { text-align: center; }
.receipt-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.receipt-logo { height: 30px; width: auto; }
.receipt-status { display: inline-flex; align-items: center; gap: .35rem; font-size: .76rem; font-weight: 700; color: #1a7f43; background: rgba(26,127,67,.1); padding: 4px 10px; border-radius: 20px; }
.receipt-status svg { width: 14px; height: 14px; }
.receipt-amount { font-family: var(--display); font-weight: 800; font-size: 2.1rem; color: var(--brand-800); margin: 1.1rem 0 .1rem; letter-spacing: -1px; }
.receipt-title { font-size: .86rem; color: var(--ink-mute); margin-bottom: 1.1rem; }
.receipt-rows { text-align: left; border-top: 1px dashed var(--line); padding-top: .6rem; }
.rc-row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
.rc-row span { color: var(--ink-mute); flex-shrink: 0; }
.rc-row b { text-align: right; word-break: break-all; }
.receipt-actions { display: flex; gap: .6rem; margin-top: 1.3rem; }
.receipt-actions .btn { flex: 1; }

/* ---- Pie: logos regulatorios (debajo del logo de HappyPay) ---- */
.footer-regs { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 1.6rem; }
.reg-logo { display: inline-flex; align-items: center; transition: transform .25s var(--ease-out), opacity .25s; }
.reg-logo:hover { transform: translateY(-2px); opacity: .82; }
.reg-logo img { display: block; width: auto; height: 46px; }
.reg-logo.reg-df img { height: 66px; }
.mobile-menu { position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 490; background: rgba(255,255,255,.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line); padding: 1.1rem var(--gutter) 1.6rem; transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .4s var(--ease-out), opacity .3s; box-shadow: var(--sh-lg); max-height: calc(100dvh - var(--nav-h)); overflow-y: auto; }
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a.m-link { display: flex; align-items: center; justify-content: space-between; font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); padding: .95rem .4rem; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a.m-link:hover { color: var(--brand-700); }
.mobile-actions { display: grid; gap: .7rem; margin-top: 1.2rem; }

/* =============================================================
   6. Hero / mesh / photo
   ============================================================= */
.mesh { position: absolute; inset: -20% -10% -10% -10%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 40% at 16% 22%, rgba(53,220,220,.30) 0%, transparent 62%),
    radial-gradient(44% 46% at 84% 18%, rgba(10,90,214,.26) 0%, transparent 60%),
    radial-gradient(50% 50% at 70% 88%, rgba(23,182,216,.20) 0%, transparent 60%),
    radial-gradient(40% 44% at 30% 92%, rgba(127,237,234,.20) 0%, transparent 60%);
  filter: blur(48px) saturate(130%); animation: meshDrift 26s ease-in-out infinite; }
@keyframes meshDrift { 0%,100% { transform: scale(1) translate(0,0) rotate(0deg); } 50% { transform: scale(1.14) translate(1.5%,-1.5%) rotate(7deg); } }
.mesh-dark { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.mesh-dark::before { content: ""; position: absolute; inset: -30%;
  background:
    radial-gradient(30% 40% at 18% 20%, rgba(53,220,220,.24) 0%, transparent 60%),
    radial-gradient(34% 44% at 82% 26%, rgba(46,123,239,.34) 0%, transparent 62%),
    radial-gradient(40% 50% at 60% 96%, rgba(23,203,203,.18) 0%, transparent 60%);
  filter: blur(60px); animation: meshDrift 30s ease-in-out infinite; }

.photo-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-lg); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11; }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,21,47,.34)); pointer-events: none; }
.photo-frame .pf-badge { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border: 1px solid var(--glass-line); border-radius: var(--r-pill); padding: .5rem .9rem; font-size: .84rem; font-weight: 700; color: var(--brand-700); box-shadow: var(--sh-sm); }
.photo-frame .pf-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(25,203,203,.22); }

.band-photo { position: relative; overflow: hidden; }
.band-photo > img.bandbg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.band-photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(4,18,46,.92) 30%, rgba(7,26,72,.78) 100%); }
.band-photo > .container { position: relative; z-index: 2; }

.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 4.5rem)); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; background: radial-gradient(1100px 560px at 82% -8%, rgba(53,220,220,.22), transparent 58%), radial-gradient(820px 460px at -5% 4%, rgba(10,90,214,.14), transparent 55%), linear-gradient(180deg, #EDF6FF 0%, #FFFFFF 64%); }
.hero-grid { display: grid; gap: clamp(2.4rem, 5vw, 3.5rem); align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 { margin-bottom: 1.2rem; }
.hero-sub { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--ink-soft); max-width: 44ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; margin-top: 2.1rem; }
.hero-trust .t-item { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--ink-mute); font-weight: 500; }
.hero-trust .t-item svg { width: 1.15rem; height: 1.15rem; color: var(--cyan-600); flex-shrink: 0; }
.hero-visual { position: relative; display: flex; justify-content: center; }

/* =============================================================
   7. Cards
   ============================================================= */
.card { background: var(--paper); border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--sh-sm); padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s; }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(10,90,214,.22); }
.glass-card { background: rgba(255,255,255,.72); border: 1px solid var(--glass-line); border-radius: var(--r-lg); box-shadow: var(--sh-md); }
@supports (backdrop-filter: blur(20px)) { .glass-card { background: var(--glass); backdrop-filter: blur(22px) saturate(170%); -webkit-backdrop-filter: blur(22px) saturate(170%); } }
.card-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(10,90,214,.12), rgba(53,220,220,.18)); color: var(--brand-600); margin-bottom: 1.1rem; }
.card-icon svg { width: 26px; height: 26px; }
.card-icon.solid { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.card h3 { font-size: 1.24rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.feature-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.pill-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600; color: var(--brand-700); background: rgba(10,90,214,.08); padding: .34rem .7rem; border-radius: var(--r-pill); }

.band-dark .glass-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
@supports (backdrop-filter: blur(20px)) { .band-dark .glass-card { background: rgba(255,255,255,.06); } }
.band-dark .card-icon { background: rgba(255,255,255,.1); color: var(--cyan-300); }

/* =============================================================
   8. Phone mockup (light app UI)
   ============================================================= */
.phone { position: relative; width: min(320px, 78vw); aspect-ratio: 320 / 660; border-radius: 46px; padding: 12px; background: linear-gradient(160deg, #0A1E3D, #06152F); box-shadow: 0 50px 90px -30px rgba(6,21,47,.5), inset 0 1px 2px rgba(255,255,255,.18); }
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 108px; height: 26px; background: #06152F; border-radius: 0 0 16px 16px; z-index: 5; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: linear-gradient(178deg, #F3F8FF 0%, #E9F1FE 100%); }
.phone-float { animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.pw { display: flex; flex-direction: column; height: 100%; font-size: 12px; }
.pw-top { background: var(--grad-brand); color: #fff; padding: 22px 18px 20px; border-radius: 0 0 26px 26px; }
.pw-brand { margin-bottom: 14px; }
.pw-brand img { height: 24px; width: auto; display: block; }
.pw-hi { font-size: 11px; opacity: .85; }
.pw-name { font-family: var(--display); font-weight: 700; font-size: 15px; }
.pw-balance-label { font-size: 10px; opacity: .8; margin-top: 14px; text-transform: uppercase; letter-spacing: .08em; }
.pw-balance { font-family: var(--display); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; margin-top: 2px; }
.pw-cvu { font-size: 9.5px; opacity: .8; margin-top: 8px; font-family: var(--mono); }
.pw-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; padding: 16px 14px; }
.pw-act { display: grid; gap: 5px; justify-items: center; font-size: 9px; color: var(--ink-soft); font-weight: 600; }
.pw-act i { width: 38px; height: 38px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(10,90,214,.10), rgba(53,220,220,.16)); color: var(--brand-600); }
.pw-act i svg { width: 17px; height: 17px; }
.pw-list { padding: 4px 14px; overflow: hidden; }
.pw-list h4 { font-family: var(--display); font-size: 11px; color: var(--ink); margin-bottom: 6px; }
.pw-row { display: flex; align-items: center; gap: 9px; padding: 7px 0; border-bottom: 1px solid var(--line-soft); }
.pw-row i { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; background: var(--bg-soft); color: var(--brand-600); }
.pw-row i svg { width: 15px; height: 15px; }
.pw-row .m { flex: 1; min-width: 0; }
.pw-row .m b { display: block; font-size: 11px; color: var(--ink); font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pw-row .m span { font-size: 9px; color: var(--ink-mute); }
.pw-row .amt { font-family: var(--mono); font-weight: 600; font-size: 11px; }
.pw-row .amt.in { color: #0FA36B; }
.pw-row .amt.out { color: var(--ink-soft); }
.float-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-line); border-radius: var(--r); padding: .7rem .95rem; box-shadow: var(--sh-md); font-weight: 600; font-size: .86rem; color: var(--ink); }
.float-chip i { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; }
.float-chip i svg { width: 18px; height: 18px; }
.float-chip.c1 { top: 8%; left: -6%; animation: floatY 5s ease-in-out infinite; }
.float-chip.c2 { bottom: 14%; right: -8%; animation: floatY 6.5s ease-in-out .6s infinite; }
.float-chip .i-green { background: rgba(15,163,107,.14); color: #0FA36B; }
.float-chip .i-cyan { background: rgba(25,203,203,.16); color: var(--cyan-600); }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: .55rem; color: var(--ink-mute); font-family: var(--display); font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
.marquee-item svg { width: 22px; height: 22px; color: var(--brand-500); opacity: .85; }

/* =============================================================
   10. Stats
   ============================================================= */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.1rem); letter-spacing: -0.03em; line-height: 1; background-image: var(--grad-text); }
.stat .lbl { color: var(--ink-mute); font-size: .92rem; margin-top: .4rem; }

/* =============================================================
   11. Steps
   ============================================================= */
.steps { display: grid; gap: 1.1rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; padding: 1.3rem 1.4rem; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--sh-xs); }
.step-num { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; color: #fff; background: var(--grad-brand); flex-shrink: 0; box-shadow: var(--sh-brand); }
.step h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* =============================================================
   12. Split
   ============================================================= */
.split { display: grid; gap: clamp(2rem, 5vw, 3.6rem); align-items: center; }
.check-list { display: grid; gap: .85rem; margin-top: 1.5rem; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; color: var(--ink-soft); }
.check-list li .ck { width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; background: linear-gradient(135deg, rgba(10,90,214,.12), rgba(53,220,220,.2)); color: var(--brand-600); }
.check-list li .ck svg { width: 15px; height: 15px; }
.check-list li b { color: var(--ink); font-family: var(--display); }

/* =============================================================
   13. Dark band / CTA
   ============================================================= */
.band-dark { position: relative; background: var(--grad-dark); color: var(--on-dark); overflow: hidden; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .muted, .band-dark p { color: var(--on-dark-soft); }
.cta-band { position: relative; text-align: center; }
.rounded-band { border-radius: var(--r-2xl); }

/* =============================================================
   14. FAQ
   ============================================================= */
.faq { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item[open] { border-color: rgba(10,90,214,.28); box-shadow: var(--sh-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; cursor: pointer; font-family: var(--display); font-weight: 700; font-size: 1.05rem; list-style: none; color: var(--ink); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; background: rgba(10,90,214,.08); color: var(--brand-600); transition: transform .35s var(--ease-out), background .3s, color .3s; }
.faq-item[open] .faq-q .ic { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq-a { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }
.faq-a p + p { margin-top: .7rem; }

/* =============================================================
   15. Footer (dark)
   ============================================================= */
.footer { background: #fff; color: var(--ink-soft); padding-top: clamp(3rem, 6vw, 4.5rem); position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.footer h4 { color: var(--ink); font-size: .95rem; font-family: var(--display); letter-spacing: .02em; margin-bottom: 1rem; }
.footer-top { display: grid; gap: 2.4rem; padding-bottom: 2.6rem; border-bottom: 1px solid var(--line); }
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; color: var(--ink-mute); font-size: .95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
.footer a.f-link { display: block; color: var(--ink-soft); padding: .32rem 0; font-size: .93rem; transition: color .25s; }
.footer a.f-link:hover { color: var(--brand-600); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-block: 1.6rem; color: var(--ink-mute); font-size: .84rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(10,90,214,.08); color: var(--brand-700); transition: background .25s, color .25s, transform .3s var(--ease-out); }
.footer-socials a:hover { background: var(--brand-600); color: #fff; transform: translateY(-2px); }
.footer-socials a svg { width: 19px; height: 19px; }
.footer-legal-note { max-width: 100%; color: var(--ink-mute); font-size: .78rem; line-height: 1.6; padding-block: 1.2rem 2rem; border-top: 1px solid var(--line-soft); }

/* =============================================================
   16. Reveal / splash
   ============================================================= */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split], .js .reveal[data-split] { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
.splash { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; background: var(--grad-dark); transition: opacity .6s var(--ease-out), clip-path .7s var(--ease-out); animation: splashSafety .01s 4.5s forwards; }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }
.splash img { height: 76px; animation: splashPulse 1.6s var(--ease-out) infinite; }
@keyframes splashPulse { 0%,100% { opacity: .55; transform: scale(.97); } 50% { opacity: 1; transform: scale(1); } }

/* =============================================================
   17. Responsive
   ============================================================= */
@media (min-width: 600px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } .stats { grid-template-columns: repeat(4, 1fr); } .footer-cols { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 960px) {
  :root { --nav-h: 94px; }
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
  .lang-toggle--mobile { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-visual { order: -1; }
  .feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .steps.cols-2 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.4fr 2fr; gap: 3rem; }
}

/* =============================================================
   18. View transitions + reduced motion
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .5s; animation-timing-function: var(--ease-out); }
::view-transition-old(root) { animation-name: vtOut; }
::view-transition-new(root) { animation-name: vtIn; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(10px); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mesh, .mesh-dark::before, .phone-float, .float-chip, .splash img { animation: none !important; }
  .marquee-track { animation-duration: 90s; }
  .reveal { transition-duration: .4s; }
}

/* =============================================================
   19. Forms
   ============================================================= */
.field { display: grid; gap: .45rem; margin-bottom: 1.05rem; }
.field > label, .field-label { font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field .req { color: #E0483B; }
.field-hint { font-size: .8rem; color: var(--ink-mute); }
.field-hint b { color: var(--ink-soft); }
.input, .select, .textarea { width: 100%; padding: .85rem 1rem; border-radius: var(--r-sm); background: var(--paper); color: var(--ink); border: 1.5px solid var(--line); font-size: 1rem; transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s; }
.input::placeholder, .textarea::placeholder { color: var(--ink-faint); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 4px rgba(10,90,214,.13); }
.textarea { min-height: 120px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C7B93' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.6rem; }
.field-row { display: grid; gap: 1.05rem; }
@media (min-width: 620px) { .field-row.two { grid-template-columns: 1fr 1fr; } .field-row.three { grid-template-columns: repeat(3,1fr); } .field-row.two-one { grid-template-columns: 2fr 1fr; } }
.input-group { position: relative; }
.input-group .ig-prefix { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--ink-mute); font-weight: 600; pointer-events: none; }
.input-group .input { padding-left: 2.4rem; }
.field.error .input, .field.error .select, .field.error .textarea { border-color: #E0483B; box-shadow: 0 0 0 4px rgba(224,72,59,.12); }
.err-msg { display: none; font-size: .82rem; color: #E0483B; font-weight: 500; align-items: center; gap: .35rem; }
.field.error .err-msg { display: flex; }

.check { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check .box { width: 24px; height: 24px; border-radius: 8px; border: 1.5px solid var(--line); background: var(--paper); display: grid; place-items: center; flex-shrink: 0; transition: background .2s, border-color .2s; margin-top: 1px; }
.check .box svg { width: 15px; height: 15px; color: #fff; opacity: 0; transform: scale(.5); transition: opacity .2s, transform .25s var(--ease-bounce); }
.check input:checked + .box { background: var(--grad-brand); border-color: transparent; }
.check input:checked + .box svg { opacity: 1; transform: scale(1); }
.check input:focus-visible + .box { box-shadow: 0 0 0 4px rgba(10,90,214,.18); }
.check .txt { font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.check .txt a { color: var(--brand-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.choice-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .choice-grid.two { grid-template-columns: 1fr 1fr; } }
.choice { position: relative; display: grid; gap: .2rem; cursor: pointer; padding: 1.4rem 1.4rem 1.4rem 3.4rem; border-radius: var(--r-lg); background: var(--paper); border: 1.5px solid var(--line); transition: border-color .25s var(--ease-out), box-shadow .25s, transform .3s var(--ease-out), background .25s; }
.choice:hover { border-color: rgba(10,90,214,.4); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.choice input { position: absolute; opacity: 0; }
.choice .radio { position: absolute; left: 1.25rem; top: 1.55rem; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); transition: border-color .2s; }
.choice .radio::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--grad-brand); transform: scale(0); transition: transform .25s var(--ease-bounce); }
.choice input:checked ~ .radio { border-color: var(--brand-600); }
.choice input:checked ~ .radio::after { transform: scale(1); }
.choice:has(input:checked) { border-color: var(--brand-600); box-shadow: 0 0 0 4px rgba(10,90,214,.12); background: linear-gradient(180deg, rgba(10,90,214,.03), transparent); }
.choice input:focus-visible ~ .radio { box-shadow: 0 0 0 4px rgba(10,90,214,.18); }
.choice .c-title { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.choice .c-desc { font-size: .88rem; color: var(--ink-mute); }

.type-card { position: relative; display: flex; flex-direction: column; gap: .6rem; text-align: left; cursor: pointer; padding: 1.8rem; border-radius: var(--r-xl); background: var(--paper); border: 1.5px solid var(--line); box-shadow: var(--sh-xs); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s; }
.type-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(10,90,214,.3); }
.type-card .tc-ic { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); margin-bottom: .3rem; }
.type-card .tc-ic svg { width: 30px; height: 30px; }
.type-card h3 { font-size: 1.35rem; }
.type-card p { color: var(--ink-soft); font-size: .95rem; }
.type-card .tc-go { margin-top: .6rem; color: var(--brand-600); font-weight: 700; font-family: var(--display); display: inline-flex; align-items: center; gap: .4rem; }
.type-card .tc-go svg { width: 1.1em; transition: transform .3s var(--ease-out); }
.type-card:hover .tc-go svg { transform: translateX(5px); }

.file-drop { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; border-radius: var(--r); border: 1.6px dashed rgba(10,90,214,.35); background: rgba(10,90,214,.03); cursor: pointer; transition: background .25s, border-color .25s, transform .3s var(--ease-out); }
.file-drop:hover { background: rgba(10,90,214,.06); border-color: var(--brand-600); }
.file-drop .fd-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; background: linear-gradient(135deg, rgba(10,90,214,.12), rgba(53,220,220,.2)); color: var(--brand-600); }
.file-drop .fd-ic svg { width: 22px; height: 22px; }
.file-drop .fd-txt b { display: block; font-family: var(--display); font-size: .96rem; color: var(--ink); }
.file-drop .fd-txt span { font-size: .82rem; color: var(--ink-mute); }
.file-drop.is-loaded { border-style: solid; border-color: #0FA36B; background: rgba(15,163,107,.06); }
.file-drop.is-loaded .fd-ic { background: rgba(15,163,107,.14); color: #0FA36B; }

/* =============================================================
   20. Onboarding
   ============================================================= */
.ob-page { min-height: 100dvh; background: var(--bg-tint); }
.ob-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); }
.ob-header-in { max-width: 1080px; margin-inline: auto; padding: .9rem var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ob-header .brand img { height: 46px; }
.ob-exit { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; color: var(--ink-mute); }
.ob-exit:hover { color: var(--brand-700); }
.ob-progress-bar { height: 4px; background: var(--bg-soft); position: relative; overflow: hidden; }
.ob-progress-fill { position: absolute; inset: 0 auto 0 0; width: 0%; background: var(--grad-brand); border-radius: 0 4px 4px 0; transition: width .5s var(--ease-out); }
.ob-main { max-width: 1080px; margin-inline: auto; padding: clamp(1.6rem, 4vw, 3rem) var(--gutter) 7rem; }
.ob-layout { display: grid; gap: 2.4rem; }
@media (min-width: 900px) { .ob-layout { grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; } }
.ob-rail { display: none; position: sticky; top: 100px; }
@media (min-width: 900px) { .ob-rail { display: block; } }
.ob-rail .rail-type { font-family: var(--display); font-weight: 700; color: var(--brand-700); font-size: .9rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.rail-step { display: grid; grid-template-columns: auto 1fr; gap: .9rem; padding-bottom: 1.4rem; position: relative; }
.rail-step::before { content: ""; position: absolute; left: 15px; top: 32px; bottom: -2px; width: 2px; background: var(--line); }
.rail-step:last-child::before { display: none; }
.rail-step .rs-dot { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; background: var(--bg-soft); color: var(--ink-mute); font-weight: 700; font-size: .85rem; border: 2px solid transparent; transition: all .3s; z-index: 1; }
.rail-step .rs-dot svg { width: 15px; height: 15px; }
.rail-step .rs-label { font-size: .9rem; color: var(--ink-mute); font-weight: 500; padding-top: .35rem; transition: color .3s; }
.rail-step.is-active .rs-dot { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.rail-step.is-active .rs-label { color: var(--ink); font-weight: 700; }
.rail-step.is-done .rs-dot { background: rgba(15,163,107,.14); color: #0FA36B; }
.rail-step.is-done::before { background: #0FA36B; }
.ob-mobstep { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
@media (min-width: 900px) { .ob-mobstep { display: none; } }
.ob-mobstep .ms-count { font-family: var(--display); font-weight: 700; color: var(--brand-700); font-size: .9rem; }
.ob-mobstep .ms-name { font-size: .88rem; color: var(--ink-mute); }
.ob-form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-sm); padding: clamp(1.5rem, 4vw, 2.6rem); }
.ob-step { display: none; animation: obIn .45s var(--ease-out); }
.ob-step.is-current { display: block; }
@keyframes obIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.ob-step-head { margin-bottom: 1.8rem; }
.ob-step-head .kick { font-family: var(--display); font-weight: 700; color: var(--brand-600); font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; }
.ob-step-head h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-top: .3rem; }
.ob-step-head p { color: var(--ink-soft); margin-top: .5rem; }
.section-label { font-family: var(--display); font-weight: 700; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-mute); margin: 1.6rem 0 .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line-soft); }
.section-label:first-child { margin-top: 0; }
.ob-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
.ob-nav .spacer { flex: 1; }
.otp-row { display: flex; gap: .6rem; }
.otp-row input { width: 54px; height: 62px; text-align: center; font-family: var(--display); font-weight: 800; font-size: 1.6rem; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--paper); transition: border-color .2s, box-shadow .2s; }
.otp-row input:focus { outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 4px rgba(10,90,214,.13); }
.review-block { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 1rem; }
.review-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.2rem; background: var(--bg-tint); }
.review-head b { font-family: var(--display); font-size: 1rem; }
.review-edit { font-size: .85rem; font-weight: 700; color: var(--brand-600); }
.review-body { padding: .5rem 1.2rem 1rem; }
.review-row { display: grid; grid-template-columns: 1fr 1.3fr; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; }
.review-row:last-child { border-bottom: none; }
.review-row .rk { color: var(--ink-mute); }
.review-row .rv { color: var(--ink); font-weight: 600; text-align: right; word-break: break-word; }
.doc-item { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: .7rem; }
.doc-item .di-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-soft); color: var(--brand-600); }
.doc-item .di-ic svg { width: 20px; height: 20px; }
.doc-item .di-txt b { display: block; font-family: var(--display); font-size: .96rem; }
.doc-item .di-txt span { font-size: .82rem; color: var(--ink-mute); }
.doc-item .di-status { font-size: .82rem; font-weight: 700; color: var(--ink-faint); }
.doc-item.is-loaded { border-color: #0FA36B; background: rgba(15,163,107,.05); }
.doc-item.is-loaded .di-ic { background: rgba(15,163,107,.14); color: #0FA36B; }
.doc-item.is-loaded .di-status { color: #0FA36B; }
.kyc-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .kyc-grid.three { grid-template-columns: repeat(3,1fr); } .kyc-grid.two { grid-template-columns: repeat(2,1fr); } }
.kyc-cap { text-align: center; padding: 1.6rem 1.2rem; border: 1.6px dashed rgba(10,90,214,.35); border-radius: var(--r-lg); background: rgba(10,90,214,.03); cursor: pointer; transition: background .25s, border-color .25s, transform .3s var(--ease-out); }
.kyc-cap:hover { background: rgba(10,90,214,.06); border-color: var(--brand-600); transform: translateY(-3px); }
.kyc-cap .kc-ic { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto .8rem; display: grid; place-items: center; background: linear-gradient(135deg, rgba(10,90,214,.12), rgba(53,220,220,.2)); color: var(--brand-600); }
.kyc-cap .kc-ic svg { width: 26px; height: 26px; }
.kyc-cap b { font-family: var(--display); font-size: .98rem; display: block; }
.kyc-cap span { font-size: .82rem; color: var(--ink-mute); }
.kyc-cap.is-loaded { border-style: solid; border-color: #0FA36B; background: rgba(15,163,107,.06); }
.kyc-cap.is-loaded .kc-ic { background: rgba(15,163,107,.16); color: #0FA36B; }
.ob-success { text-align: center; max-width: 620px; margin-inline: auto; padding: clamp(2rem,5vw,3.5rem) 0; }
.success-check { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.6rem; display: grid; place-items: center; background: var(--grad-brand); box-shadow: var(--sh-brand); }
.success-check svg { width: 46px; height: 46px; color: #fff; }
.success-check.pop { animation: popIn .6s var(--ease-bounce); }
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.ob-success h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
.ob-success p { color: var(--ink-soft); margin-top: .8rem; font-size: 1.08rem; }
.success-ref { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.6rem; padding: .8rem 1.3rem; border-radius: var(--r-pill); background: var(--bg-soft); font-family: var(--mono); font-weight: 600; color: var(--brand-700); }
.success-next { display: grid; gap: .8rem; text-align: left; margin: 2.2rem auto 0; max-width: 460px; }
.success-next .sn-item { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: center; padding: 1rem 1.2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-xs); }
.success-next .sn-item i { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-soft); color: var(--brand-600); }
.success-next .sn-item i svg { width: 19px; height: 19px; }
.success-next .sn-item b { font-family: var(--display); font-size: .95rem; display: block; }
.success-next .sn-item span { font-size: .84rem; color: var(--ink-mute); }

/* =============================================================
   21. Wallet app (light)
   ============================================================= */
.auth-page { min-height: 100dvh; display: grid; place-items: center; position: relative; overflow: hidden; padding: 2rem var(--gutter); background: var(--grad-dark); }
.auth-card { position: relative; z-index: 2; width: 100%; max-width: 430px; background: var(--paper); border-radius: var(--r-2xl); box-shadow: var(--sh-lg); padding: clamp(1.8rem, 5vw, 2.8rem); }
.auth-logo { height: 60px; margin: 0 auto 1.4rem; }
.auth-card h1 { font-size: 1.7rem; text-align: center; }
.auth-card .sub { text-align: center; color: var(--ink-mute); margin-top: .4rem; margin-bottom: 1.8rem; }
.auth-demo-note { margin-top: 1.4rem; padding: .85rem 1rem; border-radius: var(--r-sm); background: rgba(10,90,214,.06); font-size: .82rem; color: var(--ink-soft); display: flex; gap: .6rem; align-items: flex-start; }
.auth-demo-note svg { width: 18px; height: 18px; color: var(--brand-600); flex-shrink: 0; margin-top: 1px; }
.auth-back { position: absolute; top: 1.5rem; left: 1.5rem; z-index: 3; color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; }
.auth-back:hover { color: #fff; }
.app { display: none; min-height: 100dvh; background: var(--bg-tint); }
.app.is-authed { display: block; }
.auth-page.is-authed { display: none; }
.app-bar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); }
.app-bar-in { max-width: 1080px; margin-inline: auto; padding: .8rem var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.app-bar .brand img { height: 46px; }
.app-user { display: flex; align-items: center; gap: .7rem; }
.app-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; font-family: var(--display); font-weight: 800; font-size: .95rem; }
.app-user .u-meta { display: none; }
@media (min-width: 640px) { .app-user .u-meta { display: block; text-align: right; } .app-user .u-meta b { font-size: .9rem; font-family: var(--display); display: block; } .app-user .u-meta span { font-size: .78rem; color: var(--ink-mute); } }
.app-logout { color: var(--ink-mute); padding: .5rem; border-radius: 10px; }
.app-logout:hover { color: #E0483B; background: rgba(224,72,59,.08); }
.app-main { max-width: 1080px; margin-inline: auto; padding: clamp(1.4rem, 4vw, 2.4rem) var(--gutter) 6rem; }
.app-layout { display: grid; gap: 1.4rem; }
@media (min-width: 860px) { .app-layout { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.balance-hero { position: relative; overflow: hidden; background: var(--grad-brand); color: #fff; border-radius: var(--r-2xl); padding: clamp(1.6rem, 4vw, 2.2rem); box-shadow: var(--sh-brand); }
.balance-hero::after { content: ""; position: absolute; right: -40px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.12); }
.balance-hero .bh-top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.balance-hero .bh-label { font-size: .82rem; opacity: .85; text-transform: uppercase; letter-spacing: .07em; }
.balance-hero .eye { color: #fff; opacity: .8; padding: .3rem; }
.balance-hero .eye:hover { opacity: 1; }
.balance-hero .bh-amt { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 7vw, 3rem); letter-spacing: -0.02em; margin-top: .3rem; position: relative; z-index: 1; }
.balance-hero .bh-cvu { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.2rem; position: relative; z-index: 1; }
.balance-hero .bh-cvu .cv { font-size: .82rem; }
.balance-hero .bh-cvu .cv span { opacity: .7; display: block; font-size: .72rem; }
.balance-hero .bh-cvu .cv b { font-family: var(--mono); font-weight: 600; font-size: .9rem; }
.copy-btn { color: #fff; opacity: .8; margin-left: .3rem; }
.copy-btn:hover { opacity: 1; }
.copy-btn svg { width: 14px; height: 14px; display: inline; }
.qa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; margin-top: 1.4rem; }
.qa { display: grid; gap: .5rem; justify-items: center; padding: .5rem; border-radius: var(--r); text-align: center; transition: transform .3s var(--ease-out); }
.qa:hover { transform: translateY(-3px); }
.qa i { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--paper); color: var(--brand-600); box-shadow: var(--sh-sm); }
.qa i svg { width: 23px; height: 23px; }
.qa span { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.92); }
.app-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-xs); padding: 1.3rem 1.4rem; }
.app-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.app-card-head h3 { font-size: 1.1rem; }
.app-card-head a { font-size: .84rem; font-weight: 700; color: var(--brand-600); }
.mv-filters { display: flex; gap: .5rem; margin-bottom: .3rem; flex-wrap: wrap; }
.mv-chip { font-size: .82rem; font-weight: 600; padding: .4rem .85rem; border-radius: var(--r-pill); background: var(--bg-soft); color: var(--ink-soft); transition: background .2s, color .2s; }
.mv-chip.is-active { background: var(--grad-brand); color: #fff; }
.mv-row { display: grid; grid-template-columns: auto 1fr auto; gap: .9rem; align-items: center; padding: .85rem 0; border-bottom: 1px solid var(--line-soft); }
.mv-row:last-child { border-bottom: none; }
.mv-row .mv-ic { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; background: var(--bg-soft); color: var(--brand-600); }
.mv-row .mv-ic svg { width: 19px; height: 19px; }
.mv-row .mv-ic.in { background: rgba(15,163,107,.12); color: #0FA36B; }
.mv-row .mv-meta b { font-family: var(--display); font-size: .96rem; display: block; }
.mv-row .mv-meta span { font-size: .8rem; color: var(--ink-mute); }
.mv-row .mv-amt { font-family: var(--mono); font-weight: 600; font-size: .98rem; text-align: right; }
.mv-row .mv-amt.in { color: #0FA36B; }
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px); z-index: 999; background: var(--navy-900); color: #fff; padding: .85rem 1.3rem; border-radius: var(--r-pill); box-shadow: var(--sh-lg); font-weight: 600; font-size: .92rem; display: flex; align-items: center; gap: .5rem; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease-out), transform .4s var(--ease-out); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--cyan-400); }
.sheet-back { position: fixed; inset: 0; z-index: 800; background: rgba(6,21,47,.55); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; display: grid; place-items: end center; }
.sheet-back.open { opacity: 1; pointer-events: auto; }
.sheet { width: 100%; max-width: 480px; background: var(--paper); border-radius: var(--r-2xl) var(--r-2xl) 0 0; padding: 1.6rem clamp(1.3rem,4vw,2rem) 2rem; transform: translateY(100%); transition: transform .4s var(--ease-out); max-height: 92dvh; overflow-y: auto; }
@media (min-width: 560px) { .sheet-back { place-items: center; } .sheet { border-radius: var(--r-2xl); } }
.sheet-back.open .sheet { transform: translateY(0); }
.sheet-handle { width: 44px; height: 5px; border-radius: 3px; background: var(--line); margin: 0 auto 1.2rem; }
.sheet h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }

/* =============================================================
   22. Misc
   ============================================================= */
.badge-soft { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700; padding: .3rem .7rem; border-radius: var(--r-pill); }
.badge-green { background: rgba(15,163,107,.12); color: #0B8A5A; }
.badge-blue { background: rgba(10,90,214,.1); color: var(--brand-700); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 1.4rem; }
.two-col-text { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .two-col-text { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
.icon-list { display: grid; gap: 1rem; }
.icon-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.icon-list li .il-ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: linear-gradient(135deg, rgba(10,90,214,.1), rgba(53,220,220,.18)); color: var(--brand-600); }
.icon-list li .il-ic svg { width: 20px; height: 20px; }
.icon-list li b { font-family: var(--display); color: var(--ink); display: block; margin-bottom: .1rem; }
.icon-list li p { font-size: .92rem; color: var(--ink-soft); }
.pricing-grid { display: grid; gap: 1.3rem; }
@media (min-width: 900px) { .pricing-grid.three { grid-template-columns: repeat(3,1fr); } }
.price-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 1.8rem; box-shadow: var(--sh-xs); transition: transform .4s var(--ease-out), box-shadow .4s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.price-card.featured { border-color: transparent; box-shadow: var(--sh-lg); background: linear-gradient(180deg, rgba(10,90,214,.04), var(--paper)); outline: 2px solid var(--brand-600); }
.price-card .p-name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.price-card .p-price { font-family: var(--display); font-weight: 800; font-size: 2.2rem; margin: .6rem 0; letter-spacing: -0.02em; }
.price-card .p-price small { font-size: .9rem; font-weight: 600; color: var(--ink-mute); }
.price-card ul { display: grid; gap: .7rem; margin: 1.2rem 0 1.6rem; }
.price-card ul li { display: grid; grid-template-columns: auto 1fr; gap: .6rem; font-size: .92rem; color: var(--ink-soft); }
.price-card ul li svg { width: 18px; height: 18px; color: #0FA36B; margin-top: 2px; }
.price-tag-top { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; font-size: .74rem; font-weight: 700; padding: .3rem .9rem; border-radius: var(--r-pill); box-shadow: var(--sh-brand); }
.code-window { background: #061024; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.08); }
.code-bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.code-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.code-bar .d1 { background: #FF5F57; } .code-bar .d2 { background: #FEBC2E; } .code-bar .d3 { background: #28C840; }
.code-bar .fname { margin-left: .5rem; font-family: var(--mono); font-size: .8rem; color: #6E85AE; }
.code-body { padding: 1.2rem 1.3rem; overflow-x: auto; font-family: var(--mono); font-size: .82rem; line-height: 1.75; color: #C6D4F0; }
.code-body .c-key { color: #7FEDEA; } .code-body .c-str { color: #9FE8A8; } .code-body .c-num { color: #F5C77E; } .code-body .c-com { color: #5A6E92; } .code-body .c-fn { color: #6FB0FF; }
@media (prefers-reduced-motion: reduce) { .ob-step, .success-check.pop { animation: none !important; } .qa:hover, .type-card:hover, .price-card:hover { transform: none; } }

/* Careers — native file input overlay (keeps required validation focusable) */
.file-drop { position: relative; }
.file-native { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.perk-grid { display: grid; gap: 1.2rem; }
@media (min-width: 760px) { .perk-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.perk { display: flex; gap: .9rem; align-items: flex-start; }
.perk .pk-ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(10,90,214,.1), rgba(53,220,220,.18)); color: var(--brand-600); }
.perk .pk-ic svg { width: 21px; height: 21px; }
.perk b { font-family: var(--display); display: block; margin-bottom: .2rem; }
.perk p { font-size: .92rem; color: var(--ink-mute); }

/* ============ Ualá-style warm components ============ */
.h-mega { font-size: clamp(2.7rem, 7vw, 5rem); line-height: 1.0; letter-spacing: -0.035em; }
.lead-lg { font-size: clamp(1.1rem, 2.1vw, 1.45rem); color: var(--ink-soft); line-height: 1.5; }
.eyebrow-pill { display:inline-flex; align-items:center; gap:.5rem; font-size:.8rem; font-weight:700; letter-spacing:.01em; color:var(--brand-700); background:var(--bg-soft); padding:.5rem 1rem; border-radius:var(--r-pill); }
.eyebrow-pill::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--cyan-500); box-shadow:0 0 0 4px rgba(25,203,203,.22); }

/* Vibrant rounded color block (Ualá signature) */
.color-block { position: relative; border-radius: var(--r-2xl); overflow: hidden; background: var(--grad-brand); color:#fff; padding: clamp(1.9rem,5vw,3.8rem); box-shadow: var(--sh-brand); }
.color-block.cyan { background: linear-gradient(122deg,#0A5AD6 0%, #19B0D8 55%, #35DCDC 100%); }
.color-block h1, .color-block h2, .color-block h3 { color:#fff; }
.color-block p { color: rgba(255,255,255,.92); }
.color-block .mesh-dark { opacity:.45; }
.cb-points { display:grid; gap:1rem; grid-template-columns:1fr; margin-top:1.8rem; position:relative; z-index:1; }
@media(min-width:680px){ .cb-points.cols-2{grid-template-columns:1fr 1fr;} }
@media(min-width:920px){ .cb-points.cols-4{grid-template-columns:repeat(4,1fr);} }
.cb-point { display:flex; gap:.7rem; align-items:flex-start; }
.cb-point .cbp-ic { width:40px;height:40px;border-radius:12px;flex-shrink:0;display:grid;place-items:center;background:rgba(255,255,255,.14);color:#fff; }
.cb-point .cbp-ic svg{width:20px;height:20px;}
.cb-point b{display:block;color:#fff;font-family:var(--display);margin-bottom:.15rem;}
.cb-point span{font-size:.9rem;color:rgba(255,255,255,.85);}

/* Soft pastel rounded tiles */
.tiles-grid { display:grid; gap:1.2rem; grid-template-columns:1fr; }
@media(min-width:640px){ .tiles-grid.cols-2{grid-template-columns:1fr 1fr;} }
@media(min-width:920px){ .tiles-grid.cols-3{grid-template-columns:repeat(3,1fr);} }
.tile { border-radius: var(--r-xl); padding: clamp(1.5rem,3vw,2.1rem); border:1px solid var(--line-soft); background:var(--bg-tint); transition: transform .4s var(--ease-out), box-shadow .4s; height:100%; }
.tile:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.tile.cyan { background: linear-gradient(160deg,#EBFBFB,#DCF4FF); }
.tile.blue { background: linear-gradient(160deg,#EEF4FF,#E4ECFF); }
.tile .tile-ic { width:54px; height:54px; border-radius:16px; display:grid; place-items:center; background:#fff; color:var(--brand-600); box-shadow:var(--sh-xs); margin-bottom:1rem; }
.tile .tile-ic svg { width:27px; height:27px; }
.tile h3 { font-size:1.2rem; margin-bottom:.4rem; }
.tile p { color:var(--ink-soft); font-size:.98rem; }

/* Big rounded photo */
.photo-round { border-radius: var(--r-2xl); overflow:hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/3.3; }
.photo-round img { width:100%; height:100%; object-fit:cover; }

/* Hero trust — warm pills */
.hero-trust-uala { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.8rem; }
.hero-trust-uala span { display:inline-flex; align-items:center; gap:.45rem; font-size:.9rem; font-weight:600; color:var(--ink-soft); background:#fff; border:1px solid var(--line); padding:.5rem .95rem; border-radius:var(--r-pill); box-shadow:var(--sh-xs); }
.hero-trust-uala svg { width:17px; height:17px; color:var(--cyan-600); }

/* ============ Ualá-style photo hero (fondo a pantalla completa) ============ */
.nav-solid { background: rgba(255,255,255,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line-soft); }
.hero-photo {
  background:
    linear-gradient(96deg, rgba(2,20,54,.95) 0%, rgba(1,58,134,.86) 40%, rgba(10,90,214,.50) 66%, rgba(26,166,214,.20) 100%),
    url("assets/img/feat-board.webp") center 30% / cover no-repeat;
  color: #fff; min-height: min(86vh, 720px); display: flex; align-items: center;
}
.hero-photo .mesh { display: none; }
.hero-photo .eyebrow-pill { background: rgba(255,255,255,.16); color: #fff; }
.hero-photo .eyebrow-pill::before { background: var(--cyan-300); box-shadow: 0 0 0 4px rgba(127,237,234,.25); }
.hero-photo h1, .hero-photo .h-mega { color: #fff; }
.hero-photo .grad-text { background: linear-gradient(96deg, #8CF3EF 0%, #E9FCFB 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-photo .lead-lg { color: rgba(255,255,255,.92); }
.hero-photo .hero-trust-uala span { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.24); color: #fff; }
.hero-photo .hero-trust-uala svg { color: var(--cyan-300); }

/* ============ Legal / prose pages ============ */
.legal { max-width: 840px; margin-inline: auto; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.legal .legal-meta { color: var(--ink-mute); font-size: .9rem; margin-top: .5rem; }
.legal-note { background: var(--bg-tint); border: 1px solid rgba(10,90,214,.16); border-radius: var(--r); padding: 1rem 1.25rem; margin: 1.5rem 0 2rem; font-size: .92rem; color: var(--ink-soft); }
.legal-note strong { color: var(--brand-700); }
.legal h2 { font-size: clamp(1.2rem, 2.6vw, 1.55rem); margin-top: 2.4rem; margin-bottom: .5rem; }
.legal h3 { font-size: 1.04rem; margin-top: 1.4rem; margin-bottom: .3rem; }
.legal p { color: var(--ink-soft); line-height: 1.75; margin-bottom: .9rem; }
.legal ul { padding-left: 1.25rem; list-style: disc; margin: 0 0 1rem; }
.legal ul li { color: var(--ink-soft); line-height: 1.7; margin-bottom: .45rem; }
.legal a { color: var(--brand-600); font-weight: 600; }
.legal a:hover { color: var(--brand-700); }
.legal strong { color: var(--ink); }
.legal .ph { background: rgba(245,199,126,.28); border-radius: 5px; padding: 0 .25em; font-style: normal; }
