/* ==========================================================================
   TS Partnership FZCO — shared stylesheet
   Ported pixel-for-pixel from the Claude Design prototype (*.dc.html).
   Design tokens, base, shared shell (header/footer/CTA) and page styles.
   ========================================================================== */

:root {
  /* Palette */
  --navy:        #0B1F3A;
  --navy-panel:  #122A4C;
  --ink:         #1C2530;
  --slate:       #34495E;
  --teal:        #00A3A1;
  --teal-dark:   #00807E;
  --amber:       #C77700;
  --paper:       #FFFFFF;
  --mist:        #F5F7FA;
  --light-text:  #E8EDF3;

  /* Type */
  --serif: 'Source Serif 4', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'IBM Plex Mono', monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(24px, 4vw, 48px);

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ------------------------------------------------------------------ base */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--teal-dark); }
a:hover { color: var(--teal); }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
::selection { background: rgba(0, 163, 161, 0.25); }

img, svg { max-width: 100%; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* keyframes */
@keyframes tspMenuIn   { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes tspFadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes tspDrawerIn { from { transform: translateX(100%); } to { transform: none; } }
@keyframes tspRiseIn   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes tspDriftA   { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(6px,-8px); } }
@keyframes tspDriftB   { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-8px,6px); } }
@keyframes tspDriftC   { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(5px,8px); } }
@keyframes tspEdgePulse { 0%, 72%, 100% { stroke-opacity: 0.12; } 82% { stroke-opacity: 0.85; } 92% { stroke-opacity: 0.12; } }
@keyframes tspUnderlineDraw { to { background-size: 100% 5px; } }
@keyframes tspAmbientA { 0%, 100% { transform: translate3d(-3%,-5%,0) scale(1); } 50% { transform: translate3d(4%,6%,0) scale(1.1); } }
@keyframes tspAmbientB { 0%, 100% { transform: translate3d(5%,3%,0) scale(1.08); } 50% { transform: translate3d(-5%,-4%,0) scale(1); } }
@keyframes tspFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes tspPulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes tspCtaDriftA { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(6px,-7px); } }
@keyframes tspCtaDriftB { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-7px,6px); } }
@keyframes tspCtaEdge { 0%, 74%, 100% { stroke-opacity: 0.12; } 84% { stroke-opacity: 0.7; } 94% { stroke-opacity: 0.12; } }

