/* ==========================================================================
   10APEX — service.css
   Components used by /services and every service page. Extends the approved
   homepage design system in base.css + sections.css — no new tokens, no new
   type scale, no new button styles.
   ========================================================================== */

/* ==========================================================================
   Section seams
   Two dark blocks in a row share a flat edge instead of showing the light
   page colour through their rounded corners.
   ========================================================================== */
.section--rounded.is-join-t { border-top-left-radius: 0; border-top-right-radius: 0; margin-top: -1px; }
.section--rounded.is-join-b { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

/* Where two blocks share a seam there is no tone change to justify the full
   stacked padding, so both sides of the join pull in. Covers the dark-on-dark
   joins (Pricing -> How We Work) and the light-on-light pair at the end of a
   service page (The Stack We Build On -> FAQ). */
.section--rounded.is-join-t,
.stech + .faq { padding-top: clamp(36px, 4.2vw, 64px); }

.section--rounded.is-join-b,
.stech:has(+ .faq) { padding-bottom: clamp(44px, 5.4vw, 84px); }

/* The "other services" block always sits directly above the dark footer */
.more.section--dark { border-radius: var(--r-2xl) var(--r-2xl) 0 0; overflow: hidden; isolation: isolate; }

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.crumbs { margin-bottom: 26px; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .84rem; }
.crumbs li { display: flex; align-items: center; gap: 8px; color: rgba(226, 230, 245, .45); }
.crumbs li + li::before { content: "/"; color: rgba(226, 230, 245, .25); }
.crumbs a { color: rgba(226, 230, 245, .62); transition: color .3s var(--ease); }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current] { color: var(--blue-300); }

/* ==========================================================================
   Service hero
   ========================================================================== */
.shero {
  position: relative; overflow: hidden;
  padding: var(--hero-pad) 0;
}
.shero__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--sh1 { width: 620px; height: 620px; top: -220px; left: -180px; background: radial-gradient(circle, rgba(30, 111, 203, .5), transparent 72%); }
.orb--sh2 { width: 560px; height: 560px; top: -80px; right: -180px; background: radial-gradient(circle, rgba(30, 123, 208, .44), transparent 72%); }

.shero__inner {
  position: relative; z-index: 2;
  display: grid; align-items: center;
  gap: clamp(40px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
}
.shero__title {
  margin: 24px 0 0;
  font-size: clamp(2.35rem, 5vw, 3.9rem);
  letter-spacing: -0.04em; line-height: 1.05; color: #fff;
}
.shero__title .line { display: block; overflow: hidden; padding-bottom: .09em; margin-bottom: -.09em; }
.shero__title .line > span {
  display: block; transform: translate3d(0, 108%, 0);
  transition: transform .95s var(--ease-out) var(--reveal-delay, 0ms);
}
.shero__title .line.is-visible > span { transform: none; }

.shero__lead { margin-top: 24px; max-width: 56ch; font-size: clamp(1.02rem, 1.3vw, 1.14rem); color: var(--text-light-soft); }
.shero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.shero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.shero__chips li {
  font-size: .8rem; padding: 7px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--hairline-dark); background: rgba(255, 255, 255, .035);
  color: rgba(226, 230, 245, .72);
  transition: border-color .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease);
}
.shero__chips li:hover { border-color: rgba(91, 155, 222, .45); background: rgba(30, 111, 203, .1); color: #fff; }

.shero__visual { position: relative; }
.shero__stage {
  position: relative; display: grid; place-items: center;
  min-height: clamp(280px, 34vw, 400px);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-out);
}

.shero__stats {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: clamp(22px, 4vw, 46px);
  margin-top: clamp(40px, 5vw, 64px); padding-top: 28px;
  border-top: 1px solid var(--hairline-dark);
}
.shero__stats strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem); letter-spacing: -0.03em; color: #fff;
}
.shero__stats span { font-size: .84rem; color: rgba(226, 230, 245, .5); }

/* /services index variant */
.shero--index { text-align: center; }
.shero--index .crumbs ol { justify-content: center; }
.shero--index .pill { margin-inline: auto; }
.shero__title--center { max-width: 18ch; margin-inline: auto; }
.shero__lead--center { margin-inline: auto; text-align: center; }
.shero__actions--center { justify-content: center; }

/* ==========================================================================
   Service intro
   ========================================================================== */
.sintro { padding: var(--section-y) 0; }
.sintro__inner {
  display: grid; align-items: stretch;
  gap: clamp(40px, 5vw, 76px);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

/* --------------------------------------------------------------------------
   StickySectionVisual (.sviz)
   The single implementation of "illustration beside long-form copy". The
   outer .sviz stretches to the full height of the grid row, so it is the
   sticky containing block: the frame travels with the copy, pins while the
   copy is read, and is released the moment the row — i.e. the section —
   ends. Nothing can carry into the next section, and scrolling back up
   simply reverses the same three states. Column widths are minmax(0, …) so
   a wide illustration can never force horizontal overflow.
   -------------------------------------------------------------------------- */
.sviz {
  position: relative; min-width: 0;
  /* start flush with the top of the row so the frame's top edge lines up with
     the first line of the copy beside it, never optically centred */
  display: flex; flex-direction: column; justify-content: flex-start;
}
.sviz__inner {
  position: sticky;
  /* clears the fixed header once pinned; small enough that the frame only
     starts travelling after it has scrolled up from its top-aligned start */
  top: clamp(92px, 9vh, 116px);
  min-width: 0;
}
.sviz__frame {
  position: relative; margin: 0;
  border-radius: var(--r-2xl);
  background: radial-gradient(120% 120% at 30% 0%, #171a34, #080a16);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid; place-items: center;
  min-height: clamp(300px, 32vw, 420px);
}
.sviz__frame::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 76%);
}
.sintro__p { margin-top: 20px; color: var(--text-dark-soft); font-size: clamp(1rem, 1.25vw, 1.08rem); max-width: 62ch; }

.ipoints { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 40px; }
.ipoints li {
  display: flex; gap: 14px;
  padding: 20px 20px 22px;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease), border-color .4s var(--ease);
}
.ipoints li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30, 111, 203, .32); }
.ipoint__icon {
  flex: none; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(140deg, rgba(30, 111, 203, .14), rgba(79, 179, 232, .12));
  border: 1px solid rgba(30, 111, 203, .22);
  color: var(--blue-600);
}
.ipoints h3 { font-size: 1rem; }
.ipoints p { margin-top: 6px; font-size: .9rem; color: var(--text-dark-soft); }

/* ==========================================================================
   Offerings — tabbed panels
   ========================================================================== */
.offerings { padding: var(--section-y) 0; }
.offerings__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--of1 { width: 620px; height: 480px; top: -140px; right: -120px; background: radial-gradient(circle, rgba(16, 89, 174, .45), transparent 72%); }
.offerings > .container { position: relative; z-index: 2; }

.otabs { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.otabs__list { display: grid; gap: 8px; align-content: start; }

.otab {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  padding: 15px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline-dark);
  background: rgba(255, 255, 255, .028);
  color: rgba(226, 230, 245, .72);
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; letter-spacing: -0.01em;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), color .3s var(--ease), transform .4s var(--ease-out);
}
.otab:hover { color: #fff; border-color: rgba(91, 155, 222, .38); transform: translateX(3px); }
.otab__icon {
  flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .04);
  transition: background .35s var(--ease), border-color .35s var(--ease), color .3s var(--ease);
}
.otab__label { flex: 1; }
.otab__arrow { opacity: 0; transform: translateX(-6px); transition: opacity .3s var(--ease), transform .35s var(--ease-out); }
.otab.is-active {
  color: #fff;
  background: linear-gradient(120deg, rgba(16, 89, 174, .3), rgba(30, 123, 208, .14));
  border-color: rgba(91, 155, 222, .55);
  box-shadow: 0 18px 40px -26px rgba(30, 111, 203, .9);
}
.otab.is-active .otab__icon { background: var(--btn-grad); border-color: transparent; color: #fff; }
.otab.is-active .otab__arrow { opacity: 1; transform: none; }

.otabs__panels {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(160deg, rgba(23, 26, 47, .8), rgba(8, 10, 20, .82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 40px 90px -55px rgba(0, 0, 0, .9);
  overflow: hidden;
}
.opanel {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(20px, 3vw, 40px); align-items: center;
  padding: clamp(24px, 3.2vw, 42px);
}
.opanel[hidden] { display: none; }
.opanel.is-active { animation: panelIn .55s var(--ease-out) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } }

.opanel__copy h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); color: #fff; }
.opanel__copy > p { margin-top: 14px; color: var(--text-light-soft); font-size: .98rem; max-width: 50ch; }
.opanel__list { display: grid; gap: 10px; margin-top: 22px; }
.opanel__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: rgba(226, 230, 245, .78); }
.tick {
  flex: none; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(52, 211, 153, .14); border: 1px solid rgba(52, 211, 153, .3); color: #6ee7b7;
  margin-top: 1px;
}
.tick svg { width: 13px; height: 13px; }
.opanel__cta {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--blue-300);
  transition: gap .35s var(--ease-out), color .3s var(--ease);
}
.opanel__cta:hover { gap: 14px; color: #fff; }
.opanel__visual { display: grid; place-items: center; }

/* ==========================================================================
   Assurance / standards
   ========================================================================== */
.assurance { padding: var(--section-y) 0; }
.agrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 22px); }
.acard {
  position: relative; overflow: hidden;
  padding: 26px 24px 28px;
  border-radius: var(--r-xl);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.acard::after {
  content: ""; position: absolute; inset: auto -30% -60% -30%; height: 120px;
  background: radial-gradient(closest-side, rgba(30, 111, 203, .18), transparent 70%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.acard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(30, 111, 203, .32); }
.acard:hover::after { opacity: 1; }
.acard__icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(140deg, rgba(30, 111, 203, .14), rgba(79, 179, 232, .12));
  border: 1px solid rgba(30, 111, 203, .22); color: var(--blue-600);
  margin-bottom: 20px;
}
.acard__value {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.5rem); letter-spacing: -0.04em;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.acard h3 { margin-top: 4px; font-size: 1.02rem; }
.acard p { margin-top: 8px; font-size: .88rem; color: var(--text-dark-soft); }

/* ==========================================================================
   Process steps
   ========================================================================== */
.sprocess { padding: var(--section-y) 0; }
.sprocess__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--pr1 { width: 560px; height: 460px; bottom: -160px; left: -140px; background: radial-gradient(circle, rgba(30, 123, 208, .4), transparent 72%); }
.sprocess > .container { position: relative; z-index: 2; }

.psteps { display: grid; gap: 12px; }
.pstep {
  position: relative;
  display: grid; grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 40px); align-items: start;
  padding: 26px 26px 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: rgba(255, 255, 255, .026);
  transition: background-color .45s var(--ease), border-color .45s var(--ease), transform .5s var(--ease-out);
}
.pstep:hover { background: rgba(30, 111, 203, .09); border-color: rgba(91, 155, 222, .42); transform: translateX(5px); }
.pstep__num {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.05em; line-height: 1;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pstep__body h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: #fff; }
.pstep__body p { margin-top: 10px; color: var(--text-light-soft); font-size: .96rem; max-width: 74ch; }
.pstep__rail { position: absolute; left: 46px; top: 100%; width: 1px; height: 12px; background: linear-gradient(180deg, rgba(91, 155, 222, .5), transparent); }
.pstep:last-child .pstep__rail { display: none; }

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits { padding: var(--section-y) 0; }
.benefits__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--bn1 { width: 520px; height: 520px; top: -160px; right: -140px; background: radial-gradient(circle, rgba(16, 89, 174, .42), transparent 72%); }
.orb--bn2 { width: 460px; height: 460px; bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(79, 179, 232, .26), transparent 72%); }
.benefits > .container { position: relative; z-index: 2; }

.bgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 22px); }
.bcard {
  position: relative; overflow: hidden;
  padding: 28px 26px 30px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(165deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  transition: transform .5s var(--ease-out), border-color .45s var(--ease);
}
.bcard::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(91, 155, 222, .2), transparent 65%);
  opacity: 0; transition: opacity .45s var(--ease); pointer-events: none;
}
.bcard:hover { transform: translateY(-6px); border-color: rgba(91, 155, 222, .4); }
.bcard:hover::after { opacity: 1; }
.bcard__icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px;
  background: rgba(30, 111, 203, .14); border: 1px solid rgba(91, 155, 222, .28); color: var(--blue-300);
  margin-bottom: 20px;
}
.bcard h3 { font-size: 1.14rem; color: #fff; }
.bcard p { margin-top: 10px; color: var(--text-light-soft); font-size: .94rem; }

/* ==========================================================================
   Tech groups
   ========================================================================== */
.stech { padding: var(--section-y) 0; }
.tgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 22px); }
.tcol {
  padding: 26px 24px 28px;
  border-radius: var(--r-xl);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.tcol:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(30, 111, 203, .3); }
.tcol__icon {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(140deg, rgba(30, 111, 203, .14), rgba(79, 179, 232, .12));
  border: 1px solid rgba(30, 111, 203, .22); color: var(--blue-600);
  margin-bottom: 18px;
}
.tcol h3 { font-size: 1.02rem; padding-bottom: 14px; margin-bottom: 12px; border-bottom: 1px solid var(--paper-line); }
.tcol li { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: .92rem; color: var(--text-dark-soft); }
.tcol li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--blue-500); flex: none; }

