:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #243431;
  background: #f5f2e9;
  --deep: #143f38;
  --green: #246a58;
  --paper: #fffdf8;
  --muted: #66736f;
  --line: #d9ddd6;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 82% 0,
      rgba(216, 145, 63, 0.1),
      transparent 24rem
    ),
    #f5f2e9;
}
a {
  color: var(--green);
}
p,
li {
  line-height: 1.68;
}
.legal-header {
  width: min(960px, calc(100% - 36px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--deep);
  font-weight: 850;
}
.brand img {
  width: 40px;
  height: 40px;
}
.legal-header > a:last-child {
  font-size: 13px;
  font-weight: 800;
}
.legal-shell {
  width: min(960px, calc(100% - 36px));
  margin: 36px auto 90px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  display: grid;
  gap: 6px;
}
.legal-nav strong {
  padding: 5px 8px 10px;
  color: var(--deep);
}
.legal-nav a {
  padding: 9px 8px;
  border-radius: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.legal-nav a.active {
  background: #e1eee8;
  color: var(--deep);
}
.legal-content {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(36, 70, 64, 0.12);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 22px 60px rgba(28, 58, 51, 0.07);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 850;
  color: var(--green);
}
h1 {
  margin: 10px 0 12px;
  color: var(--deep);
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}
h2 {
  margin: 38px 0 10px;
  color: var(--deep);
  font-size: 24px;
  letter-spacing: -0.025em;
}
h3 {
  margin: 24px 0 7px;
  color: var(--deep);
}
.lead {
  color: var(--muted);
  font-size: 17px;
}
.effective {
  display: inline-flex;
  margin: 8px 0 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #e1eee8;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
}
.notice {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  background: #eef4f1;
}
.legal-content code {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 6px;
  background: #e9eeeb;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.legal-content th,
.legal-content td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}
.legal-content th {
  color: var(--deep);
}
.legal-content footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 760px) {
  .legal-shell {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-nav strong {
    grid-column: 1/-1;
  }
  .legal-content {
    padding: 24px;
  }
  .legal-content table,
  .legal-content tbody,
  .legal-content tr,
  .legal-content th,
  .legal-content td {
    display: block;
  }
  .legal-content th {
    padding-bottom: 3px;
    border: 0;
  }
  .legal-content td {
    padding-top: 3px;
  }
}