/* ---------------------------------------------------------------- buttons */
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-primary:hover { background: var(--teal-dark); color: #FFFFFF; }
.btn-primary.btn-lg { font-size: 16px; padding: 15px 30px; }

.btn-outline-dark {
  background: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(52, 73, 94, 0.35);
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline-dark:hover { background: #FFFFFF; border-color: var(--teal); color: var(--ink); }

/* Animated underline link ("Explore … →" / footer links) */
.ul-link {
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.2s, color 0.15s;
}
.ul-link:hover { background-size: 100% 1px; }

/* ============================================================== SITE HEADER */
.skip-link {
  position: fixed;
  top: -120px;
  left: 24px;
  z-index: 3000;
  background: var(--teal);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.15s var(--ease);
}
.skip-link:focus { top: 16px; color: var(--navy); }

.header-spacer { height: 88px; background: var(--navy); }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  background: var(--navy);
  height: 88px;
  border-bottom: 1px solid rgba(232, 237, 243, 0);
  transition: height 0.2s var(--ease), border-color 0.2s;
}
body.condensed .site-header { height: 64px; border-bottom-color: rgba(232, 237, 243, 0.14); }

.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: baseline; gap: 9px; text-decoration: none; white-space: nowrap; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 17px; letter-spacing: 1.6px; color: #FFFFFF; }
.brand__mark { font-family: var(--mono); font-size: 10px; letter-spacing: 2.4px; color: var(--teal); font-weight: 500; }

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--light-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: rgba(255, 255, 255, 0.06); color: #FFFFFF; }
.nav-link.is-active { color: var(--teal); }
.nav-link svg { transition: transform 0.2s; }
body[data-open="solutions"] .nav-item--solutions .nav-link svg,
body[data-open="serve"] .nav-item--serve .nav-link svg { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; }

.menu-btn {
  background: none;
  border: 1px solid rgba(232, 237, 243, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--light-text);
  transition: background 0.15s;
}
.menu-btn:hover { background: rgba(255, 255, 255, 0.06); }
.menu-btn span { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; }

/* Mega panels */
.mega-panel {
  position: fixed;
  top: 88px; left: 0; right: 0;
  z-index: 1190;
  background: var(--navy-panel);
  border-bottom: 1px solid rgba(232, 237, 243, 0.14);
  box-shadow: 0 24px 48px rgba(11, 31, 58, 0.42);
  animation: tspMenuIn 0.18s var(--ease);
  display: none;
}
body.condensed .mega-panel { top: 64px; }
body[data-open="solutions"] .mega-panel--solutions { display: block; }
body[data-open="serve"] .mega-panel--serve { display: block; }

.mega-panel__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px var(--gutter) 34px;
}
.mega-panel--solutions .mega-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 40px;
}
.mega-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(232, 237, 243, 0.5);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mega-eyebrow.teal { color: var(--teal); }
.mega-grid { display: grid; gap: 6px; }
.mega-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mega-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.mega-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.mega-card:hover { background: rgba(255, 255, 255, 0.06); }
.mega-card__icon { color: var(--teal); }
.mega-card__title { color: #FFFFFF; font-size: 15px; font-weight: 600; }
.mega-card__desc { color: rgba(232, 237, 243, 0.68); font-size: 13px; line-height: 19px; }
.mega-card--all { justify-content: flex-end; }
.mega-card--all .mega-card__all { color: var(--teal); font-size: 14px; font-weight: 600; }

.mega-feature { border-left: 1px solid rgba(232, 237, 243, 0.12); padding-left: 40px; display: flex; flex-direction: column; gap: 12px; }
.mega-feature__link { text-decoration: none; display: flex; flex-direction: column; gap: 10px; }
.mega-feature__title { font-family: var(--serif); font-weight: 600; font-size: 19px; line-height: 26px; color: #FFFFFF; }
.mega-feature__desc { color: rgba(232, 237, 243, 0.68); font-size: 13px; line-height: 19px; }
.mega-feature__cta { color: var(--teal); font-size: 13px; font-weight: 600; }

/* Mobile drawer */
.drawer-root { position: fixed; inset: 0; z-index: 1300; display: none; }
.drawer-root.open { display: block; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(11, 31, 58, 0.62); animation: tspFadeIn 0.2s ease; }
.drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(400px, 94vw);
  background: var(--navy);
  border-left: 1px solid rgba(232, 237, 243, 0.14);
  display: flex;
  flex-direction: column;
  animation: tspDrawerIn 0.24s var(--ease);
}
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(232, 237, 243, 0.12);
}
.drawer__brand { font-family: var(--serif); font-weight: 600; font-size: 15px; letter-spacing: 1.4px; color: #FFFFFF; }
.drawer__close {
  background: none; border: 1px solid rgba(232, 237, 243, 0.25); border-radius: 8px;
  width: 38px; height: 38px; cursor: pointer; color: var(--light-text);
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.drawer__close:hover { background: rgba(255, 255, 255, 0.06); }
.drawer__nav { flex: 1; overflow-y: auto; padding: 10px 24px 24px; }
.drawer__acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; border-bottom: 1px solid rgba(232, 237, 243, 0.12);
  padding: 16px 0; cursor: pointer; color: #FFFFFF;
  font-family: var(--sans); font-size: 16px; font-weight: 600;
}
.drawer__acc-btn svg { transition: transform 0.2s; }
.drawer__acc-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__acc-panel { display: none; flex-direction: column; padding: 8px 0 12px; border-bottom: 1px solid rgba(232, 237, 243, 0.12); }
.drawer__acc-panel.open { display: flex; }
.drawer__acc-all { color: var(--teal); text-decoration: none; font-size: 14px; font-weight: 600; padding: 9px 12px; }
.drawer__sub {
  color: rgba(232, 237, 243, 0.85); text-decoration: none; font-size: 15px;
  padding: 9px 12px; border-radius: 8px; transition: background 0.15s, color 0.15s;
}
.drawer__sub:hover { background: rgba(255, 255, 255, 0.06); color: #FFFFFF; }
.drawer__links { display: flex; flex-direction: column; }
.drawer__link {
  color: #FFFFFF; text-decoration: none; font-size: 16px; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid rgba(232, 237, 243, 0.12);
}
.drawer__link:last-child { border-bottom: none; }
.drawer__foot { padding: 20px 24px; border-top: 1px solid rgba(232, 237, 243, 0.12); }
.drawer__foot .btn-primary { display: block; text-align: center; padding: 15px 24px; font-size: 15px; }

/* Header responsive switch */
@media (max-width: 1079px) {
  .nav-desktop, .header-actions { display: none; }
  .menu-btn { display: flex; }
  .mega-panel { display: none !important; }
}

/* ============================================================== SITE FOOTER */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(232, 237, 243, 0.14);
  color: var(--light-text);
}
.site-footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 80px) var(--gutter) 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 48px 40px;
}
.footer-about { display: flex; flex-direction: column; gap: 16px; }
.footer-about p { margin: 0; font-size: 14px; line-height: 22px; color: rgba(232, 237, 243, 0.72); max-width: 30ch; }
.footer-about address { font-style: normal; font-family: var(--mono); font-size: 12.5px; line-height: 22px; color: rgba(232, 237, 243, 0.6); }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { font-family: var(--mono); font-size: 12.5px; text-decoration: none; }
.footer-contact a.teal { color: var(--teal); }
.footer-contact a.dim { color: rgba(232, 237, 243, 0.72); }
.footer-contact a:hover { color: #FFFFFF; }

.footer-col__head {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(232, 237, 243, 0.5); margin-bottom: 14px;
}
.footer-col__list { display: flex; flex-direction: column; align-items: flex-start; }
.footer-link {
  color: rgba(232, 237, 243, 0.82); font-size: 14px; line-height: 30px; text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size 0.2s, color 0.15s;
}
.footer-link:hover { color: #FFFFFF; background-size: 100% 1px; }

.site-footer__bar { border-top: 1px solid rgba(232, 237, 243, 0.12); }
.site-footer__bar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px;
}
.site-footer__copy { font-size: 13px; color: rgba(232, 237, 243, 0.55); }
.cookie-prefs-btn {
  margin-left: auto; background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--sans); font-size: 13px; color: rgba(232, 237, 243, 0.72);
  text-decoration: underline; text-underline-offset: 3px;
}
.cookie-prefs-btn:hover { color: #FFFFFF; }

/* Back to top */
.back-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 1100;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); border: 1px solid rgba(232, 237, 243, 0.25); color: var(--light-text);
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.25);
  transition: background 0.15s, bottom 0.2s;
  animation: tspFadeIn 0.2s ease;
}
.back-top.show { display: flex; }
.back-top:hover { background: var(--navy-panel); }
body.cookie-open .back-top.show { bottom: 104px; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1400;
  background: var(--navy-panel); border-top: 1px solid rgba(232, 237, 243, 0.16);
  box-shadow: 0 -12px 32px rgba(11, 31, 58, 0.3);
  animation: tspRiseIn 0.3s var(--ease);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px;
}
.cookie-banner__inner p { margin: 0; font-size: 14px; line-height: 21px; color: rgba(232, 237, 243, 0.85); flex: 1 1 320px; }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.btn-ghost-light {
  background: none; color: var(--light-text); font-family: var(--sans); font-size: 14px; font-weight: 500;
  padding: 10px 20px; border-radius: 999px; border: 1px solid rgba(232, 237, 243, 0.35);
  cursor: pointer; transition: background 0.15s;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.07); }
