*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #071D42;
    --navy-mid: #0F3580;
    --navy-lt: #1E52B8;
    --orange: #E8721A;
    --orange-dk: #C05A0D;
    --orange-lt: #FDF0E6;
    --sky: #EBF2FD;
    --sky-mid: #B8D0F7;
    --muted: #5A7CB0;
    --white: #FFFFFF;
    --bg: #F2F5FB;
    --border: #D0DCEE;
    --text-dark: #0B1E3D;
    --text-body: #3D5A80;
    --green: #15803D;
    --green-lt: #DCFCE7;
    --teal: #0D7A6E;
    --teal-lt: #E0F2F1;
    --purple: #5E35B1;
    --purple-lt: #EDE7F6;
    --amber: #B45309;
    --amber-lt: #FEF3C7;
    --red: #DC2626;
    --red-lt: #FEE2E2;
    --mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(1.5deg);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

@keyframes pulse-orange {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 114, 26, .4);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(232, 114, 26, 0);
    }
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}

@keyframes scan {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

/* ═══════════════════════════════════════════
   TOPBAR — EXACT HOMEPAGE MATCH
═══════════════════════════════════════════ */
.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 300;
    box-shadow: 0 2px 24px rgba(7, 29, 66, .07);
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    padding: 0;
    background: none;
}

.logo-mark {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark svg {
    width: 26px;
    height: 26px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.01em;
}

.logo-name span {
    color: var(--orange);
}

.logo-sub {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.nav-item>a:hover,
.nav-item>a.active {
    background: var(--sky);
    color: var(--navy);
}

.chev {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    transition: transform .2s;
}

.nav-item:hover .chev {
    transform: rotate(180deg);
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    min-width: 260px;
    box-shadow: 0 16px 48px rgba(7, 29, 66, .14);
    padding: 8px 0;
    z-index: 400;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: background .12s, color .12s;
}

.dropdown a:hover {
    background: var(--sky);
    color: var(--navy);
}

.dropdown-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.nav-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-out {
    padding: 9px 20px;
    border: 1.5px solid var(--navy);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-out:hover {
    background: var(--navy);
    color: #fff;
}

.btn-fill {
    padding: 9px 22px;
    border: none;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(232, 114, 26, .32);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-fill:hover {
    background: var(--orange-dk);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232, 114, 26, .38);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background .15s;
    background: none;
    border: none;
}

.hamburger:hover {
    background: var(--sky);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAV */
.mobile-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: min(320px, 100%);
    background: var(--white);
    border-left: 1px solid var(--border);
    z-index: 299;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(7, 29, 66, .12);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-inner {
    padding: 20px 20px 40px;
}

.mob-nav-item {
    border-bottom: 1px solid var(--border);
}

.mob-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.mob-nav-link:hover {
    color: var(--orange);
}

.mob-chev {
    width: 16px;
    height: 16px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform .25s;
}

.mob-dropdown {
    display: none;
    padding: 0 0 12px 12px;
}

.mob-dropdown.open {
    display: block;
}

.mob-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 13.5px;
    color: var(--text-body);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 2px;
}

.mob-dropdown a:hover {
    background: var(--sky);
    color: var(--navy);
}

.mob-btns {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mob-btns .btn-out,
.mob-btns .btn-fill {
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 29, 66, .35);
    z-index: 298;
    display: none;
    backdrop-filter: blur(2px);
}

.mobile-overlay.open {
    display: block;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    background: linear-gradient(140deg, #030C1E 0%, #071D42 35%, #0A2855 58%, #0F3580 100%);
    padding: 84px 0 72px;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 72% 20%, rgba(232, 114, 26, .15) 0%, transparent 50%),
        radial-gradient(ellipse at 6% 80%, rgba(94, 53, 177, .13) 0%, transparent 46%),
        radial-gradient(ellipse at 92% 78%, rgba(13, 122, 110, .1) 0%, transparent 40%),
        repeating-linear-gradient(0deg, transparent, transparent 68px, rgba(255, 255, 255, .012) 68px, rgba(255, 255, 255, .012) 69px),
        repeating-linear-gradient(90deg, transparent, transparent 68px, rgba(255, 255, 255, .012) 68px, rgba(255, 255, 255, .012) 69px);
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, .4), transparent);
    animation: scan 5s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.h-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-a {
    width: 420px;
    height: 420px;
    background: rgba(232, 114, 26, .1);
    right: -80px;
    top: -80px;
    animation: float 8s ease-in-out infinite;
}

.orb-b {
    width: 280px;
    height: 280px;
    background: rgba(94, 53, 177, .1);
    left: 28%;
    bottom: -40px;
    animation: float 10s ease-in-out infinite;
    animation-delay: 3s;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 52px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.h-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.h-bc span {
    font-size: 12px;
    color: rgba(255, 255, 255, .36);
}

.h-bc .cur {
    color: var(--orange);
}

.bc-d {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.hero-ew {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(232, 114, 26, .16);
    border: 1px solid rgba(232, 114, 26, .36);
    border-radius: 28px;
    padding: 8px 20px;
    font-size: 11.5px;
    font-weight: 700;
    color: #FFAA6E;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.ew-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -.025em;
}

.hero h1 em {
    background: linear-gradient(135deg, #E8721A, #FF9A4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.hero-sub {
    font-size: 16.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .68);
    line-height: 1.74;
    margin-bottom: 34px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.hbtn-p {
    padding: 15px 32px;
    background: var(--orange);
    border: none;
    border-radius: 13px;
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 8px 26px rgba(232, 114, 26, .42);
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hbtn-p:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
}

.hbtn-g {
    padding: 15px 28px;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: 13px;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hbtn-g:hover {
    background: rgba(255, 255, 255, .15);
}

.h-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.htag {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .74);
}

/* HERO DASHBOARD */
.hero-dash-wrap {
    position: relative;
}

.hero-dash {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    padding: 22px;
    position: relative;
    max-width: 100%;
}

.hd-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.hd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hd-title {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .86);
    flex: 1;
    margin-left: 4px;
}

.hd-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    color: #4ADE80;
    white-space: nowrap;
}

.hd-ld {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    animation: pulse-green 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.kyc-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.ks-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 12px 14px;
}

.ks-label {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .42);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.ks-val {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.ks-val-ok {
    color: #4ADE80;
}

.ks-val-pct {
    color: var(--orange);
}

.ks-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    margin-top: 4px;
}

.face-match {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.fm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.fm-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.fm-result {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #4ADE80;
}

.fm-result-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    flex-shrink: 0;
}

.fm-faces {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fm-face {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 2px solid rgba(255, 255, 255, .15);
    flex-shrink: 0;
}

.fm-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(74, 222, 128, .3), rgba(74, 222, 128, .7), rgba(74, 222, 128, .3));
    position: relative;
    min-width: 20px;
}

.fm-connector::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(74, 222, 128, .15);
    border: 1px solid rgba(74, 222, 128, .3);
    color: #4ADE80;
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.fm-score {
    text-align: right;
    white-space: nowrap;
}

.fm-score-num {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #4ADE80;
}

.fm-score-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, .38);
}

