:root {
  --bg: #f6f4ef;
  --ink: #17160f;
  --muted: #5b584e;
  --rule: #d9d4c6;
  --accent: #8a3a22;
  --max: 1040px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Palatino", Georgia, serif;
  --sans: ui-sans-serif, -apple-system, "SF Pro Text", "Inter", "Segoe UI",
    system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111110;
    --ink: #ece8dc;
    --muted: #9a968a;
    --rule: #2a2925;
    --accent: #e28a6b;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 120ms ease, color 120ms ease;
}
a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

header.site {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.01em;
  border: none;
}
.mark:hover {
  color: var(--ink);
}
.mark-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

header.site nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
}
header.site nav a {
  border: none;
  color: var(--muted);
}
header.site nav a:hover {
  color: var(--accent);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 96px;
}

.hero {
  padding: 112px 0 96px;
  border-bottom: 1px solid var(--rule);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

section {
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}
section:last-of-type {
  border-bottom: none;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}
h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
}

.product-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.product {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--rule);
}
.product:nth-child(3) {
  border-right: none;
  padding-right: 0;
  padding-left: 24px;
}
.product:nth-child(2) {
  padding-left: 24px;
}
.product .status {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.product p {
  color: var(--muted);
  margin: 0;
}
.product.placeholder h3 {
  color: var(--muted);
}

.about p,
.support p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 28px 48px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 14px;
}
.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer a {
  color: var(--muted);
  border: none;
}
footer a:hover {
  color: var(--accent);
}
.disclaimer {
  max-width: 70ch;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  opacity: 0.85;
}

.legal {
  padding: 96px 0 48px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 42px;
  margin: 0 0 8px;
}
.legal .updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 40px;
}
.legal h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 10px;
}
.legal p,
.legal li {
  color: var(--muted);
  max-width: 70ch;
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product,
  .product:nth-child(2),
  .product:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 24px 0;
  }
  .product:last-child {
    border-bottom: none;
  }
  header.site nav {
    gap: 16px;
  }
  .hero {
    padding: 72px 0 64px;
  }
  section {
    padding: 56px 0;
  }
}
