:root {
  --bg: #fafaf7;
  --fg: #1c1a17;
  --muted: #6b6660;
  --rule: #e8e4dd;
  --accent: #e0784a;
  --accent-fg: #fff;
  --max: 960px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-weight: 600;
  font-size: 18px;
}
.brand:hover { text-decoration: none; }
.brand img { display: block; border-radius: 6px; }

.site-header nav a {
  color: var(--fg);
  font-weight: 500;
  margin-left: 18px;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 64px;
}

.hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--rule);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.lede {
  margin: 0 0 28px;
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cta {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  transition: transform 0.05s ease, background 0.15s ease;
}
.cta:hover { text-decoration: none; }
.cta:active { transform: translateY(1px); }

.cta.primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.cta.primary:hover { background: #c9663a; }

.cta.ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--rule);
}
.cta.ghost:hover { background: #fff; border-color: #d8d3cb; }

.note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

section h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.steps {
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}

.steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 600;
  font-size: 14px;
}

.steps h3 {
  margin: 4px 0 4px;
  font-size: 17px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.features {
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.install {
  padding: 48px 0 0;
}

.install p {
  color: var(--muted);
  max-width: 540px;
}

footer {
  border-top: 1px solid var(--rule);
  margin-top: 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

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

.prose {
  max-width: 720px;
  padding-top: 32px;
}

.prose h1 {
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.prose h2 {
  font-size: 20px;
  margin: 32px 0 12px;
}

.prose p, .prose li {
  color: var(--fg);
}

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

.prose li { margin-bottom: 8px; }

.muted { color: var(--muted); font-size: 14px; margin-top: 0; }

@media (max-width: 480px) {
  .site-header { padding: 16px; }
  main { padding: 0 16px 48px; }
  .footer-inner { padding: 20px 16px; }
}
