body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(30, 64, 175, 0.14), transparent 28rem),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 48%, #ffffff 100%);
  color: #10203a;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero {
  width: 100%;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(30, 64, 175, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  padding: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(30, 64, 175, 0.08);
  color: #1e40af;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 18px 0 10px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #42526b;
}

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

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.actions a:first-child {
  background: #1e40af;
  color: #fff;
  box-shadow: 0 18px 32px rgba(30, 64, 175, 0.24);
}

.actions a:last-child {
  background: #eef4ff;
  color: #16306f;
}
