/* =============================================================
   Shared — marketing site (v2: violet/pink, decorative, image-rich)
   ============================================================= */

:root {
  /* core palette */
  --violet: #7C3AED;
  --violet-dark: #5B21B6;
  --pink: #EC4899;
  --pink-soft: #FBCFE8;
  --mint: #10B981;
  --mint-soft: #D1FAE5;
  --amber: #F59E0B;
  --amber-soft: #FEF3C7;
  --sky: #0EA5E9;
  --sky-soft: #E0F2FE;

  /* surfaces */
  --bg: #FFF7FA;            /* warm cream-pink */
  --bg-2: #FAF5FF;          /* lavender tint */
  --surface: #FFFFFF;
  --text: #1F2937;
  --text-soft: #4B5563;
  --text-mute: #9CA3AF;
  --border: #F3E8FF;

  /* shape */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* shadow (colored to match brand) */
  --shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.06),
               0 4px 12px rgba(236, 72, 153, 0.06);
  --shadow-md: 0 4px 14px rgba(124, 58, 237, 0.10),
               0 16px 40px rgba(236, 72, 153, 0.10);

  /* hero gradient */
  --gradient: linear-gradient(135deg, #7C3AED 0%, #C026D3 50%, #EC4899 100%);
  --gradient-soft: linear-gradient(135deg, #FAF5FF 0%, #FFF7FA 60%, #FEF3F7 100%);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a  { color: var(--violet); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

section { padding: 88px 0; position: relative; }
section.tight { padding: 56px 0; }

h1, h2, h3, h4 { color: var(--text); line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.02em; }
h1 { font-size: 52px; font-weight: 800; }
h2 { font-size: 36px; font-weight: 800; }
h3 { font-size: 20px; font-weight: 700; }
p  { color: var(--text-soft); margin: 0 0 14px; }

.lead { font-size: 19px; color: var(--text-soft); max-width: 640px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(124, 58, 237, 0.08);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.section-head { text-align: center; max-width: 680px; margin: 0 auto; }

/* ── Decorative blobs / dots ──────────────────────────────── */
.blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
  border-radius: 50%;
}
.blob.b1 { width: 360px; height: 360px; background: #FBCFE8; top: -120px; right: -80px; }
.blob.b2 { width: 300px; height: 300px; background: #DDD6FE; top: 40%;     left: -100px; opacity: 0.5; }
.blob.b3 { width: 260px; height: 260px; background: #FEE2E2; bottom: -80px; right: 20%;  opacity: 0.4; }

.dots {
  position: absolute;
  width: 130px; height: 130px;
  background-image: radial-gradient(rgba(124,58,237,0.25) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
  z-index: 0;
  pointer-events: none;
}

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 247, 250, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; color: var(--text);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: var(--gradient);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 17px; letter-spacing: -0.02em;
  box-shadow: 0 6px 14px rgba(124,58,237,0.35);
}
.brand:hover { text-decoration: none; }

.nav-links {
  display: flex; gap: 30px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-soft); font-weight: 600; font-size: 14px;
  position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--violet); text-decoration: none; }
.nav-links a.active { color: var(--violet); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gradient); border-radius: 2px;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  color: #fff; font-weight: 700; padding: 11px 20px;
  border-radius: 999px; font-size: 14px;
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.3);
  transition: transform .12s ease;
}
.nav-cta:hover { color: #fff; text-decoration: none; transform: translateY(-2px); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 14px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); text-decoration: none; color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-2); text-decoration: none; color: var(--text); }

/* ── Store badges ─────────────────────────────────────────── */
.store-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: #111827;
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  min-width: 210px;
  transition: transform .12s ease, box-shadow .15s ease;
  box-shadow: 0 8px 24px rgba(17,24,39,0.18);
}
.store-badge:hover { color: #fff; text-decoration: none; transform: translateY(-2px); }
.store-badge .lbl { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .lbl .s { font-size: 11px; opacity: 0.75; font-weight: 500; }
.store-badge .lbl .b { font-size: 16px; font-weight: 700; }
.store-badge svg { width: 28px; height: 28px; flex-shrink: 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  background: var(--gradient-soft);
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { font-size: 56px; }

/* ── Phone mock ───────────────────────────────────────────── */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.phone-wrap::before, .phone-wrap::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(40px);
}
.phone-wrap::before { width: 260px; height: 260px; background: #FBCFE8; top: -30px; left: 0; opacity: 0.7; }
.phone-wrap::after  { width: 200px; height: 200px; background: #DDD6FE; bottom: -10px; right: -10px; opacity: 0.7; }

.phone {
  width: 100%; max-width: 320px;
  aspect-ratio: 9/19;
  background: linear-gradient(160deg, #111827, #1F2937);
  border-radius: 42px;
  box-shadow: 0 30px 60px rgba(124,58,237,0.35), 0 10px 30px rgba(0,0,0,0.18);
  padding: 14px;
  position: relative; z-index: 1;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 30px;
  display: flex; flex-direction: column;
  padding: 22px 16px;
  overflow: hidden;
  position: relative;
}
.phone-screen .notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 18px; background: #111827; border-radius: 999px;
}
.phone-screen .top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--text-mute); margin-top: 16px; margin-bottom: 16px;
}
.phone-screen .title { font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12px; color: var(--text-soft);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-sm);
}
.pill .dot { width: 10px; height: 10px; border-radius: 50%; }
.pill .dot.a { background: var(--violet); }
.pill .dot.b { background: var(--pink); }
.pill .v { color: var(--text); font-weight: 700; font-size: 13px; }
.phone-map {
  flex: 1; margin: 10px 0;
  background:
    linear-gradient(135deg, #E0E7FF 0%, #FCE7F3 100%);
  border-radius: 16px;
  position: relative; overflow: hidden;
}
.phone-map .road {
  position: absolute; top: 30%; left: 12%; right: 12%; height: 6px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  border-radius: 999px;
  transform: rotate(-8deg);
  box-shadow: 0 4px 12px rgba(124,58,237,0.35);
}
.phone-map .pin {
  position: absolute; width: 22px; height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 8px rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
}
.phone-map .pin::before {
  content: ""; width: 6px; height: 6px; background: #fff; border-radius: 50%;
}
.phone-map .pin.start { background: var(--violet); top: 20%; left: 12%; }
.phone-map .pin.end   { background: var(--pink);   top: 60%; right: 12%; }
.phone-cta {
  background: var(--gradient);
  color: #fff; text-align: center;
  padding: 13px; border-radius: 14px;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

/* ── Trust strip ──────────────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 18px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 14px;
}
.trust-card .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-card .ic svg { width: 22px; height: 22px; }
.trust-card .v { font-weight: 800; font-size: 18px; color: var(--text); }
.trust-card .l { font-size: 12px; color: var(--text-mute); }

/* ── Feature cards ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature .icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 6px; font-size: 17px; }
.feature p  { margin: 0; font-size: 14px; }

/* color flavors */
.bg-violet { background: rgba(124, 58, 237, 0.10); color: var(--violet); }
.bg-pink   { background: rgba(236, 72, 153, 0.12); color: var(--pink); }
.bg-mint   { background: rgba(16, 185, 129, 0.12); color: var(--mint); }
.bg-amber  { background: rgba(245, 158, 11, 0.14); color: var(--amber); }
.bg-sky    { background: rgba(14, 165, 233, 0.12); color: var(--sky); }
.bg-rose   { background: rgba(244, 63, 94, 0.12); color: #F43F5E; }

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 22px;
  position: relative;
}
.step .num {
  position: absolute; top: -16px; left: 22px;
  width: 36px; height: 36px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 18px rgba(124,58,237,0.35);
}
.step h4 { margin: 12px 0 6px; font-size: 16px; font-weight: 800; }
.step p  { font-size: 13.5px; margin: 0; }

/* ── Split section ────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

/* ── Stats banner ─────────────────────────────────────────── */
.stats {
  background: var(--gradient);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.stats .num { font-size: 32px; font-weight: 800; }
.stats .label { font-size: 12px; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.10em; }

/* ── Testimonials ─────────────────────────────────────────── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.t-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.t-quote { color: var(--text); font-size: 15px; margin-bottom: 16px; line-height: 1.55; }
.t-who { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient);
  color: #fff; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.t-name { font-weight: 700; color: var(--text); }
.t-role { font-size: 12px; color: var(--text-mute); }

/* ── CTA banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient);
  color: #fff;
  border-radius: 32px;
  padding: 56px 40px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.12); filter: blur(20px);
}
.cta-banner::before { width: 180px; height: 180px; top: -60px; left: -40px; }
.cta-banner::after  { width: 220px; height: 220px; bottom: -80px; right: -50px; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 8px; font-size: 32px; }
.cta-banner p  { color: rgba(255,255,255,0.92); margin-bottom: 22px; font-size: 16px; }
.cta-banner .store-row { justify-content: center; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #111827;
  color: #CBD5E1;
  margin-top: 80px;
  padding: 56px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 200px at 50% 0%, rgba(124,58,237,0.18), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
}
.site-footer h4 {
  color: #fff; font-size: 13px; letter-spacing: 0.10em;
  text-transform: uppercase; margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a  { color: #CBD5E1; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .small {
  font-size: 13px; color: #94A3B8;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  position: relative;
}

/* ── Prose pages ──────────────────────────────────────────── */
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 24px; font-size: 17px; }
.prose p, .prose li { color: var(--text-soft); }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose .meta { font-size: 13px; color: var(--text-mute); }

/* ── Contact form ─────────────────────────────────────────── */
.field { display: block; margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px; font-family: inherit;
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: 3px solid rgba(124, 58, 237, 0.18);
  border-color: var(--violet);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info dt {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--text-mute); margin-top: 18px;
}
.contact-info dd { margin: 4px 0 0; font-weight: 600; color: var(--text); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 980px) {
  h1 { font-size: 38px; }
  .hero h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid, .tgrid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 64px 0 56px; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .feature-grid, .steps, .stats, .tgrid, .trust-strip, .footer-grid { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
  .cta-banner { padding: 36px 22px; border-radius: 24px; }
}
