/*
 * Privacy Policy & Terms Page
 * Modern dark theme consistent with site redesign
 */

@layer pages {
    /* ============================================================
       PAGE LAYOUT
       ============================================================ */
    .policy-page {
        min-height: calc(100vh - 200px);
    }

    /* ============================================================
       HERO SECTION
       ============================================================ */
    .policy-hero {
        padding: 60px 24px 50px;
        text-align: center;
        background:
            radial-gradient(ellipse 60% 50% at 50% 30%, rgba(140, 149, 0, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse 50% 40% at 80% 70%, rgba(217, 101, 40, 0.08) 0%, transparent 50%),
            linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    }

    .policy-hero-inner {
        max-width: 800px;
        margin: 0 auto;
    }

    .policy-hero h1 {
        font: 700 clamp(32px, 5vw, 48px)/1.2 "Barlow Condensed", sans-serif;
        color: var(--text-headline, #fff);
        margin: 0 0 8px;
    }

    .policy-updated {
        font: 400 14px/1.5 "Jost", sans-serif;
        color: var(--text-subhead, #999);
        margin: 0 0 24px;
    }

    /* Quick Navigation */
    .policy-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .policy-nav-link {
        display: inline-flex;
        align-items: center;
        padding: 10px 20px;
        border-radius: 100px;
        font: 500 14px/1 "Jost", sans-serif;
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .policy-nav-link:hover {
        background: rgba(255, 211, 20, 0.15);
        border-color: rgba(255, 211, 20, 0.3);
        color: var(--btn-yellow-bg, #edad01);
    }

    /* ============================================================
       CONTENT SECTIONS
       ============================================================ */
    .policy-section {
        padding: 50px 24px;
        background: #0a0a0a;
    }

    .policy-section-alt {
        background: rgba(255, 255, 255, 0.02);
    }

    .policy-section-inner {
        max-width: 800px;
        margin: 0 auto;
    }

    /* Section Header */
    .policy-section-header {
        margin-bottom: 30px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .policy-section-header h2 {
        font: 700 28px/1.2 "Barlow Condensed", sans-serif;
        color: var(--btn-yellow-bg, #edad01);
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Content Styling */
    .policy-content {
        color: var(--text-body, #bdbdbd);
    }

    .policy-content p {
        font: 400 15px/1.8 "Jost", sans-serif;
        margin: 0 0 20px;
    }

    .policy-content a {
        color: var(--btn-yellow-bg, #edad01);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .policy-content a:hover {
        color: #fff;
    }

    /* Subheadings */
    .policy-subhead {
        font: 600 18px/1.4 "Jost", sans-serif;
        color: var(--text-headline, #fff);
        margin: 32px 0 12px;
    }

    .policy-subhead-major {
        font: 700 20px/1.3 "Jost", sans-serif;
        color: var(--text-headline, #fff);
        margin: 40px 0 16px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .policy-content strong,
    .policy-content em {
        color: var(--text-headline, #fff);
    }

    /* Lists */
    .policy-content ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }

    .policy-content ul ul {
        margin: 8px 0 8px 24px;
    }

    .policy-content li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
        font: 400 15px/1.7 "Jost", sans-serif;
    }

    .policy-content li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--btn-yellow-bg, #edad01);
    }

    .policy-content ul ul li::before {
        width: 4px;
        height: 4px;
        top: 11px;
        background: rgba(255, 255, 255, 0.4);
    }

    /* Address blocks */
    .policy-address {
        margin: 16px 0 24px;
        padding-left: 20px;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
        font: 400 15px/1.8 "Jost", sans-serif;
    }

    /* ============================================================
       RESPONSIVE - TABLET
       ============================================================ */
    @media (max-width: 768px) {
        .policy-hero {
            padding: 40px 20px 35px;
        }

        .policy-section {
            padding: 40px 20px;
        }

        .policy-section-header h2 {
            font-size: 24px;
        }

        .policy-subhead {
            font-size: 16px;
        }

        .policy-subhead-major {
            font-size: 18px;
        }
    }

    /* ============================================================
       RESPONSIVE - MOBILE
       ============================================================ */
    @media (max-width: 480px) {
        .policy-hero {
            padding: 30px 16px 28px;
        }

        .policy-hero h1 {
            font-size: 28px;
        }

        .policy-nav {
            flex-direction: column;
            align-items: center;
        }

        .policy-nav-link {
            width: 100%;
            max-width: 240px;
            justify-content: center;
        }

        .policy-section {
            padding: 30px 16px;
        }

        .policy-content p,
        .policy-content li {
            font-size: 14px;
        }

        .policy-subhead {
            font-size: 15px;
            margin-top: 24px;
        }

        .policy-subhead-major {
            font-size: 16px;
            margin-top: 32px;
        }
    }

} /* end @layer pages */
