/* ════════════ HEADER (dark navy) ════════════ */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 112px; padding: 0 28px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand img { height: 84px; width: auto; }

.topnav { display: flex; align-items: center; gap: 28px; }
.topnav a:not(.btn) {
  color: var(--on-dark-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
}
.topnav a:not(.btn):hover { color: var(--on-dark); }
.topnav a.is-active { color: var(--on-dark); }
.topnav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px;
  background: var(--accent-2);
}
.topnav .btn { margin-left: 4px; }

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--dark-border);
  color: var(--on-dark);
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.nav-toggle:hover { border-color: rgba(238,243,251,.3); background: rgba(255,255,255,.04); }
.nav-toggle svg path { transition: transform .2s, opacity .2s; transform-origin: center; }
.nav-toggle[aria-expanded="true"] .line-top { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .line-mid { opacity: 0; }
.nav-toggle[aria-expanded="true"] .line-bot { transform: translateY(-5px) rotate(-45deg); }

/* ════════════ BUTTONS ════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: background .15s, border-color .15s, color .15s, transform .05s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.btn-outline-light,
.btn-outline-light:link,
.btn-outline-light:visited {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(238,243,251,.25);
}
.btn-outline-light:hover { border-color: rgba(238,243,251,.5); color: var(--on-dark); background: rgba(255,255,255,.04); }
.btn-light,
.btn-light:link,
.btn-light:visited {
  background: var(--on-dark);
  color: var(--dark);
  border-color: var(--on-dark);
}
.btn-light:hover { background: #fff; color: var(--dark); }
.btn-ghost {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 12px 22px; font-size: 15px; }

/* ════════════ HERO ════════════ */
.hero {
  background: var(--dark);
  color: var(--on-dark);
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 50% at 85% -10%, rgba(59,130,246,.20), transparent 60%),
    radial-gradient(40% 40% at 5% 110%, rgba(29,78,216,.15), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(238,243,251,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,243,251,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,.14);
  color: #b9d0ff;
  border: 1px solid rgba(59,130,246,.30);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 12px 5px 8px;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 0 4px rgba(59,130,246,.20);
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #b9d0ff, var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--on-dark-soft);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero .actions .meta { font-size: 13px; color: var(--on-dark-mute); margin-left: 8px; font-family: var(--font-mono); }

/* Code window in hero / pages */
.codewin {
  background: #060d1c;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.02);
  overflow: hidden;
}
.codewin-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid var(--dark-border);
}
.codewin-dots { display: flex; gap: 6px; }
.codewin-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.12); }
.codewin-tag {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--on-dark-mute); letter-spacing: .04em;
}
.codewin pre {
  margin: 0; border-radius: 0; background: transparent; border: 0;
  padding: 22px; font-size: 13.5px; line-height: 1.7;
  overflow-x: auto;
  min-width: 0;
}
.codewin .c-com { color: #6b829a; font-style: italic; }
.codewin .c-key { color: #93b8ff; }
.codewin .c-str { color: #b6e2ff; }
.codewin .c-fn  { color: #d0bbff; }
.codewin .c-var { color: var(--code-text); }
.codewin .c-op  { color: var(--accent-2); }

/* ════════════ SECTIONS ════════════ */
.section { padding: 72px 0; }
.section.alt { background: var(--surface-2); }
.section.dark { background: var(--dark); color: var(--on-dark); }
.section.dark h2, .section.dark h3, .section.dark h4 { color: var(--on-dark); }
.section.dark p { color: var(--on-dark-soft); }
.section.dark code {
  background: rgba(238,243,251,.08);
  color: #b9d0ff;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(238,243,251,.08);
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section.dark .section-eyebrow { color: #b9d0ff; }
.section h2 {
  font-size: 36px; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 14px;
}
.section .lead {
  color: var(--muted); font-size: 18px; line-height: 1.55; max-width: 640px;
}
.section.dark .lead { color: var(--on-dark-soft); }

/* ════════════ TILE GRID (the four tools on home) ════════════ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.tile:hover {
  border-color: var(--accent);
  text-decoration: none; color: inherit;
  box-shadow: 0 12px 32px -16px rgba(29,78,216,.25);
}
.tile .tile-ico {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.tile .tile-ico svg { width: 22px; height: 22px; }
.tile h3 { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.015em; }
.tile p  { font-size: 14.5px; color: var(--text-soft); margin: 0 0 14px; line-height: 1.55; }
.tile .tile-meta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .02em;
}
.tile .arrow {
  position: absolute; top: 30px; right: 30px;
  color: var(--muted); transition: color .18s, transform .18s;
}
.tile:hover .arrow { color: var(--accent); transform: translateX(2px); }

/* ════════════ COMPARE TABLE (tool / feature matrix) ════════════ */
.compare-wrap {
  overflow-x: auto;
  margin: 18px 0 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.compare-table {
  display: table;       /* override page-body table { display:block } */
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 0 !important;
}
.compare-table thead th {
  background: var(--surface-2);
  text-align: left;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--text);
  letter-spacing: .02em;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-soft);
  line-height: 1.55;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover td { background: rgba(29,78,216,.04); }
.compare-table td.center, .compare-table th.center { text-align: center; }
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.compare-table .yn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 13px; font-weight: 700;
  font-family: var(--font-mono); line-height: 1;
}
.compare-table .yn-yes { background: rgba(29,78,216,.12); color: var(--accent); }
.compare-table .yn-partial { background: rgba(234,179,8,.18); color: #a16207; }
.compare-table .yn-no { background: var(--surface-2); color: #a89c93; }

/* ════════════ CHECKLIST (interactive, localStorage-persisted) ════════════ */
.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px;
  display: grid;
  gap: 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
}
.checklist li:first-child { padding-top: 6px; }
.checklist li:last-child { border-bottom: 0; }
.checklist input[type="checkbox"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  margin-top: 2px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
  transition: background .12s, border-color .12s;
  position: relative;
}
.checklist input[type="checkbox"]:hover {
  border-color: var(--accent);
}
.checklist input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.checklist input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checklist li:has(input:checked) {
  color: var(--muted);
}
.checklist li:has(input:checked) .check-body {
  text-decoration: line-through;
  text-decoration-color: var(--border-strong);
  text-decoration-thickness: 1px;
}
.check-body { flex: 1; min-width: 0; }
.check-body strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.checklist li:has(input:checked) .check-body strong { color: var(--muted); }
.check-body p { margin: 0; font-size: 14px; line-height: 1.55; }
.check-body code {
  font-size: 12.5px;
}
.checklist-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  font-weight: 600;
  margin: 36px 0 4px;
}

/* ════════════ CALLOUT (early-software banner, etc.) ════════════ */
.callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 4px 0 32px;
}
.callout-ico {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.callout-body { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.callout-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
}
.callout-body p + p { margin-top: 8px; }
.callout-body strong { font-weight: 600; }

/* ════════════ PILLAR CARDS (3-up on home) ════════════ */
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section.alt .pillar { background: var(--surface); }
.pillar-ico {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.pillar-ico svg { width: 22px; height: 22px; }
.pillar h3 {
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.pillar p {
  font-size: 14.5px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

/* ════════════ PAGE BODY ════════════ */
.page-header { background: var(--dark); color: var(--on-dark); padding: 32px 0; position: relative; overflow: hidden; }
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 80% 0%, rgba(59,130,246,.14), transparent 60%);
}
.page-header .container { position: relative; }
.page-header h1 { font-size: 34px; letter-spacing: -0.022em; color: var(--on-dark); margin: 0; }
.page-header .crumbs { font-size: 12px; color: var(--on-dark-mute); margin-bottom: 8px; font-family: var(--font-mono); }
.page-header .crumbs a { color: var(--on-dark-mute); }
.page-header .crumbs a:hover { color: var(--on-dark); }
.page-header .lede { font-size: 16.5px; color: var(--on-dark-soft); margin: 10px 0 0; max-width: 720px; }

.page-body { padding: 48px 0 80px; overflow-wrap: anywhere; }
.page-body h2 { font-size: 26px; margin: 1.8em 0 .5em; letter-spacing: -0.018em; }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { font-size: 19px; margin: 1.6em 0 .5em; }
.page-body img { border-radius: var(--radius); margin: 1em 0; }
.page-body ul, .page-body ol { padding-left: 22px; }
.page-body li { margin-bottom: .5em; color: var(--text-soft); }
.page-body table { display: block; overflow-x: auto; max-width: 100%; }

/* In-body link styling — make text content links visibly blue */
.page-body a:not(.btn),
.tool-meta a:not(.btn) {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: rgba(29,78,216,.30);
  text-underline-offset: 2px;
  transition: color .15s, text-decoration-color .15s;
}
.page-body a:not(.btn):hover { color: var(--link-hover); text-decoration-color: var(--link-hover); }

/* ════════════ TOOL DETAIL PAGE ════════════ */
.tool-meta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px 28px;
}
.tool-meta dt {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.tool-meta dd { margin: 0; font-size: 14.5px; color: var(--text); }
.tool-meta dd code {
  font-size: 13px;
}

.tool-bullets {
  list-style: none; padding: 0; margin: 12px 0 1.2em;
}
.tool-bullets li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px; line-height: 1.6;
  color: var(--text-soft);
}
.tool-bullets li:last-child { border-bottom: 0; }
.tool-bullets li strong { color: var(--text); font-weight: 600; }

/* Cmd snippet — single inline command */
.cmd {
  display: block;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  background: var(--code-bg);
  color: var(--code-text);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 12px 0 20px;
  overflow-x: auto;
  white-space: pre;
}
.cmd::before { content: "$ "; color: var(--accent-2); opacity: .8; }

/* ════════════ FORM ════════════ */
.svc-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 16px 0 24px;
}
.svc-form-intro {
  font-size: 14.5px; color: var(--muted);
  margin: 0 0 18px;
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.svc-form label {
  display: flex; flex-direction: column;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  gap: 6px;
}
.svc-form label.svc-block { margin-bottom: 14px; }
.svc-form label > span em {
  color: var(--accent); font-style: normal; font-weight: 700;
}
.svc-form label > span small {
  color: var(--muted); font-weight: 400;
}
.svc-form input[type="text"],
.svc-form input[type="email"],
.svc-form input[type="tel"],
.svc-form select,
.svc-form textarea {
  width: 100%;
  font: 15px var(--font-sans);
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: border-color .15s, box-shadow .15s;
}
.svc-form select { padding: 9px 12px; }
.svc-form textarea {
  resize: vertical; min-height: 140px; line-height: 1.55;
}
.svc-form input:focus,
.svc-form select:focus,
.svc-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,78,216,.16);
}
.svc-err {
  color: #b91c1c;
  font-size: 12.5px; font-weight: 500;
  margin-top: 2px;
}
.svc-form input.has-error,
.svc-form textarea.has-error { border-color: #b91c1c; }

.svc-actions {
  display: flex; align-items: center; gap: 14px;
  margin-top: 18px; flex-wrap: wrap;
}
.svc-meta { font-size: 13px; color: var(--muted); }
.svc-min-hint {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}
.svc-flash {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-deep);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14.5px;
}
.svc-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}

/* Thank-you */
.svc-thanks {
  text-align: center;
  padding: 40px 20px 8px;
}
.svc-thanks-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.svc-thanks h2 { font-size: 30px; margin-bottom: 8px; }
.svc-thanks .lead { font-size: 17px; max-width: 520px; margin: 0 auto 18px; }
.svc-thanks p { max-width: 560px; margin-left: auto; margin-right: auto; }
.svc-thanks-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 28px;
}

/* ════════════ SERVICES INDEX (cards) ════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 24px 0 56px;
}
.svc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s, box-shadow .15s;
}
.svc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px -16px rgba(29,78,216,.22);
  text-decoration: none;
  color: inherit;
}
.svc-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.svc-card__ico {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-card__ico svg { width: 20px; height: 20px; }
.svc-card__kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
}
.svc-card h3 { font-size: 19px; letter-spacing: -0.015em; margin: 0; }
.svc-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); margin: 0 0 4px; }

/* ════════════ FOOTER ════════════ */
.site-footer {
  background: var(--dark);
  color: var(--on-dark-soft);
  padding: 64px 0 28px;
  font-size: 14.5px;
  border-top: 1px solid var(--dark-border);
}
.site-footer a { color: var(--on-dark-soft); }
.site-footer a:hover { color: var(--on-dark); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--on-dark); font-size: 12px; text-transform: uppercase;
  letter-spacing: .1em; margin: 0 0 16px; font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 14px; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { color: var(--on-dark-mute); font-size: 13.5px; line-height: 1.55; max-width: 280px; margin: 0; }
.footer-meta {
  border-top: 1px solid var(--dark-border);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--on-dark-mute);
  font-family: var(--font-mono);
}

