/* ─────────────────────────────────────────────────────────────────
   /solutions/{niche}/ — scoped CSS for the solution CPT
   Loaded only on single-solution + archive-solution.
   Reuses tokens.css; introduces NO new tokens.
   ───────────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────────
   BREADCRUMB (.crumb) — same DOM + visual logic as mh-custom for parity.
   First crumb links to the PARENT site (metropolitanhost.com) so the
   hierarchy reflects the subdirectory install: parent > section > page.
   ───────────────────────────────────────────────────────────────── */
.crumb {
  padding: 22px 0 6px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.4px;
  color: var(--ink-2);
  line-height: 1.4;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0;
}
.crumb a { color: var(--ink-2); transition: color .15s; text-decoration: none; }
.crumb a:hover { color: var(--cyan); }
.crumb > span { margin: 0 8px; color: var(--ink-2); opacity: 0.5; display: inline-block; }
.crumb strong { color: var(--ink-0); font-family: var(--f-sans); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────
   FULL-BLEED HERO PANEL
   Spans viewport edge-to-edge and extends UP behind the nav so the
   radial-gradient backdrop fills the entire above-the-fold area.
   The nav (which sits earlier in <main>) stays visible on top via
   higher z-index.
   ───────────────────────────────────────────────────────────────── */
/* Prevent the full-bleed section from forcing a horizontal scrollbar.
   Scope to the Solution Landing template (and the legacy CPT class for
   rollback safety). [2026-05-18] After CPT→Pages migration, body class
   changed from .single-solution to .page-template-solution-landing —
   target both so this works pre- and post-migration.
   [2026-06-20] The 13-industry reframe added the solution-niche / solutions-hub /
   niche-library templates (new body classes). Their body classes were NOT in
   this clip list, so the 100vw hero overflowed ~8px (the scrollbar width) and
   produced a horizontal scroll. Added them here. overflow-x:clip (not hidden)
   is used so it does not break the sticky nav. */
body.page-template-solution-landing main#content,
body.page-template-solution-niche main#content,
body.page-template-solutions-hub main#content,
body.page-template-niche-library main#content,
body.single-solution main#content { overflow-x: clip; }
body.page-template-solution-landing,
body.page-template-solution-niche,
body.page-template-solutions-hub,
body.page-template-niche-library,
body.single-solution { overflow-x: clip; }

.sol-hero-fullbleed {
  position: relative;
  /* Break out of any parent container width constraint by spanning 100vw
     and using position: left: 50% with negative half-vw offset. The
     overflow-x: clip on main + body above swallows any rounding-pixel
     overshoot so there is no horizontal scroll. */
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: 0;
  /* Pull section up behind the nav so the gradient backdrop fills
     all the way to the top of the viewport. Nav height ≈ 90px desktop. */
  margin-top: -110px;
  /* Fill the rest of the above-the-fold area. */
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  /* Live builder's radial-gradient backdrop. */
  background:
    radial-gradient(circle at 30% 20%, oklch(0.4 0.18 256 / 0.18), transparent 60%),
    radial-gradient(circle at 70% 80%, oklch(0.4 0.21 295 / 0.14), transparent 60%);
  /* Below the nav so the nav renders on top. */
  z-index: 0;
  /* Padding pushes content down so it doesn't sit underneath the nav. */
  padding: 130px 24px 60px;
  overflow: hidden;
}
.sol-hero-fullbleed__stage {
  width: 100%;
  max-width: 720px;
  display: flex; align-items: center; justify-content: center;
}

/* Make sure the nav stays above the full-bleed section. */
.nav-wrap { position: relative; z-index: 30; }

@media (max-width: 768px) {
  .sol-hero-fullbleed { margin-top: -80px; padding: 100px 16px 48px; min-height: calc(100vh - 0px); }
}

/* ─────────────────────────────────────────────────────────────────
   Empty-canvas content (centered Pick-a-starter block)
   ───────────────────────────────────────────────────────────────── */
.sol-panel {
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: clamp(520px, 70vh, 760px);
}

/* Top toolbar — device switcher + url chip + actions */
.sol-panel__toolbar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--stroke-1);
  flex-shrink: 0;
}
.sol-panel__seg {
  display: flex; gap: 2px; padding: 3px;
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: 10px;
}
.sol-panel__seg button {
  padding: 5px 10px;
  background: transparent;
  color: var(--ink-2);
  border: 0; border-radius: 7px;
  font-size: 12px; font-family: var(--f-sans);
  cursor: default;
  display: flex; align-items: center; gap: 5px;
}
.sol-panel__seg button.on { background: var(--glass-3); color: var(--ink-0); }
.sol-panel__url {
  flex: 1;
  padding: 6px 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--stroke-1);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-1);
  display: flex; align-items: center; gap: 8px;
}
.sol-panel__url .lock { color: var(--success); display: inline-flex; }
.sol-panel__url .live {
  margin-left: auto;
  padding: 1px 7px;
  background: oklch(0.78 0.17 158 / 0.15);
  color: var(--success);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.06em;
  border: 1px solid oklch(0.78 0.17 158 / 0.4);
}
.sol-panel__icbtn {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: 8px;
  color: var(--ink-1);
  cursor: default;
}

