/* ==========================================================================
   Time Pass — legal.css
   Privacy Policy and Terms of Service.

   These are the two pages on the site nobody wants to read, which is exactly
   why they get real typography instead of a wall of 12px grey text. Wider
   line height, a proper measure, headings that actually separate sections,
   and enough contrast to read on a phone in daylight. If someone does decide
   to read what they agreed to, the page shouldn't fight them.
   ========================================================================== */

.legal {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 246, 240, 0.72);
}

.legal h1 {
  font-family: 'Rajdhani', ui-sans-serif, sans-serif;
  font-size: clamp(2.1rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #F5F6F0;
}

.legal-updated {
  margin-top: 0.6rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(245, 246, 240, 0.35);
}

.legal h2 {
  margin-top: 2.6rem;
  margin-bottom: 0.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Rajdhani', ui-sans-serif, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #F5F6F0;
}

.legal h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(245, 246, 240, 0.9);
}

.legal p { margin-top: 0.85rem; }

.legal ul {
  margin-top: 0.85rem;
  padding-left: 1.1rem;
  list-style: none;
}

/* A volt dash rather than a bullet — the site has no round dots anywhere
   else, and a coloured marker gives a long list some rhythm to scan by. */
.legal li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 0.95rem;
}

.legal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: rgba(204, 255, 51, 0.65);
}

.legal strong { color: rgba(245, 246, 240, 0.95); font-weight: 600; }
.legal em { color: rgba(245, 246, 240, 0.85); font-style: italic; }

.legal code {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  color: #E8FFA6;
}

.legal a {
  color: #CCFF33;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(204, 255, 51, 0.4);
  transition: text-decoration-color 0.2s ease;
}

.legal a:hover { text-decoration-color: #CCFF33; }

.legal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-foot a { color: rgba(245, 246, 240, 0.45); text-decoration: none; }
.legal-foot a:hover { color: #CCFF33; }
