:root {
  color-scheme: light;
  font-family: Inter, Arial, sans-serif;
  color: #102033;
  background: #f3f7fb;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 32px;
}

.welcome-shell {
  width: min(900px, 100%);
  overflow: hidden;
  border: 1px solid #d9e3ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 35, 60, .12);
}

.welcome-shell.compact {
  width: min(720px, 100%);
}

.hero {
  padding: 36px 40px;
  background: linear-gradient(135deg, #172153, #2563eb);
  color: #fff;
}

.logo {
  width: 164px;
  height: auto;
}

.eyebrow {
  margin: 28px 0 0;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
}

.lead {
  max-width: 620px;
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.55;
}

.content {
  padding: 34px 40px 40px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.meta-grid div {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  padding: 16px;
}

.meta-grid span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.meta-grid strong {
  display: block;
  margin-top: 6px;
  word-break: break-word;
}

.message {
  margin: 26px 0 0;
  color: #5d6d7f;
  line-height: 1.7;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.links a {
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #1d4ed8;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 850;
}

.links a:hover {
  background: #eff6ff;
}

@media (max-width: 640px) {
  body {
    padding: 18px;
  }

  .hero,
  .content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }
}
