:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #332851;
  background: #fafaf9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background: #fafaf9;
}

.wash {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.wash-lavender {
  width: 440px;
  height: 440px;
  top: -180px;
  right: -160px;
  background: #f3eff8;
}

.wash-teal {
  width: 460px;
  height: 460px;
  bottom: -220px;
  left: -200px;
  background: #f0fafa;
}

.card {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(32px, 7vw, 56px);
  text-align: center;
  border: 1px solid rgba(51, 40, 81, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(51, 40, 81, 0.1);
}

.mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  background: #0a7a7b;
  font-size: 28px;
  font-weight: 700;
}

.brand {
  margin: 0 0 16px;
  color: #ca3074;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 8vw, 48px);
  line-height: 1.08;
}

.message {
  margin: 22px 0 0;
  color: #5f5378;
  font-size: 17px;
  line-height: 1.65;
}

.note {
  margin: 22px 0 0;
  color: #7b6e95;
  font-size: 14px;
  line-height: 1.5;
}

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