:root {
  --ink: #17211b;
  --muted: #56625b;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #d9ded9;
  --green: #176b45;
  --green-dark: #0d4f32;
  --blue: #2458a6;
  --amber: #9a5a05;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}
a { color: var(--blue); }
img { display: block; max-width: 100%; }
.shell { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, 0.96);
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}
.brand img { width: 36px; height: 36px; border-radius: 7px; }
.language-picker {
  margin-left: auto;
  min-height: 38px;
  max-width: 148px;
  border: 1px solid #b9c1ba;
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 32px 0 10px;
  font: inherit;
  font-size: 14px;
}

.hero { padding: 74px 0 56px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: 0;
}
.hero h2 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}
.hero-copy { max-width: 680px; margin: 0; color: var(--muted); font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; }
.primary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  padding: 0 22px;
  font-weight: 750;
  text-decoration: none;
}
.primary-action:hover { background: var(--green-dark); }
.action-note { color: var(--muted); font-size: 14px; }

.proof-band { border-block: 1px solid var(--line); background: var(--surface); }
.proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 24px 0;
  list-style: none;
}
.proof-list li { padding: 0 24px; border-left: 1px solid var(--line); }
.proof-list li:first-child { padding-left: 0; border-left: 0; }
.proof-list strong { display: block; font-size: 18px; }
.proof-list span { color: var(--muted); font-size: 14px; }

.section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.section h2 { margin: 0 0 12px; font-size: 28px; letter-spacing: 0; }
.section-lead { max-width: 720px; margin: 0 0 30px; color: var(--muted); }
.workflow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 56px;
  align-items: center;
}
.workflow-image {
  max-height: 510px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 27, 0.12);
}
.steps { margin: 26px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li {
  position: relative;
  min-height: 44px;
  margin-top: 18px;
  padding-left: 52px;
  color: var(--muted);
}
.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 36px; }
.feature { padding: 24px 0; border-top: 1px solid var(--line); }
.feature h3 { margin: 0 0 7px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); }
.local-note { color: var(--green-dark); font-weight: 700; }
.server-note { color: var(--amber); font-weight: 700; }

.pricing-row { display: flex; gap: 36px; align-items: baseline; flex-wrap: wrap; }
.price { font-size: 42px; font-weight: 800; }
.price small { font-size: 16px; color: var(--muted); font-weight: 500; }
.limits { max-width: 560px; color: var(--muted); }
.fine-print { margin: 22px 0 0; color: var(--muted); font-size: 13px; }

.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq details p { margin: 10px 0 0; color: var(--muted); }

.site-footer { padding: 30px 0 42px; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: space-between; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1080px); }
  .hero { padding: 52px 0 42px; }
  h1 { font-size: 42px; }
  .hero h2 { font-size: 27px; }
  .hero-copy { font-size: 16px; }
  .proof-list { grid-template-columns: 1fr; gap: 18px; }
  .proof-list li, .proof-list li:first-child { padding: 0; border-left: 0; }
  .workflow { grid-template-columns: 1fr; gap: 34px; }
  .workflow-image { max-height: 440px; }
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .language-picker { max-width: 122px; }
}
