:root {
  --cream: #f2e0c4;
  --cream-dark: #e8d4b0;
  --white: #fff8ec;
  --text: #4a3220;
  --text-secondary: #6b4423;
  --text-muted: #9b7355;
  --border: #6b4423;
  --sage: #5a9e4b;
  --sage-dark: #3d7a36;
  --sage-light: #a8d89a;
  --terracotta: #8b5e3c;
  --lavender: #76adde;
  --blossom: #f3a3b3;
  --shadow: rgba(74, 50, 32, 0.12);
  --max-width: 960px;
  --content-width: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--sage-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--sage);
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--border);
  box-shadow: 0 4px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--sage-dark);
}

.logo-emoji {
  font-size: 1.6rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: var(--sage-dark);
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 0 var(--sage-dark);
}

.btn-primary:hover {
  color: white;
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.hero {
  text-align: center;
  padding: 24px 0 40px;
}

.hero-emoji {
  font-size: 4rem;
  margin-bottom: 12px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-lead {
  margin: 0 auto 28px;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 40px 0;
}

.card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 6px 0 var(--shadow);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card h2,
.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 48px 0 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-band {
  margin-top: 48px;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--sage-light), var(--lavender) 120%);
  border: 2px solid var(--border);
  border-radius: 20px;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0 0 20px;
  color: var(--text-secondary);
}

.page-header {
  max-width: var(--content-width);
  margin: 0 auto 32px;
  text-align: center;
}

.page-header h1 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 800;
}

.page-header .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.prose {
  max-width: var(--content-width);
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 28px 28px 36px;
  box-shadow: 0 6px 0 var(--shadow);
}

.prose h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-secondary);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 8px;
}

.download-card {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 6px 0 var(--shadow);
}

.qr-wrap {
  display: inline-block;
  padding: 12px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  margin: 20px 0;
}

.qr-wrap img {
  display: block;
  width: 180px;
  height: 180px;
}

.badge-soon {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 8px;
}

.faq dt {
  font-weight: 800;
  margin-top: 20px;
  color: var(--text);
}

.faq dd {
  margin: 6px 0 0;
  color: var(--text-secondary);
}

.site-footer {
  border-top: 3px solid var(--border);
  background: var(--white);
  margin-top: auto;
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .prose {
    padding: 20px 18px 28px;
  }
}
