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

* {
  box-sizing: border-box;
}

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

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

.panel {
  width: min(720px, 100%);
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 18px 50px rgb(15 23 42 / 10%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
}

.lead {
  margin: 18px 0 28px;
  max-width: 58ch;
  color: #52616f;
  font-size: 18px;
  line-height: 1.6;
}

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

.actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 6px;
  padding: 0 16px;
  background: #17202a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.actions a + a {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #17202a;
}

@media (max-width: 560px) {
  .shell {
    padding: 18px;
  }

  .panel {
    padding: 26px;
  }

  h1 {
    font-size: 34px;
  }
}
