/* ==========================================================
   ROBOWALL V2
   HERO + NAVBAR
========================================================== */

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(2, 6, 13, 0.72);

    border-bottom:
        1px solid rgba(74, 183, 255, 0.08);

    backdrop-filter: blur(20px);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.site-header.scrolled {
    background: rgba(2, 7, 15, 0.92);

    border-color:
        rgba(74, 183, 255, 0.18);

    box-shadow:
        0 14px 45px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(0, 128, 255, 0.06);
}


/* NAVBAR */

.navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}


/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ffffff 0 26%,
            #168cff 27% 68%,
            #06111e 69%
        );

    clip-path:
        polygon(
            0 0,
            100% 0,
            72% 48%,
            100% 100%,
            58% 100%,
            36% 65%,
            36% 100%,
            0 100%
        );

    font-size: 29px;
    font-weight: 900;
    font-style: italic;

    filter:
        drop-shadow(
            0 0 12px
            rgba(28, 166, 255, 0.45)
        );
}

.brand-copy strong {
    display: block;

    color: white;

    font-size: 17px;
    font-weight: 900;

    letter-spacing: 4px;
}

.brand-copy small {
    display: block;

    margin-top: 2px;

    color: #74879f;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2.3px;
}


/* NAV LINKS */

.navbar-links {
    display: flex;
    align-items: center;

    gap: 28px;
}

.navbar-links a {
    position: relative;

    padding: 31px 0;

    color: #c6d3e1;

    font-size: 13px;
    font-weight: 700;

    transition: color 0.25s ease;
}

.navbar-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #168cff,
            #42d3ff
        );

    box-shadow:
        0 0 12px
        rgba(43, 197, 255, 0.72);

    transition: width 0.25s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: white;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 34px;
}


/* NAV OFFER BUTTON */

.navbar-offer-button {
    min-height: 47px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    color: white;

    background:
        rgba(4, 14, 27, 0.65);

    border:
        1px solid rgba(22, 140, 255, 0.75);

    border-radius: 13px;

    box-shadow:
        inset 0 0 18px
        rgba(0, 135, 255, 0.05),
        0 0 24px
        rgba(0, 135, 255, 0.08);

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.navbar-offer-button:hover {
    transform: translateY(-3px);

    background:
        rgba(8, 86, 171, 0.22);

    box-shadow:
        0 0 28px
        rgba(0, 153, 255, 0.24);
}


/* MOBILE MENU BUTTON */

.mobile-menu-button {
    width: 46px;
    height: 46px;

    display: none;
    place-items: center;

    color: white;
    background: transparent;

    border:
        1px solid rgba(62, 164, 255, 0.22);

    border-radius: 12px;

    cursor: pointer;
}

.mobile-menu-button span {
    width: 21px;
    height: 2px;

    display: block;

    background: white;

    border-radius: 20px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button span + span {
    margin-top: 5px;
}

.mobile-menu-button.open span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.open span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* HERO */

.hero-section {
    position: relative;

    min-height: 100vh;

    padding:
        150px 0
        72px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 76% 36%,
            rgba(0, 159, 255, 0.22),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 62%,
            rgba(0, 92, 255, 0.17),
            transparent 33%
        ),
        radial-gradient(
            ellipse at 50% 106%,
            rgba(0, 163, 255, 0.24),
            transparent 54%
        ),
        linear-gradient(
            135deg,
            #01040a 0%,
            #03101f 48%,
            #010610 100%
        );
}


/* GRID BACKGROUND */

.hero-grid-background {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(53, 177, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(53, 177, 255, 0.022) 1px,
            transparent 1px
        );

    background-size:
        68px 68px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0, 0, 0, 0.8) 68%,
            transparent 100%
        );
}


/* HERO GLOWS */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(72px);

    pointer-events: none;

    mix-blend-mode: screen;

    animation:
        heroGlowMove
        8s ease-in-out
        infinite alternate;
}

.hero-glow-left {
    left: -120px;
    top: 250px;

    width: 430px;
    height: 430px;

    background:
        radial-gradient(
            circle,
            rgba(0, 160, 255, 0.30),
            rgba(0, 83, 255, 0.13) 46%,
            transparent 72%
        );
}

.hero-glow-right {
    right: -120px;
    top: 100px;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            circle,
            rgba(0, 219, 255, 0.24),
            rgba(0, 106, 255, 0.14) 44%,
            transparent 74%
        );

    animation-delay: -4s;
}

@keyframes heroGlowMove {
    from {
        transform:
            translateY(0)
            scale(1);
    }

    to {
        transform:
            translateY(46px)
            scale(1.1);
    }
}


