:root {
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-subtle: #f9fafb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  padding: 48px 0 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}

.brand span {
  font-size: 20px;
  font-weight: 700;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 32px 0 8px;
  letter-spacing: -0.01em;
}

.tagline {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 46ch;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 40px;
}

.pricing-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 20px;
  margin: 0 0 16px;
}

ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text);
}

ul.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
}

.cta:hover { background: var(--accent-dark); }

.cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

footer {
  padding: 32px 0 64px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

footer a { color: var(--muted); }

footer .links {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

footer .links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

footer .links a:hover { text-decoration: underline; }

.legal h1 {
  font-size: 26px;
}

.legal p, .legal li {
  color: var(--text);
}

.legal ul { padding-left: 20px; }

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.back-link:hover { text-decoration: underline; }
