* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #faf9f6;
  color: #16211f;
}

body {
  margin: 0;
}

main {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

a {
  color: #1f6056;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f6056;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

h1 {
  max-width: 760px;
  margin: 34px 0 16px;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.02;
}

p {
  max-width: 760px;
  color: #4e5c58;
  font-size: 18px;
  line-height: 1.7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.tags a,
.cta {
  border: 1px solid rgba(31, 96, 86, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(31, 96, 86, 0.08);
  text-decoration: none;
}

.cta {
  display: inline-flex;
  margin-top: 14px;
  background: #1f6056;
  color: white;
}
