/* PSL Teams Page — extends method.css tokens via .psl-method scope.
   Class reuse from Method/Home. Brand palette only:
   - var(--m-dark-navy) #0D0042
   - var(--m-blue) #4644B9
   - var(--m-turquoise) #19E6C4
   - var(--m-light-grey), --m-white
   Adds executive-feeling enhancements: dark-navy hero, count-up stats,
   logo marquee, scroll-progress rail, mouse-tilt domain cards, arc gauges. */

/* ---------- Section rhythm — tighter than the global page-scale 64px,
   so the Teams page reads more compact (less unnecessary vertical whitespace).
   Needs !important + higher specificity to beat page-scale.css's
   '.psl-method .m-section { padding: 64px !important }'. Teams-only. */
.psl-teams.psl-method .m-section { padding-top: 72px !important; padding-bottom: 72px !important; }

/* #support uses the uniform section rhythm, balanced with the recognition
   section above so the divider sits evenly between the two. */
.psl-teams .t-recog-table .t-recog-tr:last-child { border-bottom: none; padding-bottom: 0; }
.psl-teams.psl-method #recognition.m-section { padding-bottom: 44px !important; }
.psl-teams.psl-method #support.m-section { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Eyebrow / overline colour — one consistent blue across every section. */
.psl-teams .m-overline { color: #1F4DD8; }

/* Desktop: pin the rings visual so it travels beside the three domain rows
   instead of sitting centred with large blank space above and below. */
@media (min-width: 901px) {
  .psl-teams #support .td-vis {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: calc(50vh - 230px) !important;
    align-self: start !important;
  }
}

/* ---------- Anim primitives (match method.css) ---------- */
.psl-teams .t-anim-fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2,0.7,0.2,1),
              transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.psl-teams .is-in .t-anim-fadeup { opacity: 1; transform: translateY(0); }
.psl-teams .t-d0 { transition-delay: 0s; }
.psl-teams .t-d1 { transition-delay: 0.1s; }
.psl-teams .t-d2 { transition-delay: 0.2s; }
.psl-teams .t-d3 { transition-delay: 0.3s; }
.psl-teams .t-d4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .psl-teams .t-anim-fadeup { opacity: 1; transform: none; transition: none; }
}

/* ---------- SCROLL PROGRESS RAIL ---------- */
.psl-teams .t-rail {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 30;
  display: flex; flex-direction: column;
  gap: 14px;
}
.psl-teams .t-rail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--m-mid-grey);
  opacity: 0.35;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 0; padding: 0;
}
.psl-teams .t-rail-dot.is-dark { background: rgba(255,255,255,0.55); }
.psl-teams .t-rail-dot:hover { opacity: 0.9; transform: scale(1.3); }
.psl-teams .t-rail-dot.active {
  opacity: 1;
  background: var(--m-blue);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(70,68,185,0.18);
}
.psl-teams .t-rail-dot.is-dark.active {
  background: var(--m-turquoise);
  box-shadow: 0 0 0 4px rgba(25,230,196,0.22);
}
.psl-teams .t-rail-label {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m-dark-navy);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.psl-teams .t-rail-dot.is-dark .t-rail-label { color: rgba(255,255,255,0.85); }
.psl-teams .t-rail-dot:hover .t-rail-label,
.psl-teams .t-rail-dot.active .t-rail-label { opacity: 1; }
@container pslteams (max-width: 1100px) { .psl-teams .t-rail { display: none; } }

/* ---------- STICKY SECTION BANNER (replaces the floating rail) ---------- */
.psl-teams .t-snav {
  position: sticky; top: 54px; z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(13,0,66,0.07);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform 300ms ease, opacity 240ms ease;
}
.psl-teams .t-snav.is-on { transform: translateY(0); opacity: 1; pointer-events: auto; }
.psl-teams .t-snav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 20px;
  overflow-x: auto; scrollbar-width: none;
}
.psl-teams .t-snav-inner::-webkit-scrollbar { display: none; }
.psl-teams .t-snav-eyebrow {
  flex-shrink: 0;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(13,0,66,0.4);
}
.psl-teams .t-snav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: stretch; gap: 2px; flex: 1;
}
.psl-teams .t-snav-link {
  appearance: none; background: none; border: none; cursor: pointer;
  font-family: "Mona Sans", sans-serif;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 12px; white-space: nowrap;
  font-size: 13px; font-weight: 600; color: rgba(13,0,66,0.55);
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.psl-teams .t-snav-link:hover { color: #1F4DD8; }
.psl-teams .t-snav-num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(13,0,66,0.3); font-variant-numeric: tabular-nums;
}
.psl-teams .t-snav-link.is-current { color: #1F4DD8; border-bottom-color: #1F4DD8; }
.psl-teams .t-snav-link.is-current .t-snav-num { color: #1F4DD8; }
@media (max-width: 760px) {
  .psl-teams .t-snav-inner { padding: 0 16px; gap: 12px; }
  .psl-teams .t-snav-eyebrow { display: none; }
  .psl-teams .t-snav-link { padding: 12px 9px; font-size: 12.5px; }
}

/* =====================================================================
   01 — HERO (dark navy executive within PSL palette)
   ===================================================================== */
.psl-teams .t-hero {
  position: relative;
  background: var(--m-dark-navy);
  padding-bottom: 80px;
  color: #fff;
  padding: 132px 0 44px;
  border-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}
.psl-teams .t-hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.psl-teams .t-bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  animation: t-bloom-drift 22s ease-in-out infinite;
  will-change: transform;
}
.psl-teams .t-bloom-1 {
  width: 700px; height: 700px;
  top: -240px; left: -160px;
  background: radial-gradient(circle, rgba(70,68,185,0.85), transparent 60%);
}
.psl-teams .t-bloom-2 {
  width: 520px; height: 520px;
  top: 30%; right: -180px;
  background: radial-gradient(circle, rgba(25,230,196,0.42), transparent 60%);
  animation-delay: -8s;
}
.psl-teams .t-bloom-3 {
  width: 380px; height: 380px;
  bottom: -160px; left: 36%;
  background: radial-gradient(circle, rgba(70,68,185,0.55), transparent 60%);
  animation-delay: -14s;
}
@keyframes t-bloom-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(50px,-40px) scale(1.08); }
}

.psl-teams .t-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  z-index: 0;
}
.psl-teams .t-hero .m-container { position: relative; z-index: 1; }

.psl-teams .t-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m-turquoise);
  margin-bottom: 28px;
}
.psl-teams .t-hero-eyebrow::before {
  content: none;
}
.psl-teams .t-hero-h {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 32px;
  max-width: 1080px;
  font-stretch: 110%;
  text-wrap: balance;
}
.psl-teams .t-hero-h-mark {
  background: linear-gradient(180deg, transparent 64%, rgba(25,230,196,0.55) 64%, rgba(25,230,196,0.55) 96%, transparent 96%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 1s cubic-bezier(0.2,0.7,0.2,1) 0.6s;
}
.psl-teams .is-in .t-hero-h-mark { background-size: 100% 100%; }
.psl-teams .t-hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  max-width: 880px;
  margin: 0 0 24px;
}
.psl-teams .t-hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 800px;
  margin: 0 0 48px;
}
.psl-teams .t-hero-body strong { color: #fff; font-weight: 600; }
.psl-teams .t-hero-cta-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.psl-teams .t-hero .m-btn-primary {
  background: var(--m-blue);
  border-color: var(--m-blue);
}
.psl-teams .t-hero .m-btn-primary:hover { background: var(--m-blue-hover); }
.psl-teams .t-hero-supporting {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin: 0;
  max-width: 540px;
}
.psl-teams .t-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 3;
}
.psl-teams .t-hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--m-turquoise), transparent);
  animation: t-scroll-tick 2.4s ease-in-out infinite;
}
@keyframes t-scroll-tick {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0.7; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =====================================================================
   02 — CREDIBILITY (count-up + marquee, light grey)
   ===================================================================== */
.psl-teams .t-creds {
  background: var(--m-light-grey);
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--m-border);
  position: relative;
  overflow: hidden;
}
.psl-teams .t-creds-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 0;
}
.psl-teams .t-stat {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid var(--m-border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.psl-teams .is-in .t-stat { opacity: 1; transform: translateY(0); }
.psl-teams .is-in .t-stat:nth-child(1) { transition-delay: 0s; }
.psl-teams .is-in .t-stat:nth-child(2) { transition-delay: 0.12s; }
.psl-teams .is-in .t-stat:nth-child(3) { transition-delay: 0.24s; }
.psl-teams .t-stat::before {
  content: "";
  position: absolute;
  top: 0; left: -1px;
  width: 1px; height: 36px;
  background: var(--m-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease-out 0.2s;
}
.psl-teams .is-in .t-stat::before { transform: scaleY(1); }
.psl-teams .t-stat-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--m-dark-navy);
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.psl-teams .t-stat-num-suffix {
  font-size: 32px;
  color: var(--m-blue);
}
.psl-teams .t-stat-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--m-blue);
  margin-bottom: 8px;
  display: block;
}
.psl-teams .t-stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--m-mid-grey);
  margin: 0;
  max-width: 280px;
}
.psl-teams .t-marquee-wrap {
  border-top: 1px solid var(--m-border);
  padding-top: 28px;
}
.psl-teams .t-marquee-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--m-mid-grey);
  margin-bottom: 24px;
}
.psl-teams .t-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.psl-teams .t-marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: t-marquee 32s linear infinite;
}
.psl-teams .t-marquee:hover .t-marquee-track { animation-play-state: paused; }
@keyframes t-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.psl-teams .t-logo-cell {
  height: 28px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--m-dark-navy);
  opacity: 0.45;
  transition: opacity 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.psl-teams .t-logo-cell:hover { opacity: 1; color: var(--m-blue); }

/* =====================================================================
   03 — RECOGNITION (white, animated timeline)
   ===================================================================== */
