:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f6f3ec;
  color: #17221b;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgb(95 159 112 / 20%), transparent 34rem),
    linear-gradient(145deg, #f9f7f1 0%, #e8efe7 100%);
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.card {
  width: min(100%, 52rem);
  padding: clamp(2rem, 7vw, 5.5rem);
  border: 1px solid rgb(23 34 27 / 12%);
  border-radius: 2rem;
  background: rgb(255 255 255 / 76%);
  box-shadow: 0 2rem 6rem rgb(31 63 42 / 12%);
  backdrop-filter: blur(1rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: #397449;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.intro {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #536057;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.65;
}

.app-link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: #215f34;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.app-link:hover {
  background: #174927;
  transform: translateY(-1px);
}

.app-link:focus-visible {
  outline: 3px solid #8ac49a;
  outline-offset: 4px;
}

@media (max-width: 38rem) {
  .page {
    padding: 1rem;
  }

  .card {
    border-radius: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-link {
    transition: none;
  }
}
