﻿
:root {
    --navy: #061a45;
    --navy-2: #0a2d6f;
    --blue: #1687f8;
    --blue-2: #0b64da;
    --purple: #9b43da;
    --violet: #6f37c7;
    --text: #0e1b3d;
    --muted: #667085;
    --line: #e7ecf4;
    --surface: #ffffff;
    --soft: #f7f9fd;
    --shadow: 0 24px 70px rgba(9, 35, 91, .13);
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: #071837;
    color: #dbe6ff;
    font-size: 13px;
    padding: 9px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.topbar span {
    opacity: .9;
}

.topbar .status {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ee58f;
    box-shadow: 0 0 0 4px rgba(62, 229, 143, .12);
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231,236,244,.9);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 10px 22px rgba(72, 94, 220, .27);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #475467;
    font-size: 14px;
    font-weight: 600;
}

    .nav-links a {
        transition: color .2s ease;
    }

        .nav-links a:hover {
            color: var(--blue-2);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-ghost {
    color: var(--navy);
    background: transparent;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 12px 25px rgba(69, 96, 221, .23);
}

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 14% 18%, rgba(22,135,248,.11), transparent 30%), radial-gradient(circle at 88% 18%, rgba(155,67,218,.13), transparent 30%), linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

    .hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -200px;
        top: 80px;
        border-radius: 50%;
        border: 1px solid rgba(111, 55, 199, .13);
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        left: -130px;
        bottom: -90px;
        border-radius: 50%;
        border: 1px solid rgba(22, 135, 248, .15);
    }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 60px;
    padding: 10px 0 10px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #dbe6f6;
    background: rgba(255,255,255,.86);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-2);
    margin-bottom: 22px;
    box-shadow: 0 8px 28px rgba(9, 36, 91, .06);
}

.eyebrow-badge {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: .06em;
}

h1 {
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 23px;
    color: #081c48;
}

.gradient-text {
    background: linear-gradient(90deg, #0b75e8, #7c43d2 58%, #aa43d5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy {
    max-width: 610px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 31px;
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 31px;
}

.btn-lg {
    padding: 15px 22px;
    min-width: 150px;
    border-radius: 14px;
}

.btn-outline {
    color: var(--navy);
    background: #fff;
    border: 1px solid #dce5f2;
    box-shadow: 0 10px 25px rgba(18, 52, 109, .06);
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #667085;
    font-size: 13px;
    font-weight: 600;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eef8ff;
    color: #0c7be9;
    font-size: 12px;
}

.visual-wrap {
    position: relative;
    min-height: 530px;
    display: grid;
    place-items: center;
}

.glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22,135,248,.18), rgba(155,67,218,.16));
    filter: blur(10px);
}

.logo-card {
    position: relative;
    width: min(430px, 92%);
    aspect-ratio: 1;
    border-radius: 38px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(15px);
    display: grid;
    place-items: center;
    padding: 26px;
    transform: rotate(-2deg);
}

    .logo-card::before {
        content: "";
        position: absolute;
        inset: 10px;
        border-radius: 30px;
        border: 1px solid #edf1f7;
        pointer-events: none;
    }

    .logo-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 24px;
        transform: rotate(2deg);
    }

.floating-card {
    position: absolute;
    background: rgba(255,255,255,.93);
    border: 1px solid #e9edf5;
    box-shadow: 0 18px 45px rgba(16,42,94,.14);
    border-radius: 18px;
    padding: 15px 17px;
    z-index: 3;
    backdrop-filter: blur(12px);
}

.fc-1 {
    left: 0;
    bottom: 80px;
}

.fc-2 {
    right: -10px;
    top: 75px;
}

.fc-title {
    font-size: 12px;
    color: #7a8497;
    margin-bottom: 5px;
}

.fc-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}

.fc-positive {
    color: #15945f;
    font-size: 11px;
    font-weight: 700;
    margin-top: 3px;
}

.section {
    padding: 10px 0;
}

.section-soft {
    background: var(--soft);
}

.section-head {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.kicker {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #6f4fd0;
    margin-bottom: 12px;
}

h2 {
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin-bottom: 16px;
    color: #0a1c46;
}

.section-head p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 27px;
    box-shadow: 0 12px 35px rgba(12, 36, 81, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .feature:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(11, 38, 89, .10);
    }

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 21px;
    background: linear-gradient(135deg, rgba(22,135,248,.12), rgba(155,67,218,.12));
    color: var(--navy);
    font-size: 23px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #101f45;
}

