
:root {
  --bg: #f7f8f5;
  --bg-alt: #edf2ec;
  --surface: #ffffff;
  --surface-2: #f3f5f1;
  --surface-3: #e7ede7;
  --text: #3c403f;
  --text-soft: #666d6a;
  --text-inverse: #f7faf7;
  --accent: #27963c;
  --accent-2: #1f7a31;
  --accent-3: #155821;
  --accent-soft: #dff0e2;
  --brand-charcoal: #5a5758;
  --brand-charcoal-deep: #474546;
  --brand-charcoal-soft: #7b7779;
  --border: #d9dfd7;
  --border-strong: #a4aea6;
  --shadow: 0 18px 48px rgba(60, 64, 63, 0.08);
  --shadow-strong: 0 24px 64px rgba(60, 64, 63, 0.14);
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --container: min(100% - 2rem, 78rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: 240ms ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: linear-gradient(180deg, #fbfcfa 0%, var(--surface) 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
svg { stroke: currentColor; fill: none; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
p, ul, ol { margin: 0 0 var(--space-4); }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 var(--space-4); }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.35rem); }
p { color: var(--text-soft); font-size: clamp(1rem, 1.35vw, 1.05rem); }
ul { padding-left: 1.25rem; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible {
  outline: 3px solid rgba(39, 150, 60, 0.45);
  outline-offset: 3px;
}
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: #fff;
  color: var(--text);
  padding: 0.75rem 1rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  color: #ffffff;
  font-weight: 700;
  transition: transform var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease), border-color var(--ease);
  box-shadow: 0 10px 24px rgba(39, 150, 60, 0.22);
}
.button:hover { transform: translateY(-1px); background: linear-gradient(135deg, #238437, #124b1d); }
.button--ghost {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(247, 250, 247, 0.22);
  box-shadow: none;
}
.button--ghost:hover { background: rgba(255, 255, 255, 0.08); color: var(--text-inverse); }
.button--light {
  background: linear-gradient(180deg, #fbfcfa 0%, var(--surface) 100%);
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}
.button--sm { min-height: 2.6rem; padding-inline: 1rem; font-size: 0.95rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(90, 87, 88, 0.10);
}
.site-header.is-scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 10px 24px rgba(60, 64, 63, 0.08); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 4.8rem;
}
.brand {
  color: var(--brand-charcoal);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
.brand--logo {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: auto;
  height: clamp(2rem, 4vw, 2.6rem);
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 12px 34px rgba(0,0,0,0.12);
  margin-bottom: 1rem;
  max-width: min(100%, 20rem);
}
.footer-brand-logo img {
  width: 100%;
  height: auto;
}
.footer-brand .footer-copy {
  max-width: 24rem;
}
.site-nav {
  position: fixed;
  inset: 4.8rem 1rem auto 1rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(90,87,88,0.12);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: none;
  box-shadow: var(--shadow-strong);
}
.site-nav.is-open { display: block; }
.site-nav__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}
.site-nav__list a {
  display: block;
  color: var(--text);
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.site-nav__list a:hover,
.site-nav__list a.is-current,
.site-nav__list a[aria-current="page"] {
  background: rgba(39, 150, 60, 0.10);
  color: var(--accent-2);
}
.site-nav__cta { width: 100%; }
.nav-toggle {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(90,87,88,0.18);
  border-radius: 999px;
  background: transparent;
  display: inline-grid;
  place-items: center;
  gap: 0.2rem;
  padding: 0.75rem;
}
.nav-toggle span { display: block; width: 1.2rem; height: 2px; background: var(--brand-charcoal); border-radius: 999px; transition: transform var(--ease), opacity var(--ease); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 64, 63, 0.24);
}
.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(135deg, #4b4a4b 0%, #5a5758 38%, #2f3731 100%);
  color: var(--text-inverse);
}
.page-hero--dark::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(39,150,60,0.22), transparent 24%),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.3));
  opacity: 0.35;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
