:root {
  --bg: #faf7ff;
  --surface: #ffffff;
  --text: #1c1b1f;
  --muted: #5f5a6b;
  --primary: #6750a4;
  --primary-2: #9a7ef0;
  --accent: #e5679a;
  --border: #e7e0f2;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(103, 80, 164, 0.12);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 20px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); font-weight: 800; }
.brand-mark { font-size: 22px; }
.brand-name { font-size: 18px; }
.nav { display: flex; gap: 20px; margin-left: auto; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--primary); }
.lang-switch { display: flex; gap: 6px; }
.lang-switch button { background: none; border: 1px solid var(--border); border-radius: 8px; padding: 3px 5px; cursor: pointer; line-height: 0; }
.lang-switch button.active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(103,80,164,.2); }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px;
  align-items: center; max-width: 1100px; margin: 0 auto; padding: 64px 24px 40px;
}
.pill {
  display: inline-block; background: #efe8ff; color: var(--primary);
  font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.5px; }
.hero .accent { color: var(--primary); }
.lead { font-size: 18px; color: var(--muted); max-width: 46ch; margin: 0 0 24px; }
.rating { font-size: 13px; color: var(--muted); margin-top: 14px; }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badges.center { justify-content: center; }
.store-badge { display: inline-block; transition: transform .15s; }
.store-badge:hover { transform: translateY(-2px); }
.store-badge svg { border-radius: 8px; }

/* Hero art */
.hero-art { display: flex; justify-content: center; }
.phone {
  width: 240px; height: 480px; border-radius: 36px; background: #fff;
  border: 10px solid #241f33; box-shadow: var(--shadow); overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 18px;
}
.collage-demo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; height: 100%; }
.collage-demo span {
  display: flex; align-items: center; justify-content: center; font-size: 46px;
  background: var(--c); border-radius: 14px;
}

/* Trust */
.trust {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
  list-style: none; margin: 8px auto 8px; padding: 12px 24px; max-width: 1000px;
}
.trust li { color: var(--muted); font-weight: 600; font-size: 14px; position: relative; padding-left: 22px; }
.trust li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 800; }

/* Sections */
.section { max-width: 1000px; margin: 0 auto; padding: 64px 24px; text-align: center; }
.section h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 12px; letter-spacing: -0.5px; }
.section-sub { color: var(--muted); font-size: 18px; max-width: 60ch; margin: 0 auto 28px; }
.muted { color: var(--muted); font-size: 15px; }
.band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.card .ico { font-size: 30px; margin-bottom: 10px; }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0 auto; max-width: 620px; text-align: left; }
.checklist li { position: relative; padding: 10px 0 10px 34px; border-bottom: 1px solid var(--border); font-weight: 600; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 8px; width: 22px; height: 22px;
  background: var(--primary); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 13px;
}

/* Download */
.download .soon { margin-top: 16px; font-size: 13px; color: var(--muted); font-style: italic; }

/* Footer */
.site-footer { text-align: center; padding: 40px 24px; border-top: 1px solid var(--border); color: var(--muted); }
.site-footer nav { display: flex; gap: 20px; justify-content: center; margin: 12px 0; }
.site-footer a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 14px; }
.site-footer .copy { font-size: 13px; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
  .hero .store-badges, .lead { margin-left: auto; margin-right: auto; }
  .hero-art { order: -1; }
  .phone { width: 200px; height: 400px; }
  .grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}
