:root {
  color-scheme: light;
  --ink: #1a1b1e;
  --muted: #6e6b66;
  --paper: #f4f1eb;
  --line: rgba(26, 27, 30, 0.14);
  --accent: #d6f06a;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 80% 12%, rgba(214, 240, 106, 0.46), transparent 26rem),
    var(--paper);
}

a {
  color: inherit;
}

.shell {
  display: flex;
  flex-direction: column;
  width: min(100% - 3rem, 80rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem 0 1.5rem;
}

.nav,
.footer,
.footer-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.wordmark span {
  color: #9dbb22;
}

.nav-link {
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  color: var(--ink);
}

.hero {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  max-width: 52rem;
  padding: 8rem 0 10rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.8rem, 10vw, 8.8rem);
  font-weight: 560;
  letter-spacing: -0.085em;
  line-height: 0.88;
}

h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.lede {
  max-width: 28rem;
  margin: 2.5rem 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 10.5rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  color: var(--ink);
}

.footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.footer-left {
  gap: 1.5rem;
}

.footer a {
  text-decoration: none;
  transition: color 160ms ease;
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 2rem, 80rem);
    padding-top: 1.25rem;
  }

  .hero {
    padding: 7rem 0 8rem;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 6rem);
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .footer-left {
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
  }
}
