﻿/* ===== GLOBAL RESET LAYOUTS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: auto;
    max-width: 100%;
}
ul{
    list-style:none;
}
:root {
    --c0: #f8fafc;
    --c1: #f1f5f9;
    --c2: #e2e8f0;
    --nb: #00c8ff;
    --np: #8b5cf6;
    --nc: #00ffcc;
    --ng: #00ff88;
    --t1: #0f172a;
    --t2: #475569;
    --t3: #94a3b8;
    --glass: rgba(0, 0, 0, 0.02);
    --glass2: rgba(0, 0, 0, 0.05);
    --border: rgba(0, 0, 0, 0.08);
    --border2: rgba(0, 0, 0, 0.15);
    /* High Contrast Dark Variants */
    --dk-bg: #09090b;
    --dk-surface: #18181b;
    --dk-border: rgba(0, 200, 255, 0.15);
    --dk-t1: #f8fafc;
    --dk-t2: #94a3b8;
}

a:focus, a:focus-within {
    outline: none !important;
}

body.active {
    margin-bottom: 68px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--c0);
    color: var(--t1);
    overflow-x: hidden;
    line-height: 1.6;
}


a.btn-xl-primary:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===== NAVIGATION BAR ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 48px;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    justify-content: space-between;
}

    .nav-left img {
        filter: none;
        opacity: 1;
    }

.nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border2);
}

.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(120deg, var(--nb), var(--np));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .logo svg {
        flex-shrink: 0;
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        color: var(--t2);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: .2s;
    }

        .nav-links a:hover {
            color: var(--nb);
        }

.nav-ctas {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-sm {
    padding: 8px 18px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    border: none;
}

.btn-ghost-sm {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dk-border);
    color: var(--dk-t1);
}

    .btn-ghost-sm:hover {
        border-color: var(--nb);
        color: var(--nb);
    }

.btn-fill-sm {
    background: linear-gradient(135deg, var(--nb), var(--np));
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 200, 255, .22);
}

    .btn-fill-sm:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(0, 200, 255, .35);
    }

.hero-btns .buy-now-btn {
    width: 244px;
    height: 60px;
    border: 2px solid #00c8ff;
    background: rgba(0, 200, 255, 0.05);
    color: #00c8ff !important;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: 0.3s;
}

/* ===== MODEL POPUP ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(248, 250, 252, 0.4);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--dk-surface);
    border: 1px solid var(--dk-border);
    border-radius: 24px;
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    overflow: hidden;
    animation: fadeUp 0.4s ease-out forwards;
}

.modal-left {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-right {
    width: 340px;
    background: var(--dk-bg);
    border-left: 1px solid var(--dk-border);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--dk-t2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-close:hover {
        color: var(--dk-t1);
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.3);
    }

.modal-title {
    color: var(--dk-t1);
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modal-sub {
    color: var(--dk-t2);
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.modal-input, .modal-inputt {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    margin-bottom: 16px;
    background: var(--dk-bg);
    border: 1px solid var(--dk-border);
    color: var(--dk-t1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

    .modal-input:focus, .modal-inputt:focus {
        border-color: var(--nb);
        box-shadow: 0 0 15px rgba(0, 200, 255, 0.1);
    }

.modal-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--nb), var(--np));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(0, 200, 255, 0.2);
    margin-top: 8px;
}

    .modal-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0, 200, 255, 0.3);
    }

.modal-footer {
    color: var(--dk-t2);
    font-size: 13px;
    text-align: center;
    margin-top: 24px;
}

    .modal-footer a {
        color: var(--nb);
        text-decoration: none;
        font-weight: 600;
        transition: 0.2s;
    }

        .modal-footer a:hover {
            color: var(--nc);
            text-shadow: 0 0 8px rgba(0,255,204,0.4);
        }

/* ===== HERO CONTAINER ===== */
.hero {
    position: relative;
 /*   min-height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 40px 40px;
    min-height:720px;
}

#hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

/*.hero-left {
    max-width: 580px;
}*/

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 255, 0.08);
    border: 1px solid rgba(0, 200, 255, 0.25);
    color: var(--nb);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 10px;
    line-height:normal;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp .8s ease both;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--nc);
    border-radius: 50%;
    animation: pulse 1.6s infinite;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2.5px;
    animation: fadeUp .9s ease .1s both;
}

    .hero-title .line1 {
        display: block;
        color: var(--t1);
    }

    .hero-title .line2 {
        display: block;
        background: linear-gradient(100deg, var(--nb) 0%, var(--np) 45%, var(--nc) 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: fadeUp .9s ease .1s both, gradShift 4s ease infinite;
    }

.hero-sub {
    font-size: 17px;
    color: var(--t2);
    margin: 20px 0 36px;
    line-height: 1.7;
    animation: fadeUp .9s ease .2s both;
  /*  max-width: 480px;*/
}

    .hero-sub strong {
        color: var(--nb);
        font-weight: 600;
    }

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .9s ease .3s both;
}

.btn-xl {
    padding: 15px 15px;
    border-radius: 13px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    border: none;
    letter-spacing: -.2px;
}

.btn-xl-primary {
    background: linear-gradient(135deg, #00b8e8, #7c3aed);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 184, 232, .28);
}

    .btn-xl-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(0, 184, 232, .45);
    }

.btn-xl-outline {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border2);
    color: var(--t1);
}

    .btn-xl-outline:hover {
        border-color: var(--nb);
        color: var(--nb);
        background: rgba(0, 200, 255, .05);
    }

