*,
*::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 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 barFill {
    from {
        width: 0;
    }

    to {
        width: var(--w);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 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;
}

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

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

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

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

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

/* 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(13, 122, 110, .13) 0%, transparent 46%),
        radial-gradient(ellipse at 92% 78%, rgba(94, 53, 177, .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);
}

.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(13, 122, 110, .1);
    left: 28%;
    bottom: -40px;
    animation: float 10s ease-in-out infinite;
    animation-delay: 3s;
}

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

/* Hero left */
.h-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.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: 44px;
    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: 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: 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;
    animation: pulse-orange 2.8s ease-in-out infinite;
}

.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 VALUATION DASHBOARD */
.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;
}

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

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

/* Map placeholder */
.prop-map {
    background: linear-gradient(135deg, rgba(7, 29, 66, .8), rgba(15, 53, 128, .6));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    height: 110px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.prop-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(255, 255, 255, .04) 18px, rgba(255, 255, 255, .04) 19px),
        repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(255, 255, 255, .04) 18px, rgba(255, 255, 255, .04) 19px);
}

.map-pin {
    position: absolute;
    font-size: 24px;
    filter: drop-shadow(0 4px 8px rgba(232, 114, 26, .6));
    animation: float 3s ease-in-out infinite;
}

.map-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    background: rgba(7, 29, 66, .8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ml-addr {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.ml-zone {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(74, 222, 128, .12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .2);
    border-radius: 6px;
}

/* Valuation cards */
.val-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

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

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

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

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

.vkv-main {
    color: var(--orange);
}

.vkv-gov {
    color: #79C0FF;
}

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

.vkv-warn {
    color: #FBB000;
}

/* Risk & confidence */
.risk-conf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.rc-card {
    border-radius: 12px;
    padding: 12px 14px;
}

.rc-risk {
    background: rgba(74, 222, 128, .08);
    border: 1px solid rgba(74, 222, 128, .2);
}

.rc-conf {
    background: rgba(232, 114, 26, .08);
    border: 1px solid rgba(232, 114, 26, .2);
}

.rc-label {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px;
}

.rc-risk .rc-label {
    color: rgba(74, 222, 128, .7);
}

.rc-conf .rc-label {
    color: rgba(232, 114, 26, .8);
}

.rc-val {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.rc-risk .rc-val {
    color: #4ADE80;
}

.rc-conf .rc-val {
    color: var(--orange);
}

.rc-sub {
    font-size: 10px;
    margin-top: 4px;
}

.rc-risk .rc-sub {
    color: rgba(74, 222, 128, .5);
}

.rc-conf .rc-sub {
    color: rgba(232, 114, 26, .5);
}

/* Flags */
.flag-row {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fr-icon {
    font-size: 16px;
}

.fr-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    flex: 1;
}

.fr-badge {
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 7px;
}

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

.frb-clear {
    background: rgba(121, 192, 255, .1);
    color: #79C0FF;
    border: 1px solid rgba(121, 192, 255, .18);
}

/* Float widgets */
.fw {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 12px 16px;
    z-index: 3;
}

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

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

.fw-t {
    font-size: 10px;
    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: 18px;
    font-weight: 900;
    color: #fff;
}

.fw-s {
    font-size: 10px;
    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);
}

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

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

/* CAPABILITIES */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cap-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;
    position: relative;
    overflow: hidden;
}

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

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

.cap-card:nth-child(2)::before {
    background: linear-gradient(90deg, #15803D, #22C55E);
}

.cap-card:nth-child(3)::before {
    background: linear-gradient(90deg, #5E35B1, #7B50D4);
}

.cap-card:nth-child(4)::before {
    background: linear-gradient(90deg, #0D7A6E, #14B8A6);
}

.cap-card:nth-child(5)::before {
    background: linear-gradient(90deg, #DC2626, #F87171);
}

.cap-card:nth-child(6)::before {
    background: linear-gradient(90deg, #B45309, #F59E0B);
}

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

.cap-card:nth-child(8)::before {
    background: linear-gradient(90deg, #065F46, #10B981);
}

.cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(7, 29, 66, .12);
}

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

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

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

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

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

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

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

/* VALUATION OUTPUT */
.val-output-section {
    background: linear-gradient(140deg, #040D1E 0%, #071D42 40%, #0F3580 80%, #163C8A 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.val-output-section::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%),
        repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255, 255, 255, .019) 28px, rgba(255, 255, 255, .019) 29px);
}

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

.vo-left {}

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

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

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

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

.vo-input-block {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 20px 22px;
}

.vib-head {
    font-family: 'Sora', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 14px;
}

.vib-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vib-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 13px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
}

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

.vibf-val {
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
    font-family: var(--mono);
}

/* Valuation output card */
.val-output-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    padding: 24px;
}

.voc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

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

.voc-timestamp {
    font-family: var(--mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, .35);
}

.voc-main-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.voc-val-card {
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
}

.vvc-gov {
    background: rgba(121, 192, 255, .08);
    border: 1px solid rgba(121, 192, 255, .18);
}

.vvc-market {
    background: rgba(232, 114, 26, .1);
    border: 1px solid rgba(232, 114, 26, .22);
}

.vvc-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 8px;
}

.vvc-gov .vvc-label {
    color: rgba(121, 192, 255, .7);
}

.vvc-market .vvc-label {
    color: rgba(232, 114, 26, .8);
}

.vvc-amount {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.vvc-gov .vvc-amount {
    color: #79C0FF;
}

.vvc-market .vvc-amount {
    color: var(--orange);
}

.vvc-sub {
    font-size: 10px;
    margin-top: 5px;
    opacity: .6;
}

.voc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.vm-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
}

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

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

.vmc-low {
    color: #4ADE80;
}

.vmc-high {
    color: var(--orange);
}

.vmc-data {
    color: rgba(255, 255, 255, .82);
}

.voc-flags {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.vof-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid;
}

.vof-ok {
    background: rgba(74, 222, 128, .06);
    border-color: rgba(74, 222, 128, .18);
}

.vof-warn {
    background: rgba(251, 191, 36, .06);
    border-color: rgba(251, 191, 36, .18);
}

.vof-icon {
    font-size: 14px;
}

.vof-text {
    font-size: 12.5px;
    font-weight: 600;
}

.vof-ok .vof-text {
    color: rgba(74, 222, 128, .9);
}

.vof-warn .vof-text {
    color: #FBB000;
}

.vof-status {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}

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

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

/* 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, var(--orange), var(--navy-mid));
    border-radius: 2px;
}

.hiw-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 0 0 32px;
    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: 22px;
    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: 20px 24px;
    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: 15px;
    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: 11.5px;
    font-weight: 600;
    color: var(--navy-mid);
}

/* USE CASES SEGMENTED */
.uc-section {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 100%);
    padding: 88px 0;
}

.uc-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.uc-tab {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all .2s;
    background: var(--white);
}

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

.uc-tab:hover:not(.active) {
    border-color: var(--orange);
    color: var(--navy);
}

.uc-panels {
    display: none;
}

.uc-panels.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

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

.ucp-icon {
    font-size: 38px;
    margin-bottom: 16px;
}

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

.ucp-desc {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.72;
    margin-bottom: 14px;
}

.ucp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.ucp-tag {
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 8px;
    background: var(--orange-lt);
    color: var(--orange);
    border: 1px solid rgba(232, 114, 26, .2);
}

/* DATA SOURCES */
.ds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ds-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 3px 14px rgba(7, 29, 66, .06);
    transition: all .22s;
    text-align: center;
}

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

