:root {
  --bg: #f6f5f0;
  --panel: #ffffff;
  --ink: #25242f;
  --muted: #6f6b78;
  --line: #e4e1da;
  --teal: #1f7775;
  --teal-dark: #174c4b;
  --coral: #ec6a52;
  --mint: #dceee8;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(26, 26, 34, 0.08);
  --font: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { width: min(1080px, 92%); margin: 0 auto; }
.eyebrow { color: var(--coral); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.5px; }
h1 { font-size: clamp(34px, 6vw, 56px); font-weight: 800; margin: 12px 0; }
h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; margin: 0 0 14px; }
h3 { font-size: 20px; font-weight: 700; margin: 0 0 6px; }
p { margin: 0 0 14px; }
.muted { color: var(--muted); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(246, 245, 240, 0.9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--ink); }
.brand .logo { width: 34px; height: 34px; border-radius: 9px; background: var(--teal); display: grid; place-items: center; color: #fff; font-weight: 800; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 15px; font-weight: 600; }
.nav a { color: var(--ink); }
.nav .cta { background: var(--teal); color: #fff; padding: 9px 16px; border-radius: 12px; }
.nav .cta:hover { background: var(--teal-dark); text-decoration: none; }
@media (max-width: 640px) { .nav .hide-sm { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: #fff; padding: 13px 22px; border-radius: 14px; font-weight: 800; }
.btn:hover { background: var(--teal-dark); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }

/* Hero */
.hero { padding: 64px 0 40px; }
.hero .grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 46ch; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; align-items: center; }
.hero .hero-art { display: grid; place-items: center; }
@media (max-width: 820px) { .hero .grid { grid-template-columns: 1fr; } }

/* Phone placeholder */
.phone {
  width: 240px; aspect-ratio: 9 / 19; border-radius: 32px; background: var(--panel);
  border: 8px solid #20242b; box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.phone .screen { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 18px;
  background: linear-gradient(160deg, var(--mint), #fff 60%, var(--coral) 220%); color: var(--teal-dark); }
.phone .screen span { font-weight: 800; font-size: 14px; opacity: 0.85; }

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 36px; }

/* Audience pills */
.pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill { background: var(--mint); color: var(--teal-dark); font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 999px; }

/* Feature grid */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: var(--panel); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.card .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--mint); color: var(--teal-dark); display: grid; place-items: center; font-size: 22px; margin-bottom: 12px; }

/* Screenshot strip */
.shots { display: grid; grid-auto-flow: column; grid-auto-columns: 220px; gap: 18px; overflow-x: auto; padding: 6px 2px 16px; }
.shot { scroll-snap-align: start; }
.shot .cap { text-align: center; font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 600; }

/* Video placeholder */
.video {
  max-width: 860px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--radius);
  background: #20242b; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); text-align: center;
}
.video .play { width: 72px; height: 72px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; font-size: 30px; margin: 0 auto 12px; }

/* Pricing table */
.pricing { overflow-x: auto; }
table.plans { width: 100%; border-collapse: collapse; background: var(--panel); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
table.plans th, table.plans td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.plans thead th { font-size: 15px; }
table.plans thead th.premium { color: var(--coral); }
table.plans td.center, table.plans th.center { text-align: center; }
table.plans tbody tr:last-child td { border-bottom: 0; }
.yes { color: var(--teal); font-weight: 800; }
.no { color: var(--muted); }

/* Store badges */
.stores { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.store-badge { display: inline-flex; align-items: center; gap: 12px; background: #20242b; color: #fff; padding: 12px 20px; border-radius: 14px; }
.store-badge .big { font-size: 19px; font-weight: 800; line-height: 1; }
.store-badge small { opacity: 0.8; display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.store-soon { color: var(--muted); font-size: 14px; }

/* Footer */
.site-footer { background: #20242b; color: #cfd3cf; padding: 40px 0; margin-top: 20px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; }
.site-footer a { color: #fff; }
.site-footer .links { display: flex; gap: 20px; flex-wrap: wrap; }

/* Legal pages */
.legal { padding: 48px 0 20px; }
.legal .doc { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(28px, 5vw, 40px); }
.legal .effective { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.legal section { padding: 0; }
.legal .sec { margin: 26px 0; }
.legal .sec h2 { font-size: 21px; margin-bottom: 8px; }
.legal .note { background: var(--mint); border-radius: 12px; padding: 16px 18px; color: var(--teal-dark); font-size: 15px; margin: 28px 0; }
.legal .langswitch { font-size: 14px; margin-bottom: 20px; }
