:root {
  color-scheme: light;
  --canvas: #fff8e7;
  --surface: #fffdf5;
  --ink: #173d31;
  --muted: #5d7168;
  --moss: #477b5e;
  --lime: #dff36b;
  --sky: #8ed3ff;
  --sun: #ffd95a;
  --coral: #ff826c;
  --pink: #ffbdd1;
  --lilac: #c8b5ff;
  --sans: "Avenir Next", Avenir, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.94;
}

h2 {
  margin: 58px 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.nav {
  display: flex;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.nav nav a:hover,
.nav nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
}

.brand-mark::before {
  position: absolute;
  top: 12px;
  left: 6px;
  width: 17px;
  height: 8px;
  border-top: 2px solid var(--surface);
  border-radius: 50%;
  content: "";
  transform: rotate(-17deg);
}

.brand-mark::after {
  position: absolute;
  bottom: 6px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--sky);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.page-hero::before {
  right: -80px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  background: var(--lime);
}

.page-hero::after {
  right: 170px;
  bottom: 40px;
  width: 72px;
  height: 72px;
  background: var(--coral);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 104px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.effective {
  display: inline-block;
  margin: 12px 0 0;
  padding: 7px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
}

.legal-article {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 110px;
}

.legal-article > section:first-child h2 {
  margin-top: 0;
}

.legal-article p,
.legal-article li,
.legal-article address {
  color: #344f45;
}

.legal-article li + li {
  margin-top: 8px;
}

.legal-article a {
  font-weight: 750;
  text-underline-offset: 3px;
}

.callout {
  margin: 24px 0 36px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink) !important;
  font-weight: 750;
  transform: rotate(-0.4deg);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 100px;
}

.info-card {
  display: flex;
  min-height: 280px;
  padding: 25px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  flex-direction: column;
  box-shadow: 6px 6px 0 var(--ink);
}

.info-card:nth-child(1) {
  background: var(--lime);
  transform: rotate(-0.7deg);
}

.info-card:nth-child(2) {
  background: var(--pink);
  transform: rotate(0.5deg);
}

.info-card:nth-child(3) {
  background: var(--sun);
  transform: rotate(-0.3deg);
}

.info-card p {
  color: #355047;
}

.info-card a {
  margin-top: auto;
  font-weight: 900;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  box-shadow: 4px 4px 0 rgba(23, 61, 49, 0.32);
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.support-actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.support-actions .button:nth-child(2) {
  background: var(--surface);
  color: var(--ink);
}

.back-link {
  display: inline-block;
  margin-top: 70px;
}

address {
  font-style: normal;
}

footer {
  display: grid;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 2px solid var(--ink);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.copyright {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
  }

  .nav nav {
    gap: 12px;
  }

  .nav nav a {
    font-size: 0.72rem;
  }

  .brand span:last-child {
    display: none;
  }

  .page-hero-copy {
    padding: 70px 0 80px;
  }

  .page-hero::after {
    display: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 230px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .copyright {
    grid-column: auto;
  }
}