/* ==========================================================================
   Pricing tiers
   ========================================================================== */
.pricing { padding: var(--section-y) 0; }
.pricing__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--pc1 { width: 640px; height: 460px; top: -140px; left: 24%; background: radial-gradient(circle, rgba(30, 111, 203, .34), transparent 72%); }
.pricing > .container { position: relative; z-index: 2; }

.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 24px); align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  padding: 30px 28px 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  transition: transform .5s var(--ease-out), border-color .45s var(--ease), box-shadow .5s var(--ease);
}
.tier:hover { transform: translateY(-6px); border-color: rgba(91, 155, 222, .4); }
.tier--featured {
  background: linear-gradient(165deg, rgba(16, 89, 174, .3), rgba(30, 123, 208, .1));
  border-color: rgba(91, 155, 222, .5);
  box-shadow: 0 40px 80px -50px rgba(30, 111, 203, .95);
}
.tier__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tier__badge {
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .05);
  color: rgba(226, 230, 245, .68);
}
.tier--featured .tier__badge { border-color: rgba(156, 196, 236, .5); background: rgba(30, 111, 203, .22); color: #C3DCF5; }
.tier__flag {
  flex: none;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--btn-grad); color: #fff;
  box-shadow: 0 10px 24px -12px rgba(11, 65, 132, .9);
}
.tier__name { margin-top: 20px; font-size: clamp(1.3rem, 2vw, 1.6rem); color: #fff; }
/* min-height keeps the price rows on one line across all three cards */
.tier__desc { margin-top: 10px; color: var(--text-light-soft); font-size: .92rem; min-height: 4.95em; }

.tier__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px;
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--hairline-dark);
}
.tier__from { font-size: .8rem; color: rgba(226, 230, 245, .45); }
.tier__amount {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 2.6rem); letter-spacing: -0.04em; line-height: 1;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tier--featured .tier__amount { background: linear-gradient(120deg, #fff 10%, #C3DCF5 60%, #9CC4EC); -webkit-background-clip: text; background-clip: text; }
.tier__period { font-size: .84rem; color: rgba(226, 230, 245, .5); }
.tier__tagline { margin-top: 12px; color: rgba(226, 230, 245, .55); font-size: .86rem; }
.tier__features { display: grid; gap: 10px; margin: 22px 0 28px; padding-top: 22px; border-top: 1px solid var(--hairline-dark); }
.tier__features li { display: flex; gap: 10px; align-items: flex-start; font-size: .91rem; color: rgba(226, 230, 245, .78); }
.tier .btn { margin-top: auto; }

.pnote {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
  margin-top: clamp(20px, 2.4vw, 28px);
  padding: 26px clamp(24px, 3vw, 34px);
  border-radius: var(--r-xl);
  border: 1px dashed rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .022);
}
.pnote h3 { font-size: 1.08rem; color: #fff; }
.pnote p { margin-top: 8px; color: var(--text-light-soft); font-size: .93rem; max-width: 70ch; }

/* ==========================================================================
   Service cards (other services / index)
   ========================================================================== */
.more { padding: var(--section-y) 0; }
.more .section-lead a { color: var(--blue-300); text-decoration: underline; text-underline-offset: 3px; }
.sgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 22px); }

.scard {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  padding: 26px 26px 30px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .45s var(--ease), box-shadow .5s var(--ease);
}
.scard::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(30, 111, 203, .9), rgba(30, 123, 208, .5), rgba(79, 179, 232, .8));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.scard:hover { transform: translateY(-6px); }
.scard:hover::before { opacity: 1; }
.scard__num { font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .1em; color: var(--blue-300); }
.scard__icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: rgba(30, 111, 203, .14); border: 1px solid rgba(91, 155, 222, .28); color: var(--blue-300);
  margin: 16px 0 18px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease-out);
}
.scard:hover .scard__icon { background: var(--btn-grad); border-color: transparent; color: #fff; transform: rotate(-6deg) scale(1.05); }
.scard h2, .scard h3 { font-size: 1.2rem; color: #fff; }
.scard p { margin: 10px 0 22px; color: var(--text-light-soft); font-size: .93rem; max-width: 34ch; }
.scard__arrow {
  position: absolute; top: 24px; right: 24px;
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--hairline-dark); color: rgba(226, 230, 245, .6);
  transition: transform .45s var(--ease-out), background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.scard:hover .scard__arrow { background: var(--btn-grad); color: #fff; border-color: transparent; transform: rotate(-45deg); }
.scard__link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--hairline-dark);
  width: 100%;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--blue-300);
  transition: gap .35s var(--ease-out);
}
.scard:hover .scard__link { gap: 14px; }

/* Light-section variant used on the /services index */
.section--light .scard {
  background: var(--paper); border-color: var(--paper-line); box-shadow: var(--shadow-sm);
}
.section--light .scard:hover { box-shadow: var(--shadow-md); }
.section--light .scard h2, .section--light .scard h3 { color: var(--text-dark); }
.section--light .scard p { color: var(--text-dark-soft); }
.section--light .scard__num { color: var(--blue-600); }
.section--light .scard__icon {
  background: linear-gradient(140deg, rgba(30, 111, 203, .13), rgba(79, 179, 232, .1));
  border-color: rgba(30, 111, 203, .22); color: var(--blue-600);
}
.section--light .scard__arrow { border-color: var(--paper-line); color: var(--text-dark); }
.section--light .scard__link { color: var(--blue-600); border-color: var(--paper-line); }
.sgrid--index .scard { padding-bottom: 26px; }

/* Shared motion used by the illustration library */
@keyframes floaty { to { transform: translateY(-14px); } }
@keyframes netPulse { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.abhero { text-align: center; }
.abhero .crumbs ol { justify-content: center; }
.abhero .pill { margin-inline: auto; }
.abhero__title { max-width: 22ch; }

.abstats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(44px, 5vw, 68px); padding-top: 34px;
  border-top: 1px solid var(--hairline-dark);
  text-align: left;
}
.abstats li {
  padding: 22px 22px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline-dark);
  background: rgba(255, 255, 255, .028);
  transition: transform .45s var(--ease-out), border-color .4s var(--ease), background-color .4s var(--ease);
}
.abstats li:hover { transform: translateY(-5px); border-color: rgba(91, 155, 222, .4); background: rgba(30, 111, 203, .08); }
.abstats strong {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); letter-spacing: -0.04em; line-height: 1;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.abstat__label { display: block; margin-top: 12px; font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: #fff; }
.abstat__note { display: block; margin-top: 6px; font-size: .82rem; color: rgba(226, 230, 245, .5); }

/* --------------------------------------------------------------------------
   Journey — alternating milestone timeline with a scroll-filled spine
   -------------------------------------------------------------------------- */
.journey { position: relative; padding: var(--section-y) 0; overflow: hidden; }
.journey__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 420px at 50% 0%, rgba(30, 111, 203, .10), transparent 70%),
    radial-gradient(620px 420px at 12% 55%, rgba(30, 123, 208, .07), transparent 70%),
    radial-gradient(620px 420px at 88% 80%, rgba(79, 179, 232, .07), transparent 70%);
}
.journey > .container { position: relative; z-index: 2; }

/* centred header with a chip eyebrow */
.section-head--center { max-width: 720px; margin-inline: auto; text-align: center; }
.eyebrow--chip {
  gap: 10px;
  padding: 8px 18px; border-radius: var(--r-pill);
  border: 1px solid rgba(30, 111, 203, .25);
  background: rgba(30, 111, 203, .07);
  font-size: .7rem; letter-spacing: .3em;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-grad); flex: none; }
.section-head--center .section-lead { margin-inline: auto; }

.jline { position: relative; display: grid; gap: clamp(6px, 1.4vw, 18px); margin-top: clamp(46px, 6vw, 78px); }

/* central spine */
.jline__rail {
  position: absolute; top: 40px; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, rgba(11, 13, 26, .06), rgba(11, 13, 26, .1), rgba(11, 13, 26, .06));
  overflow: hidden;
}
.jline__rail i {
  display: block; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-550) 55%, var(--sky-400));
  box-shadow: 0 0 16px rgba(30, 111, 203, .55);
  transition: height 1s var(--ease-out);
}

.jstep {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(90px, 9vw, 132px) minmax(0, 1fr);
  align-items: center;
  padding: clamp(14px, 2vw, 26px) 0;
}

/* Huge year watermark. It sits in the middle of the empty half of the row —
   centred on the spine it would slide underneath the content card. */
.jstep__ghost {
  position: absolute; left: 25%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3.6rem, 7vw, 6.6rem); letter-spacing: -0.06em; line-height: 1;
  color: rgba(11, 13, 26, .05);
  user-select: none; pointer-events: none; z-index: 0; white-space: nowrap;
  transition: color .6s var(--ease), transform .8s var(--ease-out);
}
.jstep:nth-of-type(even) .jstep__ghost { left: 75%; }
.jstep:hover .jstep__ghost { color: rgba(30, 111, 203, .11); transform: translate(-50%, -50%) scale(1.05); }

/* icon column */
.jstep__aside {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  padding-right: clamp(18px, 2.4vw, 34px);
}
.jstep__icon {
  position: relative;
  display: grid; place-items: center; width: 66px; height: 66px; border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  color: var(--blue-600);
  box-shadow: var(--shadow-sm);
  transition: transform .55s var(--ease-out), background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), box-shadow .5s var(--ease);
}
.jstep__icon svg { width: 26px; height: 26px; }
.jstep:hover .jstep__icon {
  transform: scale(1.06) rotate(-4deg);
  background: var(--btn-grad); border-color: transparent; color: #fff;
  box-shadow: 0 22px 44px -20px rgba(11, 65, 132, .85);
}
.jstep__label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  color: #9aa0bb;
  padding: 4px 10px; border-radius: var(--r-pill);
  border: 1px solid var(--paper-line); background: var(--paper);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.jstep:hover .jstep__label { color: var(--blue-600); border-color: rgba(30, 111, 203, .3); }

/* concentric-ring node on the spine */
.jstep__node { position: relative; z-index: 3; display: grid; place-items: center; height: 100%; }
.jstep__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(30, 111, 203, .18);
  transition: transform .7s var(--ease-out), border-color .5s var(--ease);
}
.jstep__ring--out { width: 58px; height: 58px; }
.jstep__ring--in { width: 34px; height: 34px; border-color: rgba(30, 111, 203, .3); }
.jstep:hover .jstep__ring--out { transform: scale(1.14); border-color: rgba(30, 111, 203, .45); }
.jstep:hover .jstep__ring--in { transform: scale(1.14); border-color: rgba(30, 111, 203, .7); }
.jstep__core {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper-alt); border: 2px solid var(--blue-400);
  box-shadow: 0 0 0 5px rgba(245, 246, 251, 1);
  transition: background .45s var(--ease), transform .5s var(--ease-out);
}
.jstep.is-reached .jstep__core { background: var(--brand-grad); border-color: transparent; }
.jstep:hover .jstep__core { transform: scale(1.2); }

/* content card */
.jstep__card {
  position: relative; z-index: 2;
  margin-left: clamp(18px, 2.4vw, 34px);
  padding: 28px 28px 30px;
  border-radius: var(--r-xl);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-sm);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease), border-color .45s var(--ease);
}
.jstep__card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(30, 111, 203, .85), rgba(30, 123, 208, .45), rgba(79, 179, 232, .75));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .45s var(--ease); pointer-events: none;
}
.jstep:hover .jstep__card { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.jstep:hover .jstep__card::before { opacity: 1; }

.jstep__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.jstep__year {
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.jstep__chip {
  font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--r-pill);
  background: rgba(30, 111, 203, .09); border: 1px solid rgba(30, 111, 203, .2); color: var(--blue-600);
}
.jstep__card h3 { font-size: clamp(1.15rem, 1.7vw, 1.34rem); }
.jstep__card p { margin-top: 10px; font-size: .95rem; color: var(--text-dark-soft); }
.jstep__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--paper-line); }
.jstep__tags li {
  font-size: .74rem; font-weight: 500;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--paper-alt); border: 1px solid var(--paper-line); color: var(--text-dark-soft);
}

/* zig-zag: even milestones flip sides */
.jstep:nth-of-type(even) .jstep__aside {
  grid-column: 3; grid-row: 1;
  align-items: flex-start;
  padding-right: 0; padding-left: clamp(18px, 2.4vw, 34px);
}
.jstep:nth-of-type(even) .jstep__card {
  grid-column: 1; grid-row: 1;
  margin-left: 0; margin-right: clamp(18px, 2.4vw, 34px);
  text-align: right;
}
.jstep:nth-of-type(even) .jstep__head,
.jstep:nth-of-type(even) .jstep__tags { justify-content: flex-end; }
.jstep:nth-of-type(even) .jstep__node { grid-column: 2; grid-row: 1; }
.jstep:nth-of-type(even):hover .jstep__icon { transform: scale(1.06) rotate(4deg); }

