:root {
    --ink: #070b1e;
    --ink: #0a0f33;
    --navy: #0f1530;
    --navy-2: #161f49;
    --navy-3: #202a60;
    --blue: #4f8cff;
    --blue-2: #8ec5ff;
    --blue-deep: #2b5fd9;
    --green: #33d69f;
    --red: #ff6b6b;
    --gold: #f2a93b;
    --gold-2: #ffd98e;
    --amber: #ffb454;
    --slate: #8f97ba;
    --white: #f6f7ff;
    --cibil: #4f8cff;
    --experian: #4fd1c5;
    --equifax: #a996ff;
    --crif: #ff8b94;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .01) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 50% 0%, black, transparent 78%);
}

h1,
h2,
h3,
.display {
    font-family: 'Space Grotesk', sans-serif;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.wrap {
    /* max-width: 1240px; */
    margin: 0 auto;
    padding: 0 90px;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--blue);
    color: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

/* corner-bracket utility -- the site's signature motif */
.bkt {
    position: relative;
}

.bkt::before,
.bkt::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
    opacity: .85;
}

.bkt::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--bcol, var(--blue-2));
    border-left: 2px solid var(--bcol, var(--blue-2));
}

.bkt::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--bcol, var(--blue-2));
    border-right: 2px solid var(--bcol, var(--blue-2));
}


.sec-head {
    position: relative;
    max-width: 660px;
    margin-bottom: 56px;
    z-index: 1;
}

.sec-head::before {
    content: attr(data-wm);
    position: absolute;
    left: -6px;
    top: -38px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 96px;
    letter-spacing: -.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
}

@media(max-width:760px) {
    .sec-head::before {
        font-size: 56px;
        top: -22px;
    }
}

.kicker {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--blue-2);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kicker::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--blue-2);
}

.sec-head h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.sec-head p {
    color: var(--slate);
    font-size: 15.5px;
    line-height: 1.65;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

section {
    position: relative;
    z-index: 1;
    padding: 104px 0;
}

@media(max-width:640px) {
    section {
        padding: 70px 0;
    }
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: .35s;
    background: rgba(7, 11, 30, .88);

}

nav.scrolled {
    background: rgba(7, 11, 30, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    /*padding: 12px 0;*/
}

nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

}


.logo img {
    width: 100px;
    height: auto;
}

.navlinks {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--slate);
    font-weight: 500;
    font-family: 'JetBrains Mono';
}

.navlinks a {
    position: relative;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: .2s;
}

.navlinks a:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
}

.navcta {
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    font-family: 'JetBrains Mono';
    padding: 11px 20px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(79, 140, 255, .35);
    transition: .25s;
    flex: none;
}

.navcta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(79, 140, 255, .48);
}

@media(max-width:860px) {
    .navlinks {
        display: none;
    }
}

@media(max-width:480px) {
    .navcta {
        padding: 9px 14px;
        font-size: 11.5px;
    }

    .logo {
        font-size: 15px;
    }
}


.navburger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
    flex: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 120;
}

.navburger span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: .3s;
}

.navburger span:nth-child(1) {
    transform: translateY(-6px);
}

.navburger span:nth-child(3) {
    transform: translateY(6px);
}

.navburger.open span:nth-child(1) {
    transform: rotate(45deg);
}

.navburger.open span:nth-child(2) {
    opacity: 0;
}

.navburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

@media(max-width:860px) {
    .navburger {
        display: flex;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: rgba(9, 13, 32, .98);
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(255, 255, 255, .08);
    z-index: 110;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.2, .9, .25, 1);
    padding: 100px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: 'JetBrains Mono';
    font-size: 15px;
    color: var(--slate);
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .2s;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--white);
    padding-left: 10px;
}

.mobile-menu a::after {
    content: '→';
    color: var(--blue-2);
    opacity: .7;
}

.mobile-menu .navcta {
    margin-top: 20px;
    text-align: center;
}

.menu-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 105;
}

.menu-scrim.open {
    opacity: 1;
    pointer-events: auto;
}


