:root {
  --ink: #2a0e52;
  --accent: #cc3b9c;
  --accent-light: #f26fc9;
  --bg: #fdfaff;
  --text: #1c1424;
  --muted: #6b6275;
  --card: #ffffff;
  --border: rgba(42, 14, 82, 0.08);
  --radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
nav.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  text-decoration: none;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.brand span {
  background: linear-gradient(120deg, var(--ink), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
nav.site .links { display: flex; gap: 28px; align-items: center; }
nav.site .links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}
nav.site .links a:hover { color: var(--text); }
nav.site .links a.cta {
  color: white;
  background: linear-gradient(120deg, var(--ink), var(--accent));
  padding: 9px 18px;
  border-radius: 999px;
}

/* Hero */
.hero {
  padding: 96px 0 64px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(204, 59, 156, 0.14), transparent 70%),
    var(--bg);
}
.hero .icon {
  width: 104px; height: 104px;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(204, 59, 156, 0.25);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.08;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--ink), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}
.badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid var(--border);
}
.btn.primary {
  color: white;
  background: linear-gradient(120deg, var(--ink), var(--accent));
  border: none;
  box-shadow: 0 12px 30px rgba(204, 59, 156, 0.3);
}
.btn.ghost { color: var(--text); background: white; }

/* Phone showcase */
.showcase {
  display: flex;
  gap: 24px;
  justify-content: center;
  overflow-x: auto;
  padding: 8px 24px 12px;
  scroll-snap-type: x proximity;
}
.showcase img {
  height: 560px;
  border-radius: 34px;
  box-shadow: 0 30px 60px rgba(42, 14, 82, 0.22);
  scroll-snap-align: center;
  flex: 0 0 auto;
  border: 6px solid #0b0b0f;
}

/* Sections */
section { padding: 80px 0; }
h2.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
p.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 52px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(42, 14, 82, 0.05);
}
.feature-card .emoji-badge {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, var(--ink), var(--accent));
  margin-bottom: 16px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 17px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step {
  text-align: center;
  padding: 20px 14px;
}
.step .num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin: 0 auto 14px;
}
.step h4 { margin: 0 0 6px; font-size: 15.5px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.cta-band {
  background: linear-gradient(120deg, var(--ink), var(--accent));
  border-radius: 28px;
  padding: 56px 32px;
  text-align: center;
  color: white;
  margin: 0 24px;
}
.cta-band h2 { margin: 0 0 12px; font-size: clamp(24px, 4vw, 34px); }
.cta-band p { margin: 0 0 28px; opacity: 0.9; }
.cta-band .btn.primary { background: white; color: var(--ink); box-shadow: none; }

footer.site {
  border-top: 1px solid var(--border);
  padding: 40px 0 60px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 14px;
}
footer.site .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer.site .links { display: flex; gap: 20px; }
footer.site a { text-decoration: none; color: var(--muted); }
footer.site a:hover { color: var(--text); }

/* Simple content pages (support/privacy) */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.doc h1 { font-size: 34px; margin-bottom: 6px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.doc h2 { font-size: 20px; margin-top: 40px; }
.doc p, .doc li { color: #362a44; font-size: 15.5px; }
.doc a.mail { color: var(--accent); font-weight: 700; text-decoration: none; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 14px;
  background: var(--card);
}
.faq-item h3 { margin: 0 0 8px; font-size: 16px; }
.faq-item p { margin: 0; color: var(--muted); font-size: 15px; }
