:root {
    --bg: #f5f7fb;
    --ink: #10131a;
    --muted: #697386;
    --line: #e5e8ef;
    --accent: #6d5dfc;
    --accent2: #00c2ff;
    --dark: #0b0e14;
    --blue: #5b5cff;
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink)
}

.navbar {
    background: rgba(246, 248, 252, .78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 233, 242, .7);
}

.hero {
    padding: 110px 0 90px;
    background: radial-gradient(circle at 75% 25%, rgba(109, 93, 252, .18), transparent 35%), #f5f7fb;
    overflow: hidden
}

.badge-soft {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: #555;
    font-size: .85rem
}

.gradient-text {
    background: linear-gradient(90deg, #6d5dfc, #00aeea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: .98
}

.hero p {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 680px
}

.btn-main {
    background: #111;
    color: #fff;
    border: 0;
    border-radius: 13px;
    padding: 14px 22px;
    font-weight: 700
}

.btn-main:hover {
    background: #272b35;
    color: #fff
}

.btn-outline-dark {
    border-radius: 13px;
    padding: 13px 20px
}

.hero-art {
    position: relative;
    min-height: 450px
}

.shield {
    position: absolute;
    inset: 40px 10% 40px 10%;
    filter: drop-shadow(0 30px 60px rgba(31, 33, 45, .18));
    animation: float 6s ease-in-out infinite
}

.orbit {
    position: absolute;
    border: 1px solid rgba(109, 93, 252, .22);
    border-radius: 50%;
    animation: spin 18s linear infinite
}

.orbit.one {
    width: 380px;
    height: 180px;
    left: 5%;
    top: 130px;
    transform: rotate(25deg)
}

.orbit.two {
    width: 320px;
    height: 150px;
    right: 0;
    top: 180px;
    transform: rotate(-28deg);
    animation-duration: 23s
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6d5dfc;
    box-shadow: 0 0 0 7px rgba(109, 93, 252, .12);
    animation: pulse 2s infinite
}

.node.a {
    top: 90px;
    right: 18%
}

.node.b {
    bottom: 95px;
    left: 15%
}

.node.c {
    top: 45%;
    right: 4%
}

@keyframes float {
    50% {
        transform: translateY(-14px)
    }
}

@keyframes spin {
    to {
        transform: rotate(385deg)
    }
}

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 14px rgba(109, 93, 252, 0)
    }
}

.section {
    padding: 100px 0
}

.section-head {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center
}

.kicker {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 900
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -.055em;
    font-weight: 950;
    line-height: 1
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 18px
}

/*.dark {*/
/*    background: var(--dark);*/
/*    color: #fff*/
/*}*/

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .76rem;
    font-weight: 800;
    color: #7d87a0
}

/*.cardx {*/
/*    height: 100%;*/
/*    padding: 30px;*/
/*    border: 1px solid var(--line);*/
/*    border-radius: 22px;*/
/*    background: #fff;*/
/*    box-shadow: 0 15px 45px rgba(15, 20, 35, .05);*/
/*    transition: .35s;*/
/*    overflow: hidden;*/
/*}*/
.cardx {
    /*height: 100%;*/
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    transition: .35s
}

.cardx:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 70px rgba(25, 30, 60, .1)
}

.cardx:after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    right: -75px;
    top: -75px;
    background: rgba(91, 92, 255, .08)
}

.cardx h3 {
    font-weight: 900;
    margin-top: 25px
}

.cardx p {
    color: var(--muted);
    line-height: 1.7
}

/*.dark .cardx {*/
/*    background: #11151e;*/
/*    border-color: #242a37*/
/*}*/

.dark {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden
}

.dark:before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    right: -200px;
    top: -280px;
    background: radial-gradient(circle, rgba(91, 92, 255, .34), transparent 68%)
}

.dark .section-head p, .dark .muted {
    color: #a8afc1
}

.scan {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
    border-radius: 25px;
    padding: 25px;
    backdrop-filter: blur(15px)
}

.scan-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.scan-row:last-child {
    border: 0
}

.scan-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(91, 92, 255, .17);
    color: #aeb0ff;
    font-weight: 900
}

.scan-row strong {
    display: block
}

.scan-row small {
    color: #8e96aa
}

.check-card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .045);
    border-radius: 22px;
    padding: 28px;
    transition: .3s
}

.check-card:hover {
    background: rgba(255, 255, 255, .075);
    transform: translateY(-5px)
}

.check-card svg {
    width: 32px;
    height: 32px;
    fill: #8e90ff;
    margin-bottom: 20px
}

.check-card h4 {
    font-weight: 850
}

.check-card p {
    color: #9da5b8;
    line-height: 1.65;
    margin: 0
}

.status {
    margin-left: auto;
    font-size: .76rem;
    font-weight: 800;
    padding: .35rem .55rem;
    border-radius: 999px
}

.warn {
    background: rgba(255, 190, 70, .12);
    color: #ffc764
}

.ok {
    background: rgba(42, 211, 150, .12);
    color: #62e0b1
}

/*.icon {*/
/*    font-size: 4.4rem;*/
/*    line-height: 1;*/
/*    font-weight: 950;*/
/*    letter-spacing: -.07em;*/
/*    color: var(--blue)*/
/*}*/

.icon {
    /*width: 150px;*/
    /*height: 150px;*/
    border-radius: 15px;
    font-size: 4.4rem;
    /*display: grid;*/
    place-items: center;
    /*background: #f0efff;*/
    color: #6d5dfc;
    font-weight: 800;
    margin-bottom: 22px
}

.scan {
    border: 1px solid #242a37;
    border-radius: 28px;
    background: linear-gradient(145deg, #10141d, #090b10);
    padding: 28px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28)
}

.scanbar {
    height: 8px;
    background: #222938;
    border-radius: 20px;
    overflow: hidden
}

.scanbar span {
    display: block;
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, #6d5dfc, #00c2ff);
    animation: scan 2.6s ease-in-out infinite alternate
}

@keyframes scan {
    from {
        width: 28%
    }
    to {
        width: 88%
    }
}

.price {
    position: relative
}

.price.featured {
    border: 2px solid #6d5dfc;
    transform: translateY(-8px)
}

.price .amount {
    font-size: 2.2rem;
    font-weight: 800
}

.check {
    color: #5b53dc;
    font-weight: 800;
    margin-right: 8px
}

.form-control, .form-select {
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid #dfe3eb
}

footer {
    background: #080a0e;
    color: #8f98aa
}

.small-note {
    font-size: .82rem;
    color: #7d879a
}

.alert {
    border-radius: 14px
}