.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    animation: fadeUp .9s ease .4s both;
    font-size:14px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--t2);
}

    .trust-badge .dot {
        color: var(--nc);
        font-size: 16px;
    }

/* ===== HERO INSTRUMENTAL GRAPHICS ===== */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    animation: fadeIn 1s ease .35s both;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 660px;
    height: 600px;
}

.globe-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

#globe-canvas {
    display: block;
}

/* Decoupled layout offsets driving custom 34% visual alignment */
.shield-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 4;
    /*margin-top: -16%;
    margin-left: -16%;*/
    margin-top: -94px;
    margin-left: -94px;
    animation: shieldGlow 3.5s ease-in-out infinite, floatGraphic 5s ease-in-out infinite;
}

.scan-container {
    position: absolute;
    top: 65%;
    left: 65%;
    transform: translate(-50%, -52%);
    width: 180px;
    height: 220px;
    overflow: hidden;
    z-index: 5;
    border-radius: 4px;
    pointer-events: none;
    margin-top: -16%;
    margin-left: -16%;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, .8), rgba(0, 255, 204, .6), transparent);
    animation: scanMove 3s linear infinite;
}

.orbit-sys {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
}

.oring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    transform: translate(-50%, -50%);
}

.o1 {
    width: 360px;
    height: 260px;
    border-color: rgba(0, 200, 255, .12);
    animation: spin 22s linear infinite;
    margin-top: -10px;
}

.o2 {
    width: 460px;
    height: 320px;
    border-color: rgba(139, 92, 246, .1);
    animation: spinR 30s linear infinite;
    margin-top: -10px;
}

.o3 {
    width: 560px;
    height: 380px;
    border-color: rgba(0, 255, 204, .07);
    animation: spin 40s linear infinite;
    margin-top: -10px;
}

.odot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

    .odot.b {
        background: var(--nb);
        box-shadow: 0 0 12px var(--nb), 0 0 24px rgba(0, 200, 255, .4);
    }

    .odot.p {
        background: var(--np);
        box-shadow: 0 0 12px var(--np), 0 0 24px rgba(139, 92, 246, .4);
    }

    .odot.c {
        background: var(--nc);
        box-shadow: 0 0 12px var(--nc), 0 0 24px rgba(0, 255, 204, .4);
    }

.dev-card {
    position: absolute;
    z-index: 6;
    background: rgba(24, 24, 27, 0.92);
    border: 1px solid var(--dk-border);
    border-radius: 8px;
    backdrop-filter: blur(20px);
    /* padding: 14px 18px;*/
    padding: 8px 14px;
    min-width: 150px;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .dev-card:hover {
        border-color: var(--nb);
        transform: scale(1.04);
    }

.dc-top {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}

.dc-icon {
    font-size: 11px;
}

.dc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -.2px;
    color: var(--dk-t1);
}

.dc-sub {
    font-size: 11px;
    color: var(--dk-t2);
}

.dc-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
}

.status-g {
    color: var(--ng);
}

.status-b {
    color: var(--nb);
}

.sdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: pulseGraphic 2s infinite;
}

    .sdot.g {
        background: var(--ng);
    }

    .sdot.b {
        background: var(--nb);
    }

.dc-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 200, 255, 0.15);
    margin-top: 8px;
    overflow: hidden;
}

.dc-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--nb), var(--nc));
}

.data-packet {
    position: absolute;
    z-index: 7;
    background: rgba(24, 24, 27, 0.9);
    border: 1px solid var(--dk-border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--nb);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    letter-spacing: .3px;
}

    .data-packet.enc {
        color: var(--nc);
        border-color: rgba(0, 255, 204, .3);
    }

    .data-packet.locked {
        color: #a78bfa;
        border-color: rgba(139, 92, 246, .3);
    }

#tunnel-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ===== SYSTEM CORE KEYFRAMES ===== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: .5;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes shieldGlow {
    0%, 100% {
        filter: drop-shadow(0 0 18px rgba(0, 200, 255, .55)) drop-shadow(0 0 40px rgba(139, 92, 246, .3));
    }

    50% {
        filter: drop-shadow(0 0 38px rgba(0, 200, 255, .9)) drop-shadow(0 0 70px rgba(139, 92, 246, .5));
    }
}