/* Center stage — radial gradient backdrop + empty-canvas content */
.sol-panel__stage {
  flex: 1;
  position: relative;
  padding: 40px 24px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, oklch(0.4 0.18 256 / 0.15), transparent 60%),
    radial-gradient(circle at 70% 80%, oklch(0.4 0.21 295 / 0.12), transparent 60%);
}
.sol-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 22px;
  text-align: center;
  width: 100%; max-width: 720px; padding: 16px;
}
.sol-empty__h {
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.03em;
  color: var(--ink-0);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}
.sol-empty__h em {
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sol-empty__sub {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 540px;
  margin: 0;
}
.sol-empty__chips {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-top: 4px;
}
.sol-empty__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-0);
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}
.sol-empty__chip:hover {
  background: var(--glass-3);
  border-color: var(--stroke-bright);
  transform: translateY(-1px);
}
.sol-empty__chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: hsl(var(--ind-hue, 210), 60%, 60%);
  box-shadow: 0 0 8px hsl(var(--ind-hue, 210), 60%, 60% / 0.6);
}

/* Real, editable prompt textbox */
.sol-empty__form { width: 100%; max-width: 560px; margin-top: 8px; }
.sol-empty__inputwrap {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 16px;
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: 14px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.sol-empty__inputwrap:focus-within {
  border-color: oklch(0.7 0.19 256 / 0.55);
  background: var(--glass-3);
  box-shadow: 0 0 0 4px oklch(0.7 0.19 256 / 0.1);
}
.sol-empty__sparkle { color: var(--cyan); flex-shrink: 0; }
.sol-empty__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  padding: 12px 0;
  font-family: var(--f-sans);
  font-size: 14.5px;
  color: var(--ink-0);
  min-width: 0;
}
.sol-empty__input::placeholder { color: var(--ink-2); }
.sol-empty__submit {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 10px;
  background: var(--grad-primary);
  color: white;
  cursor: pointer;
  box-shadow: var(--shadow-glow-blue);
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}
.sol-empty__submit:hover { transform: translateY(-1px); }

/* Bottom dock — status meta */
.sol-panel__dock {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--stroke-1);
  flex-shrink: 0;
  background: rgba(0,0,0,0.2);
}
.sol-panel__dock-meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.sol-panel__dock-spinner {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}

/* Mobile compaction */
@media (max-width: 768px) {
  .sol-panel { min-height: 520px; border-radius: var(--r-lg); }
  .sol-panel__toolbar { padding: 8px 10px; gap: 6px; }
  .sol-panel__seg button { padding: 5px 8px; font-size: 11px; }
  .sol-panel__url { font-size: 11px; }
  .sol-panel__stage { padding: 24px 12px; }
  .sol-empty__h { font-size: 20px; }
  .sol-empty__sub { font-size: 13px; }
}

/* Section rhythm */
.sol-section          { padding: 96px 0; position: relative; }
@media (max-width: 1024px) { .sol-section { padding: 64px 0; } }
@media (max-width: 640px)  { .sol-section { padding: 48px 0; } }

/* Reusable elements */
.sol-kicker {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  padding: 6px 12px;
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-pill);
  background-clip: padding-box;
}
.sol-kicker--grad { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; border-color: transparent; padding: 0; }

