:root {
  --olive-deep: #0b100a;
  --olive: #1a2418;
  --sage: #7a9472;
  --mist: #c8d4c4;
  --cream: #f0f4ee;
  --teal: #2bb3a3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--olive-deep);
  color: var(--cream);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

body {
  min-height: 100vh;
}

a {
  color: var(--teal);
}

.wrap {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
}

.top img {
  height: 28px;
  mix-blend-mode: screen;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(to top, #2bb3a3, #0f6b62);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

h1 {
  font-size: 34px;
  letter-spacing: -0.03em;
  margin: 8px 0 8px;
}

.updated,
.lede {
  color: var(--sage);
  line-height: 1.7;
}

.lede {
  color: var(--mist);
  font-size: 17px;
}

h2 {
  font-size: 20px;
  margin: 32px 0 10px;
}

p,
li {
  color: var(--mist);
  line-height: 1.75;
}

ul {
  padding-left: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

th,
td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(122, 148, 114, 0.22);
  color: var(--mist);
  vertical-align: top;
}

th {
  color: var(--cream);
  font-weight: 600;
}

.legal-nav,
.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 22px 0;
  font-size: 13px;
}

.legal-footer {
  border-top: 1px solid rgba(122, 148, 114, 0.2);
  color: var(--sage);
}

.contact-card {
  border: 1px solid rgba(122, 148, 114, 0.28);
  background: var(--olive);
  border-radius: 20px;
  padding: 20px 22px;
}

.contact-card a {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}

#root:not(:empty) ~ #crawler-legal {
  display: none;
}
