*,
*::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;
    --red: #DC2626;
    --red-lt: #FEE2E2;
    --red-mid: #F87171;
    --amber: #B45309;
    --amber-lt: #FEF3C7;
    --purple: #5E35B1;
    --purple-lt: #EDE7F6;
    --teal: #0D7A6E;
    --teal-lt: #E0F2F1;
    --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;
    -webkit-text-size-adjust: 100%;
}

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

    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: .3;
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, .5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

@keyframes pulse-orange {

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

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

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

    100% {
        top: 200%;
    }
}

@keyframes alert-in {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* ── TOPBAR ── */
.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: 999;
    box-shadow: 0 2px 24px rgba(7, 29, 66, .07);
}

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

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

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

.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;
    white-space: nowrap;
}

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

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

.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: 270px;
    box-shadow: 0 16px 48px rgba(7, 29, 66, .14);
    padding: 8px 0;
    z-index: 400;
}

.nav-item:hover .dropdown {
    display: block;
    animation: slideDown .15s ease;
}

.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;
}

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

.di {
    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;
    white-space: nowrap;
}

.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;
    white-space: nowrap;
}

.btn-fill:hover {
    background: var(--orange-dk);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
}

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

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

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

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

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 998;
    overflow-y: auto;
    padding: 8px 20px 48px;
    flex-direction: column;
}

.mobile-menu.open {
    display: flex;
    animation: slideDown .2s ease;
}

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

.mm-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mm-link.active {
    color: var(--navy-mid);
}

.mm-chev {
    width: 16px;
    height: 16px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    transition: transform .2s;
    flex-shrink: 0;
}

.mm-item.expanded .mm-chev {
    transform: rotate(180deg);
}

.mm-sub {
    display: none;
    padding: 4px 0 14px;
    flex-direction: column;
    gap: 2px;
}

.mm-item.expanded .mm-sub {
    display: flex;
}

.mm-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    border-radius: 10px;
    transition: background .12s;
}

.mm-sub a:hover,
.mm-sub a:active {
    background: var(--sky);
}

.mm-btns {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding-top: 22px;
}

.mm-btns .btn-fill,
.mm-btns .btn-out {
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 11px;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(140deg, #030710 0%, #0A0F24 28%, #071D42 56%, #0B1E3D 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 68% 20%, rgba(220, 38, 38, .14) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 78%, rgba(94, 53, 177, .18) 0%, transparent 46%),
        radial-gradient(ellipse at 88% 80%, rgba(232, 114, 26, .1) 0%, transparent 40%),
        repeating-linear-gradient(0deg, transparent, transparent 64px, rgba(255, 255, 255, .012) 64px, rgba(255, 255, 255, .012) 65px),
        repeating-linear-gradient(90deg, transparent, transparent 64px, rgba(255, 255, 255, .012) 64px, rgba(255, 255, 255, .012) 65px);
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, .4), rgba(232, 114, 26, .3), transparent);
    animation: scanline 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.h-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.orb-r {
    width: 420px;
    height: 420px;
    background: rgba(220, 38, 38, .1);
    filter: blur(70px);
    right: -80px;
    top: -80px;
    animation: float 8s ease-in-out infinite;
}

.orb-p {
    width: 300px;
    height: 300px;
    background: rgba(94, 53, 177, .11);
    filter: blur(70px);
    left: 25%;
    bottom: -50px;
    animation: float 10s ease-in-out infinite;
    animation-delay: 3s;
}

.orb-o {
    width: 180px;
    height: 180px;
    background: rgba(232, 114, 26, .09);
    filter: blur(60px);
    left: 6%;
    top: 22%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 52px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    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);
    flex-shrink: 0;
}

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

.ew-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #EF4444;
    flex-shrink: 0;
    animation: pulse-red 2s ease-in-out infinite;
}

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

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

.hero-sub {
    font-size: 17px;
    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: linear-gradient(135deg, #DC2626, #E8721A);
    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 28px rgba(220, 38, 38, .38);
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    animation: pulse-orange 2.8s ease-in-out infinite;
    white-space: nowrap;
}

.hbtn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(220, 38, 38, .44);
}

.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;
    white-space: nowrap;
}

.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);
}

/* ── FRAUD DASHBOARD ── */
.fdash {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    padding: 22px;
    position: relative;
}

.fdash-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    overflow: hidden;
}

.fd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fd-title {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .86);
    flex: 1;
    margin-left: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.fd-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    color: #F87171;
    flex-shrink: 0;
}

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

.risk-score-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 13px;
}

.rs-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    padding: 13px 11px;
    text-align: center;
}

.rs-val {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.rs-lbl {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .42);
    margin-top: 4px;
    line-height: 1.3;
}

.rs-status {
    font-size: 10px;
    font-weight: 700;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
}

.rss-high {
    background: rgba(220, 38, 38, .18);
    color: #F87171;
    border: 1px solid rgba(220, 38, 38, .28);
}

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

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

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

.alert-card {
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 12px;
    padding: 11px 14px;
    transition: background .2s;
}

.alert-card:hover {
    background: rgba(255, 255, 255, .08);
}

