/* ============================================================
   guide.css - shared styles for long-form guide / content pages.
   Scoped under .guide with g- prefixed classes, built on the
   design tokens defined in home-v2.css (--page/--surface/--green
   /--line...). Readable single-column article; mobile-first.
   ============================================================ */
.guide main { max-width: none; padding: 0; }

.g-article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) clamp(20px, 5vw, 32px) 72px;
}

.g-hero { margin-bottom: 8px; }
.g-hero h1 {
  font-size: clamp(30px, 5.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.g-lead {
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px;
}
.g-meta { font-size: 14px; color: var(--faint); margin: 0; }

.g-article h2 {
  font-size: clamp(22px, 3.6vw, 29px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 50px 0 14px;
}
.g-article h3 { font-size: 18px; margin: 26px 0 6px; color: var(--text); }
.g-article p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 16px;
}
.g-article strong { color: var(--text); font-weight: 650; }
.g-article a:not(.button) {
  color: var(--green-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 222, 128, 0.32);
}
.g-article a:not(.button):hover { border-bottom-color: var(--green-2); }

.g-article ul { margin: 0 0 18px; padding: 0; list-style: none; }
.g-article ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16.5px;
}
.g-article ul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
}

.g-checklist {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
  margin: 30px 0;
}
.g-checklist h3 { margin: 0 0 14px; font-size: 19px; }
.g-checklist ul { margin: 0; }
.g-checklist ul li { padding-left: 30px; }
.g-checklist ul li::before {
  content: "";
  left: 2px;
  top: 4px;
  width: 15px;
  height: 9px;
  border-radius: 0;
  background: transparent;
  border-left: 2px solid var(--green-2);
  border-bottom: 2px solid var(--green-2);
  transform: rotate(-45deg);
}

.g-note {
  border-left: 3px solid var(--green);
  background: var(--green-soft);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 26px 0;
}
.g-note p { margin: 0; color: var(--text); font-size: 16px; }

.g-figure { margin: 32px 0; }
.g-figure img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.g-figure figcaption {
  font-size: 13.5px;
  color: var(--faint);
  margin-top: 9px;
  text-align: center;
}

.g-cta {
  margin: 56px 0 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 44px);
  text-align: center;
}
.g-cta h2 { margin: 0 0 10px; }
.g-cta p { margin: 0 auto 22px; max-width: 48ch; color: var(--muted); }

.g-disclaimer {
  margin: 48px auto 0;
  max-width: 60ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--faint);
  text-align: center;
}

.g-foot {
  border-top: 1px solid var(--line);
  padding: 30px 20px;
  text-align: center;
  color: var(--faint);
  font-size: 14px;
}
.g-foot a { color: var(--muted); text-decoration: none; }
.g-foot a:hover { color: var(--text); }
