/* Privacy page styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #0e0d0d;
  color: #d4d4d4;
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* Top nav bar */
.pp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0e0d0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 56px;
}
.pp-nav__logo img {
  height: 28px;
  display: block;
}
.pp-nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pp-nav__links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.pp-nav__links a:hover {
  color: #fff;
}

/* Hero strip */
.pp-hero {
  background: #111010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 60px 48px 52px;
}
.pp-hero__eyebrow {
  display: inline-block;
  background: #eb1414;
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 20px;
}
.pp-hero__title {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
  line-height: 1.15;
}
.pp-hero__title span {
  color: #eb1414;
}
.pp-hero__meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

/* Layout */
.pp-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

/* Sidebar TOC */
.pp-toc {
  padding: 40px 32px 40px 0;
  position: sticky;
  top: 56px;
  align-self: start;
  height: calc(100vh - 56px);
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.pp-toc__heading {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 16px;
}
.pp-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pp-toc ol li {
  counter-increment: toc;
}
.pp-toc ol li a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-left: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  line-height: 1.4;
}
.pp-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  color: #eb1414;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.pp-toc ol li a:hover,
.pp-toc ol li a.is-active {
  color: #fff;
  border-left-color: #eb1414;
}

/* Main content */
.pp-content {
  padding: 40px 0 0 48px;
}

.pp-section {
  margin-bottom: 52px;
  scroll-margin-top: 80px;
}

.pp-section__num {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #eb1414;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pp-section h2 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 18px;
  line-height: 1.3;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pp-section p {
  margin: 0 0 14px;
  color: #bbb;
  font-size: 12.5px;
  line-height: 1.8;
  max-width: 72ch;
}

.pp-section ul,
.pp-section ol {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #bbb;
  font-size: 12.5px;
  line-height: 1.8;
  max-width: 72ch;
}

.pp-section li {
  margin-bottom: 6px;
}

.pp-section strong {
  color: #e8e8e8;
}

.pp-section a {
  color: #eb1414;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pp-section a:hover {
  color: #fff;
}

/* Highlight box */
.pp-callout {
  border-left: 3px solid #eb1414;
  background: rgba(235, 20, 20, 0.06);
  padding: 16px 20px;
  margin: 0 0 18px;
  font-size: 12px;
  color: #ccc;
  max-width: 72ch;
}

/* Table */
.pp-table {
  width: 100%;
  max-width: 72ch;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 12px;
}
.pp-table th {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pp-table td {
  padding: 10px 14px;
  color: #bbb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}
.pp-table tr:last-child td {
  border-bottom: none;
}

/* Footer strip */
.pp-footer {
  background: #0a0909;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pp-footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.3px;
}
.pp-footer__links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pp-footer__links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.pp-footer__links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .pp-nav {
    padding: 0 20px;
  }
  .pp-hero {
    padding: 40px 20px 32px;
  }
  .pp-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }
  .pp-toc {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
    overflow: visible;
  }
  .pp-toc ol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .pp-toc ol li a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 4px 6px;
  }
  .pp-toc ol li a:hover,
  .pp-toc ol li a.is-active {
    border-left-color: transparent;
    border-bottom-color: #eb1414;
  }
  .pp-content {
    padding: 32px 0 0;
  }
  .pp-footer {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