.psl-teams .t-recog { background: var(--m-white); padding: 96px 0; }
.psl-teams .t-recog-list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  position: relative;
  max-width: 920px;
}
.psl-teams .t-recog-rail { position: relative; padding-left: 40px; }
.psl-teams .t-recog-spine {
  position: absolute;
  top: 8px; bottom: 8px;
  left: 14px;
  width: 1px;
  background: var(--m-border);
}
.psl-teams .t-recog-spine-full {
  top: 4px; bottom: 4px; left: 0;
}
.psl-teams .t-recog-marker { display: none !important; }
.psl-teams .t-recog-spine::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(180deg, var(--m-blue), var(--m-turquoise));
  transition: height 1.6s cubic-bezier(0.2,0.7,0.2,1) 0.2s;
}
.psl-teams .is-in .t-recog-spine::after { height: 100%; }
.psl-teams .t-recog-item {
  position: relative;
  padding: 24px 0 24px 16px;
  border-bottom: 1px solid var(--m-border);
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.psl-teams .is-in .t-recog-item { opacity: 1; transform: translateY(0); }
.psl-teams .is-in .t-recog-item:nth-child(2) { transition-delay: 0.4s; }
.psl-teams .is-in .t-recog-item:nth-child(3) { transition-delay: 0.65s; }
.psl-teams .is-in .t-recog-item:nth-child(4) { transition-delay: 0.9s; }
.psl-teams .t-recog-marker {
  position: absolute;
  left: 8px;
  top: 32px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--m-white);
  border: 1.5px solid var(--m-blue);
  z-index: 1;
}
.psl-teams .t-recog-marker::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--m-blue);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.5,1.6,0.4,1);
}
.psl-teams .is-in .t-recog-item:nth-child(2) .t-recog-marker::after { transition-delay: 0.6s; transform: scale(1); }
.psl-teams .is-in .t-recog-item:nth-child(3) .t-recog-marker::after { transition-delay: 0.85s; transform: scale(1); }
.psl-teams .is-in .t-recog-item:nth-child(4) .t-recog-marker::after { transition-delay: 1.1s; transform: scale(1); }
.psl-teams .t-recog-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--m-blue);
  font-variant-numeric: tabular-nums;
}
.psl-teams .t-recog-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--m-dark-navy);
  margin: 0;
  text-wrap: balance;
}

/* =====================================================================
   04 — DOMAINS (3D mouse-tilt)
   ===================================================================== */
.psl-teams .t-support { background: var(--m-light-grey); padding: 96px 0; }
.psl-teams .t-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  perspective: 1200px;
}
.psl-teams .t-domain {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --gleam-x: 50%;
  --gleam-y: 0%;
  background: var(--m-white);
  border: 1px solid var(--m-border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1),
              border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
}
.psl-teams .is-in .t-domain {
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1),
              border-color 0.3s ease, box-shadow 0.3s ease,
              opacity 0.6s ease-out;
}
.psl-teams .is-in .t-domain:nth-of-type(1) { transition-delay: 0s; }
.psl-teams .is-in .t-domain:nth-of-type(2) { transition-delay: 0.1s; }
.psl-teams .is-in .t-domain:nth-of-type(3) { transition-delay: 0.2s; }
.psl-teams .t-domain:hover {
  border-color: var(--m-blue);
  box-shadow: 0 24px 56px rgba(13,0,66,0.12);
}
.psl-teams .t-domain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--gleam-x) var(--gleam-y),
    rgba(70,68,185,0.10),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.psl-teams .t-domain:hover::before { opacity: 1; }
.psl-teams .t-domain-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--m-blue);
  font-variant-numeric: tabular-nums;
}
.psl-teams .t-domain-descriptor {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-blue);
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--m-border);
}
.psl-teams .t-domain-h {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--m-dark-navy);
  margin: 0;
  text-wrap: balance;
}
.psl-teams .t-domain-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--m-dark-grey);
  margin: 0;
  flex: 1;
}
.psl-teams .t-domain-fail {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--m-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.4s ease-out 0.4s;
}
.psl-teams .is-in .t-domain-fail { opacity: 1; }
.psl-teams .t-domain-fail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m-mid-grey);
}
.psl-teams .t-domain-fail-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--m-mid-grey);
  margin: 0;
}

/* =====================================================================
   05 — WHAT CHANGES (arc gauges)
   ===================================================================== */
.psl-teams .t-changes { background: var(--m-white); padding: 96px 0; }
.psl-teams .t-changes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.psl-teams .t-horizon {
  position: relative;
  background: var(--m-light-grey);
  border: 1px solid var(--m-border);
  border-radius: 12px;
  padding: 36px 36px 32px;
  display: flex; flex-direction: column;
  gap: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.psl-teams .is-in .t-horizon { opacity: 1; transform: translateY(0); }
.psl-teams .is-in .t-horizon:nth-child(1) { transition-delay: 0s; }
.psl-teams .is-in .t-horizon:nth-child(2) { transition-delay: 0.15s; }
.psl-teams .t-horizon::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--m-blue), var(--m-turquoise));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.psl-teams .is-in .t-horizon::before { transform: scaleX(1); }
.psl-teams .is-in .t-horizon:nth-child(2)::before { transition-delay: 0.4s; }

.psl-teams .t-horizon-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--m-border);
}
.psl-teams .t-horizon-window {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-dark-navy);
}
.psl-teams .t-horizon-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--m-blue);
  font-variant-numeric: tabular-nums;
}
.psl-teams .t-horizon-arc {
  display: flex; align-items: center; gap: 28px;
}
.psl-teams .t-arc-svg {
  width: 110px; height: 110px;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
.psl-teams .t-arc-track { stroke: var(--m-border); }
.psl-teams .t-arc-fill {
  stroke: url(#t-arc-grad);
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.2,0.7,0.2,1) 0.6s;
}
.psl-teams .is-in .t-horizon:nth-child(1) .t-arc-fill { stroke-dashoffset: calc(314 - (314 * 0.35)); }
.psl-teams .is-in .t-horizon:nth-child(2) .t-arc-fill { stroke-dashoffset: 0; }
.psl-teams .t-arc-label { display: flex; flex-direction: column; gap: 4px; }
.psl-teams .t-arc-pct {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--m-dark-navy);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.psl-teams .t-arc-cap {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m-blue);
}
.psl-teams .t-horizon-h {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--m-dark-navy);
  margin: 0;
  text-wrap: balance;
}
.psl-teams .t-horizon-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--m-dark-grey);
  margin: 0;
}
.psl-teams .t-horizon-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.psl-teams .t-horizon-tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--m-blue);
  background: rgba(70,68,185,0.08);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- RESPONSIVE ---------- */
@container pslteams (max-width: 1023px) {
  .psl-teams .t-hero { padding: 120px 0 88px; }
  .psl-teams .t-hero-h { font-size: 42px; }
  .psl-teams .t-creds-stats { grid-template-columns: 1fr; gap: 32px; }
  .psl-teams .t-support-grid { grid-template-columns: 1fr; }
  .psl-teams .t-changes-grid { grid-template-columns: 1fr; }
  .psl-teams .t-stat-num { font-size: 56px; }
}
@container pslteams (max-width: 640px) {
  .psl-teams .t-hero-h { font-size: 32px; }
  .psl-teams .t-hero-sub { font-size: 18px; }
  .psl-teams .t-recog-text { font-size: 16px; }
  .psl-teams .t-horizon-arc { flex-direction: column; align-items: flex-start; gap: 16px; }
}




/* ---------- RECOGNITION — wheel pop-up + zoom on hover ---------- */
.psl-teams .t-recog-list { perspective: 1200px; }
.psl-teams .t-recog-item {
  transition:
    opacity 0.6s ease-out,
    transform 0.55s cubic-bezier(0.22, 1.2, 0.36, 1),
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    padding-left 0.4s ease;
  transform: translateX(-32px) translateY(0) scale(1) rotateX(0);
  border-radius: 12px;
  transform-origin: center left;
  will-change: transform, box-shadow;
}
.psl-teams .is-in .t-recog-item { transform: translateX(0) translateY(0) scale(1); }

.psl-teams .t-recog-item::before {
  content: "";
  position: absolute;
  inset: -6px -20px;
  background: #ffffff;
  border-radius: 14px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1.2, 0.36, 1);
  box-shadow:
    0 24px 60px -20px rgba(13, 0, 66, 0.22),
    0 8px 24px -8px rgba(70, 70, 255, 0.18),
    0 0 0 1px rgba(70, 70, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}
.psl-teams .t-recog-item > * { position: relative; z-index: 1; }

/* The wheel pop — lift, zoom, subtle tilt */
.psl-teams .t-recog-item:hover {
  transform: translateX(0) translateY(-6px) scale(1.035) rotateX(2deg);
  padding-left: 24px;
  z-index: 2;
}
.psl-teams .t-recog-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Marker — fill with brand colour and grow on hover */
.psl-teams .t-recog-marker {
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.4s cubic-bezier(0.5, 1.6, 0.4, 1);
}
.psl-teams .t-recog-item:hover .t-recog-marker {
  border-color: var(--m-blue, #4646ff);
  background: var(--m-blue, #4646ff);
  box-shadow: 0 0 0 8px rgba(70, 70, 255, 0.14);
  transform: scale(1.15);
}
.psl-teams .t-recog-item:hover .t-recog-marker::after {
  transform: scale(1) !important;
  background: #fff;
}

/* Number eyebrow + text emphasis on hover */
.psl-teams .t-recog-num,
.psl-teams .t-recog-text { transition: color 0.3s ease, letter-spacing 0.3s ease; }
.psl-teams .t-recog-item:hover .t-recog-num {
  color: var(--m-blue, #4646ff);
  letter-spacing: 0.14em;
}
.psl-teams .t-recog-item:hover .t-recog-text { color: var(--m-dark-navy, #0d0042); }

/* Slightly dim siblings while one is hovered, so the active one pops */
.psl-teams .t-recog-list:hover .t-recog-item:not(:hover) {
  opacity: 0.55;
  transform: translateX(0) scale(0.985);
}
.psl-teams .t-recog-list:hover .t-recog-item:not(:hover) .t-recog-num,
.psl-teams .t-recog-list:hover .t-recog-item:not(:hover) .t-recog-text { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  .psl-teams .t-recog-item,
  .psl-teams .t-recog-item::before,
  .psl-teams .t-recog-marker { transition: none !important; }
  .psl-teams .t-recog-item:hover { transform: none; padding-left: 16px; }
}


/* ---------- HERO photo background (silhouettes / sunset) ---------- */
.psl-teams .t-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/teams/team-hero.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.9) contrast(1.05);
}
/* Subtle gradient overlay — favours legibility on the left where copy lives,
   lets the photo breathe on the right */
.psl-teams .t-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 0, 66, 0.78) 0%, rgba(13, 0, 66, 0.45) 45%, rgba(13, 0, 66, 0.10) 100%),
    linear-gradient(180deg, rgba(13, 0, 66, 0.30) 0%, rgba(13, 0, 66, 0.10) 40%, rgba(13, 0, 66, 0.55) 100%);
  z-index: 0;
  pointer-events: none;
}
/* Push text content above the overlays */
.psl-teams .t-hero > .m-container,
.psl-teams .t-hero > .t-hero-scroll { position: relative; z-index: 2; }
/* Soften the bloom orbs slightly so the photo can read through */
.psl-teams .t-hero-bg { z-index: 1; mix-blend-mode: screen; opacity: 0.85; }


/* ---------- RECOGNITION — split grid with photo + animated spine ---------- */
.psl-teams .t-recog-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.15fr;
  gap: 56px;
  margin-top: 48px;
  align-items: stretch;
}
.psl-teams .t-recog-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--m-dark-navy, #0d0042);
  aspect-ratio: 4 / 5;
  max-height: 620px;
  box-shadow: 0 24px 60px -28px rgba(13, 0, 66, 0.35);
}
.psl-teams .t-recog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.psl-teams .is-in .t-recog-image img { transform: scale(1); }
.psl-teams .t-recog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,0,66,0) 50%, rgba(13,0,66,0.65) 100%);
  pointer-events: none;
}
.psl-teams .t-recog-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

