:root {
  --bg: #fffdf9;
  --bg-warm: #fbf6ee;
  --ink: #2f2f3d;
  --ink-soft: #7a7a8c;
  --ink-faint: #a8a8b8;
  --line: rgba(90, 70, 40, 0.1);
  --accent: #aedff7;
  --deep: #4a9fd4;
  --pink: #f9c9d6;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(47, 47, 61, 0.1);
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.5; }
a { color: var(--deep); font-weight: 800; text-decoration: none; }
a:hover { text-decoration: underline; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; max-width: 1100px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 900; font-size: 1.15rem; color: var(--ink);
  text-decoration: none;
}
.logo { font-size: 1.4rem; }
.brand-icon { width: 36px; height: 36px; border-radius: 10px; }
.hero-face { width: 120px; height: 120px; border-radius: 28px; margin: 8px 0; }
.plans {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.plan {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 22px 20px;
}
.plan-hot { border-color: var(--ink); box-shadow: var(--shadow); }
.plan-badge {
  display: inline-block; background: var(--ink); color: #fff;
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.04em;
  padding: 4px 8px; border-radius: 6px; margin: 0 0 10px;
}
.plan h3 { margin: 0 0 6px; font-weight: 900; }
.plan-price { font-size: 1.8rem; font-weight: 900; margin: 0 0 10px; }
.plan-price span { font-size: 0.95rem; color: var(--ink-soft); font-weight: 800; }
.plan p { margin: 0; color: var(--ink-soft); font-weight: 700; }
.fine { text-align: center; color: var(--ink-faint); font-weight: 700; font-size: 0.85rem; margin-top: 18px; }
.store-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.store-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 160px; padding: 12px 18px; border-radius: 12px;
  background: var(--ink); color: #fff !important; font-weight: 900;
  text-decoration: none !important;
}
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.95rem; }
.legal th, .legal td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { color: var(--ink); }
.callout {
  background: var(--bg-warm); border-left: 4px solid var(--deep);
  padding: 14px 16px; border-radius: 10px; margin: 18px 0;
}
.callout p { margin: 0; }
.nav nav { display: flex; gap: 18px; align-items: center; }
.nav nav a { color: var(--ink-soft); font-weight: 800; font-size: 0.92rem; }
.nav nav a:hover { color: var(--ink); text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff !important; border: none;
  border-radius: 999px; padding: 14px 22px; font-weight: 900;
  font-size: 0.95rem; cursor: pointer; text-decoration: none !important;
  font-family: inherit;
}
.btn:hover { opacity: 0.92; }
.btn-sm { padding: 10px 16px; font-size: 0.85rem; }
.btn-ghost {
  background: transparent; color: var(--ink) !important;
  border: 1.5px solid var(--line);
}

.hero {
  max-width: 1100px; margin: 0 auto; padding: 28px 22px 60px;
  text-align: center;
}
.eyebrow {
  color: var(--ink-soft); font-weight: 800; letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08;
  letter-spacing: -0.03em; margin: 0 0 16px; font-weight: 900;
}
.lede {
  max-width: 560px; margin: 0 auto 22px; color: var(--ink-soft);
  font-weight: 700; font-size: 1.05rem;
}
.lede.narrow { max-width: 420px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.store-note { margin-top: 14px; color: var(--ink-faint); font-weight: 700; font-size: 0.85rem; }

.phone {
  margin: 40px auto 0; width: min(300px, 88vw);
  background: #1a1a22; border-radius: 36px; padding: 12px;
  box-shadow: var(--shadow);
}
.phone-screen {
  background: linear-gradient(165deg, #d8effc, #fde8ef 55%, #fffdf9);
  border-radius: 28px; min-height: 420px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.clip-phase { font-weight: 900; color: var(--ink-soft); font-size: 0.9rem; }
.avatar-blob {
  width: 120px; height: 120px; border-radius: 50%;
  background: #f1c39b; display: grid; place-items: center;
  font-size: 3.2rem; margin: 8px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.wave {
  width: 70%; height: 28px; border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--deep) 0 4px, transparent 4px 10px);
  opacity: 0.35;
}
.flip {
  background: var(--ink); color: #fff; font-weight: 900; font-size: 0.75rem;
  padding: 6px 12px; border-radius: 999px; letter-spacing: 0.04em;
}
.punchline {
  font-weight: 800; font-size: 0.95rem; margin: 8px 8px 0;
  line-height: 1.35; color: var(--ink);
}
.endcard {
  margin-top: auto; font-weight: 900; font-size: 0.8rem;
  color: var(--ink-soft); padding-top: 12px;
}

.section { max-width: 960px; margin: 0 auto; padding: 48px 22px; }
.section h2 {
  text-align: center; font-size: 1.8rem; font-weight: 900;
  letter-spacing: -0.02em; margin: 0 0 28px;
}
.section-alt { background: var(--bg-warm); max-width: none; }
.section-alt > * { max-width: 960px; margin-left: auto; margin-right: auto; }
.section-alt h2, .section-alt .trust, .section-alt p { padding-left: 22px; padding-right: 22px; }

.steps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.steps article {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.steps .n {
  display: inline-grid; place-items: center; width: 28px; height: 28px;
  border-radius: 50%; background: var(--accent); font-weight: 900; font-size: 0.85rem;
}
.steps h3 { margin: 12px 0 6px; font-weight: 900; }
.steps p { margin: 0; color: var(--ink-soft); font-weight: 700; font-size: 0.95rem; }

.trust {
  list-style: none; padding: 0; max-width: 640px; margin: 0 auto 16px;
}
.trust li {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 10px; font-weight: 700; color: var(--ink-soft);
}
.trust strong { color: var(--ink); }
.section-alt p { text-align: center; font-weight: 800; }

.waitlist { text-align: center; }
.form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}
.form input {
  flex: 1 1 220px; padding: 14px 16px; border-radius: 999px;
  border: 1.5px solid var(--line); font: inherit; font-weight: 700;
  background: #fff; color: var(--ink);
}
.form input:focus { outline: 2px solid var(--deep); outline-offset: 1px; }
.form-msg { margin-top: 14px; font-weight: 800; min-height: 1.2em; }
.form-msg.ok { color: #6fae74; }
.form-msg.err { color: #e0728f; }

.footer {
  border-top: 1px solid var(--line); padding: 28px 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; color: var(--ink-soft); font-weight: 700;
  font-size: 0.9rem;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--ink-soft); }

.legal {
  max-width: 720px; margin: 0 auto; padding: 40px 22px 80px;
}
.legal h1 { font-weight: 900; letter-spacing: -0.02em; }
.legal h2 { margin-top: 1.6em; font-weight: 900; }
.legal p, .legal li { color: var(--ink-soft); font-weight: 600; }
.legal .back { font-weight: 800; }

@media (max-width: 640px) {
  .nav nav a:not(.btn) { display: none; }
}