header.hero {
    position: relative;
    z-index: 1;
    padding: 150px 90px;
    /* max-width: 1240px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

@media(max-width:980px) {
    header.hero {
        grid-template-columns: 1fr;
        padding: 130px 24px 60px;
        gap: 56px;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono';
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--green);
    background: rgba(51, 214, 159, .09);
    border: 1px solid rgba(51, 214, 159, .25);
    padding: 7px 14px;
    border-radius: 6px;
    margin-bottom: 22px;
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

h1.hero-head {
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

h1.hero-head em {
    font-style: normal;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.sub {
    font-size: 16.5px;
    color: var(--slate);
    max-width: 490px;
    line-height: 1.65;
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: var(--white);
    font-weight: 700;
    font-size: 14.5px;
    padding: 15px 26px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(79, 140, 255, .32);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: .25s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(79, 140, 255, .45);
}

.btn-ghost {
    color: var(--white);
    font-weight: 600;
    font-size: 14.5px;
    padding: 15px 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    transition: .25s;
    font-family: 'JetBrains Mono';
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .3);
}

.trustrow {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--slate);
    font-size: 12.5px;
}

.trustrow span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.gaugestage {
    perspective: 1400px;
    display: flex;
    justify-content: center;
}

.gaugecard {
    position: relative;
    width: 420px;
    max-width: 100%;
    background: linear-gradient(155deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 26px;
    padding: 36px 30px 30px;
    transform-style: preserve-3d;
    /* transform: rotateY(-10deg) rotateX(6deg); */
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .03) inset;
    transition: transform .15s ease-out;
}

.gaugecard::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: linear-gradient(140deg, rgba(242, 169, 59, .14), transparent 40%);
    pointer-events: none;
}

.gaugecard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    position: relative;
    transform: translateZ(30px);
}

.gaugecard-head .lbl {
    font-size: 12px;
    color: var(--slate);
    font-family: 'JetBrains Mono';
    letter-spacing: .05em;
}

.gaugecard-head .live {
    font-size: 11px;
    color: var(--green);
    display: flex;
    gap: 5px;
    align-items: center;
}

.dialwrap {
    position: relative;
    transform: translateZ(45px);
    /* margin: 6px auto 0; */
    /* width: 340px; */
}

.scoretext {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    text-align: center;
}

.scoretext .num {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 56px;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.scoretext .band {
    font-family: 'JetBrains Mono';
    font-size: 12.5px;
    color: var(--green);
    margin-top: 6px;
    letter-spacing: .04em;
}

.needle {
    position: absolute;
    left: 170px;
    bottom: 26px;
    width: 4px;
    height: 110px;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
    border-radius: 4px;
    transform-origin: bottom center;
    transform: rotate(-90deg);
    transition: transform 1.8s cubic-bezier(.2, .9, .25, 1);
    box-shadow: 0 0 12px rgba(242, 169, 59, .6);
}

.needle::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-2);
    box-shadow: 0 0 14px rgba(242, 169, 59, .8);
}

.orbit {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: spin 22s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.orbitnode {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono';
    font-weight: 700;
    font-size: 11px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
    animation: counterspin 22s linear infinite;
}

@keyframes counterspin {
    to {
        transform: rotate(-360deg);
    }
}

.n1 {
    top: -8px;
    left: 50%;
    margin-left: -19px;
    background: rgba(242, 169, 59, .18);
    border: 1px solid rgba(242, 169, 59, .5);
    color: var(--gold);
}

.n2 {
    top: 50%;
    right: -8px;
    margin-top: -19px;
    background: rgba(79, 209, 197, .18);
    border: 1px solid rgba(79, 209, 197, .5);
    color: var(--experian);
}

.n3 {
    bottom: -8px;
    left: 50%;
    margin-left: -19px;
    background: rgba(169, 150, 255, .18);
    border: 1px solid rgba(169, 150, 255, .5);
    color: var(--equifax);
}

.n4 {
    top: 50%;
    left: -8px;
    margin-top: -19px;
    background: rgba(255, 139, 148, .18);
    border: 1px solid rgba(255, 139, 148, .5);
    color: var(--crif);
}

.gauge-foot {
    display: flex;
    justify-content: space-between;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    transform: translateZ(25px);
}

.gauge-foot div {
    text-align: center;
    flex: 1;
}

.gauge-foot .v {
    font-family: 'JetBrains Mono';
    font-weight: 700;
    font-size: 15px;
}

.gauge-foot .k {
    font-size: 10.5px;
    color: var(--slate);
    margin-top: 3px;
}


@media (max-width: 768px) {

    header.hero {
        padding: 180px 20px 80px;
        display: flex;
        flex-direction: column;

        gap: 60px;
    }

    nav .wrap {
        justify-content: space-evenly;
        /* gap: 60px; */
    }

    .wrap {
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero p.sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas,
    .trustrow {
        justify-content: center;
    }

    .gaugecard {
        transform: none;
        width: 100%;
        max-width: 300px;
        padding: 20px 10px;
    }

    .arc {
        width: 280px !important;
    }

    section {
        padding: 110px 20px !important;
    }
}

.track-mini {
    height: 6px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}

.track-mini i {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--red), var(--blue), var(--green));
    width: 0;
    transition: width 1.6s cubic-bezier(.2, .9, .25, 1);
}

