/* ==========================================================================
   SOLUTION BLUEPRINT — v2.1
   360marketing.my  ·  assets/css/solution.css  ·  NEW FILE, overwrites nothing
   --------------------------------------------------------------------------
   ⚠ This is NOT a replacement for assets/css/division.css. That file styles the
   /division/* bridge pages (.div-page-wrapper, .div-hero, and a site-wide
   .container rule) and shares no selectors with this one. Leave it alone.

   Every custom property below carries a fallback, so this file renders
   correctly even if global.css is missing or loads late.
   All classes are `sol-` prefixed — no collision with home.css, division.css,
   or global.css's .btn / .section-kicker / .system-card / .gradient-border-card.
========================================================================== */

.sol-page {
  --c-orange:      var(--primary-orange, #f97316);
  --c-orange-dark: var(--orange-hover, #ea580c);
  --c-cyan:        var(--accent-cyan, #22d3ee);
  --c-navy:        var(--bg-navy, #050a16);
  --c-navy-deep:   #030612;
  --c-ink:         var(--text-main, #0b1220);
  --c-muted:       var(--text-muted, #64748b);
  --c-line:        var(--line, #e2e8f0);
  --c-soft:        var(--section-bg-light, #f8fafc);
  --c-warn:        #dc2626;

  /* Radii track global.css so solution cards sit on the same grid as the rest
     of the site (.system-card / .gradient-border-card / .btn). */
  --r-lg: var(--card-radius, 20px);
  --r-md: var(--btn-radius, 14px);
  --r-sm: 10px;

  --shadow-card: 0 1px 2px rgba(15,23,42,.04), 0 12px 28px -18px rgba(15,23,42,.18);
  --shadow-lift: 0 2px 4px rgba(15,23,42,.05), 0 26px 50px -24px rgba(15,23,42,.28);

  background: #fff;
  color: var(--c-ink);
  font-feature-settings: "cv11", "ss01";
}

.sol-page *,
.sol-page *::before,
.sol-page *::after { box-sizing: border-box; }

.sol-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Icons never reflow the page while lucide boots */
.sol-page [data-lucide],
.sol-page .sol-i {
  width: 1em; height: 1em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.125em;
  stroke-width: 2;
}

/* --------------------------------------------------------------------------
   Shared type
-------------------------------------------------------------------------- */
.sol-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 99px;
  background: var(--c-soft); border: 1px solid var(--c-line); color: var(--c-muted);
}
/* Cyan dot + glow ring, matching global.css `.section-kicker .dot` so solution
   pages read as the same system as the homepage. */
.sol-kicker .sol-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto;
  background: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .14);
}
.sol-kicker--dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #cbd5e1; }
.sol-kicker--dark .sol-dot { box-shadow: 0 0 0 4px rgba(34, 211, 238, .18); }

.sol-h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 900; letter-spacing: -.02em; line-height: 1.15;
  color: var(--c-ink); margin: 1.1rem 0 0;
}
.sol-sub {
  font-size: 1.08rem; line-height: 1.65; color: var(--c-muted);
  font-weight: 500; margin: .9rem 0 0; max-width: 62ch;
}
.sol-head { margin-bottom: 3rem; }
.sol-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.sol-head--center .sol-sub { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Buttons
-------------------------------------------------------------------------- */
.sol-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--r-md);
  font-weight: 800; font-size: 1rem; line-height: 1;
  text-decoration: none; border: 1px solid transparent;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.sol-btn--primary { background: var(--c-orange); color: #fff; box-shadow: 0 10px 24px -12px rgba(249,115,22,.85); }
.sol-btn--primary:hover { background: var(--c-orange-dark); color: #fff; transform: translateY(-2px); }
.sol-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.22); }
.sol-btn--ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); color: #fff; }
.sol-btn--light { background: #fff; color: var(--c-ink); }
.sol-btn--light:hover { background: #f1f5f9; color: var(--c-ink); transform: translateY(-2px); }
.sol-btn:focus-visible { outline: 3px solid rgba(249,115,22,.45); outline-offset: 3px; }

.sol-textlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: .95rem; text-decoration: none;
  color: var(--c-orange); border-bottom: 1px solid transparent;
  transition: border-color .18s ease;
}
.sol-textlink:hover { border-bottom-color: currentColor; color: var(--c-orange); }
.sol-textlink--onDark { color: rgba(255,255,255,.72); }
.sol-textlink--onDark:hover { color: #fff; }

/* --------------------------------------------------------------------------
   1 · HERO
-------------------------------------------------------------------------- */
.sol-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #0d1830 0%, var(--c-navy) 45%, var(--c-navy-deep) 100%);
  color: #fff;
  /* Clears the fixed, transparent .site-header (≈90px at rest). The real site
     sets no body padding-top — the hero deliberately sits under the header. */
  padding: 8.5rem 0 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sol-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,0) 72%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,0) 72%);
}
.sol-hero > .sol-container { position: relative; z-index: 1; }

.sol-hero-inner { max-width: 1020px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }

.sol-h1 {
  font-size: clamp(2rem, 5.2vw, 3.9rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.03em;
  color: #fff; margin: 1.6rem 0 0;
  text-wrap: balance;
}
.sol-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.7;
  color: rgba(203,213,225,.92); font-weight: 400;
  margin: 1.3rem 0 0; max-width: 62ch;
}
.sol-hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; margin-top: 2.2rem; }

