/* Nommi Collector — landing / support / privacy site
   Cozy pastel design matching the app (Quicksand + Nunito, app token palette). */
:root {
  --bg: #FFF7F0; --surface: #FFFFFF;
  --wash-pink: #FDEEF4; --wash-mint: #EAF7F1; --wash-lav: #F0EBFA; --wash-butter: #FFF3DF;
  --pink: #F49CC4; --pink-deep: #D97DA8; --lav: #C3B2EC; --lav-deep: #9C86D6;
  --mint: #9FE0C3; --mint-deep: #5FBF9A; --butter: #FFD98E; --gold: #FFC04D;
  --text: #4A4048; --text2: #9A8C95; --muted: #B6A8B1; --eyebrow: #C9A7BC; --hairline: #F1E3EA;
  --shadow: 0 18px 40px -20px rgba(217, 125, 168, 0.45);
  --shadow-sm: 0 8px 22px -14px rgba(154, 140, 149, 0.55);
  --maxw: 1040px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 620px at 82% -8%, #FDE7F0 0%, rgba(253,231,240,0) 60%),
    radial-gradient(900px 560px at 8% 4%, #EFEAFB 0%, rgba(239,234,251,0) 55%),
    var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: 'Quicksand', sans-serif; color: var(--text); }
a { color: var(--pink-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: 2.4px; text-transform: uppercase; color: var(--pink-deep); margin: 0 0 14px;
}

/* ---- top nav ---- */
header.nav { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px);
  background: rgba(255, 247, 240, 0.72); border-bottom: 1px solid var(--hairline); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 19px; color: var(--text); text-decoration: none; }
.brand .mark { width: 38px; height: 38px; border-radius: 12px; background: var(--wash-pink);
  display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--text2); text-decoration: none; font-weight: 700; font-size: 15px; transition: color .18s; }
.nav-links a:hover { color: var(--pink-deep); }
@media (max-width: 640px) { .nav-links { display: none; } }

/* ---- hero ---- */
.hero { text-align: center; padding: 74px 0 40px; }
.hero .plush { width: 168px; height: 168px; filter: drop-shadow(0 22px 30px rgba(217,125,168,.35)); }
.hero h1 { font-size: clamp(40px, 7vw, 64px); font-weight: 700; margin: 18px 0 12px; letter-spacing: -.5px; }
.hero p.lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--text2); font-weight: 600;
  max-width: 560px; margin: 0 auto 26px; }
.badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px;
  font-weight: 800; font-size: 14px; }
.pill.soft { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }
.pill.dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--mint-deep); }
.pill.store { background: var(--text); color: #fff; }

/* ---- sections ---- */
section { padding: 52px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 38px; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 38px); font-weight: 700; margin: 0 0 10px; }
.section-head p { color: var(--text2); font-size: 17px; margin: 0; }

/* feature cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--hairline); border-radius: 22px;
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.card h3 { font-size: 19px; font-weight: 700; margin: 0 0 7px; }
.card p { margin: 0; color: var(--text2); font-size: 15.5px; }
.ic.pink { background: var(--wash-pink); } .ic.mint { background: var(--wash-mint); }
.ic.lav { background: var(--wash-lav); } .ic.butter { background: var(--wash-butter); }

/* screenshots */
.shots { display: flex; gap: 22px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory; }
.shots img { height: 560px; border-radius: 30px; scroll-snap-align: center; flex: 0 0 auto;
  box-shadow: var(--shadow); background: var(--surface); }
@media (max-width: 640px) { .shots img { height: 460px; } }

/* privacy banner */
.banner { background: linear-gradient(120deg, var(--wash-mint), var(--wash-lav));
  border-radius: 28px; padding: 40px 34px; text-align: center; }
.banner h2 { font-size: clamp(26px, 4vw, 34px); margin: 0 0 10px; }
.banner p { color: var(--text); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* content pages (support / privacy) */
.doc { background: var(--surface); border: 1px solid var(--hairline); border-radius: 26px;
  padding: 44px clamp(24px, 5vw, 52px); box-shadow: var(--shadow-sm); margin: 34px 0 10px; }
.doc h1 { font-size: clamp(30px, 5vw, 42px); margin: 0 0 6px; }
.doc h2 { font-size: 22px; margin: 34px 0 10px; }
.doc h3 { font-size: 18px; margin: 24px 0 6px; }
.doc p, .doc li { color: #5a5058; font-size: 16px; }
.doc a.mail { font-weight: 800; }
.faq { border-top: 1px solid var(--hairline); padding: 20px 0; }
.faq:last-child { border-bottom: 1px solid var(--hairline); }
.faq h3 { margin: 0 0 6px; color: var(--text); }
.faq p { margin: 0; }
.updated { color: var(--muted); font-size: 14px; font-weight: 700; }

/* footer */
footer { margin-top: 40px; border-top: 1px solid var(--hairline); background: rgba(255,255,255,.5); }
.foot { display: flex; flex-wrap: wrap; gap: 16px 30px; align-items: center; justify-content: space-between; padding: 30px 0; }
.foot .links a { color: var(--text2); text-decoration: none; font-weight: 700; margin-right: 22px; font-size: 15px; }
.foot .links a:hover { color: var(--pink-deep); }
.foot small { color: var(--muted); font-size: 13px; display: block; max-width: 640px; margin-top: 12px; line-height: 1.5; }
.center { text-align: center; }
.mt8 { margin-top: 8px; } .mt24 { margin-top: 24px; }
