* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background:
                radial-gradient(circle at 20% 20%, rgba(0, 110, 255, .18), transparent 30%),
                radial-gradient(circle at 80% 80%, rgba(0, 204, 255, .12), transparent 30%),
                #030914;
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* =========================
           BACKGROUND EFFECT
        ========================== */

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(
                    120deg,
                    transparent 0%,
                    rgba(255,255,255,.025) 50%,
                    transparent 100%
                );
            z-index: -1;
        }

        /* =========================
           HEARTBEAT
        ========================== */

        @-webkit-keyframes heartbeat {
            0% {
                -webkit-transform: scale(1);
                transform: scale(1);
            }

            14% {
                -webkit-transform: scale(1.04);
                transform: scale(1.04);
            }

            28% {
                -webkit-transform: scale(1);
                transform: scale(1);
            }

            42% {
                -webkit-transform: scale(1.04);
                transform: scale(1.04);
            }

            70% {
                -webkit-transform: scale(1);
                transform: scale(1);
            }
        }

        @keyframes heartbeat {
            0% {
                transform: scale(1);
            }

            14% {
                transform: scale(1.04);
            }

            28% {
                transform: scale(1);
            }

            42% {
                transform: scale(1.04);
            }

            70% {
                transform: scale(1);
            }
        }

        .heartbeat {
            -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
            animation: heartbeat 1.5s ease-in-out infinite both;
        }

        /* =========================
           HEADER
        ========================== */

        header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(2, 8, 20, .86);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 183, 255, .18);
        }

        .nav-container {
            width: min(1180px, 94%);
            margin: auto;
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

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

        .logo img {
            width: 165px;
            max-height: 60px;
            object-fit: contain;
            filter:
                drop-shadow(0 0 8px rgba(0, 174, 255, .65))
                drop-shadow(0 0 20px rgba(0, 94, 255, .35));
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            padding: 11px 17px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            transition: .3s ease;
        }

        .nav-menu a:hover {
            background: rgba(0, 157, 255, .14);
            box-shadow: 0 0 20px rgba(0, 174, 255, .18);
            color: #54cfff;
        }

        /* =========================
           RUNNING TEXT
        ========================== */

        .ticker {
            width: 100%;
            overflow: hidden;
            background:
                linear-gradient(
                    90deg,
                    #04162d,
                    #062a4e,
                    #04162d
                );
            border-bottom: 1px solid rgba(0, 204, 255, .2);
            border-top: 1px solid rgba(0, 204, 255, .1);
        }

        .ticker-track {
            display: inline-flex;
            white-space: nowrap;
            padding: 11px 0;
            animation: marquee 20s linear infinite;
        }

        .ticker-item {
            margin-right: 70px;
            color: #dff7ff;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .6px;
        }

        .ticker-item span {
            color: #27cfff;
            text-shadow: 0 0 12px rgba(39, 207, 255, .8);
        }

        @keyframes marquee {
            from {
                transform: translateX(100%);
            }

            to {
                transform: translateX(-100%);
            }
        }

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

        .hero {
            width: min(1180px, 94%);
            margin: 30px auto 0;
        }

        .hero-card {
            position: relative;
            min-height: 420px;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(67, 202, 255, .25);
            background: #061020;
            box-shadow:
                0 25px 80px rgba(0, 0, 0, .5),
                0 0 50px rgba(0, 134, 255, .12);
        }

        .hero-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    90deg,
                    rgba(2, 8, 20, .9) 0%,
                    rgba(2, 8, 20, .55) 38%,
                    rgba(2, 8, 20, .1) 75%,
                    rgba(2, 8, 20, .2) 100%
                );
            pointer-events: none;
        }

        .hero-banner {
            width: 100%;
            height: 100%;
            min-height: 420px;
            object-fit: cover;
            display: block;
        }

        .hero-content {
            position: absolute;
            z-index: 2;
            left: 6%;
            top: 50%;
            transform: translateY(-50%);
            max-width: 560px;
        }

        .badge {
            display: inline-block;
            padding: 8px 15px;
            border: 1px solid rgba(50, 206, 255, .4);
            background: rgba(0, 129, 255, .12);
            border-radius: 30px;
            color: #58d9ff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
            margin-bottom: 18px;
            box-shadow: 0 0 22px rgba(0, 170, 255, .12);
        }

        .hero h1 {
            font-size: clamp(30px, 5vw, 60px);
            line-height: 1.05;
            margin-bottom: 18px;
            font-weight: 900;
            letter-spacing: -1.5px;
            text-shadow:
                0 0 10px rgba(55, 207, 255, .35),
                0 5px 25px rgba(0,0,0,.8);
        }

        .hero h1 span {
            color: #35ccff;
        }

        .hero p {
            color: #d5e6f2;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        /* =========================
           BUTTONS
        ========================== */

        .buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 125px;
            padding: 13px 21px;
            border-radius: 12px;
            text-decoration: none;
            color: #fff;
            font-weight: 800;
            font-size: 14px;
            transition: .3s ease;
            border: 1px solid rgba(255,255,255,.13);
            background: rgba(255,255,255,.06);
            backdrop-filter: blur(10px);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 174, 255, .2);
        }

        .btn-primary {
            background: linear-gradient(135deg, #008cff, #00c8ff);
            border: none;
            box-shadow: 0 8px 25px rgba(0, 153, 255, .25);
        }

        .btn-secondary {
            background: rgba(255,255,255,.07);
        }

        /* =========================
           CONTENT
        ========================== */

        .container {
            width: min(1180px, 94%);
            margin: 35px auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 24px;
        }

        .section-title h2 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .section-title p {
            color: #8295a8;
            font-size: 14px;
        }

        /* =========================
           CARDS
        ========================== */

        .cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .card {
            position: relative;
            padding: 25px;
            border-radius: 18px;
            background:
                linear-gradient(
                    145deg,
                    rgba(14, 34, 58, .85),
                    rgba(4, 14, 28, .92)
                );
            border: 1px solid rgba(87, 196, 255, .13);
            box-shadow: 0 15px 40px rgba(0,0,0,.22);
            overflow: hidden;
            transition: .35s ease;
        }

        .card:hover {
            transform: translateY(-6px);
            border-color: rgba(50, 199, 255, .38);
            box-shadow:
                0 20px 45px rgba(0,0,0,.3),
                0 0 25px rgba(0, 161, 255, .1);
        }

        .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 166, 255, .1);
            border: 1px solid rgba(0, 190, 255, .18);
            margin-bottom: 17px;
        }

        .card-icon img {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }

        .card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .card p {
            color: #91a7ba;
            line-height: 1.7;
            font-size: 14px;
        }

        /* =========================
           ARTICLE
        ========================== */

        .article {
            margin-top: 25px;
            padding: 30px;
            border-radius: 20px;
            background:
                linear-gradient(
                    145deg,
                    rgba(10, 27, 48, .88),
                    rgba(3, 12, 24, .95)
                );
            border: 1px solid rgba(74, 190, 255, .13);
        }

        .article h2 {
            margin-bottom: 15px;
            font-size: 24px;
        }

        .article p {
            color: #a9bac9;
            line-height: 1.9;
            font-size: 15px;
        }

        /* =========================
           CTA
        ========================== */

        .cta {
            margin-top: 25px;
            padding: 32px;
            border-radius: 22px;
            text-align: center;
            background:
                radial-gradient(
                    circle at center,
                    rgba(0, 154, 255, .18),
                    transparent 65%
                ),
                #061323;
            border: 1px solid rgba(57, 202, 255, .2);
        }

        .cta h2 {
            font-size: 27px;
            margin-bottom: 10px;
        }

        .cta p {
            color: #9eb2c4;
            margin-bottom: 20px;
        }

        /* =========================
           FOOTER
        ========================== */

        footer {
            margin-top: 45px;
            padding: 28px 5%;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,.07);
            background: rgba(0,0,0,.25);
        }

        footer img {
            width: 135px;
            max-height: 55px;
            object-fit: contain;
            margin-bottom: 12px;
        }

        footer p {
            color: #718496;
            font-size: 12px;
            line-height: 1.7;
        }

        /* =========================
           MOBILE
        ========================== */

        @media (max-width: 850px) {

            .nav-container {
                min-height: 68px;
            }

            .logo img {
                width: 135px;
            }

            .nav-menu {
                gap: 3px;
            }

            .nav-menu a {
                padding: 8px 9px;
                font-size: 11px;
            }

            .hero-card,
            .hero-banner {
                min-height: 480px;
            }

            .hero-content {
                left: 6%;
                right: 6%;
                max-width: none;
            }

            .hero-card::after {
                background:
                    linear-gradient(
                        180deg,
                        rgba(2,8,20,.25),
                        rgba(2,8,20,.9)
                    );
            }

            .cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 500px) {

            .nav-menu a {
                font-size: 10px;
                padding: 7px 6px;
            }

            .hero {
                margin-top: 18px;
            }

            .hero-card,
            .hero-banner {
                min-height: 510px;
            }

            .hero h1 {
                font-size: 34px;
            }

            .hero p {
                font-size: 14px;
            }

            .buttons {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }

            .btn {
                min-width: 0;
                padding: 12px 8px;
                font-size: 12px;
            }

            .article,
            .cta {
                padding: 23px;
            }
        }
