:root {
  --accent: #075ee8;
  --accent-strong: #004fd1;
  --ink: #0f1f38;
  --muted: #5b6b82;
  --line: #e2e8f0;
  --bg-subtle: #f6f9fd;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--ink);
  font: 16px/1.6 "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #fff;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { color: var(--accent); font-size: 18px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
nav.main { display: flex; gap: 22px; align-items: center; font-size: 15px; }
nav.main a { color: var(--ink); }
.btn {
  display: inline-block; padding: 11px 22px; border-radius: 9px;
  background: var(--accent); color: #fff !important; font-weight: 650;
}
.btn:hover { background: var(--accent-strong); text-decoration: none; }
.btn.ghost { background: #fff; color: var(--accent) !important; border: 1px solid var(--accent); }
.btn.ghost:hover { background: var(--bg-subtle); }

.hero { padding: 84px 0 70px; text-align: center; background: linear-gradient(180deg, #fff, var(--bg-subtle)); }
.hero h1 { max-width: 780px; margin: 0 auto 18px; font-size: clamp(30px, 5vw, 48px); font-weight: 780; line-height: 1.15; }
.hero p.lead { max-width: 640px; margin: 0 auto 30px; color: var(--muted); font-size: 19px; }
.hero .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .note { margin-top: 14px; color: var(--muted); font-size: 13px; }

section.features { padding: 72px 0; }
h2.section { margin-bottom: 34px; font-size: clamp(24px, 3.4vw, 32px); font-weight: 740; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.card h3 { margin-bottom: 8px; font-size: 17px; font-weight: 680; }
.card p { color: var(--muted); font-size: 15px; }
.card .icon { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 10px; background: #e8f0fe; color: var(--accent); font-size: 20px; }

section.pricing { padding: 72px 0; background: var(--bg-subtle); }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; }
.plan { display: flex; flex-direction: column; padding: 28px 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.plan.featured { border: 2px solid var(--accent); box-shadow: 0 16px 40px rgba(7, 94, 232, .12); }
.plan .name { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.plan.featured .name { color: var(--accent); }
.plan .price { margin: 10px 0 2px; font-size: 38px; font-weight: 790; }
.plan .price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan ul { margin: 18px 0 24px; padding-left: 0; list-style: none; display: grid; gap: 9px; color: var(--muted); font-size: 15px; }
.plan ul li::before { content: "✓  "; color: var(--accent); font-weight: 700; }
.plan .btn { margin-top: auto; text-align: center; }

section.cta { padding: 84px 0; text-align: center; }
section.cta h2 { margin-bottom: 12px; font-size: clamp(24px, 3.4vw, 32px); font-weight: 740; }
section.cta p { margin-bottom: 26px; color: var(--muted); }

footer.site { padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }
footer.site nav { display: flex; gap: 18px; flex-wrap: wrap; }

main.legal { max-width: 760px; margin: 0 auto; padding: 48px 22px 80px; }
main.legal h1 { margin-bottom: 20px; font-size: 30px; font-weight: 760; }
main.legal h2 { margin: 28px 0 10px; font-size: 20px; font-weight: 700; }
main.legal p, main.legal li { margin-bottom: 10px; color: #33415c; }
main.legal ul { padding-left: 22px; }
.placeholder { background: #fff3cd; padding: 1px 6px; border-radius: 4px; }