.kyc-alerts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.ka-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 11px;
    padding: 9px 13px;
}

.ka-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.ka-text {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .78);
    flex: 1;
    min-width: 0;
}

.ka-sub {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .36);
}

.ka-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}

.kab-ok {
    background: rgba(74, 222, 128, .12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .22);
}

.kab-pass {
    background: rgba(121, 192, 255, .1);
    color: #79C0FF;
    border: 1px solid rgba(121, 192, 255, .2);
}

.decision-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(74, 222, 128, .08);
    border: 1px solid rgba(74, 222, 128, .2);
    border-radius: 12px;
    padding: 12px 16px;
    gap: 10px;
}

.df-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(74, 222, 128, .9);
}

.df-val {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #4ADE80;
}

.df-time {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    font-family: var(--mono);
    white-space: nowrap;
}

.fw {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 11px 15px;
    z-index: 3;
}

.fw-a {
    top: -22px;
    right: -22px;
    animation: float2 5s ease-in-out infinite;
}

.fw-b {
    bottom: -22px;
    left: -22px;
    animation: float2 6.5s ease-in-out infinite;
    animation-delay: 2s;
}

.fw-t {
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.fw-v {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: #fff;
}

.fw-s {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.tb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: stretch;
    min-width: max-content;
}

.tbi {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
}

.tbi:last-child {
    border-right: none;
}

.tbi-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.tbi-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.tbi-sub {
    font-size: 11.5px;
    color: var(--muted);
}

/* ═══════════════════════════════════════════
   METRICS STRIP
═══════════════════════════════════════════ */
.metrics-strip {
    background: var(--navy);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.metrics-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(232, 114, 26, .1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 50%, rgba(94, 53, 177, .08) 0%, transparent 50%);
}

.metrics-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.metric-card {
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.metric-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, .1);
}

