/* Atlas Intel — Privacy page styles */

.privacy {
  padding: 140px 32px 120px;
  background: var(--bg);
}

.privacy__inner {
  max-width: 760px;
  margin: 0 auto;
}

.privacy__header {
  text-align: left;
  margin-bottom: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.privacy__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--violet-soft);
  color: var(--violet-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.privacy__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.privacy__title em {
  font-family: "Inter", serif;
  font-style: italic;
  font-weight: 500;
}

.privacy__updated {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.privacy__intro {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.privacy__body section {
  margin-bottom: 56px;
}

.privacy__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}

.privacy__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.privacy__body ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy__body ul li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}

.privacy__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--violet);
}

.privacy__body strong {
  color: var(--ink);
  font-weight: 600;
}

.privacy__body a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1.5px solid var(--violet);
  transition: all var(--t-fast) var(--ease);
}

.privacy__body a:hover {
  color: var(--violet-2);
  border-bottom-color: var(--violet-2);
}

.privacy__footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.privacy__footer a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  transition: color var(--t-fast) var(--ease);
}

.privacy__footer a:hover {
  color: var(--ink);
}

@media (max-width: 720px) {
  .privacy {
    padding: 120px 24px 80px;
  }
  .privacy__header {
    margin-bottom: 56px;
    padding-bottom: 40px;
  }
  .privacy__intro {
    margin-bottom: 48px;
    padding-bottom: 24px;
  }
  .privacy__body section {
    margin-bottom: 44px;
  }
}
