/* Solution DETAIL page supplement (shared by Scout / Sales Genie / Enterprise MCP).
   Loads AFTER /assets/css/style.css; reuses chrome, tokens, .eyebrow, .section-*, .btn,
   .outcomes, .final. Solution-only components are namespaced .sol-*. */

/* Hero (navy) */
.sol-hero {
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid var(--navy-mid);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}
.sol-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(200,68,73,0.16) 0%, transparent 62%);
  pointer-events: none;
}
.sol-hero .container { position: relative; z-index: 1; }
.sol-crumb {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.72);
  position: static; height: auto; padding: 0; background: none;
  backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: none; display: block;
}
.sol-crumb a { color: rgba(255,255,255,0.88); text-decoration: none; }
.sol-crumb a:hover { color: #fff; }
.sol-crumb span { margin: 0 8px; opacity: 0.5; }
.sol-hero .eyebrow { background: rgba(200,68,73,0.15); color: var(--red-light); }
.sol-hero h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 20px;
  max-width: 720px;
}
.sol-hero h1 em { font-style: italic; color: var(--red-light); }
.sol-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 0 32px;
}
.sol-hero .cta-row { margin: 0; }
.sol-hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.35); }
.sol-hero .btn-secondary:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* Benefit cards (3-up) */
.sol-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sol-benefit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sol-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(30, 28, 58, 0.08);
  border-color: var(--border-mid);
}
.sol-benefit h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--navy);
  margin: 0 0 12px;
}
.sol-benefit p { font-size: 15px; line-height: 1.6; color: var(--text-mid); margin: 0; }

/* Steps (4-up, numbered) */
.sol-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sol-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  position: relative;
}
.sol-step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.sol-step h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}
.sol-step p { font-size: 14px; line-height: 1.55; color: var(--text-mid); margin: 0; }

/* Capabilities (what → how) */
.sol-caps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sol-cap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sol-cap:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(30, 28, 58, 0.08);
  border-color: var(--border-mid);
}
.sol-cap h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}
.sol-cap p { font-size: 14px; line-height: 1.6; color: var(--text-mid); margin: 0; }
.sol-cap-how {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--navy);
}
.sol-cap-how::before {
  content: "→ ";
  color: var(--red);
  font-weight: 600;
}

/* Proof (dark): reuses .outcomes/.outcome from style.css, forced to 3-up */
.sol-proof .outcomes { grid-template-columns: repeat(3, 1fr); margin-bottom: 40px; }
.sol-quote {
  border-left: 3px solid var(--red);
  padding: 6px 0 6px 26px;
  max-width: 760px;
}
.sol-quote p {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  font-style: italic;
  color: #fff;
  margin: 0 0 14px;
}
.sol-quote cite {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}
.sol-proof-link {
  margin: 16px 0 0 26px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.sol-proof-link a { color: var(--red-light); text-decoration: none; border-bottom: 1px dashed var(--red-light); padding-bottom: 1px; }
.sol-proof-link a:hover { color: #fff; border-bottom-color: #fff; }
.sol-built {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
}
.sol-built a { color: var(--red-light); text-decoration: none; border-bottom: 1px dashed var(--red-light); padding-bottom: 1px; }
.sol-built a:hover { color: #fff; border-bottom-color: #fff; }

/* Use-case meta line (e.g. systems/stack) inside a benefit card */
.sol-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 12px;
}

/* Numbered "signals" list */
.sol-signals { list-style: none; margin: 0; padding: 0; max-width: 820px; counter-reset: sig; }
.sol-signals li {
  position: relative;
  padding: 18px 0 18px 42px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
}
.sol-signals li:last-child { border-bottom: none; }
.sol-signals li strong { color: var(--navy); font-weight: 600; }
.sol-signals li::before {
  counter-increment: sig;
  content: counter(sig);
  position: absolute;
  left: 0; top: 16px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red-pale);
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .sol-benefits, .sol-steps, .sol-caps { grid-template-columns: 1fr; }
  .sol-proof .outcomes { grid-template-columns: 1fr; gap: 28px; }
  .sol-hero { padding: 48px 0 44px; }
  .sol-hero-sub { font-size: 17px; }
}
@media (min-width: 561px) and (max-width: 960px) {
  .sol-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Demo video embed ---- */
.sol-video .container { text-align: center; }
.sol-video-frame {
  max-width: 880px;
  margin: 28px auto 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(30, 28, 58, 0.08);
  background: #000;
}
.sol-video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.sol-video-fallback { margin-top: 14px; font-size: 14px; }