.btn-link-light {
  background: none; border: none; cursor: pointer; padding: 10px 4px;
  font-family: var(--sans); font-size: 14px; color: rgba(232, 237, 243, 0.8);
  text-decoration: underline; text-underline-offset: 3px;
}
.btn-link-light:hover { color: #FFFFFF; }
.cookie-banner .btn-primary { font-size: 14px; padding: 10px 20px; }

/* Cookie preferences modal */
.prefs-root { position: fixed; inset: 0; z-index: 1500; display: none; align-items: center; justify-content: center; padding: 24px; }
.prefs-root.open { display: flex; }
.prefs-scrim { position: absolute; inset: 0; background: rgba(11, 31, 58, 0.62); animation: tspFadeIn 0.2s ease; }
.prefs-dialog {
  position: relative; width: min(480px, 100%); background: #FFFFFF; border-radius: 10px;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.3); padding: 28px; animation: tspRiseIn 0.25s var(--ease);
}
.prefs-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.prefs-head h2 { font-family: var(--serif); font-weight: 600; font-size: 22px; line-height: 30px; color: var(--ink); margin: 0; }
.prefs-close {
  background: none; border: 1px solid rgba(52, 73, 94, 0.25); border-radius: 8px;
  width: 34px; height: 34px; cursor: pointer; color: var(--slate);
  display: flex; align-items: center; justify-content: center; flex: none; transition: background 0.15s;
}
.prefs-close:hover { background: var(--mist); }
.prefs-dialog > p { margin: 0 0 20px; font-size: 14px; line-height: 22px; color: var(--slate); }
.prefs-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid rgba(52, 73, 94, 0.18); }
.prefs-row.bordered { border-bottom: 1px solid rgba(52, 73, 94, 0.18); }
.prefs-row__title { font-size: 15px; font-weight: 600; color: var(--ink); }
.prefs-row__desc { font-size: 13px; line-height: 19px; color: var(--slate); }
.prefs-always {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--teal-dark);
  border: 1px solid rgba(0, 163, 161, 0.4); background: rgba(0, 163, 161, 0.07);
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.switch { width: 46px; height: 26px; border-radius: 999px; background: rgba(52, 73, 94, 0.35); border: none; position: relative; cursor: pointer; transition: background 0.2s; padding: 0; flex: none; }
.switch[aria-checked="true"] { background: var(--teal); }
.switch__knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #FFFFFF; box-shadow: 0 1px 2px rgba(11, 31, 58, 0.35); transition: left 0.2s; }
.switch[aria-checked="true"] .switch__knob { left: 23px; }
.prefs-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn-outline-dark.sm { padding: 11px 22px; font-size: 14px; font-weight: 500; }
.prefs-actions .btn-primary { font-size: 14px; padding: 11px 22px; }