.ds-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

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

.ds-desc {
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.65;
}

.ds-badge {
    display: inline-block;
    margin-top: 12px;
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3px 11px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-mid);
}

/* API */
.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: 72px;
    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: 12.5px;
    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: 16px 20px;
    overflow-x: auto;
}

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

/* 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: 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;
}

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

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

.cc-industry {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--sky);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-mid);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

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

.cc-body {
    padding: 18px 26px 22px;
}

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

.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-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    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;
}

/* DATA COVERAGE SECTION */
.dc-section {
    background: var(--white);
    padding: 96px 0;
}

.dc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 52px;
}

.dc-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 26px;
    transition: all .26s;
    position: relative;
    overflow: hidden;
}

.dc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    transition: height .26s;
}

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

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

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

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

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

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

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

.dc-card:hover::after {
    height: 5px;
}

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

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

.dc-card-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.72;
    margin-bottom: 16px;
}

.dc-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dc-point {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.55;
}

.dc-pt-dot {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 10px;
}

.dc-metrics-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.dc-metric {
    background: var(--white);
    padding: 28px 24px;
    text-align: center;
}

.dc-metric-val {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

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

.dc-metric-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-body);
    line-height: 1.5;
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, #F0F5FF 0%, #EBF2FD 100%);
    padding: 96px 0;
}

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

.fci-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: .07em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fci-title {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -.025em;
}

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

.fci-desc {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.fcb-p {
    padding: 17px 38px;
    background: var(--orange);
    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(232, 114, 26, .4);
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

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

.fcb-navy {
    padding: 17px 38px;
    background: var(--navy);
    border: none;
    border-radius: 14px;
    font-size: 15.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: 9px;
}

.fcb-navy:hover {
    background: var(--navy-mid);
}

.fcb-g {
    padding: 17px 38px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

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

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
    width: 5px;
}

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

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

/* =============================================
   HAMBURGER MENU BUTTON (hidden on desktop)
   ============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 6px;
    border-radius: 8px;
    gap: 5px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .28s cubic-bezier(.4, 0, .2, 1);
}

.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 — WHITE PANEL (matches safemate_mobile.html)
   ============================================= */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 998;
    overflow-y: auto;
    padding: 16px 20px 32px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(7, 29, 66, .1);
}

.mobile-menu.open {
    display: flex;
}

.mm-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    transition: background .15s;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
}

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

.mm-item .chev {
    width: 16px;
    height: 16px;
    transition: transform .2s;
}

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

.mm-sub {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 8px 16px;
    border-left: 2px solid var(--border);
    margin-left: 16px;
}

.mm-sub.open {
    display: flex;
}

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

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

.mm-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.mm-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0 0;
}

.mm-btn-out {
    padding: 13px 20px;
    border: 1.5px solid var(--navy);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    text-decoration: none;
    text-align: center;
    display: block;
}

.mm-btn-fill {
    padding: 13px 20px;
    background: var(--orange);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: block;
    box-shadow: 0 4px 16px rgba(232, 114, 26, .32);
}

/* =============================================
   LARGE TABLET: 1100px
   ============================================= */
@media(max-width:1100px) {

    /* Layout grids */
    .topbar {
        padding: 0 28px;
    }

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

    .vo-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

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

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

    .dc-metrics-bar {
        grid-template-columns: 1fr 1fr;
    }

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

    .wrap {
        padding: 0 28px;
    }

    /* Hero floating widgets — pull inward on tablet */
    .fw-a {
        top: -16px;
        right: -16px;
    }

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

    /* Hero text */
    .hero h1 {
        font-size: 38px;
    }

    .hero-sub {
        max-width: 100%;
    }

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

    .vo-title {
        font-size: 30px;
    }
}

/* =============================================
   TABLET: 768px
   ============================================= */
