:root {
  --navy: #1c2440;
  --navy-deep: #12172b;
  --blue: #2e4a9e;
  --blue-bright: #3d5bc7;
  --ink: #24262b;
  --paper: #ffffff;
  --cream: #f6f5f2;
  --line: #e4e2dc;
  --muted: #6b6d76;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
section { position: relative; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-bright);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; }
p { line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 36, 64, 0);
  transition: background .25s ease, box-shadow .25s ease;
}
header.scrolled {
  background: rgba(18, 23, 43, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 34px; }
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: #f2f2f0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  opacity: .88;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: #f2f2f0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 12px;
  cursor: pointer;
}
.lang-toggle button.active { background: var(--blue-bright); }
.nav-cta {
  background: var(--blue-bright);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  white-space: nowrap;
}
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, #0d1120 100%);
  padding-top: 110px;
}
.hero-art {
  position: absolute;
  top: 0; right: 0;
  width: min(58vw, 900px);
  height: 100%;
  opacity: .9;
  pointer-events: none;
}
.hero-art svg { width: 100%; height: 100%; }
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px 90px;
  width: 100%;
}
.hero-tag {
  color: #cdd4f2;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); }
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 22px;
}
.hero p.lead {
  color: #d6d8e3;
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  transition: transform .15s ease, background .2s ease;
}
.btn-primary { background: var(--blue-bright); color: #fff; }
.btn-primary:hover { background: #4a6bd9; transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { border-color: #fff; }
.btn-dark { border: 1px solid rgba(28,36,64,.25); color: var(--navy); }
.btn-dark:hover { border-color: var(--navy); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 30px;
  max-width: 640px;
}
.hero-stats .num {
  font-family: var(--serif);
  color: #fff;
  font-size: 34px;
  margin-bottom: 4px;
}
.hero-stats .label {
  color: #b9bdd0;
  font-size: 13px;
}

/* ---------- Section shells ---------- */
.section { padding: 100px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-deep); color: #fff; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); margin-top: 14px; color: var(--navy); line-height: 1.15; }
.section-navy .section-head h2 { color: #fff; }
.section-head p { margin-top: 16px; font-size: 16px; }

/* ---------- Definition / brand identity ---------- */
.definition-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}
.definition-card { max-width: 720px; margin: 0 auto; text-align: center; }
.definition-word {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 7vw, 68px);
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.definition-word .pos {
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--blue-bright);
  text-transform: lowercase;
}
.definition-text {
  font-size: 19px;
  color: var(--ink);
  max-width: 560px;
  margin: 22px auto 0;
  line-height: 1.5;
}
.definition-tagline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--blue);
  margin-top: 18px;
}

/* ---------- Offer cards (3-up) ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
}
.offer-card .ico { font-size: 26px; margin-bottom: 18px; }
.offer-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.offer-card p { font-size: 14.5px; }
.offer-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}
.offer-card-dark h3 { color: #fff; }
.offer-card-dark p { color: #b9bdd0; }

/* ---------- Asset classes grid ---------- */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.asset-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 30px 26px;
  color: #fff;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s ease, background .2s ease;
}
.asset-card:hover { background: var(--blue); transform: translateY(-3px); }
.asset-card .ico { font-size: 24px; margin-bottom: 34px; opacity: .9; }
.asset-card h3 { font-size: 17px; margin-bottom: 6px; }
.asset-card p { color: #c7cbe0; font-size: 13px; }

/* ---------- Markets ---------- */
.markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.market-card {
  border-top: 3px solid var(--blue-bright);
  padding-top: 22px;
}
.market-card .flag { font-size: 22px; margin-bottom: 10px; }
.market-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 14px; font-family: var(--serif); }
.market-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.market-card li { font-size: 14px; color: var(--muted); line-height: 1.55; padding-left: 16px; position: relative; }
.market-card li::before { content: '—'; position: absolute; left: 0; color: var(--blue-bright); }