/* ================================================================= CTA BAND */
.cta-band {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  font-family: var(--sans);
}
.cta-band__motif {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  opacity: 0.55; pointer-events: none;
}
.cta-band__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 9vw, 104px) var(--gutter);
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.cta-band__title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2; letter-spacing: -0.2px; color: #FFFFFF; margin: 0; max-width: 24ch;
}
.cta-band__line { font-size: 17px; line-height: 28px; color: rgba(232, 237, 243, 0.78); margin: 0; max-width: 56ch; }
.cta-band .btn-primary { margin-top: 6px; }

/* =========================================================== SOLUTIONS PAGE */
/* Hero */
.sol-hero { background: var(--navy); position: relative; overflow: hidden; }
.sol-hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 20px var(--gutter) clamp(56px, 7vw, 88px);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 14px;
  color: rgba(232, 237, 243, 0.65); margin-bottom: clamp(28px, 4vw, 44px);
}
.breadcrumb a { color: rgba(232, 237, 243, 0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb__sep { color: rgba(232, 237, 243, 0.35); }
.breadcrumb__current { color: var(--light-text); font-weight: 500; }

.sol-hero__body { display: flex; flex-direction: column; gap: 18px; max-width: 780px; }
.eyebrow {
  font-family: var(--mono); font-weight: 500; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--teal); margin: 0;
}
.sol-hero__title {
  font-family: var(--serif); font-weight: 700; font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15; letter-spacing: -0.5px; color: #FFFFFF; margin: 0; text-wrap: pretty;
}
.sol-hero__lede {
  font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; color: rgba(232, 237, 243, 0.8);
  margin: 0; max-width: 62ch; text-wrap: pretty;
}

/* Lifecycle diagram */
.lifecycle { background: var(--mist); border-bottom: 1px solid rgba(52, 73, 94, 0.1); }
.lifecycle__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  display: flex; flex-direction: column; gap: 20px;
}
.lifecycle__title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3; color: var(--ink); margin: 0;
}
.lifecycle__scroll { overflow-x: auto; }
.lifecycle__scroll svg { display: block; min-width: 900px; width: 100%; height: auto; }
.lifecycle__note { margin: 0; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--slate); }

/* Solution summaries */
.solutions { background: var(--paper); }
.solutions__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--gutter);
  display: flex; flex-direction: column; gap: clamp(56px, 7vw, 88px);
}
.sol-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 40px;
  align-items: center;
}
.sol-art {
  background: var(--navy); border-radius: 10px; padding: 32px;
  display: flex; align-items: center; justify-content: center;
}
.sol-art svg { width: 100%; height: auto; max-width: 420px; }
.sol-copy { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.sol-copy__num { font-family: var(--mono); font-size: 12px; letter-spacing: 1.2px; color: var(--teal-dark); }
.sol-copy__title { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 2.2vw, 30px); line-height: 1.25; color: var(--ink); margin: 0; }
.sol-copy__desc { font-size: 16px; line-height: 27px; color: var(--slate); margin: 0; max-width: 60ch; }
.sol-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sol-list li { display: flex; gap: 10px; font-size: 15px; line-height: 24px; color: var(--ink); }
.sol-list li .dot { color: var(--teal); font-weight: 600; }
.sol-copy .ul-link { font-size: 15px; }
/* Rows alternate art/copy sides purely by DOM order (as in the prototype). */

/* Cross-sell band */
.cross-sell { background: var(--mist); border-top: 1px solid rgba(52, 73, 94, 0.1); }
.cross-sell__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(48px, 6vw, 64px) var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.cross-sell__text { display: flex; flex-direction: column; gap: 6px; }
.cross-sell__head { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); }
.cross-sell__sub { font-size: 16px; line-height: 26px; color: var(--slate); }

/* Scroll reveal — armed by JS only when it will actually animate, so content
   stays visible under reduced-motion or when JS/IntersectionObserver is absent. */
/* Armed by JS (adds .reveal-armed) only when it will actually animate, so content
   stays visible under reduced-motion or when JS/IntersectionObserver is absent.
   Keyed off [data-reveal]; direction set with data-reveal-from. */
.reveal-armed { opacity: 0; transform: translateY(16px); }
.reveal-armed[data-reveal-from="fade"]  { transform: none; }
.reveal-armed[data-reveal-from="left"]  { transform: translateX(-20px); }
.reveal-armed[data-reveal-from="right"] { transform: translateX(20px); }
.reveal-armed[data-reveal-from="scale"] { transform: scale(0.96); }
.reveal-armed.is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

