:root {
  color-scheme: light;
  --paper: #F5F6F3;
  --paper-2: #ECEFE9;
  --ink: #0E2A21;
  --ink-soft: #2C4238;
  --muted: #5C6B63;
  --green: #1FA855;
  --green-bright: #25D366;
  --line: rgba(14, 42, 33, .12);
  --line-soft: rgba(14, 42, 33, .07);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green);
  font-weight: 600;
  text-underline-offset: .18em;
}

h1, h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
}

header {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .2);
}

main {
  padding: 56px 0 80px;
}

article {
  padding: clamp(24px, 6vw, 48px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(14, 42, 33, .06);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--green);
}

h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 6vw, 2.8rem);
}

h2 {
  margin: 2.2rem 0 .6rem;
  font-size: 1.15rem;
}

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

p {
  margin: .65rem 0;
}

ul, ol {
  margin: .7rem 0;
  padding-left: 1.35rem;
}

li + li {
  margin-top: .45rem;
}

.summary {
  margin: 26px 0 8px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--paper-2);
  color: var(--ink);
}

.updated {
  margin-top: 12px;
  font-size: .88rem;
  color: var(--muted);
}

.action {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green-bright);
  color: #062b16;
  text-decoration: none;
  font-weight: 600;
}

footer {
  padding: 36px 0 0;
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
}

@media (max-width: 560px) {
  main {
    padding: 32px 0 48px;
  }
  article {
    border-radius: 16px;
  }
}
