/* ================================================================
   SURFACEGUARD — INFO / LEGAL PAGE  v20260408
   Premium document design. Intentional. Refined. Elite.
   ================================================================ */

:root {
    --bg:            #070b0f;
    --panel:         #0c1420;
    --border:        rgba(255, 255, 255, 0.07);
    --border-accent: rgba(56, 217, 230, 0.28);
    --text-primary:  #ecf3ff;
    --text-body:     #b8cfe8;
    --text-meta:     #7a95b4;
    --accent:        #38d9e6;
    --accent2:       #4fd1c5;
    --accent-glow:   rgba(56, 217, 230, 0.10);
    --accent-glow2:  rgba(56, 217, 230, 0.05);
    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  14px;
    --r-xl:  18px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(ellipse 70% 50% at 95% 0%, rgba(56, 217, 230, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 5%  100%, rgba(79, 209, 197, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #070b0f 0%, #080e17 100%);
    color: var(--text-primary);
    min-height: 100vh;
}

/* ── Reading progress bar ───────────────────────────────────────── */
.progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 60%, transparent 100%);
    z-index: 200;
    pointer-events: none;
    transition: width 80ms linear;
    box-shadow: 0 0 12px rgba(56, 217, 230, 0.5);
}

/* ── Shell ──────────────────────────────────────────────────────── */
.shell {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px 120px;
}

/* ── Topbar ─────────────────────────────────────────────────────── */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 0 26px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 52px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: opacity 0.18s ease;
}
.brand:hover { opacity: 0.82; }
.brand img  { width: 32px; height: 32px; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    color: var(--text-meta);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.back-link .back-arrow {
    display: inline-block;
    transition: transform 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-style: normal;
}
.back-link:hover {
    color: var(--accent);
    border-color: var(--border-accent);
    background: var(--accent-glow2);
}
.back-link:hover .back-arrow { transform: translateX(-4px); }

/* ── Two-column legal layout ────────────────────────────────────── */
.legal-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ── Sidebar ────────────────────────────────────────────────────── */
.legal-sidebar {
    width: 230px;
    flex-shrink: 0;
}

.legal-nav-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-meta);
    margin-bottom: 14px;
    padding-left: 18px;
    opacity: 0.7;
}

#legal-nav {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#legal-nav::-webkit-scrollbar { display: none; }

#legal-nav ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-left: 1px solid var(--border);
}
#legal-nav li { margin: 0; }

#legal-nav a {
    display: flex;
    align-items: baseline;
    gap: 9px;
    padding: 7px 14px;
    color: var(--text-meta);
    text-decoration: none;
    font-size: 0.81rem;
    line-height: 1.45;
    border-left: 2px solid transparent;
    margin-left: -1px;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.legal-nav-num {
    font-size: 0.64rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--text-meta);
    opacity: 0.45;
    min-width: 18px;
    flex-shrink: 0;
    transition: color 0.18s ease, opacity 0.18s ease;
}

#legal-nav a:hover {
    color: var(--text-primary);
    border-left-color: rgba(56, 217, 230, 0.35);
    background: var(--accent-glow2);
}
#legal-nav a:hover .legal-nav-num { color: var(--accent); opacity: 1; }

#legal-nav a.active {
    color: var(--accent);
    font-weight: 600;
    border-left-color: var(--accent);
    background: var(--accent-glow);
}
#legal-nav a.active .legal-nav-num { color: var(--accent); opacity: 1; }

/* ── Content area ───────────────────────────────────────────────── */
.legal-content {
    flex: 1;
    min-width: 0;
    max-width: 760px;
}

/* ── Document header ────────────────────────────────────────────── */
.legal-document h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0 0 20px;
    background: linear-gradient(140deg, #ecf3ff 0%, #9bbbd8 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-meta);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: 28px;
}
.last-updated strong     { color: var(--text-body); font-weight: 600; font-style: normal; }
.last-updated .date-val  { color: var(--accent); font-weight: 500; }
.last-updated .cal-icon  { width: 14px; height: 14px; opacity: 0.6; flex-shrink: 0; }

.legal-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, var(--border-accent) 0%, rgba(56,217,230,0.06) 60%, transparent 100%);
    margin: 0 0 44px;
}