/* Restore the per-item layout that the .t-recog-rail removed */
.psl-teams .t-recog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.psl-teams .t-recog-list .t-recog-spine {
  position: absolute;
  top: 8px; bottom: 8px;
  left: 14px;
  width: 1px;
  background: var(--m-border, #E5E7EB);
}
.psl-teams .t-recog-list .t-recog-spine::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(180deg, var(--m-blue, #4646ff), var(--m-turquoise, #19E6C4));
  transition: height 1.6s cubic-bezier(0.2,0.7,0.2,1) 0.2s;
}
.psl-teams .is-in .t-recog-list .t-recog-spine::after { height: 100%; }
.psl-teams .t-recog-item .t-recog-marker {
  position: absolute;
  left: 8px;
  top: 32px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--m-white, #fff);
  border: 2px solid var(--m-blue, #4646ff);
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.5,1.6,0.4,1), box-shadow 0.3s ease;
}
.psl-teams .t-recog-item .t-recog-marker::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--m-blue, #4646ff);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.5,1.6,0.4,1);
}
.psl-teams .is-in .t-recog-item:nth-child(2) .t-recog-marker::after { transition-delay: 0.5s; transform: scale(1); }
.psl-teams .is-in .t-recog-item:nth-child(3) .t-recog-marker::after { transition-delay: 0.75s; transform: scale(1); }
.psl-teams .is-in .t-recog-item:nth-child(4) .t-recog-marker::after { transition-delay: 1.0s; transform: scale(1); }
.psl-teams .t-recog-item:hover .t-recog-marker {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(70,70,255,0.14);
}

@container pslteams (max-width: 880px) {
  .psl-teams .t-recog-grid { grid-template-columns: 1fr; gap: 32px; }
  .psl-teams .t-recog-image { max-height: 360px; aspect-ratio: 4 / 3; }
}
/* Unnamed mirrors — fire inside any container scope (pslmethod / pslteams etc.) */
@container (max-width: 880px) {
  .psl-teams .t-recog-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .psl-teams .t-recog-image { max-height: 360px; aspect-ratio: 4 / 3; }
  .psl-teams .t-recog-grid .t-recog-list { padding-right: 0 !important; padding-left: 20px !important; }
  .psl-teams .t-recog-grid .t-recog-text { max-width: none !important; }
  .psl-teams .t-recog-grid .t-recog-marker { left: -28px !important; }
}


/* RECOGNITION — give signal text breathing room on the right */
.psl-teams .t-recog-grid .t-recog-list { padding-right: 48px; }
.psl-teams .t-recog-grid .t-recog-text { max-width: 36ch; }
@container pslteams (max-width: 880px) {
  .psl-teams .t-recog-grid .t-recog-list { padding-right: 0; }
  .psl-teams .t-recog-grid .t-recog-text { max-width: none; }
}


/* ---------- RECOGNITION — match Individuals page exactly ---------- */
/* Override prior grid + image + spine + marker rules so the section
   mirrors the .i-recog-* layout on the Individuals page. */
.psl-teams .t-recog-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}
.psl-teams .t-recog-image {
  position: relative;
  align-self: start;
  aspect-ratio: 4 / 3;
  max-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--m-light-grey, #F4F4F4);
  box-shadow: 0 24px 60px -28px rgba(13, 0, 66, 0.35);
}
.psl-teams .t-recog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 6s ease;
}
.psl-teams .t-recog-grid:hover .t-recog-image img { transform: scale(1.04); }
.psl-teams .t-recog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,0,66,0) 50%, rgba(13,0,66,0.4) 100%);
  pointer-events: none;
}
.psl-teams .t-recog-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.psl-teams .t-recog-caption span {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
}

/* List + spine + markers */
.psl-teams .t-recog-grid .t-recog-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.psl-teams .t-recog-grid .t-recog-spine {
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, var(--m-blue, #4646ff), var(--m-turquoise, #19E6C4));
  border-radius: 2px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
}
.psl-teams .t-recog-grid .t-recog-spine::after { content: none; }
.psl-teams .t-recog.is-in .t-recog-grid .t-recog-spine { transform: scaleY(1); }

.psl-teams .t-recog-grid .t-recog-item {
  position: relative;
  padding: 28px 0;
  border-bottom: 1px solid var(--m-border, #E5E7EB);
  display: block;
  grid-template-columns: none;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  transform: none !important;
  box-shadow: none;
}
.psl-teams .t-recog-grid .t-recog-item:first-child { padding-top: 0; }
.psl-teams .t-recog-grid .t-recog-item:last-child { border-bottom: 0; padding-bottom: 0; }
.psl-teams .t-recog-grid .t-recog-item::before { content: none; }

.psl-teams .t-recog-grid .t-recog-marker {
  position: absolute;
  left: -36px;
  top: 36px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--m-blue, #4646ff);
  box-shadow: 0 0 0 4px rgba(70,70,255,0.12);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.psl-teams .t-recog-grid .t-recog-marker::after { content: none; }
.psl-teams .t-recog-grid .t-recog-item:first-child .t-recog-marker { top: 8px; }
.psl-teams .t-recog.is-in .t-recog-grid .t-recog-item:nth-child(1) .t-recog-marker { transform: scale(1); transition-delay: 0.2s; }
.psl-teams .t-recog.is-in .t-recog-grid .t-recog-item:nth-child(2) .t-recog-marker { transform: scale(1); transition-delay: 0.4s; }
.psl-teams .t-recog.is-in .t-recog-grid .t-recog-item:nth-child(3) .t-recog-marker { transform: scale(1); transition-delay: 0.6s; }
.psl-teams .t-recog-grid .t-recog-item:hover .t-recog-marker {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(70,70,255,0.18);
}

.psl-teams .t-recog-grid .t-recog-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--m-blue, #4646ff);
  margin-bottom: 8px;
}
.psl-teams .t-recog-grid .t-recog-text {
  font-size: 19px;
  line-height: 1.5;
  color: var(--m-dark-navy, #0d0042);
  font-weight: 500;
  margin: 0;
  max-width: none;
}

@container pslteams (max-width: 880px) {
  .psl-teams .t-recog-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ---------- CONTEXTS image strip (moved from Individuals) ---------- */
.psl-teams .t-strip {
  background: #F4F4F4;
  padding: 80px 0 96px;
}
.psl-teams .t-strip-head { margin-bottom: 32px; max-width: 760px; }
.psl-teams .t-strip-head .m-h2 { margin-top: 12px; }
.psl-teams .t-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.psl-teams .t-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0D0042;
  cursor: pointer;
}
.psl-teams .t-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
  transform: scale(1.02);
  transition: transform 0.8s ease, filter 0.4s ease;
}
.psl-teams .t-tile:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.08); }
.psl-teams .t-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,0,66,0) 40%, rgba(13,0,66,0.85) 100%);
  z-index: 1;
}
.psl-teams .t-tile-caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  color: #fff;
}
.psl-teams .t-tile-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m-turquoise, #19E6C4);
}
.psl-teams .t-tile-h {
  margin-top: 8px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
@container pslteams (max-width: 1023px) {
  .psl-teams .t-strip-grid { grid-template-columns: 1fr 1fr; }
}
@container pslteams (max-width: 640px) {
  .psl-teams .t-strip-grid { grid-template-columns: 1fr; }
}
/* Unnamed mirrors */
@container (max-width: 1023px) {
  .psl-teams .t-strip-grid { grid-template-columns: 1fr 1fr !important; }
  .psl-teams .t-creds-stats { grid-template-columns: 1fr !important; gap: 28px !important; }
  .psl-teams .t-support-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .psl-teams .t-changes-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
}
@container (max-width: 640px) {
  .psl-teams .t-strip-grid { grid-template-columns: 1fr !important; }
}


/* ---------- Report flow (snake ribbon) — ported from Individuals ---------- */
.psl-teams .i-flow {
  position: relative;
  margin: 48px 0 0;
  width: 100%;
  aspect-ratio: 1200 / 900;
  max-height: 980px;
}
.psl-teams .i-flow-ribbon {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}
.psl-teams .i-flow-path-glow { filter: blur(14px); opacity: 0.55; }
.psl-teams .i-flow-path { opacity: 0.95; }
.psl-teams .i-flow-station {
  position: absolute;
  display: flex; align-items: center;
  gap: 22px;
  width: calc(50% - 40px);
  top: calc(var(--row-y) * 1%);
  transform: translateY(-50%);
}
.psl-teams .i-flow-station[style*="--row:0"],
.psl-teams .i-flow-station[style*="--row: 0"] { --row-y: 11; }
.psl-teams .i-flow-station[style*="--row:1"],
.psl-teams .i-flow-station[style*="--row: 1"] { --row-y: 29; }
.psl-teams .i-flow-station[style*="--row:2"],
.psl-teams .i-flow-station[style*="--row: 2"] { --row-y: 48; }
.psl-teams .i-flow-station[style*="--row:3"],
.psl-teams .i-flow-station[style*="--row: 3"] { --row-y: 67; }
.psl-teams .i-flow-station[style*="--row:4"],
.psl-teams .i-flow-station[style*="--row: 4"] { --row-y: 86; }
.psl-teams .i-flow-left { left: 0; flex-direction: row; text-align: left; }
.psl-teams .i-flow-right { right: 0; flex-direction: row-reverse; text-align: right; }
.psl-teams .i-flow-node {
  position: relative; flex: 0 0 auto;
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; border: 2px solid #4644B9;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(70,68,185,0.12), 0 8px 22px rgba(13, 0, 66, 0.10);
  z-index: 2;
}
.psl-teams .i-flow-node::before {
  content: ""; position: absolute; inset: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #4644B9, #19E6C4); opacity: 0.10;
}
.psl-teams .i-flow-node-inner {
  position: relative; font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em; color: #0D0042;
  font-variant-numeric: tabular-nums;
}
.psl-teams .i-flow-card {
  flex: 1 1 auto;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 8px 28px rgba(13, 0, 66, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.psl-teams .i-flow-station:hover .i-flow-card {
  transform: translateY(-2px);
  border-color: rgba(70,68,185,0.35);
  box-shadow: 0 12px 36px rgba(13, 0, 66, 0.12);
}
.psl-teams .i-flow-stage {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #4644B9; margin-bottom: 6px;
}
.psl-teams .i-flow-h {
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
  color: #0D0042; line-height: 1.3; margin: 0 0 6px;
}
.psl-teams .i-flow-d {
  font-size: 14.5px; line-height: 1.6; color: #6B7280; margin: 0;
}
@container pslteams (max-width: 860px) {
  .psl-teams .i-flow {
    aspect-ratio: auto; height: auto; max-height: none;
    display: flex; flex-direction: column; gap: 18px; padding-left: 32px;
  }
  .psl-teams .i-flow-ribbon { display: none; }
  .psl-teams .i-flow-station {
    position: relative; top: auto; transform: none;
    width: 100%; left: auto; right: auto;
  }
}
/* Unnamed mirror — same flow collapse regardless of container name */
@container (max-width: 860px) {
  .psl-teams .i-flow {
    aspect-ratio: auto !important; height: auto !important; max-height: none !important;
    display: flex !important; flex-direction: column !important; gap: 18px !important; padding-left: 32px !important;
    min-height: 0 !important;
  }
  .psl-teams .i-flow-ribbon { display: none !important; }
  .psl-teams .i-flow-station {
    position: relative !important; top: auto !important; transform: none !important;
    width: 100% !important; left: auto !important; right: auto !important;
    flex-direction: row !important; text-align: left !important;
    flex-direction: row; text-align: left;
  }
}


/* ---------- Report section wrapper + ensure flow ribbon renders ---------- */
.psl-teams .t-report { background: #fff; padding: 96px 0; }
.psl-teams .t-report .i-flow {
  position: relative;
  margin: 48px 0 0;
  width: 100%;
  aspect-ratio: 1200 / 1000;
  max-height: 980px;
  min-height: 700px;
}
.psl-teams .t-report .i-flow-ribbon {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}


/* ---------- HOW PSL SUPPORTS TEAMS — color-filled cards, gradient badges, spine ---------- */
.psl-teams .t-support-grid { position: relative; padding-top: 56px; }
.psl-teams .t-support-spine {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease-out 0.2s;
}
.psl-teams .t-support .is-in .t-support-spine,
.psl-teams .t-support.is-in .t-support-spine { opacity: 1; }
.psl-teams .t-support-spine-path {
  stroke-dasharray: 1040;
  stroke-dashoffset: 1040;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.2,0.7,0.2,1) 0.3s;
}
.psl-teams .t-support.is-in .t-support-spine-path { stroke-dashoffset: 0; }
.psl-teams .t-support-spine-dot {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.5,1.6,0.4,1);
}
.psl-teams .t-support.is-in .t-support-spine-dot { opacity: 1; transform: scale(1); }
.psl-teams .t-support.is-in .t-support-spine-dot:nth-of-type(1) { transition-delay: 1.0s; }
.psl-teams .t-support.is-in .t-support-spine-dot:nth-of-type(2) { transition-delay: 1.25s; }
.psl-teams .t-support.is-in .t-support-spine-dot:nth-of-type(3) { transition-delay: 1.5s; }

/* Themed cards — blue / teal / violet */
.psl-teams .t-domain {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.86);
  border: 0;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1),
              opacity 0.6s ease-out,
              box-shadow 0.4s ease,
              filter 0.4s ease;
}
.psl-teams .t-domain-blue {
  /* Performance Identity — deep navy */
  background: #0D0042;
  box-shadow: 0 18px 50px -22px rgba(13,0,66,0.55);
}
.psl-teams .t-domain-teal {
  /* Execution Architecture — primary brand blue */
  background: #4644B9;
  box-shadow: 0 18px 50px -22px rgba(70,68,185,0.55);
}
.psl-teams .t-domain-violet {
  /* Sustainable Capacity — premium emerald */
  background: #064E3B;
  box-shadow: 0 18px 50px -22px rgba(6,78,59,0.55);
}
.psl-teams .t-domain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--gleam-x, 50%) var(--gleam-y, 0%),
    rgba(255,255,255,0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.psl-teams .t-domain:hover::after { opacity: 1; }

.psl-teams .t-domain > * { position: relative; z-index: 2; }

/* Active card highlight + dim siblings on hover */
.psl-teams .t-support-grid:hover .t-domain:not(:hover) {
  filter: saturate(0.45) brightness(0.85);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0) scale(0.985);
}
.psl-teams .t-support-grid .t-domain:hover {
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0) scale(1.012);
  box-shadow: 0 30px 70px -22px rgba(13,0,66,0.45);
}
.psl-teams .t-domain:hover { border-color: transparent; }

