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

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
}

.card {
  width: min(100%, 432px);
  padding: 40px 28px 36px;
  border: 1px solid #e5e9e2;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 70px #23302612;
  text-align: center;
}

.brand {
  display: block;
  width: min(100%, 300px);
  height: 120px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

h1 {
  margin: 18px 0 30px;
  font-size: clamp(27px, 7vw, 36px);
  letter-spacing: -1.6px;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 18px;
  background: #222722;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  touch-action: manipulation;
}

.button:hover,
.button:active { background: #374c3a; }
.button:focus-visible,
.store-link:focus-visible { outline: 3px solid #83a78a; outline-offset: 3px; }

.store-link {
  display: inline-flex;
  margin-top: 20px;
  padding: 4px 8px;
  color: #38513c;
  font-size: 14px;
  font-weight: 650;
  text-underline-offset: 3px;
  touch-action: manipulation;
}

.store-link:hover,
.store-link:active { color: #1b3020; }

.soon {
  margin: 20px 0 0;
  color: #687268;
  font-size: 13px;
}