@keyframes scanMove {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: translateY(300px);
        opacity: 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinR {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes floatGraphic {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGraphic {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: .45;
    }
}

/* ===== GLOBAL SECTIONS SEPARATION ===== */
.section {
    padding: 96px 48px;
    max-width: 1240px;
    margin: 0 auto;
}

.section-tag {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nb);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .section-tag::before, .section-tag::after {
        content: '';
        height: 1px;
        width: 40px;
        background: linear-gradient(90deg, transparent, var(--nb));
    }

    .section-tag::after {
        background: linear-gradient(90deg, var(--nb), transparent);
    }

h2.sec-h {
    text-align: center;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

    h2.sec-h span {
        background: linear-gradient(120deg, var(--nb), var(--np));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.sec-sub {
    text-align: center;
    color: var(--t2);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.15), transparent);
}

/* ===== WHY CHOOSE CORE PANELS ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}

.why-card {
    background: var(--dk-surface);
    border: 1px solid var(--dk-border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all .35s;
    cursor: default;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--nb), transparent);
        opacity: 0;
        transition: .35s;
    }

    .why-card:hover {
        border-color: rgba(0, 200, 255, .3);
        background: var(--dk-bg);
        transform: translateY(-5px);
    }

        .why-card:hover::before {
            opacity: 1;
        }

    .why-card:nth-child(2):hover::before {
        background: linear-gradient(90deg, transparent, var(--np), transparent);
    }

    .why-card:nth-child(3):hover::before {
        background: linear-gradient(90deg, transparent, var(--nc), transparent);
    }

    .why-card:nth-child(4):hover::before {
        background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
    }

.why-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    border: 1px solid var(--border2);
}

.why-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -.3px;
    color: var(--dk-t1);
}

.why-card p {
    color: var(--dk-t2);
    font-size: 14px;
    line-height: 1.75;
}

.why-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}

.pill-blue {
    background: rgba(0, 200, 255, .1);
    color: var(--nb);
    border: 1px solid rgba(0, 200, 255, .2);
}

.pill-purple {
    background: rgba(139, 92, 246, .1);
    color: var(--np);
    border: 1px solid rgba(139, 92, 246, .2);
}

.pill-cyan {
    background: rgba(0, 255, 204, .08);
    color: var(--nc);
    border: 1px solid rgba(0, 255, 204, .15);
}

.pill-pink {
    background: rgba(255, 107, 157, .08);
    color: #ff6b9d;
    border: 1px solid rgba(255, 107, 157, .2);
}

/* ===== CONNECTION COMPARISON SECTION ===== */
.features-section {
    padding: 96px 48px;
    max-width: 1240px;
    margin: 0 auto;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.comp-card {
    background: var(--dk-surface);
    border: 1px solid var(--dk-border);
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

    .comp-card.exposed {
        border-color: rgba(255, 95, 86, 0.15);
        background: var(--dk-surface);
    }

        .comp-card.exposed:hover {
            border-color: rgba(255, 95, 86, 0.25);
            box-shadow: 0 16px 40px rgba(255, 95, 86, 0.03);
            transform: translateY(-4px);
        }

    .comp-card.secured {
        border-color: rgba(0, 200, 255, 0.15);
        background: var(--dk-surface);
    }

        .comp-card.secured:hover {
            border-color: rgba(0, 200, 255, 0.28);
            box-shadow: 0 16px 40px rgba(0, 200, 255, 0.05);
            transform: translateY(-4px);
        }

.comp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

    .comp-badge.red {
        background: rgba(255, 95, 86, 0.08);
        color: #ff8656;
        border: 1px solid rgba(255, 95, 86, 0.18);
    }

    .comp-badge.cyan {
        background: rgba(0, 255, 204, 0.06);
        color: var(--nc);
        border: 1px solid rgba(0, 255, 204, 0.18);
    }

.comp-visual {
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dk-bg);
    border: 1px solid var(--dk-border);
    border-radius: 20px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

    .comp-visual text {
        fill: var(--dk-t2);
    }

.comp-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dk-t1);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.comp-card p {
    font-size: 14.5px;
    color: var(--dk-t2);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 380px;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .comp-list li {
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dk-t2);
        text-align: left;
    }

    .comp-list.exposed li {
        color: var(--dk-t2);
    }

    .comp-list.secured li {
        color: var(--dk-t1);
    }

    .comp-list li span.comp-icon {
        font-size: 16px;
        flex-shrink: 0;
    }

    .comp-list.exposed li span.comp-icon {
        color: #ff5f56;
    }

    .comp-list.secured li span.comp-icon {
        color: var(--ng);
    }

@media(max-width: 768px) {
    .comp-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comp-card {
        padding: 36px 24px;
    }
}

/* ===== QUANTIFIABLE METRIC RUNWAY ===== */
.stats-runway-section {
    padding: 24px 0;
    background: var(--dk-surface);
    border-top: 1px solid var(--dk-border);
    border-bottom: 1px solid var(--dk-border);
    overflow: hidden;
    position: relative;
}

    .stats-runway-section::before, .stats-runway-section::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 150px;
        z-index: 2;
    }

    .stats-runway-section::before {
        left: 0;
    }

    .stats-runway-section::after {
        right: 0;
    }

.stats-runway-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: runway-scroll 30s linear infinite;
}

@keyframes runway-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.stat-runway-item {
    display: flex;
    align-items: baseline;
    gap: 0px;
    flex-shrink: 0;
    padding: 20px 0;
}

.stat-runway-num {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--nb), var(--np));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
   
}
.os-icon-box {
    width: 25px;
}

.stat-runway-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dk-t2);
    white-space: nowrap;
}

.stat-runway-divider {
    width: 1px;
    height: 24px;
    border: 1px solid var(--dk-border);
    transform: rotate(20deg);
}

/* ===== SERVER MAP Blueprints PANEL ===== */
.map-section {
    padding: 100px 48px;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.map-container {
    border: 1px solid var(--dk-border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--dk-surface);
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    padding: 24px;
}

    .map-container::before {
        content: '';
        position: absolute;
        inset: 12px;
        border: 1px dashed rgba(0, 200, 255, 0.1);
        border-radius: 16px;
        pointer-events: none;
        z-index: 1;
    }

#world-canvas {
    display: block;
    width: 100%;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(0, 200, 255, 0.08);
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 420px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
    background-size: 85% auto;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1) sepia(1) hue-rotate(180deg) saturate(200%) brightness(1.2);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.map-server-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    background: transparent !important;
    border: none !important;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.srv-card {
    background: var(--dk-bg) !important;
    border: 1px solid var(--dk-border) !important;
    border-radius: 14px !important;
    padding: 20px 24px !important;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .srv-card:hover {
        background: rgba(0, 200, 255, 0.05) !important;
        border-color: var(--nb) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

.srv-tech-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nb);
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
    flex-shrink: 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.srv-card:hover .srv-tech-icon {
    transform: scale(1.3);
    box-shadow: 0 0 14px rgba(0, 255, 204, 0.8);
    background: var(--nc);
}

.srv-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.srv-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.2px;
    color: var(--dk-t1);
}

