:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17191d;
  background: #f4f5f7;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f4f5f7;
}

a {
  color: inherit;
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font: 800 0.9rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.16em;
}

.brand img {
  display: block;
}

.button {
  display: inline-block;
  padding: 0.75rem 1rem;
  border: 1px solid #17191d;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  color: #fff;
  background: #17191d;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-content: center;
  padding: clamp(4rem, 12vw, 9rem) 0;
}

.eyebrow,
.tag {
  font: 700 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.13em;
}

.hero h1 {
  max-width: 900px;
  margin: 0.7rem 0 1rem;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.lede {
  max-width: 680px;
  color: #5c626c;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.features article,
.statement {
  border: 1px solid #d7d9de;
  background: #fff;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.features h2,
.statement h2 {
  margin: 0.65rem 0;
  font-size: 1.35rem;
}

.features article > p:last-child,
.statement > p {
  color: #5c626c;
  line-height: 1.6;
}

.tag {
  margin: 0;
  color: #5c626c;
}

.statement {
  margin-top: 1rem;
  color: #fff;
  background: #17191d;
}

.statement h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
}

.statement > p {
  max-width: 640px;
  color: #c9cdd3;
}

.statement .button {
  margin-top: 0.75rem;
  border-color: #fff;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d7d9de;
  color: #5c626c;
  font-size: 0.85rem;
}

footer a + a {
  margin-left: 1rem;
}

@media (max-width: 720px) {
  .features {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