/* NEON WAVES */

.neon-wave {
    position: absolute;
    z-index: 1;

    bottom: -55px;

    width: 690px;
    height: 315px;

    border:
        4px solid
        rgba(0, 194, 255, 0.84);

    border-radius: 50%;

    box-shadow:
        0 0 16px #28d5ff,
        0 0 48px
        rgba(40, 213, 255, 0.86),
        0 0 95px
        rgba(0, 140, 255, 0.55),
        0 0 170px
        rgba(0, 84, 255, 0.28);

    pointer-events: none;

    animation:
        neonWaveMove
        6.5s ease-in-out
        infinite alternate;
}

.neon-wave::before,
.neon-wave::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.neon-wave::before {
    inset: 38px;

    border:
        2px solid
        rgba(77, 220, 255, 0.60);

    box-shadow:
        0 0 18px
        rgba(0, 194, 255, 0.70),
        0 0 52px
        rgba(0, 123, 255, 0.34);
}

.neon-wave::after {
    inset: 82px;

    border:
        1px solid
        rgba(89, 226, 255, 0.46);

    box-shadow:
        0 0 15px
        rgba(43, 203, 255, 0.74);
}

.neon-wave-left {
    left: -340px;

    transform: rotate(-13deg);

    border-top-color: transparent;
    border-right-color: transparent;
}

.neon-wave-right {
    right: -340px;

    transform: rotate(13deg);

    border-top-color: transparent;
    border-left-color: transparent;

    animation-delay: -3s;
}

@keyframes neonWaveMove {
    from {
        translate: 0 0;
        scale: 0.98;
        opacity: 0.78;
    }

    to {
        translate: 0 -40px;
        scale: 1.04;
        opacity: 1;
    }
}


/* HERO CONTAINER */

.hero-container {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items: center;

    gap: 72px;
}


/* HERO LABEL */

.hero-label {
    width: fit-content;

    margin-bottom: 24px;

    padding: 9px 14px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #9bddff;

    background:
        rgba(8, 89, 181, 0.12);

    border:
        1px solid
        rgba(40, 165, 255, 0.32);

    border-radius: 999px;

    backdrop-filter: blur(12px);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero-label-dot {
    width: 7px;
    height: 7px;

    background: #2bc5ff;

    border-radius: 50%;

    box-shadow:
        0 0 9px #2bc5ff,
        0 0 18px
        rgba(43, 197, 255, 0.70);

    animation:
        heroLabelPulse
        1.8s infinite;
}

@keyframes heroLabelPulse {
    50% {
        opacity: 0.40;
        transform: scale(0.72);
    }
}


/* HERO TITLE */

.hero-title {
    max-width: 720px;

    margin: 0;

    color: white;

    font-size:
        clamp(
            50px,
            5.3vw,
            78px
        );

    line-height: 0.98;

    letter-spacing: -4px;
}

.hero-title span {
    display: block;

    margin-top: 10px;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #039cff 0%,
            #3ce2ff 42%,
            #1795ff 72%,
            #0b6dff 100%
        );

    background-size: 190% 100%;

    background-clip: text;
    -webkit-background-clip: text;

    animation:
        heroTitleGlow
        3s ease-in-out infinite,
        heroTextFlow
        6s linear infinite;
}

@keyframes heroTitleGlow {
    0%,
    100% {
        filter:
            drop-shadow(
                0 0 10px
                rgba(0, 167, 255, 0.66)
            )
            drop-shadow(
                0 0 20px
                rgba(0, 111, 255, 0.28)
            );
    }

    50% {
        filter:
            drop-shadow(
                0 0 21px
                rgba(72, 225, 255, 0.98)
            )
            drop-shadow(
                0 0 43px
                rgba(0, 176, 255, 0.78)
            )
            drop-shadow(
                0 0 72px
                rgba(0, 93, 255, 0.46)
            );
    }
}

@keyframes heroTextFlow {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 190% 50%;
    }
}


/* HERO DESCRIPTION */