.alert-card.alert-danger {
    border-color: rgba(220, 38, 38, .25);
    background: rgba(220, 38, 38, .08);
}

.alert-card.alert-warn {
    border-color: rgba(251, 191, 36, .2);
    background: rgba(251, 191, 36, .06);
}

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

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

.ac-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
    line-height: 1.3;
}

.ac-sub {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .38);
    margin-top: 2px;
    line-height: 1.4;
}

.ac-badge {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.acb-danger {
    background: rgba(220, 38, 38, .2);
    color: #FCA5A5;
    border: 1px solid rgba(220, 38, 38, .3);
}

.acb-warn {
    background: rgba(251, 191, 36, .14);
    color: #FBB000;
    border: 1px solid rgba(251, 191, 36, .24);
}

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

.decision-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
}

.dec-cell {
    border-radius: 11px;
    padding: 11px 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid;
}

.dc-approve {
    background: rgba(74, 222, 128, .1);
    color: #4ADE80;
    border-color: rgba(74, 222, 128, .22);
}

.dc-review {
    background: rgba(251, 191, 36, .1);
    color: #FBB000;
    border-color: rgba(251, 191, 36, .22);
}

.dc-reject {
    background: rgba(220, 38, 38, .12);
    color: #F87171;
    border-color: rgba(220, 38, 38, .24);
}

.dc-escalate {
    background: rgba(94, 53, 177, .12);
    color: #B39DDB;
    border-color: rgba(94, 53, 177, .24);
}

.dec-cell div:first-child {
    font-size: 16px;
    margin-bottom: 5px;
}

.dec-cell div:last-child {
    font-size: 9.5px;
    opacity: .7;
    font-weight: 600;
    margin-top: 3px;
}

.fw {
    position: absolute;
    background: rgba(20, 6, 6, .72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(220, 38, 38, .25);
    border-radius: 14px;
    padding: 11px 15px;
    z-index: 3;
    will-change: transform;
}

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

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

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

.fw-v {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: #F87171;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

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

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

.tb-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 52px;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tb-inner::-webkit-scrollbar {
    display: none;
}

.tbi {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 26px;
    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);
}

/* ── WRAP / SECTION ── */
.wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 52px;
}

.section {
    padding: 88px 0;
}

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

.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-tag.red {
    background: var(--red-lt);
    border-color: rgba(220, 38, 38, .3);
    color: var(--red);
}

.sec-title {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    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: 16.5px;
    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: 20px;
}

.mod-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 4px 20px rgba(7, 29, 66, .06);
    transition: all .26s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.mod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(7, 29, 66, .12);
    border-color: var(--sky-mid);
}

.mod-card:hover::before {
    height: 5px;
}

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

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

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

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

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

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

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

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

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

.mc-10::before {
    background: linear-gradient(90deg, #1E3A5F, #2E5E8A);
}

.mc-11::before {
    background: linear-gradient(90deg, #7C3AED, #A78BFA);
}

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

.mod-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

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

.mod-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 13px;
    flex: 1;
}

.mod-feats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mod-feat {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-body);
}

.mf-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 6px;
}

.mod-sla {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: var(--red-lt);
    border: 1px solid rgba(220, 38, 38, .15);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
}

/* ── BANNER 1 ── */
.banner-1 {
    background: linear-gradient(140deg, #040810 0%, #0A0F24 35%, #0F1A3E 65%, #0B1630 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 25%, rgba(220, 38, 38, .16) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 75%, rgba(94, 53, 177, .14) 0%, transparent 46%),
        repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255, 255, 255, .018) 28px, rgba(255, 255, 255, .018) 29px);
}

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

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

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