.track-mini .marker {
    position: absolute;
    top: -4px;
    width: 2px;
    height: 14px;
    background: var(--white);
    transform: translateX(-1px);
    transition: left 1.6s cubic-bezier(.2, .9, .25, 1);
    left: 0;
}

.bcard-foot {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px dashed rgba(255, 255, 255, .14);
}

.bcard-foot .v {
    font-family: 'JetBrains Mono';
    font-weight: 700;
    font-size: 13.5px;
}

.bcard-foot .k {
    font-size: 10px;
    color: var(--slate);
    margin-top: 2px;
}

.stack-hint {
    position: absolute;
    bottom: -38px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 11.5px;
    color: var(--slate);
    font-family: 'JetBrains Mono';
    opacity: .8;
}

.ticker-outer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .02);
    padding: 16px 0;
    overflow: hidden;
    margin-top: 20px;
}

.ticker {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: ticker 26s linear infinite;
    width: max-content;
}

.ticker span {
    font-family: 'JetBrains Mono';
    font-size: 13px;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker span b {
    color: var(--white);
    font-weight: 600;
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.divider {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 32px;
}

.divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
}

.divider .mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex: none;
    background: linear-gradient(135deg, rgba(79, 140, 255, .16), rgba(79, 140, 255, .02));
    border: 1px solid rgba(79, 140, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.divider .mark svg {
    transform: rotate(-45deg);
}

.divider-wrap {
    padding: 56px 0;
}


.reasons {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: stretch;
}

@media(max-width:900px) {
    .reasons {
        grid-template-columns: 1fr;
    }
}

.reason-visual {
    position: relative;
    border-radius: 10px;
    padding: 36px;
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 255, 255, .1);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    overflow: hidden;
}

.reason-visual .ghost {
    position: absolute;
    right: -10px;
    bottom: -40px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 170px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(79, 140, 255, .14);
    pointer-events: none;
    line-height: 1;
}

.reason-visual .bignum {
    font-family: 'Space Grotesk';
    font-size: 60px;
    font-weight: 700;
    color: var(--blue-2);
    line-height: 1;
    position: relative;
}

.reason-visual .bigcap {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--slate);
    margin-top: 8px;
    position: relative;
}

.reason-visual .mini-bar {
    height: 6px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
    margin-top: 16px;
    position: relative;
}

.reason-visual .mini-bar i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    width: 0;
    transition: width 1.4s ease;
}

.reason-list {
    position: relative;
    padding-left: 26px;
}

.reason-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, var(--blue), transparent 90%);
}

.reason-row {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 0 0 30px;
}

.reason-row:last-child {
    padding-bottom: 0;
}

.reason-row::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid var(--blue-2);
}

.reason-row .ricon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex: none;
    background: rgba(79, 140, 255, .12);
    border: 1px solid rgba(79, 140, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-2);
}

.reason-row h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.reason-row p {
    font-size: 13.8px;
    color: var(--slate);
    line-height: 1.6;
}


