:root {
  color-scheme: light dark;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f1ea;
  color: #18221d;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

main {
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid #d7d4cb;
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 20px 60px rgb(24 34 29 / 10%);
}

.mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: #245c45;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.eyebrow {
  margin: 28px 0 8px;
  color: #557064;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

p {
  color: #4b5c54;
  font-size: 18px;
  line-height: 1.55;
}

section {
  margin-top: 32px;
  padding: 20px;
  border-radius: 18px;
  background: #edf3ef;
}

h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

section p {
  margin: 0;
  font-size: 16px;
}

.privacy {
  margin: 28px 0 0;
  font-size: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #101612;
    color: #eff6f1;
  }

  main {
    border-color: #33423a;
    background: #18211c;
    box-shadow: none;
  }

  .eyebrow,
  p {
    color: #b3c2ba;
  }

  section {
    background: #24332b;
  }
}
