:root {
  color-scheme: light dark;
  --bg: #f7f7fb;
  --text: #16151f;
  --muted: #5c5a72;
  --card: #ffffff;
  --line: #e4e3ee;
  --accent: #5b55ea;
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0f0e1c; --text: #ecebf5; --muted: #a3a1bd; --card: #1a1930; --line: #2b2946; --accent: #8a85ff; }
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); }
code, kbd { font: 0.88em ui-monospace, SFMono-Regular, Menlo, monospace; }
kbd { padding: 1px 6px; border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 6px; background: var(--card); }

.hero { padding: 72px 20px 36px; text-align: center; background: radial-gradient(820px 380px at 50% 0, rgb(120 114 255 / 0.22), transparent 70%); }
.hero img { border-radius: 22%; box-shadow: 0 14px 30px rgb(60 50 200 / 0.3); }
h1 { margin: 20px 0 10px; font-size: clamp(34px, 6vw, 52px); line-height: 1.1; letter-spacing: -0.03em; }
.lead { max-width: 660px; margin: 0 auto; font-size: clamp(18px, 2.4vw, 22px); color: var(--muted); text-wrap: balance; }
.lead b { color: var(--text); }
.cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.button { display: inline-block; padding: 12px 22px; border-radius: 12px; font-weight: 600; text-decoration: none; color: #fff; background: var(--accent); }
.button.ghost { color: var(--text); background: transparent; border: 1px solid var(--line); }
.note { margin: 14px 0 0; font-size: 14px; color: var(--muted); }

main { max-width: 1080px; margin: 0 auto; padding: 16px 20px 40px; }
main > section { max-width: 820px; margin: 56px auto 0; }
h2 { margin: 0 0 14px; font-size: 28px; line-height: 1.2; letter-spacing: -0.02em; }
h3 { margin: 0 0 6px; font-size: 18px; }
main p, main li { color: var(--text); }
main li { margin: 8px 0; }
.columns { columns: 2 320px; column-gap: 32px; }
.columns li { break-inside: avoid; }

.shot { margin: 48px 0 0; }
.shot img { display: block; width: 100%; height: auto; border-radius: 14px; box-shadow: 0 30px 70px rgb(30 25 90 / 0.22); }
.shot figcaption { margin-top: 12px; text-align: center; font-size: 15px; color: var(--muted); }

main > .features { max-width: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.features div { padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.features p { margin: 0; font-size: 15.5px; color: var(--muted); }

.table { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: top; }
thead th { font-size: 13.5px; color: var(--muted); }
tbody th { text-align: left; font-weight: 600; }
tr:last-child th, tr:last-child td { border-bottom: 0; }
td:nth-child(2) { font-weight: 600; background: rgb(91 85 234 / 0.07); }

.faq h3 { margin-top: 26px; }
.faq p { margin: 0; color: var(--muted); }

footer { padding: 32px 20px 48px; text-align: center; font-size: 14px; line-height: 1.8; color: var(--muted); }

/* Privacy policy */
.doc { max-width: 720px; margin: 0 auto; padding: 56px 20px 24px; }
.doc h1 { margin-top: 0; font-size: 34px; }
.doc h2 { margin-top: 40px; font-size: 22px; }
.doc li { margin: 8px 0; }
.doc .updated { color: var(--muted); }