/* Number badge — circular with brand gradient per theme */
.psl-teams .t-domain-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.1);
  z-index: 3;
}
.psl-teams .t-domain-badge::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 140deg,
    rgba(255,255,255,0.95) 0deg,
    rgba(255,255,255,0.35) 90deg,
    rgba(255,255,255,0.95) 180deg,
    rgba(255,255,255,0.35) 270deg,
    rgba(255,255,255,0.95) 360deg);
  z-index: -1;
  filter: blur(0.5px);
  opacity: 0.7;
}
.psl-teams .t-domain-blue .t-domain-badge::before {
  background: conic-gradient(from 140deg, rgba(70,68,185,0.0), rgba(70,68,185,0.95), rgba(70,68,185,0.0));
}
.psl-teams .t-domain-teal .t-domain-badge::before {
  background: conic-gradient(from 140deg, rgba(25,230,196,0.0), rgba(25,230,196,0.95), rgba(25,230,196,0.0));
}
.psl-teams .t-domain-violet .t-domain-badge::before {
  background: conic-gradient(from 140deg, rgba(52,211,153,0.0), rgba(167,243,208,0.95), rgba(52,211,153,0.0));
}
.psl-teams .t-domain-badge-num {
  font-family: "Mona Sans Custom", "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

/* Re-skin internal text for dark cards */
.psl-teams .t-domain-num {
  color: rgba(255,255,255,0.6);
}
.psl-teams .t-domain-descriptor {
  color: rgba(255,255,255,0.92);
  border-bottom-color: rgba(255,255,255,0.18);
}
.psl-teams .t-domain-h {
  font-size: 24px;
  color: #fff;
}
.psl-teams .t-domain-body {
  color: rgba(255,255,255,0.78);
}
.psl-teams .t-domain-fail {
  border-top-color: rgba(255,255,255,0.16);
}
.psl-teams .t-domain-fail-label {
  color: rgba(255,255,255,0.55);
}
.psl-teams .t-domain-fail-body {
  color: rgba(255,255,255,0.7);
}

@media (prefers-reduced-motion: reduce) {
  .psl-teams .t-support-spine-path { transition: none; stroke-dashoffset: 0; }
  .psl-teams .t-support-spine-dot { transition: none; opacity: 1; transform: none; }
}


/* Domain descriptor gradient text matching each ring (title stays white) */
.psl-teams .t-domain .t-domain-descriptor {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.psl-teams .t-domain-blue .t-domain-descriptor {
  background-image: linear-gradient(135deg, #B197FF 0%, #8936FF 50%, #6C23E3 100%);
}
.psl-teams .t-domain-teal .t-domain-descriptor {
  background-image: linear-gradient(135deg, #7FB9FF 0%, #2DB7CC 55%, #00FBB0 100%);
}
.psl-teams .t-domain-violet .t-domain-descriptor {
  background-image: linear-gradient(135deg, #A8E6C1 0%, #34D399 45%, #059669 100%);
}


/* ---------- DOMAIN CARD — bigger hover pop + custom cursor ---------- */
.psl-teams .t-domain {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34'><circle cx='17' cy='17' r='11' fill='rgba(255,255,255,0.78)' stroke='rgba(13,0,66,0.85)' stroke-width='2.5'/></svg>") 17 17, pointer;
  will-change: transform, box-shadow;
}
.psl-teams .t-support-grid .t-domain {
  transition:
    transform 0.18s cubic-bezier(0.2,0.7,0.2,1),
    opacity 0.6s ease-out,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}
.psl-teams .t-support-grid .t-domain:hover {
  transition-delay: 0s;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-10px) translateZ(0) scale(1.04);
  box-shadow: 0 40px 90px -22px rgba(13,0,66,0.6),
              0 8px 24px -10px rgba(13,0,66,0.35);
}
.psl-teams .t-support-grid:hover .t-domain:not(:hover) {
  transition-delay: 0s;
  filter: saturate(0.35) brightness(0.78);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0) scale(0.965);
}


/* ---------- WHAT YOU RECEIVE — staggered reveal per station ---------- */
.psl-teams .t-report .i-flow-station {
  opacity: 0;
  transform: translateY(28px) translateZ(0);
  transition:
    opacity 0.65s cubic-bezier(0.2,0.7,0.2,1),
    transform 0.65s cubic-bezier(0.2,0.7,0.2,1);
}
.psl-teams .t-report .i-flow-left { transform: translate(-28px, 14px); }
.psl-teams .t-report .i-flow-right { transform: translate(28px, 14px); }
.psl-teams .t-report.is-in .i-flow-station {
  opacity: 1;
  transform: translate(0, 0);
}
.psl-teams .t-report.is-in .i-flow-station:nth-of-type(1) { transition-delay: 0.30s; }
.psl-teams .t-report.is-in .i-flow-station:nth-of-type(2) { transition-delay: 0.55s; }
.psl-teams .t-report.is-in .i-flow-station:nth-of-type(3) { transition-delay: 0.80s; }
.psl-teams .t-report.is-in .i-flow-station:nth-of-type(4) { transition-delay: 1.05s; }
.psl-teams .t-report.is-in .i-flow-station:nth-of-type(5) { transition-delay: 1.30s; }

/* Ribbon draws in first */
.psl-teams .t-report .i-flow-path,
.psl-teams .t-report .i-flow-path-glow {
  stroke-dasharray: 4200;
  stroke-dashoffset: 4200;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.2,0.7,0.2,1) 0.1s;
}
.psl-teams .t-report.is-in .i-flow-path,
.psl-teams .t-report.is-in .i-flow-path-glow {
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .psl-teams .t-report .i-flow-station,
  .psl-teams .t-report.is-in .i-flow-station {
    opacity: 1; transform: none; transition: none;
  }
  .psl-teams .t-report .i-flow-path,
  .psl-teams .t-report .i-flow-path-glow {
    stroke-dasharray: none; stroke-dashoffset: 0; transition: none;
  }
}


/* ---------- What You Receive — staggered reveal in stage order ---------- */
.psl-teams .t-report .i-flow-station {
  opacity: 0;
  transform: translateY(-50%) translateX(var(--reveal-x, 0)) scale(0.94);
  transition:
    opacity 0.7s cubic-bezier(0.2,0.7,0.2,1),
    transform 0.7s cubic-bezier(0.2,0.7,0.2,1);
}
.psl-teams .t-report .i-flow-left { --reveal-x: -28px; }
.psl-teams .t-report .i-flow-right { --reveal-x: 28px; }
.psl-teams .t-report.is-in .i-flow-station {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}
.psl-teams .t-report.is-in .i-flow-station[style*="--row:0"],
.psl-teams .t-report.is-in .i-flow-station[style*="--row: 0"] { transition-delay: 0.20s; }
.psl-teams .t-report.is-in .i-flow-station[style*="--row:1"],
.psl-teams .t-report.is-in .i-flow-station[style*="--row: 1"] { transition-delay: 0.50s; }
.psl-teams .t-report.is-in .i-flow-station[style*="--row:2"],
.psl-teams .t-report.is-in .i-flow-station[style*="--row: 2"] { transition-delay: 0.80s; }
.psl-teams .t-report.is-in .i-flow-station[style*="--row:3"],
.psl-teams .t-report.is-in .i-flow-station[style*="--row: 3"] { transition-delay: 1.10s; }
.psl-teams .t-report.is-in .i-flow-station[style*="--row:4"],
.psl-teams .t-report.is-in .i-flow-station[style*="--row: 4"] { transition-delay: 1.40s; }

/* Ribbon: animate as it draws */
.psl-teams .t-report .i-flow-path {
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.2,0.7,0.2,1) 0.1s;
}
.psl-teams .t-report.is-in .i-flow-path { stroke-dashoffset: 0; }
.psl-teams .t-report .i-flow-path-glow {
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}
.psl-teams .t-report.is-in .i-flow-path-glow { opacity: 0.55; }

@media (prefers-reduced-motion: reduce) {
  .psl-teams .t-report .i-flow-station,
  .psl-teams .t-report .i-flow-path,
  .psl-teams .t-report .i-flow-path-glow { transition: none; }
}


/* ---------- What You Receive — premium card redesign ---------- */
.psl-teams .t-report .i-flow-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 28px 30px 26px;
  background: linear-gradient(155deg, #fff 0%, #F5F7FF 100%);
  border: 1px solid #E5E7EB;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 24px 60px -28px rgba(13,0,66,0.18),
    0 6px 18px -10px rgba(13,0,66,0.08);
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1),
              box-shadow 0.5s ease,
              border-color 0.5s ease,
              filter 0.4s ease;
}
.psl-teams .t-report .i-flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--glow-x, 50%) var(--glow-y, 0%),
    rgba(70,68,185,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.psl-teams .t-report .i-flow-station:hover .i-flow-card::before { opacity: 1; }

/* Watermark digit inside card */
.psl-teams .t-report .i-flow-watermark {
  position: absolute;
  font-family: "Mona Sans Custom", "Mona Sans", sans-serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(70,68,185,0.10);
  pointer-events: none;
  user-select: none;
  font-variant-numeric: tabular-nums;
}
.psl-teams .t-report .i-flow-left .i-flow-watermark { right: 18px; top: 2px; }
.psl-teams .t-report .i-flow-right .i-flow-watermark { left: 18px; top: 2px; }

/* Meta row: icon + stage + chip */
.psl-teams .t-report .i-flow-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.psl-teams .t-report .i-flow-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: #4644B9;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(70,68,185,0.10), rgba(25,230,196,0.10));
  border: 1px solid rgba(70,68,185,0.18);
}
.psl-teams .t-report .i-flow-icon svg { width: 18px; height: 18px; }
.psl-teams .t-report .i-flow-stage {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4644B9;
  margin: 0;
}
.psl-teams .t-report .i-flow-chip {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D0042;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13,0,66,0.06);
  border: 1px solid rgba(13,0,66,0.08);
}