/* ── Section wrappers (for animation) ──────────────────────────── */
.legal-section {
    margin-top: 52px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.legal-section:first-of-type { margin-top: 0; }
.legal-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ── Section headings ───────────────────────────────────────────── */
.legal-document h2 {
    display: flex;
    align-items: center;
    gap: 13px;
    scroll-margin-top: 100px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.legal-document h2::before {
    content: '';
    display: inline-block;
    width: 3px;
    min-height: 1.15em;
    align-self: stretch;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent2) 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.legal-document h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent2);
    margin: 24px 0 14px;
    scroll-margin-top: 100px;
}

/* ── Body copy ──────────────────────────────────────────────────── */
.legal-document p {
    font-size: 0.985rem;
    line-height: 1.88;
    color: var(--text-body);
    margin: 0 0 1.2rem;
}
.legal-document p:last-child { margin-bottom: 0; }

.legal-document strong { color: var(--text-primary); font-weight: 600; }
.legal-document em     { color: var(--text-meta); font-style: italic; }

/* ── Links ──────────────────────────────────────────────────────── */
.legal-document a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(56, 217, 230, 0.3);
    transition: opacity 0.15s ease, border-color 0.15s ease;
}
.legal-document a:hover { opacity: 0.78; border-bottom-color: var(--accent); }

/* ── Code ───────────────────────────────────────────────────────── */
.legal-document code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Menlo', monospace;
    font-size: 0.83em;
    background: rgba(56, 217, 230, 0.07);
    color: var(--accent2);
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(56, 217, 230, 0.14);
}

/* ── List items ─────────────────────────────────────────────────── */
.legal-document ul {
    list-style: none;
    padding: 0; margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.legal-document li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--text-body);
    transition: border-color 0.18s ease, background 0.18s ease;
}
.legal-document li:hover {
    border-color: rgba(56, 217, 230, 0.18);
    background: var(--accent-glow2);
}
.legal-document li::before {
    content: "→";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.78rem;
    line-height: 1.72;
}

/* ── Callout blocks ─────────────────────────────────────────────── */
.legal-callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: var(--r-lg);
    margin: 4px 0 20px;
    border: 1px solid;
}
.legal-callout__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}
.legal-callout p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
}
.legal-callout p strong { color: var(--accent); }

.legal-callout--trust {
    background: rgba(56, 217, 230, 0.05);
    border-color: rgba(56, 217, 230, 0.22);
}
.legal-callout--notice {
    background: rgba(79, 209, 197, 0.04);
    border-color: rgba(79, 209, 197, 0.16);
    border-left: 3px solid var(--accent2);
}
.legal-callout--notice .legal-callout__icon { color: var(--accent2); }
.legal-callout--notice p { color: var(--text-meta); font-size: 0.9rem; }

/* ── Retention plan table ───────────────────────────────────────── */
.retention-table-wrap {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin: 4px 0 24px;
}
.retention-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.retention-table thead th {
    text-align: left;
    padding: 10px 16px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-meta);
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--border);
}
.retention-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s ease;
}
.retention-table tbody tr:last-child { border-bottom: none; }
.retention-table tbody tr:hover { background: var(--accent-glow2); }
.retention-table td {
    padding: 12px 16px;
    color: var(--text-body);
    vertical-align: middle;
}
.retention-table td:first-child { width: 38%; }

/* ── Prose section table ────────────────────────────────────────── */
.table-wrap {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow-x: auto;
    margin: 20px 0 8px;
}
.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 480px;
}
.table-wrap caption {
    caption-side: bottom;
    padding: 10px 16px;
    font-size: 0.75rem;
    color: var(--text-meta);
    text-align: left;
    border-top: 1px solid var(--border);
}
.table-wrap thead th {
    text-align: left;
    padding: 10px 16px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-meta);
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.table-wrap thead th.col-highlight,
.table-wrap tbody td.col-highlight {
    background: var(--brand-subtle);
    color: var(--accent);
    font-weight: 600;
}
.table-wrap thead th.col-highlight { color: var(--accent); }
.table-wrap tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s ease;
}
.table-wrap tbody tr:last-child { border-bottom: none; }
.table-wrap tbody tr:hover { background: rgba(255,255,255,0.025); }
.table-wrap tbody td {
    padding: 11px 16px;
    color: var(--text-body);
    vertical-align: middle;
}

