:root {
  --bg: #0a0a0a;
  --fg: #ededed;
  --muted: #888888;
  --border: #222222;
  --max-width: 640px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 96px;
}

header.site {
  padding-bottom: 48px;
}

header.site a.brand {
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: var(--fg);
  letter-spacing: -0.01em;
}

main {
  min-height: 60vh;
}

h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 16px;
}

h2 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 48px 0 12px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 8px;
}

p {
  margin: 0 0 16px;
}

.lede {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
}

a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

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

ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

li {
  margin-bottom: 6px;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.cta {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid var(--fg);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 8px;
}

.cta:hover {
  background: var(--fg);
  color: var(--bg);
}

.cta.disabled {
  border-color: var(--border);
  color: var(--muted);
  cursor: default;
}

.cta.disabled:hover {
  background: transparent;
  color: var(--muted);
}

.products {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products li {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.products li:last-child {
  border-bottom: 1px solid var(--border);
}

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

.products .product-name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.products .product-desc {
  color: var(--muted);
  font-size: 15px;
}

footer.site {
  margin-top: 96px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

footer.site a {
  color: var(--muted);
}

@media (max-width: 480px) {
  .wrap {
    padding: 32px 20px 64px;
  }
  h1 {
    font-size: 32px;
  }
  .lede {
    font-size: 17px;
  }
}