/* Mission & vision */
.purpose { padding: var(--section-y) 0; }
.purpose__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--pu1 { width: 560px; height: 460px; top: -140px; left: -120px; background: radial-gradient(circle, rgba(16, 89, 174, .45), transparent 72%); }
.orb--pu2 { width: 520px; height: 440px; bottom: -160px; right: -120px; background: radial-gradient(circle, rgba(79, 179, 232, .28), transparent 72%); }
.purpose > .container { position: relative; z-index: 2; }

.pgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.pcard {
  position: relative; overflow: hidden;
  padding: 34px 32px 36px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(165deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  transition: transform .5s var(--ease-out), border-color .45s var(--ease);
}
.pcard:hover { transform: translateY(-6px); border-color: rgba(91, 155, 222, .4); }
.pcard--accent { background: linear-gradient(150deg, rgba(16, 89, 174, .32), rgba(30, 123, 208, .12)); border-color: rgba(91, 155, 222, .32); }
.pcard__tag {
  display: inline-flex; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .05); color: rgba(226, 230, 245, .7);
}
.pcard__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px;
  background: rgba(30, 111, 203, .16); border: 1px solid rgba(91, 155, 222, .3); color: var(--blue-300);
  margin: 22px 0 20px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.pcard:hover .pcard__icon { background: var(--btn-grad); border-color: transparent; color: #fff; }
.pcard h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); color: #fff; }
.pcard p { margin-top: 12px; color: var(--text-light-soft); font-size: .98rem; max-width: 52ch; }

/* Core values */
.values { padding: var(--section-y) 0; }
.vgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 22px); }
.vcard {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: var(--r-xl);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(30, 111, 203, .32); }
.vcard__num {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; letter-spacing: -0.05em;
  color: rgba(11, 13, 26, .06);
  transition: color .45s var(--ease);
}
.vcard:hover .vcard__num { color: rgba(30, 111, 203, .2); }
.vcard__icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(140deg, rgba(30, 111, 203, .14), rgba(79, 179, 232, .12));
  border: 1px solid rgba(30, 111, 203, .22); color: var(--blue-600);
  margin-bottom: 20px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.vcard:hover .vcard__icon { background: var(--btn-grad); border-color: transparent; color: #fff; }
.vcard h3 { font-size: 1.14rem; }
.vcard p { margin-top: 10px; font-size: .92rem; color: var(--text-dark-soft); }

/* Why us */
.whyus { padding: var(--section-y) 0; }
.whyus__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--wu1 { width: 620px; height: 480px; top: -140px; right: -140px; background: radial-gradient(circle, rgba(30, 123, 208, .4), transparent 72%); }
.whyus > .container { position: relative; z-index: 2; }

.wgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 22px); }
.wcard {
  display: flex; flex-direction: column;
  padding: 28px 26px 26px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  transition: transform .5s var(--ease-out), border-color .45s var(--ease);
}
.wcard:hover { transform: translateY(-6px); border-color: rgba(91, 155, 222, .4); }
.wcard__tag {
  align-self: flex-start;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  border: 1px solid rgba(91, 155, 222, .3); background: rgba(30, 111, 203, .14); color: #C3DCF5;
}
.wcard__icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); color: var(--blue-300);
  margin: 20px 0 18px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.wcard:hover .wcard__icon { background: var(--btn-grad); border-color: transparent; color: #fff; }
.wcard h3 { font-size: 1.12rem; color: #fff; }
.wcard p { margin: 10px 0 22px; font-size: .93rem; color: var(--text-light-soft); }
.wcard__stat {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--hairline-dark);
}
.wcard__stat b {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.wcard__stat i { font-style: normal; font-size: .82rem; color: rgba(226, 230, 245, .5); }

/* CTA additions used by the About page */
.cta--spaced { padding-top: clamp(88px, 11vw, 168px); }

.cta__eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-300); margin-bottom: 18px;
}
.cta__services { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 26px; }
.cta__services span {
  font-size: .8rem; padding: 6px 14px; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .06);
  color: rgba(226, 230, 245, .78);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.cthero__title { max-width: 16ch; }
.cthero .shero__lead { max-width: 62ch; }

.cmethods {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 20px);
  margin-top: clamp(40px, 5vw, 60px); padding-top: 32px;
  border-top: 1px solid var(--hairline-dark);
}
.cmethod__link {
  position: relative;
  display: flex; align-items: flex-start; gap: 14px; height: 100%;
  padding: 22px 20px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline-dark);
  background: rgba(255, 255, 255, .028);
  transition: transform .45s var(--ease-out), border-color .4s var(--ease), background-color .4s var(--ease);
}
.cmethod__link:hover { transform: translateY(-5px); border-color: rgba(91, 155, 222, .45); background: rgba(30, 111, 203, .1); }
.cmethod__icon {
  flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
  background: rgba(30, 111, 203, .14); border: 1px solid rgba(91, 155, 222, .28); color: var(--blue-300);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.cmethod__link:hover .cmethod__icon { background: var(--btn-grad); border-color: transparent; color: #fff; }
.cmethod__body { display: grid; gap: 4px; min-width: 0; }
.cmethod__label { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(226, 230, 245, .45); }
.cmethod__value { font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: #fff; letter-spacing: -0.01em; word-break: break-word; }
.cmethod__note { font-size: .8rem; color: rgba(226, 230, 245, .5); }
.cmethod__arrow { position: absolute; top: 20px; right: 18px; color: rgba(226, 230, 245, .28); transition: transform .4s var(--ease-out), color .3s var(--ease); }
.cmethod__link:hover .cmethod__arrow { transform: translateX(3px); color: var(--blue-300); }

/* Form section */
.ctform { padding: var(--section-y) 0; }
.ctform__inner {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px); align-items: start;
}
.ctfacts { display: grid; gap: 2px; margin-top: 38px; }
.ctfacts li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--paper-line);
}
.ctfacts span { font-size: .86rem; color: var(--text-dark-soft); }
.ctfacts b { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--text-dark); }

.ctsteps { margin-top: 36px; }
.ctsteps h3 { font-size: 1.02rem; margin-bottom: 16px; }
.ctsteps ol { display: grid; gap: 12px; }
.ctsteps li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; color: var(--text-dark-soft); }

/* The form panel keeps the dark treatment used on the homepage form */
.ctform__panel {
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(165deg, rgba(23, 26, 47, .96), rgba(8, 10, 20, .97));
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 50px 100px -60px rgba(11, 13, 26, .8);
}

/* Offices */
.offices { padding: var(--section-y) 0; }
.offices__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--of2 { width: 600px; height: 460px; top: -130px; left: -120px; background: radial-gradient(circle, rgba(16, 89, 174, .4), transparent 72%); }
.offices > .container { position: relative; z-index: 2; }
.otab--office { align-items: flex-start; }
.otab__sub { display: block; margin-top: 3px; font-family: var(--font-body); font-weight: 400; font-size: .8rem; color: rgba(226, 230, 245, .45); }
.opanel--office address { font-style: normal; margin-top: 14px; color: var(--text-light-soft); font-size: .98rem; line-height: 1.8; }
.office__meta { display: grid; gap: 2px; margin-top: 22px; }
.office__meta li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--hairline-dark);
  font-size: .92rem;
}
.office__k { color: rgba(226, 230, 245, .45); font-size: .84rem; }
.office__meta a, .office__meta b { color: #fff; font-weight: 600; font-family: var(--font-head); font-size: .92rem; }
.office__meta a { transition: color .3s var(--ease); }
.office__meta a:hover { color: var(--blue-300); }
.offices__note { margin-top: 26px; font-size: .84rem; color: rgba(226, 230, 245, .42); }

/* Stylised map — drawn in CSS, no external tiles */
.mapview {
  position: relative; width: 100%; aspect-ratio: 4 / 3.1;
  border-radius: var(--r-lg); overflow: hidden;
  background: radial-gradient(120% 120% at 30% 10%, #141731, #080a16);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 40px 70px -40px rgba(0, 0, 0, .95);
}
.mapview__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(75% 75% at 50% 45%, #000, transparent 82%);
  -webkit-mask-image: radial-gradient(75% 75% at 50% 45%, #000, transparent 82%);
}
.mapview__road { position: absolute; background: rgba(156, 196, 236, .16); border-radius: 3px; }
.mapview__road--a { left: -10%; right: -10%; top: 46%; height: 8px; transform: rotate(-7deg); }
.mapview__road--b { top: -10%; bottom: -10%; left: 58%; width: 6px; transform: rotate(6deg); }
.mapview__road--c { left: -10%; right: 30%; top: 74%; height: 5px; transform: rotate(4deg); }
.mapview__block { position: absolute; border-radius: 8px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06); }
.mapview__block--1 { left: 10%; top: 14%; width: 26%; height: 22%; }
.mapview__block--2 { right: 12%; top: 20%; width: 22%; height: 18%; }
.mapview__block--3 { left: 16%; bottom: 12%; width: 30%; height: 20%; }
.mapview__pin {
  position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  background: var(--btn-grad);
  box-shadow: 0 0 0 8px rgba(30, 111, 203, .18), 0 10px 24px -8px rgba(11, 65, 132, .9);
  animation: livePulse 2.6s var(--ease) infinite;
}
.mapview__pin i { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.mapview__label {
  position: absolute; left: 50%; top: calc(45% + 26px); transform: translateX(-50%);
  padding: 6px 13px; border-radius: var(--r-pill);
  border: 1px solid rgba(91, 155, 222, .35);
  background: linear-gradient(150deg, rgba(28, 32, 58, .97), rgba(12, 14, 28, .97));
  font-size: .74rem; font-weight: 600; color: #DCEAF9; white-space: nowrap;
}

/* ==========================================================================
   PORTFOLIO PAGES
   ========================================================================== */

/* Capability pills under the hero */
.pcaps {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: clamp(36px, 4.5vw, 56px); padding-top: 28px;
  border-top: 1px solid var(--hairline-dark);
}
.pcaps li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--hairline-dark);
  background: rgba(255, 255, 255, .032);
  font-family: var(--font-head); font-weight: 600; font-size: .88rem; letter-spacing: -0.01em;
  color: rgba(226, 230, 245, .74);
  transition: border-color .35s var(--ease), background-color .35s var(--ease), color .3s var(--ease), transform .4s var(--ease-out);
}
.pcaps li:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 155, 222, .5); background: rgba(30, 111, 203, .12); color: #fff;
}
.pcap__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-grad); flex: none; }

/* Work grid */
.pfwork { padding: var(--section-y) 0; }
.pfgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.2vw, 26px); }

.pfcard {
  display: flex; flex-direction: column;
  border-radius: var(--r-2xl);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease), border-color .4s var(--ease);
}
.pfcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(30, 111, 203, .3); }

.pfcard__visual {
  position: relative;
  height: clamp(180px, 20vw, 220px);
  display: grid; place-items: center;
  padding: 22px 22px 0;
  overflow: hidden;
  background: radial-gradient(120% 120% at 30% 0%, #1a1d38, #090b18);
  border-bottom: 1px solid var(--paper-line);
}
.pfcard__visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent 78%);
}
.pfcard__visual .viz {
  max-width: 300px; transform: scale(.94); transform-origin: top center;
  transition: transform .7s var(--ease-out);
}
.pfcard:hover .pfcard__visual .viz { transform: scale(1) translateY(-6px); }
/* the illustrations are decorative here — keep the floating chips out of the crop */
.pfcard__visual .viz__chip { display: none; }

/* Real screenshots fill the frame edge to edge. They are anchored to the top
   so the hero banner (or the first nodes of a workflow) is what survives the
   crop, and the slow zoom on hover echoes the mockup cards' lift. */
.pfcard__visual--shot { padding: 0; display: block; background: var(--paper-2, #0b0e1a); }
.pfcard__visual--shot::before { display: none; }
.pfcard__visual--shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 0;
  display: block;
  transform: scale(1.005);
  transition: transform .7s var(--ease-out);
}
.pfcard:hover .pfcard__visual--shot img { transform: scale(1.045); }

/* Workflow canvases read from the middle rather than the top edge. */
.pfcard__visual--center img { object-position: 50% 50%; }

/* ==========================================================================
   WorkflowBuild — the canvas redraws itself node by node on hover

   Two copies of the capture sit on top of each other. `__ghost` is always
   visible but dimmed and desaturated, so the card reads as a workflow at rest
   without pretending to be finished. `__draw` is full strength and clipped to
   `--wf-cut`, the share of the width still to be built; JS walks that value
   down through the node boundaries found by tools/analyze-workflows.js.

   The whole canvas is fitted with `contain` rather than cropped — a workflow
   only makes sense end to end, and these captures run from 2:1 to 5:1. The
   letterbox is painted in `--wf-bg`, sampled from the capture itself, so it
   looks like canvas rather than a gap.
   ========================================================================== */
.pfcard__visual--flow {
  position: relative;
  padding: 14px 16px;
  display: block;
  overflow: hidden;
  background: var(--wf-bg, #f2f2f2);
}

.pfcard__visual--flow::before { display: none; }

.wflow__ghost,
.wflow__draw {
  position: absolute;
  inset: 14px 16px;
  width: calc(100% - 32px);
  height: calc(100% - 28px);
  object-fit: contain;
  object-position: 50% 50%;
  display: block;
}

.wflow__ghost {
  opacity: .26;
  filter: grayscale(1) contrast(.75);
}

.wflow__draw {
  --wf-cut: 100%;
  clip-path: inset(0 var(--wf-cut) 0 0);
  transition: clip-path .38s var(--ease-out);
}

/* A soft edge travelling with the reveal, so a node reads as arriving rather
   than as a hard wipe passing over it. */
.pfcard__visual--flow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - var(--wf-cut, 100%));
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 calc(100% - 46px), rgba(80, 150, 230, .16) 100%);
  opacity: 0;
  transition: width .38s var(--ease-out), opacity .3s var(--ease);
}

