:root {
  --accent: #1a5f7a;
  --accent-dark: #123f52;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --bg-soft: #f4f8f9;
  --border: #e6ecee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}

.hero {
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 16px;
}

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

.cta {
  display: block;
  width: 100%;
  margin: 24px 0 10px;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cta:hover {
  background: var(--accent-dark);
}

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

/* Simple card mockup: a little QR + caption, echoing the printed card */
.card-mock {
  margin: 36px auto 0;
  max-width: 220px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 16px;
}

.card-mock-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.card-mock-inner span {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.steps {
  margin-top: 56px;
  display: grid;
  gap: 28px;
}

.step {
  text-align: center;
}

.step-num {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

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

.cta-repeat {
  margin-top: 48px;
}

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
}

footer .brand {
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}

footer a {
  color: #9a9a9a;
}

@media (min-width: 560px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
