/* Shared styles for privacy.html and terms.html */

:root { --max-w: 680px; }

nav { position: sticky; }

main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 100px;
}

/* ── Page header ── */
.page-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 16px;
}
.page-h1 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 56px;
}

/* ── Summary banner (privacy page) ── */
.summary-banner {
  background: var(--surface-2);
  border: 1px solid rgba(0,122,255,0.25);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 52px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.summary-banner strong { color: var(--text-primary); }

/* ── Policy content ── */
.policy-section { margin-bottom: 44px; }
.policy-h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.policy-body + .policy-body { margin-top: 12px; }
.policy-list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.policy-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.7;
}
.contact-link { color: var(--accent); text-decoration: none; }
.contact-link:hover { text-decoration: underline; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-links a:hover { color: var(--text-primary); }
