/* Rise Me App — marketing site shared styles
   Brand: Playfair Display (headings) + Source Sans 3 (body),
   theme colors from the app (PrimaryDark #1976D2, PrimaryMain #42A5F5,
   SuccessGreen #4CAF50, ink #1A1A1A on #F5F9FD / white). */

:root {
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --muted: #8A8A8A;
  --line: #E2E8F0;
  --paper: #F5F9FD;
  --surf: #FFFFFF;
  --blue: #1976D2;
  --blue-light: #42A5F5;
  --green: #4CAF50;
  --max: 1080px;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--surf);
  color: var(--ink);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header / nav ───────────────────────────────────────── */
header.nav { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); z-index: 50; }
header.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--ink); }
.brand em { color: var(--green); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) { color: var(--ink-soft); font-weight: 600; font-size: 16px; }
.nav-links a.btn { color: #fff; }
.btn {
  display: inline-block; background: var(--blue); color: #fff; font-weight: 700;
  padding: 12px 24px; border-radius: 999px; font-size: 16px; transition: background .15s;
}
.btn:hover { background: #135aa8; text-decoration: none; }
.btn-lg { padding: 16px 34px; font-size: 18px; }
.btn-ghost { background: transparent; color: var(--blue); border: 2px solid var(--line); }
.btn-ghost:hover { background: var(--paper); }

/* ── Hero ───────────────────────────────────────────────── */
.hero { background: linear-gradient(180deg, #EAF3FF 0%, #FFFFFF 100%); padding: 84px 0 72px; text-align: center; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: #E8F5E9; color: #1B5E20; font-weight: 700; font-size: 14px; padding: 7px 15px; border-radius: 999px; margin-bottom: 22px; }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero h1 { font-size: clamp(38px, 6.5vw, 64px); font-weight: 800; margin-bottom: 20px; }
.hero h1 .accent { color: var(--blue); }
.hero p.lead { font-size: clamp(18px, 2.4vw, 22px); color: var(--ink-soft); max-width: 640px; margin: 0 auto 34px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .reassure { margin-top: 18px; font-size: 15px; color: var(--muted); }

/* ── Sections ───────────────────────────────────────────── */
section { padding: 72px 0; }
section.alt { background: var(--paper); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head .eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 19px; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--surf); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card .ic { font-size: 30px; margin-bottom: 14px; }
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 17px; }

.steps { counter-reset: step; }
.step { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.step .num { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 20px; margin-bottom: 4px; }
.step p { color: var(--ink-soft); }

/* ── Pricing ────────────────────────────────────────────── */
.price-card { text-align: center; max-width: 420px; margin: 0 auto; border: 2px solid var(--blue); }
.price-card .amount { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 800; color: var(--ink); }
.price-card .per { color: var(--muted); font-size: 16px; }
.price-card ul { list-style: none; text-align: left; margin: 22px 0; }
.price-card li { padding: 8px 0 8px 30px; position: relative; color: var(--ink-soft); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-family: 'Source Sans 3', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); }

/* ── CTA band + footer ──────────────────────────────────── */
.cta-band { background: var(--blue); color: #fff; text-align: center; padding: 64px 0; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.cta-band p { color: #DCEBFF; font-size: 19px; margin-bottom: 26px; }
.cta-band .btn { background: #fff; color: var(--blue); }
.cta-band .btn:hover { background: #EAF3FF; }

footer.site { border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted); font-size: 15px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
footer.site nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer.site a { color: var(--ink-soft); }

/* ── Generic prose (about page) ─────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { font-size: clamp(34px, 5vw, 50px); margin-bottom: 24px; }
.prose h2 { font-size: 28px; margin: 36px 0 12px; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }

@media (max-width: 820px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  section { padding: 56px 0; }
}