/* ── Prose link list items ──────────────────────────────────────── */
.prose-section ul li a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.prose-section ul li a:hover { text-decoration: underline; }

/* ── Term + description list items ─────────────────────────────── */
.prose-section li .li-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.prose-section li .li-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-body);
}
.item-term {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.98rem;
}

/* ── Inline code block in prose list items ──────────────────────── */
.prose-code {
    margin: 0;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--r-md);
    overflow-x: auto;
    font-family: "Fira Code", "Cascadia Code", "Consolas", monospace;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--accent);
    white-space: pre;
}

/* ── FAQ section ────────────────────────────────────────────────── */
.faq-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}
.faq-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item dt {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}
.faq-item dt::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    border-radius: 4px;
    padding: 1px 4px;
    line-height: 1.6;
    margin-top: 1px;
}
.faq-item dd {
    margin: 0;
    padding-left: 18px;
    color: var(--text-body);
    font-size: 0.97rem;
    line-height: 1.8;
}

/* ── Takeaways list (checkmark bullets) ─────────────────────────── */
.takeaway-list { gap: 12px !important; }
.takeaway-list li::before {
    content: "✓" !important;
    color: var(--accent) !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
}

/* ── CTA section type ───────────────────────────────────────────── */
.section-type-cta {
    background: linear-gradient(135deg, rgba(16,28,44,.6), rgba(12,22,36,.5));
    border: 1px solid var(--border-accent) !important;
    border-radius: var(--r-lg);
    padding: 28px 32px !important;
    margin: 8px 0;
}
.section-type-cta h2 {
    font-size: 1.2rem !important;
    color: var(--accent) !important;
}
.cta-link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.cta-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid var(--border-accent);
    border-radius: var(--r-md);
    background: var(--accent-glow2);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    width: fit-content;
}
.cta-link-arrow:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    transform: translateX(3px);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid transparent;
}
.plan-badge--recon    { background: rgba(148,163,184,0.1); color: #94a3b8; border-color: rgba(148,163,184,0.2); }
.plan-badge--sentinel { background: rgba(56,217,230,0.1);  color: var(--accent);  border-color: rgba(56,217,230,0.22); }
.plan-badge--fortress { background: rgba(79,209,197,0.1);  color: var(--accent2); border-color: rgba(79,209,197,0.22); }
.plan-badge--citadel  {
    background: linear-gradient(135deg, rgba(56,217,230,0.15), rgba(79,209,197,0.1));
    color: var(--accent);
    border-color: rgba(56,217,230,0.3);
}

/* ── Sub-processors grid ────────────────────────────────────────── */
/* Higher specificity to override .legal-document ul flex layout */
.legal-document ul.subprocessors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 4px 0 20px;
    list-style: none;
    padding: 0;
    flex-direction: unset; /* reset any inherited flex */
}
.subprocessors-grid li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px;
}
.subprocessors-grid li::before { display: none; }
.sp-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.88rem;
}
.sp-detail {
    font-size: 0.78rem;
    color: var(--text-meta);
    line-height: 1.5;
}
.sp-region {
    display: inline-flex;
    align-items: center;
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: rgba(255,255,255,0.05);
    color: var(--text-meta);
    border: 1px solid var(--border);
    margin-top: 4px;
}

/* ── Back to top ────────────────────────────────────────────────── */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(56, 217, 230, 0.08);
    border: 1px solid rgba(56, 217, 230, 0.22);
    color: var(--accent);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease,
                background 0.18s ease, box-shadow 0.18s ease;
    z-index: 50;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
#back-to-top svg { pointer-events: none; }
#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
#back-to-top:hover {
    background: rgba(56, 217, 230, 0.16);
    border-color: var(--accent);
    box-shadow: 0 0 22px rgba(56, 217, 230, 0.2);
    transform: translateY(-3px);
}