.metric-card:last-child::after {
    display: none;
}

.metric-num {
    font-family: 'Sora', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 10px;
}

.metric-num em {
    color: var(--orange);
    font-style: normal;
}

.metric-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5;
}

.metric-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .26);
    margin-top: 6px;
    font-family: var(--mono);
}

/* USE CASE STRIP */
.usecase-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.usecase-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.usecase-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
    flex-shrink: 0;
}

.usecase-divider {
    width: 1px;
    height: 22px;
    background: var(--border);
    flex-shrink: 0;
}

.usecase-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.uc-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-mid);
    transition: all .18s;
    cursor: default;
    white-space: nowrap;
}

.uc-chip:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* ═══════════════════════════════════════════
   SECTION FRAMEWORK
═══════════════════════════════════════════ */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.section {
    padding: 88px 0;
}

.sec-head {
    text-align: center;
    margin-bottom: 60px;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-lt);
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 28px;
    padding: 7px 20px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sec-title {
    font-family: 'Sora', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.sec-title em {
    color: var(--orange);
    font-style: normal;
}

.sec-desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.84;
}

/* ═══════════════════════════════════════════
   MODULES GRID
═══════════════════════════════════════════ */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mod-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 3px 16px rgba(7, 29, 66, .06);
    transition: all .26s;
    position: relative;
    overflow: hidden;
}

.mod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.mc-1::before {
    background: linear-gradient(90deg, #0F3580, #1E52B8);
}

.mc-2::before {
    background: linear-gradient(90deg, #5E35B1, #7B50D4);
}

.mc-3::before {
    background: linear-gradient(90deg, #0D7A6E, #14B8A6);
}

.mc-4::before {
    background: linear-gradient(90deg, #DC2626, #F87171);
}

.mc-5::before {
    background: linear-gradient(90deg, #15803D, #22C55E);
}

.mc-6::before {
    background: linear-gradient(90deg, #B45309, #F59E0B);
}

.mc-7::before {
    background: linear-gradient(90deg, #0369A1, #38BDF8);
}

.mc-8::before {
    background: linear-gradient(90deg, #BE123C, #FB7185);
}

.mc-9::before {
    background: linear-gradient(90deg, #713F12, #D97706);
}

.mc-10::before {
    background: linear-gradient(90deg, #065F46, #10B981);
}

.mod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(7, 29, 66, .11);
}

.mod-icon {
    font-size: 26px;
    margin-bottom: 12px;
}

.mod-title {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.mod-desc {
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.72;
    margin-bottom: 12px;
}

.mod-sla {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 4px 11px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--navy-mid);
}

/* ═══════════════════════════════════════════
   BANNER 1
═══════════════════════════════════════════ */
.banner-1 {
    background: linear-gradient(140deg, #040D1E 0%, #071D42 40%, #0F3580 80%, #163C8A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 25%, rgba(232, 114, 26, .14) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 75%, rgba(94, 53, 177, .12) 0%, transparent 46%);
}

.b1-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.b1-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 114, 26, .18);
    border: 1px solid rgba(232, 114, 26, .3);
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 10.5px;
    font-weight: 700;
    color: #FFAA6E;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.b1-title {
    font-family: 'Sora', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.b1-title em {
    background: linear-gradient(135deg, #E8721A, #FF9A4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.b1-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.82;
    margin-bottom: 28px;
}

.b1-metrics {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.b1-met-num {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--orange);
}

.b1-met-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
    line-height: 1.4;
}

.kyc-flow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kf-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 12px 15px;
}

.kfr-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.kfr-info {
    flex: 1;
    min-width: 0;
}

.kfr-name {
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
}

.kfr-detail {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .38);
    margin-top: 2px;
}

.kfr-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.kfb-ok {
    background: rgba(74, 222, 128, .12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .22);
}

.kfb-proc {
    background: rgba(251, 191, 36, .12);
    color: #FBB000;
    border: 1px solid rgba(251, 191, 36, .22);
}

.kf-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 4px;
}

.kfm-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.kfm-val {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--orange);
}

.kfm-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.hiw-section {
    background: var(--white);
    padding: 88px 0;
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hiw-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.hiw-track::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(180deg, var(--orange), var(--navy-mid));
    border-radius: 2px;
}

.hiw-step {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 0 0 28px;
    position: relative;
}

.hiw-step:last-child {
    padding-bottom: 0;
}

.hiw-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--orange);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(232, 114, 26, .2);
}

.hiw-content {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    transition: all .22s;
}

.hiw-content:hover {
    border-color: var(--sky-mid);
    box-shadow: 0 6px 24px rgba(7, 29, 66, .08);
}

.hiw-tag {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
}

.hiw-title {
    font-family: 'Sora', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.hiw-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
}

.hiw-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.hiw-chip {
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 3px 11px;
    font-size: 11px;
    font-weight: 600;
    color: var(--navy-mid);
}

.hiw-visual {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.hiw-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(255, 255, 255, .025) 24px, rgba(255, 255, 255, .025) 25px);
}

.hiw-vis-inner {
    position: relative;
}

.kyc-report-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 12px;
}

.krc-head {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 12px;
}

.krc-rows {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.krc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .06);
    border-radius: 9px;
}