.srv-count {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--dk-t2) !important;
    font-family: monospace;
}

.srv-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    font-family: monospace;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.status-online {
    color: var(--ng) !important;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ng) !important;
    box-shadow: 0 0 8px var(--ng);
    animation: pulse 1.6s infinite !important;
}

/* ===== PRICING TIERS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    border: 1px solid var(--dk-border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all .35s;
    cursor: default;
    background: var(--dk-surface);
}

    .price-card:hover {
        transform: translateY(-6px);
    }

    .price-card.popular {
        border-color: var(--nb);
        background: var(--dk-bg);
        box-shadow: 0 0 60px rgba(0, 200, 255, .1);
    }

.pop-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--nb), var(--np));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 0 0 12px 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.price-tier {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dk-t2);
    margin-bottom: 14px;
}

.price-num {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: var(--dk-t1);
}

    .price-num sup {
        font-size: 22px;
        font-weight: 600;
        color: var(--dk-t2);
        vertical-align: super;
        letter-spacing: 0;
    }

.price-per {
    font-size: 13px;
    color: var(--dk-t2);
    margin-bottom: 32px;
    margin-top: 4px;
}

.price-list {
    list-style: none;
    margin-bottom: 36px;
}

    .price-list li {
        padding: 9px 0;
        font-size: 14px;
        color: var(--dk-t1);
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

        .price-list li:last-child {
            border: none;
        }

.ck {
    color: var(--nc);
    font-weight: 700;
    flex-shrink: 0;
}

.cx {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.pbtn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    border: 1px solid var(--dk-border);
    background: var(--dk-bg);
    color: var(--dk-t1);
}

    .pbtn:hover {
        border-color: var(--nb);
        color: var(--nb);
    }

    .pbtn.p-fill {
        background: linear-gradient(135deg, #00b8e8, var(--np));
        border: none;
        color: #fff;
        box-shadow: 0 8px 28px rgba(0, 184, 232, .28);
    }

        .pbtn.p-fill:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(0, 184, 232, .42);
        }

/* ===== TESTIMONIAL AUDITS ===== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: var(--dk-surface);
    border: 1px solid var(--dk-border);
    border-radius: 20px;
    padding: 30px;
    transition: .3s;
}

    .testi-card:hover {
        border-color: rgba(139, 92, 246, .3);
        transform: translateY(-3px);
    }

.stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-q {
    font-size: 15px;
    color: var(--dk-t1);
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
    opacity: .9;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.av1 {
    background: rgba(0, 200, 255, .15);
    color: var(--nb);
}

.av2 {
    background: rgba(139, 92, 246, .2);
    color: var(--np);
}

.av3 {
    background: rgba(0, 255, 204, .1);
    color: var(--nc);
}

.tname {
    font-size: 14px;
    font-weight: 700;
    color: var(--dk-t1);
}

.trole {
    font-size: 12px;
    color: var(--dk-t2);
}

/* ===== FAQ HARMONICS ===== */
.faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dk-surface);
    border: 1px solid var(--dk-border);
    padding: 0 24px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.faq-q {
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    transition: .2s;
    gap: 16px;
    color: var(--dk-t1);
}

    .faq-q:hover {
        color: var(--nb);
    }

.faq-icon {
    color: var(--dk-t2);
    font-size: 18px;
    transition: transform .3s;
    flex-shrink: 0;
}

    .faq-icon.open {
        transform: rotate(45deg);
        color: var(--nb);
    }

.faq-a {
    font-size: 14px;
    color: var(--dk-t2);
    line-height: 1.8;
    padding-bottom: 20px;
    display: none;
}

    .faq-a.open {
        display: block;
    }