/* Journey chain — replaces the flat micro-text line */
.sol-chain {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .5rem; margin-top: 2.4rem;
}
.sol-chain-node {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: 99px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  font-size: .86rem; font-weight: 750; color: #e2e8f0; white-space: nowrap;
}
.sol-chain-node--lead { background: rgba(249,115,22,.14); border-color: rgba(249,115,22,.4); color: #fed7aa; }
/* --now marks the stage THIS page sits in. Every solution page shows the same
   four-stage loop, so this is the only thing that differs between them — it has
   to read as "you are here", not merely as an accent. */
.sol-chain-node--now {
  background: rgba(249,115,22,.9); border-color: rgba(249,115,22,.9); color: #fff;
  font-weight: 850; box-shadow: 0 0 0 4px rgba(249,115,22,.16);
}
.sol-chain-arrow { color: rgba(148,163,184,.55); font-size: 1rem; line-height: 1; }
.sol-chain-label { display: block; width: 100%; text-align: center; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: rgba(148,163,184,.75); margin-bottom: .35rem; }
.sol-micro { margin-top: 2.2rem; font-size: .92rem; color: #94a3b8; font-weight: 500; }
.sol-micro strong { color: #fff; font-weight: 800; }

/* v2.5 — the chain nodes became links into the hub. They have to invite a
   click without turning the hero into a row of underlined blue text. */
a.sol-chain-node { text-decoration: none; transition: background .16s ease, border-color .16s ease, transform .16s ease; }
a.sol-chain-node:hover, a.sol-chain-node:focus-visible {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); transform: translateY(-1px);
}
a.sol-chain-node--now:hover, a.sol-chain-node--now:focus-visible {
  background: rgba(249,115,22,1); border-color: rgba(249,115,22,1);
}
.sol-chain-step {
  display: block; width: 100%; text-align: center; margin-top: .55rem;
  font-size: .76rem; font-weight: 700; color: rgba(148,163,184,.8);
}

/* --------------------------------------------------------------------------
   2a-bis · THE WHATSAPP LADDER STRIP (hero)
   Three rungs, rendered on all three WhatsApp pages from the same registry
   entry the hub's ladder reads. The current rung is a <span>, the other two
   are links, so the strip is also the navigation between them. Sits on the
   dark hero, hence the light-on-dark palette.
   -------------------------------------------------------------------------- */
.sol-rungs {
  margin: 1.75rem auto 0; max-width: 760px;
}
.sol-rungs-lab {
  display: block; text-align: center;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 800; color: rgba(148,163,184,.75); margin-bottom: .6rem;
}
.sol-rungs-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem;
  counter-reset: none;
}
.sol-rung { margin: 0; }
.sol-rung-in {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  height: 100%; padding: .7rem .85rem;
  border: 1px solid rgba(255,255,255,.10); border-radius: 12px;
  background: rgba(255,255,255,.035);
  text-decoration: none; text-align: left;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
a.sol-rung-in:hover, a.sol-rung-in:focus-visible {
  background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.2);
  transform: translateY(-1px);
}
.sol-rung-in em {
  font-style: normal; font-size: .68rem; font-weight: 900;
  width: 18px; height: 18px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(148,163,184,.22); color: #e2e8f0; margin-bottom: 2px;
}
.sol-rung-in b { font-size: .95rem; font-weight: 850; color: #f8fafc; letter-spacing: -.01em; }
.sol-rung-in span { font-size: .78rem; font-weight: 600; color: rgba(148,163,184,.85); }
.sol-rung--now .sol-rung-in {
  background: rgba(249,115,22,.16); border-color: rgba(249,115,22,.45);
}
.sol-rung--now .sol-rung-in em { background: #f97316; color: #0b1220; }
.sol-rung--now .sol-rung-in b { color: #fed7aa; }
.sol-rung--now .sol-rung-in span { color: rgba(254,215,170,.8); }
.sol-rungs-ask {
  margin: .75rem 0 0; text-align: center;
  font-size: .88rem; line-height: 1.6; color: rgba(203,213,225,.85);
}
.sol-rungs-ask strong { color: #f8fafc; font-weight: 800; }

@media (max-width: 640px) {
  .sol-rungs-list { grid-template-columns: 1fr; gap: .4rem; }
  .sol-rung-in { flex-direction: row; align-items: center; gap: 10px; padding: .6rem .75rem; }
  .sol-rung-in em { margin-bottom: 0; flex: 0 0 auto; }
  .sol-rung-in b { flex: 0 0 auto; }
  .sol-rung-in span { flex: 1 1 auto; text-align: right; }
}

/* A module states once, near the top, that it is part of a platform. This is
   the sentence that stops the three event pages reading as rival products. */
.sol-partof {
  margin: 1.5rem auto 0; max-width: 62ch; text-align: center;
  font-size: .92rem; color: rgba(203,213,225,.85);
}
.sol-partof a { color: #fdba74; font-weight: 750; text-underline-offset: 3px; }
.sol-partof a:hover, .sol-partof a:focus-visible { color: #fff; }

/* --------------------------------------------------------------------------
   2b · THE WALK — previous / you are here / next
   The loop was stated on every page and walkable from none of them. This is
   the component that turns the claim into navigation. Three columns on
   desktop; on mobile the "here" card sits first so the reader is oriented
   before being offered a way out.
-------------------------------------------------------------------------- */
.sol-walk {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 1rem; align-items: stretch;
}
.sol-walk--module { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.sol-walk-card, .sol-walk-here {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1.15rem 1.35rem; border-radius: var(--r-md, 14px);
  border: 1px solid var(--c-line); background: #fff; text-decoration: none;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.sol-walk-card:hover, .sol-walk-card:focus-visible {
  border-color: rgba(249,115,22,.55); box-shadow: 0 8px 26px rgba(15,23,42,.08);
  transform: translateY(-2px);
}
.sol-walk-card--next { text-align: right; }
.sol-walk-card--next .sol-walk-k { justify-content: flex-end; }
.sol-walk-k {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 800; color: #c2410c;              /* AA-safe orange for small text */
}
.sol-walk-k .sol-i { width: 14px; height: 14px; }
.sol-walk-t { font-size: 1.02rem; font-weight: 800; color: var(--c-ink); }
.sol-walk-d { font-size: .87rem; color: var(--c-muted); line-height: 1.5; }
.sol-walk-here {
  background: var(--c-navy, #0f172a); border-color: var(--c-navy, #0f172a);
  text-align: center; align-items: center; min-width: 220px;
}
.sol-walk-here .sol-walk-k { color: #fdba74; }
.sol-walk-here .sol-walk-t { color: #fff; }
.sol-walk-here .sol-walk-d { color: rgba(203,213,225,.85); }
.sol-walk-foot { margin: 1.4rem 0 0; text-align: center; }

@media (max-width: 860px) {
  .sol-walk { grid-template-columns: 1fr; }
  .sol-walk-here { order: -1; }
  .sol-walk-card--next { text-align: left; }
  .sol-walk-card--next .sol-walk-k { justify-content: flex-start; }
}

/* Hero proof bar — sits on the hero/subnav seam */
.sol-herobar {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.sol-herobar-item { padding: 1.6rem 1.2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.sol-herobar-item:last-child { border-right: 0; }
.sol-herobar-v { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1; }
.sol-herobar-v span { color: var(--c-orange); }
.sol-herobar-l { font-size: .8rem; color: #94a3b8; font-weight: 650; margin-top: .45rem; letter-spacing: .01em; }

/* --------------------------------------------------------------------------
   2 · STICKY SUB-NAV
-------------------------------------------------------------------------- */
.sol-subnav {
  position: sticky; top: var(--sol-subnav-top, 0px); z-index: 40;
  /* Solid, not translucent. The page alternates white and navy bands, and a
     translucent bar picks up whichever band is passing underneath — over the
     dark bands it reads as dirty grey. Opaque keeps one bar, always legible. */
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 1px 0 rgba(15,23,42,.02), 0 8px 20px -18px rgba(15,23,42,.35);
}
.sol-subnav-row { display: flex; align-items: center; gap: 1.6rem; height: 56px; }
.sol-subnav-links {
  display: flex; align-items: center; gap: .3rem;
  list-style: none; margin: 0; padding: 0;
  overflow-x: auto; scrollbar-width: none; flex: 1 1 auto;
}
.sol-subnav-links::-webkit-scrollbar { display: none; }
.sol-subnav-links a {
  display: block; padding: 7px 13px; border-radius: 99px;
  font-size: .88rem; font-weight: 750; color: var(--c-muted);
  text-decoration: none; white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}
.sol-subnav-links a:hover { background: var(--c-soft); color: var(--c-ink); }
.sol-subnav-links a[aria-current="true"] { background: rgba(249,115,22,.1); color: var(--c-orange-dark); }
.sol-subnav-cta { flex: 0 0 auto; }
.sol-subnav-cta .sol-btn { padding: 9px 18px; font-size: .88rem; border-radius: var(--r-sm); }
@media (max-width: 860px) { .sol-subnav-cta { display: none; } }

/* --------------------------------------------------------------------------
   3 · SECTION SHELL — deliberately uneven rhythm
-------------------------------------------------------------------------- */
.sol-sec { padding: 6rem 0; background: #fff; }
.sol-sec--soft { background: var(--c-soft); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.sol-sec--tight { padding: 4.5rem 0; }
.sol-sec--dark { background: var(--c-navy); color: #fff; border: 0; }
.sol-sec--dark .sol-h2 { color: #fff; }
.sol-sec--dark .sol-sub { color: rgba(203,213,225,.85); }

/* --------------------------------------------------------------------------
   4 · PROBLEM  (asymmetric, problem markers ≠ check marks)
-------------------------------------------------------------------------- */
.sol-problem-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4.5rem; align-items: start; }
.sol-problem-lead { font-size: 1.12rem; line-height: 1.75; color: var(--c-muted); margin: 1.4rem 0 0; }

.sol-painlist { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .75rem; }
.sol-painlist li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1rem 1.15rem; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--c-line);
  border-left: 3px solid rgba(220,38,38,.42);
  font-size: 1rem; font-weight: 600; color: var(--c-ink); line-height: 1.55;
}
.sol-sec--soft .sol-painlist li { background: #fff; }
.sol-painlist .sol-i { color: var(--c-warn); font-size: 1.15rem; margin-top: .12rem; opacity: .85; }

.sol-painclose {
  margin: 1.9rem 0 0; padding-left: 1.15rem;
  border-left: 3px solid var(--c-orange);
  font-size: 1.16rem; font-weight: 800; color: var(--c-ink); line-height: 1.55;
}

.sol-sidecard {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: var(--shadow-card); position: sticky; top: 92px;
}
.sol-sidecard-kicker { font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); }
.sol-sidecard-title { font-size: 1.25rem; font-weight: 900; color: var(--c-ink); margin: .6rem 0 1.5rem; line-height: 1.3; }
.sol-flow { display: grid; gap: .55rem; position: relative; }
.sol-flow-step {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .95rem 1rem; border-radius: var(--r-md);
  background: var(--c-soft); border: 1px solid var(--c-line);
}
.sol-flow-step.is-active { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.32); }
.sol-flow-ico {
  width: 34px; height: 34px; flex: 0 0 auto; border-radius: var(--r-sm);
  background: #fff; border: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .85rem; color: var(--c-muted);
}
.sol-flow-ico .sol-i, .sol-flow-ico [data-lucide] { font-size: 1.05rem; }
.sol-flow-step.is-active .sol-flow-ico { background: var(--c-orange); border-color: var(--c-orange); color: #fff; }
.sol-flow-step h4 { margin: 0 0 3px; font-size: .97rem; font-weight: 850; color: var(--c-ink); line-height: 1.35; }
.sol-flow-step h4.is-accent { color: var(--c-orange-dark); }
.sol-flow-step p { margin: 0; font-size: .86rem; color: var(--c-muted); line-height: 1.5; }
.sol-sidecard-note { margin: 1.4rem 0 0; font-size: .88rem; color: var(--c-muted); font-weight: 600; line-height: 1.55; }

/* --------------------------------------------------------------------------
   5 · DELIVERABLES — count-aware grid, never leaves an orphan row
-------------------------------------------------------------------------- */
.sol-cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(var(--cols, 3), 1fr); }
.sol-cards[data-count="1"] { --cols: 1; max-width: 640px; margin-inline: auto; }
.sol-cards[data-count="2"] { --cols: 2; }
.sol-cards[data-count="3"] { --cols: 3; }
.sol-cards[data-count="4"] { --cols: 2; }
.sol-cards[data-count="5"] { --cols: 3; }
.sol-cards[data-count="6"] { --cols: 3; }
.sol-cards[data-count="7"] { --cols: 4; }
.sol-cards[data-count="8"] { --cols: 4; }
.sol-cards[data-count="9"] { --cols: 3; }
/* 5 cards on a 3-col grid: centre the trailing two */
.sol-cards[data-count="5"] > :nth-child(4) { grid-column: 1 / span 1; margin-left: 50%; }
.sol-cards[data-count="5"] > :nth-child(5) { margin-left: 50%; }
.sol-cards[data-count="7"] > :nth-child(5) { grid-column-start: 1; }

.sol-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 2rem; position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sol-card:hover { transform: translateY(-3px); border-color: rgba(249,115,22,.55); box-shadow: var(--shadow-lift); }
.sol-card-ico {
  width: 46px; height: 46px; border-radius: var(--r-md); margin-bottom: 1.3rem;
  background: rgba(249,115,22,.09); border: 1px solid rgba(249,115,22,.2);
  display: flex; align-items: center; justify-content: center; color: var(--c-orange);
}
.sol-card-ico .sol-i, .sol-card-ico [data-lucide] { font-size: 1.35rem; }
.sol-card h3 { font-size: 1.16rem; font-weight: 850; color: var(--c-ink); margin: 0 0 .6rem; line-height: 1.35; }
.sol-card p { font-size: .97rem; color: var(--c-muted); line-height: 1.65; margin: 0; }
.sol-card-idx {
  position: absolute; top: 1.6rem; right: 1.8rem;
  font-size: .78rem; font-weight: 900; color: var(--c-line); letter-spacing: .05em;
}

/* Powered-by rail */
.sol-powered { margin-top: 3.2rem; padding-top: 2.4rem; border-top: 1px dashed var(--c-line); text-align: center; }
.sol-powered-t { font-size: .74rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); }
.sol-powered-pills { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-top: 1.1rem; }
.sol-pill {
  padding: 7px 14px; border-radius: 99px; font-size: .84rem; font-weight: 750;
  background: #fff; border: 1px solid var(--c-line); color: var(--c-ink);
}
.sol-pill em { font-style: normal; color: var(--c-muted); font-weight: 600; }
/* a division pill whose page is confirmed live — it has to look clickable
   without turning the row into a wall of blue links */
a.sol-pill--link { text-decoration: none; display: inline-block; transition: border-color .15s, background .15s, color .15s; }
a.sol-pill--link:hover, a.sol-pill--link:focus-visible {
  border-color: #c2410c; background: rgba(249,115,22,.06); color: #c2410c;
}
a.sol-pill--link:hover em, a.sol-pill--link:focus-visible em { color: #c2410c; }
.sol-powered-note { margin: 1.2rem auto 0; max-width: 74ch; font-size: .92rem; color: var(--c-muted); line-height: 1.65; font-weight: 550; }

/* --------------------------------------------------------------------------
   6 · PROOF BAND
-------------------------------------------------------------------------- */
.sol-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sol-metric {
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 2rem 1.8rem;
}
.sol-metric-v { font-size: 2.5rem; font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; }
.sol-metric-v span { color: var(--c-orange); }
.sol-metric-l { margin-top: .7rem; font-size: .95rem; color: rgba(148,163,184,.95); font-weight: 600; line-height: 1.55; }

.sol-quote {
  margin-top: 1.5rem; background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-lg);
  padding: 2.2rem 2.4rem;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.sol-quote blockquote { margin: 0; font-size: 1.18rem; line-height: 1.6; color: #f1f5f9; font-weight: 600; }
.sol-quote figcaption { margin-top: .9rem; font-size: .88rem; color: #94a3b8; font-weight: 650; }
.sol-quote-res {
  text-align: center; padding-left: 2rem; border-left: 1px solid rgba(255,255,255,.1);
  flex: 0 0 auto;
}
.sol-quote-res b { display: block; font-size: 1.9rem; font-weight: 900; color: var(--c-orange); letter-spacing: -.02em; }
.sol-quote-res span { display: block; margin-top: .3rem; font-size: .78rem; color: #94a3b8; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.sol-proof-note { margin: 1.4rem 0 0; font-size: .84rem; color: rgba(148,163,184,.75); text-align: center; }

/* --------------------------------------------------------------------------
   7 · QUALIFIER — for you / not for you
-------------------------------------------------------------------------- */
.sol-qual { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.sol-qual--single { grid-template-columns: 1fr; max-width: 780px; margin-inline: auto; }
.sol-qualcard { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 2.2rem; box-shadow: var(--shadow-card); }
.sol-qualcard--no { background: var(--c-soft); box-shadow: none; }
.sol-qualcard-h { display: flex; align-items: center; gap: .6rem; font-size: 1.02rem; font-weight: 900; color: var(--c-ink); margin-bottom: 1.5rem; }
.sol-qualcard-h .sol-i { font-size: 1.2rem; }
.sol-qualcard--yes .sol-qualcard-h .sol-i { color: #16a34a; }
.sol-qualcard--no .sol-qualcard-h { color: var(--c-muted); }
.sol-qualcard--no .sol-qualcard-h .sol-i { color: var(--c-muted); }
.sol-quallist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.05rem; }
.sol-quallist li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1.02rem; font-weight: 600; color: var(--c-ink); line-height: 1.5; }
.sol-quallist .sol-i { font-size: 1.1rem; margin-top: .15rem; color: var(--c-orange); }
.sol-qualcard--no .sol-quallist li { color: var(--c-muted); font-weight: 550; }
.sol-qualcard--no .sol-quallist .sol-i { color: #cbd5e1; }

/* --------------------------------------------------------------------------
   8 · STAGE TIMELINE  (how it works — a sequence, not a menu)
-------------------------------------------------------------------------- */
.sol-timeline {
  display: grid; grid-template-columns: repeat(var(--steps, 4), 1fr); gap: 1.4rem;
  position: relative; list-style: none; margin: 0; padding: 0;
}
.sol-timeline > li::marker { content: ""; }
.sol-timeline::before {
  content: ""; position: absolute; left: 26px; right: 26px; top: 26px; height: 2px;
  background: linear-gradient(90deg, rgba(249,115,22,.5), rgba(249,115,22,.16));
}
.sol-step { position: relative; padding-top: 0; }
.sol-step-n {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 2px solid var(--c-orange);
  color: var(--c-orange-dark); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--c-soft);
}
.sol-sec--soft .sol-step-n { box-shadow: 0 0 0 6px var(--c-soft); }
.sol-step:first-child .sol-step-n { background: var(--c-orange); color: #fff; }
.sol-step h3 { font-size: 1.08rem; font-weight: 850; color: var(--c-ink); margin: 1.4rem 0 .5rem; line-height: 1.35; }
.sol-step p { font-size: .95rem; color: var(--c-muted); line-height: 1.65; margin: 0; }
.sol-step-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.sol-tag {
  font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px;
  background: #fff; border: 1px solid var(--c-line); color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   9 · STACKS — an escalating ladder, not four equal boxes
-------------------------------------------------------------------------- */
/* minmax(0,1fr), not 1fr: a bare 1fr track refuses to shrink below the item's
   min-content width, so one nowrap .sol-node was enough to push the whole
   document 65px wider than a 390px viewport. min-width:0 on the item is the
   matching half of the same guard. */
.sol-stacks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch; }
.sol-stack {
  display: flex; flex-direction: column; min-width: 0;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 2rem; position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.sol-stack:hover { border-color: #cbd5e1; box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.sol-stack--hl { border: 2px solid var(--c-orange); background: linear-gradient(180deg, rgba(249,115,22,.045), rgba(249,115,22,0) 55%); }
.sol-stack--hl:hover { border-color: var(--c-orange); box-shadow: 0 24px 48px -22px rgba(249,115,22,.45); }
.sol-stack-badge {
  position: absolute; top: -13px; left: 2rem;
  background: var(--c-orange); color: #fff;
  font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 99px;
}
.sol-stack-scope { font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); }
.sol-stack h3 { font-size: 1.22rem; font-weight: 900; color: var(--c-ink); margin: .5rem 0 1.1rem; line-height: 1.3; }

/* the chain, parsed out of desc_html */
.sol-stackchain { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; margin-bottom: 1rem; }
.sol-stackchain .sol-node {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 8px;
  background: var(--c-soft); border: 1px solid var(--c-line);
  font-size: .82rem; font-weight: 800; color: var(--c-ink); white-space: nowrap;
}
.sol-stack--hl .sol-stackchain .sol-node { background: #fff; border-color: rgba(249,115,22,.28); color: var(--c-orange-dark); }
.sol-stackchain .sol-node-arrow { color: #cbd5e1; font-weight: 700; }
.sol-stack p { font-size: .96rem; color: var(--c-muted); line-height: 1.65; margin: 0 0 1.5rem; flex: 1 1 auto; }
.sol-stack p strong { color: var(--c-ink); font-weight: 800; }
.sol-stack-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.3rem; }
.sol-stack--hl .sol-tag { background: #fff; border-color: rgba(249,115,22,.24); color: var(--c-orange-dark); }
.sol-stack-foot { margin-top: auto; }

/* --------------------------------------------------------------------------
   10 · FAQ
-------------------------------------------------------------------------- */
.sol-faq { max-width: 860px; margin: 0 auto; display: grid; gap: .7rem; }
.sol-faq-item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.sol-faq-item[open] { border-color: rgba(249,115,22,.4); box-shadow: var(--shadow-card); }
.sol-faq-item > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.02rem; font-weight: 800; color: var(--c-ink); line-height: 1.45;
}
.sol-faq-item > summary::-webkit-details-marker { display: none; }
.sol-faq-item > summary:focus-visible { outline: 3px solid rgba(249,115,22,.35); outline-offset: -3px; }
.sol-faq-chev { flex: 0 0 auto; color: var(--c-muted); transition: transform .22s ease, color .22s ease; }
.sol-faq-item[open] .sol-faq-chev { transform: rotate(180deg); color: var(--c-orange); }
.sol-faq-a { padding: 0 1.5rem 1.35rem; color: var(--c-muted); font-size: .99rem; line-height: 1.72; font-weight: 550; max-width: 68ch; }

/* --------------------------------------------------------------------------
   11 · RELATED
-------------------------------------------------------------------------- */
.sol-related { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.sol-rel {
  display: block; text-decoration: none;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: 1.5rem 1.6rem; transition: border-color .2s ease, transform .2s ease;
}
.sol-rel:hover { border-color: rgba(249,115,22,.5); transform: translateY(-2px); }
.sol-rel-t { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 1.02rem; font-weight: 850; color: var(--c-ink); }
.sol-rel-t .sol-i { color: var(--c-orange); font-size: 1rem; }
.sol-rel p { margin: .5rem 0 0; font-size: .92rem; color: var(--c-muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   12 · FINAL CTA — one action
-------------------------------------------------------------------------- */
.sol-final {
  background: radial-gradient(110% 130% at 50% 110%, #0d1830 0%, var(--c-navy) 50%, var(--c-navy-deep) 100%);
  color: #fff; padding: 5.5rem 0 6.5rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.sol-proofstrip {
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 1.8rem 2.4rem; margin-bottom: 4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; text-align: left;
}
.sol-proofstrip-t { font-size: 1.12rem; font-weight: 850; color: #fff; }
.sol-proofstrip-d { font-size: .95rem; color: #94a3b8; margin-top: .35rem; line-height: 1.6; max-width: 62ch; }
.sol-final-h { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 900; letter-spacing: -.03em; margin: 0 0 1.1rem; color: #fff; text-wrap: balance; }
.sol-final-d { font-size: 1.1rem; line-height: 1.7; color: rgba(203,213,225,.9); max-width: 68ch; margin: 0 auto 2.4rem; }
.sol-final-actions { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }

/* --------------------------------------------------------------------------
   Responsive
-------------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .sol-problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sol-sidecard { position: static; }
  .sol-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
  .sol-timeline::before { display: none; }
  .sol-cards[data-count="5"] > :nth-child(4),
  .sol-cards[data-count="5"] > :nth-child(5) { margin-left: 0; grid-column: auto; }
  .sol-cards[data-count="5"], .sol-cards[data-count="6"], .sol-cards[data-count="9"] { --cols: 2; }
  .sol-cards[data-count="7"], .sol-cards[data-count="8"] { --cols: 2; }
  .sol-proof-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .sol-metric { padding: 1.5rem 1.2rem; }
  .sol-metric-v { font-size: 2rem; }
}

@media (max-width: 780px) {
  .sol-container { padding: 0 1.25rem; }
  .sol-hero { padding-top: 4.5rem; }
  .sol-sec { padding: 4rem 0; }
  .sol-sec--tight { padding: 3.2rem 0; }
  .sol-head { margin-bottom: 2.2rem; }
  .sol-herobar { grid-template-columns: 1fr; margin-top: 3rem; }
  .sol-herobar-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); padding: 1.1rem; }
  .sol-herobar-item:last-child { border-bottom: 0; }
  .sol-cards { --cols: 1 !important; }
  .sol-stacks { grid-template-columns: minmax(0, 1fr); }
  .sol-timeline { grid-template-columns: 1fr; row-gap: 1.8rem; }
  .sol-qual { grid-template-columns: 1fr; }
  .sol-proof-grid { grid-template-columns: 1fr; }
  .sol-quote { grid-template-columns: 1fr; padding: 1.8rem; }
  .sol-quote-res { padding-left: 0; padding-top: 1.4rem; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); text-align: left; }
  .sol-proofstrip { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .sol-hero-actions { width: 100%; flex-direction: column; }
  .sol-hero-actions .sol-btn { width: 100%; justify-content: center; }
  .sol-chain-node { font-size: .78rem; padding: 6px 11px; }
}

/* Touch targets. WCAG 2.5.8 asks for 24px; Apple/Google HIG ask for 44px.
   Inline text links and the sub-nav pills are the only sub-44px hit areas on
   the page, so they get vertical breathing room on coarse pointers only —
   desktop typography is untouched. */
@media (pointer: coarse), (max-width: 780px) {
  .sol-subnav-links a { padding: 14px; }
  .sol-textlink { min-height: 44px; }
  .sol-stack-foot .sol-textlink { margin-bottom: -10px; }
  .sol-final-actions .sol-textlink { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .sol-page *, .sol-page *::before, .sol-page *::after {
    transition-duration: .01ms !important; animation-duration: .01ms !important;
  }
}