/* Title + body */
.psl-teams .t-report .i-flow-h {
  position: relative;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: #0D0042;
}
.psl-teams .t-report .i-flow-d {
  position: relative;
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4B5563;
}

/* Proof point */
.psl-teams .t-report .i-flow-proof {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 14px;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #4644B9;
  border-top: 1px dashed rgba(13,0,66,0.10);
  width: 100%;
}
.psl-teams .t-report .i-flow-proof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4644B9, #19E6C4);
  box-shadow: 0 0 0 3px rgba(70,68,185,0.12);
}

/* Hover — pop + glow, dim siblings */
.psl-teams .t-report .i-flow:hover .i-flow-station:not(:hover) .i-flow-card {
  filter: saturate(0.6) brightness(0.97);
  transform: scale(0.985);
}
.psl-teams .t-report .i-flow-station:hover .i-flow-card {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(70,68,185,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 36px 80px -28px rgba(70,68,185,0.32),
    0 10px 28px -10px rgba(13,0,66,0.18);
}

/* Sculpted 3D node — conic ring + glow */
.psl-teams .t-report .i-flow-node {
  position: relative;
  flex: 0 0 auto;
  width: 72px; height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.95), rgba(255,255,255,0.7) 40%, rgba(245,247,255,0.95) 75%),
    #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 -2px 6px rgba(13,0,66,0.06) inset,
    0 14px 30px -14px rgba(70,68,185,0.45),
    0 4px 10px rgba(13,0,66,0.10);
  z-index: 2;
}
.psl-teams .t-report .i-flow-node::before {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, #4644B9, #6967D6, #19E6C4, #4644B9);
  z-index: -1;
  filter: blur(0.4px);
  opacity: 0.92;
}
.psl-teams .t-report .i-flow-node-ring {
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(70,68,185,0.15);
  pointer-events: none;
}
.psl-teams .t-report .i-flow-node-inner {
  position: relative;
  font-family: "Mona Sans Custom", "Mona Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #4644B9, #19E6C4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.psl-teams .t-report .i-flow-station:hover .i-flow-node {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 18px 36px -14px rgba(70,68,185,0.7),
    0 6px 14px rgba(13,0,66,0.14);
}


/* ---------- Number/node refinement: minimal dot on ribbon + pill numeral in meta ---------- */
.psl-teams .t-report .i-flow-watermark { display: none; }

/* Pill numeral inline with STAGE label */
.psl-teams .t-report .i-flow-stage {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,0,66,0.65);
}
.psl-teams .t-report .i-flow-stage-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px;
  padding: 3px 8px;
  border-radius: 999px;
  font-family: "Mona Sans Custom", "Mona Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #4644B9, #6967D6);
  box-shadow: 0 4px 10px -4px rgba(70,68,185,0.5);
  font-variant-numeric: tabular-nums;
}

/* Minimal dot node on the ribbon */
.psl-teams .t-report .i-flow-node {
  position: relative;
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #4644B9;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.95), 0 0 0 7px rgba(70,68,185,0.18);
  z-index: 2;
}
.psl-teams .t-report .i-flow-node::before { display: none; }
.psl-teams .t-report .i-flow-node-ring,
.psl-teams .t-report .i-flow-node-inner { display: none; }
.psl-teams .t-report .i-flow-station:hover .i-flow-node {
  border-color: #19E6C4;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.95), 0 0 0 9px rgba(25,230,196,0.30);
}


/* =====================================================================
   TEAMS PAGE — Executive redesign additions
   Hero trust strip · Engagement Models · Process · Contact · Mobile
   ===================================================================== */

/* ---- Hero — client logo trust strip ---- */
.psl-teams .t-hero-trust {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 18px;
  max-width: 920px;
}
.psl-teams .t-hero-trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.psl-teams .t-hero-trust-logos {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.psl-teams .t-hero-trust-logos img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.3s ease;
}
.psl-teams .t-hero-trust-logos img:hover { opacity: 1; }

/* ---- Engagement Models section ---- */
.psl-teams .t-engagements {
  background: #FAFBFE;
  padding: 96px 0 88px;
}
.psl-teams .t-engagements-head { max-width: 860px; margin-bottom: 56px; }
.psl-teams .t-engagements-head .m-h2 { margin-top: 12px; }
.psl-teams .t-engagements-head .m-section-intro { margin-top: 20px; }

.psl-teams .t-engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.psl-teams .t-engagement {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 30px 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 12px 32px -18px rgba(13,0,66,0.10);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1),
              box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.psl-teams .t-engagement::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-from, #4644B9), var(--theme-to, #19E6C4));
}
.psl-teams .t-engagement-blue { --theme-from: #7FB9FF; --theme-to: #4644B9; }
.psl-teams .t-engagement-violet { --theme-from: #B197FF; --theme-to: #6C23E3; }
.psl-teams .t-engagement-emerald { --theme-from: #34D399; --theme-to: #047857; }

.psl-teams .t-engagement:hover {
  transform: translateY(-5px);
  border-color: rgba(70,68,185,0.32);
  box-shadow: 0 30px 56px -22px rgba(13,0,66,0.18);
}

.psl-teams .t-engagement-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.psl-teams .t-engagement-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--theme-to, #4644B9);
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--theme-from, #7FB9FF) 14%, transparent),
    color-mix(in srgb, var(--theme-to, #4644B9) 14%, transparent));
}
.psl-teams .t-engagement-length {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(13,0,66,0.5);
}
.psl-teams .t-engagement-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--m-dark-navy);
  margin: 0 0 14px;
  text-wrap: balance;
}
.psl-teams .t-engagement-lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--m-mid-grey);
  margin: 0 0 20px;
}
.psl-teams .t-engagement-fit {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-left: 2px solid var(--theme-from, #7FB9FF);
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--theme-from, #7FB9FF) 5%, transparent),
    color-mix(in srgb, var(--theme-to, #4644B9) 5%, transparent));
  border-radius: 0 8px 8px 0;
}
.psl-teams .t-engagement-fit-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--theme-to, #4644B9);
  margin-bottom: 6px;
}
.psl-teams .t-engagement-fit p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  font-style: italic;
  color: rgba(13,0,66,0.82);
}
.psl-teams .t-engagement-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.psl-teams .t-engagement-deliverables li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--m-dark-grey);
}
.psl-teams .t-engagement-deliverables li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--theme-to, #4644B9);
}
.psl-teams .t-engagement-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-to, #4644B9);
  text-decoration: none;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--theme-to, #4644B9) 24%, transparent);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.psl-teams .t-engagement-cta:hover {
  background: var(--theme-to, #4644B9);
  color: #fff;
  transform: translateY(-1px);
}

.psl-teams .t-engagements-foot {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: var(--m-mid-grey);
  font-style: italic;
}

/* ---- Process section ---- */
.psl-teams .t-process {
  background: #fff;
  padding: 88px 0 96px;
}
.psl-teams .t-process .m-h2 { max-width: 760px; margin-bottom: 56px; }
.psl-teams .t-process-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.psl-teams .t-process-step {
  position: relative;
  padding: 28px 24px 22px;
  border-radius: 14px;
  background: #FAFBFE;
  border: 1px solid #E5E7EB;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.psl-teams .t-process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(70,68,185,0.28);
  box-shadow: 0 18px 36px -18px rgba(13,0,66,0.12);
}
.psl-teams .t-process-num {
  display: inline-block;
  font-family: "Mona Sans Custom", "Mona Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #4644B9, #19E6C4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.psl-teams .t-process-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--m-dark-navy);
}
.psl-teams .t-process-body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--m-mid-grey);
}
.psl-teams .t-process-arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  font-size: 18px;
  color: rgba(70,68,185,0.35);
  font-weight: 300;
  pointer-events: none;
  z-index: 1;
}

