:root {
    --bg: #050816;
    --card: rgba(10, 16, 32, 0.72);
    --card-hover: rgba(14, 22, 43, 0.88);
    --border: rgba(255, 255, 255, 0.11);
    --text: #ffffff;
    --text-muted: #aeb6cc;
    --blue: #5ea1ff;
    --purple: #9b7cff;
    --green: #55d66b;
    --yellow: #f2c94c;
}

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

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 82% 10%, rgba(78, 137, 255, 0.18), transparent 28%),
        radial-gradient(circle at 70% 38%, rgba(128, 92, 255, 0.16), transparent 32%),
        linear-gradient(180deg, #060918 0%, #040713 100%);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
}

.page-glow {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    filter: blur(20px);
}

.page-glow-blue {
    top: 0;
    right: 0;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(72, 130, 255, 0.2), transparent 70%);
}

.page-glow-purple {
    top: 35%;
    right: 5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(132, 92, 255, 0.18), transparent 70%);
}

/* Navbar matches homepage */
.navbar {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.05rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0.88;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: #ffffff;
}

/* Privacy page */
.privacy-page {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 3.8rem 2rem 6rem;
}

.privacy-hero {
    max-width: 760px;
    margin-bottom: 2.8rem;
}

.privacy-tag {
    display: inline-flex;
    margin-bottom: 1.35rem;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.privacy-hero h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(3.3rem, 6.2vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.privacy-hero p {
    max-width: 650px;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.privacy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    max-width: 860px;
}

.privacy-card {
    padding: 1.8rem;
    background: linear-gradient(180deg, rgba(17, 25, 45, 0.78), rgba(9, 15, 30, 0.78));
    border: 1px solid var(--border);
    border-radius: 22px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.privacy-card:hover {
    transform: translateY(-3px);
    border-color: rgba(111, 159, 255, 0.42);
    background: linear-gradient(180deg, rgba(22, 32, 58, 0.9), rgba(12, 18, 35, 0.9));
}

.privacy-card h2 {
    margin-bottom: 0.8rem;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.privacy-card p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.privacy-card ul {
    margin: 0 0 1rem 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.privacy-card li {
    margin-bottom: 0.35rem;
}

.email-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 800;
}

.email-link:hover {
    color: white;
}

/* Mobile */
@media (max-width: 650px) {
    .navbar {
        padding: 1.15rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .privacy-page {
        padding: 2.2rem 1rem 4rem;
    }

    .privacy-tag {
        max-width: 100%;
        font-size: 0.72rem;
        line-height: 1.4;
        padding: 0.5rem 0.7rem;
    }

    .privacy-hero h1 {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
        line-height: 1.03;
        letter-spacing: -0.035em;
    }

    .privacy-hero p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .privacy-card {
        padding: 1.35rem;
    }
}
