:root {
  --dk-ink: #101511;
  --dk-ink-2: #182019;
  --dk-green: #5f8f22;
  --dk-green-light: #86b93d;
  --dk-green-soft: #dcebc8;
  --dk-paper: #f4f6f1;
  --dk-muted: #687267;
  --dk-line: #dbe1d8;
  --dk-white: #ffffff;

  --dk-radius-sm: 14px;
  --dk-radius-md: 18px;
  --dk-radius-lg: 24px;

  --dk-shadow: 0 24px 80px rgba(15, 25, 15, .12);
  --dk-wrap: min(1180px, calc(100% - 40px));
}

.dk-page,
.dk-page * {
  box-sizing: border-box;
}

.dk-page {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--dk-ink);
  background: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.dk-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.dk-page a {
  color: inherit;
  text-decoration: none;
}

.dk-page .wrap,
.dk-page .dk-wrap {
  width: var(--dk-wrap);
  margin-inline: auto;
}

.dk-page h1,
.dk-page h2,
.dk-page h3,
.dk-page h4,
.dk-page p {
  margin-top: 0;
}

.dk-page .kicker {
  margin-bottom: 10px;
  color: var(--dk-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.dk-page .section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.dk-page .section-head h2 {
  margin-bottom: 0;
  color: var(--dk-ink);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.dk-page .section-head p {
  margin: 18px 0 0;
  color: var(--dk-muted);
  font-size: 18px;
}

.dk-page .btn {
  min-height: 52px;
  padding: 0 21px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    transform .2s ease,
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.dk-page .btn-primary {
  background: var(--dk-green-light);
  color: #14200d;
}

.dk-page .btn-primary:hover {
  background: #9aca50;
  transform: translateY(-2px);
}

.dk-page .btn-outline {
  border: 1px solid currentColor;
  background: transparent;
}

.dk-page .dark {
  background: var(--dk-ink);
  color: #fff;
}

.dk-page .dark .kicker {
  color: #b5dc79;
}

.dk-page .dark h1,
.dk-page .dark h2,
.dk-page .dark h3,
.dk-page .dark h4 {
  color: #fff !important;
}

.dk-page .dark p {
  color: #bac2b8;
}

.dk-page .reveal {
  will-change: transform, opacity;
}

.dk-page button,
.dk-page input,
.dk-page select,
.dk-page textarea {
  font: inherit;
}

@media (max-width: 620px) {
  :root {
    --dk-wrap: min(100% - 28px, 1180px);
  }

  .dk-page .section-head {
    margin-bottom: 32px;
  }

  .dk-page .section-head h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .dk-page .section-head p {
    font-size: 16px;
  }
}