:root {
  --red:     #d42b2b;
  --red-dk:  #b82020;
  --red-lt:  #e84040;
  --dark:    #111114;
  --dark2:   #1c1c20;
  --mid:     #3d3d44;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --bg:      #f9fafb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--dark2);
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.priv-hero {
  background: var(--dark);
  padding: 96px 6% 88px;
  position: relative;
  overflow: hidden;
}

.priv-hero::before {
  content: "";
  position: absolute; top: -20%; left: -8%;
  width: 55%; height: 160%;
  background: radial-gradient(ellipse, rgba(212,43,43,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.priv-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.priv-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,43,43,0.15);
  border: 1px solid rgba(212,43,43,0.4);
  border-radius: 30px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 700; color: #f08080;
  letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 24px;
}

.priv-tag::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%; background: var(--red-lt);
}

.priv-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1.08;
  margin-bottom: 18px;
}

.priv-hero-sub {
  font-size: 1.1rem; color: #9ca3af;
  max-width: 520px; line-height: 1.8;
  margin-bottom: 28px;
}

.priv-hero-date {
  display: inline-block;
  font-size: 0.85rem; color: #4b5563; font-weight: 500;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 5px 16px;
}

/* ── BODY LAYOUT ── */
.priv-body-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 6% 100px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  align-items: start;
}

/* ── TOC ── */
.priv-toc { position: sticky; top: 88px; }

.priv-toc-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}

.priv-toc a {
  display: block; font-size: 0.9rem; color: var(--muted);
  text-decoration: none; padding: 7px 0 7px 16px;
  border-left: 2px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
  line-height: 1.4; font-weight: 500;
}

.priv-toc a:hover { color: var(--red); border-left-color: var(--red); }

/* ── CONTENT ── */
.priv-content section {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.priv-content section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.priv-eyebrow {
  display: block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}

.priv-content h2 {
  font-size: 1.55rem; font-weight: 800;
  color: var(--dark); letter-spacing: -0.5px;
  margin-bottom: 18px; line-height: 1.25;
}

.priv-content p {
  font-size: 1rem; color: var(--mid);
  line-height: 1.8; margin-bottom: 16px;
}

.priv-content p:last-child { margin-bottom: 0; }

/* ── LISTS ── */
.priv-group { margin-bottom: 28px; }
.priv-group:last-child { margin-bottom: 0; }

.priv-group-title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}

ul.priv-items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}

ul.priv-items li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.98rem; color: var(--mid); line-height: 1.6;
}

ul.priv-items li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); margin-top: 9px; flex-shrink: 0;
}

/* ── CALLOUTS ── */
.priv-callout {
  border-radius: 12px; padding: 20px 24px;
  margin-top: 20px; margin-bottom: 16px;
}

.priv-callout-red {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.priv-callout-blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.priv-callout-amber {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.priv-callout-title {
  font-size: 0.92rem; font-weight: 700; margin-bottom: 8px;
}

.priv-callout-red .priv-callout-title { color: #9f1239; }
.priv-callout-blue .priv-callout-title { color: #1e40af; }
.priv-callout-amber .priv-callout-title { color: #92400e; }

.priv-callout p {
  font-size: 0.95rem !important;
  margin-bottom: 0 !important;
}

.priv-callout-red p  { color: #881337 !important; }
.priv-callout-blue p { color: #1e3a8a !important; }
.priv-callout-amber p { color: #92400e !important; }

.priv-callout-red ul.priv-items li         { color: #881337; }
.priv-callout-red ul.priv-items li::before { background: #e11d48; }

/* ── LINKS ── */
.priv-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}

.priv-link:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 28px 6%;
}

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

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.footer-logo img { width: 28px; height: 28px; border-radius: 7px; }
.footer-logo span { font-size: 0.9rem; font-weight: 700; color: var(--dark); }

.footer-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

.footer-links a {
  font-size: 0.88rem; color: var(--muted); text-decoration: none;
  font-weight: 500; padding: 5px 10px; border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}

.footer-links a:hover { color: var(--red); background: #fff1f2; }

.footer-copy {
  max-width: 1100px; margin: 16px auto 0;
  font-size: 0.84rem; color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .priv-hero  { padding: 64px 5% 56px; }
  .priv-body-wrap { grid-template-columns: 1fr; gap: 0; padding: 52px 5% 80px; }
  .priv-toc   { display: none; }
  footer      { padding: 24px 5%; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
