:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #182033;
  background: #f7f2e9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f2e9;
}

.page {
  width: min(100% - 32px, 540px);
  margin: 0 auto;
  padding: 32px 0 20px;
}

.avatar {
  display: block;
  margin: 0 auto 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 20px rgb(24 32 51 / 12%);
}

.eyebrow {
  margin: 0 0 10px;
  color: #a14d38;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1.08;
  text-align: center;
}

h2 {
  margin-bottom: 12px;
  font-size: 21px;
}

p,
li {
  font-size: 18px;
  line-height: 1.5;
}

p {
  margin-bottom: 16px;
}

section {
  margin: 28px 0 24px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li + li {
  margin-top: 8px;
}

.button {
  display: block;
  width: 100%;
  margin: 28px 0;
  padding: 22px 24px;
  min-height: 64px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #161f8a 0%, #2d085f 100%);
  box-shadow: 0 8px 24px rgb(22 31 138 / 35%), 0 2px 8px rgb(45 8 95 / 30%);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .15s ease, filter .15s ease;
}

.button:hover {
  background: linear-gradient(135deg, #01c5c8 0%, #046ef4 45%, #572dff 100%);
  box-shadow: 0 10px 30px rgb(4 110 244 / 40%), 0 2px 8px rgb(87 45 255 / 30%);
}

.button:focus-visible {
  outline: 3px solid #161f8a;
  outline-offset: 3px;
}

.button:active {
  transform: translateY(1px);
  filter: brightness(.92);
}

.trust {
  margin: 24px 0;
  padding-left: 14px;
  border-left: 3px solid #a14d38;
}

.question {
  margin-top: 28px;
}

.note {
  margin: -12px 0 0;
  color: #5d6270;
  font-size: 14px;
  text-align: center;
}

footer {
  padding: 12px 16px 28px;
  text-align: center;
}

footer a {
  color: #5d6270;
  font-size: 13px;
}

.metric-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
}

@media (max-width: 420px) {
  .page {
    width: min(100% - 28px, 540px);
    padding-top: 24px;
  }

  p,
  li {
    font-size: 17px;
  }
}

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