.feature p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.payment-section {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.payment-visual {
    border-radius: 30px;
    padding: 30px;
    background: radial-gradient(circle at top right, rgba(155,67,218,.24), transparent 35%), linear-gradient(145deg, #061a45, #0b3b87);
    min-height: 470px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mock-dashboard {
    position: absolute;
    inset: 48px 34px 34px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    padding: 24px;
}

.mock-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mini-logo {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.pill {
    border-radius: 999px;
    background: #edf5ff;
    padding: 7px 10px;
    font-size: 10px;
    font-weight: 700;
    color: #176fd2;
}

.balance {
    font-size: 12px;
    color: #7b8495;
    margin-bottom: 6px;
}

.amount {
    font-size: 34px;
    font-weight: 800;
    color: #0c1f49;
    margin-bottom: 20px;
}

.chart {
    height: 125px;
    display: flex;
    align-items: end;
    gap: 9px;
    margin: 10px 0 23px;
    padding: 0 5px;
}

.bar {
    flex: 1;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, #8f48d2, #1787f6);
    opacity: .9;
}

.mock-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-stat {
    border: 1px solid #e8edf4;
    border-radius: 13px;
    padding: 12px;
}

    .mock-stat small {
        color: #8993a5;
        font-size: 9px;
    }

    .mock-stat strong {
        display: block;
        color: #102149;
        margin-top: 4px;
        font-size: 13px;
    }

.payment-copy .section-head {
    text-align: left;
    margin: 0 0 25px;
}

.bullets {
    display: grid;
    gap: 16px;
    margin: 28px 0 32px;
}

.bullet {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.bullet-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: #edf6ff;
    color: #117ae5;
    font-weight: 800;
    margin-top: 1px;
}

.bullet strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
}

.bullet span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat {
    text-align: center;
    padding: 22px 14px;
    border-right: 1px solid var(--line);
}

    .stat:last-child {
        border-right: 0;
    }

    .stat strong {
        display: block;
        font-size: 33px;
        color: #0d2c68;
        margin-bottom: 6px;
    }

    .stat span {
        color: var(--muted);
        font-size: 13px;
        font-weight: 600;
    }

.cta {
    border-radius: 32px;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
    background: radial-gradient(circle at 90% 20%, rgba(185, 99, 255, .42), transparent 30%), linear-gradient(135deg, #061a45 0%, #0b4ba2 55%, #6936b7 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

    .cta::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        right: -80px;
        bottom: -130px;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 50%;
    }

    .cta h2 {
        color: #fff;
        max-width: 650px;
        margin-bottom: 8px;
    }

    .cta p {
        color: rgba(255,255,255,.78);
        line-height: 1.7;
    }

    .cta .btn {
        background: #fff;
        color: #0b2e6c;
        min-width: 155px;
        z-index: 2;
    }

footer {
    background: #061631;
    color: #ccd6e8;
    padding: 68px 0 28px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 45px;
}

.footer-brand p {
    max-width: 330px;
    color: #90a0bd;
    line-height: 1.7;
    font-size: 13px;
    margin-top: 15px;
}

footer h4 {
    color: #fff;
    margin-bottom: 17px;
    font-size: 14px;
}

footer ul {
    list-style: none;
    display: grid;
    gap: 11px;
    color: #90a0bd;
    font-size: 13px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.09);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #7f90ae;
    font-size: 12px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-size: 21px;
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .hero-grid,
    .payment-section {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 25px;
        padding-top: 65px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .trust-row {
        justify-content: center;
    }

    .visual-wrap {
        min-height: 500px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .topbar .status {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .nav {
        min-height: 70px;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 55px 0 65px;
    }

    h1 {
        font-size: 44px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .visual-wrap {
        min-height: 390px;
    }

    .logo-card {
        width: 310px;
        border-radius: 28px;
    }

    .fc-1 {
        left: 5px;
        bottom: 10px;
    }

    .fc-2 {
        right: 0;
        top: 25px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 75px 0;
    }

    .payment-visual {
        min-height: 410px;
        padding: 20px;
    }

    .mock-dashboard {
        inset: 30px 18px 18px;
    }

    .cta {
        padding: 38px 27px;
        border-radius: 24px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat strong {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .copyright {
        flex-direction: column;
    }
}


