        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
            color: #f4f4f5;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* View System */
        .view {
            display: none;
            min-height: 100vh;
        }

        .view.active {
            display: block;
        }

        /* Background Orbs */
        .landing-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
            top: -200px;
            left: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
            top: 40%;
            right: -150px;
            animation: float 25s ease-in-out infinite reverse;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 200, 255, 0.25) 0%, transparent 70%);
            bottom: -100px;
            left: 30%;
            animation: float 18s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(30px, -30px) scale(1.05);
            }

            50% {
                transform: translate(-20px, 20px) scale(0.95);
            }

            75% {
                transform: translate(20px, 30px) scale(1.02);
            }
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 3rem;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            cursor: pointer;
        }

        .nav-brand img {
            width: 36px;
            height: 36px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
            cursor: pointer;
            background: none;
            border: none;
        }

        .nav-link:hover {
            color: white;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        /* Sections */
        .section {
            position: relative;
            z-index: 1;
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #a1a1aa;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 6rem;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
        }

        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            display: block;
            animation: logoFloat 4s ease-in-out infinite;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(99, 102, 241, 0.15);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 9999px;
            color: #6366f1;
            font-size: 0.85rem;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: white;
        }

        .gradient-text {
            background: linear-gradient(135deg, #00c8ff 0%, #6366f1 50%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #a1a1aa;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: white;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #52525b;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .stat-divider {
            width: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            background: rgba(16, 16, 24, 0.4);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(99, 102, 241, 0.1);
            transition: transform 0.3s, border-color 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: #6366f1;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.75rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: white;
        }

        .feature-card p {
            color: #a1a1aa;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            padding: 2.5rem;
            border-radius: 1rem;
            background: rgba(16, 16, 24, 0.4);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .pricing-card.featured {
            border-color: #6366f1;
            transform: scale(1.05);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .pricing-price span {
            font-size: 1rem;
            color: #71717a;
            font-weight: 400;
        }

        .pricing-desc {
            color: #71717a;
            margin-bottom: 1.5rem;
        }

        .pricing-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #a1a1aa;
            margin-bottom: 0.75rem;
        }

        .pricing-list i {
            color: #22c55e;
        }

        /* CTA */
        .cta-box {
            max-width: 700px;
            margin: 0 auto;
            padding: 4rem;
            border-radius: 1.5rem;
            text-align: center;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
        }

        .cta-box h2 {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-box p {
            color: #a1a1aa;
            margin-bottom: 2rem;
        }

        /* Legal Pages */
        .legal-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
            position: relative;
            z-index: 1;
        }

        .legal-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .legal-content .subtitle {
            color: #71717a;
            font-size: 0.95rem;
            margin-bottom: 3rem;
        }

        .legal-content h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            margin: 2.5rem 0 1rem;
        }

        .legal-content h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #d4d4d8;
            margin: 1.5rem 0 0.75rem;
        }

        .legal-content p {
            margin-bottom: 1rem;
            color: #a1a1aa;
            line-height: 1.7;
        }

        .legal-content ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
            color: #a1a1aa;
        }

        .legal-content li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .legal-content a {
            color: #6366f1;
            text-decoration: none;
        }

        .legal-content a:hover {
            text-decoration: underline;
        }

        /* Footer */
        .footer {
            padding: 3rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 1;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #a1a1aa;
        }

        .footer-brand img {
            width: 24px;
            height: 24px;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-link {
            color: #71717a;
            text-decoration: none;
            font-size: 0.85rem;
            cursor: pointer;
            background: none;
            border: none;
        }

        .footer-link:hover {
            color: #a1a1aa;
        }

        .footer-copyright {
            color: #52525b;
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            .features-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .nav-links {
                display: none;
            }

            .nav {
                padding: 1rem 1.5rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .legal-content {
                padding: 6rem 1.5rem 3rem;
            }

            .legal-content h1 {
                font-size: 2rem;
            }
        }