.bureau-shell {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 0;
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    overflow: hidden;
}

@media(max-width:820px) {
    .bureau-shell {
        grid-template-columns: 1fr;
    }
}

.bureau-tabs {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

@media(max-width:820px) {
    .bureau-tabs {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        display: flex;
        overflow-x: auto;
    }
}

.bureau-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: .25s;
    position: relative;
}

@media(max-width:820px) {
    .bureau-tab {
        border-bottom: none;
        flex: none;
        min-width: 180px;
    }
}

.bureau-tab:hover {
    background: rgba(255, 255, 255, .03);
}

.bureau-tab.active {
    background: rgba(79, 140, 255, .08);
}

.bureau-tab.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--tabcolor, var(--blue));
}

@media(max-width:820px) {
    .bureau-tab.active::before {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: auto;
        height: 3px;
    }
}

.bureau-tab .tabcube {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 14px;
    
    color: var(--ink);
}

.bureau-tab .tabname {
    font-size: 14px;
    font-weight: 600;
}

.bureau-tab .tabsub {
    font-size: 11px;
    color: var(--slate);
    font-family: 'JetBrains Mono';
    margin-top: 2px;
}

.bureau-detail {
    padding: 36px;
}

@media(max-width:560px) {
    .bureau-detail {
        padding: 26px;
    }
}

.bureau-detail-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.bureau-detail-head .cube {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    /* background: var(--tabcolor, var(--blue)); */
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, .5);
    flex: none;
}
.gicon-wrap{
  width:70px;
  height:70px;
  margin:20px auto;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.gicon-wrap i{
  font-size:34px;
  color:var(--gc);
}
.bureau-detail-head h3 {
    font-size: 22px;
}

.bureau-detail-head span {
    font-family: 'JetBrains Mono';
    font-size: 11.5px;
    color: var(--slate);
}

.bureau-detail p.desc {
    color: var(--slate);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 24px;
}

.bureau-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
}

@media(max-width:560px) {
    .bureau-stats {
        grid-template-columns: 1fr;
    }
}

.bureau-stats .st {
    background: var(--navy);
    padding: 16px 18px;
}

.bureau-stats .st .v {
    font-family: 'JetBrains Mono';
    font-weight: 700;
    font-size: 15.5px;
    color: var(--tabcolor, var(--blue));
}

.bureau-stats .st .k {
    font-size: 11px;
    color: var(--slate);
    margin-top: 5px;
}

.bureau-meters {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
}

.bmeter .bmeter-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 10px;
}

.bmeter .bmeter-head b {
    font-size: 13.5px;
    font-weight: 600;
}

.bmeter .bmeter-head span {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--tabcolor, var(--blue));
    flex: none;
}

.bmeter-track {
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .07);
    overflow: hidden;
    position: relative;
}

.bmeter-fill {
    height: 100%;
    border-radius: 5px;
    width: 0;
    background: linear-gradient(90deg, var(--tabcolor, var(--blue)), color-mix(in srgb, var(--tabcolor, var(--blue)) 55%, white));
    transition: width 1.3s cubic-bezier(.2, .9, .25, 1);
}


.flow-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    counter-reset: flowstep;
}

@media(max-width:860px) {
    .flow-rail {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

.flow-track {
    position: absolute;
    top: 34px;
    left: calc(100%/6);
    right: calc(100%/6);
    height: 2px;
    background: rgba(255, 255, 255, .08);
    z-index: 0;
    overflow: hidden;
}

@media(max-width:860px) {
    .flow-track {
        display: none;
    }
}

.flow-track i {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transition: width 1.4s cubic-bezier(.2, .9, .25, 1);
}

.flow-step {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
}

@media(max-width:860px) {
    .flow-step {
        padding: 0 0 0 74px;
        text-align: left;
        min-height: 64px;
    }
}

.flow-node {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 2px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .4s;
}

@media(max-width:860px) {
    .flow-node {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        width: 56px;
        height: 56px;
    }
}

.flow-step.active .flow-node {
    border-color: var(--blue-2);
    box-shadow: 0 0 0 6px rgba(79, 140, 255, .12), 0 10px 26px -8px rgba(79, 140, 255, .5);
}

.flow-node .flow-num {
    font-family: 'JetBrains Mono';
    font-weight: 700;
    font-size: 20px;
    color: var(--blue-2);
}

.flow-node .flow-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid var(--blue-2);
    opacity: 0;
    transform: scale(1);
}

.flow-step.active .flow-node .flow-ring {
    animation: flowping 1.6s ease-out;
}

@keyframes flowping {
    0% {
        opacity: .9;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

.flow-step h3 {
    font-size: 17px;
    margin-bottom: 9px;
}

.flow-step p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

@media(max-width:860px) {
    .flow-step p {
        margin: 0;
    }
}

.flow-tag {
    display: inline-block;
    font-family: 'JetBrains Mono';
    font-size: 10.5px;
    letter-spacing: .08em;
    color: var(--green);
    background: rgba(51, 214, 159, .1);
    border: 1px solid rgba(51, 214, 159, .25);
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 12px;
}


.gauge-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 12px;
    padding: 20px 26px;
    background: linear-gradient(120deg, rgba(79, 140, 255, .12), rgba(51, 214, 159, .08));
    border: 1px solid rgba(79, 140, 255, .25);
    margin-bottom: 28px;
}

.gauge-banner .gb-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gauge-banner .gb-left .gb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
    flex: none;
    animation: pulse 1.8s infinite;
}

.gauge-banner .gb-left b {
    font-size: 15px;
}

.gauge-banner .gb-left span {
    display: block;
    font-size: 12.5px;
    color: var(--slate);
    margin-top: 2px;
}

.gauge-banner .gb-right {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--blue-2);
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.gauge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media(max-width:820px) {
    .gauge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:520px) {
    .gauge-grid {
        grid-template-columns: 1fr;
    }
}

.gauge-card {
    --gc: #4f8cff;
    position: relative;
    border-radius: 12px;
    padding: 28px 22px;
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 255, 255, .09);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .3s;
}

.gauge-card:hover {
    border-color: color-mix(in srgb, var(--gc) 45%, transparent);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -18px rgba(0, 0, 0, .6);
}

.gauge-tag {
    font-family: 'JetBrains Mono';
    font-size: 10px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 16px;
}

.gauge-ring {
    position: relative;
    width: 108px;
    height: 108px;
    margin-bottom: 16px;
}

.gauge-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.gauge-ring circle {
    fill: none;
    stroke-width: 6;
}

.gauge-ring .gtrack {
    stroke: rgba(255, 255, 255, .08);
}

.gauge-ring .gfill {
    stroke: var(--gc);
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s cubic-bezier(.2, .9, .25, 1);
}

.gauge-ring .gicon-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gc);
}

.gauge-stat {
    font-family: 'JetBrains Mono';
    font-weight: 700;
    font-size: 21px;
    color: var(--gc);
    margin-bottom: 8px;
}

.gauge-title {
    font-size: 15.5px;
    margin-bottom: 8px;
}

.gauge-desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
}


.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media(max-width:860px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }
}

.feat-card {
    --fc: #4f8cff;
    position: relative;
    border-radius: 12px;
    padding: 28px 26px;
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 255, 255, .09);
    overflow: hidden;
    transition: .35s;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.feat-card:hover::before {
    transform: scaleX(1);
}

.feat-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--fc) 40%, transparent);
    box-shadow: 0 22px 42px -20px rgba(0, 0, 0, .65);
}

.feat-card .fghost {
    position: absolute;
    top: 2px;
    right: 14px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 56px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.feat-card .ftag2 {
    position: relative;
    display: inline-block;
    font-family: 'JetBrains Mono';
    font-size: 10px;
    letter-spacing: .08em;
    color: var(--fc);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.feat-card .ficon3 {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--fc) 16%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc);
    margin-bottom: 18px;
    transition: .35s;
}

.feat-card:hover .ficon3 {
    transform: scale(1.08) rotate(-4deg);
}

.feat-card h4 {
    position: relative;
    font-size: 16.5px;
    margin-bottom: 10px;
}