/* ---- Contact section ---- */
.psl-teams .t-contact {
  position: relative;
  background: linear-gradient(155deg, #0D0042 0%, #1A0E5C 60%, #2D1A6E 100%);
  color: #fff;
  padding: 96px 0 96px;
  overflow: hidden;
}
.psl-teams .t-contact .m-cta-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.psl-teams .t-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.psl-teams .t-contact-narrative .m-overline {
  color: #1F4DD8;
}
.psl-teams .t-contact-narrative .m-cta-h {
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 16px 0 32px;
  text-wrap: balance;
}
.psl-teams .t-contact-quote {
  margin: 0 0 32px;
  padding: 18px 22px;
  border-left: 2px solid rgba(25,230,196,0.5);
  background: rgba(255,255,255,0.04);
  border-radius: 0 10px 10px 0;
}
.psl-teams .t-contact-quote p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  color: rgba(255,255,255,0.88);
}
.psl-teams .t-contact-quote span {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.psl-teams .t-contact-fallback {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.psl-teams .t-contact-fallback-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.psl-teams .t-contact-fallback-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #19E6C4;
  text-decoration: none;
}
.psl-teams .t-contact-fallback-link:hover { color: #fff; }

/* Form */
.psl-teams .t-contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 36px 80px -32px rgba(0,0,0,0.5);
}
.psl-teams .t-contact-field {
  display: flex; flex-direction: column; gap: 6px;
}
.psl-teams .t-contact-field > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}
.psl-teams .t-contact-field > span em {
  font-style: normal;
  color: rgba(255,255,255,0.4);
  margin-left: 6px;
}
.psl-teams .t-contact-field input,
.psl-teams .t-contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.psl-teams .t-contact-field input::placeholder,
.psl-teams .t-contact-field textarea::placeholder {
  color: rgba(255,255,255,0.32);
}
.psl-teams .t-contact-field input:focus,
.psl-teams .t-contact-field textarea:focus {
  outline: none;
  border-color: rgba(25,230,196,0.5);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 4px rgba(25,230,196,0.12);
}
.psl-teams .t-select-wrap { position: relative; display: block; }
.psl-teams .t-contact-select {
  width: 100%;
  padding: 12px 38px 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.psl-teams .t-contact-select:focus {
  outline: none;
  border-color: rgba(25,230,196,0.5);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 4px rgba(25,230,196,0.12);
}
.psl-teams .t-contact-select:invalid { color: rgba(255,255,255,0.32); }
.psl-teams .t-contact-select option { color: #0D0042; background: #fff; }
.psl-teams .t-select-chevron {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.5); pointer-events: none;
}
.psl-teams .t-contact-submit {
  margin-top: 6px;
  align-self: flex-start;
}
.psl-teams .t-contact-fineprint {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* =====================================================================
   MOBILE pass — all sections collapse cleanly
   ===================================================================== */
@container pslteams (max-width: 1023px) {
  .psl-teams .t-hero-h { font-size: 40px; line-height: 1.08; }
  .psl-teams .t-hero-sub { font-size: 18px; }
  .psl-teams .t-hero-trust { margin-top: 40px; padding-top: 24px; }
  .psl-teams .t-hero-trust-logos { gap: 28px; }
  .psl-teams .t-hero-trust-logos img { height: 22px; }
  .psl-teams .t-hero-cta-row { flex-wrap: wrap; gap: 12px; }
  .psl-teams .m-rail { display: none; }
  .psl-teams .t-engagements-grid { grid-template-columns: 1fr; gap: 18px; }
  .psl-teams .t-changes-grid { grid-template-columns: 1fr; gap: 18px; }
  .psl-teams .t-process-grid { grid-template-columns: 1fr 1fr; }
  .psl-teams .t-process-arrow { display: none; }
  .psl-teams .t-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .psl-teams .t-contact-narrative .m-cta-h { font-size: 30px; }
  .psl-teams .t-support-spine { display: none; }
  /* domain card 3D tilt disabled on touch */
  .psl-teams .t-domain { transform: none !important; }
}
@container pslteams (max-width: 640px) {
  .psl-teams .t-hero { padding: 100px 0 64px; }
  .psl-teams .t-hero-h { font-size: 32px; }
  .psl-teams .t-engagements { padding: 64px 0; }
  .psl-teams .t-engagement { padding: 26px 22px 22px; }
  .psl-teams .t-engagement-title { font-size: 20px; }
  .psl-teams .t-process { padding: 64px 0 72px; }
  .psl-teams .t-process-grid { grid-template-columns: 1fr; }
  .psl-teams .t-contact { padding: 72px 0; }
  .psl-teams .t-contact-narrative .m-cta-h { font-size: 26px; }
  .psl-teams .t-contact-form { padding: 24px 20px; }
}


/* =====================================================================
   EXECUTIVE REFRESH — CONTAINER QUERIES + SECTION POLISH
   Container query wrapper lets desktop + mobile artboards both render
   in the same iframe, each responding to its own width.
   ===================================================================== */
.psl-method { container-type: inline-size; container-name: pslmethod; }
.psl-insights { container-type: inline-size; container-name: pslinsights; }

/* --- Mobile responsive via container queries (override viewport media) --- */
@container pslteams (max-width: 1023px) {
  .psl-teams .t-rail { display: none; }
  .psl-teams .t-hero { padding: 120px 0 80px; }
  .psl-teams .t-hero-h { font-size: 38px !important; line-height: 1.08; }
  .psl-teams .t-hero-sub { font-size: 17px; }
  .psl-teams .t-hero-body { font-size: 15px; margin-bottom: 32px; }
  .psl-teams .t-hero-cta-row { flex-wrap: wrap; gap: 12px; }
  .psl-teams .t-hero-trust { margin-top: 32px; padding-top: 20px; }
  .psl-teams .t-hero-trust-logos { gap: 22px; }
  .psl-teams .t-hero-trust-logos img { height: 20px; }
  .psl-teams .t-engagements-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .psl-teams .t-changes-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .psl-teams .t-recog-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .psl-teams .t-recog-image { aspect-ratio: 4/3; max-height: 340px; }
  .psl-teams .t-recog-grid .t-recog-list { padding-right: 0; }
  .psl-teams .t-support-grid { grid-template-columns: 1fr !important; gap: 16px; padding-top: 0; }
  .psl-teams .t-support-spine { display: none; }
  .psl-teams .t-process-grid { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .psl-teams .t-process-arrow { display: none; }
  .psl-teams .t-contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .psl-teams .t-contact-narrative .m-cta-h { font-size: 28px; }
  .psl-teams.psl-method .m-section { padding-top: 40px !important; padding-bottom: 40px !important; }
  .psl-teams .m-h2 { font-size: 28px; line-height: 1.18; }
  .psl-teams .m-section-intro { font-size: 15px; }
  .psl-teams .t-domain { transform: none !important; }
  .psl-teams .m-container { padding-left: 20px; padding-right: 20px; }
}
@container pslteams (max-width: 640px) {
  .psl-teams .t-hero { padding: 88px 0 56px; }
  .psl-teams .t-hero-h { font-size: 30px !important; }
  .psl-teams .t-hero-sub { font-size: 16px; }
  .psl-teams .t-hero-trust-logos { gap: 18px; }
  .psl-teams .t-hero-trust-logos img { height: 16px; }
  .psl-teams .t-engagement { padding: 24px 20px 22px; }
  .psl-teams .t-engagement-title { font-size: 19px; }
  .psl-teams .t-process-grid { grid-template-columns: 1fr !important; }
  .psl-teams .t-process-step { padding: 22px 20px; }
  .psl-teams .t-contact { padding: 56px 0; }
  .psl-teams .t-contact-form { padding: 22px 18px; }
  .psl-teams .t-marquee-track { gap: 40px; }
  .psl-teams .t-recog-text { font-size: 15px; }
}

/* =====================================================================
   PROCESS SECTION — premium refresh
   Matches the engagement card visual language.
   ===================================================================== */
.psl-teams .t-process {
  background: linear-gradient(180deg, #FAFBFE 0%, #FFFFFF 100%);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.psl-teams .t-process .m-h2 { max-width: 760px; }
.psl-teams .t-process .m-section-intro { max-width: 720px; margin-top: 16px; }
.psl-teams .t-process-grid {
  list-style: none;
  padding: 0; margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.psl-teams .t-process-grid::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(70,68,185,0) 0%,
    rgba(70,68,185,0.45) 12%,
    rgba(70,68,185,0.45) 88%,
    rgba(70,68,185,0) 100%);
  z-index: 0;
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 0.6s ease 0.2s, transform 1.2s cubic-bezier(0.2,0.7,0.2,1) 0.2s;
}
.psl-teams .t-process.is-in .t-process-grid::before {
  opacity: 1;
  transform: scaleX(1);
}
.psl-teams .t-process-step {
  position: relative;
  z-index: 1;
  padding: 28px 24px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  display: flex; flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out,
              transform 0.5s cubic-bezier(0.2,0.7,0.2,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  box-shadow: 0 12px 28px -16px rgba(13,0,66,0.08);
}
.psl-teams .t-process.is-in .t-process-step { opacity: 1; transform: translateY(0); }
.psl-teams .t-process.is-in .t-process-step:nth-of-type(1) { transition-delay: 0.2s; }
.psl-teams .t-process.is-in .t-process-step:nth-of-type(2) { transition-delay: 0.4s; }
.psl-teams .t-process.is-in .t-process-step:nth-of-type(3) { transition-delay: 0.6s; }
.psl-teams .t-process.is-in .t-process-step:nth-of-type(4) { transition-delay: 0.8s; }
.psl-teams .t-process-step:hover {
  border-color: rgba(70,68,185,0.32);
  box-shadow: 0 24px 48px -22px rgba(13,0,66,0.16);
  transform: translateY(-4px);
}

.psl-teams .t-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4644B9, #19E6C4);
  color: #fff;
  font-family: "Mona Sans Custom", "Mona Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
  box-shadow: 0 6px 14px -6px rgba(70,68,185,0.55);
}
.psl-teams .t-process-step:nth-of-type(2) .t-process-num { background: linear-gradient(135deg, #6967D6, #19E6C4); }
.psl-teams .t-process-step:nth-of-type(3) .t-process-num { background: linear-gradient(135deg, #4644B9, #6C23E3); }
.psl-teams .t-process-step:nth-of-type(4) .t-process-num { background: linear-gradient(135deg, #19E6C4, #047857); }

.psl-teams .t-process-title {
  margin: 6px 0 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0D0042;
}
.psl-teams .t-process-body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #6B7280;
}
.psl-teams .t-process-arrow { display: none; }

/* =====================================================================
   RECOGNITION SECTION — Domain tag chips on signals
   Mirrors the Individuals page treatment.
   ===================================================================== */
.psl-teams .t-recog-num {
  display: inline-flex; align-items: center; gap: 10px;
}
.psl-teams .t-recog-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.psl-teams .t-recog-tag-violet {
  background: rgba(137,54,255,0.10);
  color: #8936FF;
  border: 1px solid rgba(137,54,255,0.22);
}
.psl-teams .t-recog-tag-blue {
  background: rgba(70,68,185,0.10);
  color: #4644B9;
  border: 1px solid rgba(70,68,185,0.22);
}
.psl-teams .t-recog-tag-emerald {
  background: rgba(5,150,105,0.10);
  color: #059669;
  border: 1px solid rgba(5,150,105,0.22);
}

/* =====================================================================
   HOW PSL SUPPORTS TEAMS — visual polish
   Tighten the section's spacing + intro alignment.
   ===================================================================== */
.psl-teams .t-support { padding: 88px 0 96px; background: #FAFBFE; }
.psl-teams .t-support .m-h2 { max-width: 820px; }
.psl-teams .t-support .m-section-intro { max-width: 760px; margin-top: 16px; }
.psl-teams .t-support-grid { padding-top: 48px; }


/* =====================================================================
   JOURNEY GRID — Override method.css viewport media queries
   so the grid responds to artboard width (container) not iframe width.
   ===================================================================== */
.psl-teams .m-journey-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
}
.psl-teams .m-journey-track {
  display: block !important;
}
@container pslteams (max-width: 1023px) {
  .psl-teams .m-journey-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .psl-teams .m-journey-track { display: none !important; }
}
@container pslteams (max-width: 640px) {
  .psl-teams .m-journey-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}


/* =====================================================================
   CLIENT TRUST LOGOS — preserve brand shapes & internal detail
   Dropping the brightness(0)/invert() filter so HSBC, Vodafone, and
   Santander render with their negative-space detail intact. Per-logo
   heights handle the visual-weight balance instead.
   ===================================================================== */
.psl-teams .t-hero-trust-logos {
  align-items: center;
  gap: 36px;
}
.psl-teams .t-hero-trust-logos img {
  filter: none;
  opacity: 0.92;
  transition: opacity 0.3s ease, filter 0.3s ease;
  width: auto;
  /* Soft outer glow so logos sit cleanly on the navy hero */
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.04));
}
.psl-teams .t-hero-trust-logos img:hover { opacity: 1; }

/* Per-logo sizing — calibrated so each reads at a comparable visual
   weight (logos with prominent icons can be a touch smaller; wordmarks
   need to run a little taller). */
.psl-teams .t-logo-hsbc      { height: 26px; }
.psl-teams .t-logo-lloyds    { height: 30px; }
.psl-teams .t-logo-vodafone  { height: 26px; }
.psl-teams .t-logo-santander { height: 42px; }
.psl-teams .t-logo-claranet  { height: 22px; }
.psl-teams .t-logo-callsign  { height: 22px; }

/* Bring black wordmark logos (Lloyds, HSBC text) to a paler treatment
   so they don't dominate against the dark hero. Light blend mode lifts
   blacks toward the navy without destroying internal shapes. */
.psl-teams .t-logo-hsbc,
.psl-teams .t-logo-lloyds {
  mix-blend-mode: normal;
  opacity: 0.85;
}

@container pslteams (max-width: 1023px) {
  .psl-teams .t-hero-trust-logos { gap: 24px; row-gap: 18px; flex-wrap: wrap; }
  .psl-teams .t-logo-hsbc      { height: 22px; }
  .psl-teams .t-logo-lloyds    { height: 24px; }
  .psl-teams .t-logo-vodafone  { height: 22px; }
  .psl-teams .t-logo-santander { height: 28px; }
  .psl-teams .t-logo-claranet  { height: 18px; }
  .psl-teams .t-logo-callsign  { height: 18px; }
}
@container pslteams (max-width: 640px) {
  .psl-teams .t-hero-trust-logos { gap: 18px; row-gap: 14px; }
  .psl-teams .t-logo-hsbc      { height: 18px; }
  .psl-teams .t-logo-lloyds    { height: 20px; }
  .psl-teams .t-logo-vodafone  { height: 18px; }
  .psl-teams .t-logo-santander { height: 24px; }
  .psl-teams .t-logo-claranet  { height: 16px; }
  .psl-teams .t-logo-callsign  { height: 16px; }
}


/* =====================================================================
   CLIENT LOGOS — monochrome but with internal detail preserved
   grayscale(1) keeps the lightness relationships (red squares stay
   distinct from white triangles), brightness lifts to read on navy,
   opacity softens. This fixes HSBC's 4-triangle hexagon and
   Vodafone's speech-mark cutout being lost to the destructive
   brightness(0)/invert(1) trick.
   ===================================================================== */
.psl-teams .t-hero-trust-logos img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.psl-teams .t-hero-trust-logos img:hover {
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* Logos with pure-black wordmarks (Lloyds horse + LLOYDS text) need to
   be lightened more aggressively or they end up too dark to read.
   The screen blend lifts the blacks toward navy without losing shape. */
.psl-teams .t-logo-lloyds {
  mix-blend-mode: normal;
}
.psl-teams .t-hero-trust-logos img.t-logo-hsbc {
  /* Render as a clean white wordmark on the dark hero — the black text was
     unreadable; this lifts it to match Claranet's lightness. */
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
  opacity: 0.85;
}


/* =====================================================================
   WHY NOW SECTION — Macro context (AI / digital transformation)
   ===================================================================== */
.psl-teams .t-whynow {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFE 100%);
  padding: 88px 0 96px;
  position: relative;
}
.psl-teams .t-whynow::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(70,68,185,0.12), transparent);
}

.psl-teams .t-whynow-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.psl-teams .t-whynow-narrative .m-h2 { margin-top: 12px; max-width: 100%; }
.psl-teams .t-whynow-narrative .m-section-intro {
  margin-top: 20px;
  max-width: 100%;
}
.psl-teams .t-whynow-body {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--m-mid-grey);
  max-width: 580px;
}

/* Diagram */
.psl-teams .t-whynow-diagram {
  position: relative;
  padding: 28px 28px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 18px 40px -22px rgba(13,0,66,0.10);
}
.psl-teams .t-whynow-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}
.psl-teams .t-whynow-strategy-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.2,0.7,0.2,1) 0.4s;
}
.psl-teams .t-whynow.is-in .t-whynow-strategy-path { stroke-dashoffset: 0; }

/* Macro stats below */
.psl-teams .t-whynow-stats {
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid #E5E7EB;
  padding-top: 40px;
}
.psl-teams .t-whynow-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.psl-teams .t-whynow-stat-num {
  font-family: "Mona Sans Custom", "Mona Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #4644B9 0%, #19E6C4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.psl-teams .t-whynow-stat-label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--m-mid-grey);
}

/* Hero — audience caption below supporting line */
.psl-teams .t-hero-audience {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  max-width: 540px;
}

@container pslteams (max-width: 1023px) {
  .psl-teams .t-whynow { padding: 64px 0 72px; }
  .psl-teams .t-whynow-grid { grid-template-columns: 1fr; gap: 40px; }
  .psl-teams .t-whynow-stats { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; margin-top: 48px; }
  .psl-teams .t-whynow-stat-num { font-size: 36px; }
}
@container pslteams (max-width: 640px) {
  .psl-teams .t-whynow { padding: 56px 0 64px; }
  .psl-teams .t-whynow-diagram { padding: 20px 18px 16px; }
}


/* =====================================================================
   LINEAGE BAND — Where the system comes from
   Compact 3-column proof band between Recognition and the Three Domains
   ===================================================================== */
.psl-teams .t-lineage {
  background: linear-gradient(180deg, #0D0042 0%, #1A0E5C 100%);
  color: #fff;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.psl-teams .t-lineage::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(60% 70% at 15% 30%, rgba(70,68,185,0.28), transparent 60%),
    radial-gradient(50% 60% at 90% 80%, rgba(25,230,196,0.18), transparent 60%);
  pointer-events: none;
}
.psl-teams .t-lineage .m-container { position: relative; z-index: 1; }

.psl-teams .t-lineage-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.psl-teams .t-lineage-head .m-overline {
  color: #1F4DD8;
}
.psl-teams .t-lineage-h {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: #fff;
  max-width: 720px;
  text-wrap: balance;
}

.psl-teams .t-lineage-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.psl-teams .t-lineage-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 12px;
  border-left: 1px solid rgba(255,255,255,0.10);
  padding-left: 20px;
}
.psl-teams .t-lineage-item:first-child { border-left: 0; padding-left: 0; }

.psl-teams .t-lineage-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #19E6C4;
}
.psl-teams .t-lineage-item-h {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
  color: #fff;
}
.psl-teams .t-lineage-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.psl-teams .t-lineage-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  color: #19E6C4;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(25,230,196,0.32);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.psl-teams .t-lineage-link:hover {
  background: rgba(25,230,196,0.12);
  border-color: rgba(25,230,196,0.6);
  color: #fff;
  transform: translateY(-1px);
}