.krc-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .48);
}

.krc-val {
    font-size: 12px;
    font-weight: 700;
}

.krcv-ok {
    color: #4ADE80;
}

.kyc-verdict {
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .22);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
}

.kv-val {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #4ADE80;
}

.kv-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   API SECTION
═══════════════════════════════════════════ */
.api-section {
    background: var(--navy);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.api-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 78% 25%, rgba(232, 114, 26, .1) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 56px, rgba(255, 255, 255, .014) 56px, rgba(255, 255, 255, .014) 57px),
        repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(255, 255, 255, .014) 56px, rgba(255, 255, 255, .014) 57px);
}

.api-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
    position: relative;
}

.api-left .sec-tag {
    background: rgba(232, 114, 26, .18);
    border-color: rgba(232, 114, 26, .3);
}

.api-left .sec-title {
    color: #fff;
    text-align: left;
    font-size: 30px;
}

.api-left .sec-desc {
    color: rgba(255, 255, 255, .58);
    text-align: left;
    margin: 0 0 28px;
}

.api-specs {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 26px;
}

.api-spec {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 13px 17px;
}

.asi {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(232, 114, 26, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.as-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.as-val {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
}

.sla-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-bottom: 28px;
}

.sla-b {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 16px 12px;
    text-align: center;
}

.sla-num {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--orange);
}

.sla-lbl {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

.api-btns {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.abtn-p {
    padding: 13px 24px;
    background: var(--orange);
    border: none;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.abtn-p:hover {
    background: var(--orange-dk);
}

.abtn-g {
    padding: 13px 24px;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.abtn-g:hover {
    background: rgba(255, 255, 255, .14);
}

.api-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.code-block {
    background: #050A14;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    overflow: hidden;
}

.cb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #030710;
}

.cb-dots {
    display: flex;
    gap: 6px;
}

.cb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cb-lbl {
    font-family: var(--mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .04em;
}

.cb-body {
    padding: 14px 18px;
    overflow-x: auto;
}

.cl {
    font-family: var(--mono);
    font-size: 11.5px;
    line-height: 2;
    white-space: pre;
}

.c-comment {
    color: #4A5A6A;
}

.c-method {
    color: #CE9EFF;
}

.c-url {
    color: #79C0FF;
}

.c-key {
    color: #79C0FF;
}

.c-str {
    color: #A5D6A7;
}

.c-num {
    color: #FFB37D;
}

.c-bracket {
    color: rgba(255, 255, 255, .65);
}

.resp-block {
    background: #071810;
    border: 1px solid rgba(74, 222, 128, .15);
    border-radius: 17px;
    overflow: hidden;
}

.rb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    border-bottom: 1px solid rgba(74, 222, 128, .1);
}

.rb-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: #4ADE80;
}

.rb-time {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, .26);
}

.api-module-tags {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 14px 18px;
}

/* ═══════════════════════════════════════════
   SECURITY
═══════════════════════════════════════════ */
.sec-section {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 100%);
    padding: 88px 0;
}

.sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.secf-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(7, 29, 66, .06);
    transition: all .24s;
}

.secf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(7, 29, 66, .1);
}

.secf-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 14px;
}

.secf-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.secf-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.72;
}

.secf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: var(--green-lt);
    border: 1px solid rgba(21, 128, 61, .18);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
}

