:root {
  --bg: #0d1117;
  --panel: #161b22;
  --border: #2d333b;
  --text: #e6edf3;
  --muted: #9aa7b3;
  --accent: #4ade80;
  --accent-dim: #16a34a;
  --link: #7dd3fc;
  --max: 960px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}
pre {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  overflow-x: auto;
}
code { background: var(--panel); padding: 1px 5px; border-radius: 4px; }
pre code { background: none; padding: 0; }

nav { border-bottom: 1px solid var(--border); }
.nav-inner, .foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.brand { font-weight: 700; font-size: 1.2em; color: var(--text); }
.brand span { color: var(--accent); }
.links { display: flex; gap: 22px; align-items: center; }
.links a { color: var(--muted); }
.nav-cta {
  background: var(--accent-dim);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { text-decoration: none; filter: brightness(1.15); }

main { max-width: var(--max); margin: 0 auto; padding: 0 20px 60px; }
section { padding: 44px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }
h1 { font-size: 2.5em; line-height: 1.15; margin: 0 0 14px; letter-spacing: -0.02em; }
h2 { font-size: 1.6em; margin: 0 0 16px; letter-spacing: -0.01em; }
h3 { font-size: 1.15em; margin: 22px 0 8px; }
.muted { color: var(--muted); }
.hero { padding: 70px 0 50px; text-align: left; }
.hero .sub { font-size: 1.22em; color: var(--muted); max-width: 44em; margin-bottom: 28px; }
.kicker {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.signup { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.signup input[type=email] {
  flex: 1 1 240px;
  padding: 12px 14px;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
}
.btn, .signup button {
  padding: 12px 22px;
  font-size: 1em;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  background: var(--accent-dim);
  color: #fff;
  cursor: pointer;
  display: inline-block;
}
.btn:hover, .signup button:hover { filter: brightness(1.15); text-decoration: none; }
.btn-big { font-size: 1.15em; padding: 15px 34px; }
.form-note { font-size: 0.85em; color: var(--muted); margin-top: 8px; }
.form-msg { margin-top: 10px; font-weight: 600; }
.hp { position: absolute; left: -9999px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 10px; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
}
.card h3 { margin-top: 0; }
.card p { margin-bottom: 0; color: var(--muted); }

.steps { counter-reset: step; padding-left: 0; list-style: none; }
.steps li { counter-increment: step; margin: 18px 0; padding-left: 46px; position: relative; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.price-box {
  background: var(--panel);
  border: 1px solid var(--accent-dim);
  border-radius: 12px;
  padding: 34px 36px;
  max-width: 460px;
  margin: 20px 0;
}
.price { font-size: 2.6em; font-weight: 700; }
.price small { font-size: 0.4em; font-weight: 400; color: var(--muted); }
.strike { text-decoration: line-through; color: var(--muted); font-size: 1.4em; margin-right: 10px; }
.checklist { list-style: none; padding: 0; }
.checklist li { padding: 6px 0 6px 28px; position: relative; }
.checklist li::before { content: "✓"; color: var(--accent); position: absolute; left: 0; font-weight: 700; }

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

footer { border-top: 1px solid var(--border); color: var(--muted); font-size: 0.9em; }
table { border-collapse: collapse; width: 100%; margin: 14px 0; }
th, td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--border); }
th { color: var(--muted); font-weight: 600; }
@media (max-width: 600px) { h1 { font-size: 1.9em; } .hero { padding: 44px 0 36px; } }
