/* ============================================================
   PRIVACY POLICY - Separate CSS
   ============================================================ */

/* ============ FONT IMPORTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'SF Pro Display';
  src: local('SF Pro Display'), local('SFProDisplay-Regular');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: local('SF Pro Text'), local('SFProText-Regular');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
    --navy: #14123a;
    --navy-2: #1c1a4d;
    --blue: #2b3fe0;
    --text-dark: #17162e;
    --text-body: #55566b;
    --text-muted: #8586a0;
    --border: #e7e7ee;
    --bg: #ffffff;
    --bg-soft: #f7f7fb;
    --link: #2b3fe0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-body);
    background: var(--bg);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, .brand, nav a, .btn-primary {
    font-family: 'SF Pro Display', 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

a {
    color: var(--link);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ============ PAGE HEADER ============ */
.page-wrap {
    max-width: 1380px;
    margin: 0 auto;
    padding: 48px 48px 0;
}

@media (max-width: 1024px) {
    .page-wrap {
        padding: 30px 30px 0;
    }
}

@media (max-width: 768px) {
    .page-wrap {
        padding: 20px 16px 0;
    }
}

.eyebrow {
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h1.page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    font-family: 'SF Pro Display', 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) {
    h1.page-title {
        font-size: 26px;
    }
}

.meta-updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.meta-block {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 36px;
}

.meta-block strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============ LAYOUT: TOC + CONTENT ============ */
.layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 56px;
    align-items: start;
}

@media (max-width: 1024px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.toc {
    position: sticky;
    top: 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

@media (max-width: 1024px) {
    .toc {
        position: relative;
        top: 0;
    }
}

.toc-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 14px 16px 10px;
    font-family: 'SF Pro Display', 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.toc-list {
    list-style: none;
    max-height: 420px;
    overflow-y: auto;
}

.toc-list li a {
    display: block;
    padding: 9px 16px;
    font-size: 13.5px;
    color: #55566b;
    border-left: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
    font-family: 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.toc-list li a:hover {
    text-decoration: none;
    background: var(--bg-soft);
}

.toc-list li a.active {
    background: var(--bg-soft);
    color: var(--navy);
    font-weight: 600;
    border-left-color: var(--blue);
}

.content section {
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--border);
}

.content section:last-child {
    border-bottom: none;
}

.content h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'SF Pro Display', 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) {
    .content h2 {
        font-size: 17px;
    }
}

.content h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 16px 0 6px;
    font-family: 'SF Pro Display', 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.content h3:first-of-type {
    margin-top: 4px;
}

.content h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 14px 0 4px;
    font-family: 'SF Pro Display', 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.content p {
    margin-bottom: 9px;
    color: var(--text-body);
    font-family: 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.content ul {
    margin: 4px 0 10px 20px;
    font-family: 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.content ul li {
    margin-bottom: 4px;
    color: var(--text-body);
}

/* ============ COMING SOON PAGE ============ */
.coming-soon-page {
    text-align: center;
    padding: 80px 20px;
}

.coming-soon-page .emoji {
    font-size: 64px;
    margin-bottom: 20px;
}

.coming-soon-page h1 {
    font-size: 36px;
    color: #14123a;
    margin-bottom: 16px;
    font-family: 'SF Pro Display', 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.coming-soon-page p {
    font-size: 18px;
    color: #55566b;
    max-width: 600px;
    margin: 0 auto 12px;
    font-family: 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.coming-soon-page .sub-text {
    font-size: 16px;
    color: #8586a0;
}

.coming-soon-page .btn-return {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #14123a;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: background 0.3s ease, transform 0.3s ease;
}

.coming-soon-page .btn-return:hover {
    background: #2b3fe0;
    transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
    .layout {
        grid-template-columns: 1fr;
    }
    .toc {
        position: static;
    }
    .page-wrap {
        padding: 20px 20px 0;
    }
}

@media (max-width: 480px) {
    .page-wrap {
        padding: 12px 12px 0;
    }

    h1.page-title {
        font-size: 22px;
    }

    .coming-soon-page {
        padding: 40px 16px;
    }

    .coming-soon-page h1 {
        font-size: 24px;
    }

    .coming-soon-page .emoji {
        font-size: 48px;
    }

    .coming-soon-page p {
        font-size: 14px;
    }
}
