   HEADER / NAV
   ============================================================ */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
   
   position: relative;
z-index: 10002;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
    transition: 0.3s;
}
.logo-icon:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
}

.logo-text {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.5px;
}
.logo-text .omnora {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text .labs {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    padding: 6px 4px;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transition: 0.3s;
}
.nav a:hover {
    color: #fff;
}
.nav a:hover::after {
    width: 100%;
}
.nav .active {
    color: #fff;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
    padding: 8px 22px;
    border-radius: 40px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}
.nav .active::after {
    display: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

#hero {
    margin-bottom: 48px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        145deg,
        #132440 0%,
        #182C4F 45%,
        #20365E 100%
    );

    border: 1px solid rgba(96,165,250,.12);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-stats{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.stat{
    display: flex;
    flex-direction: column;
}

.stat strong{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.stat span{
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.hero-visual {
    flex: 1;
    position: relative;
    min-height:700px;
overflow:visible;
}
.hero-title {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 18px 0;
    color: #ffffff;
    animation: fadeUp 0.8s ease forwards;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa, #7c3aed, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.72);
    margin-bottom: 30px;
    animation: fadeUp 1s ease forwards;
}

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

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

/* ============================================================
   HERO BADGE
   ============================================================ */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
    margin-bottom: 24px;

    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 999px;

    color: #93c5fd;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;

    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #60a5fa;
    font-size: 15px;
}

.hero-badge span {
    white-space: nowrap;
}

.visual-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(37, 99, 235, 0.25),
        transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.visual-content{
    position:relative;
    z-index:2;

    width:100%;
    height:100%;
}

.visual-background::before,
.visual-background::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.visual-background::before {
    width: 220px;
    height: 220px;
    background: rgba(37, 99, 235, 0.28);
    top: 40px;
    left: 40px;
    animation: orbOne 10s ease-in-out infinite;
}

.visual-background::after {
    width: 170px;
    height: 170px;
    background: rgba(124, 58, 237, 0.24);
    bottom: 40px;
    right: 20px;
    animation: orbTwo 8s ease-in-out infinite;
}

@keyframes orbOne {
    0%,100% {
        transform: translate(0,0);
    }
    50% {
        transform: translate(30px,-25px);
    }
}

@keyframes orbTwo {
    0%,100% {
        transform: translate(0,0);
    }
    50% {
        transform: translate(-25px,20px);
    }
}

.hero-visual{
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;
    height:520px;
    overflow:visible;
}

}

/* ==========================================
   MOBILE HERO LAYOUT
========================================== */
@media (max-width: 768px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .hero-visual {
        width: 100%;
        min-height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
   .visual-content {
    height: auto;
   }

  }
