:root {
  --bg: #ffffff;
  --ink: #151a18;
  --muted: #65716c;
  --soft: #e8ecea;
  --mark: #1e8a64;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.content {
  display: grid;
  width: min(100%, 820px);
  justify-items: center;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.mark {
  width: 18px;
  height: 18px;
  background: var(--mark);
  border-radius: 5px;
}

.divider {
  width: 52px;
  height: 1px;
  margin: 28px 0 26px;
  background: var(--soft);
}

h1 {
  max-width: 540px;
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.lead {
  max-width: 470px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.empty-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--soft);
  border-radius: 8px;
  cursor: default;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.empty-button:focus-visible {
  outline: 3px solid rgba(30, 138, 100, 0.18);
  outline-offset: 4px;
}

.info-grid {
  display: grid;
  width: min(100%, 760px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--soft);
  text-align: left;
}

article {
  min-width: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0;
}

article p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

@media (max-width: 560px) {
  .page {
    padding: 22px;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
    padding-top: 28px;
    text-align: center;
  }
}
