:root {
  --accent: #ff3d68;
  --accent-2: #ff7a59;
  --bg: #ffffff;
  --surface: #fff6f7;
  --text: #1b1a1d;
  --muted: #6c6a72;
  --line: rgba(0, 0, 0, 0.09);
  --maxw: 760px;
  --radius: 16px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121013;
    --surface: #1a171b;
    --text: #f3eff1;
    --muted: #a9a3aa;
    --line: rgba(255, 255, 255, 0.11);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  font-size: 17px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ── Brand wordmark ── */
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand .heart { width: 20px; height: 20px; fill: var(--accent); flex: none; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff; text-align: center;
  padding: 86px 22px 96px;
}
.hero .mark {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 40px; letter-spacing: -0.03em; margin: 0 0 18px;
}
.hero .mark svg { width: 38px; height: 38px; fill: #fff; }
.hero h1 {
  font-size: 30px; line-height: 1.25; font-weight: 600; margin: 0 auto 14px; max-width: 16ch;
}
.hero p.sub { font-size: 18px; opacity: 0.95; margin: 0 auto 30px; max-width: 40ch; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 auto 34px; max-width: 540px; }
.pill {
  background: rgba(255, 255, 255, 0.16); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px; padding: 7px 14px; font-size: 14px; font-weight: 500; white-space: nowrap;
}
.cta {
  display: inline-block; background: #fff; color: var(--accent);
  font-weight: 600; font-size: 16px; padding: 13px 26px; border-radius: 999px;
}
.cta:hover { text-decoration: none; opacity: 0.92; }
.soon { display: block; margin-top: 16px; font-size: 13px; opacity: 0.9; letter-spacing: 0.02em; }

/* ── Feature cards ── */
.features { padding: 64px 0; }
.features h2 { text-align: center; font-size: 24px; font-weight: 600; margin: 0 0 32px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.card .ic { font-size: 22px; }
.card h3 { font-size: 17px; font-weight: 600; margin: 10px 0 6px; }
.card p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ── Legal pages ── */
.topbar { border-bottom: 1px solid var(--line); padding: 16px 0; }
.legal { padding: 40px 0 24px; }
.legal h1 { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 4px; }
.legal .updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.legal h2 { font-size: 20px; font-weight: 600; margin: 30px 0 8px; }
.legal p, .legal li { color: var(--text); }
.legal ul { padding-left: 20px; }
.legal li { margin: 6px 0; }
.legal strong { font-weight: 600; }
.backlink { display: inline-block; margin-bottom: 18px; font-size: 15px; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--line); padding: 34px 0; text-align: center; color: var(--muted); font-size: 14px; }
.footer nav { margin: 0 0 10px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.footer nav a { color: var(--text); }
.footer .fa { direction: rtl; font-size: 14px; margin-top: 8px; color: var(--muted); }

/* ── 404 ── */
.center404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; padding: 40px 22px; }
.center404 .big { font-size: 56px; font-weight: 700; color: var(--accent); margin: 0; }