.hero-description {
    max-width: 610px;

    margin:
        28px 0
        34px;

    color: #aab9cb;

    font-size: 16px;
    line-height: 1.78;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.primary-button,
.secondary-button,
.outline-button {
    min-height: 55px;

    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    border-radius: 14px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.primary-button {
    color: white;

    background:
        linear-gradient(
            115deg,
            #065de8,
            #079dff,
            #2bd6ff,
            #0877ff
        );

    background-size:
        260% 260%;

    border:
        1px solid
        rgba(109, 213, 255, 0.50);

    box-shadow:
        0 12px 34px
        rgba(0, 111, 255, 0.32),
        0 0 34px
        rgba(21, 151, 255, 0.22);

    animation:
        heroButtonGlow
        3.5s ease-in-out infinite;
}

.secondary-button,
.outline-button {
    color: #e7f4ff;

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid
        rgba(116, 159, 201, 0.28);

    backdrop-filter: blur(14px);
}

.primary-button:hover,
.secondary-button:hover,
.outline-button:hover {
    transform: translateY(-4px);
}

.secondary-button:hover,
.outline-button:hover {
    border-color:
        rgba(39, 173, 255, 0.68);

    box-shadow:
        0 0 28px
        rgba(0, 143, 255, 0.13);
}

@keyframes heroButtonGlow {
    0%,
    100% {
        background-position: 0% 50%;

        box-shadow:
            0 12px 34px
            rgba(0, 111, 255, 0.32),
            0 0 34px
            rgba(21, 151, 255, 0.22);
    }

    50% {
        background-position: 100% 50%;

        box-shadow:
            0 18px 46px
            rgba(0, 128, 255, 0.46),
            0 0 58px
            rgba(50, 213, 255, 0.44);
    }
}


/* HERO VISUAL */

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: "";

    position: absolute;
    z-index: -1;

    inset:
        7% -6%
        2% 6%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 170, 255, 0.28),
            transparent 68%
        );

    filter: blur(36px);

    pointer-events: none;
}

.hero-image-frame {
    position: relative;

    height: 560px;

    overflow: hidden;

    background: #040914;

    border:
        1px solid
        rgba(76, 210, 255, 0.88);

    border-radius: 28px;

    box-shadow:
        0 0 18px
        rgba(43, 210, 255, 0.78),
        0 0 48px
        rgba(0, 168, 255, 0.57),
        0 0 110px
        rgba(0, 105, 255, 0.34),
        0 42px 130px
        rgba(0, 0, 0, 0.80);

    transform:
        perspective(1200px)
        rotateY(-3deg)
        rotateX(1deg);

    transition:
        transform 0.55s ease,
        box-shadow 0.55s ease;

    animation:
        heroFrameGlow
        3.6s ease-in-out infinite;
}

.hero-image-frame:hover {
    transform:
        perspective(1200px)
        rotateY(0)
        rotateX(0)
        translateY(-7px);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 1.1s ease,
        filter 1.1s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.045);
    filter: brightness(1.06);
}

.hero-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 96, 255, 0.12),
            transparent 36%,
            rgba(0, 174, 255, 0.10)
        ),
        linear-gradient(
            0deg,
            rgba(0, 4, 14, 0.64),
            transparent 58%
        );

    pointer-events: none;
}

.hero-image-light {
    position: absolute;

    top: -70%;
    left: -90%;

    width: 45%;
    height: 240%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(88, 218, 255, 0.17),
            transparent
        );

    transform: rotate(18deg);

    pointer-events: none;

    animation:
        heroImageSweep
        6s ease-in-out infinite;
}

@keyframes heroImageSweep {
    0%,
    36% {
        left: -90%;
    }

    72%,
    100% {
        left: 145%;
    }
}

@keyframes heroFrameGlow {
    0%,
    100% {
        box-shadow:
            0 0 18px
            rgba(43, 210, 255, 0.66),
            0 0 48px
            rgba(0, 168, 255, 0.47),
            0 0 105px
            rgba(0, 105, 255, 0.27),
            0 42px 130px
            rgba(0, 0, 0, 0.80);
    }

    50% {
        box-shadow:
            0 0 30px
            rgba(78, 225, 255, 0.96),
            0 0 72px
            rgba(0, 190, 255, 0.70),
            0 0 145px
            rgba(0, 119, 255, 0.44),
            0 45px 140px
            rgba(0, 0, 0, 0.84);
    }
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;
    z-index: 5;

    min-width: 225px;

    padding: 13px 16px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: white;

    background:
        rgba(5, 13, 25, 0.82);

    border:
        1px solid
        rgba(61, 171, 255, 0.35);

    border-radius: 15px;

    backdrop-filter: blur(15px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.42),
        0 0 24px
        rgba(0, 122, 255, 0.12);
}

.floating-card-top {
    top: 25px;
    right: 25px;

    animation:
        floatingCard
        4s ease-in-out infinite;
}

.floating-card-bottom {
    left: 25px;
    bottom: 25px;

    animation:
        floatingCard
        4.6s ease-in-out infinite reverse;
}

@keyframes floatingCard {
    50% {
        transform: translateY(-8px);
    }
}