.hero-copy { max-width: 42rem; }
.hero-subhead {
  max-width: 38rem;
  color: rgba(237, 243, 249, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: var(--space-5);
}
.hero-visual { justify-self: center; width: min(100%, 34rem); }
.hero-art {
  color: var(--accent);
  width: 100%;
  margin: 0;
  filter: drop-shadow(0 20px 42px rgba(0,0,0,0.14));
}
.hero-illustration {
  width: 100%;
  height: auto;
  overflow: visible;
}
.hero-illustration *,
.hero-illustration *::before,
.hero-illustration *::after {
  vector-effect: non-scaling-stroke;
}
.hero-illustration text {
  stroke: none;
  paint-order: normal;
}
.hero-illustration__backplate {
  fill: url(#continuumBackplate);
  stroke: rgba(247,250,247,0.12);
  stroke-width: 1.2;
}
.hero-illustration__grid {
  fill: none;
  stroke: rgba(247,250,247,0.065);
  stroke-width: 1;
}
.hero-illustration__halo {
  fill: rgba(39,150,60,0.10);
  stroke: rgba(223,240,226,0.14);
  stroke-width: 1.4;
}
.hero-illustration__orbit-base {
  fill: none;
  stroke: rgba(247,250,247,0.14);
  stroke-width: 2;
  stroke-dasharray: 7 13;
}
.hero-illustration__orbit {
  fill: none;
  stroke: rgba(131,218,145,0.92);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-illustration__orbit--soft { stroke-opacity: 0.72; }
.hero-illustration__orbit--quiet { stroke-opacity: 0.52; }
.hero-illustration__monitor {
  fill: url(#continuumScreen);
  stroke: rgba(247,250,247,0.56);
  stroke-width: 1.5;
}
.hero-illustration__screen {
  fill: url(#continuumGlass);
  stroke: rgba(247,250,247,0.16);
  stroke-width: 1;
}
.hero-illustration__screen-line {
  fill: none;
  stroke: rgba(223,240,226,0.50);
  stroke-width: 4;
  stroke-linecap: round;
}
.hero-illustration__screen-line--wide { stroke: var(--accent); }
.hero-illustration__screen-line--muted { stroke: rgba(131,218,145,0.34); }
.hero-illustration__status-card {
  fill: rgba(247,250,247,0.10);
  stroke: rgba(247,250,247,0.22);
  stroke-width: 1;
}
.hero-illustration__status-tick {
  fill: none;
  stroke: #83da91;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-illustration__stand {
  fill: rgba(223,231,223,0.92);
  stroke: rgba(247,250,247,0.36);
  stroke-width: 1;
}
.hero-illustration__keyboard {
  fill: rgba(247,250,247,0.82);
  stroke: rgba(247,250,247,0.52);
  stroke-width: 1;
}
.hero-illustration__keyboard-line {
  fill: none;
  stroke: rgba(60,64,63,0.28);
  stroke-width: 4;
  stroke-linecap: round;
}
.hero-illustration__node {
  fill: var(--accent);
  stroke: rgba(247,250,247,0.86);
  stroke-width: 3;
}
.hero-illustration__step-card {
  fill: rgba(247,250,247,0.94);
  stroke: rgba(247,250,247,0.74);
  stroke-width: 1;
}
.hero-illustration__step-dot { fill: var(--accent); stroke: none; }
.hero-illustration__step-label {
  fill: var(--brand-charcoal-deep);
  font: 800 15px var(--font-sans);
  letter-spacing: -0.02em;
}
.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #cfe8d4;
}
.breadcrumbs {
  padding-block: 1rem 0;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.55rem;
  color: #8aa0b3;
}
.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section--compact { padding: clamp(2.25rem, 5vw, 3rem) 0; }
.section--alt { background: var(--surface-2); }
.section-heading { max-width: 52rem; margin-bottom: var(--space-6); }
.section-heading p { font-size: 1.05rem; }
.card-grid,
.tier-grid,
.pricing-grid,
.contact-details {
  display: grid;
  gap: var(--space-5);
}
.card,
.pricing-card,
.side-card,
.contact-card,
.center-card,
.timeline-card,
.legal-block,
.draft-banner {
  background: linear-gradient(180deg, #fbfcfa 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.card {
  height: 100%;
  padding: 1.35rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(39, 150, 60, 0.28);
}
.card h3 a { color: inherit; }
.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.icon-badge svg { width: 1.45rem; height: 1.45rem; stroke-width: 1.7; }
.card-link,
.card-meta { font-size: 0.9rem; color: var(--text-soft); }
.card-link { display: inline-block; margin-top: 0.5rem; font-weight: 700; color: var(--accent-2); }
.cols-3, .cols-4, .cols-5 { grid-template-columns: 1fr; }
.tier-grid .card,
.pricing-card,
.contact-card,
.side-card { padding: 1.5rem; }
.pricing-card__price {
  color: var(--text);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 800;
}
.pricing-card__note { font-weight: 700; color: var(--accent-2); }
.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.check-list li,
.plain-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text);
  font-weight: 600;
}
.list-icon {
  color: var(--accent-2);
  width: 1.3rem;
  flex: 0 0 1.3rem;
}
.list-icon svg { width: 1.3rem; height: 1.3rem; stroke-width: 1.8; }
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.timeline-marker {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-charcoal), var(--brand-charcoal-deep));
  color: var(--text-inverse);
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid rgba(39,150,60,0.45);
}
.timeline-card { padding: 1.2rem 1.3rem; }
.cta-banner {
  background: linear-gradient(135deg, var(--brand-charcoal-deep), #3f4a43 65%, #2c342f 100%);
  color: var(--text-inverse);
  border-radius: calc(var(--radius-lg) + 0.3rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
.cta-banner p { color: rgba(237,243,249,0.82); }
.contact-layout {
  display: grid;
  gap: var(--space-5);
}
.contact-details { grid-template-columns: 1fr; }
.contact-card p,
.footer-contact p { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg,
.contact-card svg { width: 1rem; height: 1rem; stroke-width: 1.8; margin-top: 0.2rem; }
.contact-form {
  background: linear-gradient(180deg, #fbfcfa 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.45rem;
}
label { font-weight: 700; color: var(--text); }
input, select, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid #cfd7cf;
  background: #fff;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(39,150,60,0.16); outline: none; }
.field-error { min-height: 1rem; font-size: 0.9rem; color: #9b2d2d; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}
.form-status { font-size: 0.95rem; color: var(--accent-2); }
.side-card { padding: 1.5rem; }
.mini-steps { margin: 0 0 1rem; padding-left: 1.2rem; }
.faq-list { display: grid; gap: 1rem; }
.faq-item { overflow: clip; border-radius: var(--radius-lg); }
.faq-toggle {
  width: 100%;
  text-align: left;
  border: 0;
  background: linear-gradient(180deg, #fbfcfa 0%, var(--surface) 100%);
  padding: 1.2rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
}
.faq-icon,
.faq-icon::before,
.faq-icon::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--accent-2);
  position: relative;
  border-radius: 999px;
  transition: transform var(--ease), opacity var(--ease);
}
.faq-icon::before,
.faq-icon::after { content: ""; position: absolute; left: 0; }
.faq-icon::before { transform: rotate(90deg); }
.faq-toggle[aria-expanded="true"] .faq-icon::before { transform: rotate(0deg); opacity: 0; }
.faq-panel { padding: 0 1.25rem 1.2rem; background: var(--surface); }
.draft-banner {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-color: #d8c490;
  background: #f5fbf4;
  color: var(--accent-2);
}
.legal-block { padding: 1.4rem; margin-bottom: 1rem; }
.legal-block h2 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
.site-footer {
  background: linear-gradient(180deg, #4a4748 0%, #383637 100%);
  color: var(--text-inverse);
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-title { font-size: 1.1rem; margin-bottom: 1rem; }
.footer-copy, .footer-links a, .footer-contact, .footer-bottom { color: rgba(247,250,247,0.82); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.footer-links a:hover { color: #d5eadb; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 0 2rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}
.center-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}
.center-card .hero-art { margin-inline: auto; width: min(100%, 20rem); }
.micro-note { font-size: 0.92rem; color: var(--text-soft); }
.error-wrap, .success-wrap { min-height: calc(100vh - 10rem); display: grid; place-items: center; }
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 40rem) {
  .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .field--full { grid-column: 1 / -1; }
  .contact-details.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .cta-banner { grid-template-columns: 1.7fr auto; }
}
@media (min-width: 52rem) {
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr); }
  .contact-layout { grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr); align-items: start; }
  .cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 64rem) {
  .site-header__inner { min-height: 5.2rem; }
  .nav-toggle, .nav-overlay { display: none !important; }
  .site-nav {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    inset: auto;
  }
  .site-nav__list {
    display: flex;
    gap: 0.25rem;
    margin: 0;
  }
  .site-nav__list a {
    padding: 0.7rem 0.9rem;
    position: relative;
  }
  .site-nav__list a.is-current::after,
  .site-nav__list a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.25rem;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-2);
  }
  .site-nav__cta { width: auto; }
  .cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .contact-details { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

.section-heading h2 {
  color: var(--brand-charcoal-deep);
}
.section-heading h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.24rem;
  border-radius: 999px;
  margin-top: 0.8rem;
  background: linear-gradient(90deg, var(--accent), rgba(39,150,60,0.15));
}
.site-nav__list a,
.footer-links a,
.card-link,
.pricing-card__note,
.form-status,
.list-icon,
.faq-icon,
.faq-icon::before,
.faq-icon::after {
  color: var(--accent-2);
}
.site-nav__list a:hover {
  color: var(--accent-2);
}
.card,
.pricing-card,
.contact-card,
.side-card,
.timeline-card,
.legal-block,
.draft-banner,
.contact-form,
.center-card {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,251,248,0.98));
}
.section--alt {
  background: linear-gradient(180deg, var(--surface-2), #eef3ed);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,150,60,0.18), rgba(39,150,60,0) 66%);
  pointer-events: none;
}
.hero-subhead,
.cta-banner p {
  color: rgba(247,250,247,0.84);
}
.cta-banner .micro-note,
.site-footer .micro-note {
  color: rgba(247,250,247,0.72);
}
.footer-contact a:hover,
.footer-links a:hover {
  color: #dff0e2;
}
@media (min-width: 64rem) {
  .site-nav__list a:hover,
  .site-nav__list a.is-current,
  .site-nav__list a[aria-current="page"] {
    background: rgba(39, 150, 60, 0.08);
    color: var(--accent-2);
  }
}


/* template helpers for future page expansion */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.prose {
  max-width: 70ch;
}
.prose > * + * {
  margin-top: 1rem;
}
.prose h2,
.prose h3,
.prose h4 {
  color: var(--brand-charcoal-deep);
}
.prose ul,
.prose ol {
  color: var(--text-soft);
}
.content-shell {
  display: grid;
  gap: var(--space-5);
}
.content-main,
.content-aside {
  min-width: 0;
}
.callout {
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--accent-2);
  background: linear-gradient(180deg, #fbfcfa 0%, var(--surface) 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.callout strong {
  color: var(--brand-charcoal-deep);
}
.template-note {
  font-size: 0.95rem;
  color: var(--text-soft);
}
.template-grid {
  display: grid;
  gap: var(--space-5);
}
.stat-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}
.stat-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fbfcfa 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
}
.stat-card strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--brand-charcoal-deep);
}
.rule-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.rule-list li {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.rule-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 52rem) {
  .content-shell {
    grid-template-columns: minmax(0, 1.5fr) minmax(17rem, 0.75fr);
    align-items: start;
  }
  .template-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .template-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Shared chrome / JS-rendered partial helpers */
.noscript-banner {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(90,87,88,0.14);
  border-radius: var(--radius-md);
  background: #fff7e8;
  color: var(--brand-charcoal-deep);
  font-size: 0.95rem;
}



/* Shared hero illustration extensions for secondary pages */
.hero-illustration marker path {
  fill: #83da91;
  stroke: none;
}
.hero-illustration__panel {
  fill: rgba(247,250,247,0.92);
  stroke: rgba(247,250,247,0.64);
  stroke-width: 1;
}
.hero-illustration__panel--soft {
  fill: rgba(247,250,247,0.78);
}
.hero-illustration__connector {
  fill: none;
  stroke: rgba(131,218,145,0.70);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-illustration__connector--quiet {
  stroke: rgba(247,250,247,0.28);
  stroke-dasharray: 7 10;
}
.hero-illustration__label {
  fill: var(--brand-charcoal-deep);
  font: 800 16px var(--font-sans);
  letter-spacing: -0.02em;
}
.hero-illustration__label--small {
  fill: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
.hero-illustration__step-label--small {
  font-size: 13px;
}
.hero-illustration__chip {
  fill: rgba(39,150,60,0.12);
  stroke: rgba(39,150,60,0.35);
  stroke-width: 1;
}
.hero-illustration__chip-label {
  fill: var(--accent-3);
  font: 800 12px var(--font-sans);
  letter-spacing: -0.01em;
}
.hero-illustration__icon-stroke {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-illustration__quiet-line {
  fill: none;
  stroke: rgba(60,64,63,0.24);
  stroke-width: 5;
  stroke-linecap: round;
}
.hero-illustration__accent-soft-fill {
  fill: rgba(39,150,60,0.14);
  stroke: none;
}
