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

        :root {
            --primary-teal: #32B8C6;
            --primary-navy: #2C3E50;
            --primary-cream: #FAF8F5;
            --accent-purple: #B3A4FF;
            --accent-green: #A6FFCC;
            --accent-orange: #E8C547;
            --text-gray: #6B7280;
            --border-light: #E5E7EB;
            --success: #A6FFCC;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            background: var(--primary-cream);
            color: var(--primary-navy);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        header {
            background: white;
            border-bottom: 1px solid var(--border-light);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-navy);
            text-decoration: none;
        }

        .logo-icon {
            font-size: 32px;
        }

        .cta-header {
            background: var(--primary-teal);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 300ms ease;
        }

        .cta-header:hover {
            background: #2a9aa8;
            transform: translateY(-2px);
        }

        /* ===== HERO ===== */
        #hero {
            padding: 80px 20px;
            text-align: center;
            background: linear-gradient(135deg, #FAF8F5 0%, #ffffff 100%);
        }

        #hero h1 {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .hero-tagline {
            font-size: clamp(18px, 3vw, 24px);
            color: var(--primary-teal);
            font-weight: 600;
            margin-bottom: 24px;
        }

        #hero p {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .beta-badges {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .badge-active {
            background: var(--accent-green);
            color: var(--primary-navy);
        }

        .badge-coming {
            background: var(--accent-purple);
            color: white;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 300ms ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary-teal);
            color: white;
        }

        .btn-primary:hover {
            background: #2a9aa8;
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(50, 184, 198, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-navy);
            border: 2px solid var(--primary-navy);
        }

        .btn-secondary:hover {
            background: var(--primary-navy);
            color: white;
        }

        .social-proof {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .highlight {
            color: var(--primary-teal);
            font-weight: 700;
        }

        /* ===== PROCESS SECTION ===== */
        #process {
            padding: 80px 20px;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-step {
            padding: 40px;
            background: var(--primary-cream);
            border-radius: 12px;
            border-left: 4px solid var(--primary-teal);
            transition: all 300ms ease;
        }

        .process-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(50, 184, 198, 0.15);
        }

        .step-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .process-step h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 12px;
            line-height: 1.8;
        }

        .questions-list {
            font-size: 13px;
            color: var(--text-gray);
            text-align: left;
            margin-top: 12px;
        }

        .questions-list li {
            margin: 6px 0;
            margin-left: 16px;
        }

        /* ===== NETWORK SECTION ===== */
        #network {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--accent-purple) 0%, #9B88FF 100%);
            color: white;
        }

        #network .section-header h2,
        #network .section-header p {
            color: white;
        }

        .network-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .network-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 32px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .network-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            /*color: var(--accent-green);*/
        }

        .network-card p {
            font-size: 15px;
            line-height: 1.8;
            opacity: 0.95;
        }

        /* ===== PRICING SECTION ===== */
        #pricing {
            padding: 80px 20px;
            background: var(--primary-navy);
            color: white;
        }

        #pricing .section-header h2,
        #pricing .section-header p {
            color: white;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 300ms ease;
        }

        .pricing-card.featured {
            background: var(--primary-teal);
            border: 2px solid var(--accent-orange);
            transform: scale(1.02);
        }

        .pricing-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
        }

        .pricing-card .price {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }

        .pricing-card .price-sub {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 24px;
        }

        .pricing-card ul {
            list-style: none;
            margin: 32px 0;
            text-align: left;
        }

        .pricing-card li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 15px;
        }

        .pricing-card li:before {
            content: "✓ ";
            color: var(--accent-green);
            font-weight: 700;
            margin-right: 8px;
        }

        .pricing-card .btn {
            width: 100%;
            margin-top: 24px;
        }

        /* ===== PROJECTS SECTION ===== */
        #projects {
            padding: 80px 20px;
            background: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            padding: 32px;
            background: var(--primary-cream);
            border-radius: 12px;
            border: 2px solid var(--border-light);
            transition: all 300ms ease;
        }

        .project-card:hover {
            border-color: var(--primary-teal);
            box-shadow: 0 8px 16px rgba(50, 184, 198, 0.1);
        }

        .project-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }

        .project-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-teal);
            margin-bottom: 8px;
        }

        .project-type {
            font-size: 12px;
            color: var(--accent-purple);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .project-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* ===== SIGNUP SECTION ===== */
        #signup {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--primary-teal) 0%, #2a9aa8 100%);
            color: white;
            text-align: center;
        }

        #signup h2 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
        }

        #signup p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.95;
        }

        .signup-cta {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-signup {
            background: var(--accent-orange);
            color: var(--primary-navy);
            padding: 16px 48px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 300ms ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-signup:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 24px rgba(232, 197, 71, 0.4);
        }

        /* ===== FAQ SECTION ===== */
        #faq {
            padding: 80px 20px;
            background: var(--primary-cream);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 16px;
            border-left: 4px solid var(--primary-teal);
        }

        .faq-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 12px;
        }

        .faq-item p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--primary-navy);
            color: white;
            padding: 60px 20px 40px;
            text-align: center;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
        }

        .footer-links {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            #hero, #process, #pricing, #signup, #faq, #network {
                padding: 60px 20px;
            }

            .cta-group, .beta-badges {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .process-grid, .pricing-grid, .projects-grid, .network-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .signup-cta {
                flex-direction: column;
            }

            .btn-signup {
                width: 100%;
            }
        }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
	background: white;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    /*border: none;*/
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--border-color);
}

.cookie-btn-reject:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 1.25rem;
    }

    .cookie-banner-text h3 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