@media(max-width:768px) {

    /* ---- TOPBAR ---- */
    .topbar {
        padding: 0 16px;
        height: 64px;
    }

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

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        top: 64px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

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

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

    .logo-sub {
        font-size: 8px;
    }

    /* ---- GENERAL ---- */
    .wrap {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

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

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

    .sec-desc {
        font-size: 14.5px;
    }

    /* ---- HERO ---- */
    .hero {
        padding: 48px 0 52px;
        min-height: auto;
    }

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

    .h-bc {
        display: none;
    }

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

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

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }

    .hbtn-p,
    .hbtn-g {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    .h-trust {
        gap: 8px;
    }

    .htag {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* Hero dashboard */
    .hero-dash {
        padding: 16px;
    }

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

    /* hide floating widgets on mobile — they overflow */
    .val-kpis {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .risk-conf-row {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .vk {
        padding: 10px 12px;
    }

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

    .rc-val {
        font-size: 18px;
    }

    .fr-text {
        font-size: 11px;
    }

    /* ---- TRUST BAR ---- */
    .tb-inner {
        padding: 0 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .tbi {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 14px 12px;
        gap: 8px;
        flex-shrink: initial;
    }

    .tbi:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .tbi:nth-last-child(-n+2) {
        border-bottom: none;
    }

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

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

    .tbi-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    /* ---- CAPABILITIES ---- */
    .cap-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cap-card {
        padding: 22px 18px;
    }

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

    .cap-title {
        font-size: 14px;
    }

    .cap-desc {
        font-size: 12.5px;
    }

    /* ---- VALUATION OUTPUT ---- */
    .val-output-section {
        padding: 60px 0;
    }

    .vo-inner {
        gap: 36px;
    }

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

    .vo-desc {
        font-size: 14px;
    }

    .vib-field {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .vibf-val {
        font-size: 11.5px;
        word-break: break-word;
    }

    .voc-main-values {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .voc-header {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .voc-timestamp {
        font-size: 9.5px;
    }

    .vof-text {
        font-size: 11.5px;
    }

    /* ---- HOW IT WORKS ---- */
    .hiw-section {
        padding: 60px 0;
    }

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

    .hiw-step {
        gap: 18px;
    }

    .hiw-num {
        width: 52px;
        height: 52px;
        font-size: 17px;
        flex-shrink: 0;
    }

    .hiw-content {
        padding: 16px 18px;
    }

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

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

    .hiw-chips {
        gap: 5px;
    }

    .hiw-chip {
        font-size: 10.5px;
        padding: 2px 9px;
    }

    /* ---- USE CASES ---- */
    .uc-section {
        padding: 60px 0;
    }

    .uc-tabs {
        gap: 6px;
        margin-bottom: 32px;
    }

    .uc-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .uc-panels.active {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ucp-card {
        padding: 22px 18px;
    }

    .ucp-icon {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .ucp-title {
        font-size: 15px;
    }

    .ucp-desc {
        font-size: 13px;
    }

    /* ---- DATA SOURCES ---- */
    .ds-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .ds-card {
        padding: 20px 16px;
    }

    .ds-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .ds-title {
        font-size: 13px;
    }

    .ds-desc {
        font-size: 12px;
    }

    /* ---- API SECTION ---- */
    .api-section {
        padding: 60px 0;
    }

    .api-grid {
        gap: 36px;
    }

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

    .api-specs {
        gap: 8px;
    }

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

    .asi {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .as-val {
        font-size: 11.5px;
        word-break: break-all;
    }

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

    .sla-b {
        padding: 13px 8px;
    }

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

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

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

    /* Code blocks — prevent overflow */
    .code-block,
    .resp-block {
        border-radius: 12px;
    }

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

    .cl {
        font-size: 11px;
        line-height: 1.85;
        white-space: pre;
    }

    .rb-head {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        padding: 9px 14px;
    }

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

    .cb-lbl {
        font-size: 9.5px;
    }

    /* ---- SECURITY ---- */
    .sec-section {
        padding: 60px 0;
    }

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

    .secf-card {
        padding: 22px 18px;
    }

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

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

    .secf-desc {
        font-size: 12.5px;
    }

    /* ---- CASE STUDIES ---- */
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cc-header {
        padding: 18px 18px 14px;
    }

    .cc-body {
        padding: 14px 18px 16px;
    }

    .cc-company {
        font-size: 15px;
    }

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

    /* ---- DATA COVERAGE ---- */
    .dc-section {
        padding: 60px 0;
    }

    .dc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dc-card {
        padding: 22px 18px;
    }

    .dc-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .dc-card-title {
        font-size: 14px;
    }

    .dc-card-desc {
        font-size: 12.5px;
    }

    .dc-metrics-bar {
        grid-template-columns: 1fr 1fr;
    }

    .dc-metric {
        padding: 20px 16px;
    }

    .dc-metric-val {
        font-size: 22px;
    }

    .dc-metric-label {
        font-size: 11.5px;
    }

    /* ---- FINAL CTA ---- */
    .final-cta {
        padding: 60px 0;
    }

    .fci-title {
        font-size: 28px;
        line-height: 1.18;
    }

    .fci-desc {
        font-size: 15px;
    }

    .fci-btns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .fcb-p,
    .fcb-navy,
    .fcb-g {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 15px 24px;
        font-size: 14.5px;
    }
}

/* =============================================
   SMALL MOBILE: 480px
   ============================================= */
@media(max-width:480px) {

    /* General */
    .wrap {
        padding: 0 12px;
    }

    .section {
        padding: 44px 0;
    }

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

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

    /* Topbar */
    .topbar {
        padding: 0 12px;
        height: 60px;
    }

    .mobile-menu {
        top: 60px;
        padding: 12px 14px 28px;
    }

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

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

    .logo-sub {
        font-size: 8px;
    }

    /* Hero */
    .hero {
        padding: 40px 0 44px;
    }

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

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

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

    .hero-ew {
        font-size: 10px;
        padding: 6px 14px;
    }

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

    .h-trust {
        gap: 6px;
    }

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

    /* Hero dashboard */
    .val-kpis {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .risk-conf-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .flag-row {
        flex-wrap: wrap;
        gap: 7px;
    }

    .fr-badge {
        margin-left: auto;
    }

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

    /* Trust bar */
    .tbi {
        padding: 12px 14px;
    }

    /* Caps grid */
    .cap-grid {
        grid-template-columns: 1fr;
    }

    /* Valuation output */
    .voc-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .vvc-amount {
        font-size: 18px;
    }

    /* API */
    .as-val {
        font-size: 10.5px;
    }

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

    .sla-b:last-child {
        grid-column: 1/-1;
    }

    /* Data sources */
    .ds-grid {
        grid-template-columns: 1fr;
    }

    /* Data coverage metrics */
    .dc-metrics-bar {
        grid-template-columns: 1fr;
    }

    .dc-metric {
        padding: 18px 16px;
    }

    /* Final CTA */
    .fci-title {
        font-size: 24px;
    }

    .fci-desc {
        font-size: 14px;
    }

    .fcb-p,
    .fcb-navy,
    .fcb-g {
        font-size: 14px;
        padding: 14px 20px;
    }

    /* Use case tabs — scroll horizontally */
    .uc-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .uc-tabs::-webkit-scrollbar {
        display: none;
    }

    .uc-tab {
        flex-shrink: 0;
    }

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

    /* Cases */
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .cc-rt {
        font-size: 12px;
    }

    /* Code blocks font */
    .cl {
        font-size: 10.5px;
    }
}

/* =============================================
   EXTRA SMALL: 360px
   ============================================= */
@media(max-width:360px) {
    .hero h1 {
        font-size: 22px;
    }

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

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

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

    .voc-metrics {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   TOUCH & PERFORMANCE OPTIMIZATIONS
   ============================================= */
@media(max-width:768px) {

    /* Disable heavy floating animations on mobile for performance */
    .orb-a,
    .orb-b {
        animation: none;
    }

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

    /* Reduce animation complexity */
    .hbtn-p {
        animation: none;
        box-shadow: 0 6px 20px rgba(232, 114, 26, .38);
    }

    /* Ensure touch targets are large enough */
    /* a,
    button,
    .mm-item {
        min-height: 44px;
    } */

    /* Prevent text-size-adjust */
    body {
        -webkit-text-size-adjust: 100%;
    }

    /* Smooth scrolling momentum on iOS */
    .mobile-menu,
    .comp-table-wrap,
    .cb-body {
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent overflow on body */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

/* =============================================
   OVERFLOW / HORIZONTAL SCROLL PREVENTION
   ============================================= */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.topbar,
.hero,
.trust-bar,
.val-output-section,
.hiw-section,
.uc-section,
.api-section,
.sec-section,
.dc-section,
.final-cta,
section{
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure absolute positioned orbs don't cause scroll */
.orb-a,
.orb-b {
    overflow: hidden;
}