.feat-card p {
    position: relative;
    font-size: 13.5px;
    color: var(--slate);
    line-height: 1.6;
}


.myth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width:900px) {
    .myth-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .myth-grid {
        grid-template-columns: 1fr;
    }
}

.flip-outer {
    perspective: 1200px;
    height: 230px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(.2, .9, .25, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-outer.flipped .flip-inner {
    transform: rotateY(180deg);
}

.flip-face {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 24px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
}

.flip-front {
    --bcol: rgba(255, 107, 107, .6);
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 107, 107, .25);
}

.flip-back {
    --bcol: rgba(51, 214, 159, .6);
    background: linear-gradient(160deg, #132a26, #0d1f28);
    border: 1px solid rgba(51, 214, 159, .35);
    transform: rotateY(180deg);
}

.flip-tag {
    font-family: 'JetBrains Mono';
    font-size: 10.5px;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.flip-front .flip-tag {
    color: var(--red);
}

.flip-back .flip-tag {
    color: var(--green);
}

.flip-face h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.flip-face p {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
}

.flip-hint {
    margin-top: auto;
    font-family: 'JetBrains Mono';
    font-size: 10.5px;
    color: var(--slate);
    opacity: .7;
}


.scale-wrap {
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 36px;
}

@media(max-width:560px) {
    .scale-wrap {
        padding: 24px 20px;
    }
}

.scale-bar {
    display: flex;
    height: 16px;
    overflow: hidden;
    margin: 30px 0 14px;
}

.scale-bar span {
    flex: 1;
    position: relative;
}

.scale-bar span:nth-child(1) {
    background: #ff6b6b;
}

.scale-bar span:nth-child(2) {
    background: #ff9f6b;
}

.scale-bar span:nth-child(3) {
    background: var(--blue);
}

.scale-bar span:nth-child(4) {
    background: var(--blue-2);
}

.scale-bar span:nth-child(5) {
    background: var(--green);
}

.scale-marks {
    display: flex;
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--slate);
    margin-bottom: 28px;
}

.scale-marks span {
    flex: 1;
}

.scale-legend {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
}

@media(max-width:760px) {
    .scale-legend {
        grid-template-columns: repeat(2, 1fr);
    }
}

.scale-legend .lg {
    padding: 14px;
    background: var(--navy);
}

.scale-legend .lg .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 7px;
}

.scale-legend .lg .lbl {
    font-size: 13px;
    font-weight: 600;
}

.scale-legend .lg .rng {
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--slate);
    margin-top: 5px;
}


.dodont {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

@media(max-width:760px) {
    .dodont {
        grid-template-columns: 1fr;
    }
}

.do-col,
.dont-col {
    padding: 34px 30px;
    border-radius: 10px;
}

.do-col {
    background: linear-gradient(165deg, rgba(51, 214, 159, .09), var(--navy));
    border: 1px solid rgba(51, 214, 159, .22);
}

.dont-col {
    background: linear-gradient(165deg, rgba(255, 107, 107, .08), var(--navy));
    border: 1px solid rgba(255, 107, 107, .2);
}

.dd-seam {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
}

@media(max-width:760px) {
    .dd-seam {
        display: none;
    }
}

.dd-seam span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-2);
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--slate);
}

.dd-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.dd-head .ic {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.do-col .ic {
    background: rgba(51, 214, 159, .16);
    color: var(--green);
}

.dont-col .ic {
    background: rgba(255, 107, 107, .16);
    color: var(--red);
}

.dd-head h3 {
    font-size: 19px;
}

.dd-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dd-list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--slate);
    line-height: 1.55;
}

.dd-list li b {
    color: var(--white);
    font-weight: 600;
}

.dd-list .mk {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
}

.do-col .mk {
    background: rgba(51, 214, 159, .18);
    color: var(--green);
}

.dont-col .mk {
    background: rgba(255, 107, 107, .18);
    color: var(--red);
}


.faq-shell {
    display: grid;
    grid-template-columns: .4fr 1.6fr;
    gap: 32px;
}

