:root {
  --bg: #020713;
  --bg-soft: #07101f;
  --panel: rgba(10, 21, 38, .72);
  --panel-solid: #0a1424;
  --line: rgba(255,255,255,.105);
  --line-strong: rgba(255,255,255,.18);
  --text: #f5f7fb;
  --muted: #aab5c7;
  --muted-2: #7e899b;
  --blue: #7d97ff;
  --blue-2: #4f6adf;
  --gold: #dab877;
  --green: #7be6c4;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 30px 100px rgba(0,0,0,.38);
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 10%, rgba(38,73,142,.18), transparent 30%),
    radial-gradient(circle at 12% 36%, rgba(24,56,108,.12), transparent 34%),
    linear-gradient(180deg, #020713 0%, #030815 42%, #01040b 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .035;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.section-shell { width: var(--shell); margin: 0 auto; }
.section { position: relative; padding: 138px 0; }
.kicker, .eyebrow {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  color: #b7c7e4;
}
.kicker { color: var(--gold); }
h1,h2,h3,p { margin-top: 0; }
h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 530;
}
p { color: var(--muted); line-height: 1.68; }

.site-header {
  position: fixed;
  z-index: 100;
  left: 0; right: 0; top: 0;
  padding: 18px 0;
  transition: .35s ease;
}
.site-header.is-scrolled { background: rgba(2,7,19,.72); backdrop-filter: blur(22px) saturate(125%); border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-shell {
  width: min(1380px, calc(100vw - 42px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; justify-self: start; }
.brand-mark { width: 34px; color: #f3f6fb; }
.brand-text { font-size: 13px; letter-spacing: .24em; font-weight: 720; white-space: nowrap; }
.main-nav { display: flex; gap: 30px; align-items: center; }
.main-nav a { color: rgba(255,255,255,.75); font-size: 14px; transition: .2s; }
.main-nav a:hover { color: #fff; }
.nav-cta { justify-self: end; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: white; margin: 6px 0; transition: .3s; }

.button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 650;
  letter-spacing: -.015em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 43px; padding: 0 20px; font-size: 13px; }
.glass-button, .button-ghost {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(15px);
}
.glass-button:hover, .button-ghost:hover { background: rgba(255,255,255,.12); }
.liquid-button {
  position: relative;
  overflow: hidden;
  background: rgba(247,250,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38), inset 0 -10px 30px rgba(255,255,255,.04), 0 14px 42px rgba(0,0,0,.20);
  backdrop-filter: blur(15px) saturate(128%);
  color: #fff;
}
.liquid-button::before {
  content: "";
  position: absolute;
  width: 72%; height: 70%; left: 14%; top: -42%;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  filter: blur(12px);
  pointer-events: none;
}
.button-secondary { background: #eef3ff; color: #07101e; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; }
.text-link span { color: var(--gold); transition: .2s; }
.text-link:hover span { transform: translate(2px,2px); }
.text-button { border: 0; padding: 0; background: none; cursor: pointer; font-weight: 650; display: inline-flex; gap: 10px; color: #fff; }
.text-button span { color: var(--gold); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  background: #07101b;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: url('assets/hero-coast.webp');
  background-size: cover;
  background-position: center 54%;
  transform: scale(1.012);
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -3;
  background:
    linear-gradient(180deg, rgba(2,8,19,.70) 0%, rgba(2,8,19,.18) 38%, rgba(2,8,19,.20) 68%, rgba(2,7,16,.72) 100%),
    radial-gradient(circle at center 38%, rgba(7,16,30,.04), rgba(3,8,18,.34) 72%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  box-shadow: inset 0 0 180px 70px rgba(2,7,19,.48);
  pointer-events: none;
}
.hero-edge { position: absolute; top: -6%; bottom: -6%; width: 22%; z-index: -1; backdrop-filter: blur(15px); opacity: .72; }
.hero-edge-left { left: -9%; mask-image: linear-gradient(to right, #000 50%, transparent); background: rgba(5,11,24,.20); }
.hero-edge-right { right: -9%; mask-image: linear-gradient(to left, #000 50%, transparent); background: rgba(5,11,24,.18); }
.hero-content { width: min(960px, calc(100vw - 44px)); text-align: center; padding-top: 40px; margin-bottom: 90px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); }
.eyebrow span { width: 24px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(54px, 7.2vw, 108px);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 520;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-copy { max-width: 730px; margin: 0 auto 34px; color: rgba(255,255,255,.78); font-size: clamp(17px,1.4vw,21px); line-height: 1.55; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 28px; }
.hero-proof {
  position: absolute; bottom: 32px; left: 32px;
  display: flex; gap: 8px;
}
.hero-proof > div {
  display: flex; flex-direction: column; min-width: 145px;
  padding: 14px 17px;
  background: rgba(3,9,20,.36);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  border-radius: 16px;
}
.hero-proof strong { font-size: 17px; }
.hero-proof span { font-size: 11px; color: rgba(255,255,255,.62); margin-top: 3px; }
.scroll-cue { position: absolute; right: 38px; bottom: 34px; display: flex; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.60); }
.scroll-cue i { height: 38px; width: 1px; background: linear-gradient(white, transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.55); transform-origin: top; opacity:.4; } 50% { transform: scaleY(1); opacity:1; } }

.section-intro { background: linear-gradient(180deg, #030815 0%, #06101f 60%, #050b17 100%); }
.section-heading { display: grid; grid-template-columns: 1.05fr .7fr; align-items: end; gap: 70px; margin-bottom: 70px; }
.heading-copy { padding-bottom: 6px; }
.heading-copy p { font-size: 17px; margin-bottom: 26px; }

.bento-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: 340px; gap: 18px; }
.bento-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 42%),
    linear-gradient(160deg, rgba(12,28,52,.94), rgba(5,12,24,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 20px 60px rgba(0,0,0,.18);
}
.bento-card::after { content:""; position:absolute; width:280px; height:280px; right:-130px; bottom:-150px; border-radius:50%; background:rgba(85,117,225,.12); filter:blur(55px); }
.bento-card h3 { max-width: 420px; font-size: clamp(23px,2vw,31px); letter-spacing: -.035em; font-weight: 560; margin: 20px 0 12px; }
.bento-card p { max-width: 470px; font-size: 14px; line-height: 1.55; }
.bento-large { grid-row: span 2; }
.bento-wide { grid-column: span 2; display: grid; grid-template-columns: .75fr 1.1fr; align-items: center; }
.card-label { display: inline-flex; gap: 8px; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: #d0d9e9; }
.status-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(123,230,196,.08); }
.card-icon { width: 42px; height: 42px; display:grid; place-items:center; border:1px solid var(--line); border-radius: 13px; background:rgba(255,255,255,.04); }
.card-icon svg { width:22px; fill:none; stroke:#dce6f7; stroke-width:1.5; }
.pix-ui { position: absolute; bottom: 28px; left: 28px; right: 28px; border:1px solid var(--line); border-radius:20px; background:rgba(2,8,17,.48); backdrop-filter: blur(8px); padding:20px; z-index:1; }
.pix-top,.pix-row { display:flex; justify-content:space-between; align-items:center; font-size:12px; color:var(--muted); }
.pix-top b { color:#fff; }
.pix-flow { display:flex; align-items:center; margin:24px 0; }
.pix-flow i { flex:1; height:1px; background:linear-gradient(90deg,rgba(255,255,255,.12),rgba(126,151,255,.7),rgba(255,255,255,.12)); }
.pix-node { width:70px; height:70px; display:grid; place-items:center; border-radius:50%; background:#0b1728; border:1px solid var(--line); font-size:12px; font-weight:700; }
.pix-node-accent { background:rgba(126,151,255,.14); box-shadow:0 0 40px rgba(126,151,255,.16); }
.pix-row strong { color:var(--green); font-weight:600; }
.bank-card-art { position:absolute; left:30px; right:30px; bottom:28px; height:112px; border-radius:18px; padding:20px; display:flex; flex-direction:column; justify-content:space-between; overflow:hidden; background:linear-gradient(135deg,#c7b48e,#85745b 60%,#514534); color:#101113; box-shadow:0 25px 60px rgba(0,0,0,.3); transform:rotate(-2deg); }
.bank-card-art::after { content:""; position:absolute; width:130px; height:130px; border-radius:50%; border:1px solid rgba(255,255,255,.3); right:-35px; top:-55px; box-shadow:0 0 0 25px rgba(255,255,255,.07),0 0 0 50px rgba(255,255,255,.04); }
.bank-card-art span { font-size:11px; letter-spacing:.16em; font-weight:800; }
.bank-card-art b { font-size:14px; letter-spacing:.2em; }
.gateway-grid { position:absolute; left:30px; right:30px; bottom:28px; display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.gateway-grid span { height:44px; display:grid; place-items:center; border-radius:12px; border:1px solid var(--line); background:rgba(255,255,255,.035); font-size:11px; font-weight:700; color:#d6dfef; }
.calendar-ui { position:absolute; left:30px; right:30px; bottom:28px; display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.calendar-ui div { padding:12px; border-radius:13px; border:1px solid var(--line); background:rgba(255,255,255,.025); display:grid; grid-template-columns:auto 1fr; gap:0 8px; align-items:center; }
.calendar-ui small { font-size:8px; color:var(--muted); }
.calendar-ui b { grid-row:span 2; font-size:24px; order:-1; }
.calendar-ui span { font-size:8px; color:var(--muted); }
.calendar-ui .calendar-active { background:rgba(126,151,255,.11); border-color:rgba(126,151,255,.35); }
.dashboard-ui { position:relative; height:240px; border-radius:22px; border:1px solid var(--line); background:#070f1c; overflow:hidden; display:grid; grid-template-columns:55px 1fr; box-shadow:var(--shadow); }
.dashboard-ui aside { border-right:1px solid var(--line); padding:18px 14px; display:flex; flex-direction:column; gap:15px; }
.dashboard-ui aside i { width:24px; height:7px; background:rgba(255,255,255,.1); border-radius:4px; }
.dashboard-ui aside i:first-child { height:24px; border-radius:8px; background:rgba(126,151,255,.26); }
.dash-main { padding:24px; }
.dash-main > span { display:block; height:10px; width:38%; background:rgba(255,255,255,.18); border-radius:5px; margin-bottom:12px; }
.dash-main > span:nth-child(2) { width:65%; background:rgba(255,255,255,.06); }
.dash-main div { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:30px; }
.dash-main b { height:105px; border-radius:14px; background:linear-gradient(180deg,rgba(126,151,255,.14),rgba(255,255,255,.02)); border:1px solid var(--line); }

.audience-section { background:linear-gradient(180deg,#050b17,#030713); }
.audience-layout { display:grid; grid-template-columns:.83fr 1.17fr; gap:70px; align-items:stretch; }
.audience-intro { padding:40px 0; }
.audience-intro h2 { font-size:clamp(44px,5vw,72px); margin-bottom:30px; }
.audience-intro > p:not(.kicker) { max-width:570px; font-size:17px; }
.audience-tabs { margin-top:40px; display:flex; flex-wrap:wrap; gap:10px; }
.audience-tab { border:1px solid var(--line); color:var(--muted); background:rgba(255,255,255,.025); padding:12px 17px; border-radius:999px; cursor:pointer; transition:.2s; }
.audience-tab:hover,.audience-tab.is-active { color:#fff; background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.19); }
.profile-panel { min-height:590px; border-radius:32px; border:1px solid var(--line); background:linear-gradient(155deg,rgba(18,35,62,.82),rgba(4,10,21,.88)); padding:42px; position:relative; overflow:hidden; display:flex; flex-direction:column; align-items:flex-start; box-shadow:var(--shadow); }
.profile-panel::after { content:""; position:absolute; inset:0; background:linear-gradient(125deg,rgba(255,255,255,.035),transparent 32%); pointer-events:none; }
.profile-top { width:100%; display:flex; justify-content:space-between; align-items:center; position:relative; z-index:2; }
.profile-top span:first-child { color:var(--green); font-size:11px; text-transform:uppercase; letter-spacing:.14em; }
.profile-index { font-size:13px; color:var(--muted-2); }
.profile-panel h3 { max-width:620px; font-size:clamp(38px,4.5vw,68px); line-height:.98; letter-spacing:-.055em; font-weight:520; margin:75px 0 24px; position:relative; z-index:2; }
.profile-panel > p { max-width:650px; font-size:16px; position:relative; z-index:2; }
.profile-panel ul { list-style:none; padding:0; margin:25px 0 30px; position:relative; z-index:2; }
.profile-panel li { margin:12px 0; color:#d6dfec; font-size:14px; }
.profile-panel li::before { content:"✓"; color:var(--green); margin-right:11px; }
.profile-panel .text-button { position:relative; z-index:2; }
.profile-visual { position:absolute; right:-70px; bottom:-90px; width:370px; height:370px; opacity:.8; }
.orbit { position:absolute; border:1px solid rgba(126,151,255,.18); border-radius:50%; inset:0; }
.orbit-two { inset:55px; }
.profile-core { position:absolute; inset:110px; border-radius:50%; display:grid; place-items:center; background:radial-gradient(circle,rgba(126,151,255,.22),rgba(8,17,33,.8)); box-shadow:0 0 90px rgba(90,119,224,.2); font-size:10px; letter-spacing:.1em; }
.profile-core i { height:1px; width:80px; background:linear-gradient(90deg,var(--gold),#fff,var(--blue)); transform:rotate(-35deg); }

.process-section { background:linear-gradient(180deg,#030713,#07101e 75%,#040914); }
.process-heading { max-width:800px; margin-bottom:75px; }
.process-heading h2 { margin-bottom:25px; }
.process-heading p:not(.kicker) { font-size:18px; max-width:680px; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); }
.process-card { padding:34px 28px 20px 0; border-right:1px solid var(--line); min-height:260px; }
.process-card + .process-card { padding-left:28px; }
.process-card:last-child { border-right:0; }
.process-card > span { color:var(--gold); font-size:12px; letter-spacing:.12em; }
.process-card h3 { font-size:26px; margin:65px 0 14px; font-weight:560; }
.process-card p { font-size:14px; }

.ecosystem-section { padding-top:0; background:#040914; }
.ecosystem-card { min-height:540px; border:1px solid var(--line); border-radius:34px; background:radial-gradient(circle at 66% 45%,rgba(49,85,156,.18),transparent 35%),linear-gradient(140deg,#081426,#040914); padding:60px; position:relative; overflow:hidden; }
.ecosystem-copy { max-width:520px; position:relative; z-index:2; }
.ecosystem-copy h2 { font-size:clamp(44px,5vw,76px); margin-bottom:28px; }
.ecosystem-copy p:not(.kicker) { font-size:17px; }
.ecosystem-map { position:absolute; width:510px; height:410px; right:40px; top:35px; }
.map-node { position:absolute; width:74px; height:74px; border-radius:50%; display:grid; place-items:center; background:#0a1628; border:1px solid rgba(255,255,255,.14); font-size:10px; letter-spacing:.1em; box-shadow:0 16px 50px rgba(0,0,0,.3); }
.node-center { width:110px; height:110px; left:200px; top:145px; color:#fff; font-size:20px; background:radial-gradient(circle at 35% 30%,rgba(126,151,255,.45),#0a172d 65%); box-shadow:0 0 70px rgba(126,151,255,.18); }
.node-one { left:20px; top:50px; }.node-two{right:12px;top:35px}.node-three{left:10px;bottom:15px}.node-four{right:35px;bottom:20px}
.map-line { position:absolute; left:120px; top:200px; width:285px; height:1px; background:linear-gradient(90deg,transparent,rgba(126,151,255,.6),transparent); transform-origin:center; }
.line-a { transform:rotate(28deg); }.line-b{transform:rotate(-32deg)}.line-c{transform:rotate(0deg)}
.ecosystem-chips { position:absolute; left:60px; bottom:60px; display:flex; flex-wrap:wrap; gap:9px; max-width:700px; z-index:2; }
.ecosystem-chips span { padding:11px 15px; border:1px solid var(--line); border-radius:999px; color:#c8d2e2; font-size:12px; background:rgba(255,255,255,.025); }
.micro-disclaimer { position:absolute; right:55px; bottom:55px; max-width:400px; font-size:10px; color:var(--muted-2); text-align:right; }

.jurisdictions-section { background:linear-gradient(180deg,#040914,#02060f); }
.jurisdiction-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.country-card { min-height:360px; padding:28px; border-radius:24px; border:1px solid var(--line); background:linear-gradient(155deg,rgba(255,255,255,.035),rgba(7,16,30,.66)); position:relative; display:flex; flex-direction:column; transition:.25s; }
.country-card:hover { transform:translateY(-5px); border-color:rgba(255,255,255,.2); background:linear-gradient(155deg,rgba(255,255,255,.055),rgba(9,20,38,.82)); }
.country-code { width:47px; height:47px; border-radius:50%; display:grid; place-items:center; border:1px solid var(--line); background:rgba(255,255,255,.035); font-size:11px; font-weight:800; color:#d4ddec; margin-bottom:32px; }
.country-card > span { color:var(--gold); font-size:11px; text-transform:uppercase; letter-spacing:.12em; }
.country-card h3 { font-size:24px; letter-spacing:-.03em; font-weight:560; margin:12px 0; }
.country-card p { font-size:13px; }
.country-card button { margin-top:auto; padding:0; border:0; background:none; text-align:left; color:#fff; cursor:pointer; font-weight:650; display:flex; justify-content:space-between; }
.country-card button b { color:var(--gold); }
.country-card-featured { background:radial-gradient(circle at 100% 0,rgba(218,184,119,.14),transparent 40%),linear-gradient(155deg,rgba(255,255,255,.05),rgba(10,18,29,.72)); }

.testimonials-section { background:#02060f; }
.testimonials-top { display:grid; grid-template-columns:1fr auto; align-items:end; gap:30px; margin-bottom:65px; }
.rating-block { text-align:right; display:grid; }
.rating-block strong { font-size:42px; font-weight:520; letter-spacing:-.05em; }
.rating-block span { color:var(--gold); letter-spacing:.1em; }
.rating-block small { color:var(--muted); margin-top:6px; }
.testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.testimonial-card { min-height:350px; padding:32px; border-radius:26px; border:1px solid var(--line); background:linear-gradient(160deg,rgba(15,29,50,.70),rgba(5,11,22,.75)); display:flex; flex-direction:column; }
.quote-mark { font-family:Georgia,serif; font-size:70px; line-height:.6; color:rgba(218,184,119,.72); }
.testimonial-card > p { font-size:16px; color:#d4dce9; margin:25px 0; }
.testimonial-card footer { margin-top:auto; display:flex; align-items:center; gap:12px; }
.testimonial-card footer > span { width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.06);border:1px solid var(--line);font-size:11px; }
.testimonial-card footer div { display:grid; }
.testimonial-card footer small { color:var(--muted); margin-top:3px; }

.content-section { background:linear-gradient(180deg,#02060f,#06101e); }
.article-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.article-card { border-radius:26px; overflow:hidden; border:1px solid var(--line); background:#08101d; transition:.25s; }
.article-card:hover { transform:translateY(-5px); border-color:rgba(255,255,255,.2); }
.article-art { height:230px; position:relative; overflow:hidden; display:grid; place-items:center; background:linear-gradient(145deg,#192946,#07101d); }
.article-art::before { content:""; position:absolute; width:240px;height:240px;border-radius:50%;border:1px solid rgba(255,255,255,.12); box-shadow:0 0 0 34px rgba(255,255,255,.035),0 0 0 68px rgba(255,255,255,.02); }
.article-art span { font-size:54px; font-weight:730; letter-spacing:-.05em; z-index:2; }
.article-art i { position:absolute; width:140px; height:1px; background:var(--gold); transform:rotate(-35deg); }
.art-two { background:linear-gradient(145deg,#14243e,#0b1320); }.art-two span{color:#a8bbff}
.art-three { background:linear-gradient(145deg,#29241b,#0c1119); }.art-three span{color:#d9ba7d}
.article-body { padding:27px; }
.article-body > span { color:var(--gold); font-size:10px; text-transform:uppercase; letter-spacing:.15em; }
.article-body h3 { font-size:24px; line-height:1.12; letter-spacing:-.035em; margin:13px 0; }
.article-body p { font-size:13px; }
.article-body b { display:block; margin-top:22px; font-size:13px; }

.faq-section { background:#06101e; }
.faq-layout { display:grid; grid-template-columns:.72fr 1.28fr; gap:80px; align-items:start; }
.faq-intro { position:sticky; top:140px; }
.faq-intro h2 { font-size:clamp(44px,4.5vw,70px); margin-bottom:24px; }
.faq-intro p:not(.kicker) { font-size:16px; margin-bottom:28px; }
.faq-list { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item button { width:100%; border:0; background:none; padding:28px 0; display:flex; align-items:center; justify-content:space-between; text-align:left; cursor:pointer; font-size:18px; font-weight:570; }
.faq-item button i { width:19px;height:19px;position:relative;flex:0 0 19px;margin-left:20px; }
.faq-item button i::before,.faq-item button i::after { content:"";position:absolute;left:0;top:9px;width:19px;height:1px;background:#fff;transition:.25s; }
.faq-item button i::after { transform:rotate(90deg); }
.faq-item.is-open button i::after { transform:rotate(0); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer p { margin:0; padding:0 50px 28px 0; }

.final-cta { position:relative; overflow:hidden; text-align:center; padding:160px 0; background:linear-gradient(180deg,#06101e,#01040b); }
.cta-glow { position:absolute; width:900px;height:500px;left:50%;top:50%;transform:translate(-50%,-50%);background:radial-gradient(ellipse,rgba(60,92,171,.22),transparent 68%); }
.final-cta-inner { position:relative; }
.final-cta h2 { font-size:clamp(56px,7.2vw,110px); }
.final-cta p:not(.kicker) { max-width:650px; margin:28px auto 35px; font-size:18px; }
.final-actions { display:flex; justify-content:center; gap:12px; }

.site-footer { padding:80px 0 26px; border-top:1px solid var(--line); background:#01040b; }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:60px; }
.footer-brand p { max-width:390px; margin-top:24px; font-size:14px; }
.footer-grid h3 { font-size:12px; text-transform:uppercase; letter-spacing:.13em; color:var(--gold); margin-bottom:24px; }
.footer-grid > div:not(.footer-brand) { display:flex; flex-direction:column; gap:13px; }
.footer-grid > div:not(.footer-brand) a { font-size:14px; color:var(--muted); }
.footer-grid a:hover { color:#fff; }
.footer-bottom { margin-top:70px; padding-top:24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:40px; color:var(--muted-2); font-size:11px; }
.footer-bottom p { margin:0; max-width:680px; text-align:right; font-size:11px; line-height:1.5; }

.guide-modal { position:fixed; inset:0; z-index:200; visibility:hidden; opacity:0; transition:.3s; }
.guide-modal.is-open { visibility:visible; opacity:1; }
.guide-backdrop { position:absolute; inset:0; background:rgba(0,3,9,.78); backdrop-filter:blur(18px); }
.guide-dialog { position:absolute; left:50%; top:50%; transform:translate(-50%,-46%) scale(.97); width:min(760px,calc(100vw - 30px)); min-height:560px; border-radius:30px; border:1px solid var(--line-strong); background:radial-gradient(circle at 80% 5%,rgba(77,108,192,.18),transparent 34%),#07101e; padding:54px; box-shadow:0 40px 130px rgba(0,0,0,.55); transition:.3s; overflow:hidden; }
.guide-modal.is-open .guide-dialog { transform:translate(-50%,-50%) scale(1); }
.guide-close { position:absolute; right:20px; top:17px; width:40px;height:40px;border:0;border-radius:50%;background:rgba(255,255,255,.06);cursor:pointer;font-size:23px;color:#fff; }
.guide-progress { position:absolute; left:0; top:0; width:100%; height:3px; background:rgba(255,255,255,.06); }
.guide-progress span { display:block; height:100%; width:25%; background:linear-gradient(90deg,var(--gold),var(--blue)); transition:.3s; }
.guide-step { display:none; }
.guide-step.is-active { display:block; animation:stepIn .35s ease both; }
@keyframes stepIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
.guide-step h2 { font-size:clamp(38px,5vw,62px); margin-bottom:36px; }
.guide-options { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.guide-options button { min-height:86px; border:1px solid var(--line); border-radius:18px; padding:20px; background:rgba(255,255,255,.03); text-align:left; cursor:pointer; font-weight:600; transition:.2s; }
.guide-options button:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.22); transform:translateY(-2px); }
.guide-result > p:not(.kicker) { font-size:17px; }
.result-card { margin:25px 0; padding:24px; border-radius:18px; background:rgba(255,255,255,.045); border:1px solid var(--line); display:grid; gap:8px; }
.result-card span { color:var(--gold); text-transform:uppercase;letter-spacing:.12em;font-size:10px; }
.result-card strong { font-size:27px; }
.result-card small { color:var(--muted); line-height:1.4; }
.guide-result .button { width:100%; }
.guide-restart { margin:20px auto 0; display:flex; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .75s ease,transform .75s ease; }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns:1fr auto; }
  .main-nav { position:fixed; inset:0; padding:120px 28px 40px; background:rgba(2,7,19,.96); backdrop-filter:blur(24px); flex-direction:column; align-items:flex-start; justify-content:flex-start; gap:28px; transform:translateY(-105%); transition:.35s; z-index:-1; }
  .main-nav a { font-size:31px; letter-spacing:-.04em; }
  body.menu-open .main-nav { transform:none; }
  .menu-toggle { display:block; justify-self:end; z-index:2; }
  .nav-cta { display:none; }
  .bento-grid { grid-template-columns:1fr 1fr; grid-auto-rows:340px; }
  .bento-large { grid-row:span 2; }
  .bento-wide { grid-column:span 1; grid-template-columns:1fr; }
  .dashboard-ui { height:140px; margin-top:15px; }
  .audience-layout { grid-template-columns:1fr; }
  .profile-panel { min-height:540px; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .process-card:nth-child(2) { border-right:0; }
  .process-card:nth-child(3),.process-card:nth-child(4) { border-top:1px solid var(--line); }
  .ecosystem-map { opacity:.55; right:-110px; }
  .ecosystem-chips { max-width:520px; }
  .jurisdiction-grid { grid-template-columns:repeat(2,1fr); }
  .faq-layout { grid-template-columns:1fr; }
  .faq-intro { position:static; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1240px); --radius:22px; }
  .section { padding:92px 0; }
  .site-header { padding:14px 0; }
  .nav-shell { width:calc(100vw - 26px); }
  .brand-mark { width:29px; }.brand-text{font-size:11px;}
  .hero { min-height:820px; align-items:flex-start; padding-top:165px; }
  .hero-backdrop { background-position:56% center; }
  .hero::after { box-shadow:inset 0 0 100px 25px rgba(2,7,19,.45); }
  .hero-content { margin-bottom:0; padding-top:0; }
  .eyebrow { font-size:9px; }
  .hero h1 { font-size:clamp(48px,14vw,70px); line-height:.96; }
  .hero h1 br { display:none; }
  .hero-copy { font-size:16px; }
  .hero-actions { flex-direction:column; gap:18px; }
  .hero-proof { left:14px; right:14px; bottom:20px; display:grid; grid-template-columns:repeat(3,1fr); }
  .hero-proof > div { min-width:0; padding:12px 10px; }
  .hero-proof span { font-size:9px; }
  .scroll-cue { display:none; }
  .section-heading { grid-template-columns:1fr; gap:28px; margin-bottom:45px; }
  .bento-grid { grid-template-columns:1fr; grid-auto-rows:auto; }
  .bento-card { min-height:330px; }
  .bento-large { min-height:560px; }
  .bento-wide { grid-column:auto; min-height:500px; }
  .profile-panel { padding:27px; min-height:620px; }
  .profile-panel h3 { margin-top:55px; }
  .profile-visual { right:-140px; bottom:-90px; }
  .process-grid { grid-template-columns:1fr; border-top:0; }
  .process-card,.process-card + .process-card { border-right:0; border-top:1px solid var(--line); padding:28px 0; min-height:230px; }
  .process-card h3 { margin-top:45px; }
  .ecosystem-card { padding:32px 24px; min-height:680px; }
  .ecosystem-map { top:260px; right:-175px; opacity:.55; }
  .ecosystem-chips { left:24px; right:24px; bottom:72px; }
  .micro-disclaimer { left:24px; right:24px; bottom:24px; text-align:left; }
  .jurisdiction-grid,.testimonial-grid,.article-grid { grid-template-columns:1fr; }
  .testimonials-top { grid-template-columns:1fr; }
  .rating-block { text-align:left; }
  .faq-item button { font-size:16px; }
  .final-actions { flex-direction:column; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:42px 24px; }
  .footer-brand { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; }
  .footer-bottom p { text-align:left; }
  .guide-dialog { padding:48px 22px 26px; min-height:590px; }
  .guide-options { grid-template-columns:1fr; }
  .guide-options button { min-height:68px; }
}

/* =========================================================
   Visual refinement — v2
   Reduced typography, safer responsive layout and richer texture
   ========================================================= */
:root {
  --bg: #020611;
  --bg-soft: #07101d;
  --panel: rgba(8, 18, 34, .78);
  --panel-solid: #081322;
  --line: rgba(255,255,255,.095);
  --line-strong: rgba(255,255,255,.16);
  --text: #f3f6fb;
  --muted: #a4afc0;
  --muted-2: #778396;
  --blue: #7892f4;
  --blue-2: #4564cf;
  --gold: #d2b071;
  --green: #72d8bb;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 26px 80px rgba(0,0,0,.34);
  --shell: min(1180px, calc(100vw - 48px));
}

body {
  font-size: 15.5px;
  background:
    radial-gradient(circle at 16% 9%, rgba(39,74,139,.16), transparent 26%),
    radial-gradient(circle at 83% 28%, rgba(57,89,157,.10), transparent 27%),
    radial-gradient(circle at 52% 76%, rgba(200,158,87,.045), transparent 27%),
    linear-gradient(180deg, #020611 0%, #030815 43%, #01040b 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(108,139,224,.10), transparent 22%),
    radial-gradient(circle at 82% 68%, rgba(207,169,99,.05), transparent 20%);
  background-size: 72px 72px, 72px 72px, auto, auto;
  opacity: .75;
}
.page-noise { opacity: .048; }

.section {
  padding: 112px 0;
  isolation: isolate;
  overflow: clip;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .075;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.42) 1px, transparent 0);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}
.section > .section-shell { position: relative; z-index: 1; }

h2 {
  font-size: clamp(38px, 4.55vw, 64px);
  line-height: 1.01;
  letter-spacing: -.048em;
  font-weight: 540;
}
p { line-height: 1.62; }
.kicker, .eyebrow { margin-bottom: 17px; letter-spacing: .145em; font-size: 11px; }

/* Keep the fixed mobile menu independent from the blurred header. */
.site-header { isolation: isolate; }
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: rgba(2,7,18,.74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px) saturate(125%);
  transition: opacity .35s ease, border-color .35s ease;
  pointer-events: none;
}
.site-header.is-scrolled { background: transparent; backdrop-filter: none; border-bottom: 0; }
.site-header.is-scrolled::before { opacity: 1; border-bottom-color: rgba(255,255,255,.065); }
.nav-shell { position: relative; z-index: 2; }

.button { min-height: 52px; padding-inline: 25px; font-size: 14px; }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.liquid-button { background: rgba(247,250,255,.16); backdrop-filter: blur(18px) saturate(118%); }
.liquid-button::before { opacity: .55; }

.hero { min-height: min(100svh, 960px); }
.hero::before {
  background:
    linear-gradient(180deg, rgba(2,8,19,.72) 0%, rgba(2,8,19,.20) 35%, rgba(2,8,19,.18) 67%, rgba(2,7,16,.76) 100%),
    radial-gradient(circle at center 35%, rgba(7,16,30,.02), rgba(3,8,18,.34) 75%);
}
.hero::after { box-shadow: inset 0 0 160px 54px rgba(2,7,19,.44); }
.hero-content { width: min(880px, calc(100vw - 44px)); padding-top: 28px; margin-bottom: 74px; }
.hero h1 {
  max-width: 880px;
  margin-inline: auto;
  font-size: clamp(50px, 6.1vw, 86px);
  line-height: .98;
  letter-spacing: -.058em;
  margin-bottom: 23px;
}
.hero-copy { max-width: 660px; margin-bottom: 30px; font-size: clamp(16px,1.2vw,18px); line-height: 1.55; }
.hero-actions { gap: 23px; }
.hero-proof { bottom: 25px; left: 25px; }
.hero-proof > div { min-width: 135px; padding: 12px 15px; border-radius: 14px; }
.scroll-cue { right: 30px; bottom: 28px; }

.section-intro {
  background:
    radial-gradient(circle at 82% 12%, rgba(62,96,166,.10), transparent 28%),
    linear-gradient(180deg, rgba(3,8,21,.97), rgba(6,16,31,.96) 60%, rgba(5,11,23,.97));
}
.section-heading { grid-template-columns: 1fr .72fr; gap: 56px; margin-bottom: 58px; }
.heading-copy p { font-size: 15.5px; margin-bottom: 23px; }

.bento-grid { grid-auto-rows: 310px; gap: 15px; }
.bento-card {
  padding: 27px;
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(78,111,189,.085), transparent 35%),
    linear-gradient(160deg, rgba(11,26,48,.94), rgba(4,11,23,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 52px rgba(0,0,0,.20);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.bento-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.16); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 24px 70px rgba(0,0,0,.25); }
.bento-card h3, .bento-card p, .bento-card .card-label, .bento-card .card-icon { position: relative; z-index: 3; }
.bento-card h3 { font-size: clamp(21px,1.75vw,27px); margin: 17px 0 10px; }
.bento-card p { font-size: 13px; line-height: 1.52; }
.pix-ui,.bank-card-art,.gateway-grid,.calendar-ui,.dashboard-ui { z-index: 1; }
.pix-ui { left: 26px; right: 26px; bottom: 25px; padding: 18px; }
.pix-node { width: 62px; height: 62px; }
.bank-card-art,.gateway-grid,.calendar-ui { left: 27px; right: 27px; bottom: 25px; }
.dashboard-ui { height: 214px; }

.audience-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(47,77,141,.10), transparent 29%),
    linear-gradient(180deg, rgba(5,11,23,.97), rgba(3,7,19,.97));
}
.audience-layout { gap: 58px; }
.audience-intro { padding: 30px 0; }
.audience-intro h2 { font-size: clamp(39px,4.25vw,61px); margin-bottom: 24px; }
.audience-intro > p:not(.kicker) { font-size: 15.5px; }
.audience-tabs { margin-top: 32px; gap: 8px; }
.audience-tab { padding: 10px 15px; font-size: 13px; }
.profile-panel { min-height: 535px; border-radius: 27px; padding: 36px; }
.profile-panel h3 { font-size: clamp(34px,3.7vw,55px); line-height: 1; margin: 58px 0 20px; }
.profile-panel > p { font-size: 14.5px; max-width: 580px; }
.profile-panel ul { margin: 20px 0 26px; }
.profile-panel li { margin: 10px 0; font-size: 13px; }
.profile-visual { width: 330px; height: 330px; right: -75px; bottom: -95px; opacity: .55; }

.process-section {
  background:
    radial-gradient(circle at 80% 35%, rgba(54,83,148,.09), transparent 25%),
    linear-gradient(180deg, rgba(3,7,19,.98), rgba(7,16,30,.97) 75%, rgba(4,9,20,.98));
}
.process-heading { max-width: 720px; margin-bottom: 58px; }
.process-heading p:not(.kicker) { font-size: 16px; max-width: 620px; }
.process-card { min-height: 225px; padding-top: 29px; }
.process-card h3 { font-size: 23px; margin: 49px 0 12px; }
.process-card p { font-size: 13px; }

.ecosystem-card { min-height: 505px; border-radius: 28px; padding: 48px; }
.ecosystem-copy { max-width: 470px; }
.ecosystem-copy h2 { font-size: clamp(38px,4.35vw,62px); margin-bottom: 22px; }
.ecosystem-copy p:not(.kicker) { font-size: 15px; }
.ecosystem-map { transform: scale(.88); transform-origin: center right; right: 15px; top: 25px; }
.ecosystem-chips { left: 48px; bottom: 48px; }
.micro-disclaimer { right: 46px; bottom: 47px; }

.jurisdictions-section {
  background:
    radial-gradient(circle at 13% 50%, rgba(53,88,157,.085), transparent 27%),
    linear-gradient(180deg, rgba(4,9,20,.98), rgba(2,6,15,.98));
}
.jurisdiction-grid { gap: 12px; }
.country-card { min-height: 325px; padding: 25px; border-radius: 21px; }
.country-code { margin-bottom: 27px; }
.country-card h3 { font-size: 21px; }
.country-card p { font-size: 12.5px; }

.testimonials-section { background: linear-gradient(180deg, rgba(2,6,15,.98), rgba(3,8,18,.98)); }
.testimonials-top { margin-bottom: 50px; }
.rating-block strong { font-size: 36px; }
.testimonial-card { min-height: 315px; padding: 28px; border-radius: 22px; }
.quote-mark { font-size: 61px; }
.testimonial-card > p { font-size: 14.5px; }

.content-section {
  background:
    radial-gradient(circle at 78% 12%, rgba(55,88,155,.09), transparent 25%),
    linear-gradient(180deg, rgba(3,8,18,.98), rgba(6,16,30,.97));
}
.article-card { border-radius: 22px; }
.article-art { height: 195px; }
.article-art span { font-size: 46px; }
.article-body { padding: 24px; }
.article-body h3 { font-size: 21px; }

.faq-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(61,91,155,.09), transparent 26%),
    linear-gradient(180deg, rgba(6,16,30,.98), rgba(3,8,18,.99));
}
.faq-layout { gap: 65px; }
.faq-intro h2 { font-size: clamp(38px,4vw,58px); }
.faq-intro p:not(.kicker) { font-size: 14.5px; }
.faq-item button { padding: 24px 0; font-size: 16px; }
.faq-answer p { font-size: 14px; }

.final-cta {
  padding: 125px 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(57,88,159,.18), transparent 55%),
    linear-gradient(180deg, #030812, #01040b);
}
.final-cta::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.08;
  pointer-events:none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.5) 1px, transparent 0);
  background-size: 35px 35px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 75%);
}
.final-cta h2 { font-size: clamp(46px,5.8vw,78px); line-height:1; }
.final-cta p:not(.kicker) { max-width: 600px; margin: 24px auto 31px; font-size: 16px; }
.site-footer { padding-top: 68px; }

@media (max-width: 1100px) {
  .main-nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 100svh;
    min-height: 100svh;
    padding: 112px 28px 40px;
    z-index: 1;
    transform: translateY(-110%);
  }
  body.menu-open .main-nav { transform: translateY(0); }
  .main-nav a { font-size: 27px; }
  .bento-grid { grid-auto-rows: 315px; }
  .profile-panel { min-height: 510px; }
  .ecosystem-map { right: -80px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 30px, 1180px); --radius: 20px; }
  .section { padding: 78px 0; }
  .section::before { opacity: .05; background-size: 28px 28px; }
  h2 { font-size: clamp(34px,10.5vw,43px); line-height:1.02; }
  .kicker,.eyebrow { font-size: 9px; letter-spacing:.13em; }
  .site-header { padding: 13px 0; }
  .main-nav { padding: 104px 24px 36px; gap: 22px; }
  .main-nav a { font-size: 25px; }
  .hero { min-height: 760px; padding-top: 132px; }
  .hero-backdrop { background-position: 55% center; }
  .hero-content { width: calc(100vw - 30px); }
  .hero h1 { font-size: clamp(42px,12.5vw,55px); line-height:.99; letter-spacing:-.052em; margin-bottom:20px; }
  .hero-copy { max-width: 340px; font-size: 14px; line-height:1.5; margin-bottom:26px; }
  .hero-actions { gap: 15px; }
  .hero-actions .button { width: min(100%, 280px); }
  .hero-actions .text-link { font-size: 13px; }
  .hero-proof { left: 10px; right: 10px; bottom: 14px; gap: 5px; }
  .hero-proof > div { padding: 10px 7px; border-radius:12px; }
  .hero-proof strong { font-size:14px; }
  .hero-proof span { font-size:8px; line-height:1.2; }
  .section-heading { gap: 22px; margin-bottom: 38px; }
  .heading-copy p { font-size: 14px; }
  .bento-grid { gap: 12px; }
  .bento-card { min-height: 320px; padding: 24px; }
  .bento-card h3 { font-size: 22px; }
  .bento-card p { font-size: 12.5px; }
  .bento-card:not(.bento-large):not(.bento-wide) { padding-bottom: 165px; }
  .bento-large { min-height: 515px; padding-bottom: 230px; }
  .bento-wide { min-height: 450px; padding-bottom: 205px; }
  .pix-ui { left: 22px; right: 22px; bottom: 22px; }
  .bank-card-art,.gateway-grid,.calendar-ui { left: 23px; right: 23px; bottom: 22px; }
  .dashboard-ui { position:absolute; left:23px; right:23px; bottom:22px; height:160px; }
  .audience-intro { padding:0; }
  .audience-intro h2 { font-size: clamp(36px,10.8vw,44px); }
  .audience-intro > p:not(.kicker) { font-size: 14px; }
  .audience-tabs { margin-top:26px; }
  .audience-tab { padding:9px 13px; font-size:12px; }
  .profile-panel { padding: 26px; min-height: 530px; }
  .profile-panel h3 { font-size: clamp(33px,10vw,43px); margin: 45px 0 18px; }
  .profile-panel > p { font-size:13.5px; }
  .profile-panel li { font-size:12.5px; }
  .profile-visual { width:260px; height:260px; right:-105px; bottom:-75px; opacity:.38; }
  .process-heading { margin-bottom:40px; }
  .process-heading p:not(.kicker) { font-size:14px; }
  .process-card,.process-card + .process-card { min-height:190px; padding:24px 0; }
  .process-card h3 { margin-top:35px; font-size:22px; }
  .ecosystem-card { min-height: 620px; padding: 29px 23px; }
  .ecosystem-copy h2 { font-size: clamp(35px,10.5vw,43px); }
  .ecosystem-copy p:not(.kicker) { font-size:13.5px; }
  .ecosystem-map { width:360px; height:300px; top:210px; right:-135px; transform:scale(.85); }
  .ecosystem-chips { left:23px; right:23px; bottom:72px; gap:7px; }
  .ecosystem-chips span { font-size:10px; padding:9px 12px; }
  .micro-disclaimer { left:23px; right:23px; bottom:22px; font-size:9px; }
  .country-card { min-height:290px; padding:23px; }
  .country-card h3 { font-size:21px; }
  .testimonial-card { min-height:280px; padding:25px; }
  .article-art { height:175px; }
  .article-body h3 { font-size:20px; }
  .faq-layout { gap:44px; }
  .faq-intro h2 { font-size: clamp(35px,10.5vw,43px); }
  .faq-item button { font-size:15px; padding:21px 0; }
  .faq-answer p { padding-right:20px; font-size:13.5px; }
  .final-cta { padding:95px 0; }
  .final-cta h2 { font-size:clamp(40px,11.5vw,50px); }
  .final-cta p:not(.kicker) { font-size:14px; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-brand { grid-column:auto; }
}

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

/* Final responsive corrections */
@media (max-width: 760px) {
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .heading-copy { width: 100%; }
  .heading-copy .button { max-width: 100%; white-space: normal; text-align: center; line-height: 1.25; }
  .bento-wide { display: block; grid-template-columns: 1fr; grid-column: auto; }
}