.b1-title em {
    background: linear-gradient(135deg, #EF4444, #FB923C);
    -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-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.b1-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #F87171;
}

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

.case-queue {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.cq-title {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
}

.cq-count {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.cq-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .2s;
}

.cq-card:hover {
    background: rgba(255, 255, 255, .1);
}

.cq-card.danger {
    border-color: rgba(220, 38, 38, .3);
    background: rgba(220, 38, 38, .08);
}

.cq-card.warn {
    border-color: rgba(251, 191, 36, .22);
    background: rgba(251, 191, 36, .06);
}

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

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

.cq-name {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cq-detail {
    font-size: 11px;
    color: rgba(255, 255, 255, .38);
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cq-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.cqb-r {
    background: rgba(220, 38, 38, .2);
    color: #FCA5A5;
    border: 1px solid rgba(220, 38, 38, .3);
}

.cqb-w {
    background: rgba(251, 191, 36, .14);
    color: #FBB000;
    border: 1px solid rgba(251, 191, 36, .24);
}

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

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

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

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

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

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

.hiw-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.hiw-track::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(180deg, #EF4444, #5E35B1, #E8721A);
    border-radius: 2px;
}

.hiw-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 0 0 36px;
    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(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(220, 38, 38, .18);
}

.hiw-content {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 2px 14px rgba(7, 29, 66, .05);
    transition: all .22s;
}

.hiw-content:hover {
    border-color: rgba(220, 38, 38, .2);
    box-shadow: 0 8px 28px rgba(7, 29, 66, .08);
}

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

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

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

.hiw-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.hiw-chip {
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy-mid);
}

.hiw-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    background: var(--red-lt);
    border: 1px solid rgba(220, 38, 38, .15);
    border-radius: 7px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
}

/* ── BANNER 2 ── */
.banner-2 {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 50%, #EDE7F6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.signal-wrap {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

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

.sig-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(7, 29, 66, .1);
}

.sig-card.sig-danger {
    border-color: rgba(220, 38, 38, .25);
    background: linear-gradient(135deg, #FFF5F5, var(--white));
}

.sig-card.sig-warn {
    border-color: rgba(251, 191, 36, .22);
}

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

.sig-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.sig-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.sib-r {
    background: var(--red-lt);
    color: var(--red);
    border: 1px solid rgba(220, 38, 38, .2);
}

.sib-w {
    background: var(--amber-lt);
    color: var(--amber);
    border: 1px solid rgba(180, 83, 9, .18);
}

.sib-g {
    background: var(--green-lt);
    color: var(--green);
    border: 1px solid rgba(21, 128, 61, .18);
}

.device-graph {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dg-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.dg-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid;
}

.dg-lbl {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
}

.dg-line {
    flex: 1;
    height: 2px;
    border-top: 2px dashed var(--border);
    min-width: 20px;
    margin-top: -24px;
}

.identity-score-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.isb-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.isb-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-body);
    min-width: 100px;
}

.isb-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.isb-fill {
    height: 100%;
    border-radius: 10px;
}

.isb-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-mid);
    min-width: 36px;
    text-align: right;
}

.anomaly-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 52px;
    margin-top: 6px;
}

.ab {
    border-radius: 4px 4px 0 0;
    flex: 1;
}

.ab-normal {
    background: rgba(30, 82, 184, .3);
}

.ab-spike {
    background: rgba(220, 38, 38, .7);
}

.b2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-lt);
    border: 1px solid rgba(220, 38, 38, .25);
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.b2-title {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.b2-title em {
    color: var(--red);
    font-style: normal;
}

.b2-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.82;
    margin-bottom: 24px;
}

.b2-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b2-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.b2-ii {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--red-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.b2-ii svg {
    width: 13px;
    height: 13px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* ── USE CASES ── */
.uc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.uc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 2px 14px rgba(7, 29, 66, .05);
    transition: all .24s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
}

.uc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0 0 20px 20px;
}