@container pslteams (max-width: 1023px) {
  .psl-teams .t-lineage { padding: 56px 0 64px; }
  .psl-teams .t-lineage-head { grid-template-columns: 1fr; gap: 16px; align-items: start; margin-bottom: 32px; }
  .psl-teams .t-lineage-h { font-size: 22px; }
  .psl-teams .t-lineage-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 24px; }
  .psl-teams .t-lineage-item { border-left: 0; padding-left: 0; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .psl-teams .t-lineage-item:last-child { border-bottom: 0; padding-bottom: 0; }
}


/* =====================================================================
   LINEAGE — "See the full Method" tail link
   The .m-origins-* styles come from method.css (already loaded).
   ===================================================================== */
.psl-teams .m-origins .m-section-intro { max-width: 880px; }
.psl-teams .t-lineage-method-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(70,68,185,0.06);
  border: 1px solid rgba(70,68,185,0.18);
  color: var(--m-blue);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.psl-teams .t-lineage-method-link:hover {
  background: var(--m-blue);
  border-color: var(--m-blue);
  color: #fff;
  transform: translateY(-1px);
}


/* =====================================================================
   DOMAIN CARDS — Rings badge (replaces 01/02/03 numerals)
   Each card displays the PSL three-ring framework with its own ring
   highlighted in the theme color. Reinforces the rings narrative
   without overpowering the cards.
   ===================================================================== */
.psl-teams .t-domain-badge {
  background: transparent !important;
  border: 0;
}
.psl-teams .t-domain-badge::before,
.psl-teams .t-domain-badge-num { display: none !important; }
.psl-teams .t-domain-rings {
  width: 52px; height: 52px;
  display: block;
}
.psl-teams .t-domain-ring {
  stroke: rgba(255,255,255,0.22);
  transition: stroke 0.4s ease, stroke-width 0.4s ease;
}
.psl-teams .t-domain-ring.is-active {
  stroke-width: 2.5;
}
.psl-teams .t-domain-blue .t-domain-ring.is-active {
  stroke: #BDC4FF;
}
.psl-teams .t-domain-teal .t-domain-ring.is-active {
  stroke: #67F3DA;
}
.psl-teams .t-domain-violet .t-domain-ring.is-active {
  stroke: #A8E6C1;
}
/* Card hover lifts the inactive rings a notch */
.psl-teams .t-domain:hover .t-domain-ring {
  stroke: rgba(255,255,255,0.4);
}
.psl-teams .t-domain:hover .t-domain-ring.is-active {
  stroke-width: 3;
}