@media(max-width:820px) {
    .faq-shell {
        grid-template-columns: 1fr;
    }
}

.faq-side {
    position: sticky;
    top: 110px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media(max-width:820px) {
    .faq-side {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 6px;
    }
}

.faq-side .fs-item {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--slate);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    transition: .25s;
    white-space: nowrap;
}

.faq-side .fs-item.active {
    color: var(--white);
    border-color: var(--blue-2);
    background: rgba(79, 140, 255, .1);
}

.faq-side .fs-count {
    display: block;
    font-size: 20px;
    color: var(--blue-2);
    font-weight: 700;
    font-family: 'Space Grotesk';
    margin-bottom: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card {
    border-radius: 10px;
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 255, 255, .09);
    overflow: hidden;
    transition: .3s;
}

.faq-card.open {
    border-color: rgba(79, 140, 255, .35);
}

.faq-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-card-head .fq-idx {
    font-family: 'JetBrains Mono';
    font-size: 13px;
    color: var(--blue-2);
    flex: none;
    width: 28px;
}

.faq-card-head .fq-q {
    font-size: 15px;
    font-weight: 600;
    flex: 1;
}

.faq-card-head .fq-plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .16);
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .3s;
}

.faq-card-head .fq-plus::before,
.faq-card-head .fq-plus::after {
    content: '';
    position: absolute;
    background: var(--slate);
    transition: .3s;
}

.faq-card-head .fq-plus::before {
    width: 10px;
    height: 1.6px;
}

.faq-card-head .fq-plus::after {
    width: 1.6px;
    height: 10px;
}

.faq-card.open .fq-plus {
    border-color: var(--blue-2);
    transform: rotate(180deg);
}

.faq-card.open .fq-plus::after {
    opacity: 0;
}

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-card-body-in {
    padding: 0 24px 22px 68px;
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
}

.faq-card.open .faq-card-body {
    max-height: 220px;
}


.ctaband {
    background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
    border: 1px solid rgba(79, 140, 255, .3);
    border-radius: 14px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ctaband::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(79, 140, 255, .2), transparent 60%);
}

.ctaband h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 14px;
    position: relative;
}

.ctaband p {
    color: var(--slate);
    margin-bottom: 28px;
    position: relative;
}


.contact-shell {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
}

@media(max-width:860px) {
    .contact-shell {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    --bcol: rgba(79, 140, 255, .4);
    border-radius: 8px;
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: .25s;
}

.contact-card:hover {
    border-color: rgba(79, 140, 255, .35);
}

.contact-card .cicon {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 8px;
    background: rgba(79, 140, 255, .12);
    border: 1px solid rgba(79, 140, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-2);
}

.contact-card h4 {
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'JetBrains Mono';
}

.contact-card p {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
}

.contact-form {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    overflow: hidden;
}

.contact-form form {
    padding: 28px;
}

@media(max-width:560px) {
    .contact-form form {
        padding: 22px;
    }
}

.contact-form .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width:560px) {
    .contact-form .row2 {
        grid-template-columns: 1fr;
    }
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 11px;
    font-family: 'JetBrains Mono';
    color: var(--blue-2);
    margin-bottom: 7px;
    letter-spacing: .04em;
}


.field input,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--white);
    font-size: 14px;
    font-family: 'JetBrains Mono';
    outline: none;
    transition: .2s;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--blue);
    background: rgba(255, 255, 255, .06);
}

.form-note {
    font-size: 12px;
    color: var(--green);
    margin-top: 14px;
    opacity: 0;
    transition: .3s;
    font-family: 'JetBrains Mono';
}

.form-note.show {
    opacity: 1;
}


footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 56px 0 34px;
        background: rgba(7, 11, 30, .88);
}

.foot-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

@media(max-width:760px) {
    .foot-grid {
        flex-direction: column;
        padding: 20px;
    }

}

.foot-grid h4 {
    font-size: 12px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono';
}

.foot-grid ul {
    list-style: none;
}

.foot-grid li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--slate);
}

.foot-grid li a:hover {
    color: var(--white);
}

.foot-bottom {

    font-size: 12.5px;
    color: var(--slate);
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
}