:root {
  --bg: #06070a;
  --surface: #0c0d11;
  --border: #20232c;
  --text: #f5f5f0;
  --muted: #a0a3ac;
  --quiet: #6b6e78;
  --accent: #7cff6b;
  --gutter: clamp(24px, 5vw, 80px);
  --max: 1120px;
  --copy: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Geist, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6, 7, 10, .86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.logo {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--accent);
  color: #06070a;
  font-size: 13px;
  font-weight: 700;
}
.nav-link { color: var(--muted); font: 12px Geist Mono, monospace; letter-spacing: .04em; }
.nav-link:hover { color: var(--text); }
.service-page { max-width: var(--max); margin: 0 auto; padding: 88px var(--gutter) 120px; }
.hero { max-width: 820px; padding-bottom: 72px; }
.eyebrow { margin-bottom: 22px; color: var(--quiet); font: 12px Geist Mono, monospace; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow::before { content: ''; display: inline-block; width: 7px; height: 7px; margin-right: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.08; }
h1 { max-width: 900px; margin: 0 0 24px; font-size: clamp(42px, 7vw, 78px); font-weight: 600; }
h2 { margin: 0 0 18px; font-size: clamp(28px, 4vw, 44px); font-weight: 600; }
h3 { margin: 0 0 10px; font-size: 21px; font-weight: 600; }
.lede { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(19px, 2.2vw, 24px); line-height: 1.45; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; background: var(--accent); color: #06070a; font-size: 15px; font-weight: 600; }
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px var(--accent); }
.button.secondary { border: 1px solid var(--border); background: transparent; color: var(--text); }
.button.secondary:hover { border-color: var(--text); box-shadow: none; }
.section { padding: 72px 0; border-top: 1px solid var(--border); }
.section-intro { max-width: var(--copy); margin-bottom: 32px; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { min-height: 220px; padding: 26px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.card p, .section p, .section li { color: var(--muted); }
.card p { margin: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { padding: 22px 0 0; border-top: 2px solid var(--border); }
.step::before { counter-increment: step; content: '0' counter(step); display: block; margin-bottom: 28px; color: var(--accent); font: 12px Geist Mono, monospace; }
.step p { margin: 0; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.split > div:first-child { position: sticky; top: 90px; }
.checklist { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.checklist li { padding: 16px 18px 16px 44px; position: relative; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }
.checklist li::before { content: '↗'; position: absolute; left: 18px; color: var(--accent); }
.faq-list { max-width: var(--copy); display: grid; gap: 12px; }
.faq { padding: 20px 22px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }
.faq h3 { margin-bottom: 8px; font-size: 18px; }
.faq p { margin: 0; }
.proof-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.text-link { color: var(--accent); }
.text-link:hover { text-decoration: underline; }
.closing { max-width: 720px; padding-top: 72px; border-top: 1px solid var(--border); }
.closing p { color: var(--muted); font-size: 20px; }
footer { padding: 0 var(--gutter) 36px; color: var(--quiet); font: 12px Geist Mono, monospace; }
footer div { max-width: var(--max); margin: 0 auto; }
@media (max-width: 820px) {
  .cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split > div:first-child { position: static; }
}
@media (max-width: 560px) {
  .service-page { padding-top: 58px; }
  .nav-link { display: none; }
  .cards, .steps { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  h1 { font-size: clamp(38px, 12vw, 58px); }
}