/* ---------- Split feature (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split .art {
  border-radius: 6px;
  width: 100%;
  height: 420px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.split .art svg { width: 78%; height: 78%; }
.split .kicker { color: var(--blue-bright); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.split h2 { font-size: clamp(24px, 3vw, 34px); color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.split .checks { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.split .checks div { display: flex; gap: 12px; font-size: 14px; color: var(--muted); align-items: flex-start; line-height: 1.5; }
.split .checks span.mark { color: var(--blue-bright); font-weight: 700; }
.split.reverse { grid-template-columns: 1fr 1fr; }
.split.reverse .img-col { order: 2; }
.split.reverse .text-col { order: 1; }

/* ---------- Market trends ---------- */
.trend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.trend-card {
  background: var(--navy);
  border-radius: 10px;
  overflow: hidden;
  padding: 32px 30px 34px;
  color: #fff;
}
.trend-art {
  background: linear-gradient(155deg, var(--blue) 0%, var(--navy-deep) 100%);
  border-radius: 8px;
  margin: -32px -30px 24px;
  padding: 24px 20px;
}
.trend-art svg { width: 100%; height: auto; display: block; }
.trend-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #cdd4f2;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.trend-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: 14px; }
.trend-card p { color: #b9bdd0; font-size: 14px; margin-bottom: 22px; }
.trend-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
}
.trend-stats .n { font-family: var(--serif); font-size: 26px; color: #fff; margin-bottom: 4px; }
.trend-stats .l { font-size: 12.5px; color: #9aa0be; line-height: 1.4; }

/* ---------- Investment insight ---------- */
.insight-section { padding: 0 0 100px; }
.insight-box {
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 10px;
  padding: 56px 60px;
  color: #fff;
}
.insight-box .eyebrow { color: #cdd4f2; }
.insight-box h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin-top: 14px; max-width: 680px; line-height: 1.2; }
.insight-box > p { color: #d6d8e3; margin-top: 18px; max-width: 680px; font-size: 16px; }
.insight-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0 36px;
}
.insight-points .ico { font-size: 24px; margin-bottom: 12px; }
.insight-points h3 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.insight-points p { color: #b9bdd0; font-size: 13.5px; }

/* ---------- Security grid ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sec-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 28px; }
.sec-card h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.sec-card p { color: #aeb2c6; font-size: 14px; }
.confidential {
  margin-top: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.confidential .tag { color: var(--blue-bright); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.confidential p { color: #c7cbe0; font-size: 14px; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 46px; }
.step .n {
  position: absolute; top: 0; left: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; color: var(--blue);
}
.step h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 13px; }
.remote-note {
  margin-top: 46px;
  background: #fff;
  border: 1px dashed var(--blue-bright);
  border-radius: 6px;
  padding: 20px 24px;
}
.remote-note .tag { color: var(--blue); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; display:block; margin-bottom: 6px;}
.remote-note p { font-size: 14px; color: var(--muted); }

/* ---------- Founders ---------- */
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.founder-card { display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 26px; }
.avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; flex-shrink: 0;
}
.avatar-photo {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.founder-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 2px; }
.founder-card .role { color: var(--blue-bright); font-size: 12.5px; font-weight: 600; margin-bottom: 10px; display: block; }
.founder-card p { font-size: 13.5px; }

/* ---------- Press / news ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue-bright);
  border-radius: 4px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card-award { border-left-color: #c79a3d; background: #fbf7ee; }
.news-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(46,74,158,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}
.news-card-award .news-badge { color: #a67a1f; background: rgba(199,154,61,0.14); }
.news-src { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.news-card h3 { font-size: 16px; color: var(--navy); line-height: 1.4; font-family: var(--serif); font-weight: 600; }
.news-card-interview { border-left-color: #1db954; }
.news-card-interview .news-badge { color: #158a3f; background: rgba(29,185,84,0.12); }
.news-links { display: flex; gap: 10px; margin-top: 4px; }
.news-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px;
  transition: border-color .2s ease, color .2s ease;
}
.news-links a:hover { border-color: var(--blue-bright); color: var(--blue-bright); }

/* ---------- Deals ---------- */
.deals-kpi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: var(--navy);
  border-radius: 8px;
  padding: 36px 40px;
  margin-bottom: 32px;
}
.deals-kpi-3 { grid-template-columns: repeat(3, 1fr); }
.deals-kpi .num {
  font-family: var(--serif);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.deals-kpi .label {
  color: #b9bdd0;
  font-size: 14px;
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.deal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px;
}
.deal-stage {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(46,74,158,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.deal-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.deal-amount { font-family: var(--serif); font-size: 22px; color: var(--blue); }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
.contact-people { display: flex; flex-direction: column; gap: 26px; }
.person { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 18px; }
.person h3 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.person .role { color: #9aa0be; font-size: 12.5px; display: block; margin-bottom: 8px; }
.person a.email { color: #cdd4f2; font-size: 14px; display: block; margin-bottom: 4px; }
.person .tel { color: #9aa0be; font-size: 13px; }
.contact-cta {
  background: linear-gradient(160deg, var(--blue), var(--navy-deep));
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-cta h2 { color: #fff; font-size: 28px; margin-bottom: 16px; line-height: 1.2; }
.contact-cta p { color: #d6d8e3; margin-bottom: 26px; font-size: 15px; }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #8b8fac; padding: 40px 0 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-inner img { height: 24px; opacity: .85; filter: brightness(0) invert(1); }
.footer-inner .fine { font-size: 12.5px; }
.footer-inner .fine a { text-decoration: underline; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Lang visibility ---------- */
[data-en] { display: none; }
html[lang="en"] [data-es] { display: none; }
html[lang="en"] [data-en] { display: revert; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    background: none; border: none; color: #fff;
    font-size: 22px; cursor: pointer;
  }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-5, .markets, .founders, .grid-2, .news-grid, .deals-grid, .deals-kpi, .deals-kpi-3, .insight-points, .trend-grid, .trend-stats { grid-template-columns: 1fr; }
  .insight-box { padding: 40px 28px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .img-col, .split.reverse .text-col { order: 0; }
  .split .art { height: 240px; }
  .hero-art { width: 100%; opacity: .35; }
  .process { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .wrap { padding: 0 20px; }
  .hero-inner { padding: 0 20px 60px; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
}
