:root {
  --bg: #ffffff;
  --fg: #1a1f2b;
  --muted: #5c6672;
  --accent: #1f8a4c;
  --border: #e6e9ee;
  --code-bg: #f4f6f8;
  --maxw: 760px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1419;
    --fg: #e6e9ee;
    --muted: #9aa4b2;
    --accent: #3fb968;
    --border: #232a33;
    --code-bg: #1a2028;
  }
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px 20px 90px;
}
header.site {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: 30px;
}
header.site a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex: none;
  background: linear-gradient(160deg, #33a867, #1f6b3f);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo svg {
  width: 21px;
  height: 21px;
  display: block;
}
.brand {
  font-weight: 650;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 450;
  font-size: 12.5px;
  margin-top: 1px;
}
h1 {
  font-size: 28px;
  line-height: 1.25;
  margin: 0.1em 0 0.15em;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 19px;
  margin: 2.1em 0 0.5em;
}
h3 {
  font-size: 16px;
  margin: 1.6em 0 0.4em;
}
p,
li {
  color: var(--fg);
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.meta {
  color: var(--muted);
  font-size: 14px;
  margin: 0.3em 0 1.4em;
}
.meta strong {
  color: var(--fg);
  font-weight: 600;
}
.lede {
  font-size: 17.5px;
  color: var(--muted);
  margin: 0.2em 0 1.4em;
}
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.8em 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.1em 0;
  font-size: 14.5px;
}
.tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
th,
td {
  border: 1px solid var(--border);
  padding: 8px 11px;
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--code-bg);
  font-weight: 600;
  white-space: nowrap;
}
code {
  background: var(--code-bg);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 13.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
ol,
ul {
  padding-left: 22px;
}
li {
  margin: 0.28em 0;
}
blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.1em 0;
  padding: 0.3em 0 0.3em 16px;
  color: var(--muted);
}
.cards {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}
.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.card h3 {
  margin: 0 0 0.3em;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}
footer.site {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13.5px;
}
footer.site .nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}
footer.site a {
  color: var(--muted);
  text-decoration: none;
}
footer.site a:hover {
  text-decoration: underline;
  color: var(--accent);
}

/* --- Pricing page --- */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 26px 0 8px;
}
@media (max-width: 620px) {
  .plans { grid-template-columns: 1fr; }
}
.plan {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.plan .tier {
  font-weight: 650;
  font-size: 15px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 2px;
}
.price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.price-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 14px;
  min-height: 18px;
}
.plan ul.feat {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  flex: 1;
}
.plan ul.feat li {
  position: relative;
  padding-left: 24px;
  margin: 9px 0;
  font-size: 14.5px;
}
.plan ul.feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4 9-11' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4 9-11' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.plan ul.feat li.head {
  padding-left: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin-top: 14px;
}
.plan ul.feat li.head::before { display: none; }
.cta {
  display: inline-block;
  margin-top: 20px;
  text-align: center;
  padding: 11px 16px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.cta:hover { text-decoration: none; }
.cta.primary {
  background: var(--accent);
  color: #fff;
}
.compare {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 26px 0 10px;
  background: var(--code-bg);
}
.compare strong { color: var(--fg); }
.assure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 620px) { .assure { grid-template-columns: 1fr; } }
.assure li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--muted);
}
.assure li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.faqp { margin: 0.2em 0 1.2em; }
.faqp strong { display: block; margin-bottom: 2px; }
.plans.plans-one {
  grid-template-columns: 1fr;
  max-width: 440px;
}