/* HERO */
#hero { padding-top: 120px; }
.sol-hero { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.sol-hero__h1 { font-size: clamp(40px, 5.6vw, 72px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.04; max-width: 920px; }
.sol-hero__lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-1); max-width: 680px; line-height: 1.55; }
.sol-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* LIVE BUILDER (#start-building) */
#start-building { padding-top: 64px; }
.sol-builder {
  background: var(--bg-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.sol-builder__heading { padding: 32px 32px 0; }
.sol-builder__shell { min-height: 700px; }      /* slot for the actual builder-shell-v4 inline include */
.sol-builder__hint  { display: flex; gap: 8px; padding: 16px 32px 32px; flex-wrap: wrap; }
.sol-builder__chip  {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--glass-2); border: 1px solid var(--stroke-1);
  border-radius: var(--r-pill);
  font-size: 12px; color: var(--ink-1); font-family: var(--f-mono);
}

/* FEATURES (4-block grid) */
.sol-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .sol-features { grid-template-columns: 1fr; } }
.sol-feature {
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: border-color .2s, transform .2s;
}
.sol-feature:hover { border-color: var(--stroke-bright); transform: translateY(-2px); }
.sol-feature__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow-blue);
}
.sol-feature__h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.sol-feature__body { color: var(--ink-1); line-height: 1.6; }

/* HOWTO (5-step numbered cards) */
.sol-howto { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
@media (max-width: 1024px) { .sol-howto { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .sol-howto { grid-template-columns: 1fr; } }
.sol-step {
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
}
.sol-step__num {
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--grad-primary); color: white;
  font-family: var(--f-mono); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-glow-blue);
}
.sol-step__title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.sol-step__body  { font-size: 14px; color: var(--ink-1); line-height: 1.5; }

/* SOCIAL PROOF strip */
.sol-proof { text-align: center; }
.sol-proof__line { color: var(--ink-2); font-size: 14px; margin-bottom: 24px; }
.sol-proof__logos { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.6; margin-bottom: 32px; }
.sol-testimonial {
  max-width: 680px; margin: 0 auto;
  padding: 32px;
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-lg);
}
.sol-testimonial__quote { font-size: 18px; line-height: 1.6; color: var(--ink-0); margin-bottom: 16px; }
.sol-testimonial__author { font-size: 14px; color: var(--ink-2); }

/* FAQ accordion */
.sol-faq { max-width: 820px; margin: 0 auto; }
.sol-faq details {
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.sol-faq details[open] { border-color: var(--stroke-bright); }
.sol-faq summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-0);
  display: flex; justify-content: space-between; align-items: center;
}
.sol-faq summary::-webkit-details-marker { display: none; }
.sol-faq summary::after {
  content: ""; width: 12px; height: 12px;
  border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg); transition: transform .2s;
}
.sol-faq details[open] summary::after { transform: rotate(-135deg); }
.sol-faq__body { padding: 0 24px 20px; color: var(--ink-1); line-height: 1.6; }

/* FROM THE BLOG */
.sol-blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .sol-blog { grid-template-columns: 1fr; } }
.sol-blog__card {
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.sol-blog__card:hover { border-color: var(--stroke-bright); transform: translateY(-2px); }
.sol-blog__img { aspect-ratio: 16/10; background: var(--bg-3); object-fit: cover; width: 100%; }
.sol-blog__h3 { font-size: 18px; font-weight: 600; padding: 20px 20px 8px; }
.sol-blog__excerpt { padding: 0 20px 20px; color: var(--ink-2); font-size: 14px; }

/* MORE AI BUILDERS (siblings) */
.sol-siblings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1024px) { .sol-siblings { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .sol-siblings { grid-template-columns: 1fr; } }
.sol-sibling {
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .2s, background .2s;
  color: var(--ink-0);
}
.sol-sibling:hover { border-color: var(--stroke-bright); background: var(--glass-3); }
.sol-sibling__icon { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--grad-primary); flex-shrink: 0; }
.sol-sibling__name { font-weight: 500; }

/* FINAL CTA */
.sol-final {
  background: var(--grad-soft);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  padding: 64px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.sol-final__h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 16px; max-width: 720px; margin-inline: auto; }
.sol-final__lead { color: var(--ink-1); font-size: 17px; margin-bottom: 24px; max-width: 580px; margin-inline: auto; line-height: 1.55; }

/* STICKY MOBILE CTA */
.sol-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: none;
  padding: 12px 16px;
  background: rgba(20, 18, 38, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--stroke-1);
}
@media (max-width: 768px) {
  .sol-sticky-cta { display: flex; gap: 8px; }
  .sol-sticky-cta .btn { flex: 1; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────────
   CONVERSION PATTERNS — the things that make this page convert
   ───────────────────────────────────────────────────────────────── */

/* Live-ticker badge above the hero (animated dot + recent generation) */
.sol-ticker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-pill);
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-1);
  margin-bottom: 24px;
}
.sol-ticker__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Trust strip under hero CTAs */
.sol-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px;
  color: var(--ink-2); font-size: 13px; font-family: var(--f-mono);
}
.sol-trust__item { display: inline-flex; align-items: center; gap: 6px; }
.sol-trust__star { color: var(--warning); }

