/* ==========================================================================
   Legal / policy documents — shared by terms.html and privacy.html
   Extracted verbatim from the inline <style> block in terms.html so both
   documents can share one definition instead of duplicating it.
   ========================================================================== */

/* Skip-to-content link. Carried over from privacy.html's original inline
   styles; styles.css does not define .skip. */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10;
}
.skip:focus { left: 0; }

.tc-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
@media (max-width: 720px) { .tc-wrap { padding: 48px 20px 80px; } }

.tc-notice {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--navy);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.tc-notice .tc-notice-label {
  font-family: var(--mono, 'SF Mono', Menlo, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.tc-notice h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.tc-notice p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.tc-notice p:last-child { margin-bottom: 0; }
.tc-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s var(--ease);
}
.tc-download:hover { transform: translateY(-1px); background: #000; color: var(--bg); }
.tc-download svg { width: 14px; height: 14px; }

.tc-title-block { margin-bottom: 32px; }
.tc-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.tc-h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.tc-subtitle {
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.tc-meta {
  font-family: var(--mono, 'SF Mono', Menlo, monospace);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
}

.tc-toc {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 40px 0 56px;
}
.tc-toc h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.tc-toc ol { list-style: none; padding: 0; }
.tc-toc li { margin-bottom: 6px; }
.tc-toc a {
  font-size: 15px;
  color: var(--ink-2);
  display: flex;
  gap: 12px;
  padding: 4px 0;
}
.tc-toc a:hover { color: var(--ink); }
.tc-toc .toc-n {
  font-family: var(--mono, 'SF Mono', Menlo, monospace);
  font-size: 12px;
  color: var(--ink-4);
  min-width: 24px;
}

.tc-section { margin-bottom: 48px; scroll-margin-top: 80px; }
.tc-h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  gap: 16px;
}
.tc-num {
  font-family: var(--mono, 'SF Mono', Menlo, monospace);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-4);
  padding-top: 6px;
  min-width: 32px;
  letter-spacing: 0;
}
.tc-p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.tc-p strong { color: var(--ink); font-weight: 600; }
.tc-list-heading { font-weight: 600; color: var(--ink); margin-bottom: 8px !important; }

.tc-dl { margin: 8px 0 20px; }
.tc-dl dt {
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  margin-top: 14px;
  margin-bottom: 4px;
}
.tc-dl dt:first-child { margin-top: 0; }
.tc-dl dd {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-left: 0;
  padding-left: 16px;
  border-left: 2px solid var(--rule-soft);
}

.tc-ul { margin: 8px 0 20px; padding-left: 0; list-style: none; }
.tc-ul li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  padding: 4px 0 4px 22px;
  position: relative;
}
.tc-ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: 14px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--navy);
}

.tc-footer-note {
  margin-top: 80px;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 12px;
  font-family: var(--mono, 'SF Mono', Menlo, monospace);
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.tc-footer-note strong { color: var(--ink); }

/* Inline prose links. terms.html has none in its body copy, so it never
   needed this; styles.css resets anchors to `color: inherit; text-decoration:
   none`, which would render privacy.html's inline links indistinguishable
   from surrounding text. */
.tc-p a,
.tc-dl dd a,
.tc-ul li a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tc-p a:hover,
.tc-dl dd a:hover,
.tc-ul li a:hover { color: var(--ink); }