.floating-card-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    color: #dff5ff;

    background:
        linear-gradient(
            135deg,
            rgba(0, 100, 255, 0.45),
            rgba(24, 185, 255, 0.25)
        );

    border:
        1px solid
        rgba(60, 190, 255, 0.50);

    border-radius: 12px;

    box-shadow:
        0 0 18px
        rgba(21, 151, 255, 0.25);

    font-size: 12px;
    font-weight: 900;
}

.floating-status {
    width: 12px;
    height: 12px;

    flex-shrink: 0;

    background: #23cfff;

    border-radius: 50%;

    box-shadow:
        0 0 10px #23cfff,
        0 0 20px
        rgba(35, 207, 255, 0.62);
}

.floating-card strong {
    display: block;

    font-size: 11px;
}

.floating-card small {
    display: block;

    margin-top: 3px;

    color: #91a4b8;

    font-size: 8px;
}


/* HERO STATS */

.hero-stats {
    position: relative;
    z-index: 6;

    margin-top: 40px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background:
        linear-gradient(
            135deg,
            rgba(5, 19, 39, 0.92),
            rgba(3, 11, 24, 0.94)
        );

    border:
        1px solid
        rgba(58, 193, 255, 0.58);

    border-radius: 15px;

    box-shadow:
        0 0 20px
        rgba(0, 170, 255, 0.22),
        0 0 54px
        rgba(0, 100, 255, 0.14);

    backdrop-filter: blur(15px);
}

.hero-stat {
    min-height: 98px;

    padding: 20px 27px;

    display: flex;
    align-items: center;

    gap: 17px;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.hero-stat:last-child {
    border-right: 0;
}

.stat-icon {
    color: #2bc5ff;

    font-size: 30px;
}

.hero-stat strong {
    display: block;

    color: #2bc5ff;

    font-size: 26px;

    text-shadow:
        0 0 18px
        rgba(43, 197, 255, 0.34);
}

.hero-stat small {
    display: block;

    margin-top: 3px;

    color: #a5b1bf;

    font-size: 11px;
}


/* SCROLL INDICATOR */

.scroll-indicator {
    position: relative;
    z-index: 6;

    width: fit-content;

    margin:
        26px auto 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    color: #7f8da0;

    font-size: 9px;

    letter-spacing: 2px;
}

.scroll-arrow {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: white;

    border:
        1px solid
        rgba(22, 140, 255, 0.85);

    border-radius: 50%;

    box-shadow:
        0 0 20px
        rgba(0, 147, 255, 0.45);

    animation:
        scrollBounce
        1.8s infinite;
}

@keyframes scrollBounce {
    50% {
        transform: translateY(7px);
    }
}
/* ==========================================================
   HERO MOTTO
========================================================== */

.hero-motto {
    width: fit-content;

    margin:
        -14px 0
        30px;

    display: flex;
    align-items: center;

    gap: 14px;
}

.hero-motto-line {
    width: 42px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #168cff,
            #4ae2ff
        );

    box-shadow:
        0 0 12px
        rgba(52, 205, 255, 0.72);

    animation:
        mottoLineGlow
        2.4s ease-in-out infinite;
}

.hero-motto strong,
.hero-motto small {
    display: block;
}

.hero-motto strong {
    color: #dff7ff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero-motto small {
    margin-top: 4px;

    color: #6f8ba8;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;
}

@keyframes mottoLineGlow {
    0%,
    100% {
        opacity: 0.45;

        transform:
            scaleX(0.72);
    }

    50% {
        opacity: 1;

        transform:
            scaleX(1);
    }
}
@media (max-width: 1000px) {

    .hero-motto {
        margin-right: auto;
        margin-left: auto;

        justify-content: center;

        text-align: left;
    }

}

@media (max-width: 700px) {

    .hero-motto {
        margin-bottom: 25px;
    }

    .hero-motto-line {
        width: 28px;
    }

    .hero-motto strong {
        font-size: 11px;
    }

    .hero-motto small {
        font-size: 8px;
    }

}
/* ==========================================================
   HERO MOUSE GLOW
========================================================== */

.hero-mouse-glow {
    position: absolute;
    z-index: 2;

    top: 0;
    left: 0;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(40, 197, 255, 0.18) 0%,
            rgba(0, 126, 255, 0.10) 34%,
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;

    opacity: 0;

    transform:
        translate(-50%, -50%);

    transition:
        opacity 0.35s ease;

    mix-blend-mode: screen;
}

.hero-section:hover
.hero-mouse-glow {
    opacity: 1;
}