/* Pulse on primary CTA */
.btn-primary.sol-pulse { position: relative; }
.btn-primary.sol-pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: var(--r-pill);
  border: 1px solid oklch(0.7 0.19 256 / 0.5);
  animation: sol-pulse-ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes sol-pulse-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Animated counter stats trio */
.sol-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 48px 32px;
  background: var(--grad-soft);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
}
@media (max-width: 768px) { .sol-stats { grid-template-columns: 1fr; padding: 32px 24px; } }
.sol-stat__num {
  font-family: var(--f-mono); font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sol-stat__label { color: var(--ink-2); font-size: 13px; font-family: var(--f-mono); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 12px; }

/* Hero ambient glow accent on the right edge */
.sol-hero { position: relative; }
.sol-hero::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, oklch(0.66 0.21 295 / 0.18), transparent 70%);
  pointer-events: none; filter: blur(40px);
  z-index: -1;
}

/* HowTo: connect line between numbered steps on desktop */
.sol-howto { position: relative; }
@media (min-width: 1025px) {
  .sol-howto::before {
    content: ""; position: absolute;
    top: 40px; left: 5%; right: 5%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--stroke-2), var(--stroke-2), transparent);
    z-index: 0;
  }
  .sol-step { position: relative; z-index: 1; background: var(--bg-2); }
}

/* Sibling tiles — hover reveals "Try it →" */
.sol-sibling { position: relative; overflow: hidden; }
.sol-sibling__arrow {
  margin-left: auto; opacity: 0;
  color: var(--cyan); font-family: var(--f-mono); font-size: 12px;
  transition: opacity .2s;
}
.sol-sibling:hover .sol-sibling__arrow { opacity: 1; }

/* Final CTA pulse glow */
.sol-final { position: relative; overflow: hidden; }
.sol-final::after {
  content: ""; position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, oklch(0.7 0.19 256 / 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.sol-final > * { position: relative; z-index: 1; }

/* Editorial body block (the_content output) */
.sol-editorial { color: var(--ink-1); line-height: 1.75; font-size: 17px; }
.sol-editorial h2 { margin: 40px 0 16px; font-size: clamp(24px, 2.4vw, 34px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink-0); }
.sol-editorial h3 { margin: 28px 0 12px; font-size: 21px; font-weight: 600; color: var(--ink-0); }
.sol-editorial p  { margin-bottom: 18px; }
.sol-editorial a  { color: var(--cyan); text-decoration: underline; text-decoration-color: oklch(0.85 0.13 205 / 0.4); text-underline-offset: 3px; }
.sol-editorial a:hover { text-decoration-color: var(--cyan); }
.sol-editorial ul, .sol-editorial ol { margin: 18px 0 18px 24px; }
.sol-editorial li { margin-bottom: 8px; }
.sol-editorial strong { color: var(--ink-0); font-weight: 600; }
.sol-editorial blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--cyan);
  background: var(--glass-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--ink-0);
}
.sol-editorial code {
  font-family: var(--f-mono); font-size: 0.9em;
  padding: 2px 6px;
  background: var(--bg-3); border: 1px solid var(--stroke-1);
  border-radius: var(--r-sm);
}

/* Page nav bar specific to /solutions/ routes — minimal */
.sol-topnav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.sol-topnav__brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; }
.sol-topnav__brand small { color: var(--ink-2); font-weight: 400; }
.sol-topnav__links { display: flex; align-items: center; gap: 24px; }
.sol-topnav__links a { color: var(--ink-1); font-size: 14px; }
.sol-topnav__links a:hover { color: var(--ink-0); }
@media (max-width: 768px) { .sol-topnav__links a:not(.btn) { display: none; } }

/* ARCHIVE — /solutions/ index grid */
.sol-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .sol-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .sol-archive-grid { grid-template-columns: 1fr; } }
.sol-archive-card {
  background: var(--glass-2);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: var(--ink-0);
  transition: border-color .2s, transform .2s;
}
.sol-archive-card:hover { border-color: var(--stroke-bright); transform: translateY(-2px); }
.sol-archive-card__icon { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--grad-primary); }
.sol-archive-card__h3   { font-size: 20px; font-weight: 600; }
.sol-archive-card__body { color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.sol-archive-card__cta  { color: var(--cyan); font-size: 13px; font-family: var(--f-mono); margin-top: auto; }
