:root {
  --plum: #7C3AED;
  --plum-d: #6D28D9;
  --pink: #EC297B;
  --ink: #16101f;
  --body: #4a4458;
  --line: #ece7f6;
  --bg: #ffffff;
  --soft: #faf8ff;
  --radius: 18px;
  --max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.grad { background: linear-gradient(100deg, var(--pink), var(--plum)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; border-radius: 999px;
  padding: 12px 22px; cursor: pointer; border: 1.5px solid transparent; transition: transform .12s ease, box-shadow .2s; font-size: 15px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(100deg, var(--pink), var(--plum)); color: #fff; box-shadow: 0 10px 26px rgba(124,58,237,.35); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: 0 2px 10px rgba(20,10,40,.05); }
.btn-lg { padding: 15px 28px; font-size: 16px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 24px;
  padding: 14px 28px; max-width: var(--max); margin: 0 auto;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px); }
.nav::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 21px; color: var(--ink); }
.brand-mark { width: 30px; height: 30px; }
.brand b { background: linear-gradient(100deg, var(--pink), var(--plum)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 22px; margin-left: auto; font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--plum); }
.nav-cta { margin-left: 8px; }

/* Hero */
.hero { max-width: var(--max); margin: 0 auto; padding: 70px 28px 40px; display: grid;
  grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.pill { display: inline-block; background: var(--soft); color: var(--plum); font-weight: 700; font-size: 13px;
  padding: 7px 15px; border-radius: 999px; border: 1px solid var(--line); margin-bottom: 18px; }
.hero h1 { font-size: clamp(38px, 6vw, 62px); font-weight: 900; letter-spacing: -1.5px; }
.lead { font-size: 19px; margin: 20px 0 26px; max-width: 40ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 14px; color: #8a839a; }

.hero-art { display: grid; place-items: center; }
.phone { width: 260px; border-radius: 34px; padding: 16px; background: linear-gradient(160deg, #2a1a4d, #140b28);
  box-shadow: 0 40px 80px rgba(60,20,120,.35), inset 0 0 0 2px rgba(255,255,255,.06); color: #fff; }
.phone-top { text-align: center; font-weight: 800; font-size: 20px; padding: 10px 0 16px; }
.phone-top b { background: linear-gradient(100deg, #ff8ec1, #b79bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.phone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.phone-grid span { aspect-ratio: 1; border-radius: 14px; display: grid; place-items: center; font-size: 30px;
  background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.04)); }
.phone-cta { margin-top: 14px; text-align: center; font-size: 13px; color: #cdbff2;
  background: rgba(255,255,255,.08); border-radius: 12px; padding: 10px; }

/* Trust strip */
.strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding: 22px 28px;
  background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-weight: 600; color: var(--ink); }

/* Sections */
.section { max-width: var(--max); margin: 0 auto; padding: 76px 28px; }
.section.alt { background: var(--soft); max-width: none; }
.section.alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-title { text-align: center; font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; }
.section-sub { text-align: center; font-size: 18px; margin: 10px auto 44px; max-width: 52ch; color: #7b7488; }

/* Feature cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(30,16,60,.05); transition: transform .15s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(124,58,237,.12); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(150deg, #f3e8ff, #fde4f1); margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { margin: 0; font-size: 15px; }

/* Use cases */
.chips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.uc { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px; font-weight: 700; color: var(--ink); font-size: 24px; }
.uc span { font-size: 15px; font-weight: 600; color: var(--body); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; padding: 10px; }
.step-n { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 22px; color: #fff; background: linear-gradient(150deg, var(--pink), var(--plum));
  box-shadow: 0 10px 24px rgba(124,58,237,.3); }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { margin: 0; font-size: 15px; }

/* Showcase */
.shots { display: flex; gap: 22px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory; }
.shot { flex: 0 0 auto; width: 230px; scroll-snap-align: center; text-align: center; margin: 0; }
.shot-frame { border-radius: 30px; padding: 8px; background: linear-gradient(160deg, #2a1a4d, #140b28);
  box-shadow: 0 24px 50px rgba(60,20,120,.22); overflow: hidden; }
.shot-frame img { border-radius: 24px; width: 100%; }
.shot figcaption { margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--ink); }
.featured-shot { transform: scale(1.04); }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; display: flex; flex-direction: column; box-shadow: 0 4px 24px rgba(30,16,60,.05); }
.price-card.featured { border: 2px solid var(--plum); box-shadow: 0 20px 50px rgba(124,58,237,.2); transform: translateY(-6px); }
.badge-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(100deg, var(--pink), var(--plum));
  color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.price-name { font-weight: 700; color: var(--plum); text-transform: uppercase; letter-spacing: .08em; font-size: 14px; }
.price { font-size: 40px; font-weight: 900; color: var(--ink); margin: 6px 0 16px; letter-spacing: -1px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.price-card li { padding: 7px 0 7px 26px; position: relative; font-size: 15px; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--plum); font-weight: 800; }
.price-card .btn { width: 100%; justify-content: center; }

/* CTA */
.cta { text-align: center; padding: 80px 28px; background: linear-gradient(150deg, #2a1a4d, #4a1d6e);
  color: #fff; }
.cta h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); font-weight: 900; max-width: 20ch; margin: 0 auto 12px; }
.cta p { color: #d7c9f5; font-size: 18px; margin: 0 0 26px; }
.store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store { background: #fff; color: var(--ink); font-weight: 700; padding: 13px 22px; border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,.25); transition: transform .12s; }
.store:hover { transform: translateY(-2px); }
.cta-note { margin-top: 22px; font-size: 14px; }
.cta-note a { color: #ffb3d9; font-weight: 700; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); padding: 16px 0; list-style: none; position: relative; }
.faq summary::after { content: '+'; position: absolute; right: 0; color: var(--plum); font-size: 22px; font-weight: 700; }
.faq details[open] summary::after { content: '–'; }
.faq p { margin: 0 0 18px; }

/* Footer */
.footer { background: var(--ink); color: #b9b0cc; padding: 44px 28px; text-align: center; }
.foot-brand { font-weight: 900; font-size: 24px; color: #fff; }
.foot-brand b { background: linear-gradient(100deg, #ff8ec1, #b79bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.foot-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin: 18px 0; font-weight: 600; }
.foot-links a:hover { color: #fff; }
.foot-copy { font-size: 13px; opacity: .7; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 44px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .cards, .chips-grid, .steps, .pricing { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 560px) {
  .cards, .chips-grid, .steps, .pricing { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
}

/* Tagline */
.tagline { display: flex; align-items: center; gap: 14px; margin: 18px 0 8px; font-weight: 800; }
.tagline b { color: #cbb8ee; }
.tg { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; text-transform: uppercase; letter-spacing: .03em; }
.tg svg { width: 22px; height: 22px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tg-c { color: #EC297B; } .tg-c svg { stroke: #EC297B; }
.tg-s { color: #0FB5A6; } .tg-s svg { stroke: #0FB5A6; }
.tg-b { color: #F59E0B; } .tg-b svg { stroke: #F59E0B; }
@media (max-width: 900px) { .tagline { justify-content: center; } }

/* Use-case hero + related links */
.uc-hero { max-width: var(--max); margin: 0 auto; padding: 60px 28px 30px; text-align: center; }
.uc-hero .emoji { font-size: 60px; }
.uc-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -1.2px; margin: 10px 0; }
.uc-hero p { font-size: 19px; max-width: 60ch; margin: 0 auto 24px; }
.related { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.related a { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: 14px; color: var(--ink); }
.related a:hover { border-color: var(--plum); color: var(--plum); }

/* Store badges */
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: #000; color: #fff;
  border-radius: 12px; padding: 10px 18px; box-shadow: 0 8px 22px rgba(0,0,0,.25); transition: transform .12s; }
.store-badge:hover { transform: translateY(-2px); }
.sb-ic { width: 24px; height: 26px; flex-shrink: 0; }
.sb-txt { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.sb-txt small { font-size: 10px; text-transform: uppercase; letter-spacing: .04em; opacity: .85; }
.sb-txt b { font-size: 17px; font-weight: 600; }
.nav-login { padding: 9px 16px; }
@media (max-width: 620px) { .nav-login { display: none; } }

/* Nav dropdown */
.nav-drop { position: relative; }
.nav-drop-t { cursor: pointer; }
.nav-menu { position: absolute; top: 100%; left: 0; margin-top: 4px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: 0 16px 40px rgba(30,16,60,.14); padding: 8px; min-width: 230px;
  display: none; flex-direction: column; gap: 2px; z-index: 60; }
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu { display: flex; }
.nav-menu a { padding: 9px 12px; border-radius: 9px; font-weight: 600; font-size: 14px; color: var(--ink); white-space: nowrap; }
.nav-menu a:hover { background: var(--soft); color: var(--plum); }

/* Feature rows (Features page) */
.feature-row { max-width: var(--max); margin: 0 auto; padding: 60px 28px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.feature-row.flip .feature-copy { order: 2; }
.feature-copy .kicker { color: var(--plum); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; }
.feature-copy h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.5px; margin: 8px 0 14px; }
.feature-copy p { font-size: 17px; }
.feature-copy ul { list-style: none; padding: 0; margin: 16px 0 0; }
.feature-copy li { padding: 6px 0 6px 28px; position: relative; font-weight: 500; }
.feature-copy li::before { content: '✓'; position: absolute; left: 0; color: var(--plum); font-weight: 800; }
.feature-visual { border-radius: 22px; min-height: 260px; display: grid; place-items: center; font-size: 90px;
  background: linear-gradient(150deg, #f3e8ff, #fde4f1); box-shadow: 0 20px 50px rgba(124,58,237,.12); }
.feature-row.alt-bg { max-width: none; background: var(--soft); }
.feature-row.alt-bg .feature-copy, .feature-row.alt-bg .feature-visual { }
.sub-hero { text-align: center; max-width: 760px; margin: 0 auto; padding: 56px 28px 10px; }
.sub-hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 900; letter-spacing: -1.4px; }
.sub-hero p { font-size: 19px; margin-top: 14px; }
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 28px; }
  .feature-row.flip .feature-copy { order: 0; }
  .nav-drop:hover .nav-menu { display: none; }
}

/* ---------- App mockups ---------- */
.mockups { display: flex; gap: 26px; overflow-x: auto; padding: 10px 4px 22px; scroll-snap-type: x mandatory; justify-content: center; }
.mfig { flex: 0 0 auto; width: 232px; margin: 0; text-align: center; scroll-snap-align: center; }
.mfig figcaption { margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--ink); }
.featured-shot { transform: scale(1.05); }
.mphone { border-radius: 34px; padding: 9px; background: linear-gradient(160deg, #2a1a4d, #140b28);
  box-shadow: 0 26px 54px rgba(60,20,120,.24); }
.mscreen { border-radius: 26px; overflow: hidden; background: #fff; height: 452px; display: flex; flex-direction: column; }

.mbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: #faf7ff; }
.mbar.light { background: #fff; border-bottom: 1px solid var(--line); }
.mbar b { font-size: 14px; color: var(--ink); display: block; }
.mbar small { font-size: 11px; color: var(--muted, #8a839a); }
.mdots { color: #8a839a; font-weight: 700; }

/* Camera */
.mcam { flex: 1; background: linear-gradient(160deg, #ffe6f3, #efe7ff 60%, #e0f2fe); position: relative; display: grid; place-items: center; }
.mcam-emoji { font-size: 90px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.12)); }
.mcam-ui { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mpills { display: flex; gap: 4px; background: rgba(0,0,0,.35); border-radius: 20px; padding: 4px; }
.mpills span { font-size: 11px; color: #fff; padding: 5px 11px; border-radius: 16px; font-weight: 600; }
.mpills .on { background: #fff; color: #1c1530; }
.mcam-row { display: flex; align-items: center; gap: 30px; }
.mthumb, .mgal { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.7); }
.mgal { border-radius: 50%; }
.mshutter { width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 4px solid rgba(255,255,255,.55); box-shadow: 0 0 0 2px rgba(0,0,0,.06); }

/* Gallery grid */
.mgrid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; }
.mgrid span { background: var(--g); display: grid; place-items: center; font-size: 26px; border-radius: 4px; }
.mtab { display: flex; border-top: 1px solid var(--line); }
.mtab span { flex: 1; text-align: center; font-size: 11px; font-weight: 600; color: #8a839a; padding: 12px 0; }
.mtab .on { color: var(--plum); }

/* Poster mock */
.mposter { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 24px 18px; background: linear-gradient(170deg, #f5f3ff, #fff 72%); }
.mp-emoji { font-size: 40px; }
.mp-kicker { font-size: 9px; font-weight: 800; letter-spacing: .14em; color: var(--plum); }
.mp-title { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.mp-rule { width: 40px; height: 3px; background: var(--plum); border-radius: 3px; }
.mp-cta { font-size: 11px; color: #555; }
.mp-qr { width: 108px; height: 108px; margin: 4px 0;
  background:
    repeating-conic-gradient(#1c1530 0% 25%, #fff 0% 50%) 0 0 / 12px 12px,
    linear-gradient(#fff, #fff);
  border: 6px solid #fff; box-shadow: 0 0 0 1px var(--line); border-radius: 6px; }
.mp-code { font-size: 12px; color: var(--ink); }
.mp-code b { color: var(--plum); letter-spacing: 2px; }
.mp-foot { font-size: 9px; color: #999; margin-top: 4px; }

/* Moments */
.mstories { display: flex; gap: 12px; padding: 16px; }
.mstories i { width: 54px; height: 54px; border-radius: 50%; background: var(--g); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-style: normal; box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--plum); }
.mmoment { flex: 1; display: grid; place-items: center; align-content: center; gap: 8px; color: #b7a9d8; font-size: 46px; }
.mmoment span { font-size: 13px; font-weight: 600; color: #8a839a; }

/* ---------- Legal pages (Terms / Privacy / Refund) ---------- */
.legal-hero { background: var(--soft); border-bottom: 1px solid var(--line); padding: 46px 28px; }
.legal-hero .in { max-width: 820px; margin: 0 auto; }
.legal-hero h1 { font-size: 34px; font-weight: 800; letter-spacing: -.5px; }
.legal-hero p { color: #7b7488; margin: 8px 0 0; font-weight: 600; font-size: 14px; }
.legal { max-width: 820px; margin: 0 auto; padding: 40px 28px 72px; }
.legal h2 { font-size: 22px; margin: 34px 0 8px; }
.legal h3 { font-size: 17px; margin: 22px 0 6px; color: var(--ink); }
.legal p, .legal li { font-size: 16px; color: #3a3450; line-height: 1.7; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin: 6px 0; }
.legal a { color: var(--plum); font-weight: 600; }
.legal em { font-style: italic; }
.callout { background: var(--soft); border: 1px solid var(--line); border-left: 4px solid var(--plum); border-radius: 14px; padding: 16px 20px; margin: 18px 0; }
.callout.warn { border-left-color: var(--pink); }
.callout ul { margin: 8px 0 0; }
.toc { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; margin: 10px 0 26px; box-shadow: 0 2px 10px rgba(20,10,40,.05); }
.toc b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #7b7488; margin-bottom: 8px; }
.toc ol { columns: 2; column-gap: 30px; margin: 0; }
.toc a { font-size: 14.5px; }
.note { font-size: 13.5px; color: #8a8398; font-style: italic; }
table.rf { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
table.rf th, table.rf td { border: 1px solid var(--line); padding: 11px 13px; text-align: left; vertical-align: top; color: #3a3450; }
table.rf th { background: var(--soft); font-weight: 700; color: var(--ink); }
@media (max-width: 640px) { .toc ol { columns: 1; } .legal-hero h1 { font-size: 26px; } }