/* ── Blog article layout (unchanged) ───────────────────────────── */
.article-layout { max-width: 740px; margin: 0 auto; }
.article-hero    { margin-bottom: 48px; display: grid; gap: 14px; }

.breadcrumbs {
    display: inline-flex;
    gap: 0.55rem; align-items: center;
    margin: 0 0 4px; padding: 0;
    list-style: none;
    color: var(--text-meta);
    font-size: 0.8rem;
}
.breadcrumbs a          { color: var(--text-meta); text-decoration: none; transition: color 0.15s; }
.breadcrumbs a:hover    { color: var(--accent); }

.eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent2);
    font-weight: 700;
}
.article-layout h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}
.article-subtitle {
    margin: 0;
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.72;
}
.author-block {
    display: flex; align-items: center;
    gap: 14px; flex-wrap: wrap;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 4px;
}
.author-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(56, 217, 230, 0.12);
    border: 1px solid var(--border-accent);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 0.78rem;
    font-weight: 700; flex-shrink: 0; letter-spacing: 0.03em;
}
.author-info        { display: flex; flex-direction: column; gap: 2px; }
.author-name        { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.author-title       { font-size: 0.78rem; color: var(--text-meta); font-style: italic; }
.article-dates      { margin-left: auto; display: flex; align-items: center; gap: 6px; color: var(--text-meta); font-size: 0.78rem; }
.date-sep           { opacity: 0.4; }
.updated            { color: var(--text-meta); font-size: 0.82rem; margin-top: 2px; }
.article-body       { display: flex; flex-direction: column; }

.prose-section          { padding: 32px 0; border-bottom: 1px solid var(--border); }
.prose-section:last-of-type { border-bottom: none; }
.prose-section h2       { margin: 0 0 16px; font-size: 1.38rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text-primary); line-height: 1.25; }
.prose-section p        { margin: 0 0 16px; color: var(--text-body); font-size: 1.02rem; line-height: 1.82; }
.prose-section p:last-child { margin-bottom: 0; }
.prose-section ul       { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.prose-section li       { display: flex; align-items: flex-start; gap: 10px; color: var(--text-body); font-size: 0.98rem; line-height: 1.65; border: none; background: none; border-radius: 0; padding: 0; }
.prose-section li:hover { background: none; border-color: transparent; }
.prose-section li::before { content: "→"; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 2px; font-size: 0.84rem; }

.product-cta {
    margin-top: 48px; padding: 32px;
    background: linear-gradient(135deg, rgba(16,28,44,.98), rgba(12,22,36,.97));
    border: 1px solid var(--border); border-left: 3px solid var(--accent);
    border-radius: 12px; display: grid; gap: 12px;
}
.product-cta-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent2); font-weight: 700; }
.product-cta h3      { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.product-cta p       { margin: 0; color: var(--text-body); font-size: 0.95rem; line-height: 1.65; }
.cta-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: #030608;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em;
    padding: 10px 20px; border-radius: 8px; text-decoration: none;
    width: fit-content; transition: opacity 0.15s ease, transform 0.15s ease;
}
.cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.article-back      { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }
.back-to-blog      { color: var(--text-meta); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: color 0.15s; display: inline-flex; align-items: center; gap: 6px; }
.back-to-blog:hover { color: var(--accent); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .legal-layout { flex-direction: column; gap: 32px; }
    .legal-sidebar { width: 100%; }
    #legal-nav { position: relative; top: 0; max-height: 220px; overflow-y: auto; }
    #legal-nav ul { flex-direction: row; flex-wrap: wrap; border-left: none; border-top: 1px solid var(--border); gap: 0; }
    #legal-nav a  { border-left: none; border-bottom: 2px solid transparent; border-radius: var(--r-sm) var(--r-sm) 0 0; margin-left: 0; padding: 6px 12px; }
    #legal-nav a.active { border-bottom-color: var(--accent); border-left-color: transparent; }
    .subprocessors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .shell { padding: 0 18px 80px; }
    .legal-document h1 { font-size: 2rem; }
    .legal-document h2 { font-size: 1.15rem; }
    #back-to-top { bottom: 20px; right: 20px; }
    .retention-table td, .retention-table th { padding: 10px 12px; }
}