.pfcard.is-building .pfcard__visual--flow::after { opacity: 1; }

/* Without hover — touch, or a keyboard user who never triggers it — the
   workflow is simply shown complete. */
@media (hover: none), (pointer: coarse) {
  .wflow__draw { --wf-cut: 0%; }
  .wflow__ghost { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wflow__draw {
    --wf-cut: 0% !important;
    transition: none;
  }
  .wflow__ghost { opacity: 0; }
  .pfcard__visual--flow::after { display: none; }
}

/* ==========================================================================
   WebsitePreview — full-page capture that scrolls inside the card on hover

   `container-type: size` turns the frame into a size container, so `100cqh`
   inside it resolves to the frame's own height. The image then travels
   `-100% + 100cqh` — its full height minus the frame — which is exactly its
   overflow. Nothing is hardcoded: a taller capture travels further, and the
   distance re-resolves by itself when the frame resizes.
   ========================================================================== */
.pfcard__visual--live {
  position: relative;
  padding: 0;
  display: block;
  overflow: hidden;
  container-type: size;
  background: #0b0e1a;
}

.pfcard__visual--live::before { display: none; }

.wpreview__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  transform: translateY(0);
  /* the return journey is short and eased; the hover journey overrides both */
  transition: transform .75s var(--ease-out);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .pfcard:hover .wpreview__img,
  .pfcard:focus-within .wpreview__img {
    transform: translateY(calc(-100% + 100cqh));
    transition-duration: var(--wp-dur, 8s);
    transition-timing-function: linear;
  }
}

/* Live-site link */
.wpreview__link {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #fff;
  background: rgba(9, 12, 24, .62);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease-out),
    background .35s var(--ease), border-color .35s var(--ease);
}

