/* Pigney web — colors ported 1:1 from the app's design tokens
   (mobile-app/lib/theme/pigney_tokens.dart). Do not invent values. */

:root {
  --green-mint: #e3f6ec;
  --green-500: #34c77b;
  --green-600: #1e9e5c;
  --green-ink: #14302a;
  --text-primary: #1b2a24;
  --text-secondary: #5c665f;
  --page: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background: var(--page);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.card {
  background: var(--green-mint);
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 420px;
  width: 100%;
}

.logo {
  font-size: 56px;
  line-height: 1;
}

h1 {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-ink);
}

p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--green-500);
  color: var(--green-ink);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--green-600);
  color: #ffffff;
}

.note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

.stores {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-secondary);
}
