:root {
  --ink:#0b1c13; --ink2:#46564d; --ink3:#8a9a91;
  --emerald:#067a58; --emerald2:#00a884; --mint:#5eead0;
  --line:#e7ece9; --bg:#ffffff; --soft:#eef3f0;
  --disp:'Clash Display',-apple-system,sans-serif;
  --body:'General Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;
}
* { box-sizing:border-box; margin:0; padding:0; }
::selection { background:#cdeee1; }
body { font-family:var(--body); background:var(--bg); color:var(--ink); line-height:1.72; -webkit-font-smoothing:antialiased; }
.wrap { max-width:1060px; margin:0 auto; padding:0 32px; }

/* ── header (sticky so the CTA follows the reader) ────────── */
header.site {
  display:flex; align-items:center; justify-content:space-between; height:70px;
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85); backdrop-filter:saturate(1.7) blur(14px); -webkit-backdrop-filter:saturate(1.7) blur(14px);
}
@supports not (backdrop-filter: blur(1px)) { header.site { background:#fff; } }
.brand { display:flex; align-items:center; gap:11px; font-family:var(--disp); font-weight:600; font-size:18px; letter-spacing:-.02em; color:var(--ink); text-decoration:none; }
.brand img { border-radius:8px; display:block; }
.cta-sm {
  font-family:var(--body); font-weight:600; font-size:14px; color:#fff; text-decoration:none;
  background:var(--emerald); padding:10px 20px; border-radius:999px;
  box-shadow:0 8px 22px -10px rgba(6,122,88,.6); transition:filter .15s, transform .12s;
}
.cta-sm:hover { filter:brightness(1.06); transform:translateY(-1px); }

/* ── hero ────────────────────────────────────────────────── */
.eyebrow { font-family:var(--mono); font-size:11.5px; letter-spacing:.09em; text-transform:uppercase; color:var(--emerald); }
h1 { font-family:var(--disp); font-weight:600; font-size:46px; line-height:1.03; letter-spacing:-.032em; margin:16px 0 0; }
.lead { font-size:18px; line-height:1.6; color:var(--ink2); margin-top:20px; max-width:60ch; }
.cta-row { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin:30px 0 8px; }
.cta {
  display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:15px; color:#fff; text-decoration:none;
  background:var(--emerald); padding:14px 24px; border-radius:12px; box-shadow:0 10px 26px -12px rgba(6,122,88,.5);
  transition:filter .15s, transform .12s;
}
.cta:hover { filter:brightness(1.06); }
.cta:active { transform:translateY(1px); }
.cta-note { font-family:var(--mono); font-size:11.5px; letter-spacing:.05em; text-transform:uppercase; color:var(--ink3); }
.rule { height:1px; background:var(--line); margin:42px 0; border:0; }

/* ── content ─────────────────────────────────────────────── */
main { padding-top:0; }
h2 { font-family:var(--disp); font-weight:600; font-size:27px; letter-spacing:-.02em; margin:46px 0 14px; }
p { margin:13px 0; color:#333f39; font-size:16px; }
main a { color:var(--emerald); text-decoration:none; border-bottom:1px solid rgba(6,122,88,.3); }
main a:hover { border-bottom-color:var(--emerald); }
strong { color:var(--ink); font-weight:600; }

/* direct-answer box (featured-snippet target — one concise answer under the H1) */
.answer { border-left:3px solid var(--emerald); background:var(--soft); border-radius:0 14px 14px 0; padding:16px 22px; margin:6px 0 26px; font-size:15.5px; color:#2a362f; }
.answer strong { color:var(--emerald); }

/* steps — real screenshot alongside each step (alternating sides) */
.steps { list-style:none; counter-reset:step; margin:32px 0; display:flex; flex-direction:column; gap:36px; }
.steps li { counter-increment:step; display:flex; gap:36px; align-items:center; }
.steps li:nth-child(even) { flex-direction:row-reverse; }
.step-art { flex:0 0 360px; display:flex; align-items:center; justify-content:center; }
.step-art img { max-width:100%; max-height:470px; width:auto; height:auto; display:block; border-radius:14px; border:1px solid var(--line); background:#fff; box-shadow:0 16px 40px -26px rgba(11,28,19,.24); }
.step-body { flex:1; min-width:0; }
.step-num { font-family:var(--mono); font-size:10.5px; letter-spacing:.09em; text-transform:uppercase; color:var(--emerald); }
.step-num::before { content:'Step ' counter(step); }
.steps h3 { font-size:19px; font-weight:600; color:var(--ink); margin:6px 0 5px; }
.steps p { margin:0; font-size:15.5px; color:#333f39; }

/* simple bulleted list (non-step) */
.checklist { list-style:none; margin:14px 0; }
.checklist li { position:relative; padding-left:22px; margin:8px 0; font-size:15.5px; color:#333f39; }
.checklist li::before { content:'\2014'; position:absolute; left:0; color:var(--emerald); }

@media (max-width:720px) {
  .steps li, .steps li:nth-child(even) { flex-direction:column; align-items:stretch; gap:14px; }
  .step-art { flex:none; width:100%; }
}

/* faq */
.faq { margin-top:8px; }
.faq details { border-top:1px solid var(--line); padding:16px 0; }
.faq details[open] summary { color:var(--emerald); }
.faq summary { font-weight:600; font-size:16px; color:var(--ink); cursor:pointer; list-style:none; display:flex; justify-content:space-between; gap:16px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:'+'; font-family:var(--mono); color:var(--ink3); font-weight:400; }
.faq details[open] summary::after { content:'\2013'; }
.faq details p { font-size:15px; margin:10px 0 0; color:#46564d; }

/* ── closing CTA band ────────────────────────────────────── */
.cta-band { background:var(--soft); border-radius:20px; padding:40px 36px; margin:60px 0 8px; text-align:center; }
.cta-band h2 { font-size:26px; margin:0 0 8px; }
.cta-band p { margin:0 auto 22px; max-width:46ch; }
.cta-band .cta { margin:0 auto; }

/* ── footer ──────────────────────────────────────────────── */
footer.site {
  margin-top:56px; border-top:1px solid var(--line); padding:26px 0 64px;
  display:flex; gap:24px; flex-wrap:wrap; align-items:center;
  font-family:var(--mono); font-size:11px; letter-spacing:.07em; text-transform:uppercase;
}
footer.site a { color:var(--ink2); text-decoration:none; transition:color .15s; }
footer.site a:hover { color:var(--emerald); }
footer.site .sp { margin-left:auto; text-transform:none; letter-spacing:0; font-family:var(--body); font-size:12px; color:var(--ink3); }

@media (max-width:600px) {
  h1 { font-size:34px; }
  h2 { font-size:23px; }
  .cta-band { padding:32px 22px; }
}

/* ── related guides (reciprocal internal-link mesh) ──────── */
.related { margin:56px 0 8px; }
.related-head { display:flex; align-items:baseline; justify-content:space-between; gap:12px 20px; flex-wrap:wrap; margin-bottom:16px; }
.related-eyebrow { font-family:var(--mono); font-size:11.5px; letter-spacing:.09em; text-transform:uppercase; color:var(--ink3); }
.related-pillar { font-weight:600; font-size:15px; color:var(--emerald); text-decoration:none; border-bottom:1px solid rgba(6,122,88,.3); }
.related-pillar:hover { border-bottom-color:var(--emerald); }
.related-grid { list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:0; padding:0; }
.related-grid li { margin:0; padding:0; }
.related-grid a { display:block; height:100%; padding:18px 20px; border:1px solid var(--line); border-radius:14px; background:#fff; text-decoration:none; transition:transform .2s, box-shadow .2s, border-color .2s; }
.related-grid a:hover { transform:translateY(-3px); border-color:var(--emerald); box-shadow:0 20px 40px -28px rgba(11,28,19,.3); }
.related-grid strong { display:block; font-size:16px; font-weight:600; color:var(--ink); margin-bottom:4px; }
.related-grid span { display:block; font-size:13.5px; color:var(--ink2); line-height:1.5; }
@media (max-width:640px) { .related-grid { grid-template-columns:1fr; } }