.uc-card:nth-child(1)::after {
    background: linear-gradient(90deg, #DC2626, #F87171);
}

.uc-card:nth-child(2)::after {
    background: linear-gradient(90deg, #5E35B1, #7B50D4);
}

.uc-card:nth-child(3)::after {
    background: linear-gradient(90deg, #B45309, #F59E0B);
}

.uc-card:nth-child(4)::after {
    background: linear-gradient(90deg, #0369A1, #38BDF8);
}

.uc-card:nth-child(5)::after {
    background: linear-gradient(90deg, #0D7A6E, #14B8A6);
}

.uc-card:nth-child(6)::after {
    background: linear-gradient(90deg, #BE123C, #FB7185);
}

.uc-card:nth-child(7)::after {
    background: linear-gradient(90deg, #0F3580, #1E52B8);
}

.uc-card:nth-child(8)::after {
    background: linear-gradient(90deg, #15803D, #22C55E);
}

.uc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(7, 29, 66, .11);
    border-color: rgba(220, 38, 38, .15);
}

.uc-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

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

.uc-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.68;
    margin-bottom: 14px;
}

.uc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.uc-tag {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 7px;
    background: var(--red-lt);
    color: var(--red);
    border: 1px solid rgba(220, 38, 38, .15);
}

/* ── BANNER 3 ── */
.banner-3 {
    background: linear-gradient(140deg, #04080F 0%, #0A1020 38%, #0F1A3E 70%, #130A28 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 28%, rgba(94, 53, 177, .16) 0%, transparent 46%),
        radial-gradient(ellipse at 88% 65%, rgba(220, 38, 38, .12) 0%, transparent 44%),
        repeating-linear-gradient(135deg, transparent, transparent 28px, rgba(255, 255, 255, .016) 28px, rgba(255, 255, 255, .016) 29px);
}

.b3-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: center;
    position: relative;
}

.b3-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(94, 53, 177, .18);
    border: 1px solid rgba(94, 53, 177, .32);
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 10.5px;
    font-weight: 700;
    color: #B39DDB;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

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

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

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

.b3-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b3-feat {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 13px 16px;
}

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

.b3-ft {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.dec-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dec-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    padding: 20px 18px;
    transition: all .22s;
}

.dec-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-3px);
}

.dec-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.dec-card-label {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .42);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 6px;
}

.dec-card-val {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 4px;
}

.dc-a .dec-card-val {
    color: #4ADE80;
}

.dc-rv .dec-card-val {
    color: #FBB000;
}

.dc-rj .dec-card-val {
    color: #F87171;
}

.dc-es .dec-card-val {
    color: #B39DDB;
}

.dec-card-pct {
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 4px;
}

.dc-a .dec-card-pct {
    background: rgba(74, 222, 128, .12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .22);
}

.dc-rv .dec-card-pct {
    background: rgba(251, 191, 36, .12);
    color: #FBB000;
    border: 1px solid rgba(251, 191, 36, .22);
}

.dc-rj .dec-card-pct {
    background: rgba(220, 38, 38, .12);
    color: #F87171;
    border: 1px solid rgba(220, 38, 38, .22);
}

.dc-es .dec-card-pct {
    background: rgba(94, 53, 177, .12);
    color: #B39DDB;
    border: 1px solid rgba(94, 53, 177, .22);
}

/* ── COMPARISON ── */
.comp-section {
    background: var(--white);
    padding: 88px 0;
}

.comp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    box-shadow: 0 4px 28px rgba(7, 29, 66, .09);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.comp-table thead th {
    padding: 20px 28px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.comp-table thead th:first-child {
    background: var(--bg);
    color: var(--muted);
    text-align: left;
    width: 30%;
    position: sticky;
    left: 0;
    z-index: 2;
}

.comp-table thead th:nth-child(2) {
    background: var(--navy);
    color: #fff;
    width: 35%;
    text-align: center;
}

.comp-table thead th:nth-child(2) span {
    color: var(--orange);
}

.comp-table thead th:last-child {
    background: #F5F7FA;
    color: var(--muted);
    width: 35%;
    text-align: center;
}

.comp-table td {
    padding: 16px 28px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table td:first-child {
    font-weight: 700;
    color: var(--text-body);
    background: var(--bg);
    position: sticky;
    left: 0;
    z-index: 1;
}

.comp-table td:nth-child(2) {
    background: rgba(7, 29, 66, .015);
    text-align: center;
}

.comp-table td:last-child {
    background: #FAFBFD;
    text-align: center;
    color: var(--muted);
}

.c-yes {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-weight: 700;
}

.c-yes svg {
    width: 16px;
    height: 16px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.c-no {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--red);
    font-weight: 500;
}

.c-no svg {
    width: 16px;
    height: 16px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* ── 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(220, 38, 38, .1) 0%, transparent 50%),
        radial-gradient(ellipse at 8% 75%, rgba(94, 53, 177, .1) 0%, transparent 45%),
        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: 72px;
    align-items: start;
    position: relative;
}

.api-left .sec-tag {
    background: rgba(220, 38, 38, .14);
    border-color: rgba(220, 38, 38, .28);
    color: #FCA5A5;
}

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

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

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

.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: 14px;
    padding: 14px 18px;
}

.api-spec-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(220, 38, 38, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.api-spec-label {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 3px;
}

.api-spec-val {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    word-break: break-all;
}

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

.sla-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
}

.sla-num {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #F87171;
}

.sla-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .42);
    margin-top: 5px;
    line-height: 1.4;
}

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

.abtn-p {
    padding: 13px 26px;
    background: linear-gradient(135deg, #DC2626, #E8721A);
    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;
    box-shadow: 0 6px 20px rgba(220, 38, 38, .3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.abtn-p:hover {
    opacity: .9;
}

.abtn-g {
    padding: 13px 26px;
    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;
    white-space: nowrap;
}

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

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

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

.cb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    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-label {
    font-family: var(--mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .04em;
}

.cb-body {
    padding: 18px 22px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cl {
    font-family: var(--mono);
    font-size: 12px;
    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: #120608;
    border: 1px solid rgba(248, 113, 113, .18);
    border-radius: 18px;
    overflow: hidden;
}

.rb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(248, 113, 113, .12);
}

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

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

/* ── SECURITY ── */
.security-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 cubic-bezier(.22, 1, .36, 1);
}

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

.secf-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

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

.secf-desc {
    font-size: 13.5px;
    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;
}

/* ── CASE STUDIES ── */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(7, 29, 66, .07);
    transition: all .24s cubic-bezier(.22, 1, .36, 1);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 52px rgba(7, 29, 66, .12);
}

.cc-header {
    padding: 26px 26px 20px;
    border-bottom: 1px solid var(--border);
}

.cc-industry {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red-lt);
    border: 1px solid rgba(220, 38, 38, .18);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

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

.cc-tagline {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
}

.cc-body {
    padding: 20px 26px 24px;
}

.cc-challenge {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.65;
}

.cc-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.cc-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cc-ri {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--green-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.cc-ri svg {
    width: 11px;
    height: 11px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.cc-rt {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.cc-rt strong {
    color: var(--navy);
    font-weight: 700;
}

.cc-footer {
    padding: 0 26px 26px;
}

.cc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    transition: gap .15s;
}

.cc-link:hover {
    gap: 11px;
}

.cc-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
}

/* ── TESTIMONIALS ── */
.testi-section {
    background: linear-gradient(140deg, #04080F 0%, #0A1020 40%, #0F1A3E 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.testi-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 30%, rgba(220, 38, 38, .1) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 70%, rgba(94, 53, 177, .1) 0%, transparent 45%);
}

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

.testi-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    padding: 30px 26px;
    transition: all .22s;
}

.testi-card:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-3px);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testi-stars span {
    color: #FBB000;
    font-size: 15px;
}

.testi-quote {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.testi-role {
    font-size: 12px;
    color: rgba(255, 255, 255, .42);
    margin-top: 2px;
}

/* ── FINAL CTA ── */
.final-cta {
    background: linear-gradient(140deg, #030710 0%, #071D42 45%, #0F3580 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.fci {
    position: relative;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.fci-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, .16);
    border: 1px solid rgba(220, 38, 38, .3);
    border-radius: 28px;
    padding: 7px 20px;
    font-size: 10.5px;
    font-weight: 700;
    color: #FCA5A5;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fci-title {
    font-family: 'Sora', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -.025em;
}

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

.fci-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.fci-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.fcb-p {
    padding: 17px 38px;
    background: linear-gradient(135deg, #DC2626, #E8721A);
    border: none;
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 10px 30px rgba(220, 38, 38, .4);
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.fcb-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(220, 38, 38, .48);
}

.fcb-g {
    padding: 17px 38px;
    background: rgba(255, 255, 255, .09);
    border: 1.5px solid rgba(255, 255, 255, .24);
    border-radius: 14px;
    font-size: 15.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: 9px;
    white-space: nowrap;
}

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

/* ── FOOTER ── */
footer {
    background: #040D1E;
    padding: 64px 0 32px;
}

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

.footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
    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, .5);
    text-decoration: none;
    transition: color .15s;
    line-height: 1.5;
}

.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, .26);
}

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

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

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

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

::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, .3);
    border-radius: 6px;
}

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

    .wrap {
        padding: 0 28px;
    }

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

    .hero-inner {
        padding: 0 28px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .b1-inner,
    .b2-inner,
    .b3-inner,
    .api-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

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

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

    .fw {
        display: none;
    }

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

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

/* ════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
════════════════════════════════════ */
@media(max-width:768px) {

    /* ── Nav ── */
    .topbar {
        padding: 0 16px;
        height: 60px;
    }

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

    .hamburger {
        display: flex;
        width: 42px;
        height: 42px;
    }

    .mobile-menu.open {
        top: 60px;
    }

    .logo-name {
        font-size: 15.5px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }

    .logo-sub {
        display: none;
    }

    /* ── Global layout ── */
    .wrap {
        padding: 0 16px;
    }

    .tb-inner {
        padding: 0;
    }

    .hero-inner {
        padding: 0 16px;
    }

    /* ── Section spacing — unified 44px system ── */
    .section,
    .hiw-section,
    .comp-section,
    .security-section,
    .testi-section {
        padding: 44px 0;
    }

    .banner-1,
    .banner-2,
    .banner-3 {
        padding: 40px 0;
    }

    .final-cta {
        padding: 48px 0;
    }

    .sec-head {
        margin-bottom: 26px;
    }

    .sec-title {
        font-size: 24px;
        letter-spacing: -.02em;
        line-height: 1.2;
    }

    .sec-desc {
        font-size: 14px;
        line-height: 1.68;
    }

    .sec-tag {
        font-size: 10px;
        padding: 6px 14px;
    }

    /* ── Hero ── */
    .hero {
        min-height: auto;
        padding: 36px 0 40px;
    }

    .hero::before {
        background:
            radial-gradient(ellipse at 70% 10%, rgba(220, 38, 38, .1) 0%, transparent 50%),
            radial-gradient(ellipse at 5% 85%, rgba(94, 53, 177, .1) 0%, transparent 46%);
    }

    .hero::after {
        display: none;
    }

    .h-orb {
        display: none;
    }

    .hero-inner {
        gap: 28px;
    }

    .h-bc {
        margin-bottom: 10px;
        gap: 6px;
    }

    .h-bc span {
        font-size: 11px;
    }

    .bc-d {
        width: 3px;
        height: 3px;
    }

    .hero-ew {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 12px;
        gap: 7px;
    }

    .ew-dot {
        width: 6px;
        height: 6px;
        animation: pulse-red 3s ease-in-out infinite;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.12;
        margin-bottom: 14px;
        letter-spacing: -.022em;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.66;
        margin-bottom: 20px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 9px;
        margin-bottom: 22px;
    }

    .hbtn-p,
    .hbtn-g {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 14px;
        border-radius: 11px;
        animation: none;
    }

    .hbtn-p {
        box-shadow: 0 5px 18px rgba(220, 38, 38, .32);
    }

    .h-trust {
        gap: 6px;
    }

    .htag {
        font-size: 10.5px;
        padding: 5px 10px;
        gap: 5px;
    }

    /* ── Fraud Dashboard — compact and clean ── */
    .fdash {
        padding: 14px;
        border-radius: 18px;
        background: rgba(10, 15, 36, .7);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(255, 255, 255, .1);
    }

    .fdash-bar {
        margin-bottom: 12px;
        gap: 6px;
    }

    .fd-dot {
        width: 8px;
        height: 8px;
    }

    .fd-title {
        font-size: 10.5px;
    }

    .fd-live {
        font-size: 9.5px;
        gap: 4px;
    }

    .fd-ld {
        width: 6px;
        height: 6px;
        animation: pulse-red 2.5s ease-in-out infinite;
    }

    /* Risk score row — tighter, cleaner */
    .risk-score-row {
        gap: 6px;
        margin-bottom: 10px;
    }

    .rs-card {
        padding: 10px 7px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .06);
    }

    .rs-val {
        font-size: 19px;
    }

    .rs-lbl {
        font-size: 8px;
        margin-top: 3px;
    }

    .rs-status {
        font-size: 8.5px;
        padding: 2px 5px;
        margin-top: 4px;
    }

    /* Alert cards — compact */
    .alert-stack {
        gap: 6px;
        margin-bottom: 10px;
    }

    .alert-card {
        padding: 8px 10px;
        gap: 7px;
        border-radius: 10px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .ac-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
        border-radius: 7px;
    }

    .ac-title {
        font-size: 11px;
        line-height: 1.3;
    }

    .ac-sub {
        display: none;
    }

    .ac-badge {
        font-size: 9.5px;
        padding: 2px 7px;
        border-radius: 6px;
    }

    /* Decision row */
    .decision-row {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .dec-cell {
        padding: 8px 5px;
        border-radius: 9px;
        font-size: 10.5px;
    }

    .dec-cell div:first-child {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .dec-cell div:last-child {
        font-size: 8.5px;
        margin-top: 2px;
    }

    /* ── Floating widgets hidden on mobile ── */
    .fw {
        display: none !important;
    }

    /* ── Trust bar ── */
    .tbi {
        padding: 12px 16px;
        gap: 8px;
    }

    .tbi-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .tbi-label {
        font-size: 12px;
    }

    .tbi-sub {
        font-size: 10.5px;
    }

    /* ── Modules ── */
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mod-card {
        padding: 20px 16px;
        border-radius: 18px;
        box-shadow: 0 2px 10px rgba(7, 29, 66, .06);
    }

    .mod-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .mod-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .mod-desc {
        font-size: 12.5px;
        line-height: 1.65;
        margin-bottom: 10px;
    }

    .mod-feat {
        font-size: 12px;
    }

    .mod-sla {
        font-size: 10.5px;
        padding: 4px 10px;
        margin-top: 10px;
    }

    /* ── Banner 1 ── */
    .b1-inner {
        gap: 28px;
    }

    .b1-title {
        font-size: 24px;
        line-height: 1.18;
    }

    .b1-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .b1-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .b1-stat-num {
        font-size: 24px;
    }

    .b1-stat-lbl {
        font-size: 11px;
    }

    .cq-head {
        margin-bottom: 8px;
    }

    .cq-title {
        font-size: 12px;
    }

    .cq-count {
        font-size: 10px;
    }

    .cq-card {
        padding: 11px 13px;
        gap: 10px;
        border-radius: 12px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, .07);
    }

    .cq-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
        border-radius: 9px;
    }

    .cq-name {
        font-size: 12px;
    }

    .cq-detail {
        font-size: 10px;
    }

    .cq-badge {
        font-size: 10px;
        padding: 3px 9px;
    }

    .analyst-row {
        gap: 7px;
        margin-top: 8px;
    }

    .analyst-card {
        padding: 11px 8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, .05);
    }

    .ac-val {
        font-size: 17px;
    }

    .ac-lbl {
        font-size: 9px;
        margin-top: 3px;
    }

    /* ── How It Works ── */
    .hiw-track::before {
        left: 20px;
        top: 20px;
        bottom: 20px;
        width: 1.5px;
    }

    .hiw-step {
        gap: 12px;
        padding: 0 0 28px;
    }

    .hiw-num {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-width: 2px;
        flex-shrink: 0;
    }

    .hiw-content {
        padding: 13px 15px;
        border-radius: 14px;
    }

    .hiw-tag {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .hiw-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .hiw-desc {
        font-size: 12.5px;
        line-height: 1.68;
    }

    .hiw-chip {
        font-size: 10.5px;
        padding: 3px 10px;
    }

    .hiw-time {
        font-size: 10px;
        padding: 3px 10px;
        margin-top: 8px;
    }

    .hiw-chips {
        gap: 5px;
        margin-top: 9px;
    }

    /* ── Banner 2 ── */
    .b2-inner {
        gap: 28px;
    }

    .b2-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .b2-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .sig-card {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .sig-title {
        font-size: 11px;
    }

    .sig-badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    .isb-label {
        min-width: 78px;
        font-size: 11px;
    }

    .isb-track {
        height: 7px;
    }

    .isb-val {
        font-size: 11px;
    }

    .signal-wrap {
        gap: 10px;
    }

    .dg-circle {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .dg-lbl {
        font-size: 9px;
    }

    .anomaly-bars {
        height: 44px;
        gap: 4px;
    }

    /* ── Use Cases ── */
    .uc-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .uc-card {
        padding: 20px 16px;
        border-radius: 16px;
        box-shadow: 0 2px 10px rgba(7, 29, 66, .06);
    }

    .uc-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .uc-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .uc-desc {
        font-size: 12.5px;
        line-height: 1.64;
        margin-bottom: 10px;
    }

    .uc-tag {
        font-size: 10px;
        padding: 2px 8px;
    }

    /* ── Banner 3 ── */
    .b3-inner {
        gap: 28px;
    }

    .b3-title {
        font-size: 24px;
        line-height: 1.18;
    }

    .b3-desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .b3-feat {
        padding: 11px 13px;
        border-radius: 11px;
        gap: 10px;
    }

    .b3-fi {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    .b3-ft {
        font-size: 13px;
    }

    .dec-cards {
        gap: 8px;
    }

    .dec-card {
        padding: 14px 12px;
        border-radius: 14px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, .07);
    }

    .dec-card-icon {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .dec-card-label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .dec-card-val {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .dec-card-pct {
        font-size: 10.5px;
        padding: 2px 8px;
        margin-top: 3px;
    }

    /* ── Comparison table ── */
    .comp-section .wrap {
        padding: 0;
    }

    .comp-table-wrap {
        border-radius: 0;
        -webkit-overflow-scrolling: touch;
    }

    .comp-table thead th {
        padding: 11px 12px;
        font-size: 11.5px;
    }

    .comp-table td {
        padding: 10px 12px;
        font-size: 11.5px;
    }

    .c-yes,
    .c-no {
        font-size: 11px;
        gap: 5px;
    }

    .c-yes svg,
    .c-no svg {
        width: 14px;
        height: 14px;
    }

    /* ── API Section ── */
    .api-grid {
        gap: 32px;
    }

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

    .api-left .sec-desc {
        font-size: 14px;
    }

    .api-spec {
        padding: 11px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .api-spec-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    .api-spec-label {
        font-size: 9.5px;
    }

    .api-spec-val {
        font-size: 11px;
    }

    .api-specs {
        gap: 9px;
        margin-bottom: 20px;
    }

    .api-sla-row {
        gap: 7px;
        margin-bottom: 22px;
    }

    .sla-box {
        padding: 14px 10px;
        border-radius: 12px;
    }

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

    .sla-lbl {
        font-size: 9.5px;
        margin-top: 4px;
    }

    .api-btns {
        flex-direction: column;
        gap: 9px;
    }

    .abtn-p,
    .abtn-g {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 13.5px;
        border-radius: 11px;
    }

    .cb-body {
        padding: 13px 14px;
    }

    .cl {
        font-size: 10.5px;
        line-height: 1.85;
    }

    .code-block {
        border-radius: 14px;
    }

    .resp-block {
        border-radius: 14px;
    }

    .cb-head {
        padding: 10px 14px;
    }

    .cb-dots {
        gap: 5px;
    }

    .cb-dot {
        width: 9px;
        height: 9px;
    }

    .rb-head {
        padding: 10px 14px;
    }

    .rb-status {
        font-size: 10px;
    }

    .rb-time {
        font-size: 9px;
    }

    /* ── Security ── */
    .sec-grid {
        grid-template-columns: 1fr;
    }

    .secf-card {
        padding: 20px 18px;
        border-radius: 16px;
        box-shadow: 0 2px 10px rgba(7, 29, 66, .06);
    }

    .secf-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .secf-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .secf-desc {
        font-size: 13px;
        line-height: 1.68;
    }

    .secf-badge {
        font-size: 10.5px;
        padding: 4px 10px;
        margin-top: 11px;
    }

    /* ── Case Studies ── */
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-card {
        border-radius: 18px;
    }

    .cc-header {
        padding: 16px 16px 13px;
    }

    .cc-industry {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .cc-company {
        font-size: 14.5px;
        margin-bottom: 4px;
    }

    .cc-tagline {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .cc-body {
        padding: 13px 16px 16px;
    }

    .cc-challenge {
        font-size: 12px;
        margin-bottom: 13px;
    }

    .cc-result {
        gap: 8px;
    }

    .cc-ri {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }

    .cc-ri svg {
        width: 10px;
        height: 10px;
    }

    .cc-rt {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .cc-footer {
        padding: 0 16px 16px;
    }

    .cc-link {
        font-size: 12.5px;
    }

    /* ── Testimonials ── */
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .testi-stars {
        margin-bottom: 12px;
    }

    .testi-stars span {
        font-size: 13px;
    }

    .testi-quote {
        font-size: 13px;
        line-height: 1.72;
        margin-bottom: 18px;
    }

    .testi-author {
        gap: 10px;
    }

    .testi-avatar {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .testi-name {
        font-size: 13px;
    }

    .testi-role {
        font-size: 11px;
    }

    /* ── Final CTA ── */
    .fci-tag {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    .fci-title {
        font-size: 26px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .fci-desc {
        font-size: 14px;
        line-height: 1.72;
        margin-bottom: 24px;
    }

    .fci-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
    }

    .fcb-p,
    .fcb-g {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 12px;
    }

    /* ── Footer ── */
    footer {
        padding: 40px 0 calc(90px + env(safe-area-inset-bottom, 0px));
    }

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

    .footer-grid>div:first-child {
        grid-column: 1/-1;
    }

    .footer-col-title {
        font-size: 10.5px;
        margin-bottom: 10px;
        letter-spacing: .09em;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a {
        font-size: 13px;
        min-height: 38px;
        display: flex;
        align-items: center;
        line-height: 1.4;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 20px;
        font-size: 11.5px;
    }

    .footer-bottom>div:last-child {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ── CTA standardization ── */
    .hbtn-p,
    .hbtn-g,
    .abtn-p,
    .abtn-g,
    .fcb-p,
    .fcb-g {
        min-height: 50px;
    }

    .btn-out,
    .btn-fill {
        min-height: 42px;
    }

    .mm-link,
    .mm-sub a {
        min-height: 48px;
    }

    .htag {
        min-height: 32px;
    }

    /* ── Touch targets ── */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* ── Performance: kill expensive paint ops ── */
    .orb-r,
    .orb-p,
    .orb-o {
        display: none;
    }

    .fw {
        display: none !important;
    }

    .hero::after {
        display: none;
    }

    .fdash {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .cq-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .dec-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .sticky-cta-bar {
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .mod-card,
    .uc-card,
    .secf-card {
        box-shadow: 0 2px 10px rgba(7, 29, 66, .05);
    }

    .hbtn-p {
        animation: none;
    }

    /* ── Prevent hover state sticking on touch ── */
    @media(hover:none) {

        .mod-card:hover,
        .uc-card:hover,
        .secf-card:hover,
        .case-card:hover,
        .testi-card:hover,
        .sig-card:hover,
        .hiw-content:hover,
        .b3-feat:hover,
        .cq-card:hover,
        .dec-card:hover {
            transform: none !important;
            box-shadow: none !important;
        }

        .hbtn-p:hover,
        .hbtn-g:hover,
        .btn-fill:hover,
        .abtn-p:hover,
        .abtn-g:hover,
        .fcb-p:hover,
        .fcb-g:hover {
            transform: none !important;
        }
    }
}

/* ════════════════════════════════════
   RESPONSIVE — SMALL ≤ 420px
════════════════════════════════════ */
@media(max-width:420px) {
    .topbar {
        padding: 0 12px;
    }

    .wrap {
        padding: 0 12px;
    }

    .hero-inner {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.14;
    }

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

    .hbtn-p,
    .hbtn-g {
        padding: 12px 14px;
        font-size: 13.5px;
    }

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

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

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

    .b2-title {
        font-size: 20px;
    }

    .b3-title {
        font-size: 21px;
    }

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

    .footer-grid>div:first-child {
        grid-column: auto;
    }

    .dec-cards {
        grid-template-columns: 1fr;
    }

    .analyst-row {
        grid-template-columns: 1fr 1fr;
    }

    .analyst-card:last-child {
        grid-column: 1/-1;
    }

    .rs-val {
        font-size: 17px;
    }

    .risk-score-row {
        gap: 5px;
    }

    .dec-cell {
        font-size: 10px;
    }
}

/* ════════════════════════════════════
   RESPONSIVE — XSMALL ≤ 360px
════════════════════════════════════ */
@media(max-width:360px) {
    .hero h1 {
        font-size: 22px;
    }

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

    .hbtn-p,
    .hbtn-g {
        padding: 12px 12px;
        font-size: 13px;
    }

    .fdash {
        padding: 11px;
    }

    .rs-val {
        font-size: 15px;
    }
}

/* ════════════════════════════════════
   STICKY MOBILE CTA BAR
════════════════════════════════════ */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(5, 18, 46, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 -6px 28px rgba(7, 29, 66, .32);
    gap: 9px;
    transform: translateY(110%);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
    opacity: 0;
    will-change: transform;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-bar .scta-p {
    flex: 1;
    padding: 13px 14px;
    background: linear-gradient(135deg, #DC2626, #E8721A);
    border: none;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 16px rgba(220, 38, 38, .36);
    min-height: 48px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: opacity .15s, transform .15s;
}

.sticky-cta-bar .scta-s {
    flex: 1;
    padding: 13px 14px;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    min-height: 48px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background .15s;
}

.sticky-cta-bar .scta-p:active {
    opacity: .88;
    transform: scale(.97);
}

.sticky-cta-bar .scta-s:active {
    background: rgba(255, 255, 255, .18);
}

@media(max-width:768px) {
    .sticky-cta-bar {
        display: flex;
    }

    body.scta-visible {
        padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    }
}

/* ════════════════════════════════════
   TABLE SWIPE HINT
════════════════════════════════════ */
.table-swipe-hint {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
    padding: 0 2px;
    animation: float 2.4s ease-in-out infinite;
}

.table-swipe-hint svg {
    width: 13px;
    height: 13px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    flex-shrink: 0;
}

@media(max-width:768px) {
    .table-swipe-hint {
        display: flex;
    }
}

/* ════════════════════════════════════
   GLOBAL OVERFLOW SAFETY
════════════════════════════════════ */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

.hero,
.banner-1,
.banner-2,
.banner-3,
.api-section,
.testi-section,
.final-cta {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

.cb-body,
.comp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}