:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f4f1ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 10%, rgba(246, 130, 31, 0.22), transparent 32rem),
    linear-gradient(135deg, #fffdf8 0%, #f2eee4 100%);
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8vh 0 6vh;
}

.hero {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #c95510;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.lede {
  max-width: 680px;
  margin: 30px 0;
  color: #536076;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.6;
}

.status {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: fit-content;
  margin: 28px 0;
  padding: 16px 18px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(36, 42, 53, 0.07);
}

.status p {
  margin: 4px 0 0;
  color: #657087;
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: #21a366;
  box-shadow: 0 0 0 6px rgba(33, 163, 102, 0.13);
}

.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  background: #172033;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #c95510;
}

.checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10vh;
}

.checks article {
  padding: 24px;
  border-top: 2px solid #172033;
}

.checks span {
  color: #c95510;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.checks h2 {
  margin: 22px 0 10px;
  font-size: 1.15rem;
}

.checks p {
  margin: 0;
  color: #657087;
  line-height: 1.55;
}

@media (max-width: 720px) {
  main {
    width: min(100% - 28px, 1120px);
    padding-top: 6vh;
  }

  .checks {
    grid-template-columns: 1fr;
    margin-top: 7vh;
  }
}
