@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(to bottom right, #020617, #581c87, #0f172a);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* 3D Canvas */
#canvas3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

/* Grain overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
}

/* Content wrapper */
.content {
    position: relative;
    z-index: 10;
}

/* Navigation */
nav {
    padding: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, #6366f1, #9333ea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #818cf8;
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(to right, #6366f1, #9333ea);
    border: none;
    border-radius: 9999px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.5);
}

/* Hero Section */
.hero {
    padding: 80px 24px 64px;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
    animation: fadeIn 1s ease-out;
}

.hero-badge-text {
    font-size: 14px;
    color: #a5b4fc;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, white, #c7d2fe, #ddd6fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: #d1d5db;
    max-width: 768px;
    margin: 0 auto 24px;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.2s both;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    color: #a5b4fc;
    animation: fadeIn 1s ease-out 0.4s both;
}

/* Privacy Content */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 24px 128px;
}

.privacy-content {
    background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), rgba(147, 51, 234, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.section-number {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(to right, #6366f1, #9333ea);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e5e7eb;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 16px;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.section-content ul,
.section-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.section-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.section-content strong {
    color: #f3f4f6;
    font-weight: 600;
}

.subsection {
    margin-top: 24px;
    padding-left: 24px;
    border-left: 2px solid rgba(99, 102, 241, 0.3);
}

.subsection-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #818cf8;
}

.highlight-box {
    padding: 24px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    margin: 24px 0;
}

.highlight-box strong {
    color: #818cf8;
}

.info-box {
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    margin: 24px 0;
}

.info-box strong {
    color: #86efac;
}

.warning-box {
    padding: 20px;
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 16px;
    margin: 24px 0;
}

.warning-box strong {
    color: #fdba74;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.data-table th {
    background: rgba(99, 102, 241, 0.2);
    font-weight: 600;
    color: #e5e7eb;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.contact-box {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    text-align: center;
}

.contact-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-box p {
    color: #d1d5db;
    margin-bottom: 20px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 9999px;
    color: #818cf8;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-email:hover {
    background: rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}

.toc {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
}

.toc-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e5e7eb;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: #818cf8;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list a:hover {
    color: #c084fc;
    transform: translateX(8px);
}

.toc-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .privacy-content {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .subsection {
        padding-left: 16px;
    }

    .data-table {
        font-size: 14px;
    }

    .data-table th,
    .data-table td {
        padding: 12px;
    }
}