.pfcard:hover .wpreview__link,
.wpreview__link:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.wpreview__link:hover {
  background: var(--btn-grad, #1e6fcb);
  border-color: transparent;
}

/* Touch devices never fire hover, so the link has to be there from the start. */
@media (hover: none), (pointer: coarse) {
  .wpreview__link { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wpreview__img {
    transition: none;
    transform: none !important;
  }
  .wpreview__link { transition: none; }
}

.pfcard__body { display: flex; flex-direction: column; flex: 1; padding: 24px 24px 26px; }
.pfcard__meta { display: flex; align-items: center; gap: 12px; }
.pfcard__num {
  font-family: var(--font-head); font-weight: 800; font-size: .82rem; letter-spacing: .1em;
  color: var(--blue-600); opacity: .85;
}
.pfcard__cat {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(30, 111, 203, .1); border: 1px solid rgba(30, 111, 203, .2); color: var(--blue-600);
}
.pfcard__title { margin-top: 14px; font-size: 1.24rem; }
.pfcard__title span { font-weight: 600; color: var(--text-dark-soft); }
.pfcard__text { margin: 10px 0 20px; font-size: .93rem; color: var(--text-dark-soft); }
.pfcard__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--paper-line); }
.pfcard__tags li {
  font-size: .74rem; font-weight: 500;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--paper-alt); border: 1px solid var(--paper-line); color: var(--text-dark-soft);
}
.pfnote { margin-top: 30px; font-size: .88rem; color: #868ca4; max-width: 78ch; }

/* Approach grid */
.approach { padding: var(--section-y) 0; }
.approach__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--ap1 { width: 600px; height: 460px; top: -140px; right: -120px; background: radial-gradient(circle, rgba(16, 89, 174, .42), transparent 72%); }
.approach > .container { position: relative; z-index: 2; }

.apgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 22px); }
.apcard {
  position: relative; overflow: hidden;
  padding: 28px 26px 30px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(165deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  transition: transform .5s var(--ease-out), border-color .45s var(--ease);
}
.apcard:hover { transform: translateY(-6px); border-color: rgba(91, 155, 222, .4); }
.apcard__num {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; letter-spacing: -0.05em;
  color: rgba(255, 255, 255, .07);
  transition: color .45s var(--ease);
}
.apcard:hover .apcard__num { color: rgba(156, 196, 236, .28); }
.apcard__icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px;
  background: rgba(30, 111, 203, .14); border: 1px solid rgba(91, 155, 222, .28); color: var(--blue-300);
  margin-bottom: 20px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.apcard:hover .apcard__icon { background: var(--btn-grad); border-color: transparent; color: #fff; }
.apcard h3 { font-size: 1.1rem; color: #fff; padding-right: 44px; }
.apcard p { margin-top: 10px; color: var(--text-light-soft); font-size: .93rem; }

/* Outcomes / common challenges */
.outcomes { padding: var(--section-y) 0; }
.ogrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 22px); }
.ocard {
  padding: 26px 24px 28px;
  border-radius: var(--r-xl);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.ocard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(30, 111, 203, .3); }
.ocard h3 { display: flex; align-items: flex-start; gap: 12px; font-size: 1.06rem; }
.ocard__q {
  flex: none; display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 9px;
  background: linear-gradient(140deg, rgba(30, 111, 203, .16), rgba(79, 179, 232, .12));
  border: 1px solid rgba(30, 111, 203, .24);
  font-family: var(--font-head); font-size: .82rem; color: var(--blue-600);
}
.ocard p { margin-top: 12px; font-size: .93rem; color: var(--text-dark-soft); }

/* ==========================================================================
   VISUAL LIBRARY
   Shared chrome for every illustration.
   ========================================================================== */
.viz { position: relative; width: 100%; max-width: 420px; }
.viz--stacked { max-width: 460px; }

.viz__chip {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 600; color: #DCEAF9;
  border: 1px solid rgba(91, 155, 222, .35);
  background: linear-gradient(150deg, rgba(28, 32, 58, .96), rgba(12, 14, 28, .96));
  box-shadow: 0 18px 36px -20px rgba(0, 0, 0, .9);
  animation: floaty 7s var(--ease) infinite alternate;
}
.viz__chip--tl { top: -14px; left: -16px; }
.viz__chip--tr { top: -14px; right: -16px; animation-delay: -2s; }
.viz__chip--br { bottom: -14px; right: -16px; animation-delay: -3.5s; }
.viz__pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .14); color: rgba(226, 230, 245, .6);
}
.viz__pill--ok { color: #6ee7b7; border-color: rgba(52, 211, 153, .3); background: rgba(52, 211, 153, .1); text-transform: none; letter-spacing: 0; font-size: .68rem; }

/* window chrome */
.win {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(170deg, #171b31, #0c0e1c);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 40px 70px -36px rgba(0, 0, 0, .95);
}
.win__bar { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: rgba(255, 255, 255, .045); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.win__dots { display: flex; gap: 5px; }
.win__dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
.win__url { font-size: .6rem; color: rgba(226, 230, 245, .45); background: rgba(255, 255, 255, .05); border-radius: 20px; padding: 3px 12px; }
.win__body { padding: 16px; display: grid; gap: 12px; }
.win__hero { padding: 16px; border-radius: 12px; background: linear-gradient(120deg, #1059AE, #0B4184 60%, #4FB3E8); display: grid; gap: 8px; }
.win__h1 { width: 72%; height: 9px; border-radius: 5px; background: rgba(255, 255, 255, .92); }
.win__h2 { width: 48%; height: 6px; border-radius: 4px; background: rgba(255, 255, 255, .55); }
.win__cta { width: 62px; height: 16px; border-radius: 20px; background: rgba(255, 255, 255, .9); margin-top: 4px; }
.win__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.win__cards i { height: 34px; border-radius: 9px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .07); }
.win__cards i:first-child { background: rgba(30, 111, 203, .2); }
.win__rows { display: grid; gap: 6px; }
.win__rows i { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .1); }

.viz--stacked .win { transform: perspective(1200px) rotateY(-9deg) rotateX(4deg); }
.viz--stacked .win::after {
  content: ""; position: absolute; inset: 12% -6% -10% 8%; z-index: -1;
  border-radius: 20px; background: rgba(30, 111, 203, .12); filter: none;
}

/* commerce */
.shop { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 12px; padding: 14px; }
.shop__filters { display: grid; gap: 7px; align-content: start; }
.shop__filters i { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .1); }
.shop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.shop__grid i { height: 46px; border-radius: 10px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .07); }
.shop__grid i:nth-child(2) { background: linear-gradient(140deg, rgba(30, 111, 203, .35), rgba(79, 179, 232, .2)); }
.cartcard {
  position: absolute; right: -14px; bottom: -18px; width: 156px; z-index: 3;
  display: grid; gap: 8px; padding: 14px;
  border-radius: 16px; border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(150deg, rgba(28, 32, 58, .97), rgba(12, 14, 28, .97));
  box-shadow: 0 30px 50px -26px rgba(0, 0, 0, .95);
  animation: floaty 7s var(--ease) infinite alternate;
}
.cartcard__title { width: 58%; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .5); }
.cartcard__line { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .12); }
.cartcard__line.is-short { width: 62%; }
.cartcard__pay { margin-top: 4px; text-align: center; font-size: .7rem; font-weight: 600; color: #fff; padding: 7px; border-radius: 10px; background: var(--btn-grad); }

/* application console */
.panelapp {
  display: grid; grid-template-columns: 62px minmax(0, 1fr); gap: 12px;
  padding: 14px; border-radius: 16px;
  background: linear-gradient(170deg, #171b31, #0c0e1c);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 40px 70px -36px rgba(0, 0, 0, .95);
}
.panelapp__side { display: grid; gap: 7px; align-content: start; }
.panelapp__side b { display: block; width: 24px; height: 24px; border-radius: 8px; background: var(--btn-grad); margin-bottom: 6px; }
.panelapp__side i { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .1); }
.panelapp__main { display: grid; gap: 10px; }
.panelapp__top { display: flex; align-items: center; justify-content: space-between; }
.panelapp__avatars { display: flex; }
.panelapp__avatars i { width: 18px; height: 18px; border-radius: 50%; background: rgba(255, 255, 255, .16); border: 2px solid #12152a; margin-left: -6px; }
.panelapp__avatars i:first-child { background: var(--blue-500); margin-left: 0; }
.panelapp__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.panelapp__kpis i { height: 32px; border-radius: 9px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .07); }
.panelapp__kpis i:first-child { background: linear-gradient(130deg, rgba(30, 111, 203, .32), rgba(79, 179, 232, .2)); }
.panelapp__chart { display: flex; align-items: flex-end; gap: 6px; height: 74px; padding: 10px; border-radius: 12px; background: rgba(255, 255, 255, .035); border: 1px solid rgba(255, 255, 255, .06); }
.panelapp__chart i { flex: 1; height: var(--h); border-radius: 4px; background: linear-gradient(180deg, var(--blue-400), rgba(30, 111, 203, .14)); }
.panelapp__chart i.is-hot { background: linear-gradient(180deg, #4FB3E8, rgba(79, 179, 232, .14)); }
.panelapp__table { display: grid; gap: 6px; }
.panelapp__table i { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .08); }
.viz--report .panelapp__side, .viz--revops .panelapp__side { opacity: .8; }

/* monitoring */
.mon {
  display: grid; gap: 14px; padding: 20px;
  border-radius: 18px;
  background: linear-gradient(170deg, #171b31, #0c0e1c);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 40px 70px -36px rgba(0, 0, 0, .95);
}
.mon__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mon__stats span { display: grid; gap: 3px; padding: 12px; border-radius: 12px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); font-size: .64rem; color: rgba(226, 230, 245, .5); }
.mon__stats b { font-family: var(--font-head); font-size: 1rem; color: #fff; letter-spacing: -0.02em; }
.mon__spark { display: flex; align-items: flex-end; gap: 4px; height: 54px; }
.mon__spark i { flex: 1; height: var(--h); border-radius: 3px; background: linear-gradient(180deg, var(--blue-400), rgba(30, 111, 203, .14)); }
.mon__list { display: grid; gap: 8px; }
.mon__list li { display: flex; align-items: center; gap: 9px; font-size: .76rem; color: rgba(226, 230, 245, .68); }
.mon__list i { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.mon__list i.ok { background: #34d399; }
.mon__list i.run { background: var(--blue-400); animation: livePulse 1.8s var(--ease) infinite; }

/* phones */
.viz--phones, .viz--cross { display: flex; align-items: center; justify-content: center; min-height: 300px; }
.viz--phone { display: grid; place-items: center; }
.ph {
  position: relative; width: 168px; border-radius: 26px; padding: 9px 8px;
  background: #10131f; border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 40px 60px -28px rgba(0, 0, 0, .95);
}
.ph__notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 46px; height: 6px; border-radius: 6px; background: #262a3d; }
.ph__screen { border-radius: 20px; background: linear-gradient(180deg, #1c2036, #0d1020); padding: 20px 13px 11px; display: grid; gap: 10px; min-height: 244px; align-content: start; }
.ph__top { display: flex; align-items: center; justify-content: space-between; }
.ph__top i { width: 26px; height: 6px; border-radius: 4px; background: rgba(255, 255, 255, .22); }
.ph__top b { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #5B9BDE, #4FB3E8); }
.ph__feature { padding: 14px 12px; border-radius: 13px; background: linear-gradient(125deg, #1059AE, #0B4184); display: grid; gap: 7px; }
.ph__feature span { width: 44%; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .5); }
.ph__feature b { width: 70%; height: 10px; border-radius: 5px; background: #fff; }
.ph__list { display: grid; gap: 7px; }
.ph__list i { height: 17px; border-radius: 7px; background: rgba(255, 255, 255, .08); }
.ph__list i:nth-child(2) { background: rgba(255, 255, 255, .13); }
.ph__shop { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.ph__shop i { height: 44px; border-radius: 10px; background: rgba(255, 255, 255, .08); }
.ph__shop i:first-child { background: linear-gradient(140deg, rgba(30, 111, 203, .4), rgba(79, 179, 232, .22)); }
.ph__pay { text-align: center; font-size: .68rem; font-weight: 600; color: #fff; padding: 8px; border-radius: 10px; background: var(--btn-grad); }
.ph__offline { font-size: .62rem; color: #fbbf24; border: 1px solid rgba(251, 191, 36, .3); background: rgba(251, 191, 36, .1); border-radius: 20px; padding: 4px 10px; justify-self: start; }
.ph__tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 4px; }
.ph__tabs i { height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .14); }
.ph__tabs i:first-child { background: var(--blue-400); }
.ph--android .ph__screen { border-radius: 14px; }
.ph--android .ph__feature { border-radius: 8px; }
.ph--android .ph__list i { border-radius: 4px; }
.ph--android .ph__top b { background: linear-gradient(135deg, #34d399, #4FB3E8); }
.ph--back { transform: rotate(-8deg) translateX(26px) scale(.9); opacity: .82; z-index: 1; }
.ph--front { transform: rotate(4deg) translateX(-18px); z-index: 2; }

.cross__base {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: var(--r-pill);
  border: 1px solid rgba(91, 155, 222, .35); background: rgba(18, 21, 42, .95);
  font-size: .72rem; font-weight: 600; color: #C3DCF5; z-index: 3;
}
.cross__base i { width: 22px; height: 4px; border-radius: 3px; background: var(--brand-grad); }

/* kanban */
.kb { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 14px; }
.kb__col { display: grid; gap: 7px; align-content: start; padding: 10px 8px; border-radius: 12px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06); }
.kb__head { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(226, 230, 245, .48); }
.kb__col i { height: 30px; border-radius: 8px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .06); }
.kb__col i.is-hot { background: linear-gradient(130deg, rgba(16, 89, 174, .85), rgba(79, 179, 232, .5)); border-color: transparent; }

/* tickets */
.tickets {
  display: grid; gap: 9px; padding: 18px;
  border-radius: 18px;
  background: linear-gradient(170deg, #171b31, #0c0e1c);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 40px 70px -36px rgba(0, 0, 0, .95);
}
.tickets__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.ticket { display: flex; align-items: center; gap: 10px; padding: 12px 13px; border-radius: 12px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .06); font-size: .78rem; color: rgba(226, 230, 245, .74); }
.ticket__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .3); flex: none; }
.ticket__t { flex: 1; }
.ticket__time { font-size: .68rem; color: rgba(226, 230, 245, .42); }
.ticket.is-urgent { border-color: rgba(91, 155, 222, .5); background: rgba(30, 111, 203, .14); color: #fff; }
.ticket.is-urgent .ticket__dot { background: var(--blue-400); animation: livePulse 1.8s var(--ease) infinite; }
.ticket.is-done { opacity: .55; }
.ticket.is-done .ticket__dot { background: #34d399; }

/* flow canvas */
.viz--flow { min-height: 230px; }
.flowcanvas { width: 100%; height: auto; overflow: visible; }
.flowcanvas__wires path { fill: none; stroke: rgba(91, 155, 222, .35); stroke-width: 1.4; }
.flowcanvas__pulse path { fill: none; stroke: #9CC4EC; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 14 86; animation: netPulse 3.4s linear infinite; }
.flownode {
  position: absolute; display: grid; place-items: center;
  padding: 10px 14px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(150deg, rgba(28, 32, 58, .97), rgba(12, 14, 28, .97));
  font-size: .72rem; font-weight: 600; color: rgba(226, 230, 245, .82);
  box-shadow: 0 20px 36px -22px rgba(0, 0, 0, .95);
}
.flownode--a { top: 8%; left: 0; }
.flownode--b { top: 65%; left: 4%; }
.flownode--c { top: 36%; left: 36%; }
.flownode--d { top: 36%; right: 0; }
.flownode.is-active { border-color: rgba(91, 155, 222, .6); background: linear-gradient(140deg, rgba(16, 89, 174, .55), rgba(28, 32, 58, .97)); color: #fff; animation: nodeGlow 4s var(--ease) infinite; }

/* document extraction */
.viz--doc { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
.paper {
  position: relative; display: grid; gap: 7px; padding: 18px 16px 22px;
  border-radius: 12px; background: #f4f5fb; box-shadow: 0 30px 50px -28px rgba(0, 0, 0, .9);
}
.paper__title { width: 62%; height: 9px; border-radius: 4px; background: #1059AE; }
.paper i { height: 6px; border-radius: 3px; background: #d9dcea; }
.paper__stamp { position: absolute; right: 12px; bottom: 10px; font-size: .58rem; font-weight: 700; letter-spacing: .08em; color: #9aa0bb; }
.extract {
  display: grid; gap: 8px; padding: 16px;
  border-radius: 14px; border: 1px solid rgba(91, 155, 222, .3);
  background: linear-gradient(150deg, rgba(28, 32, 58, .97), rgba(12, 14, 28, .97));
  box-shadow: 0 30px 50px -28px rgba(0, 0, 0, .9);
}
.extract__head { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(226, 230, 245, .45); }
.extract__row { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: .72rem; }
.extract__row b { font-weight: 500; color: rgba(226, 230, 245, .55); }
.extract__row i { font-style: normal; color: #fff; font-weight: 600; }
.extract__row.is-low i { color: #fbbf24; }

/* agent run */
.run {
  display: grid; gap: 14px; padding: 20px;
  border-radius: 18px;
  background: linear-gradient(170deg, #171b31, #0c0e1c);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 40px 70px -36px rgba(0, 0, 0, .95);
}
.run__head { display: flex; align-items: center; gap: 10px; }
.run__avatar { width: 30px; height: 30px; border-radius: 10px; background: var(--btn-grad); }
.run__name { flex: 1; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: #fff; }
.run__steps { display: grid; gap: 10px; }
.run__steps li { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: rgba(226, 230, 245, .6); }
.run__steps li span { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .22); flex: none; }
.run__steps li.is-done span { background: #34d399; border-color: #34d399; }
.run__steps li.is-tool { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .72rem; color: #9CC4EC; }
.run__steps li.is-tool span { border-color: rgba(156, 196, 236, .6); background: rgba(30, 111, 203, .2); }
.run__steps li.is-active { color: #fff; font-weight: 600; }
.run__steps li.is-active span { border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(30, 111, 203, .18); animation: livePulse 1.8s var(--ease) infinite; }
.run__foot { padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .07); }

/* chat */
.convo {
  display: grid; gap: 9px; padding: 18px;
  border-radius: 18px;
  background: linear-gradient(170deg, #171b31, #0c0e1c);
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 40px 70px -36px rgba(0, 0, 0, .95);
}
.convo__head { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.convo__avatar { width: 26px; height: 26px; border-radius: 9px; background: var(--brand-grad); }
.convo__name { font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: #fff; }
.msg { max-width: 86%; padding: 10px 13px; border-radius: 14px; font-size: .78rem; line-height: 1.45; }
.msg--in { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .07); color: rgba(226, 230, 245, .8); border-bottom-left-radius: 5px; }
.msg--out { margin-left: auto; background: var(--btn-grad); color: #fff; border-bottom-right-radius: 5px; }
.msg--typing { display: flex; gap: 4px; width: max-content; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .07); }
.msg--typing i { width: 5px; height: 5px; border-radius: 50%; background: rgba(226, 230, 245, .5); animation: typing 1.2s var(--ease) infinite; }
.msg--typing i:nth-child(2) { animation-delay: .15s; }
.msg--typing i:nth-child(3) { animation-delay: .3s; }
.convo__source { margin-top: 4px; font-size: .66rem; color: rgba(226, 230, 245, .42); }

/* integration bridge */
.viz--bridge { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }
.sys {
  display: grid; gap: 7px; padding: 16px 14px;
  border-radius: 14px; border: 1px solid rgba(255, 255, 255, .11);
  background: linear-gradient(160deg, rgba(28, 32, 58, .95), rgba(12, 14, 28, .95));
  box-shadow: 0 26px 44px -26px rgba(0, 0, 0, .9);
}
.sys b { display: block; width: 26px; height: 26px; border-radius: 9px; background: var(--btn-grad); margin-bottom: 6px; }
.sys--b b { background: linear-gradient(135deg, #4FB3E8, #1E6FCB); }
.sys i { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .1); }
.bridge__link { position: relative; display: grid; gap: 8px; width: 46px; }
.bridge__link span { position: relative; height: 2px; border-radius: 2px; background: rgba(91, 155, 222, .25); overflow: hidden; }
.bridge__link span::after {
  content: ""; position: absolute; inset: 0; width: 45%;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
  animation: connRun 2s linear infinite;
}
.bridge__link span:last-child::after { animation-direction: reverse; animation-delay: .5s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .shero__inner { grid-template-columns: 1fr; }
  .shero__visual { max-width: 520px; width: 100%; margin-inline: auto; }
  .sintro__inner { grid-template-columns: 1fr; }
  /* Stacked layout: sticky is dropped entirely — there is no second column
     for the frame to travel beside, so it simply sits above the copy. */
  .sviz { display: block; }
  .sviz__inner { position: static; top: auto; max-width: 560px; margin-inline: auto; }
  .otabs { grid-template-columns: 1fr; }
  .otabs__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .agrid, .tgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bgrid, .sgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pfgrid, .apgrid, .ogrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .abstats, .cmethods { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jstep { grid-template-columns: minmax(0, 1fr) clamp(76px, 8vw, 100px) minmax(0, 1fr); }
  .jstep__icon { width: 58px; height: 58px; border-radius: 17px; }
  .jstep__ghost { font-size: clamp(3.6rem, 8vw, 6rem); }
  .vgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pgrid { grid-template-columns: 1fr; }
  .ctform__inner { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier--featured { order: -1; }
}

@media (max-width: 900px) {
  .opanel { grid-template-columns: 1fr; }
  .opanel__visual { order: -1; }
  .pstep { grid-template-columns: 64px minmax(0, 1fr); gap: 18px; }
  .pstep__rail { left: 32px; }
}

@media (max-width: 720px) {
  .shero__stats { gap: 20px 26px; }
  .shero__stats li { flex: 1 1 40%; }
  .shero__actions .btn { flex: 1 1 auto; }
  .ipoints { grid-template-columns: 1fr; }
  .otabs__list { grid-template-columns: 1fr; }
  .agrid, .tgrid, .bgrid, .sgrid { grid-template-columns: 1fr; }
  .pfgrid, .apgrid, .ogrid { grid-template-columns: 1fr; }
  .abstats, .cmethods, .vgrid, .wgrid { grid-template-columns: 1fr; }

  /* Journey collapses to a single left-anchored column */
  .jline { gap: 4px; }
  .jline__rail { left: 27px; transform: none; top: 26px; bottom: 26px; }
  .jstep { grid-template-columns: 56px minmax(0, 1fr); padding: 10px 0; }
  /* the stacked card fills the row, leaving no gutter for the watermark */
  .jstep__ghost { display: none; }
  .jstep:hover .jstep__ghost { transform: none; }
  .jstep__node { grid-column: 1; grid-row: 1; align-self: start; padding-top: 26px; }
  .jstep__ring--out { width: 44px; height: 44px; }
  .jstep__ring--in { width: 26px; height: 26px; }
  .jstep__aside {
    grid-column: 2; grid-row: 2;
    flex-direction: row; align-items: center; gap: 10px;
    padding: 0 0 0 18px; margin-top: -10px;
  }
  .jstep__icon { width: 44px; height: 44px; border-radius: 14px; }
  .jstep__icon svg { width: 20px; height: 20px; }
  .jstep__card { grid-column: 2; grid-row: 1; margin-left: 18px; padding: 22px 20px 24px; }

  /* keep the flipped variant from inverting on small screens */
  .jstep:nth-of-type(even) .jstep__aside {
    grid-column: 2; grid-row: 2; align-items: center;
    padding: 0 0 0 18px;
  }
  .jstep:nth-of-type(even) .jstep__card {
    grid-column: 2; grid-row: 1; margin: 0 0 0 18px; text-align: left;
  }
  .jstep:nth-of-type(even) .jstep__head,
  .jstep:nth-of-type(even) .jstep__tags { justify-content: flex-start; }
  .jstep:nth-of-type(even) .jstep__node { grid-column: 1; grid-row: 1; }
  .miles::before { left: 17px; }
  .mile { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; }
  .mile__year { grid-column: 2; padding-top: 0; margin-bottom: 8px; }
  .mile__dot { grid-row: 1 / span 2; padding-top: 4px; }
  .mile__card:hover { transform: none; }
  .pcaps li { flex: 1 1 100%; justify-content: center; }
  .viz--doc { grid-template-columns: 1fr; }
  .viz--bridge { grid-template-columns: 1fr; justify-items: center; }
  .bridge__link { width: 100%; max-width: 120px; }
  .pnote { flex-direction: column; align-items: flex-start; }
  .viz--phones .ph--back, .viz--cross .ph--back { display: none; }
  .viz--phones .ph--front, .viz--cross .ph--front { transform: none; }
  .scard__arrow { top: 20px; right: 20px; }
}

@media (max-width: 460px) {
  .viz__chip--tl { left: -6px; }
  .viz__chip--tr, .viz__chip--br { right: -6px; }
  .kb { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   MOCKUP CONTENT
   The illustration library now carries real labels, figures and rows rather
   than grey blocks. These rules type-set that content at mockup scale.
   ========================================================================== */

/* browser: marketing page */
.win__nav {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 14px; border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: .5rem; color: rgba(226, 230, 245, .5);
}
.win__nav b { font-family: var(--font-head); font-size: .58rem; letter-spacing: .08em; color: #fff; margin-right: auto; }
.win__nav em { font-style: normal; padding: 3px 8px; border-radius: 20px; background: var(--btn-grad); color: #fff; font-size: .48rem; }
.win__eyebrow { font-size: .46rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.win__hero .win__h1 {
  display: block; width: auto; height: auto; background: none;
  font-family: var(--font-head); font-weight: 800; font-size: .84rem; line-height: 1.2;
  letter-spacing: -0.02em; color: #fff;
}
.win__p { display: block; font-size: .5rem; line-height: 1.5; color: rgba(255, 255, 255, .74); }
.win__hero .win__cta {
  width: auto; height: auto; padding: 5px 11px; border-radius: 20px;
  background: #fff; color: #10305c; font-size: .5rem; font-weight: 700;
  justify-self: start; margin-top: 2px;
}
.win__cards i {
  display: grid; align-content: center; gap: 2px; height: auto; padding: 9px 8px;
}
.win__cards i b { font-family: var(--font-head); font-size: .68rem; color: #fff; letter-spacing: -0.02em; }
.win__cards i em { font-style: normal; font-size: .44rem; color: rgba(226, 230, 245, .55); }

/* commerce: products and a real bag */
.shop__filters b { display: block; font-size: .44rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(226, 230, 245, .4); margin-bottom: 2px; }
.shop__filters span { display: block; height: auto; font-size: .5rem; color: rgba(226, 230, 245, .62); padding: 2px 0; }
.shop__filters span.is-on { color: #fff; font-weight: 600; }
.shop__grid i { display: grid; gap: 3px; height: auto; padding: 6px; align-content: start; }
.shop__grid i u { display: block; height: 26px; border-radius: 6px; background: rgba(255, 255, 255, .1); text-decoration: none; }
.shop__grid i.is-featured u { background: linear-gradient(140deg, rgba(30, 111, 203, .55), rgba(79, 179, 232, .35)); }
.shop__grid i b { font-size: .44rem; font-weight: 600; color: rgba(255, 255, 255, .88); }
.shop__grid i em { font-style: normal; font-size: .44rem; color: var(--blue-300); }
.cartcard__row, .cartcard__total { display: flex; justify-content: space-between; gap: 8px; font-size: .48rem; }
.cartcard__row b { font-weight: 500; color: rgba(226, 230, 245, .72); }
.cartcard__row em, .cartcard__total em { font-style: normal; color: #fff; }
.cartcard__total { padding-top: 6px; border-top: 1px solid rgba(255, 255, 255, .12); font-weight: 700; }
.cartcard__total b { color: #fff; }
.cartcard__title { width: auto; height: auto; background: none; font-size: .46rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(226, 230, 245, .45); }

/* dashboard: KPIs, chart and account table */
.panelapp__side span {
  display: block; height: auto; font-size: .46rem; padding: 3px 4px; border-radius: 4px;
  color: rgba(226, 230, 245, .5);
}
.panelapp__side span.is-on { background: rgba(30, 111, 203, .3); color: #fff; }
.panelapp__avatars i {
  display: grid; place-items: center; font-style: normal;
  font-size: .38rem; font-weight: 700; color: #fff;
}
.panelapp__kpis i { display: grid; align-content: center; gap: 1px; height: auto; padding: 8px; }
.panelapp__kpis i em { font-style: normal; font-size: .4rem; color: rgba(226, 230, 245, .5); }
.panelapp__kpis i b { font-family: var(--font-head); font-size: .72rem; color: #fff; letter-spacing: -0.02em; }
.panelapp__kpis i u { text-decoration: none; font-size: .38rem; color: #6ee7b7; }
.panelapp__kpis i u.is-down { color: #fca5a5; }
.panelapp__chart { display: grid; gap: 6px; height: auto; }
.panelapp__chartlabel { font-size: .4rem; color: rgba(226, 230, 245, .45); }
.panelapp__bars { display: flex; align-items: flex-end; gap: 6px; height: 54px; }
.panelapp__bars i { flex: 1; height: var(--h); border-radius: 4px; background: linear-gradient(180deg, var(--blue-400), rgba(30, 111, 203, .14)); }
.panelapp__bars i.is-hot { background: linear-gradient(180deg, var(--sky-400), rgba(79, 179, 232, .14)); }
.panelapp__table span {
  display: grid; grid-template-columns: 1.5fr 1fr auto; align-items: center; gap: 8px;
  height: auto; padding: 4px 0; border-radius: 0; background: none;
  border-bottom: 1px solid rgba(255, 255, 255, .05); font-size: .44rem;
}
.panelapp__table b { font-weight: 600; color: rgba(255, 255, 255, .88); }
.panelapp__table em { font-style: normal; color: rgba(226, 230, 245, .5); }
.panelapp__table u { text-decoration: none; padding: 2px 6px; border-radius: 20px; font-size: .38rem; background: rgba(52, 211, 153, .16); color: #6ee7b7; }
.panelapp__table u.is-trial { background: rgba(251, 191, 36, .16); color: #fbbf24; }

/* kanban: named deals with values */
.kb__col i { display: grid; gap: 2px; height: auto; padding: 6px 7px; }
.kb__col i b { font-size: .44rem; font-weight: 600; color: rgba(255, 255, 255, .9); }
.kb__col i em { font-style: normal; font-size: .42rem; color: var(--blue-300); }
.kb__col i.is-hot em { color: #fff; }

/* integration: named systems */
.sys strong { font-size: .5rem; font-weight: 700; color: #fff; font-family: var(--font-head); }
.sys span { display: block; height: auto; font-size: .44rem; color: rgba(226, 230, 245, .55); background: none; }

/* automation canvas: step name plus the system it runs against */
.flownode em {
  display: block; margin-top: 2px; font-style: normal;
  font-size: .58rem; font-weight: 500; color: rgba(226, 230, 245, .5);
}
.flownode.is-active em { color: rgba(255, 255, 255, .72); }
.flowarea { position: relative; min-height: 210px; }
.flowstats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 14px; padding: 10px 12px; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(150deg, rgba(28, 32, 58, .92), rgba(12, 14, 28, .92));
}
.flowstats span { display: grid; gap: 1px; text-align: center; }
.flowstats b { font-family: var(--font-head); font-size: .82rem; color: #fff; letter-spacing: -0.02em; }
.flowstats em { font-style: normal; font-size: .54rem; color: rgba(226, 230, 245, .5); }

/* ==========================================================================
   CHATBOT WIDGET
   The assistant as a customer meets it — identity, a sourced answer, quick
   replies including the route to a human, and a composer.
   ========================================================================== */
.viz--cbot { max-width: 360px; }
.cbot {
  display: grid; gap: 10px; padding: 14px;
  border-radius: 18px; border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(165deg, rgba(28, 32, 58, .97), rgba(10, 12, 24, .97));
  box-shadow: 0 34px 64px -34px rgba(0, 0, 0, .95);
}
.cbot__head { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.cbot__avatar { flex: none; width: 30px; height: 30px; border-radius: 10px; background: var(--brand-grad); }
.cbot__id { display: grid; gap: 2px; min-width: 0; }
.cbot__id b { font-family: var(--font-head); font-weight: 600; font-size: .8rem; color: #fff; }
.cbot__id em {
  display: flex; align-items: center; gap: 5px;
  font-style: normal; font-size: .58rem; color: rgba(226, 230, 245, .48);
}
.cbot__id em i { width: 6px; height: 6px; border-radius: 50%; background: #34d399; }
.cbot__body { display: grid; gap: 7px; justify-items: start; }
.cbot__body .msg { font-size: .7rem; padding: 8px 11px; }
.cbot__body .msg--out { justify-self: end; }
.cbot__cite {
  justify-self: end; font-size: .55rem; color: rgba(226, 230, 245, .42);
  padding-right: 2px;
}
.cbot__quick { display: flex; flex-wrap: wrap; gap: 6px; }
.cbot__quick span {
  padding: 5px 10px; border-radius: var(--r-pill);
  font-size: .58rem; font-weight: 600; color: var(--blue-300);
  border: 1px solid rgba(91, 155, 222, .38); background: rgba(30, 111, 203, .12);
}
.cbot__quick span:last-child { color: #fff; border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .07); }
.cbot__input {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 8px 8px 12px; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .04);
  font-size: .62rem; color: rgba(226, 230, 245, .38);
}
.cbot__input b { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--btn-grad); }

/* ==========================================================================
   CRM WORKSPACE
   Contacts, pipeline and activity in one frame — the three things a CRM is
   actually judged on.
   ========================================================================== */
.crmapp {
  display: grid; grid-template-columns: 62px minmax(0, 1fr); gap: 12px;
  padding: 14px; border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(165deg, rgba(28, 32, 58, .97), rgba(10, 12, 24, .97));
  box-shadow: 0 34px 64px -34px rgba(0, 0, 0, .95);
}
.crmapp__side { display: grid; gap: 6px; align-content: start; }
.crmapp__side b { display: block; width: 24px; height: 24px; border-radius: 8px; background: var(--btn-grad); margin-bottom: 6px; }
.crmapp__side span {
  font-size: .46rem; padding: 3px 5px; border-radius: 4px;
  color: rgba(226, 230, 245, .5);
}
.crmapp__side span.is-on { background: rgba(30, 111, 203, .3); color: #fff; }
.crmapp__main { display: grid; gap: 9px; min-width: 0; }

/* pipeline stages as proportional bars */
.crmstage { display: grid; gap: 5px; }
.crmstage i {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 5px 8px; border-radius: 7px; overflow: hidden;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .06);
}
.crmstage i::before {
  content: ""; position: absolute; inset: 0; width: var(--w);
  background: linear-gradient(90deg, rgba(30, 111, 203, .5), rgba(79, 179, 232, .12));
}
.crmstage i > * { position: relative; }
.crmstage i b { font-size: .46rem; font-weight: 600; color: rgba(255, 255, 255, .9); }
.crmstage i em { font-style: normal; font-size: .46rem; color: var(--blue-300); }
.crmstage i.is-hot::before { background: linear-gradient(90deg, rgba(16, 89, 174, .95), rgba(79, 179, 232, .45)); }
.crmstage i.is-hot em { color: #fff; }

/* contact rows */
.crmlist { display: grid; gap: 4px; }
.crmlist span {
  display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 8px;
  padding: 4px 0; border-bottom: 1px solid rgba(255, 255, 255, .05); font-size: .46rem;
}
.crmlist b { font-weight: 600; color: rgba(255, 255, 255, .9); }
.crmlist em { font-style: normal; color: rgba(226, 230, 245, .5); }
.crmlist u {
  text-decoration: none; padding: 2px 6px; border-radius: 20px; font-size: .4rem;
  background: rgba(30, 111, 203, .22); color: var(--blue-300);
}
.crmlist u.is-new { background: rgba(52, 211, 153, .16); color: #6ee7b7; }

/* activity feed */
.crmfeed { display: grid; gap: 5px; }
.crmfeed span {
  display: flex; align-items: center; gap: 7px;
  font-size: .46rem; color: rgba(226, 230, 245, .66);
}
.crmfeed em { margin-left: auto; font-style: normal; font-size: .42rem; color: rgba(226, 230, 245, .38); }
.crmfeed i { flex: none; width: 12px; height: 12px; border-radius: 4px; }
.crmfeed i.is-call { background: rgba(52, 211, 153, .28); box-shadow: inset 0 0 0 1px rgba(52, 211, 153, .5); }
.crmfeed i.is-mail { background: rgba(30, 111, 203, .32); box-shadow: inset 0 0 0 1px rgba(91, 155, 222, .55); }
.crmfeed i.is-task { background: rgba(251, 191, 36, .22); box-shadow: inset 0 0 0 1px rgba(251, 191, 36, .5); }

/* ==========================================================================
   AGENT WORKSPACE
   One scoped task, the plan as it runs, tool calls by name, and the approval
   gate that stops it short of the consequential action.
   ========================================================================== */
.agw {
  display: grid; gap: 12px; padding: 16px;
  border-radius: 18px; border: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(165deg, rgba(28, 32, 58, .97), rgba(10, 12, 24, .97));
  box-shadow: 0 34px 64px -34px rgba(0, 0, 0, .95);
}
.agw__task {
  display: grid; gap: 3px; padding: 10px 12px; border-radius: 12px;
  background: rgba(30, 111, 203, .12); border: 1px solid rgba(91, 155, 222, .28);
}
.agw__task em { font-style: normal; font-size: .54rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(226, 230, 245, .48); }
.agw__task b { font-family: var(--font-head); font-weight: 600; font-size: .76rem; color: #fff; }
.agw .run__steps { gap: 9px; }
.agw__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .07);
}
.agw__approve {
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: .64rem; font-weight: 700; color: #fff; background: var(--btn-grad);
}

/* ==========================================================================
   SERVICE-SPECIFIC COMPOSITIONS
   One hero illustration per service and a separate supporting illustration
   for its long-form section. They share the panel chrome, the hairline, the
   radii and the #1059AE → #4FB3E8 accent ramp used everywhere else — only
   the composition changes, so each service reads as itself without reading
   as a different company.
   ========================================================================== */

/* shared shell for the compositions below */
.aflow, .tshift, .warch__code, .warch__preview, .slife, .sblue, .cflow, .cjour, .aloop, .rshift__site {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: linear-gradient(170deg, #171b31, #0c0e1c);
  box-shadow: 0 34px 64px -34px rgba(0, 0, 0, .95);
}

/* --------------------------------------------------------------------------
   AI Automation — hero: one automation run, top to bottom
   -------------------------------------------------------------------------- */
.viz--autoflow { max-width: 400px; }
.aflow { padding: 14px; display: grid; gap: 12px; }
.aflow__head { display: flex; align-items: center; gap: 8px; }
.aflow__method {
  font-size: .58rem; font-weight: 700; letter-spacing: .08em; color: #fff;
  padding: 4px 8px; border-radius: 7px; background: var(--btn-grad);
}
.aflow__route {
  flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-size: .62rem; color: rgba(226, 230, 245, .55);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.aflow__body { position: relative; }
.aflow__rail { position: absolute; left: 17px; top: 14px; bottom: 14px; width: 2px; border-radius: 2px; background: rgba(91, 155, 222, .22); overflow: hidden; }
.aflow__rail i {
  position: absolute; left: 0; right: 0; height: 34%;
  background: linear-gradient(180deg, transparent, var(--blue-400), transparent);
  animation: aflowRun 3.6s linear infinite;
}
@keyframes aflowRun { from { transform: translateY(-120%); } to { transform: translateY(320%); } }

.aflow__steps { display: grid; gap: 5px; }
.aflow__step {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 9px;
  padding: 6px 9px 6px 0; border-radius: 11px;
  border: 1px solid transparent;
  animation: aflowStep 5.6s var(--ease) infinite;
  animation-delay: calc(var(--i) * .45s);
}
@keyframes aflowStep {
  0%, 62%, 100% { background: transparent; border-color: transparent; }
  14% { background: rgba(30, 111, 203, .16); border-color: rgba(91, 155, 222, .34); }
}
.aflow__mark {
  display: grid; place-items: center; width: 26px; height: 26px; margin-left: 5px;
  border-radius: 9px; color: var(--blue-300);
  background: linear-gradient(150deg, rgba(28, 32, 58, 1), rgba(12, 14, 28, 1));
  border: 1px solid rgba(91, 155, 222, .3);
}
.aflow__mark svg { width: 14px; height: 14px; }
.aflow__text { display: grid; gap: 1px; min-width: 0; }
.aflow__text b { font-family: var(--font-head); font-weight: 600; font-size: .74rem; color: #fff; }
.aflow__text em { font-style: normal; font-size: .58rem; color: rgba(226, 230, 245, .5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aflow__ms { font-size: .56rem; color: rgba(226, 230, 245, .38); }
.aflow__step:last-child .aflow__mark { color: #6ee7b7; border-color: rgba(52, 211, 153, .34); }

/* --------------------------------------------------------------------------
   AI Automation — supporting: the same three jobs before and after
   -------------------------------------------------------------------------- */
.viz--timeshift { max-width: 440px; }
.tshift { display: grid; grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr); align-items: center; gap: 8px; padding: 14px; }
.tshift__col { display: grid; gap: 8px; min-width: 0; }
.tshift__head { display: grid; gap: 2px; padding-bottom: 7px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.tshift__head b { font-family: var(--font-head); font-size: .72rem; color: #fff; }
.tshift__head em { font-style: normal; font-size: .58rem; color: rgba(226, 230, 245, .48); }
.tshift__col--after .tshift__head em { color: #6ee7b7; }
.tshift__job { display: grid; gap: 5px; }
.tshift__job b { font-weight: 500; font-size: .6rem; line-height: 1.35; color: rgba(226, 230, 245, .68); }
.tshift__job i { display: block; height: 6px; width: var(--w); border-radius: 4px; background: rgba(255, 255, 255, .16); }
.tshift__job.is-auto i { min-width: 14px; background: linear-gradient(90deg, var(--blue-500), #4FB3E8); }
.tshift__job em { font-style: normal; font-size: .58rem; color: rgba(226, 230, 245, .42); }
.tshift__job.is-auto em { color: var(--blue-300); }
.tshift__arrow { display: grid; gap: 3px; justify-items: center; }
.tshift__arrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); opacity: .3; animation: livePulse 1.8s var(--ease) infinite; }
.tshift__arrow i:nth-child(2) { animation-delay: .2s; }
.tshift__arrow i:nth-child(3) { animation-delay: .4s; }
.tshift__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.tshift__foot span { display: grid; gap: 1px; }
.tshift__foot b { font-family: var(--font-head); font-size: .9rem; color: #fff; letter-spacing: -0.02em; }
.tshift__foot em { font-style: normal; font-size: .56rem; color: rgba(226, 230, 245, .48); }

/* --------------------------------------------------------------------------
   Web Development — supporting: component → build → edge → rendered page
   -------------------------------------------------------------------------- */
.viz--webarch { display: grid; gap: 10px; max-width: 420px; }
.warch__code { padding: 12px; display: grid; gap: 9px; }
.warch__tabs { display: flex; gap: 6px; }
.warch__tabs i {
  font-style: normal; font-size: .55rem; padding: 3px 8px; border-radius: 6px;
  color: rgba(226, 230, 245, .45); background: rgba(255, 255, 255, .05);
}
.warch__tabs i.is-on { color: #fff; background: rgba(30, 111, 203, .3); }
.warch__pre { margin: 0; overflow: hidden; }
.warch__pre code { display: grid; gap: 3px; font-size: .56rem; line-height: 1.5; color: rgba(226, 230, 245, .6); }
.warch__pre .ln { display: block; white-space: pre; overflow: hidden; text-overflow: ellipsis; }
.warch__pre b { font-weight: 600; color: #9CC4EC; }
.warch__pre u { text-decoration: none; color: #4FB3E8; }
.warch__pre i { font-style: normal; color: #6ee7b7; }

.warch__chain { display: flex; align-items: center; gap: 7px; }
.warch__chain span { font-size: .56rem; padding: 4px 9px; border-radius: var(--r-pill); color: rgba(226, 230, 245, .55); border: 1px solid rgba(255, 255, 255, .12); }
.warch__chain span.is-on { color: #fff; border-color: rgba(91, 155, 222, .5); background: rgba(30, 111, 203, .18); }
.warch__chain i { flex: 1; height: 2px; border-radius: 2px; position: relative; overflow: hidden; background: rgba(255, 255, 255, .1); }
.warch__chain i::after {
  content: ""; position: absolute; inset: 0; width: 44%;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
  animation: connRun 2.4s linear infinite;
}
.warch__chain i:last-of-type::after { animation-delay: .5s; }

.warch__preview { padding: 0; overflow: hidden; }
.warch__bar { display: flex; align-items: center; gap: 5px; padding: 8px 10px; background: rgba(255, 255, 255, .045); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.warch__bar b { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
.warch__bar em { margin-left: 6px; font-style: normal; font-size: .55rem; color: rgba(226, 230, 245, .42); }
.warch__render { display: grid; gap: 7px; padding: 12px; }
.warch__render u { display: block; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .13); }
.warch__render u.warch__h1 { width: 62%; height: 11px; background: linear-gradient(90deg, #1059AE, #4FB3E8); }
.warch__p.is-short { width: 44%; }
.warch__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 3px; }
.warch__cards i { height: 30px; border-radius: 9px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .07); }
.warch__cards i:first-child { background: rgba(30, 111, 203, .2); }
.warch__vitals { display: flex; gap: 6px; padding: 0 12px 12px; }
.warch__vitals b {
  flex: 1; text-align: center; font-family: var(--font-head); font-weight: 500;
  font-size: .52rem; letter-spacing: .05em; color: rgba(226, 230, 245, .45);
  padding: 6px 4px; border-radius: 8px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06);
}
.warch__vitals u { display: block; text-decoration: none; font-size: .74rem; font-weight: 700; color: #6ee7b7; }

/* --------------------------------------------------------------------------
   Web Development — replatforming: legacy site → rebuilt site
   -------------------------------------------------------------------------- */
.viz--redesign { max-width: 420px; }
.rshift { display: grid; grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr); align-items: center; gap: 8px; }
.rshift__site { overflow: hidden; }
.rshift__site--old { opacity: .58; }
.rshift__bar { display: flex; align-items: center; gap: 4px; padding: 7px 9px; background: rgba(255, 255, 255, .045); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.rshift__bar b { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
.rshift__bar em { margin-left: 5px; font-style: normal; font-size: .5rem; color: rgba(226, 230, 245, .42); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rshift__body { display: grid; gap: 6px; padding: 10px; }
.rshift__body u { display: block; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .16); text-decoration: none; }
.rshift__body u.is-short { width: 52%; }
.rshift__body i { height: 22px; border-radius: 7px; background: rgba(255, 255, 255, .06); }
.rshift__site--new .rshift__body u:first-child { background: linear-gradient(90deg, #1059AE, #4FB3E8); }
.rshift__site--new .rshift__body i:first-of-type { background: rgba(30, 111, 203, .22); }
.rshift__score { display: block; padding: 0 10px 10px; font-size: .55rem; color: rgba(226, 230, 245, .45); }
.rshift__score b { font-family: var(--font-head); font-size: .8rem; color: rgba(226, 230, 245, .7); }
.rshift__score.is-good b { color: #6ee7b7; }
.rshift__move { display: grid; gap: 3px; justify-items: center; }
.rshift__move i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); opacity: .35; animation: livePulse 1.8s var(--ease) infinite; }
.rshift__move i:nth-child(2) { animation-delay: .2s; }
.rshift__move i:nth-child(3) { animation-delay: .4s; }
.rshift__map { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.rshift__map span { display: grid; gap: 1px; }
.rshift__map b { font-family: var(--font-head); font-size: .88rem; color: #fff; letter-spacing: -0.02em; }
.rshift__map em { font-style: normal; font-size: .56rem; color: rgba(226, 230, 245, .48); }

/* --------------------------------------------------------------------------
   SaaS — hero: the product lifecycle as a rising track
   -------------------------------------------------------------------------- */
.viz--saaslife { max-width: 430px; }
.slife { position: relative; padding: 16px 12px 14px; }
.slife__wire { position: absolute; inset: 16px 12px auto; height: 96px; overflow: visible; }
.slife__wire path { fill: none; stroke-linecap: round; }
.slife__wire-base { stroke: rgba(91, 155, 222, .28); stroke-width: 1.6; }
.slife__wire-run { stroke: #9CC4EC; stroke-width: 2.2; stroke-dasharray: 12 88; animation: netPulse 3.6s linear infinite; }
.slife__track { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: end; gap: 2px; }
.slife__stage {
  display: grid; justify-items: center; gap: 3px; text-align: center;
  margin-bottom: calc(var(--i) * 15px);
}
.slife__node {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px;
  color: var(--blue-300); background: linear-gradient(150deg, rgba(28, 32, 58, 1), rgba(12, 14, 28, 1));
  border: 1px solid rgba(91, 155, 222, .3);
  animation: nodeGlow 5s var(--ease) infinite; animation-delay: calc(var(--i) * .5s);
}
.slife__node svg { width: 15px; height: 15px; }
.slife__stage.is-live .slife__node { background: var(--btn-grad); border-color: transparent; color: #fff; }
.slife__stage b { font-family: var(--font-head); font-weight: 600; font-size: .56rem; letter-spacing: -0.01em; color: #fff; line-height: 1.2; }
.slife__stage em { font-style: normal; font-size: .48rem; letter-spacing: -0.01em; color: rgba(226, 230, 245, .45); line-height: 1.25; }
.slife__release {
  margin-top: 12px; display: grid; gap: 6px; padding: 12px;
  border-radius: 14px; border: 1px solid rgba(91, 155, 222, .28);
  background: linear-gradient(150deg, rgba(28, 32, 58, .97), rgba(12, 14, 28, .97));
  box-shadow: 0 26px 46px -28px rgba(0, 0, 0, .95);
}
.slife__reltop { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.slife__reltop b { font-family: var(--font-head); font-size: .74rem; color: #fff; }
.slife__relrow { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: .6rem; color: rgba(226, 230, 245, .62); }
.slife__relrow i { font-style: normal; font-size: .54rem; color: #6ee7b7; }
.slife__relrow.is-next i { color: var(--blue-300); }

/* --------------------------------------------------------------------------
   SaaS — supporting: tenants, surfaces, services, data
   -------------------------------------------------------------------------- */
.viz--saasblue { max-width: 420px; }
.sblue { display: grid; gap: 8px; padding: 14px; }
.sblue__layer, .sblue__data { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; padding: 9px 10px; border-radius: 12px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); }
.sblue__layer em, .sblue__data em {
  font-style: normal; font-size: .5rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(226, 230, 245, .4); width: 100%;
}
.sblue__layer span, .sblue__data span { font-size: .58rem; padding: 3px 8px; border-radius: var(--r-pill); color: rgba(226, 230, 245, .66); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.sblue__layer span.is-on { color: #fff; background: rgba(30, 111, 203, .28); border-color: rgba(91, 155, 222, .45); }
.sblue__services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; position: relative; }
.sblue__services i {
  display: grid; gap: 2px; padding: 9px 10px; border-radius: 11px; font-style: normal;
  background: linear-gradient(150deg, rgba(30, 111, 203, .18), rgba(255, 255, 255, .03));
  border: 1px solid rgba(91, 155, 222, .24);
}
.sblue__services b { font-family: var(--font-head); font-size: .64rem; color: #fff; }
.sblue__services u { text-decoration: none; font-size: .52rem; color: rgba(226, 230, 245, .5); }
.sblue__data .viz__pill { margin-left: auto; }

/* --------------------------------------------------------------------------
   Chatbots — hero: one conversation turn, end to end
   -------------------------------------------------------------------------- */
.viz--chatflow { max-width: 400px; }
.cflow { display: grid; gap: 6px; padding: 14px; justify-items: stretch; }
.cflow__user, .cflow__reply { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 12px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .07); }
.cflow__avatar { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; font-size: .55rem; font-weight: 700; color: #fff; background: rgba(255, 255, 255, .14); }
.cflow__ask { display: grid; gap: 1px; min-width: 0; }
.cflow__ask b { font-weight: 500; font-size: .68rem; color: #fff; }
.cflow__ask em { font-style: normal; font-size: .52rem; color: rgba(226, 230, 245, .42); }
.cflow__wire { display: block; justify-self: center; width: 2px; height: 16px; border-radius: 2px; background: rgba(91, 155, 222, .25); overflow: hidden; position: relative; }
.cflow__wire i { position: absolute; left: 0; right: 0; height: 60%; background: linear-gradient(180deg, transparent, var(--blue-400), transparent); animation: aflowRun 1.8s linear infinite; }
.cflow__core {
  position: relative; display: grid; grid-template-columns: 54px minmax(0, 1fr); align-items: center; gap: 12px;
  padding: 12px 12px 12px 10px; border-radius: 14px;
  background: linear-gradient(140deg, rgba(16, 89, 174, .3), rgba(12, 14, 28, .9));
  border: 1px solid rgba(91, 155, 222, .34);
}
.cflow__ring { position: absolute; left: 15px; top: 50%; width: 44px; height: 44px; margin-top: -22px; border-radius: 50%; border: 1.5px dashed rgba(91, 155, 222, .5); animation: orbitSpin 9s linear infinite; }
.cflow__brain {
  justify-self: center; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  font-family: var(--font-head); font-size: .62rem; font-weight: 800; color: #fff;
  background: var(--btn-grad); box-shadow: 0 0 26px -4px rgba(30, 111, 203, .9);
}
.cflow__steps { display: grid; gap: 4px; min-width: 0; }
.cflow__steps b { display: flex; align-items: center; gap: 6px; font-weight: 500; font-size: .58rem; color: rgba(226, 230, 245, .58); }
.cflow__steps b::before { content: ""; width: 6px; height: 6px; border-radius: 50%; flex: none; background: rgba(255, 255, 255, .2); }
.cflow__steps b.is-done::before { background: #34d399; }
.cflow__steps b.is-live { color: #fff; }
.cflow__steps b.is-live::before { background: var(--blue-400); animation: livePulse 1.8s var(--ease) infinite; }
.cflow__know { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; padding: 8px 10px; border-radius: 11px; background: rgba(255, 255, 255, .03); border: 1px dashed rgba(255, 255, 255, .1); }
.cflow__know em { font-style: normal; font-size: .5rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(226, 230, 245, .38); }
.cflow__know span { font-size: .55rem; padding: 3px 7px; border-radius: var(--r-pill); color: var(--blue-300); background: rgba(30, 111, 203, .16); border: 1px solid rgba(91, 155, 222, .28); }
.cflow__bot { flex: none; width: 26px; height: 26px; border-radius: 9px; background: var(--btn-grad); }
.cflow__reply { border-color: rgba(91, 155, 222, .3); background: rgba(30, 111, 203, .12); }
.cflow__answer { display: grid; gap: 2px; min-width: 0; }
.cflow__answer b { font-weight: 500; font-size: .68rem; color: #fff; }
.cflow__answer em { font-style: normal; font-size: .52rem; color: var(--blue-300); }

/* --------------------------------------------------------------------------
   CRM — hero: one record moving through the pipeline
   -------------------------------------------------------------------------- */
.viz--crmjourney { max-width: 420px; }
.cjour { display: grid; gap: 12px; padding: 14px; }
.cjour__card { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 12px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .08); }
.cjour__avatar { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; font-size: .58rem; font-weight: 700; color: #fff; background: var(--btn-grad); }
.cjour__id { flex: 1; display: grid; gap: 1px; min-width: 0; }
.cjour__id b { font-family: var(--font-head); font-size: .74rem; color: #fff; }
.cjour__id em { font-style: normal; font-size: .56rem; color: rgba(226, 230, 245, .5); }

.cjour__track { position: relative; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 2px; padding-top: 6px; }
.cjour__rail { position: absolute; left: 8.33%; right: 8.33%; top: 11px; height: 2px; border-radius: 2px; background: rgba(255, 255, 255, .12); }
.cjour__rail i { display: block; height: 100%; width: var(--fill); border-radius: 2px; background: linear-gradient(90deg, var(--blue-600), #4FB3E8); }
.cjour__stage { position: relative; display: grid; justify-items: center; gap: 7px; text-align: center; }
.cjour__stage i { width: 12px; height: 12px; border-radius: 50%; background: #12152a; border: 2px solid rgba(255, 255, 255, .18); }
.cjour__stage.is-done i { background: var(--blue-500); border-color: var(--blue-500); }
.cjour__stage.is-live i { background: #4FB3E8; border-color: rgba(79, 179, 232, .35); box-shadow: 0 0 0 4px rgba(30, 111, 203, .22); animation: livePulse 2s var(--ease) infinite; }
.cjour__stage b { font-weight: 500; font-size: .55rem; color: rgba(226, 230, 245, .5); }
.cjour__stage.is-live b, .cjour__stage.is-done b { color: #fff; }

.cjour__next { display: grid; gap: 6px; }
.cjour__task { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 11px; font-size: .6rem; color: rgba(226, 230, 245, .68); background: rgba(255, 255, 255, .035); border: 1px solid rgba(255, 255, 255, .06); }
.cjour__task i { flex: none; width: 8px; height: 8px; border-radius: 3px; }
.cjour__task i.is-call { background: rgba(79, 179, 232, .8); }
.cjour__task i.is-mail { background: rgba(30, 111, 203, .8); }
.cjour__task em { margin-left: auto; font-style: normal; font-size: .55rem; color: rgba(226, 230, 245, .42); }
.cjour__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, .07); }
.cjour__stats span { display: grid; gap: 1px; text-align: center; }
.cjour__stats b { font-family: var(--font-head); font-size: .84rem; color: #fff; letter-spacing: -0.02em; }
.cjour__stats em { font-style: normal; font-size: .54rem; color: rgba(226, 230, 245, .46); }

/* --------------------------------------------------------------------------
   AI Agents — hero: task in, tools around the loop, result out
   -------------------------------------------------------------------------- */
.viz--agentloop { max-width: 400px; }
.aloop { display: grid; gap: 10px; padding: 14px; }
.aloop__task { display: grid; gap: 2px; padding: 9px 11px; border-radius: 12px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .08); }
.aloop__task em { font-style: normal; font-size: .5rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(226, 230, 245, .42); }
.aloop__task b { font-family: var(--font-head); font-weight: 600; font-size: .7rem; color: #fff; }

.aloop__stage { position: relative; display: grid; place-items: center; min-height: 148px; }
.aloop__orbit {
  position: absolute; width: 132px; height: 132px; border-radius: 50%;
  border: 1.5px dashed rgba(91, 155, 222, .35);
  animation: orbitSpin 16s linear infinite;
}
.aloop__core {
  position: relative; z-index: 2; display: grid; place-items: center; gap: 1px;
  width: 72px; height: 72px; border-radius: 50%; text-align: center;
  background: radial-gradient(circle at 40% 35%, #1E7BD0, #0B4184);
  box-shadow: 0 0 42px -6px rgba(30, 111, 203, .9), inset 0 1px 0 rgba(255, 255, 255, .2);
  animation: nodeGlow 4.5s var(--ease) infinite;
}
.aloop__core b { font-family: var(--font-head); font-size: .72rem; color: #fff; }
.aloop__core em { font-style: normal; font-size: .5rem; color: rgba(255, 255, 255, .68); }
.aloop__tool {
  position: absolute; z-index: 3; white-space: nowrap;
  font-size: .53rem; padding: 4px 8px; border-radius: var(--r-pill);
  color: var(--blue-300); background: linear-gradient(150deg, rgba(28, 32, 58, .98), rgba(12, 14, 28, .98));
  border: 1px solid rgba(91, 155, 222, .32);
  animation: floaty 7s var(--ease) infinite alternate;
}
.aloop__tool--a { top: 2px; left: 0; }
.aloop__tool--b { top: 2px; right: 0; animation-delay: -2s; }
.aloop__tool--c { bottom: 2px; left: 0; animation-delay: -3.5s; }
.aloop__tool--d { bottom: 2px; right: 0; animation-delay: -5s; }

.aloop__result {
  display: grid; gap: 2px; padding: 10px 11px; border-radius: 12px;
  background: rgba(30, 111, 203, .14); border: 1px solid rgba(91, 155, 222, .3);
}
.aloop__ok { font-size: .5rem; letter-spacing: .12em; text-transform: uppercase; color: #6ee7b7; }
.aloop__result b { font-family: var(--font-head); font-weight: 600; font-size: .7rem; color: #fff; }
.aloop__result em { font-style: normal; font-size: .54rem; color: rgba(226, 230, 245, .5); }
.aloop__guard { display: flex; justify-content: center; }

/* Narrow phones: the two-up compositions stack rather than squeeze. */
@media (max-width: 420px) {
  .tshift, .rshift { grid-template-columns: minmax(0, 1fr); }
  .tshift__arrow, .rshift__move { grid-auto-flow: column; justify-content: center; }
  .sblue__services { grid-template-columns: minmax(0, 1fr); }
  .slife__stage em { display: none; }
}

/* ==========================================================================
   404
   ========================================================================== */
.notfound { position: relative; overflow: hidden; padding: var(--hero-pad) 0; }
.notfound__inner { position: relative; z-index: 2; text-align: center; }
.notfound__inner .pill { margin-inline: auto; }
.notfound__inner .shero__title { max-width: 18ch; margin-inline: auto; }
.notfound__inner .shero__lead { margin-inline: auto; text-align: center; }
.notfound__inner .shero__actions { justify-content: center; }
.notfound__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  margin-top: clamp(44px, 6vw, 68px); text-align: left;
}
.notfound__link {
  display: flex; align-items: flex-start; gap: 12px; height: 100%;
  padding: 18px 18px 20px; border-radius: var(--r-lg);
  border: 1px solid var(--hairline-dark); background: rgba(255, 255, 255, .028);
  transition: transform .45s var(--ease-out), border-color .4s var(--ease), background-color .4s var(--ease);
}
.notfound__link:hover { transform: translateY(-4px); border-color: rgba(91, 155, 222, .45); background: rgba(30, 111, 203, .1); }
.notfound__icon {
  flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: rgba(30, 111, 203, .16); border: 1px solid rgba(91, 155, 222, .3); color: var(--blue-300);
}
.notfound__icon svg { width: 18px; height: 18px; }
.notfound__link b { display: block; font-family: var(--font-head); font-size: .95rem; color: #fff; }
.notfound__link em { display: block; margin-top: 3px; font-style: normal; font-size: .82rem; color: rgba(226, 230, 245, .55); }
@media (max-width: 900px) { .notfound__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .notfound__grid { grid-template-columns: 1fr; } }