/* "RING 01" label — same scale as the previous DOMAIN 01 label */
.psl-teams .t-domain-num {
  font-family: "Mona Sans Custom", "Mona Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* =====================================================================
   DOMAIN CARDS — Compact rings header
   Ring graphic + RING label + descriptor live in one tight horizontal
   block at the top of the card. Removes vertical blank space.
   ===================================================================== */
.psl-teams .t-domain {
  display: flex;
  flex-direction: column;
  /* CSS-grid-like layout for the head, then headline + body */
}

/* Make the badge + RING label + descriptor render as a single header
   block. The descriptor (e.g. "Performance Identity") becomes the
   primary line, with RING 01 sitting as a small caption beneath. */
.psl-teams .t-domain-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  margin: 0;
  width: 44px;
  height: 44px;
  z-index: 3;
}
.psl-teams .t-domain-rings { width: 44px; height: 44px; }
.psl-teams .t-domain-num {
  position: absolute;
  top: 28px;
  left: 80px;
  margin: 0;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}
.psl-teams .t-domain-descriptor {
  position: absolute;
  top: 44px;
  left: 80px;
  right: 24px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

/* Push the rest of the card content down to clear the header */
.psl-teams .t-domain {
  padding-top: 92px !important;
  position: relative;
}
.psl-teams .t-domain-h {
  margin-top: 0;
}

/* Mobile: tighten further but keep the same horizontal logic */
@container pslteams (max-width: 640px) {
  .psl-teams .t-domain { padding-top: 84px !important; }
  .psl-teams .t-domain-badge { top: 20px; left: 22px; width: 40px; height: 40px; }
  .psl-teams .t-domain-rings { width: 40px; height: 40px; }
  .psl-teams .t-domain-num { top: 24px; left: 72px; }
  .psl-teams .t-domain-descriptor { top: 38px; left: 72px; right: 22px; font-size: 15px; }
}


/* =====================================================================
   MOBILE — unnamed @container mirrors for Teams page grids that need to
   collapse inside artboards (the .psl-teams root has multiple class names
   so named @container queries can't always resolve reliably).
   ===================================================================== */
@container (max-width: 1100px) {
  .psl-teams .t-rail { display: none !important; }
}
@container (max-width: 1023px) {
  .psl-teams .t-whynow { padding: 64px 0 72px; }
  .psl-teams .t-whynow-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .psl-teams .t-whynow-stats { grid-template-columns: 1fr !important; gap: 24px; padding-top: 32px; margin-top: 48px; }
  .psl-teams .t-whynow-stat-num { font-size: 36px; }
  .psl-teams .t-lineage { padding: 56px 0 64px; }
  .psl-teams .t-lineage-head { grid-template-columns: 1fr !important; gap: 16px; align-items: start; margin-bottom: 32px; }
  .psl-teams .t-lineage-h { font-size: 22px; }
  .psl-teams .t-lineage-grid { grid-template-columns: 1fr !important; gap: 20px; padding-top: 24px; }
  .psl-teams .t-process-grid { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .psl-teams .t-process-arrow { display: none !important; }
  .psl-teams .t-contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .psl-teams .t-engagements-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .psl-teams .t-hero-trust-logos { gap: 24px; row-gap: 18px; flex-wrap: wrap; }
}
@container (max-width: 640px) {
  .psl-teams .t-hero { padding: 88px 0 56px; }
  .psl-teams .t-hero-h { font-size: 30px !important; }
  .psl-teams .t-hero-sub { font-size: 16px !important; }
  .psl-teams .t-process-grid { grid-template-columns: 1fr !important; }
  .psl-teams .t-process-step { padding: 22px 20px; }
  .psl-teams .t-domain { padding-top: 84px !important; }
  .psl-teams .t-domain-badge { top: 20px; left: 22px; width: 40px; height: 40px; }
}


/* Journey grid — collapse to single column on mobile inside artboards */
@container (max-width: 1023px) {
  .psl-teams .m-journey-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .psl-teams .m-journey-track { display: none !important; }
  .psl-teams .m-journey-dot { display: none !important; }
}
@container (max-width: 640px) {
  .psl-teams .m-journey-grid { grid-template-columns: 1fr !important; }
  .psl-teams .m-journey-stop { padding: 28px 22px !important; }
}


/* Method-page reference link (replaces the old lineage section). */
.psl-teams .t-support-method-link { margin: 4px 0 0; }
.psl-teams .t-support-method-link a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #4646FF; text-decoration: none;
  border-bottom: 1px solid rgba(70,70,255,0.3); padding-bottom: 2px;
  transition: gap 0.2s ease, border-color 0.2s ease;
}
.psl-teams .t-support-method-link a:hover { gap: 12px; border-color: rgba(70,70,255,0.7); }
.psl-teams .t-support-method-link--foot { margin: 22px 0 0; text-align: center; }


/* ---------- RECOGNITION — editorial numbered ledger (no boxes) ---------- */
.psl-teams .t-recog-table {
  margin: 36px 0 0;
  border-top: 1.5px solid var(--m-dark-navy);
}
.psl-teams .t-recog-thead {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--m-border);
}
.psl-teams .t-recog-thead span {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--m-mid-grey);
}
.psl-teams .t-recog-tr {
  --rc: #4646FF;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--m-border);
  transition: background 0.2s ease;
}
.psl-teams .t-recog-tr:hover { background: var(--m-light-grey); }
.psl-teams .t-recog-row-blue    { --rc: #4646FF; }
.psl-teams .t-recog-row-violet  { --rc: #8936FF; }
.psl-teams .t-recog-row-emerald { --rc: #0FB388; }
.psl-teams .t-recog-td-text {
  margin: 0; font-size: 19px; line-height: 1.45; font-weight: 500;
  color: var(--m-dark-navy); letter-spacing: -0.01em;
}
.psl-teams .t-recog-td-domain {
  display: inline-flex; align-items: center; gap: 13px;
  font-size: 13px; font-weight: 600; color: var(--m-dark-navy);
  letter-spacing: -0.005em;
}
.psl-teams .t-recog-ringwrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.psl-teams .t-recog-ring {
  flex-shrink: 0;
  filter: drop-shadow(0 3px 5px rgba(13,0,66,0.18));
  transform: rotate(var(--tilt, 0deg));
  transform-origin: 50% 60%;
  animation: t-recog-ring-float 3.4s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.psl-teams .t-recog-tr:nth-child(2) .t-recog-ring { animation-delay: 0s; }
.psl-teams .t-recog-tr:nth-child(3) .t-recog-ring { animation-delay: 0.4s; }
.psl-teams .t-recog-tr:nth-child(4) .t-recog-ring { animation-delay: 0.8s; }
@keyframes t-recog-ring-float {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50%      { transform: translateY(-7px) rotate(var(--tilt, 0deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .psl-teams .t-recog-ring { animation: none; }
}
.psl-teams .t-recog-ringwrap:hover .t-recog-ring {
  transform: translateY(-12px) rotate(var(--tilt, 0deg));
  filter: drop-shadow(0 12px 18px rgba(13,0,66,0.34));
  animation-play-state: paused;
}
.psl-teams .t-recog-ringtip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--m-dark-navy);
  color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 3;
}
.psl-teams .t-recog-ringtip::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent; border-top-color: var(--m-dark-navy);
}
.psl-teams .t-recog-ringwrap:hover .t-recog-ringtip {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.psl-teams .t-recog-foot {
  margin: 28px 0 0; font-size: 15px; line-height: 1.6; color: var(--m-mid-grey);
}
.psl-teams .t-recog-foot a { color: #4646FF; font-weight: 600; text-decoration: none; white-space: nowrap; }
.psl-teams .t-recog-foot a:hover { text-decoration: underline; }
@container pslteams (max-width: 760px) {
  .psl-teams .t-recog-thead { display: none; }
  .psl-teams .t-recog-tr { grid-template-columns: 1fr; gap: 8px; padding: 16px 8px; }
}
@container (max-width: 760px) {
  .psl-teams .t-recog-thead { display: none; }
  .psl-teams .t-recog-tr { grid-template-columns: 1fr !important; gap: 8px; padding: 16px 8px; }
}


/* Contact — blinking type caret prompting the user to start typing. */
.psl-teams .t-input-wrap { position: relative; display: block; }
.psl-teams .t-type-caret {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  width: 2px; height: 18px; background: var(--m-turquoise, #19E6C4);
  border-radius: 1px; pointer-events: none;
  animation: t-caret-blink 1.1s step-end infinite;
}
@keyframes t-caret-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
/* Hide the caret once the field is focused or has any text. */
.psl-teams .t-input-wrap input:focus ~ .t-type-caret,
.psl-teams .t-input-wrap input:not(:placeholder-shown) ~ .t-type-caret { display: none; }
@media (prefers-reduced-motion: reduce) { .psl-teams .t-type-caret { animation: none; } }


/* Macro context chart — text left, chart right; tighter card padding. */
.psl-teams .t-whynow-grid {
  display: grid; grid-template-columns: 0.74fr 1.26fr; gap: 40px; align-items: center;
}
.psl-teams .t-macro-mount { margin-top: 0; min-width: 0; }
.psl-teams .t-whynow-narrative { max-width: 100%; }
.psl-teams .t-macro-mount .psl-mc { padding: 0; }
.psl-teams .t-macro-mount .mc-card { padding: 14px 16px 12px; border-radius: 16px; box-shadow: 0 18px 44px -26px rgba(13,0,66,0.28), 0 2px 6px rgba(13,0,66,0.04); }
.psl-teams .t-macro-mount .mc-caption { margin-top: 12px; font-size: 13px; }
@container pslteams (max-width: 1023px) {
  .psl-teams .t-whynow-grid { grid-template-columns: 1fr; gap: 32px; }
}
@container (max-width: 1023px) {
  .psl-teams .t-whynow-grid { grid-template-columns: 1fr !important; gap: 32px; }
}


/* Macro chart — scale up SVG text + caption to 2 lines, fill the card better. */
.psl-teams .t-macro-mount .mc-axislabel { font-size: 15px; }
.psl-teams .t-macro-mount .mc-axistitle { font-size: 13px; }
.psl-teams .t-macro-mount .mc-linelabel { font-size: 15.5px; }
.psl-teams .t-macro-mount .mc-gaplabel { font-size: 15.5px; }
.psl-teams .t-macro-mount .mc-gapsub { font-size: 12.5px; }
.psl-teams .t-macro-mount .mc-nm { font-size: 13.5px; }
.psl-teams .t-macro-mount .mc-yr { font-size: 12px; }
.psl-teams .t-macro-mount .mc-legend { font-size: 14.5px; }
.psl-teams .t-macro-mount .mc-caption { max-width: 720px; font-size: 13.5px; margin-top: 14px; }
