/* ==========================================================================
   PineLinx — Design System
   Plain CSS, no build step. Custom properties drive the whole theme.
   ========================================================================== */

:root {
  /* Brand palette */
  --color-navy-950: #060b17;
  --color-navy-900: #0b1424;
  --color-navy-800: #121e35;
  --color-navy-700: #1b2c4a;
  --color-navy-600: #274063;
  --color-slate-400: #8291ac;
  --color-slate-300: #aab6cc;
  --color-slate-100: #e7ebf3;
  --color-white: #ffffff;

  /* Logo-derived palette — sampled directly from the real PineLinx artwork
     (images/logo-icon.png): a leaf-green and a sky-cyan chain of circles,
     a very dark forest green for the mountain/pine glyph, and a slate-ink
     purple for the "PineLinx" wordmark. 400/500/600 steps below are
     lightness variants of those two sampled hues, contrast-checked against
     white and navy-900. Variable names kept as -teal-/-amber- to avoid
     touching every call site. */
  --color-teal-400: #86d4a7; /* leaf-green, light — on dark backgrounds */
  --color-teal-500: #55c383; /* leaf-green, mid — button fills */
  --color-teal-600: #2d8050; /* leaf-green, dark — text on white (4.9:1) */
  --color-amber-400: #3ab9cf; /* sky-cyan, mid */
  --color-sky-300: #7cd0df; /* sky-cyan, light — on dark backgrounds */
  --color-sky-600: #1e6d7b; /* sky-cyan, dark — text on white (6:1) */

  --color-forest: #0d331e; /* mountain/pine glyph, sampled exact */
  --color-ink: #4f4f7d; /* wordmark, sampled exact — 7.6:1 on white */

  --color-success: #33c37f;
  --color-danger: #ef5a6f;

  /* Semantic */
  --bg-body: var(--color-white);
  --bg-dark: var(--color-navy-900);
  --text-body: var(--color-navy-900);
  --text-muted: #5b6780;
  --text-on-dark: var(--color-slate-100);
  --text-on-dark-muted: var(--color-slate-300);
  --border-color: #e3e7f0;

  /* Type */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  /* Layout */
  --max-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 20, 36, 0.06), 0 1px 1px rgba(11, 20, 36, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 20, 36, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 20, 36, 0.16);

  --transition: 180ms ease;
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* -------------------------------------------------------------------------
   Utility layout
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 96px; }
.section--tight { padding-block: 64px; }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--muted { background: #f6f8fc; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal-600);
}
.section--dark .eyebrow { color: var(--color-teal-400); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head--center { margin-inline: auto; text-align: center; }

h1, .h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(1.7rem, 2.6vw, 2.35rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; }
h3, .h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.lede { font-size: 1.15rem; color: var(--text-muted); }
.section--dark .lede,
.hero .lede,
.cta-band .lede { color: var(--text-on-dark-muted); }

.text-muted { color: var(--text-muted); }
.section--dark .text-muted,
.hero .text-muted,
.cta-band .text-muted { color: var(--text-on-dark-muted); }
.cta-band p:not(.lede) { color: var(--text-on-dark-muted); }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--color-teal-500);
  color: var(--color-navy-950);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-teal-400); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--color-navy-700);
  color: var(--text-body);
}
.btn-outline:hover { border-color: var(--color-teal-500); color: var(--color-teal-600); }

.section--dark .btn-outline,
.hero .btn-outline,
.cta-band .btn-outline {
  border-color: var(--color-slate-400);
  color: var(--text-on-dark);
}
.section--dark .btn-outline:hover,
.hero .btn-outline:hover,
.cta-band .btn-outline:hover {
  border-color: var(--color-teal-400);
  color: var(--color-teal-400);
}

.btn-ghost {
  background: rgba(85, 195, 131, 0.10);
  color: var(--color-teal-600);
}
.btn-ghost:hover { background: rgba(85, 195, 131, 0.18); }

.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Solid (not translucent+blurred) on purpose: backdrop-filter on an
     ancestor makes it the containing block for position:fixed descendants,
     which breaks the fixed full-screen mobile nav panel below. */
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-color);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
/* The header logo reads as the site's primary mark, so it runs larger than
   the footer's — scoped to .site-header so the footer wordmark (which sits
   in a tighter column next to body copy) is unaffected. */
