:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f4ec;
  color: #141a17;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(184, 244, 93, 0.22), transparent 28rem),
    #f7f4ec;
}

main {
  width: min(780px, calc(100% - 32px));
  margin: 32px auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid #dde2de;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 32, 24, 0.12);
}

.brand {
  width: 152px;
  height: auto;
  display: block;
  margin: 0 0 24px;
  border-radius: 16px;
}

h1 {
  margin: 0 0 18px;
  color: #1e2d27;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  margin: 28px 0 8px;
  color: #1e2d27;
  font-size: 1.1rem;
  line-height: 1.4;
}

p,
li {
  color: #5f6c65;
  line-height: 1.65;
}

a {
  color: #284d37;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 8px;
  color: #31483b;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.updated {
  padding: 12px 16px;
  border-radius: 12px;
  background: #ecffd1;
  color: #31483b;
}

.legalSummary {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid #d7e4db;
  border-radius: 16px;
  background: #f4f9f3;
}

.legalSummary strong {
  color: #1e2d27;
}

.legalSummary ul {
  margin-bottom: 0;
  padding-left: 20px;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #142b22;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 600px) {
  main {
    margin: 16px auto;
  }

  .brand {
    width: 120px;
  }
}