/* ===== CONVERSION BOTTOM RUNWAY ===== */
.cta-wrap {
    background: var(--dk-surface);
    border: 1px solid var(--dk-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 32px;
    padding: 90px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

    .cta-wrap h2 {
        font-size: clamp(36px, 5vw, 58px);
        font-weight: 900;
        letter-spacing: -2px;
        background: linear-gradient(120deg, #fff, var(--nb), var(--np));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 18px;
    }

    .cta-wrap p {
        color: var(--dk-t2);
        font-size: 17px;
        margin-bottom: 44px;
    }

    .cta-wrap .hero-btns{
        justify-content:center;
    }
    .cta-wrap .hero-btns div.col-5 {
      max-width:250px;
    }

    .app-row {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dk-bg);
    border: 1px solid var(--dk-border);
    padding: 13px 22px;
    border-radius: 14px;
    cursor: pointer;
    transition: .3s;
    color: var(--dk-t1);
    text-decoration: none;
}

    .app-btn:hover {
        background: rgba(0, 200, 255, 0.1);
        border-color: var(--nb);
    }

.app-ic {
    font-size: 26px;
}

.app-sub {
    font-size: 11px;
    color: var(--dk-t2);
}

.app-main {
    font-size: 15px;
    font-weight: 700;
}

/* ===== SYSTEM DATA FOOTER ===== */
footer {
    background: var(--dk-surface);
    border-top: 1px solid var(--dk-border);
    padding: 60px 48px 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.fbrand h3 {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(120deg, var(--nb), var(--np));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.fbrand p {
    color: var(--dk-t2);
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
}

.fcol h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dk-t2);
    margin-bottom: 16px;
}

.fcol ul {
    list-style: none;
}

.fcol li {
    padding: 5px 0;
}

.fcol a {
    color: var(--dk-t1);
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}

    .fcol a:hover {
        color: var(--nb);
    }

.footer-bot {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-bot p {
        color: var(--dk-t2);
        font-size: 13px;
    }

.soc-row {
    display: flex;
    gap: 10px;
}

.soc {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--dk-bg);
    border: 1px solid var(--dk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    font-size: 14px;
    color: var(--dk-t1);
    text-decoration: none;
}

    .soc:hover {
        border-color: var(--nb);
        color: var(--nb);
    }

.certrow {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cert {
    font-size: 12px;
    color: var(--dk-t2);
    display: flex;
    align-items: center;
    gap: 4px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

/* ===== LEGAL PAGES (EULA, Return Policy, Uninstall) ===== */
body.legal-page {
    background-color: #ffffff;
    color: #333333;
}

.legal-content {
    max-width: 800px;
    margin: auto;
    padding: 40px;
}

    .legal-content h1 {
        font-size: 32px;
        margin-bottom: 24px;
        background: linear-gradient(120deg, var(--nb), var(--np));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .legal-content h2 {
        font-size: 20px;
        color: #111111;
        margin: 32px 0 16px;
    }

    .legal-content p, .legal-content ul {
        color: #333333;
        margin-bottom: 16px;
        line-height: 1.8;
    }

    .legal-content li {
        margin-bottom: 10px;
        margin-left: 20px;
        color: #333333;
    }

    .legal-content strong {
        color: #111111;
    }


/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--dk-surface);
    border: 1px solid var(--dk-border);
    border-radius: 24px;
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--dk-t1);
    letter-spacing: -0.5px;
}

.info-item {
    display: flex;
    gap: 16px;
   /* padding: 6px;*/
    /* margin-bottom: 8px;*/
    /*padding: 16px;*/
    /*border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);*/
}

    /*.info-item:hover {
        background: var(--dk-bg);
        border-color: var(--dk-border);
        transform: translateX(8px);
    }*/

.info-icon {
    font-size: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.15) rotate(-5deg);
}

.info-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dk-t2);
    margin-bottom: 6px;
    font-weight: 700;
}

.info-item p {
    font-size: 14px;
    color: var(--dk-t1);
    line-height: 1.6;
}

.contact-form-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form .form-row {
    display: flex;
    gap: 16px;
}

/* Hamburger button - desktop pe chhupa rahega */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 14px;
}

    .nav-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        border-radius: 2px;
        background: var(--nb, #00c8ff);
        transition: transform .3s ease, opacity .3s ease;
    }
    /* Open hone par cross (X) ban jaye */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


.cookie-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 5000;
    max-height: 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
    -webkit-transition: max-height .5s cubic-bezier(0, 1, 0, 1);
    -o-transition: max-height .5s cubic-bezier(0,1,0,1);
    -moz-transition: max-height .5s cubic-bezier(0,1,0,1);
    transition: max-height .5s cubic-bezier(0, 1, 0, 1);
}

    .cookie-bar.visible {
        max-height: 1000px;
        -webkit-transition: max-height 1s ease-in-out;
        -o-transition: max-height 1s ease-in-out;
        -moz-transition: max-height 1s ease-in-out;
        transition: max-height 1s ease-in-out;
    }




.AVsizer {
    margin: 0 auto;
    text-align: left;
    position: relative;
    max-width: 1290px;
    background: #0f0d27;
    padding-left: 25px;
    padding-right: 25px;
}

.cookie-bar .AVsizer {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    float: right;
    margin-bottom: 20px;
    max-width: 450px;
    border-radius: 9px 0 0 9px;
}

.cookie-bar .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    padding-bottom: 8px;
}

.cookie-bar p {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: auto;
    padding: 0 30px 0 0;
    vertical-align: middle;
    text-align: left;
    color: #adb2b6;
    font-size: 15px;
    line-height: 26px;
}

.cookie-bar .close {
    cursor: pointer;
    display: block;
    border: #adb2b6 solid 1px;
    opacity: 1;
    padding: 0;
    font-size: 20px;
    text-shadow: none;
    color: #adb2b6;
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 24px;
}

/* ===== ADAPTIVE MEDIA BREAKPOINTS ===== */
@media (max-width: 1024px) {
    .map-server-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (max-width: 992px) {
    .bit-guardian-logo {
        display: none;
    }

    .nav-right {
        /*justify-content: space-between;*/
        width: 100%;
        justify-content: end;
    }

    .nav-toggle {
        display: flex;
    }

    /* nav-links ko dropdown panel bana do */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #0b1120; /* apne nav bg ke hisaab se */
        border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 10px 30px rgba(0,0,0,.35);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

        .nav-links a {
            color: #fff;
        }

        .nav-links.open {
            max-height: 420px; /* itna kaafi hai 6 items ke liye */
        }

        .nav-links li {
            width: 100%;
        }

            .nav-links li a {
                display: block;
                padding: 14px 22px;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,.06);
            }

    /* nav ko relative karo taaki dropdown sahi position le */
    nav .nav-container {
        position: relative;
    }

    .nav-divider {
        display: none;
    }

    .os-inner-box{
        justify-content:space-between !important;
    }
    /* mobile pe divider hide */
}

@media (max-width: 900px) {
    .hero-inner, .pricing-grid, .testi-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        gap: 40px;
        padding: 32px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /*.nav-links {
        display: none;
    }*/

    .nav-divider {
        display: none;
    }

    .hero-right {
        padding-left: 0;
        justify-content: center;
    }

    .hero-visual {
        height: 420px;
        max-width: 480px;
    }

    .modal-content {
        max-width: 440px;
        flex-direction: column;
    }

    .modal-right {
        display: none;
    }

    .modal-left {
        padding: 40px 30px;
    }

    .modal-close {
        top: 16px;
        right: 16px;
    }
    .hero-right-carousel {
        min-height: 420px;
    }
        .hero .item div{
            text-align:center;
        }
        .hero .item img {
            max-width: 500px;
            margin: 0 auto;
        }
}

