:root {
  --peach-bg: #FFE6D6;
  --peach-light: #FFF4EC;
  --peach: #FFB38A;
  --peach-dark: #C65F46;
  --peach-deep: #8F3E2F;
  --cream: #FFFDF9;
  --ink: #3A241C;
  --muted: #8A6257;
}

* { box-sizing: border-box; }

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

body {
  background: var(--peach-bg);
  color: var(--ink);
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, .wordmark {
  font-family: "Baloo 2", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--peach-deep);
  margin: 0;
}

a { color: var(--peach-dark); }
a:hover { color: var(--peach-deep); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px 0;
}

.site-icon {
  border-radius: 22%;
  margin-right: 10px;
}

.hero-icon {
  display: block;
  margin: 0 auto 20px;
  border-radius: 22%;
  box-shadow: 0 10px 24px rgba(143, 62, 47, 0.18);
}

.wordmark {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-card {
  background: var(--cream);
  border-radius: 32px;
  max-width: 640px;
  width: 100%;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(143, 62, 47, 0.12);
}

.hero-card .tagline {
  margin: 22px auto 0;
  max-width: 460px;
}

.hero-card .tagline p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 16px;
}

.hero-card .tagline p:last-child {
  margin-bottom: 0;
}

.hero-card .tagline .lede {
  font-size: 22px;
  font-weight: 600;
  color: var(--peach-deep);
  margin: 0 0 16px;
}

.hero-card .tagline .closer {
  font-style: italic;
  color: var(--peach-dark);
}

.badge {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--peach-light);
  color: var(--peach-deep);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--peach);
}

.journey {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 44px;
  text-align: left;
}

.step {
  background: var(--peach-light);
  border-radius: 18px;
  padding: 18px 14px;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.step-icon {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto;
  color: var(--peach-deep);
}

.step h3 {
  font-size: 16px;
  margin-top: 10px;
  color: var(--peach-deep);
}

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

.journey-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--peach);
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .journey { flex-direction: column; }
  .journey-arrow { transform: rotate(90deg); padding: 2px 0; }
  .hero-card { padding: 40px 24px; }
}

.site-footer {
  text-align: center;
  padding: 24px;
  font-size: 14px;
  color: var(--muted);
}

.site-footer a { margin: 0 8px; }

/* Simple content pages (privacy / support) */
.content-card {
  background: var(--cream);
  border-radius: 28px;
  max-width: 720px;
  width: 100%;
  padding: 48px 44px;
  margin: 24px auto;
  box-shadow: 0 20px 60px rgba(143, 62, 47, 0.10);
}

.content-card h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

.content-card h2 {
  font-size: 20px;
  margin-top: 32px;
}


.content-card .back-link {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

.content-card .meta {
  color: var(--muted);
  font-size: 14px;
}

/* Auth callback page */
.callback-page main { min-height: 100vh; }
.callback-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
}
.callback-card h1 { font-size: 24px; }
.callback-card p { color: var(--muted); }