/* ════════════ FEATURE PILLS (sub-bullets in cards) ════════════ */
.feature-pills {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.feature-pills li {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: -0.005em;
}

/* ════════════ RESPONSIVE ════════════ */
.hero-grid > *,
.tile-grid > *,
.svc-grid > *,
.footer-grid > * { min-width: 0; }

@media (max-width: 980px) {
  .hero { padding: 64px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 42px; }
  .tile-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 56px 0; }
  .section h2 { font-size: 28px; }
  .topnav { gap: 18px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .topnav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--dark-border);
    padding: 8px 16px 16px;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: opacity .15s, transform .15s, visibility .15s;
    box-shadow: 0 12px 32px -12px rgba(0,0,0,.5);
  }
  .topnav.is-open {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .topnav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--dark-border);
    font-size: 16px;
  }
  .topnav a:last-child { border-bottom: 0; }
  .topnav a.is-active::after { display: none; }
  .topnav a.is-active { color: var(--accent-2); }
  .topnav .btn {
    margin: 12px 0 0; text-align: center; justify-content: center;
    border-radius: var(--radius);
  }
  .site-header .container { position: relative; }
}
@media (max-width: 620px) {
  .svc-row { grid-template-columns: 1fr; gap: 12px; }
  .svc-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 34px; }
  .page-header h1 { font-size: 26px; }
  .container, .container-narrow { padding: 0 14px; }
  .page-body { font-size: 15px; }
}
