:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d3150;
  background: #f3f0ff;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.9) 0 70px, transparent 71px),
    radial-gradient(circle at 85% 78%, rgba(255,212,105,.28) 0 110px, transparent 111px),
    linear-gradient(145deg, #f7f5ff, #ece8ff);
}

main {
  width: min(680px, calc(100% - 40px));
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.mascot {
  width: 112px;
  height: 112px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: white;
  box-shadow: 0 20px 60px rgba(88, 72, 170, .16);
  font-size: 64px;
  transform: rotate(-3deg);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6557da;
  font-size: 23px;
  font-weight: 800;
}

.logo span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: #7567e8;
}

h1 {
  margin: 24px 0 18px;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

p {
  margin: 0;
  color: #747b9d;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6;
}

.badge {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #5749ca;
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 30px rgba(88,72,170,.1);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer {
  padding: 24px;
  color: #989db7;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 520px) {
  main { padding: 40px 0; }
  .mascot { width: 96px; height: 96px; font-size: 54px; }
  p br { display: none; }
}