/* generic soft status-dot pulse (data-pulse), matches shared.js */
[data-pulse] { animation: tspPulseDot 2.8s ease-in-out infinite; }

/* ================================================================ STUB PAGE */
.stub-hero { background: var(--navy); }
.stub-hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(64px, 9vw, 104px);
  display: flex; flex-direction: column; gap: 18px; max-width: 820px;
}
.stub-hero__title {
  font-family: var(--serif); font-weight: 700; font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15; letter-spacing: -0.5px; color: #FFFFFF; margin: 0; text-wrap: pretty;
}
.stub-hero__lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; color: rgba(232, 237, 243, 0.8); margin: 0; max-width: 60ch; }
.stub-body { background: var(--paper); }
.stub-body__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--gutter);
  display: flex; flex-direction: column; gap: 18px; max-width: 760px;
}
.stub-tag {
  align-self: flex-start;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal-dark); border: 1px solid rgba(0, 163, 161, 0.4); background: rgba(0, 163, 161, 0.07);
  padding: 6px 12px; border-radius: 999px;
}
.stub-body__inner p { margin: 0; font-size: 17px; line-height: 28px; color: var(--slate); }

/* ============================================================== CONTACT PAGE */
.contact-hero { background: var(--mist); border-bottom: 1px solid rgba(52, 73, 94, 0.1); }
.contact-hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter) clamp(48px, 6vw, 72px); }
.breadcrumb--light, .breadcrumb--light a { color: var(--slate); }
.breadcrumb--light a:hover { color: var(--teal-dark); }
.breadcrumb--light .breadcrumb__sep { color: rgba(52, 73, 94, 0.4); }
.breadcrumb--light .breadcrumb__current { color: var(--ink); }
.contact-hero__body { display: flex; flex-direction: column; gap: 18px; max-width: 760px; }
.contact-hero__title {
  font-family: var(--serif); font-weight: 700; font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15; letter-spacing: -0.5px; color: var(--ink); margin: 0; text-wrap: pretty;
}
.contact-hero__lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; color: var(--slate); margin: 0; max-width: 60ch; text-wrap: pretty; }

.contact-main { background: var(--paper); }
.contact-grid {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 7vw, 88px) var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 48px; align-items: start;
}
.contact-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 20px 16px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.field .req { color: var(--teal-dark); }
.field .opt { color: var(--slate); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; box-sizing: border-box; border: 1px solid rgba(52, 73, 94, 0.3); border-radius: 8px;
  padding: 12px 14px; font-family: var(--sans); font-size: 15px; line-height: 22px; color: var(--ink);
  background: #FFFFFF; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { line-height: 24px; resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 163, 161, 0.18); }
.field.is-error input, .field.is-error select, .field.is-error textarea { border-color: #C0392B; }
.field-err { display: block; min-height: 18px; margin-top: 4px; font-size: 13px; line-height: 18px; color: #C0392B; }
.contact-form__submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact-form__submit .form-error { font-size: 13px; color: #C0392B; }
.contact-form button[type="submit"] { border: none; cursor: pointer; }
.contact-form button[type="submit"][disabled] { cursor: default; opacity: 0.6; }

.contact-form[hidden], .contact-success[hidden] { display: none; }
.contact-success {
  border: 1px solid rgba(0, 163, 161, 0.4); background: rgba(0, 163, 161, 0.06); border-radius: 10px;
  padding: 36px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.contact-success__check { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.contact-success h2 { font-family: var(--serif); font-weight: 600; font-size: 24px; line-height: 32px; color: var(--ink); margin: 0; }
.contact-success p { font-size: 16px; line-height: 26px; color: var(--ink); margin: 0; max-width: 48ch; }

.contact-aside {
  background: var(--mist); border: 1px solid rgba(52, 73, 94, 0.14); border-radius: 10px;
  padding: 32px; display: flex; flex-direction: column; gap: 22px;
}
.contact-aside__head { display: flex; flex-direction: column; gap: 4px; }
.contact-aside__name { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--ink); }
.contact-aside__sub { font-size: 14px; color: var(--slate); }
.contact-aside__block { display: flex; flex-direction: column; gap: 5px; }
.contact-aside__k { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1.2px; color: var(--teal-dark); }
.contact-aside address { font-style: normal; font-size: 15px; line-height: 24px; color: var(--ink); }
.contact-aside__block a {
  align-self: flex-start; font-size: 15px; text-decoration: none; color: var(--teal-dark);
  background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px;
  background-repeat: no-repeat; background-position: 0 100%; transition: background-size 0.2s;
}
.contact-aside__block a[href^="tel"] { color: var(--ink); }
.contact-aside__block a:hover { background-size: 100% 1px; }
.contact-aside__hours { font-size: 15px; line-height: 24px; color: var(--ink); }
.contact-map { border-radius: 8px; background: var(--navy); aspect-ratio: 16 / 9; position: relative; overflow: hidden; }
.contact-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-map__pulse { animation: tspPulseDot 2.8s ease-in-out infinite; }
.contact-aside__note { margin: 0; font-size: 14px; line-height: 22px; color: var(--slate); border-top: 1px solid rgba(52, 73, 94, 0.14); padding-top: 18px; }

.contact-next { background: var(--mist); border-top: 1px solid rgba(52, 73, 94, 0.1); }
.contact-next__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 6vw, 72px) var(--gutter);
  display: flex; flex-direction: column; gap: 32px;
}
.contact-next__inner > h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2vw, 28px); line-height: 1.3; color: var(--ink); margin: 0; }
.contact-next__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 32px; }
.next-step { display: flex; flex-direction: column; gap: 10px; border-top: 2px solid var(--teal); padding-top: 18px; }
.next-step__k { font-family: var(--mono); font-size: 12px; color: var(--teal-dark); }
.next-step p { margin: 0; font-size: 15px; line-height: 25px; color: var(--slate); text-wrap: pretty; }

