html {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

body {
  margin: 0;
  color: #1f2328;
  background: #f6f7f8;
}

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

.hero {
  width: min(680px, 100%);
}

.eyebrow,
.note,
.checksum {
  color: #5d6673;
}

h1 {
  margin: 10px 0 12px;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1;
}

.lead {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.45;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 28px 0;
}

.price {
  font-size: 40px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  color: #ffffff;
  background: #1f2328;
  text-decoration: none;
  font-weight: 600;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #eef0f2;
    background: #17191c;
  }

  .eyebrow,
  .note,
  .checksum {
    color: #a9b0ba;
  }

  .button {
    color: #17191c;
    background: #f4f6f8;
  }
}

