@font-face {
  font-family: Pixelify;
  src: url("/fonts/pixelify-sans-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-latin-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  font-family: Manrope, system-ui, sans-serif;
  color: #253c31;
  background: #f8f5ec;
  line-height: 1.8;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:focus-visible {
  outline: 3px solid #a56f20;
  outline-offset: 5px;
}
header,
main,
footer {
  max-width: 1040px;
  margin: auto;
  padding: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dddcd0;
  font-size: 12px;
}
.intro {
  max-width: 680px;
  padding-block: 45px;
}
.app-icon {
  background: #284a3b;
  padding: 3px;
  border-radius: 17px;
  display: block;
  margin-bottom: 22px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 750;
  color: #657154;
}
h1,
h2 {
  font-family: Pixelify, sans-serif;
  font-weight: 500;
  line-height: 1.1;
}
h1 {
  font-size: clamp(44px, 8vw, 74px);
  letter-spacing: -2px;
  margin: 20px 0;
}
h2 {
  font-size: 30px;
  margin: 0 0 15px;
}
.lead {
  font-size: 17px;
  color: #63695e;
  max-width: 580px;
}
.actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.button {
  display: inline-block;
  background: #2b4b39;
  color: #fffbed;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 3px 3px #bfc5ad;
}
.button:hover {
  background: #1c392a;
}
.secondary {
  background: #895039;
  box-shadow: 3px 3px #d5bda5;
}
.secondary:hover {
  background: #713e2b;
}
.beta {
  background: #f0ead5;
  border: 1px solid #d6c28b;
  padding: 12px 16px;
  display: inline-block;
  font-size: 12px;
}
.landscape {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: pixelated;
  border-bottom: 4px solid #2b4b39;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-block: 45px;
}
.features h2 {
  font-size: 27px;
}
.features p,
aside p {
  font-size: 13px;
  color: #63695e;
}
aside {
  background: #eeeee2;
  padding: 30px;
  border: 1px solid #dddcd0;
}
.back {
  display: inline-block;
  margin-top: 30px;
  font-size: 12px;
}
footer {
  font-size: 10px;
  color: #63695e;
  border-top: 1px solid #dddcd0;
  margin-top: 25px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
}
.skip-link:focus {
  top: 10px;
  background: #f8f5ec;
  padding: 10px;
}
@media (max-width: 650px) {
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 30px;
  }
  .intro {
    padding-block: 25px;
  }
  .lead {
    font-size: 14px;
  }
  aside {
    padding: 24px;
  }
  .actions {
    gap: 12px;
  }
  .button {
    font-size: 11px;
  }
  header,
  main,
  footer {
    padding: 20px;
  }
}

header {
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}
header > a {
  display: flex;
  align-items: center;
  min-height: var(--header-control-height);
}
header > a:nth-child(2) {
  margin-left: auto;
}
:root[data-theme="dark"] {
  color: #eeeedd;
  background: #16221d;
}
[data-theme="dark"] header,
[data-theme="dark"] footer {
  border-color: #3d4d40;
}
[data-theme="dark"] .eyebrow,
[data-theme="dark"] .lead,
[data-theme="dark"] .features p,
[data-theme="dark"] aside p,
[data-theme="dark"] footer {
  color: #b4bdab;
}
[data-theme="dark"] aside {
  background: #1e2e25;
  border-color: #495441;
}
[data-theme="dark"] .beta {
  background: #3b3624;
  border-color: #928251;
  color: #f1dfad;
}
[data-theme="dark"] .button {
  background: #365e44;
  box-shadow: 3px 3px #59734c;
}
[data-theme="dark"] .button:hover {
  background: #426e4b;
}
[data-theme="dark"] .secondary {
  background: #875139;
  box-shadow: 3px 3px #ac825e;
}
[data-theme="dark"] .secondary:hover {
  background: #75432f;
}
[data-theme="dark"] a:focus-visible {
  outline-color: #e0b966;
}
[data-theme="dark"] .skip-link:focus {
  background: #16221d;
}
@media (max-width: 650px) {
  header {
    gap: 12px;
  }
}
