/* Private Archive — demo19 (families) */

:root {
  --coral: #fb7185;
  --coral-dark: #e11d48;
  --coral-deep: #9f1239;
  --cream: #fff8f3;
  --cream-warm: #ffeede;
  --sky: #bae6fd;
  --sky-deep: #0c4a6e;
  --ink: #2a1a14;
  --ink-soft: #54473f;
  --ink-faint: #806a5e;
  --paper: #ffffff;
  --shadow-soft: 0 6px 24px rgba(155, 80, 60, 0.10);
  --shadow-warm: 0 10px 30px rgba(251, 113, 133, 0.18);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--sky-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.25; }
h3 { font-size: 1.2rem; line-height: 1.3; }

p { margin: 0 0 1em; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(12, 74, 110, 0.08);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.brand:hover { text-decoration: none; }

.brand-icon { width: 36px; height: 36px; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: var(--cream-warm);
  color: var(--ink);
  text-decoration: none;
}

.nav .nav-cta {
  background: var(--coral);
  color: white;
  font-weight: 600;
}

.nav .nav-cta:hover {
  background: var(--coral-dark);
  color: white;
}

/* HERO */
.hero {
  padding: 60px 0 30px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--coral-deep);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.hero-text h1 {
  margin-bottom: 18px;
}

.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
  background: var(--coral-dark);
  color: white;
  box-shadow: 0 14px 36px rgba(251, 113, 133, 0.28);
}

.btn-secondary {
  background: var(--paper);
  color: var(--sky-deep);
  border-color: var(--sky);
}

.btn-secondary:hover {
  background: var(--sky);
  color: var(--sky-deep);
}

.reassure {
  color: var(--ink-faint);
  font-size: 0.96rem;
  margin: 0;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 12px 28px rgba(155, 80, 60, 0.12));
}

/* WHY */
.why {
  padding: 30px 0 20px;
}

.card-soft {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 36px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.why-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 56px;
  height: 56px;
  opacity: 0.85;
}

.card-soft h2 {
  margin-bottom: 12px;
  padding-right: 60px;
}

.card-soft p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 740px;
  margin: 0;
}

/* HOW */
.how { padding: 60px 0 30px; }

.section-title {
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--ink-faint);
  font-size: 1.05rem;
  margin: 0 auto 36px;
  max-width: 620px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(155, 80, 60, 0.14);
}

.step-art {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 { margin-bottom: 8px; }

.step p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0;
}

/* TRADEOFF */
.tradeoff {
  padding: 30px 0;
}

.card-warm {
  background: linear-gradient(135deg, #fff1e6 0%, #ffe4d6 100%);
  border-radius: var(--radius-lg);
  padding: 40px 40px 32px;
  border: 2px solid #ffd7be;
}

.card-warm h2 {
  color: var(--coral-deep);
  margin-bottom: 8px;
}

.card-warm .lead {
  font-size: 1.12rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 18px;
}

.card-warm p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  max-width: 760px;
}

.card-warm strong { color: var(--ink); }

.why-this {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px dashed #f3b9a0;
  font-style: italic;
}

/* GOOD FOR */
.goodfor { padding: 50px 0 30px; }

.chips {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chip {
  background: var(--paper);
  border-radius: 999px;
  padding: 10px 20px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(155, 80, 60, 0.08);
  font-size: 1rem;
  color: var(--ink);
  border: 1px solid rgba(12, 74, 110, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(155, 80, 60, 0.14);
}

.chip-emoji {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chip-emoji svg { width: 100%; height: 100%; }

/* PRICING */
.pricing { padding: 50px 0 30px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.price-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 74, 110, 0.06);
}

.price-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.price-card h3 {
  color: var(--sky-deep);
  margin-bottom: 8px;
}

.price-feel {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 10px;
}

.price-detail {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
}

.price-footnote {
  background: rgba(186, 230, 253, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 880px;
  margin: 0 auto;
  border-left: 4px solid var(--sky);
}

.price-footnote strong { color: var(--sky-deep); }

/* DOWNLOAD */
.download {
  padding: 50px 0 60px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  border-radius: var(--radius-lg);
  margin: 30px auto;
  max-width: 1280px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 24px;
}

.dl-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.dl-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(155, 80, 60, 0.16);
  border-color: var(--coral);
}

.dl-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-body h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--ink);
}

.dl-body p {
  font-size: 0.92rem;
  color: var(--ink-faint);
  margin: 0;
}

.dl-card-verify {
  background: rgba(186, 230, 253, 0.5);
}

.dl-card-verify .dl-icon {
  background: var(--paper);
}

.dl-help {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto;
}

.dl-help sup a { color: var(--coral-dark); }

/* FOOTER */
.site-footer {
  padding: 50px 0 40px;
  background: var(--paper);
  border-top: 1px solid rgba(12, 74, 110, 0.06);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer-promise {
  max-width: 580px;
  margin: 0 auto 18px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.footer-fineprint {
  max-width: 580px;
  margin: 0 auto 16px;
  color: var(--ink-faint);
  font-size: 0.88rem;
}

.footer-bottom {
  color: var(--ink-faint);
  font-size: 0.88rem;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-text .eyebrow { margin-left: auto; margin-right: auto; }
  .lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-art { order: -1; }
  .hero-svg { max-width: 260px; }

  .steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }

  .why-icon { position: static; margin-bottom: 14px; }
  .card-soft h2 { padding-right: 0; }
  .card-soft, .card-warm { padding: 28px 24px; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .nav { gap: 2px; }
  .nav a { padding: 6px 10px; font-size: 0.9rem; }
  .hero { padding: 36px 0 20px; }
  .btn { padding: 12px 20px; font-size: 0.96rem; width: 100%; text-align: center; }
  .cta-row { flex-direction: column; }
  .chips { gap: 8px; }
  .chip { padding: 8px 14px 8px 10px; font-size: 0.94rem; }
}

/* MOTION */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
