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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(81, 69, 205, 0.09), transparent 30rem),
    #f7f8fc;
}

.lock-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
}

.lock-card {
  width: min(100%, 430px);
  padding: 42px 38px;
  border: 1px solid #e4e7ec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(23, 25, 35, 0.08);
  text-align: center;
}

.mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 14px;
  background: #5145cd;
  color: #fff;
  font-size: 22px;
  font-weight: 760;
}

.product {
  margin: 0 0 10px;
  color: #5145cd;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 8vw, 38px);
  letter-spacing: -0.04em;
}

.lead {
  margin: 18px auto 26px;
  color: #667085;
  font-size: 17px;
  line-height: 1.55;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #f8f7ff;
  color: #3538a8;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.privacy-note svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 480px) {
  .lock-card {
    padding: 34px 24px;
    border-radius: 18px;
  }
}