.secf-badge svg {
    width: 12px;
    height: 12px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* ═══════════════════════════════════════════
   CTA SECTION — EXACT HOMEPAGE MATCH
═══════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(140deg, #040D1E 0%, #071D42 45%, #0F3580 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(232, 114, 26, .14) 0%, transparent 55%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-inner .sec-tag {
    background: rgba(232, 114, 26, .18);
    border-color: rgba(232, 114, 26, .3);
}

.cta-inner .sec-title {
    color: #fff;
}

.cta-inner .sec-desc {
    color: rgba(255, 255, 255, .65);
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.cta-primary {
    padding: 16px 36px;
    background: var(--orange);
    border: none;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 8px 28px rgba(232, 114, 26, .4);
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.cta-primary:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
}

.cta-ghost {
    padding: 16px 36px;
    background: rgba(255, 255, 255, .09);
    border: 1.5px solid rgba(255, 255, 255, .24);
    border-radius: 13px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.cta-ghost:hover {
    background: rgba(255, 255, 255, .16);
}

/* CONTACT STRIP */
.contact-strip {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* ═══════════════════════════════════════════
   FOOTER — EXACT HOMEPAGE MATCH
═══════════════════════════════════════════ */
footer {
    background: #040D1E;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-legal {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
}

.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .15s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE
═══════════════════════════════════════════ */
@media(max-width:1100px) {
    .topbar {
        padding: 0 32px;
    }

    .wrap {
        padding: 0 32px;
    }

    .hero-inner {
        padding: 80px 32px 64px;
        gap: 48px;
    }

    .metrics-inner {
        padding: 0 32px;
    }

    .tb-inner {
        padding: 0 32px;
    }

    .usecase-inner {
        padding: 0 32px;
    }

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

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metrics-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric-card::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media(max-width:960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 56px 32px 48px;
    }

    .hero {
        min-height: auto;
        padding: 72px 0 60px;
    }

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

    .hero-dash-wrap {
        padding-top: 48px;
    }

    .fw-a {
        top: -16px;
        right: -10px;
    }

    .fw-b {
        bottom: -16px;
        left: -10px;
    }

    .b1-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .api-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .topbar {
        padding: 0 20px;
        height: 64px;
    }

    .nav-links,
    .nav-btns {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .wrap {
        padding: 0 20px;
    }

    .hero-inner {
        padding: 52px 20px 44px;
    }

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

    .hero-sub {
        font-size: 15px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hbtn-p,
    .hbtn-g {
        text-align: center;
        justify-content: center;
    }

    .metrics-inner {
        padding: 0 20px;
        grid-template-columns: 1fr 1fr;
    }

    .metric-num {
        font-size: 34px;
    }

    .metric-card {
        padding: 26px 18px;
    }

    .metric-card::after {
        display: none;
    }

    .metric-card:nth-child(odd)::after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255, 255, 255, .1);
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .sec-grid {
        grid-template-columns: 1fr;
    }

    .sec-title {
        font-size: 26px;
    }

    .hiw-track::before {
        left: 26px;
    }

    .hiw-num {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }

    .hiw-grid {
        gap: 28px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-ghost {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .contact-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .kyc-status-grid {
        grid-template-columns: 1fr 1fr;
    }

    .b1-metrics {
        gap: 20px;
    }

    .kf-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .sla-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .usecase-inner {
        padding: 0 20px;
    }

    .tb-inner {
        padding: 0 20px;
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-inner {
        padding: 44px 16px 36px;
    }

    .wrap {
        padding: 0 16px;
    }

    .topbar {
        padding: 0 16px;
    }

    .metrics-inner {
        padding: 0 16px;
        grid-template-columns: 1fr;
    }

    .metric-card::after,
    .metric-card:nth-child(odd)::after {
        display: none;
    }

    .metric-card {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .metric-card:last-child {
        border-bottom: none;
    }

    .fw-a,
    .fw-b {
        display: none;
    }

    .kyc-status-grid {
        grid-template-columns: 1fr;
    }

    .fm-faces {
        flex-wrap: nowrap;
    }

    .fm-face {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .ka-text {
        font-size: 10px;
    }

    .ka-sub {
        display: none;
    }

    .kf-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .kfm-val {
        font-size: 16px;
    }

    .hiw-track::before {
        left: 20px;
    }

    .hiw-num {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hiw-step {
        gap: 14px;
    }

    .b1-title {
        font-size: 26px;
    }

    .sec-title {
        font-size: 22px;
    }

    .cta-inner .sec-title {
        font-size: 26px;
    }

    .sla-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .sla-num {
        font-size: 18px;
    }

    .usecase-inner {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .usecase-divider {
        display: none;
    }

    .footer-legal {
        font-size: 11px;
    }

    .api-left .sec-title {
        font-size: 24px;
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--sky-mid);
    border-radius: 6px;
}