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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

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

.hero {
  width: min(720px, 100%);
  padding: 48px;
  border: 1px solid #d8dde8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgb(23 32 51 / 10%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #2f6fed;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 56ch;
  margin: 22px 0 0;
  color: #4b5872;
  font-size: 1.12rem;
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #eef2f8;
  color: #26324a;
  font-size: 0.95em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5ccd9;
  border-radius: 8px;
  padding: 0 18px;
  color: #172033;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: #2f6fed;
  background: #2f6fed;
  color: #ffffff;
}

@media (max-width: 560px) {
  .hero {
    padding: 32px 24px;
  }
}
