:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f4fb;
  color: #241c2f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 5%, rgb(218 184 247 / 48%), transparent 34rem),
    radial-gradient(circle at 5% 90%, rgb(204 205 244 / 40%), transparent 28rem),
    #f7f4fb;
}

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

.card {
  width: min(100%, 460px);
  padding: 42px 32px 34px;
  border: 1px solid rgb(93 71 119 / 12%);
  border-radius: 30px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 24px 70px rgb(72 49 97 / 14%);
  text-align: center;
}

.mark {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 22px;
  background: #7b4aa5;
  color: #fff;
  font-size: 30px;
  font-weight: 750;
}

.mark--warning {
  background: #9d5f26;
}

.eyebrow {
  margin: 0 0 8px;
  color: #76558f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.description {
  margin: 18px auto 28px;
  color: #635a6d;
  font-size: 17px;
  line-height: 1.55;
}

.primary {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: #714097;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
}

.primary:hover {
  background: #5f327f;
}

.primary:focus-visible {
  outline: 3px solid #b983dc;
  outline-offset: 3px;
}

.primary:disabled {
  cursor: wait;
  opacity: 0.62;
}

.privacy {
  margin: 18px 0 0;
  color: #776e80;
  font-size: 14px;
}

[hidden] {
  display: none;
}

@media (max-width: 480px) {
  .shell {
    padding: 16px;
  }

  .card {
    padding: 34px 24px 28px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