@media (max-width:728px) {
    body.active {
        margin-bottom: 102px;
    }
}

@media (max-width: 580px) {
    .hero-visual {
        height: 320px;
    }

    .nav-container {
        padding: 14px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section, .map-section, .features-section {
        padding: 70px 20px;
    }

    .cta-wrap {
        padding: 60px 24px;
    }

    .map-server-list {
        grid-template-columns: 1fr !important;
    }

    .map-container {
        padding: 12px;
    }

        .map-container::after {
            top: 12px;
            left: 12px;
            right: 12px;
        }

    #exposed-banner div + div {
        display: initial !important;
    }

    .dev-card {
        display: none;
    }

    .data-packet.enc {
        /* top: 28% !important;*/
        top: 51% !important;
        bottom: auto !important;
    }

    .data-packet.locked {
        bottom: auto !important;
        top: 53% !important;
    }

    .data-packet {
        top: 66% !important;
        margin: 0px 30px;
    }


    /*.hero {
        padding: 30px 20px 40px;
    }*/
    .hero {
        padding: 30px 20px 0px;
    }

        .hero .item img {
            max-width: 100%;
            margin: 0 auto;
        }

    .hero-right-carousel {
        min-height: 380px;
        display: flex;
        align-items: center;
    }

    .hero-inner {
        gap: 10px;
    }

    .protecting-sec {
        padding: 80px 20px !important;
    }

    .info-item {
        padding: 0px;
    }

    .contact-grid {
        padding: 32px 15px;
    }

    .os-inner-box {
        position: relative;
    }

        .os-inner-box::after {
            content: "";
            width: 100%;
            max-width: 306px;
            height: 250px;
            background-image: url(../images/liine.png);
            background-position: top center;
            background-repeat: no-repeat;
            background-size: cover;
            position: absolute;
            top: 0px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }
    .stat-runway-item {
        padding: 20px 0 !important;
    }

        /*.os-inner-box::before {
            content: "";
            width: 2px;
            height: 90%;
            background: #ffffff17;
            position: absolute;
            top: 0;
            left: 50%;
            margin: 0 auto;
        }*/
}



@media (max-width:540px) {
    body.active {
        margin-bottom: 128px;
    }

    .footer-grid {
        margin: 0px auto 30px;
    }

    .footer-bot {
        padding-top: 0px;
    }

    .cookie-bar .AVsizer {
        padding-top: 8px;
        padding-bottom: 5px;
        margin-bottom: 0px;
        border-radius: 0px 0 0 0px;
        /* font-size: 12px; */
    }

    .cookie-bar p {
        font-size: 12px;
        line-height: 20px;
    }
    .hero-btns>div{
        width:100%;
    }
    .logo {
        font-size: 18px;
        gap: 4px;
    }
    .logo img{
        height:45px !important;
    }
}

@media screen and (max-width:480px) {
   
    .hero-title {
        font-size: clamp(30px, 6vw, 72px);
        line-height: 1.4;
        letter-spacing: -1.5px;
    }

    .hero-eyebrow {
        font-size: 9px;
    }
    .cta-wrap .hero-btns div.col-5 {
        max-width: initial;
        width:100%;
    }
}

