/* ==========================================
   Privacy Policy — Page Styles
   ========================================== */

/* CSS Variables matching main site */
:root {
    --bg-dark: #0a0a0b;
    --bg-card: #141416;
    --bg-elevated: #1a1a1d;
    --text-primary: #f5f5f4;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.15);
    --border: #27272a;
    --border-light: #3f3f46;
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --container: 800px;
    --section-pad: 120px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--text-primary);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, var(--bg-dark), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    color: var(--text-primary);
}

/* Content */
.page-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 140px 24px 80px;
}

.page-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.effective-date {
    font-size: 14px;
    color: var(--text-muted);
}

/* TL;DR Box */
.tldr {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
}

.tldr-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.tldr ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tldr li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.tldr li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 50%;
    font-size: 12px;
}

/* Sections */
.section {
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--text-primary);
}

.section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.section ul,
.section ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-secondary);
}

.section li {
    margin-bottom: 10px;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Box */
.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin: 60px 0;
}

.contact-box p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Footer */
.footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 28px;
    height: 28px;
}

.footer-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 600px) {
    .page-container {
        padding-top: 140px;
    }

    .tldr {
        padding: 24px;
    }

    .nav-links {
        display: none;
    }
}
