:root {
  --coral: #ff6b5b;
  --coral-dark: #e85a4a;
  --ink: #111111;
  --ink-2: #2b2b2b;
  --muted: #6b6b6b;
  --paper: #ffffff;
  --cream: #fff7f5;
  --line: #f0d9d4;
  --shadow: 0 8px 24px rgba(255, 107, 91, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 48px 0 32px;
}

.logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  color: var(--coral);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}

.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

.stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.store {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  min-width: 180px;
  opacity: 0.55;
  cursor: not-allowed;
}

.store__eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.store__name {
  font-size: 18px;
  font-weight: 700;
}

.beta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* How it works */
.how {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 28px;
  margin: 24px 0;
}

.how h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
}

.how ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.how li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.step__n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.how h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 4px 0 4px;
}

.how p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* Privacy block */
.privacy {
  text-align: center;
  padding: 24px 16px 8px;
}

.privacy h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}

.privacy p {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.privacy em {
  color: var(--coral);
  font-style: normal;
  font-weight: 700;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 16px 32px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}

footer nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}

footer a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* Privacy policy page */
.policy {
  padding: 32px 0 16px;
  max-width: 680px;
  margin: 0 auto;
}

.policy a.back {
  display: inline-block;
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 16px;
}

.policy h1 {
  font-size: 32px;
  color: var(--ink);
  margin: 0 0 4px;
  text-align: left;
}

.policy .effective {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.policy h2 {
  font-size: 18px;
  color: var(--ink);
  margin: 28px 0 8px;
}

.policy p,
.policy li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

.policy ul {
  padding-left: 20px;
}