@media screen and (max-width:400px){
    .hero-btns div.col-5{
        width:100%;
    }
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 20px;
    background: #0b1120;
    color: #eaf2ff;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}

.cc-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.cc-link {
    color: #00c8ff;
    text-decoration: underline
}

.cc-btn {
    padding: 9px 22px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    background: linear-gradient(90deg,#00c8ff,#00ffcc);
    color: #04121a;
}

    .cc-btn:hover {
        filter: brightness(1.05)
    }

.downloadnow-inner ul li {
    width: calc(100% / 3 - 112px / 3);
    margin-left: 56px;
    border: 5px solid #0040d226;
    background: #f8fafc !important;
}
.downloadnow-inner ul li:nth-child(3n + 1) {
    margin-left: 0px;
}

/* ===== DARK WEB MONITOR SECTION ===== */
.dark-web-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.dw-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.dw-tag-wrap {
    padding: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
    border-radius: 4px;
}

.dw-heading {
    font-size: 54px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.dw-heading-gradient {
    background: linear-gradient(120deg, var(--nb), var(--np));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dw-sub {
    font-size: 17px;
    color: #475569;
    line-height: 26px;
    margin-bottom: 22px;
}

.dw-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dw-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #334155;
}

.dw-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

    .dw-icon.icon-red {
        background: #fff0f0;
        border: 1px solid #ffcdcd;
    }

    .dw-icon.icon-yellow {
        background: #fffbeb;
        border: 1px solid #fef08a;
    }

    .dw-icon.icon-cyan {
        background: #ecfeff;
        border: 1px solid #a5f3fc;
    }

.dw-visual-container {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dw-graphic {
    width: 100%;
    max-width: 450px;
    height: 350px;
    position: relative;
    perspective: 1000px;
}

.dw-terminal {
    position: absolute;
    inset: 20px;
    background: #0c0a10;
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 12px;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: -20px 20px 40px rgba(0,0,0,0.15), 0 0 30px rgba(0,200,255,0.1);
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.dw-term-header {
    height: 30px;
    background: rgba(0, 200, 255, 0.1);
    border-bottom: 1px solid rgba(0, 200, 255, 0.2);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 6px;
}

.dw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

    .dw-dot.red {
        background: #ff5f56;
    }

    .dw-dot.yellow {
        background: #ffbd2e;
    }

    .dw-dot.green {
        background: #28c840;
    }

.dw-term-title {
    margin-left: 10px;
    font-family: monospace;
    font-size: 10px;
    color: #00c8ff;
    letter-spacing: 1px;
}

.dw-term-body {
    flex: 1;
    padding: 15px;
    font-family: monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    overflow: hidden;
    position: relative;
    line-height: 1.6;
}

    .dw-term-body .code-flow {
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        animation: typeCode 1.5s ease-out forwards;
    }

.dw-scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(0,200,255,0.3));
    border-bottom: 1px solid rgba(0,200,255,0.8);
    animation: scanTerminal 4s linear infinite;
}

.dw-float-card {
    position: absolute;
    background: rgba(20, 15, 25, 0.95);
    border-radius: 8px;
    z-index: 3;
    display: flex;
    align-items: center;
    backdrop-filter: blur(4px);
}

    .dw-float-card.card-1 {
        bottom: 10px;
        right: 0;
        border: 1px solid #ff8656;
        padding: 12px;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 15px rgba(255,95,86,0.2);
        transform: translateZ(50px);
        animation: float1 6s ease-in-out infinite;
    }

    .dw-float-card.card-2 {
        top: 40px;
        left: -10px;
        border: 1px solid #00c8ff;
        padding: 10px;
        gap: 8px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        transform: translateZ(30px);
        animation: float2 5s ease-in-out infinite 1s;
    }

.dw-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

    .dw-card-icon.red {
        background: rgba(255,95,86,0.2);
        color: #ff5f56;
    }

    .dw-card-icon.cyan {
        font-size: 14px;
    }

.dw-card-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

    .dw-card-title.red {
        color: #94a3b8;
    }

    .dw-card-title.cyan {
        color: #00c8ff;
        font-family: monospace;
        font-size: 11px;
    }

.dw-card-value {
    font-size: 12px;
    color: #fff;
    font-family: monospace;
}

.dw-warning {
    color: #ff8656;
    font-weight: bold;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes scanTerminal {
    0% {
        top: -20px;
    }

    100% {
        top: 100%;
    }
}

@keyframes float1 {
    0%, 100% {
        transform: translateZ(50px) translateY(0);
    }

    50% {
        transform: translateZ(50px) translateY(-10px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateZ(30px) translateY(0);
    }

    50% {
        transform: translateZ(30px) translateY(-8px);
    }
}

@keyframes typeCode {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .dw-heading {
        font-size: 40px;
    }

    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* ---- NAYA: heavy blur/canvas animations mobile pe band karo (crash-fix) ---- */
    .orb {
        display: none !important;
    }

    #globe-canvas,
    #tunnel-canvas,
    #world-canvas, .globe-wrap {
        display: none !important;
    }
   

    .map-container::after {
        display: none !important;
    }

    .comp-visual svg animateMotion,
    .comp-visual svg animate {
        display: none;
    }

   /* .hero-right {
        display: none !important;
    }*/

    .hero-inner {
        grid-template-columns: 1fr !important;
    }

    .orb {
        display: none !important;
    }

    .hero-visual {
        position: relative;
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ---- Sirf shield + background glow rakho, baaki hata do ---- */
    .dev-card {
        display: none !important; /* Desktop/Laptop cards hata do */
    }

    /* ---- Background glow circle (jaisa screenshot mein shield ke peeche hai) ---- */
    .hero-visual::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,200,255,0.12) 0%, rgba(139,92,246,0.06) 60%, transparent 80%);
        z-index: 0;
    }

    /* ---- Faint outer ring (jaisa dashed/thin circle screenshot mein hai) ---- */
    .hero-visual::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 340px;
        height: 340px;
        border-radius: 50%;
        border: 1px solid rgba(0,200,255,0.12);
        z-index: 0;
    }

    /* ---- Shield center mein ---- */
    .shield-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 2;
    }

    /* ---- Orbit rings/scan-line hide karo (extra complexity) ---- */
    .orbit-sys,
    .scan-container {
        display: none !important;
    }

    /* ---- Sirf 4 data-packet badges rakho, positioned around shield ---- */
    .data-packet {
        position: absolute !important;
        z-index: 3;
    }

        /* AES-256 — left */
        .data-packet.enc:nth-of-type(1) {
            top: 40% !important;
            left: 2% !important;
            bottom: auto !important;
            right: auto !important;
        }

        /* IP Hidden — bottom-left */
        .data-packet.locked {
            top: auto !important;
            bottom: 8% !important;
            left: 8% !important;
            right: auto !important;
        }

        /* Military Grade Encryption — right */
        .data-packet:not(.enc):not(.locked) {
            top: 28% !important;
            right: 0 !important;
            bottom: auto !important;
            left: auto !important;
        }

        /* No Logs — bottom-right */
        .data-packet.enc:nth-of-type(2) {
            top: auto !important;
            bottom: 12% !important;
            right: 2% !important;
            left: auto !important;
        }


}

.hero-right-carousel {
    position: relative;
    /*overflow: hidden;*/
    width: 100%;
}

    .hero-right-carousel .item {
        display: none;
        width: 100%;
    }

        .hero-right-carousel .item.active {
            display: block;
            animation: fadeSlideIn 0.6s ease;
        }

