:root {
  color-scheme: light;
  --bg: #f4f7f6;
  --surface: #ffffff;
  --text: #17201e;
  --muted: #66726f;
  --line: #dce5e2;
  --brand: #00665f;
  --brand-soft: #e5f2f0;
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 94%);
}

.header-inner,
.page {
  width: min(100% - 32px, 880px);
  margin-inline: auto;
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.header-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.header-nav a {
  color: var(--muted);
  text-decoration: none;
}

.page {
  padding-block: 48px 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.2;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 46px);
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 12px;
  font-size: 21px;
}

p,
li {
  color: var(--muted);
}

.lead {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: 18px;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 650;
  text-decoration: none;
}

.button.secondary {
  background: var(--surface);
  color: var(--brand);
}

.panel {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.panel h2:first-child {
  margin-top: 0;
}

.meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

ul,
ol {
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

.site-footer {
  padding: 24px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .header-nav {
    gap: 14px;
    overflow-x: auto;
    width: 100%;
  }

  .page {
    padding-block: 36px 56px;
  }

  .panel {
    padding: 20px;
  }
}
