/* =========================================================
   privacy.css - page-specific styles for privacy.html
   Depends on styles.css for all design tokens and base classes
   ========================================================= */

/* ── Hero ── */
.pol-hero {
  padding: clamp(56px, 7vw, 110px) var(--pad-x) clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.pol-hero .eyebrow {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.pol-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.pol-lede {
  text-align: left;
  margin: 0;
}

.pol-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.pol-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pol-meta-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.pol-meta-v {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ── Links ── */
.pol-link {
  color: var(--accent);
}

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

/* ── Table of contents ── */
.pol-toc {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--pad-x);
}

.pol-toc-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.pol-toc-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}

.pol-toc-link:hover {
  color: var(--accent);
}

.pol-toc-sep {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--line);
}

/* ── Body layout ── */
.pol-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Section rows ── */
.pol-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 5vw, 72px) 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px 56px;
  align-items: start;
}

.pol-section--last {
  border-bottom: 0;
}

@media (max-width: 860px) {
  .pol-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Section label (left column) ── */
.pol-label {
  position: sticky;
  top: 80px;
}

.pol-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 8px 0 0;
  color: var(--ink);
}

/* ── Content (right column) ── */
.pol-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pol-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}

.pol-content p strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── Subsection label ── */
.pol-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 8px 0 2px;
}

/* ── Bullet list ── */
.pol-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pol-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
  display: block;
}

.pol-list li:last-child {
  border-bottom: 0;
}

.pol-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.pol-list li strong {
  display: inline;
  color: var(--ink);
  font-weight: 600;
}

.pol-item {
  display: block;
}

/* ── Spec grid (key / value table) ── */
.pol-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

@media (max-width: 600px) {
  .pol-spec {
    grid-template-columns: 1fr;
  }
}

.pol-spec-row {
  display: contents;
}

.pol-spec-k,
.pol-spec-v {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
}

.pol-spec-row:last-child .pol-spec-k,
.pol-spec-row:last-child .pol-spec-v {
  border-bottom: 0;
}

.pol-spec-k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.pol-spec-v {
  color: var(--ink-2);
}

/* ── Commitment callout box ── */
.pol-commit {
  border-left: 2px solid var(--accent);
  padding: 16px 20px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pol-commit-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0;
}

.pol-commit p:not(.pol-commit-label) {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ── Contact block ── */
.pol-contact {
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
}

.pol-contact-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 20px;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 15px;
}

.pol-contact-row:last-child {
  border-bottom: 0;
}

.pol-contact-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  min-width: 100px;
  flex-shrink: 0;
}

.pol-contact-v {
  color: var(--ink);
  line-height: 1.5;
}

