/* ═══════════════════════════════════════════════
   time.md — Legal pages
   Extends style.css with the same app/design tokens.
   ═══════════════════════════════════════════════ */

.legal-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
  background: var(--bg);
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 32px 96px;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal-title {
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: clamp(-3px, -0.055em, -1.4px);
}

.legal-effective {
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 16px;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child { border-bottom: 0; }

.legal-section h2 {
  margin-bottom: 14px;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.legal-section p,
.legal-section ul li {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 26px;
}

.legal-section p { margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { font-weight: 600; }

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.legal-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-section code {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--accent-muted);
  padding: 2px 6px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.legal-section a,
.legal-contact a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover,
.legal-contact a:hover { color: var(--accent-hover); }

.legal-contact { margin-top: 8px; }
.legal-contact a { font-size: 16px; font-weight: 500; line-height: 24px; }

@media (max-width: 600px) {
  .legal-inner { padding-left: 20px; padding-right: 20px; }
  .legal-title { letter-spacing: -1.4px; }
}