/* ============================================================== HOME PAGE */
/* shared eyebrow modifier: default (.eyebrow) is teal for dark sections;
   .eyebrow--dark is the darker teal used on light sections */
.eyebrow--dark { color: var(--teal-dark); }

.section-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(28px, 2.6vw, 40px); line-height: 1.2; letter-spacing: -0.2px;
  margin: 0; text-wrap: pretty;
}
.section-title.on-dark { color: #FFFFFF; }
.section-title.on-light { color: var(--ink); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(52, 73, 94, 0.18); border-radius: 999px;
  padding: 9px 16px; font-family: var(--mono); font-size: 13px; color: var(--slate);
}
.pill--on-paper { background: #FFFFFF; padding: 10px 18px; font-size: 12.5px; }
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex: none; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* Hero */
.home-hero {
  background: var(--navy); position: relative; overflow: hidden;
  display: flex; align-items: center; min-height: clamp(620px, 88vh, 880px);
}
.home-hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.home-hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(94deg, rgba(11,31,58,0.96) 0%, rgba(11,31,58,0.78) 34%, rgba(11,31,58,0.22) 62%, rgba(11,31,58,0.5) 100%),
    radial-gradient(90% 70% at 78% 16%, rgba(0,163,161,0.1), transparent 65%);
}
.home-hero__scrim-btm {
  position: absolute; left: 0; right: 0; bottom: 0; height: 110px; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,31,58,0) 0%, rgba(11,31,58,0.8) 100%);
}
.home-hero__inner {
  position: relative; width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(40px, 5vw, 72px); align-items: center;
}
.home-hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; max-width: 640px; }
.home-hero__eyebrow { display: flex; align-items: center; gap: 10px; }
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 12px rgba(0,163,161,0.9); flex: none;
  animation: tspPulseDot 2.8s ease-in-out infinite;
}
.home-hero__title {
  font-family: var(--serif); font-weight: 700; font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.12; letter-spacing: -0.5px; color: #FFFFFF; margin: 0; text-wrap: pretty;
}
.hl-draw {
  font-style: italic; white-space: nowrap; padding-bottom: 5px;
  background-image: linear-gradient(rgba(0,163,161,0.9), rgba(0,163,161,0.9));
  background-repeat: no-repeat; background-position: 0 96%; background-size: 0% 5px;
  animation: tspUnderlineDraw 0.9s var(--ease) 1.15s forwards;
}
.home-hero__lede {
  font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; color: rgba(232, 237, 243, 0.8);
  margin: 0; max-width: 54ch; text-wrap: pretty;
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.home-hero__actions .btn-primary {
  box-shadow: 0 12px 34px rgba(0,163,161,0.3);
  transition: background 0.15s, color 0.15s, transform 0.2s, box-shadow 0.2s;
}
.home-hero__actions .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(0,163,161,0.42); }
.home-hero__actions .btn-outline-light {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background 0.15s, border-color 0.15s, transform 0.2s;
}
.home-hero__actions .btn-outline-light:hover { transform: translateY(-2px); }
.home-hero__meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: 1.2px; color: rgba(232, 237, 243, 0.45); margin: 10px 0 0; }

