:root {
  color-scheme: light dark;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: #edf2e9;
  color: #173d36;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 90% 10%, rgb(183 239 99 / 24%), transparent 28rem), #edf2e9;
}

.legal-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.legal-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
}

article {
  margin-top: 28px;
  padding: clamp(24px, 6vw, 54px);
  border: 1px solid #bdd0c7;
  border-radius: 28px;
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 22px 60px rgb(21 58 51 / 10%);
}

h1,
h2 {
  line-height: 1.08;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 8vw, 3.5rem);
}

h2 {
  margin-top: 2rem;
}

p,
li {
  line-height: 1.65;
}

a {
  color: #126f5d;
}

.eyebrow {
  color: #267a66;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 12px;
  padding: 0 20px;
  border-radius: 14px;
  background: #145f51;
  color: white;
  font-weight: 800;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #091310;
    color: #ecf6ef;
  }

  body {
    background:
      radial-gradient(circle at 90% 10%, rgb(106 194 79 / 17%), transparent 28rem), #091310;
  }

  article {
    border-color: #30433c;
    background: rgb(18 31 27 / 92%);
  }

  a {
    color: #9ce7c5;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
