:root {

            --primary: #635BFF;
            --primary-dark: #5048E5;
            --purple: #9852D8;
            --orange: #FF8A3D;
            --green: #16A765;

            --dark: #17172D;
            --text: #666879;
            --muted: #9496A5;

            --background: #F7F8FC;
            --white: #FFFFFF;

            --border: #E7E8EF;

        }


        * {
            box-sizing: border-box;
        }


        html {
            scroll-behavior: smooth;
        }


        body {

            margin: 0;

            font-family: Inter, sans-serif;

            color: var(--text);

            background: var(--background);

        }


        /* =====================================================
           NAVBAR
        ===================================================== */

        .navbar {

            height: 70px;

            position: fixed;

            top: 0;
            left: 0;
            right: 0;

            z-index: 1000;

            background:
                rgba(255,255,255,.94);

            backdrop-filter:
                blur(18px);

            border-bottom:
                1px solid rgba(231,232,239,.9);

        }


        .nav-container {

            width: 100%;

            max-width: 1180px;

            height: 100%;

            margin: auto;

            padding: 0 20px;

            display: flex;

            align-items: center;

            justify-content: space-between;

        }


        .brand {

            display: flex;

            align-items: center;

            gap: 10px;

            color: var(--dark);

            text-decoration: none;

            font-size: 23px;

            font-weight: 900;

        }


        .brand-icon {

            width: 38px;

            height: 38px;

            display: flex;

            align-items: center;

            justify-content: center;

            color: white;

            background:
                linear-gradient(
                    135deg,
                    var(--primary),
                    var(--purple)
                );

            border-radius: 11px;

            box-shadow:
                0 8px 20px
                rgba(99,91,255,.22);

        }


        .nav-actions {

            display: flex;

            align-items: center;

            gap: 8px;

        }


        .nav-link-custom {

            min-height: 37px;

            padding: 0 13px;

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 6px;

            color: #676978;

            border-radius: 9px;

            text-decoration: none;

            font-size: 14px;

            font-weight: 800;

            transition: .2s;

        }


        .nav-link-custom:hover {

            color: var(--primary);

            background: #F2F1FF;

        }


        .login-btn {

            color: white;

            background:
                linear-gradient(
                    135deg,
                    var(--primary),
                    var(--purple)
                );

            box-shadow:
                0 7px 17px
                rgba(99,91,255,.18);

        }


        .login-btn:hover {

            color: white;

            transform:
                translateY(-1px);

        }


        /* =====================================================
           HERO
        ===================================================== */

        .hero {

            margin-top: 70px;

            padding:
                65px 20px 75px;

            text-align: center;

            color: white;

            background:
                radial-gradient(
                    circle at 20% 20%,
                    rgba(255,255,255,.14),
                    transparent 25%
                ),
                radial-gradient(
                    circle at 80% 80%,
                    rgba(255,255,255,.10),
                    transparent 30%
                ),
                linear-gradient(
                    135deg,
                    #5B55E9,
                    #9852D8
                );

        }


        .hero-icon {

            width: 66px;

            height: 66px;

            margin:
                0 auto 20px;

            display: flex;

            align-items: center;

            justify-content: center;

            color: white;

            background:
                rgba(255,255,255,.14);

            border:
                1px solid
                rgba(255,255,255,.18);

            border-radius: 18px;

            font-size: 27px;

        }


        .hero h1 {

            margin: 0 0 12px;

            color: white;

            font-size: 37px;

            font-weight: 900;

            letter-spacing: -1.2px;

        }


        .hero p {

            max-width: 570px;

            margin:
                0 auto;

            color:
                rgba(255,255,255,.75);

            font-size: 16px;

            line-height: 1.8;

        }


        .updated {

            margin-top: 20px;

            display: inline-flex;

            align-items: center;

            gap: 7px;

            padding:
                8px 13px;

            color:
                rgba(255,255,255,.8);

            background:
                rgba(255,255,255,.10);

            border:
                1px solid
                rgba(255,255,255,.12);

            border-radius: 50px;

            font-size: 14px;

            font-weight: 700;

        }


        /* =====================================================
           CONTENT
        ===================================================== */

        .content-wrapper {

            width: 100%;

            max-width: 1100px;

            margin:
                -30px auto 0;

            padding:
                0 20px 60px;

            position: relative;

            z-index: 2;

        }


        .privacy-layout {

            display: grid;

            grid-template-columns:
                230px 1fr;

            gap: 25px;

            align-items: start;

        }


        /* =====================================================
           SIDE NAVIGATION
        ===================================================== */

        .side-nav {

            position: sticky;

            top: 90px;

            padding: 18px;

            background: white;

            border:
                1px solid var(--border);

            border-radius: 16px;

            box-shadow:
                0 12px 35px
                rgba(30,30,70,.06);

        }


        .side-title {

            margin:
                0 0 12px;

            color: var(--dark);

            font-size: 16px;

            font-weight: 900;

            text-transform: uppercase;

            letter-spacing: .5px;

        }


        .side-link {

            display: flex;

            align-items: center;

            gap: 8px;

            margin-bottom: 3px;

            padding:
                9px 8px;

            color: #747686;

            border-radius: 8px;

            text-decoration: none;

            font-size: 14px;

            font-weight: 700;

            transition: .2s;

        }


        .side-link:hover {

            color: var(--primary);

            background: #F4F3FF;

        }


        .side-link i {

            font-size: 14px;

        }


        /* =====================================================
           PRIVACY CARD
        ===================================================== */

        .privacy-card {

            padding:
                35px;

            background: white;

            border:
                1px solid var(--border);

            border-radius: 20px;

            box-shadow:
                0 12px 40px
                rgba(30,30,70,.05);

        }


        .privacy-section {

            padding-bottom: 27px;

            margin-bottom: 27px;

            border-bottom:
                1px solid #F0F0F4;

        }


        .privacy-section:last-child {

            margin-bottom: 0;

            padding-bottom: 0;

            border-bottom: none;

        }


        .privacy-section h2 {

            margin:
                0 0 12px;

            display: flex;

            align-items: center;

            gap: 9px;

            color: var(--dark);

            font-size: 16px;

            font-weight: 900;

        }


        .section-number {

            width: 29px;

            height: 29px;

            flex-shrink: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            color: white;

            background:
                linear-gradient(
                    135deg,
                    var(--primary),
                    var(--purple)
                );

            border-radius: 8px;

            font-size: 14px;

            font-weight: 900;

        }


        .privacy-section p {

            margin:
                0 0 11px;

            color: var(--text);

            font-size: 16px;

            line-height: 1.9;

        }


        .privacy-section p:last-child {

            margin-bottom: 0;

        }


        .privacy-section ul {

            margin:
                10px 0 0;

            padding-left: 20px;

        }


        .privacy-section li {

            margin-bottom: 7px;

            color: var(--text);

            font-size: 16px;

            line-height: 1.7;

        }


        .privacy-section li::marker {

            color: var(--primary);

        }


        .highlight {

            margin-top: 14px;

            padding:
                14px 16px;

            color: #505160;

            background:
                linear-gradient(
                    135deg,
                    #F5F4FF,
                    #FAF6FF
                );

            border-left:
                3px solid var(--primary);

            border-radius: 8px;

            font-size: 10px;

            line-height: 1.8;

        }


        .contact-box {

            margin-top: 15px;

            padding:
                17px;

            display: flex;

            align-items: center;

            gap: 13px;

            background: #F8F8FB;

            border:
                1px solid var(--border);

            border-radius: 12px;

        }


        .contact-icon {

            width: 38px;

            height: 38px;

            flex-shrink: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            color: var(--primary);

            background: #ECEBFF;

            border-radius: 10px;

        }


        .contact-box strong {

            display: block;

            margin-bottom: 3px;

            color: var(--dark);

            font-size: 10px;

        }


        .contact-box a {

            color: var(--primary);

            font-size: 12px;

            font-weight: 700;

            text-decoration: none;

        }


        /* =====================================================
           FOOTER
        ===================================================== */

        footer {

            padding:
                40px 20px;

            background: #17172D;

            color: rgba(255,255,255,.6);

        }


        .footer-container {

            max-width: 1100px;

            margin: auto;

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 20px;

        }


        .footer-brand {

            display: flex;

            align-items: center;

            gap: 8px;

            color: white;

            font-size: 9px;

            font-weight: 900;

        }


        .footer-brand-icon {

            width: 29px;

            height: 29px;

            display: flex;

            align-items: center;

            justify-content: center;

            background:
                linear-gradient(
                    135deg,
                    var(--primary),
                    var(--purple)
                );

            border-radius: 8px;

        }


        .footer-links {

            display: flex;

            gap: 15px;

            flex-wrap: wrap;

        }


        .footer-links a {

            color: rgba(255,255,255,.55);

            font-size: 7px;

            text-decoration: none;

        }


        .footer-links a:hover {

            color: white;

        }


        .copyright {

            margin: 20px 0 0;

            padding-top: 20px;

            border-top:
                1px solid
                rgba(255,255,255,.08);

            text-align: center;

            font-size: 7px;

        }


        /* =====================================================
           MOBILE
        ===================================================== */

        @media(max-width: 768px) {

            .navbar {

                height: 62px;

            }


            .nav-container {

                padding:
                    0 14px;

            }


            .brand {

                font-size: 12px;

            }


            .brand-icon {

                width: 34px;

                height: 34px;

            }


            .nav-link-custom {

                min-height: 34px;

                padding:
                    0 9px;

                font-size: 7px;

            }


            .nav-link-custom span {

                display: none;

            }


            .hero {

                margin-top: 62px;

                padding:
                    45px 18px 55px;

            }


            .hero h1 {

                font-size: 29px;

            }


            .hero p {

                font-size: 8px;

            }


            .content-wrapper {

                margin-top: -20px;

                padding:
                    0 12px 40px;

            }


            .privacy-layout {

                display: block;

            }


            .side-nav {

                position: relative;

                top: auto;

                margin-bottom: 14px;

                padding: 12px;

                display: flex;

                gap: 4px;

                overflow-x: auto;

                white-space: nowrap;

                scrollbar-width: none;

            }


            .side-nav::-webkit-scrollbar {

                display: none;

            }


            .side-title {

                display: none;

            }


            .side-link {

                flex-shrink: 0;

                margin: 0;

                padding:
                    8px 10px;

                font-size: 7px;

            }


            .privacy-card {

                padding:
                    22px 17px;

                border-radius: 17px;

            }


            .privacy-section {

                padding-bottom: 22px;

                margin-bottom: 22px;

            }


            .privacy-section h2 {

                font-size: 14px;

            }


            .privacy-section p,
            .privacy-section li,
            .highlight {

                font-size: 8px;

            }


            .footer-container {

                flex-direction: column;

                text-align: center;

            }

        }


        @media(max-width: 390px) {

            .hero h1 {

                font-size: 26px;

            }


            .privacy-card {

                padding:
                    19px 14px;

            }

        }