/* Claim — claim-affirmations.com
   Warm, soft, rounded: matches the app's cream/rose look. No frameworks, no build step. */

:root {
  --bg: #fff7f1;
  --bg-deep: #ffeee4;
  --ink: #2b2330;
  --ink-soft: #6e6275;
  --ink-faint: #9a8fa1;
  --rose: #d94f77;
  --rose-deep: #b73a60;
  --card: #ffffff;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(120, 60, 90, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rose-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 24px 0;
}
header img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(120, 60, 90, 0.18);
}
header .wordmark {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
header a { text-decoration: none; display: flex; align-items: center; gap: 12px; }
header a:hover { text-decoration: none; }

/* Hero */
main { flex: 1; }

.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 24px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--rose); }
.hero .solution {
  margin-top: 22px;
  font-size: clamp(18px, 3.4vw, 23px);
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.45;
  text-wrap: balance;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 30px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.cta:hover { transform: scale(1.03); text-decoration: none; }
.cta .apple-glyph { font-size: 20px; line-height: 1; }
.cta-note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-faint);
}

/* Demo video */
.demo {
  display: flex;
  justify-content: center;
  padding: 36px 24px 8px;
}
.demo video {
  width: min(320px, 78vw);
  border-radius: 38px;
  border: 6px solid var(--ink);
  box-shadow: var(--shadow);
  display: block;
}

/* Steps */
.steps {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(120, 60, 90, 0.08);
}
.step .num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}
.step p { font-size: 15.5px; font-weight: 600; color: var(--ink-soft); line-height: 1.45; }
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; max-width: 420px; }
}

/* Footer */
footer {
  text-align: center;
  padding: 44px 24px 36px;
  font-size: 14px;
  color: var(--ink-faint);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-bottom: 14px;
  font-weight: 600;
}
footer nav a { color: var(--ink-soft); }
footer nav .dot { color: var(--ink-faint); user-select: none; }

/* Legal / document pages */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  line-height: 1.7;
}
.doc h1 {
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.doc .updated { color: var(--ink-faint); font-weight: 600; font-size: 14px; margin-bottom: 28px; }
.doc h2 { font-size: 22px; font-weight: 800; margin: 34px 0 10px; letter-spacing: -0.01em; }
.doc h3 { font-size: 17px; font-weight: 700; margin: 22px 0 8px; }
.doc p { margin: 10px 0; color: var(--ink-soft); }
.doc li { margin: 7px 0 7px 4px; color: var(--ink-soft); }
.doc ul, .doc ol { padding-left: 24px; margin: 10px 0; }
.doc strong { color: var(--ink); }
.doc .callout {
  background: var(--card);
  border-radius: 18px;
  padding: 18px 22px;
  margin: 18px 0;
  box-shadow: 0 8px 24px rgba(120, 60, 90, 0.07);
}
