@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/InterVariable.woff2') format('woff2');
}

:root {
  --ink: #171b13;
  --muted: #69705f;
  --paper: #fbfbf4;
  --surface: #f2f4e9;
  --line: #dfe4d2;
  --green: #4f6f1f;
  --lime: #b7e34a;
  --orange: #ff8a3d;
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(183, 227, 74, .16), transparent 26rem),
    var(--paper);
  font: 16px/1.7 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--green); text-underline-offset: 3px; }
img { max-width: 100%; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.topbar { border-bottom: 1px solid var(--line); background: rgba(251, 251, 244, .88); backdrop-filter: blur(16px); }
.topbar-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 10px; }
.topnav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 650; }
.topnav a { color: var(--muted); text-decoration: none; }
.topnav .install { padding: 9px 15px; color: #fff; border-radius: 10px; background: var(--green); }
.breadcrumbs { padding-top: 30px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: inherit; }
.article-hero { padding: 56px 0 48px; display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; align-items: end; }
.eyebrow { margin: 0 0 15px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(42px, 6vw, 76px); }
h2 { margin: 58px 0 20px; font-size: clamp(28px, 4vw, 42px); }
h3 { margin-bottom: 8px; font-size: 22px; }
.lead { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(18px, 2.3vw, 23px); line-height: 1.55; }
.hero-note { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.hero-note strong { display: block; margin-bottom: 6px; font-size: 14px; }
.hero-note p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.article-layout { display: grid; grid-template-columns: minmax(0, 740px) 260px; gap: 80px; align-items: start; }
.article p, .article li { color: #3e4537; }
.article p { margin: 0 0 20px; }
.article ul, .article ol { padding-left: 22px; }
.article li + li { margin-top: 10px; }
.answer { margin: 28px 0; padding: 24px 26px; border-left: 4px solid var(--lime); border-radius: 0 var(--radius) var(--radius) 0; background: #f4f7e8; }
.answer strong { display: block; margin-bottom: 6px; }
.steps { display: grid; gap: 14px; margin: 28px 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; min-height: 64px; padding: 16px 18px 16px 66px; border: 1px solid var(--line); border-radius: 16px; background: #fff; counter-increment: step; }
.steps li::before { content: counter(step); position: absolute; left: 18px; top: 16px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--lime); font-weight: 850; }
.compare { width: 100%; margin: 26px 0; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare th { color: var(--muted); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.aside { position: sticky; top: 24px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 16px 48px rgba(52, 62, 36, .08); }
.aside-title { margin: 0 0 12px; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.aside a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; line-height: 1.35; text-decoration: none; }
.aside a:last-child { border: 0; }
.cta { margin: 70px 0; padding: clamp(28px, 5vw, 54px); border-radius: 30px; color: #fff; background: var(--ink); overflow: hidden; position: relative; }
.cta::after { content: ""; position: absolute; width: 220px; height: 220px; right: -70px; bottom: -100px; border-radius: 50%; background: var(--lime); opacity: .8; }
.cta h2 { position: relative; z-index: 1; margin: 0 0 14px; max-width: 650px; }
.cta p { position: relative; z-index: 1; max-width: 650px; color: #cdd4c4; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button { display: inline-flex; padding: 12px 18px; border-radius: 11px; color: var(--ink); background: var(--lime); font-weight: 800; text-decoration: none; }
.button.secondary { color: #fff; background: #343a2f; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 36px 0 70px; }
.guide-card { min-height: 260px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: #fff; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(52, 62, 36, .1); }
.guide-card small { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.guide-card h2 { margin: 52px 0 12px; font-size: 28px; }
.guide-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.footer { margin-top: 70px; padding: 32px 0 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.footer a { color: inherit; }
@media (max-width: 850px) {
  .article-hero, .article-layout { grid-template-columns: 1fr; gap: 28px; }
  .article-hero { padding-top: 38px; }
  .hero-note { max-width: 560px; }
  .aside { position: static; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 0; }
  .guide-card h2 { margin-top: 28px; }
}
@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 1120px); }
  .topnav a:not(.install) { display: none; }
  .article-hero { padding-bottom: 32px; }
  h1 { font-size: 42px; }
  .footer-inner { flex-direction: column; }
}
