:root {
  color: #171717;
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 0%, rgba(185, 255, 49, 0.22), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(255, 77, 160, 0.12), transparent 28rem),
    #fff;
}

a {
  color: inherit;
}

.page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.header,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 22px;
  font-weight: 860;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  text-decoration: none;
}

.hero {
  padding: clamp(44px, 8vw, 86px) 0 34px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid #d9f9a1;
  border-radius: 999px;
  background: rgba(185, 255, 49, 0.3);
  color: #315900;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin: 0;
  color: #111;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: #151515;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

p,
li {
  color: #565656;
  font-size: 18px;
  line-height: 1.7;
}

.lede {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: 21px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 820;
  text-decoration: none;
}

.section {
  padding: 34px 0;
  border-top: 1px solid #e8e8e8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.card p {
  margin: 0;
}

.linkList {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.footer {
  border-top: 1px solid #e8e8e8;
  color: #565656;
}

@media (max-width: 720px) {
  .header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
