:root {
            --bg-primary: #050505;
            --bg-secondary: #0a0a0a;
            --bg-card: #111111;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --text-muted: #555555;
            --accent-orange: #ff8c42;
            --accent-red: #ff6b35;
            --accent-violet: #7c3aed;
            --gradient-warm: linear-gradient(135deg, #ff5e3a 0%, #ff8c42 50%, #ffb347 100%);
            --border-color: #1a1a1a;
            --font-display: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .logo {
            font-family: var(--font-display);
            font-weight: 700;
        }

        /* Cursor Glow */
        .cursor-glow {
            position: fixed;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 140, 60, 0.12) 0%, rgba(255, 100, 50, 0.05) 35%, transparent 70%);
            pointer-events: none;
            z-index: 1;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Grid Background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 0;
        }

        .grid-highlight {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 140, 60, 0.25) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 140, 60, 0.25) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 0;
            -webkit-mask-image: radial-gradient(circle 200px at var(--mx, -200px) var(--my, -200px), rgba(0,0,0,0.6) 0%, transparent 100%);
            mask-image: radial-gradient(circle 200px at var(--mx, -200px) var(--my, -200px), rgba(0,0,0,0.6) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glow-stage {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle at 50% 50%,
                rgba(255, 140, 60, 0.14) 0%,
                rgba(255, 110, 50, 0.08) 15%,
                rgba(200, 80, 40, 0.03) 30%,
                transparent 45%,
                rgba(0, 0, 0, 0.3) 70%,
                rgba(0, 0, 0, 0.7) 100%);
            pointer-events: none;
            z-index: 1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
        }

        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: var(--gradient-warm);
            border: none;
            border-radius: 6px;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .nav-cta:hover {
            opacity: 0.9;
        }

        /* Privacy Content */
        .privacy-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
        }

        .privacy-content h1 {
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
            background: var(--gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .privacy-updated {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 3rem;
        }

        .privacy-intro {
            color: var(--text-secondary);
            font-size: 1.05rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .privacy-content h2 {
            font-size: 1.3rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .privacy-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .privacy-content ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .privacy-content ul li {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            padding-left: 1.25rem;
            position: relative;
        }

        .privacy-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.7em;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-orange);
        }

        .privacy-content a {
            color: var(--accent-orange);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .privacy-content a:hover {
            opacity: 0.8;
        }

        .privacy-company {
            margin-top: 0.25rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            padding: 4rem 4rem 2rem;
            border-top: 1px solid var(--border-color);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .footer-logo {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 280px;
            transition: color 0.3s;
            cursor: default;
        }

        .footer-brand p:hover {
            color: var(--accent-orange);
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: rgba(255, 140, 60, 0.1);
            border-color: rgba(255, 140, 60, 0.3);
            color: var(--text-primary);
        }

        .footer-col .footer-heading {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.25rem;
            color: var(--text-primary);
        }

        .footer-col a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            padding: 0.3rem 0;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-bottom span {
            color: var(--text-muted);
            font-size: 0.82rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.82rem;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: var(--text-primary);
        }

        /* Responsive */
        @media (max-width: 968px) {
            nav {
                padding: 1rem 2rem;
            }

            .privacy-content {
                padding: 6rem 1.5rem 3rem;
            }

            .privacy-content h1 {
                font-size: 1.8rem;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-brand p {
                margin-left: auto;
                margin-right: auto;
            }

            .footer-socials {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }