﻿
:root {
    --ink: #0f1117;
    --ink-mid: #d4d9ed;
    --ink-soft: #5a5f72;
    --ink-faint: #9297a8;
    --paper: #faf9f6;
    --paper-alt: #f2f0eb;
    --rule: #dedad3;
    --accent: #266fbb;
    --accent2: #2e6da4;
    --danger: #b91c1c;
    --danger-bg: #fef2f2;
    --danger-border: #fca5a5;
    --gold: #c9962a;
    --radius: 4px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

.layout { 
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
    background: var(--accent);
    color: #fff;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

    .site-header .brand { 
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: .02em; 
        text-decoration: none;
    }

    .site-header .meta { 
        font-size: .7rem; 
        letter-spacing: .08em;
        text-transform: uppercase;
    }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
    color: #fff;
    padding: 8rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
  
.hero-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.hero-eyebrow { 
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero h1 { 
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: .75rem;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-dates {
    display: inline-flex;
    gap: 2rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 40px;
    padding: .5rem 1.75rem; 
    font-size: .72rem;
    letter-spacing: .06em;
    color: rgba(255,255,255,.7);
}

    .hero-dates span {
        display: flex;
        align-items: center;
        gap: .4rem;
    }

        .hero-dates span::before {
            content: '●';
            font-size: .5rem;
            color: var(--gold);
        }

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    max-width: 1140px;
    margin: 0 auto;
    gap: 0;
}

/* ── SIDEBAR / TOC ───────────────────────────────────────────────────────── */
.toc-wrap {
    padding: 3.5rem 1rem;
    border-right: 1px solid var(--rule);
    position: sticky;
    top: 56px;
    height: calc(100vh - 56px);
    overflow-y: auto;
}

    .toc-wrap::-webkit-scrollbar {
        width: 4px;
    }

    .toc-wrap::-webkit-scrollbar-track {
        background: transparent;
    }

    .toc-wrap::-webkit-scrollbar-thumb {
        background: var(--rule);
        border-radius: 4px;
    }

.toc-label { 
    font-size: 1rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--rule);
}

.toc {
    list-style: none;
}

    .toc li {
        margin-bottom: .1rem;
    }

    .toc a {
        display: block; 
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--ink-soft);
        text-decoration: none;
        padding: .3rem .6rem;
        border-radius: var(--radius);
        border-left: 2px solid transparent;
        transition: all .15s;
        line-height: 1.4;
    }

        .toc a:hover, .toc a.active {
            color: var(--accent2);
            background: rgba(46,109,164,.06);
            border-left-color: var(--accent2);
        }

.toc-notice {
    display: block;
    margin-top: .2rem;
    font-size: .75rem;
    color: var(--danger);
    font-weight: 600;
    padding: .3rem .6rem;
    border-radius: var(--radius);
    background: var(--danger-bg);
    border-left: 2px solid var(--danger);
}

.toc-contact {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--paper-alt);
    border-radius: 6px;
    border: 1px solid var(--rule);
    font-size: .75rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

    .toc-contact strong {
        display: block; 
        margin-bottom: .3rem; 
    }

    .toc-contact a {
        color: var(--accent2);
        text-decoration: none;
    }

        .toc-contact a:hover {
            text-decoration: underline;
        }

/* ── MAIN CONTENT ────────────────────────────────────────────────────────── */
.content {
    padding: 3rem 3.5rem 5rem;
    max-width: 820px;
}

/* ── DISCLAIMER BOX ──────────────────────────────────────────────────────── */
.disclaimer {
    background: var(--danger-bg);
    border: 1.5px solid var(--danger-border);
    border-left: 5px solid var(--danger);
    border-radius: 6px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 3rem;
    animation: fadeSlide .5s ease both;
}

.disclaimer-title { 
    font-size: 1rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    letter-spacing: .01em;
}

    .disclaimer-title .icon {
        font-size: 1.1rem;
    }

.disclaimer p {
    font-size: .9rem;
    line-height: 1.75;
    color: #4b1c1c;
    margin-bottom: .6rem;
}

    .disclaimer p:last-child {
        margin-bottom: 0;
        color: var(--danger);
        font-style: italic;
        font-weight: 600;
    }

.disclaimer strong {
    font-weight: 600;
}

/* ── SECTION ─────────────────────────────────────────────────────────────── */
.section {
    margin-bottom: 3rem;
    animation: fadeSlide .4s ease both;
}

h2.section-title { 
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: baseline;
    gap: .6rem;
}

    h2.section-title .num {  
        color: var(--ink-faint);
        letter-spacing: .05em;
        flex-shrink: 0;
    }

h3.sub-title { 
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-mid);
    margin: 1.75rem 0 .6rem;
    padding-left: .75rem;
    border-left: 3px solid var(--accent2);
}

em {
    font-style: italic;
    color: var(--ink-soft);
}

strong {
    font-weight: 600; 
}

/* ── LISTS ───────────────────────────────────────────────────────────────── */
ul.policy-list {
    list-style: none;
    margin: .75rem 0 1rem;
    padding: 0;
}

    ul.policy-list li {
        display: flex;
        gap: .75rem;
        font-size: .94rem;
        color: var(--ink-mid);
        padding: .45rem 0;
        border-bottom: 1px solid var(--paper-alt);
        line-height: 1.65;
    }

        ul.policy-list li:last-child {
            border-bottom: none;
        }

        ul.policy-list li::before {
            content: '—';
            color: var(--accent2); 
            font-size: .85rem;
            flex-shrink: 0;
            margin-top: .1rem;
        }

    ul.policy-list.negatives li::before {
        content: '✕';
        color: var(--danger);
        font-size: .7rem;
        margin-top: .25rem;
    }

    ul.policy-list.positives li::before {
        content: '✓';
        color: #16a34a;
        font-size: .8rem;
    }

ul.sub-list {
    list-style: none;
    margin: .5rem 0 .5rem 1.25rem;
    padding: 0;
}

    ul.sub-list li {
        font-size: .9rem;
        color: var(--ink-soft);
        padding: .3rem 0;
        display: flex;
        gap: .6rem;
    }

        ul.sub-list li::before {
            content: '›';
            color: var(--accent2);
            flex-shrink: 0;
        }

/* ── INFO GRID (for data controller table) ───────────────────────────────── */
.info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 6px;
    overflow: hidden;
    margin: 1rem 0;
    font-size: .9rem;
}

    .info-grid dt, .info-grid dd {
        padding: .65rem 1rem;
        border-bottom: 1px solid var(--rule);
    }

        .info-grid dt:last-of-type, .info-grid dd:last-of-type {
            border-bottom: none;
        }

    .info-grid dt {
        background: var(--paper-alt);
        font-weight: 600;
        color: var(--ink);
        white-space: nowrap; 
        font-size: .78rem;
        letter-spacing: .03em;
        display: flex;
        align-items: center;
    }

    .info-grid dd {
        color: var(--ink-mid);
    }

    .info-grid a {
        color: var(--accent2);
        text-decoration: none;
    }

        .info-grid a:hover {
            text-decoration: underline;
        }

/* ── JURISDICTION CARDS ──────────────────────────────────────────────────── */
.jur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.jur-card {
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 1rem 1.1rem; 
    transition: box-shadow .15s, border-color .15s;
}

    .jur-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,.06);
        border-color: var(--accent2);
    }

.jur-card-title { 
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: .5rem;
}

.jur-card-law {
    font-size: .78rem; 
    color: var(--ink-faint);
    margin-bottom: .6rem;
}

.jur-card ul {
    list-style: none;
    padding: 0;
}

    .jur-card ul li {
        font-size: .84rem;
        color: var(--ink-mid);
        padding: .2rem 0;
        display: flex;
        gap: .5rem;
        line-height: 1.5;
    }

        .jur-card ul li::before {
            content: '·';
            color: var(--accent2);
            font-size: 1.1rem;
            flex-shrink: 0;
            line-height: 1.3;
        }

/* ── RETENTION TABLE ─────────────────────────────────────────────────────── */
.retention-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    margin: 1rem 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--rule);
}

    .retention-table th {
        background: var(--accent);
        color: #fff;
        padding: .6rem 1rem;
        text-align: left; 
        font-size: .72rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 500;
    }

    .retention-table td {
        padding: .6rem 1rem;
        border-bottom: 1px solid var(--rule); 
    }

    .retention-table tr:last-child td {
        border-bottom: none;
    }
     
    .retention-table td:last-child { 
        font-size: .78rem;
        color: var(--accent2);
        white-space: nowrap;
    }

/* ── CALLOUT ─────────────────────────────────────────────────────────────── */
.callout {
    background: rgba(26,58,92,.04);
    border-left: 3px solid var(--accent2);
    border-radius: 0 6px 6px 0;
    padding: .9rem 1.2rem;
    margin: 1rem 0;
    font-size: .9rem; 
    font-style: italic;
}

    .callout strong {
        font-style: normal;
    }

.custom-border-bottom {
    border-bottom: 1px solid var(--rule);
}

/* ── ANIMATION ───────────────────────────────────────────────────────────── */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section:nth-child(1) {
    animation-delay: .05s;
}

.section:nth-child(2) {
    animation-delay: .1s;
}

.section:nth-child(3) {
    animation-delay: .15s;
}

.section:nth-child(4) {
    animation-delay: .2s;
}

.section:nth-child(5) {
    animation-delay: .25s;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .toc-wrap {
        display: none;
    }

    .content {
        padding: 2rem 1.5rem 4rem;
    }

    .jur-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .site-header, .toc-wrap {
        display: none;
    }

    .layout {
        display: block;
    }

    .content {
        padding: 0;
        max-width: 100%;
    }

    .hero {
        background: none;
        color: var(--ink);
        padding: 1rem 0 2rem;
    }

        .hero h1 {
            color: var(--ink);
        }

    body {
        font-size: 12pt;
    }
} 