:root {
  --ink: #14231e;
  --ink-soft: #56665f;
  --cream: #f8f5ed;
  --paper: #fffdf8;
  --mint: #dfeee3;
  --green: #3f7d5a;
  --deep: #173e30;
  --line: rgba(20, 35, 30, 0.13);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--green);
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-180%);
  z-index: 10;
}
.skip-link:focus {
  transform: none;
  padding: 8px 14px;
  background: white;
  border-radius: 10px;
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 24px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}
.back-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
}
.legal-hero {
  padding: 88px 20px 78px;
  color: white;
  background: var(--deep);
}
.legal-hero-inner,
.legal-content {
  width: min(100%, 820px);
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 18px;
  color: #a3d8b1;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2 {
  font-family: ui-rounded, 'SF Pro Rounded', 'Arial Rounded MT Bold', sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 {
  max-width: 740px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 8vw, 5.8rem);
}
.summary {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}
.effective {
  margin: 28px 0 0;
  color: #a3d8b1;
  font-size: 0.85rem;
  font-weight: 800;
}
.legal-content {
  padding: 74px 20px 100px;
}
.legal-content section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.legal-content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
}
.legal-content p {
  margin: 0 0 15px;
  color: var(--ink-soft);
}
.legal-content ul {
  margin: 0;
  padding-left: 23px;
  color: var(--ink-soft);
}
.legal-content li + li {
  margin-top: 10px;
}
.support-card {
  margin: 28px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}
.support-card h2 {
  margin-top: 0;
}
footer {
  padding: 34px 20px;
  color: rgba(255, 255, 255, 0.7);
  background: #0f2e24;
  text-align: center;
  font-size: 0.86rem;
}
footer a {
  color: white;
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .legal-header {
    width: min(100% - 28px, 920px);
  }
  .legal-hero {
    padding-top: 62px;
  }
  .legal-content {
    padding-top: 46px;
  }
}
