/* Page-specific token overrides (cyan-tinted subtle) */
:root {
  --accent-subtle: rgba(3, 202, 244, 0.06);
  --accent-subtle2: rgba(3, 202, 244, 0.12);
}

/* ─── PAGE WRAPPER ─── */
.page-wrap {
  padding-top: 92px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ─── HERO ─── */
.page-hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 0.5px solid var(--line2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, var(--accent-subtle) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.43em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--accent);
}
.page-hero h1 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--text3);
}
.page-hero p {
  font-size: 0.85rem;
  color: var(--text3);
  line-height: 1.95;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── CONTENT ─── */
.policy-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section-num {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.6rem;
  display: block;
}

.policy-section h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.policy-section p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 0.85rem;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.75rem 0;
}

.policy-section ul li {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.75;
  padding-left: 1.2rem;
  position: relative;
}
.policy-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: "DM Mono", monospace;
  font-weight: 500;
}

.policy-divider {
  border: none;
  border-top: 0.5px solid var(--line2);
  margin: 3rem 0;
}

.policy-highlight {
  background: var(--accent-subtle);
  border-left: 2px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.policy-highlight p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
.policy-highlight strong {
  color: var(--accent);
}

.last-updated {
  font-family: "DM Mono", monospace;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--text3);
  margin-bottom: 3rem;
  display: block;
}

a.policy-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(3, 202, 244, 0.3);
  transition: border-color 0.2s;
}
a.policy-link:hover {
  border-color: var(--accent);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 680px) {
  .policy-wrap {
    padding: 2.5rem 1.25rem 4rem;
  }
  .page-hero {
    padding: 3.5rem 1.25rem 2.5rem;
  }
}
