:root {
  --bg: #fff;
  --fg: #111;
  --muted: #111;
  --measure: 34rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:hover {
  text-decoration-thickness: 2px;
}

.page {
  min-height: 100svh;
  max-width: var(--measure);
  padding: 2.25rem 1.35rem 3.5rem;
  display: flex;
  flex-direction: column;
}

.mark {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mark a {
  text-decoration: none;
}

.mark a:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.lede {
  margin: 5.5rem 0 0;
  max-width: 22em;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
}

.products {
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2.25rem;
}

.products a {
  text-decoration: none;
  display: block;
}

.products h2 {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.products p {
  margin: 0;
  max-width: 26em;
}

.product-name {
  margin: 5.5rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-copy {
  margin: 1.25rem 0 0;
  max-width: 24em;
}

.product-status {
  margin: 2.25rem 0 0;
}

@media (min-width: 640px) {
  .page {
    padding: 3rem 2.5rem 4rem;
  }

  .products {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
}
