:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #071a17;
  background: #effaf7;
}

* {
  box-sizing: border-box;
}

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

.card {
  width: min(100%, 480px);
  padding: 36px;
  border: 1px solid #d5e9e3;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgb(7 26 23 / 10%);
  text-align: center;
}

.mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #007f6b;
  background: #d7f1ea;
  font-size: 20px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 8px;
  color: #007f6b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1.1;
}

p {
  color: #52635f;
  font-size: 16px;
  line-height: 1.55;
}

.button,
.secondary {
  min-height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 800;
}

.button {
  margin-top: 26px;
  color: #ffffff;
  background: #007f6b;
}

.store-actions {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.secondary {
  color: #007f6b;
  background: #e8f5f1;
}

.fine-print {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

[hidden] {
  display: none !important;
}
