:root {
  --ink: #15152b;
  --muted: #5b5b76;
  --line: #e7e7f0;
  --soft: #f6f6fb;
  --accent: #5b4ef0;
  --accent-d: #4a3fd6;
  --ok: #14a36b;
  --warn-bg: #fff8e6;
  --warn-line: #f3e2b3;
  --warn-ink: #6b5d2a;
  --bg: #fff;
  --radius: 14px;
  --shadow: 0 1px 3px rgba(20, 20, 50, .05), 0 8px 28px rgba(20, 20, 50, .04);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--soft); color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

/* Header */
.site-head {
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20;
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.brand:hover { text-decoration: none; }
.brand .dot { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, var(--accent), #8a7bff); display: inline-block; }
.nav a { color: var(--muted); margin-left: 20px; font-size: 14.5px; font-weight: 600; }
.nav a:hover { color: var(--ink); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff; border: 0; border-radius: 10px;
  padding: 12px 20px; font-size: 15px; font-weight: 700; cursor: pointer; transition: .15s;
}
.btn:hover { background: var(--accent-d); text-decoration: none; }
.btn.lg { padding: 15px 28px; font-size: 16px; }
.btn.ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { background: var(--soft); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Hero */
.hero { padding: 70px 0 50px; text-align: center; }
.hero h1 { font-size: 46px; line-height: 1.08; letter-spacing: -.03em; margin: 0 0 18px; }
.hero h1 .hl { background: linear-gradient(120deg, var(--accent), #9b6bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: 19px; color: var(--muted); max-width: 640px; margin: 0 auto 30px; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust { margin-top: 22px; color: var(--muted); font-size: 13.5px; }
.trust strong { color: var(--ink); }

/* Sections / cards */
section.block { padding: 46px 0; }
h2.h { font-size: 30px; letter-spacing: -.02em; text-align: center; margin: 0 0 8px; }
p.sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 34px; }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin: 6px 0 6px; font-size: 18px; }
.card p { color: var(--muted); margin: 0; font-size: 14.5px; }
.ico { width: 38px; height: 38px; border-radius: 10px; background: #efeefe; color: var(--accent); display: grid; place-items: center; font-size: 20px; }

/* Pricing */
.price-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.plan.feat { border: 2px solid var(--accent); position: relative; }
.plan.feat .tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 99px; }
.plan h3 { margin: 0 0 4px; font-size: 16px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.plan .amt { font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
.plan .amt small { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 16px 0 22px; }
.plan li { padding: 6px 0 6px 26px; position: relative; font-size: 14.5px; }
.plan li::before { content: "✓"; color: var(--ok); position: absolute; left: 0; font-weight: 800; }
.plan li.no { color: #a3a3b8; }
.plan li.no::before { content: "—"; color: #c7c7d6; }

/* Compare table */
table.cmp { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
table.cmp th, table.cmp td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14.5px; vertical-align: top; }
table.cmp th { background: var(--soft); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
table.cmp tr:last-child td { border-bottom: 0; }
table.cmp td.y { color: var(--ok); font-weight: 700; }
table.cmp td.n { color: #c25b5b; }

/* Article (SEO pages) */
.article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 46px; box-shadow: var(--shadow); margin: 30px 0; }
.article h1 { font-size: 34px; letter-spacing: -.02em; margin: 0 0 14px; }
.article h2 { font-size: 23px; margin: 30px 0 10px; }
.article p, .article li { color: #2a2a40; }
.quickbox { background: #efeefe; border: 1px solid #d9d6fb; border-radius: 12px; padding: 16px 20px; margin: 18px 0; }
.quickbox strong { color: var(--accent-d); }
.faq dt { font-weight: 700; margin-top: 16px; }
.faq dd { margin: 6px 0 0; color: var(--muted); }
.meta-date { color: var(--muted); font-size: 13.5px; }

/* Disclaimer banner */
.disclaimer { background: var(--warn-bg); border: 1px solid var(--warn-line); color: var(--warn-ink); border-radius: 12px; padding: 14px 18px; font-size: 14px; }

/* Footer */
.site-foot { border-top: 1px solid var(--line); background: #fff; margin-top: 40px; }
.site-foot .wrap { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; padding: 28px 20px; color: var(--muted); font-size: 14px; }
.site-foot a { color: var(--muted); }
.site-foot a:hover { color: var(--ink); }
.foot-links a { margin-right: 18px; }

@media (max-width: 760px) {
  .hero h1 { font-size: 34px; }
  .grid, .grid.two, .price-grid { grid-template-columns: 1fr; }
  .nav a:not(.btn) { display: none; }
  .article { padding: 26px 22px; }
}