@keyframes fadeSlideIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-right-carousel .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 8px;
    z-index: 20;
}

    .hero-right-carousel .carousel-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .hero-right-carousel .carousel-dots span.active {
            background: #00c8ff;
        }




        /*new css hero right sec*/

/* ============================================================
   HERO-VISUAL SECTION — extracted from style.css
   Includes: base rules, hover states, media queries, keyframes
   ============================================================ */

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    animation: fadeIn 1s ease .35s both;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 660px;
    height: 600px;
}

/* ---- Ambient background glow circles ---- */
.bg-glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--np) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--nc) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--nb) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

/* ---- App mockup (laptop/phone image) ---- */
.hero-app-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-app-mockup img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        /*border-radius: 12px;*/
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    }

/* ---- Scan line effect over the mockup ---- */
.scan-container {
    position: absolute;
    top: 65%;
    left: 65%;
    transform: translate(-50%, -52%);
    width: 180px;
    height: 220px;
    overflow: hidden;
    z-index: 5;
    border-radius: 4px;
    pointer-events: none;
    margin-top: -16%;
    margin-left: -16%;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, .8), rgba(0, 255, 204, .6), transparent);
    animation: scanMove 3s linear infinite;
}

/* ---- Orbit rings + dots ---- */
.orbit-sys {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
}

.oring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    transform: translate(-50%, -50%);
}

.o1 {
    width: 360px;
    height: 260px;
    border-color: rgba(0, 200, 255, .12);
    animation: spin 22s linear infinite;
    margin-top: -10px;
}

.o2 {
    width: 460px;
    height: 320px;
    border-color: rgba(139, 92, 246, .1);
    animation: spinR 30s linear infinite;
    margin-top: -10px;
}

.o3 {
    width: 560px;
    height: 380px;
    border-color: rgba(0, 255, 204, .07);
    animation: spin 40s linear infinite;
    margin-top: -10px;
}

.odot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

    .odot.b {
        background: var(--nb);
        box-shadow: 0 0 12px var(--nb), 0 0 24px rgba(0, 200, 255, .4);
    }

    .odot.p {
        background: var(--np);
        box-shadow: 0 0 12px var(--np), 0 0 24px rgba(139, 92, 246, .4);
    }

    .odot.c {
        background: var(--nc);
        box-shadow: 0 0 12px var(--nc), 0 0 24px rgba(0, 255, 204, .4);
    }

/* ---- Floating device cards (Desktop / Laptop / Global Servers / Countries) ---- */
.dev-card {
    position: absolute;
    z-index: 6;
    background: rgba(24, 24, 27, 0.92);
    border: 1px solid var(--dk-border);
    border-radius: 14px;
    backdrop-filter: blur(20px);
    padding: 14px 18px;
    min-width: 150px;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .dev-card:hover {
        border-color: var(--nb);
        transform: scale(1.04);
    }

.dc-top {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}

.dc-icon {
    font-size: 20px;
}

.dc-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.2px;
    color: var(--dk-t1);
}

.dc-sub {
    font-size: 11px;
    color: var(--dk-t2);
}

.dc-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
}

.status-g {
    color: var(--ng);
}

.status-b {
    color: var(--nb);
}

.sdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: pulseGraphic 2s infinite;
}

    .sdot.g {
        background: var(--ng);
    }

    .sdot.b {
        background: var(--nb);
    }

.dc-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 200, 255, 0.15);
    margin-top: 8px;
    overflow: hidden;
}

.dc-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--nb), var(--nc));
}

/* ---- Floating data-packet badges (AES-256 / IP Hidden / WireGuard / No Logs) ---- */
.data-packet {
    position: absolute;
    z-index: 7;
    background: rgba(24, 24, 27, 0.9);
    border: 1px solid var(--dk-border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--nb);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    letter-spacing: .3px;
}

    .data-packet.enc {
        color: var(--nc);
        border-color: rgba(0, 255, 204, .3);
    }

    .data-packet.locked {
        color: #a78bfa;
        border-color: rgba(139, 92, 246, .3);
    }

/* ---- Background tunnel canvas ---- */
#tunnel-canvas {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}


/* ============================================================
   MEDIA QUERIES
   ============================================================ */

@media (max-width: 900px) {
    .hero-right {
        padding-left: 0;
        justify-content: center;
    }

    .hero-visual {
        height: 420px;
        max-width: 480px;
    }

    .glow-1 {
        width: 250px;
        height: 250px;
    }

    .glow-2 {
        width: 300px;
        height: 300px;
    }

    .glow-3 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 580px) {
    .hero-visual {
        /*height: 320px;*/
        height: 400px;
    }

    .glow-1 {
        width: 180px;
        height: 180px;
        filter: blur(50px);
    }

    .glow-2 {
        width: 220px;
        height: 220px;
        filter: blur(50px);
    }

    .glow-3 {
        width: 140px;
        height: 140px;
        filter: blur(40px);
    }

    .scan-container {
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translate(-50%, 0);
        width: 170px;
        height: 340px;
        border-radius: 12px;
    }

    .hero-app-mockup {
        top: auto;
        bottom: -7px;
        transform: translate(-50%, 0);
    }

        .hero-app-mockup img {
            max-width: 250px;
            max-height: 380px;
        }
}


/* ============================================================
   KEYFRAMES used by this section
   ============================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 40px);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes scanMove {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: translateY(300px);
        opacity: 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinR {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes pulseGraphic {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: .45;
    }
}

/* NOTE: floatGraphic is defined TWICE in your original style.css
   (line 657 and line 915) — see the message below for details.
   Only the LAST one (the one actually active) is included here: */
@keyframes floatGraphic {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}