* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f4;
  color: #1f2933;
}

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

.hero {
  max-width: 760px;
  background: white;
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef2ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1;
  margin: 0 0 18px;
}

.subtitle {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  margin: 0 0 22px;
}

.body {
  font-size: 19px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 32px;
  color: #52606d;
}

.actions {
  margin-bottom: 22px;
}

.button {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  background: #1f2933;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.note {
  font-size: 15px;
  color: #7b8794;
  margin: 0;
}