/* Hero signal-card stack */
.home-hero__stack-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; justify-self: center; width: 100%; }
.home-hero__stack { position: relative; width: min(430px, 100%); height: 470px; will-change: transform; }
.home-hero__art-note { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.2px; color: rgba(232, 237, 243, 0.4); margin: 0; }
.signal { position: absolute; }
.home-hero__stack .signal:nth-child(1) { animation: tspFloat 8s ease-in-out 0s infinite; }
.home-hero__stack .signal:nth-child(2) { animation: tspFloat 9.5s ease-in-out -1.7s infinite; }
.home-hero__stack .signal:nth-child(3) { animation: tspFloat 8.7s ease-in-out -3.4s infinite; }
.signal-card {
  display: flex; flex-direction: column; gap: 10px; padding: 20px 22px; border-radius: 12px;
  background: rgba(13,36,66,0.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232,237,243,0.16); box-shadow: 0 18px 48px rgba(4,12,24,0.45);
  text-decoration: none; transition: border-color 0.6s, box-shadow 0.6s;
}
.signal-card--a { transform: rotate(-2.4deg); }
.signal-card--b { transform: rotate(1.8deg); }
.signal-card--c { transform: rotate(-1.4deg); }
.signal-card:hover { border-color: rgba(0,163,161,0.7); box-shadow: 0 22px 56px rgba(0,163,161,0.18); }
.signal-card.is-live { border-color: rgba(0,163,161,0.55); }
.signal-card__k { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1.2px; color: var(--teal); }
.signal-card__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(232,237,243,0.35); flex: none; transition: background-color 0.5s; }
.signal-card.is-live .signal-card__dot { background: var(--teal); }
.signal-card__body { font-size: 15.5px; line-height: 24px; color: var(--light-text); text-wrap: pretty; }
.signal-card__meta { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1px; color: rgba(232,237,243,0.45); }

/* Ambient glow (data-ambient sections) + status-dot pulses */
[data-ambient] { position: relative; isolation: isolate; }
[data-ambient]::before {
  content: ""; position: absolute; inset: -25%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(40% 32% at 70% 28%, rgba(0,163,161,0.13), transparent 70%),
    radial-gradient(30% 26% at 20% 80%, rgba(0,128,126,0.09), transparent 70%);
  animation: tspAmbientA 26s ease-in-out infinite;
}
.proof[data-ambient]::before { animation-name: tspAmbientB; animation-duration: 33s; }
.home-solutions, .proof { overflow: hidden; }
.trust-bar .pill::before, .problem .pill::before { animation: tspPulseDot 2.8s ease-in-out infinite; }
.trust-bar .pill:nth-child(2)::before, .problem .pill:nth-child(2)::before { animation-delay: 0.45s; }
.trust-bar .pill:nth-child(3)::before, .problem .pill:nth-child(3)::before { animation-delay: 0.9s; }
.trust-bar .pill:nth-child(4)::before { animation-delay: 1.35s; }
.trust-bar .pill:nth-child(5)::before { animation-delay: 1.8s; }

.btn-outline-light {
  background: none; color: var(--light-text); font-size: 16px; font-weight: 500;
  padding: 14px 29px; border-radius: 999px; text-decoration: none;
  border: 1px solid rgba(232, 237, 243, 0.4); transition: background 0.15s, border-color 0.15s;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.07); border-color: #FFFFFF; color: var(--light-text); }

/* Trust bar */
.trust-bar { background: var(--mist); border-bottom: 1px solid rgba(52, 73, 94, 0.1); }
.trust-bar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 5vw, 56px) var(--gutter);
  display: flex; flex-direction: column; gap: 24px;
}
.trust-bar__text { margin: 0; text-align: center; font-size: 15px; line-height: 24px; color: var(--slate); }
.trust-bar .pill-row { justify-content: center; }

/* The problem */
.problem { background: var(--paper); }
.problem__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 8vw, 112px) var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 40px 64px; align-items: start;
}
.problem__head { display: flex; flex-direction: column; gap: 14px; }
.problem__head .section-title { max-width: 18ch; }
.problem__body { display: flex; flex-direction: column; gap: 28px; }
.problem__body p { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; color: var(--ink); margin: 0; max-width: 68ch; text-wrap: pretty; }

