@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@700;800&display=swap');

:root {
    --navy: #0b1739;
    --navy-2: #142655;
    --blue: #155eef;
    --blue-light: #eaf1ff;
    --ink: #14213d;
    --muted: #667085;
    --line: #e6eaf1;
    --surface: #f6f8fc;
    --white: #ffffff;
    --green: #155eef;
    --shadow: 0 24px 70px rgba(26, 46, 88, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header { position: fixed; z-index: 1020; top: 0; left: 0; width: 100%; color: var(--white); background: #07142d; border-bottom: 1px solid rgba(255,255,255,.12); box-shadow: 0 10px 28px rgba(4, 12, 29, .22); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { width: 43px; height: 43px; object-fit: contain; border-radius: 11px; background: rgba(255,255,255,.96); padding: 4px; }
.brand-mark { width: 43px; height: 43px; border-radius: 13px; display: grid; place-items: center; color: var(--white); background: linear-gradient(145deg, #3978ff, #155eef); box-shadow: 0 10px 28px rgba(21,94,239,.35); font-family: Manrope, sans-serif; font-weight: 800; letter-spacing: -.05em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font: 800 17px Manrope, sans-serif; letter-spacing: -.02em; }
.brand-copy small { margin-top: 3px; color: #a9b7d5; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 29px; font-size: 14px; font-weight: 600; }
.nav-close, .nav-overlay { display: none; }
.main-nav > a:not(.button) { color: #c8d2e8; transition: color .2s; }
.main-nav > a:not(.button):hover { color: var(--white); }
.main-nav .nav-login { margin-left: 8px; color: var(--white) !important; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border: 1px solid var(--blue); border-radius: 9px; color: var(--white); background: var(--blue); box-shadow: 0 12px 27px rgba(21,94,239,.24); font-size: 14px; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: #0b4fd5; box-shadow: 0 16px 33px rgba(21,94,239,.3); }
.button-small { min-height: 40px; padding: 0 17px; border-radius: 8px; }
.button-ghost { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.nav-toggle { display: none; padding: 8px; border: 0; background: transparent; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }

.hero { position: relative; min-height: 710px; overflow: hidden; padding: 132px 0 82px; color: var(--white); background: radial-gradient(circle at 77% 40%, #173b88 0, transparent 36%), linear-gradient(119deg, #081431 0%, #0c1d47 56%, #0d255d 100%); }
.hero::after { position: absolute; right: -110px; bottom: -235px; width: 590px; height: 590px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; content: ''; box-shadow: 0 0 0 85px rgba(255,255,255,.025), 0 0 0 170px rgba(255,255,255,.018); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .32; }
.glow-one { width: 250px; height: 250px; top: 86px; right: 28%; background: #155eef; filter: blur(90px); }
.glow-two { width: 210px; height: 210px; bottom: 0; left: 14%; background: #155eef; filter: blur(100px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 21px; color: #99b8fa; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: #4e86ff; box-shadow: 0 0 0 5px rgba(78,134,255,.15); }
.hero h1 { max-width: 590px; margin: 0; font: 800 clamp(42px, 5vw, 65px)/1.1 Manrope, sans-serif; letter-spacing: -.045em; }
.hero h1 em { color: #70a0ff; font-style: normal; }
.hero-copy > p { max-width: 570px; margin: 24px 0 31px; color: #b8c5df; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; }
.trust-row { display: flex; gap: 0; margin-top: 51px; }
.trust-row div { min-width: 125px; padding-right: 24px; margin-right: 24px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-row div:last-child { border: 0; }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { margin-bottom: 6px; font: 800 18px Manrope, sans-serif; }
.trust-row span { color: #94a7c9; font-size: 11px; }

.dashboard-stage { position: relative; min-height: 450px; display: grid; place-items: center; }
.dashboard-card { width: min(100%, 510px); padding: 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 17px; color: var(--ink); background: rgba(255,255,255,.98); box-shadow: 0 34px 85px rgba(0,0,0,.35); transform: perspective(1000px) rotateY(-3deg) rotateX(1deg); }
.dash-top { display: grid; grid-template-columns: 37px 1fr 37px; align-items: center; gap: 14px; margin-bottom: 20px; }
.dash-logo, .dash-avatar { height: 37px; display: grid; place-items: center; border-radius: 10px; font: 800 12px Manrope, sans-serif; }
.dash-logo { color: var(--white); background: var(--blue); }
.dash-avatar { color: #46546d; background: #edf1f7; }
.dash-search { height: 34px; display: flex; align-items: center; padding: 0 14px; border: 1px solid #e9edf4; border-radius: 8px; color: #a0a8b7; background: #f9fafc; font-size: 10px; }
.balance-card { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-radius: 13px; color: var(--white); background: linear-gradient(117deg, #155eef, #3478ff); box-shadow: 0 16px 30px rgba(21,94,239,.22); }
.balance-card small, .balance-card strong, .balance-card span { display: block; }
.balance-card small { color: #ccdcff; font-size: 9px; }
.balance-card strong { margin: 6px 0 5px; font: 800 21px Manrope, sans-serif; }
.balance-card span { color: #d5e2ff; font-size: 8px; }
.balance-card button { padding: 9px 11px; border: 1px solid rgba(255,255,255,.23); border-radius: 7px; color: var(--white); background: rgba(255,255,255,.14); font-size: 9px; }
.dash-title { margin: 21px 0 12px; font-size: 10px; font-weight: 800; }
.service-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.service-mini-grid div { padding: 12px 6px; border: 1px solid #ebeff5; border-radius: 9px; text-align: center; }
.service-mini-grid span { width: 28px; height: 28px; display: grid; place-items: center; margin: 0 auto 6px; border-radius: 8px; color: var(--blue); background: var(--blue-light); font-weight: 800; }
.service-mini-grid small { font-size: 8px; font-weight: 600; }
.activity-head { display: flex; justify-content: space-between; margin: 20px 0 7px; font-size: 9px; }
.activity-head small { color: var(--blue); }
.activity-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid #eef1f5; }
.activity-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; color: #155eef; background: #eaf1ff; font-size: 10px; font-weight: 800; }
.activity-icon.blue { color: var(--blue); background: var(--blue-light); }
.activity-row p { margin: 0; }
.activity-row b, .activity-row small { display: block; }
.activity-row b { margin-bottom: 3px; font-size: 9px; }
.activity-row small { color: #98a2b3; font-size: 7px; }
.activity-row > strong { color: var(--green); font-size: 8px; }
.float-pill { position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.5); border-radius: 10px; color: var(--ink); background: rgba(255,255,255,.95); box-shadow: 0 14px 35px rgba(0,0,0,.19); backdrop-filter: blur(12px); }
.pill-success { top: 22px; right: -5px; padding: 11px 15px; font-size: 9px; font-weight: 700; }
.pill-success i { width: 7px; height: 7px; display: inline-block; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(21,94,239,.13); }
.pill-order { bottom: 27px; left: -26px; display: grid; grid-template-columns: 30px 1fr; column-gap: 9px; padding: 11px 16px 11px 11px; }
.pill-order > span { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--green); background: #eaf1ff; font-weight: 800; }
.pill-order b { font-size: 9px; }
.pill-order small { color: #98a2b3; font-size: 7px; }

.section { padding: 78px 0; }
.services { background: var(--surface); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 46px; }
.section-kicker { display: block; margin-bottom: 14px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section h2, .cta-box h2 { margin: 0; font: 800 clamp(30px, 3.5vw, 44px)/1.18 Manrope, sans-serif; letter-spacing: -.035em; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); transition: transform .2s, border-color .2s, box-shadow .2s; }
.service-grid article:hover { transform: translateY(-5px); border-color: #c9d7f7; box-shadow: 0 18px 40px rgba(23,43,77,.08); }
.service-icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 21px; border-radius: 11px; font-size: 18px; font-weight: 800; }
.service-icon.blue { color: var(--blue); background: var(--blue-light); }
.service-icon.purple,
.service-icon.amber,
.service-icon.green,
.service-icon.cyan { color: #155eef; background: #eaf1ff; }
.service-icon.navy { color: #344054; background: #eef1f6; font-size: 12px; }
.service-grid h3 { margin: 0 0 10px; font: 800 17px Manrope, sans-serif; }
.service-grid p { min-height: 48px; margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-grid a { color: var(--blue); font-size: 12px; font-weight: 700; }

.advantage { overflow: hidden; background: var(--white); }
.advantage-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.code-window { position: relative; padding: 0 25px 25px; border: 1px solid #26375d; border-radius: 16px; color: #dbe7ff; background: #0b1739; box-shadow: var(--shadow); }
.code-window::before { position: absolute; inset: 42px -55px -55px 55px; z-index: -1; border-radius: 20px; background: var(--blue-light); content: ''; }
.code-head { height: 52px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid rgba(255,255,255,.09); }
.code-head span { width: 8px; height: 8px; border-radius: 50%; background: #ff6b6b; }
.code-head span:nth-child(2) { background: #ffd166; }
.code-head span:nth-child(3) { background: #40c98b; }
.code-head small { margin-left: auto; color: #7586a8; font-size: 9px; }
.code-window pre { margin: 26px 7px; overflow: auto; font: 13px/2.05 ui-monospace, SFMono-Regular, Menlo, monospace; }
.code-window b { color: #81a9ff; font-weight: 500; }
.code-window i { color: #7ee2b8; font-style: normal; }
.api-ready { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.05); }
.api-ready > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px; color: #5be0a0; background: rgba(18,183,106,.14); }
.api-ready b, .api-ready small { display: block; }
.api-ready b { font-size: 10px; }
.api-ready small { margin-top: 4px; color: #8fa1c2; font-size: 8px; }
.advantage-copy > p { margin: 21px 0 27px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.advantage-copy ul { padding: 0; margin: 0 0 30px; list-style: none; }
.advantage-copy li { display: flex; gap: 13px; margin: 18px 0; }
.advantage-copy li > span { width: 23px; height: 23px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--blue-light); font-size: 11px; font-weight: 800; }
.advantage-copy li b, .advantage-copy li small { display: block; }
.advantage-copy li b { margin-bottom: 5px; font-size: 14px; }
.advantage-copy li small { color: var(--muted); font-size: 12px; line-height: 1.6; }
.text-link { color: var(--blue); font-size: 13px; font-weight: 800; }
.text-link span { margin-left: 8px; }

.steps { background: var(--surface); }
.section-heading.centered { display: block; max-width: 630px; margin: 0 auto 55px; text-align: center; }
.section-heading.centered > p { margin: 15px auto 0; }
.step-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.step-grid::before { position: absolute; top: 29px; left: 18%; right: 18%; height: 1px; background: #cfd8e8; content: ''; }
.step-grid article { position: relative; text-align: center; }
.step-grid span { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 22px; border: 7px solid var(--surface); border-radius: 50%; color: var(--white); background: var(--blue); box-shadow: 0 0 0 1px #b9cdf7; font: 800 13px Manrope, sans-serif; }
.step-grid h3 { margin: 0 0 10px; font: 800 17px Manrope, sans-serif; }
.step-grid p { max-width: 250px; margin: auto; color: var(--muted); font-size: 13px; line-height: 1.7; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-grid > div:first-child > p { margin: 17px 0 27px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.button-dark { border-color: var(--navy); background: var(--navy); box-shadow: none; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 23px 3px; cursor: pointer; font-size: 14px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: -8px 3px 23px; color: var(--muted); font-size: 13px; line-height: 1.75; }

.cta-section { padding: 0 0 64px; }
.cta-box { min-height: 230px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 55px 66px; border-radius: 18px; color: var(--white); background: linear-gradient(115deg, #155eef, #0c3da1); box-shadow: 0 23px 55px rgba(21,94,239,.23); }
.cta-box > div > span { display: block; margin-bottom: 12px; color: #bcd0ff; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.cta-box p { margin: 13px 0 0; color: #d6e2ff; font-size: 14px; }
.button-white { flex: 0 0 auto; border-color: var(--white); color: var(--blue); background: var(--white); box-shadow: none; }
.button-white:hover { color: var(--blue); background: #f5f8ff; }

.site-footer { padding: 48px 0 24px; color: #9eabc5; background: #07122c; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; }
.brand-light { color: var(--white); }
.footer-grid > div:first-child > p { max-width: 350px; margin: 20px 0 0; font-size: 12px; line-height: 1.8; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 14px; font-size: 12px; }
.footer-grid b { margin-bottom: 5px; color: var(--white); font-size: 12px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }

@media (max-width: 1020px) {
    .main-nav { gap: 18px; }
    .hero-grid { gap: 32px; }
    .dashboard-card { transform: none; }
    .advantage-grid, .faq-grid { gap: 55px; }
}

@media (max-width: 820px) {
    .nav-toggle { display: block; }
    .nav-overlay { position: fixed; z-index: 1025; inset: 0; display: block; visibility: hidden; opacity: 0; background: rgba(4,10,25,.58); transition: opacity .25s, visibility .25s; }
    body.nav-open .nav-overlay { visibility: visible; opacity: 1; }
    .main-nav { position: fixed; z-index: 1030; top: 0; right: 0; bottom: 0; width: min(86vw, 340px); display: flex; align-items: stretch; flex-direction: column; gap: 6px; padding: 78px 24px 26px; color: var(--ink); background: #fff; box-shadow: -24px 0 60px rgba(0,0,0,.25); transform: translateX(105%); transition: transform .28s ease; }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav > a:not(.button), .main-nav .nav-login { margin: 0; padding: 13px 12px; border-radius: 9px; color: #344054 !important; }
    .main-nav > a:not(.button):hover { color: var(--blue) !important; background: var(--blue-light); }
    .main-nav .button { margin-top: 8px; }
    .nav-close { position: absolute; top: 18px; right: 20px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #e4e7ec; border-radius: 11px; color: #344054; background: #fff; font-size: 30px; line-height: 1; }
    .main-nav .nav-login { margin-left: 0; }
    .hero { padding-top: 128px; }
    .hero-grid, .advantage-grid, .faq-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 60px; }
    .hero-copy { text-align: center; }
    .eyebrow, .hero-actions, .trust-row { justify-content: center; }
    .hero h1, .hero-copy > p { margin-inline: auto; }
    .dashboard-stage { width: min(620px, 100%); margin-inline: auto; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 18px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .advantage-grid { gap: 90px; }
    .faq-grid { gap: 45px; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 580px) {
    .shell { width: min(100% - 28px, 1160px); }
    .brand-copy small { display: none; }
    .hero { min-height: auto; padding: 116px 0 68px; }
    .hero h1 { font-size: 40px; }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .trust-row { margin-top: 40px; }
    .trust-row div { min-width: 0; flex: 1; padding-right: 12px; margin-right: 12px; }
    .trust-row strong { font-size: 14px; }
    .trust-row span { font-size: 9px; }
    .dashboard-stage { min-height: 390px; }
    .dashboard-card { padding: 15px; }
    .float-pill { display: none; }
    .section { padding: 58px 0; }
    .section-heading { margin-bottom: 33px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-grid p { min-height: 0; }
    .advantage-grid { gap: 75px; }
    .code-window { padding-inline: 16px; }
    .code-window::before { inset: 25px -15px -25px 20px; }
    .code-window pre { font-size: 10px; }
    .step-grid { grid-template-columns: 1fr; gap: 38px; }
    .step-grid::before { top: 29px; bottom: 29px; left: 50%; right: auto; width: 1px; height: auto; }
    .step-grid article { padding: 0 25px; }
    .step-grid span { position: relative; }
    .cta-section { padding-bottom: 55px; }
    .cta-box { display: block; padding: 38px 27px; text-align: center; }
    .cta-box .button { width: 100%; margin-top: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 30px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { display: block; line-height: 2; text-align: center; }
}

/* Final professional compact pass. */
:root {
    --radius: 8px;
}

.site-header {
    background: #07142d;
    backdrop-filter: none;
}

.site-header .main-nav > a:not(.button),
.site-header .main-nav .nav-login,
.site-header .brand-copy strong {
    color: #ffffff !important;
}

.site-header .brand-copy small {
    color: #b8c6df !important;
}

.nav-wrap {
    min-height: 68px;
}

.brand-logo,
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
}

.button,
.button-small,
.button-ghost,
.button-dark,
.button-white,
.dashboard-card,
.balance-card,
.service-grid article,
.code-window,
.api-ready,
.cta-box,
.nav-close {
    border-radius: var(--radius);
}

.hero {
    min-height: 620px;
    padding: 104px 0 58px;
}

.hero::after,
.hero-glow {
    opacity: .12;
}

.hero h1 {
    letter-spacing: 0;
}

.trust-row {
    margin-top: 34px;
}

.dashboard-card {
    padding: 21px;
}

.section {
    padding: 60px 0;
}

.section-heading {
    margin-bottom: 32px;
}

.service-grid {
    gap: 14px;
}

.service-grid article {
    padding: 23px;
}

.cta-section {
    padding-bottom: 44px;
}

.cta-box {
    min-height: 190px;
    padding: 40px 48px;
}

.site-footer {
    padding: 34px 0 20px;
}

.footer-grid {
    gap: 44px;
}

.footer-bottom {
    margin-top: 24px;
}

@media (max-width: 820px) {
    .hero {
        padding-top: 102px;
    }

    .main-nav {
        border-radius: 0;
    }

    .site-header .main-nav > a:not(.button),
    .site-header .main-nav .nav-login {
        color: #102033 !important;
    }

    .site-header .main-nav > a:not(.button):hover,
    .site-header .main-nav .nav-login:hover {
        color: var(--blue) !important;
    }

    .site-header .main-nav .button {
        color: #ffffff !important;
    }
}

@media (max-width: 580px) {
    .nav-wrap {
        min-height: 62px;
    }

    .hero {
        padding: 90px 0 48px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section {
        padding: 46px 0;
    }

    .cta-box {
        padding: 28px 22px;
    }

    .site-footer {
        padding-top: 28px;
    }
}