.site-header .brand {
  align-items: flex-end;
  font-size: 1.65rem;
  gap: 12px;
}
.brand__mark {
  width: 38px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.site-header .brand__mark {
  width: 46px;
  height: 53px;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__pine { color: var(--color-teal-600); }
.brand__linx { font-style: italic; color: inherit; }
/* On dark surfaces the darker leaf-green loses contrast, so swap to the
   lighter tint used elsewhere for dark-background text (same pairing as
   the .lede/.text-muted dark-mode overrides below). */
.site-footer .brand__pine,
.section--dark .brand__pine {
  color: var(--color-teal-400);
}

/* The logo's pastel circles are designed to sit on a light surface, so on
   dark backgrounds (footer, any future dark brand usage) give the mark a
   light backing chip rather than letting it wash out against navy. */
.site-footer .brand__mark,
.section--dark .brand__mark {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  padding: 4px;
  box-sizing: border-box;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-primary a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.nav-primary a:hover { background: #eef2f8; color: var(--text-body); }
.nav-primary a[aria-current="page"] { color: var(--color-navy-900); background: #eef2f8; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  border: none;
  background: #eef2f8;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-primary {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    border-top: 1px solid var(--border-color);
  }
  .nav-primary a { padding: 14px 16px; font-size: 1.02rem; }
  body.nav-open .nav-primary { opacity: 1; transform: translateY(0); visibility: visible; }
  .header-actions .btn-outline.desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Narrow phones: brand + "Free Assessment" + the nav-toggle button don't
   all fit at the larger header logo size (or even at the original size —
   this was already a few pixels tight before). Trim padding/gaps and pull
   the logo back down a step so nothing overflows or wraps. */
@media (max-width: 460px) {
  .site-header__bar { gap: 8px; }
  .site-header .brand { font-size: 1.25rem; gap: 8px; }
  .site-header .brand__mark { width: 34px; height: 39px; }
  .header-actions { gap: 6px; }
  .header-actions .btn-primary { padding: 9px 14px; font-size: 0.88rem; }
  .nav-toggle { width: 38px; height: 38px; }
  .nav-toggle svg { width: 18px; height: 18px; }
}
@media (max-width: 340px) {
  .site-header .brand { font-size: 1.1rem; gap: 6px; }
  .site-header .brand__mark { width: 30px; height: 34px; }
  .header-actions .btn-primary { padding: 8px 11px; font-size: 0.8rem; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-navy-950);
  color: var(--text-on-dark);
  padding-block: 96px 108px;
}
/* Animated network canvas (js/main.js) sits behind everything; the original
   navy gradient + glow now lives in .hero__scrim, layered on top of it as a
   translucent "shade" so the animation reads as texture, not a distraction,
   and text contrast stays exactly what it was before. Both are purely
   decorative (aria-hidden, pointer-events: none) and .hero has a solid navy
   fallback color, so nothing breaks if JS/canvas is unavailable. */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(560px 560px at 110% 130%, rgba(134, 212, 167, 0.20), transparent 70%),
    radial-gradient(1100px 480px at 85% -10%, #163353 0%, var(--color-navy-900) 55%, var(--color-navy-950) 100%);
  opacity: 0.86;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero--simple .hero__grid { grid-template-columns: 1fr; text-align: center; }
.hero--simple .hero__grid > * { margin-inline: auto; }
.hero h1 { color: var(--color-white); }
.hero p.lede { max-width: 540px; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero--simple .hero__actions { justify-content: center; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.hero__stats div { border-top: 1px solid rgba(231, 235, 243, 0.18); padding-top: 12px; }
.hero__stats strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--color-teal-400); }
.hero__stats span { font-size: 0.85rem; color: var(--text-on-dark-muted); }

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(231, 235, 243, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(231, 235, 243, 0.10);
}
.hero-panel__row:last-child { border-bottom: none; }
.hero-panel__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(134, 212, 167, 0.14);
  color: var(--color-teal-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-panel__icon svg { width: 20px; height: 20px; }
.hero-panel__row strong { display: block; font-size: 0.98rem; color: var(--text-on-dark); }
.hero-panel__row p { font-size: 0.88rem; color: var(--text-on-dark-muted); margin-top: 2px; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__grid > * { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); text-align: left; }
}

/* -------------------------------------------------------------------------
   Cards / grids
   ------------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.icon-tone-teal { background: rgba(85, 195, 131, 0.12); color: var(--color-teal-600); }
.icon-tone-amber { background: rgba(49, 180, 203, 0.15); color: var(--color-sky-600); }
.icon-tone-navy { background: rgba(27, 44, 74, 0.08); color: var(--color-navy-700); }

.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.96rem; }

.card--service {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card--service ul { margin-top: 4px; display: grid; gap: 8px; }
.card--service li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.card--service li svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--color-teal-600); }

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.tag--security { background: rgba(13, 51, 30, 0.10); color: var(--color-forest); }
.tag--network { background: rgba(49, 180, 203, 0.16); color: var(--color-sky-600); }
.tag--cloud { background: rgba(85, 195, 131, 0.14); color: var(--color-teal-600); }
.tag--consulting { background: rgba(79, 79, 125, 0.14); color: var(--color-ink); }

/* -------------------------------------------------------------------------
   Split sections
   ------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.check-list { display: grid; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .check-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(85, 195, 131, 0.14); color: var(--color-teal-600);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 2px;
}
.check-list .check-icon svg { width: 14px; height: 14px; }

.stat-block {
  border-radius: var(--radius-lg);
  background: var(--color-navy-900);
  color: var(--text-on-dark);
  padding: 36px;
}
.stat-block .grid { margin-top: 8px; }
.stat-block strong { display: block; font-size: 2rem; font-weight: 800; color: var(--color-teal-400); }
.stat-block span { font-size: 0.85rem; color: var(--text-on-dark-muted); }

/* -------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--color-navy-900), #10233d 60%, #0c3b3a);
  color: var(--text-on-dark);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--color-white); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------------- */
.form-card {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 6px; margin-bottom: 18px; }
.form-row--split { grid-template-columns: 1fr 1fr; gap: 18px; display: grid; }
@media (max-width: 640px) { .form-row--split { grid-template-columns: 1fr; } }
.form-row label { font-size: 0.85rem; font-weight: 700; color: var(--text-body); }
.form-row input,
.form-row select,
.form-row textarea {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.96rem;
  color: var(--text-body);
  background: #fbfcfe;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 3px rgba(85, 195, 131, 0.15);
}
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }
.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-status.is-visible { display: flex; align-items: center; gap: 10px; }
.form-status.is-success { background: rgba(51, 195, 127, 0.12); color: #1c7a4c; }
.form-status.is-error { background: rgba(239, 90, 111, 0.12); color: #b3384a; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy-950);
  color: var(--text-on-dark-muted);
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  color: var(--text-on-dark);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a { font-size: 0.92rem; transition: color var(--transition); }
.footer-grid a:hover { color: var(--color-teal-400); }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(231, 235, 243, 0.08);
  display: grid; place-items: center;
}
.footer-social a:hover { background: rgba(134, 212, 167, 0.18); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(231, 235, 243, 0.10);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

/* -------------------------------------------------------------------------
   Page hero (secondary pages)
   ------------------------------------------------------------------------- */
.page-hero { padding-block: 72px 88px; }
.page-hero .eyebrow { color: var(--color-teal-400); }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--color-teal-400); }

/* -------------------------------------------------------------------------
   News
   ------------------------------------------------------------------------- */
.post-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-color);
}
.post-card:first-child { padding-top: 0; }
.post-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-teal-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.post-meta { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; }
@media (max-width: 640px) {
  .post-card { grid-template-columns: 1fr; gap: 8px; }
}

/* -------------------------------------------------------------------------
   Misc
   ------------------------------------------------------------------------- */
.divider { height: 1px; background: var(--border-color); border: none; margin: 0; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: var(--text-muted);
  border: 1px solid var(--border-color); border-radius: 999px; padding: 6px 12px;
}
.badge svg { width: 14px; height: 14px; color: var(--color-teal-600); }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--color-teal-500);
  color: var(--color-navy-950);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 16px; top: 16px; }

@media (max-width: 640px) {
  .section { padding-block: 64px; }
  .cta-band { padding: 32px; flex-direction: column; align-items: flex-start; }
}

/* -------------------------------------------------------------------------
   Steps, prose and fine print (assessment, privacy, vertical pages)
   ------------------------------------------------------------------------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(85, 195, 131, 0.14);
  color: var(--color-teal-600);
  font-weight: 800;
  margin-bottom: 14px;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 6px; }
.steps p { color: var(--text-muted); font-size: 0.94rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.prose p, .prose li { color: var(--text-muted); }
.prose p + p { margin-top: 12px; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin: 12px 0; }
.prose a { color: var(--color-teal-600); font-weight: 600; text-decoration: underline; }

.fine-print { font-size: 0.82rem; color: var(--text-muted); margin-top: 20px; }

.hero--simple p.lede { margin-inline: auto; }