/* Solutions grid (dark) */
.home-solutions { background: var(--navy); }
.home-solutions__inner, .serve__inner, .why__inner, .proof__inner, .insights__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 8vw, 112px) var(--gutter);
  display: flex; flex-direction: column; gap: 40px;
}
.section-head { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.card-grid { display: grid; gap: 14px; }
.card-grid--sol { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.card-grid--serve { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.card-grid--insight { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

.sol-card {
  position: relative; display: flex; flex-direction: column; gap: 14px; padding: 28px;
  border-radius: 10px; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 237, 243, 0.14); text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}
.sol-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(11, 31, 58, 0.45); border-color: rgba(0, 163, 161, 0.5); }
.sol-card__num { position: absolute; top: 24px; right: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: rgba(232, 237, 243, 0.35); }
.sol-card__icon { color: var(--teal); }
.sol-card__title { font-size: 20px; line-height: 28px; font-weight: 600; color: #FFFFFF; }
.sol-card__desc { font-size: 15px; line-height: 24px; color: rgba(232, 237, 243, 0.72); }
.sol-card__cta { font-size: 14px; font-weight: 600; color: var(--teal); margin-top: auto; }
.sol-card--empty {
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: 28px;
  border-radius: 10px; border: 1px dashed rgba(232, 237, 243, 0.2);
}
.sol-card--empty .k { font-family: var(--mono); font-size: 11px; letter-spacing: 1.2px; color: rgba(232, 237, 243, 0.45); }
.sol-card--empty .d { font-size: 15px; line-height: 24px; color: rgba(232, 237, 243, 0.72); }
.sol-card--empty a { font-size: 14px; font-weight: 600; color: var(--teal); text-decoration: none; }
.sol-card--empty a:hover { color: var(--light-text); }

/* Who we serve (light) */
.serve { background: var(--mist); }
.serve-card {
  display: flex; flex-direction: column; gap: 12px; padding: 28px; border-radius: 10px;
  background: #FFFFFF; border: 1px solid rgba(52, 73, 94, 0.18); text-decoration: none;
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.06);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.serve-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(11, 31, 58, 0.12); }
.serve-card__k { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1.2px; color: var(--teal-dark); }
.serve-card__title { font-family: var(--serif); font-weight: 600; font-size: 21px; line-height: 28px; color: var(--ink); }
.serve-card__desc { font-size: 14.5px; line-height: 23px; color: var(--slate); }
.serve-card__cta { font-size: 14px; font-weight: 600; color: var(--teal-dark); margin-top: auto; }

/* Why TSP */
.why { background: var(--paper); }
.why__inner { gap: 44px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 40px; }
.why-item { display: flex; flex-direction: column; gap: 12px; border-top: 2px solid var(--teal); padding-top: 20px; }
.why-item__num { font-family: var(--mono); font-size: 12px; color: var(--teal-dark); }
.why-item h3 { font-size: 20px; line-height: 28px; font-weight: 600; color: var(--ink); margin: 0; font-family: var(--sans); }
.why-item p { font-size: 15px; line-height: 26px; color: var(--slate); margin: 0; text-wrap: pretty; }

/* Proof teaser (dark) */
.proof { background: var(--navy); }
.proof__inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 48px; align-items: center;
}
.proof__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.proof__copy p { font-size: 17px; line-height: 28px; color: rgba(232, 237, 243, 0.78); margin: 0; max-width: 52ch; text-wrap: pretty; }
.proof-card { border-radius: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(232, 237, 243, 0.14); padding: 28px; display: flex; flex-direction: column; }
.proof-card__tag {
  align-self: flex-start; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1.2px;
  color: var(--teal); border: 1px solid rgba(0, 163, 161, 0.4); border-radius: 999px; padding: 5px 12px; margin-bottom: 18px;
}
.proof-card__row { padding: 14px 0; border-top: 1px solid rgba(232, 237, 243, 0.12); display: flex; flex-direction: column; gap: 6px; }
.proof-card__row:last-child { padding-bottom: 0; }
.proof-card__k { font-family: var(--mono); font-size: 11px; letter-spacing: 1.2px; color: rgba(232, 237, 243, 0.5); }
.proof-card__k.hl { color: var(--teal); }
.proof-card__v { font-size: 14.5px; line-height: 23px; color: var(--light-text); }

/* Stat band */
.stat-band { background: var(--mist); }
.stat-band__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 7vw, 88px) var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 36px 40px;
}
.stat { display: flex; flex-direction: column; gap: 8px; border-left: 2px solid var(--teal); padding-left: 20px; }
.stat__n { font-family: var(--mono); font-weight: 500; font-size: clamp(19px, 1.8vw, 23px); color: var(--ink); }
.stat__l { font-size: 14px; line-height: 22px; color: var(--slate); }

/* Insights teaser */
.insights { background: var(--paper); }
.insights__inner { gap: 36px; }
.insights__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.insights__head-l { display: flex; flex-direction: column; gap: 14px; }
.insight-card {
  display: flex; flex-direction: column; gap: 14px; padding: 28px; border-radius: 10px;
  background: #FFFFFF; border: 1px solid rgba(52, 73, 94, 0.18); text-decoration: none;
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.06);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.insight-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(11, 31, 58, 0.12); }
.insight-card__tag {
  align-self: flex-start; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1.2px;
  color: var(--teal-dark); border: 1px solid rgba(0, 163, 161, 0.4); border-radius: 999px; padding: 5px 12px;
}
.insight-card__title { font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 27px; color: var(--ink); text-wrap: pretty; }
.insight-card__desc { font-size: 14px; line-height: 22px; color: var(--slate); }
.insight-card__meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.8px; color: var(--slate); margin-top: auto; }
