/* home.css — Homepage-specific styles */

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  background: var(--white);
  padding: calc(136px + env(safe-area-inset-top, 0px)) 52px 72px;
  display: flex; flex-direction: column; align-items: center;
  border-bottom: 1px solid var(--warm-200);
  position: relative;
}

/* Subtle crosshatch grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--warm-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--warm-100) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .45;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}



/* ── Soft grid cell RGB pulse ── */
@keyframes pulse-r {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); background: var(--white); }
  50% { box-shadow: 0 0 18px 2px rgba(239,68,68,.07); background: rgba(254,226,226,.35); }
}
@keyframes pulse-g {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); background: var(--white); }
  50% { box-shadow: 0 0 18px 2px rgba(34,197,94,.07); background: rgba(220,252,231,.35); }
}
@keyframes pulse-b {
  0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); background: var(--white); }
  50% { box-shadow: 0 0 18px 2px rgba(59,130,246,.07); background: rgba(219,234,254,.35); }
}
.pulse-r { animation: pulse-r 4.5s ease-in-out infinite; }
.pulse-g { animation: pulse-g 5.2s ease-in-out infinite 1.4s; }
.pulse-b { animation: pulse-b 6.0s ease-in-out infinite 2.8s; }


/* Pulse on off-white cards */
.depth-card.pulse-r { animation: pulse-r-card 4.5s ease-in-out infinite; }
.depth-card.pulse-g { animation: pulse-g-card 5.2s ease-in-out infinite 1.4s; }
.depth-card.pulse-b { animation: pulse-b-card 6.0s ease-in-out infinite 2.8s; }
@keyframes pulse-r-card {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
  50% { box-shadow: 0 0 24px 4px rgba(239,68,68,.09); }
}
@keyframes pulse-g-card {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  50% { box-shadow: 0 0 24px 4px rgba(34,197,94,.09); }
}
@keyframes pulse-b-card {
  0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
  50% { box-shadow: 0 0 24px 4px rgba(59,130,246,.09); }
}


/* ── Background grid pulse ── */
#gridPulseCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero rotating word ── */
.h1-line1 {
  display: block;
  transition: opacity .45s ease;
  position: relative; z-index: 2;
  isolation: isolate;
}
.h1-line1.exit { opacity: 0; }
.h1-line1.enter { opacity: 0; }
.h1-industry { color: var(--navy); font-style: normal; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 8px;
  border: 1px solid var(--warm-200);
  border-radius: 100px;
  background: var(--warm-50);
  margin-bottom: 28px;

}
.hero-tag .pulse { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: pulse-anim 2.2s ease-in-out infinite; }
@keyframes pulse-anim { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(34,197,94,.3)} 50%{opacity:.7;box-shadow:0 0 0 4px rgba(34,197,94,0)} }
.hero-tag span { font-family: var(--f-mono); font-size: 9px; font-weight: 400; color: var(--ink-500); letter-spacing: .08em; }

.hero h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink-900);
  text-align: center;
  max-width: 780px;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.hero h1 em {
  font-style: italic;
  color: var(--navy-accent);
  display: block;
}

.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.6;
  color: var(--ink-500);
  text-align: center; max-width: 640px;
  margin-bottom: 36px;
  position: relative; z-index: 2;

}

.hero-btns {
  display: flex; gap: 10px; margin-bottom: 56px;

}
.btn-primary {
  font-size: 13.5px; font-weight: 500; letter-spacing: -.01em;
  padding: 11px 28px; border-radius: var(--r-sm);
  background: var(--navy); color: #fff; border: none;
  box-shadow: 0 1px 2px rgba(12,31,61,.2), 0 4px 16px rgba(12,31,61,.16);
  transition: background .2s, transform .1s, box-shadow .2s;--amber:#f59e0b;}
.btn-primary:hover { background: var(--navy-mid); box-shadow: 0 2px 4px rgba(12,31,61,.2), 0 8px 24px rgba(12,31,61,.18);--amber:#f59e0b;}
.btn-primary:active { transform: scale(.98); }
.btn-secondary {
  font-size: 13.5px; font-weight: 400; letter-spacing: -.01em;
  padding: 11px 28px; border-radius: var(--r-sm);
  background: transparent; color: var(--ink-600);
  border: 1px solid var(--warm-300);
  transition: color .18s, border-color .18s, background .18s;
}
.btn-secondary:hover { color: var(--ink-900); border-color: var(--warm-400); background: var(--warm-50); }

/* ── Slider ── */
.hero-slider {
  position: relative; z-index: 2;
  width: 100%; max-width: 920px;
  margin: 0 auto;
  /* arrows sit at -60px, give the hero section room */
}
/* hero-slider inherits overflow:visible from hero */
.slider-shell {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--warm-200);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

/* Browser chrome */
.browser-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: var(--warm-50);
  border-bottom: 1px solid var(--warm-200);
}
.chrome-dots { display: flex; gap: 5px; }
.chrome-dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.chrome-dots i:nth-child(1){background:#f97275} .chrome-dots i:nth-child(2){background:#fbbf24} .chrome-dots i:nth-child(3){background:#34d399}
.chrome-url {
  flex: 1; background: var(--white);
  border: 1px solid var(--warm-200); border-radius: 5px;
  padding: 4px 11px;
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-400);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-decoration: none; cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.chrome-url:hover {
  color: var(--ink-700);
  border-color: var(--warm-300);
  background: var(--warm-50);
}
.chrome-tag {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  padding: 2px 7px; border-radius: 3px;
  background: var(--green-soft); color: var(--green);
  border: 1px solid rgba(21,128,61,.15); letter-spacing: .06em;
}

/* Slide viewport */
.slide-viewport {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--warm-50) 0%, var(--warm-100) 100%);
}
.slide-viewport iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }
.slide-desktop { display: block; }
.slide-mobile  { display: none; }
@media (max-width: 899px) {
  .slide-desktop { display: none; }
  .slide-mobile  { display: block; }
}
.slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .5s cubic-bezier(.4,0,.2,1); pointer-events: none; }
.slide.on { opacity: 1; pointer-events: all; }

/* Floating HUD chips */
.hud {
  position: absolute; top: 12px; z-index: 10;
  font-family: var(--f-mono); font-size: 10px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--warm-200); border-radius: 5px;
  padding: 5px 9px; display: flex; align-items: center; gap: 5px;
  color: var(--ink-500);
}
.hud-l { left: 12px; }
.hud-r { right: 12px; text-align: right; }
.hud .dot { width: 5px; height: 5px; border-radius: 50%; background: #22c55e; animation: pulse-anim 2.2s infinite; flex-shrink: 0; }
.hud b { font-weight: 500; color: var(--ink-700); }

/* Slide: Birkin bag */
.bag-stage { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.bag { width: 220px; height: 200px; position: relative; cursor: grab; transition: transform .1s ease-out; }
.bag:active { cursor: grabbing; }
.bag-h { width: 86px; height: 34px; border: 4.5px solid #c08040; border-bottom: none; border-radius: 28px 28px 0 0; position: absolute; bottom: 188px; left: 50%; transform: translateX(-50%); transition: border-color .4s; }
.bag-f { width: 192px; height: 56px; background: linear-gradient(145deg,#d09050,#b07030); border-radius: 3px 3px 0 0; position: absolute; bottom: 138px; left: 50%; transform: translateX(-50%); transition: background .4s; }
.bag-k { width: 28px; height: 8px; background: linear-gradient(#e8d4a0,#c0a060); border-radius: 2px; position: absolute; bottom: 136px; left: 50%; transform: translateX(-50%); z-index: 2; }
.bag-b { width: 206px; height: 142px; background: linear-gradient(145deg,#c08040,#986020); border-radius: 3px 3px 6px 6px; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); box-shadow: inset 0 -14px 28px rgba(0,0,0,.1), 0 10px 32px rgba(0,0,0,.08); transition: background .4s; }
.bag-st { position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%); width: 176px; height: 1px; background: repeating-linear-gradient(90deg, rgba(0,0,0,.05) 0, rgba(0,0,0,.05) 3px, transparent 3px, transparent 7px); }

.swatches { position: absolute; bottom: 14px; right: 14px; display: flex; flex-direction: column; gap: 5px; z-index: 10; }
.sw { width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: border-color .15s, transform .12s; box-shadow: 0 2px 5px rgba(0,0,0,.12); }
.sw:hover { transform: scale(1.12); } .sw.on { border-color: var(--ink-900); }

/* Slide: Chain viz */
.chain-canvas { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 0 32px; width: 100%; }
.cn { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cn-box {
  width: 80px; height: 42px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  background: var(--white); border: 1px solid var(--warm-200);
  box-shadow: var(--shadow-xs);
  transition: transform .15s;
}
.cn-box:hover { transform: translateY(-2px); }
.cn.src .cn-box { border-color: var(--blue-border); color: var(--blue); background: var(--blue-soft); }
.cn.proc .cn-box { border-color: rgba(109,40,217,.15); color: var(--violet); background: var(--violet-soft); }
.cn.ai .cn-box { border-color: rgba(21,128,61,.15); color: var(--green); background: var(--green-soft); }
.cn.out .cn-box { border-color: rgba(180,83,9,.15); color: var(--amber); background: var(--amber-soft); }
.cn-label { font-family: var(--f-mono); font-size: 8px; color: var(--ink-400); letter-spacing: .08em; text-transform: uppercase; }

.cn-arrow { width: 20px; height: 2px; margin-bottom: 14px; position: relative; overflow: visible; background: var(--warm-100); border-radius: 1px; }
.cn-flow { position: absolute; height: 2px; border-radius: 1px; width: 0; animation: flow 2s ease-in-out infinite; }
@keyframes flow { 0%{width:0;opacity:0;left:0} 20%{opacity:1} 80%{opacity:1} 100%{width:100%;opacity:0;left:0} }

/* Slide: GeoIP */
.geo-slide { display: flex; width: 100%; height: 100%; }

.geo-image-panel {
  flex: 1; position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--warm-50) 0%, var(--warm-100) 100%);
  display: flex; align-items: center; justify-content: center;
}
.geo-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: opacity .35s ease;
  display: block;
}
.geo-img.loading { opacity: 0; }
.geo-loading-pulse {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s; pointer-events: none;
}
.geo-loading-pulse.on { opacity: 1; }
.geo-pulse-ring {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--warm-300); border-top-color: var(--ink-500);
  animation: geo-spin .7s linear infinite;
}
@keyframes geo-spin { to { transform: rotate(360deg); } }

.geo-panel {
  width: 188px; flex-shrink: 0;
  border-left: 1px solid var(--warm-200);
  background: var(--white);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.geo-panel-head {
  padding: 13px 16px 12px;
  border-bottom: 1px solid var(--warm-100);
}
.geo-panel-eyebrow {
  font-family: var(--f-mono); font-size: 7.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-400); margin-bottom: 3px;
}
.geo-panel-title {
  font-family: var(--f-serif); font-size: 14px; font-weight: 400;
  color: var(--ink-900); letter-spacing: -.01em; line-height: 1.2;
}
.geo-panel-desc {
  font-size: 10px; font-weight: 300; color: var(--ink-500);
  line-height: 1.5; margin-top: 6px;
}
.geo-panel-body { flex: 1; padding: 10px 0; overflow-y: auto; }
.geo-region-label {
  font-family: var(--f-mono); font-size: 7px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-400); padding: 6px 14px 4px;
}
.geo-loc-btn {
  display: flex; align-items: center; gap: 9px;
  width: 100%; padding: 7px 14px;
  background: transparent; border: none; cursor: pointer;
  text-align: left; transition: background .15s;
  position: relative;
}
.geo-loc-btn:hover { background: var(--warm-50); }
.geo-loc-btn.on { background: var(--warm-50); }
.geo-loc-btn.on::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--ink-700); border-radius: 0 1px 1px 0;
}
.geo-flag { font-size: 14px; line-height: 1; flex-shrink: 0; }
.geo-loc-name { font-size: 11px; font-weight: 500; color: var(--ink-800); line-height: 1.2; }
.geo-loc-code { font-family: var(--f-mono); font-size: 8px; color: var(--ink-400); letter-spacing: .06em; }
.geo-panel-footer {
  border-top: 1px solid var(--warm-100);
  padding: 10px 14px;
  flex-shrink: 0;
}
.geo-url-display {
  font-family: var(--f-mono); font-size: 7.5px; color: var(--ink-400);
  line-height: 1.5; word-break: break-all;
  background: var(--warm-50); border: 1px solid var(--warm-200);
  border-radius: 5px; padding: 6px 8px;
}
.geo-url-display em { color: var(--blue); font-style: normal; font-weight: 500; }

/* Slide: 3D ring */
.ring-stage { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.ring-orbit { width: 180px; height: 180px; position: relative; animation: bob 4.5s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-7px) rotate(1deg)} }
.ring-circle { position: absolute; border-radius: 50%; inset: 0; }
.rc1 { border: 1px solid var(--warm-300); animation: rspin 22s linear infinite; }
.rc2 { inset: 22px; border: 1px dashed var(--warm-200); animation: rspin 35s linear infinite reverse; }
.rc-orb { width: 6px; height: 6px; background: var(--blue-mid); border-radius: 50%; position: absolute; top: -3px; left: 50%; margin-left: -3px; box-shadow: 0 0 8px var(--blue-mid); }
@keyframes rspin { to { transform: rotate(360deg); } }
.ring-core {
  position: absolute; inset: 30px;
  border-radius: 50%; background: var(--white);
  border: 1px solid var(--warm-200);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ring-core::after {
  content: '';
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, rgba(26,86,219,.04), rgba(109,40,217,.04), rgba(180,83,9,.04), rgba(26,86,219,.04));
  animation: rspin 12s linear infinite;
}
.ring-inner {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-accent));
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(12,31,61,.3);--amber:#f59e0b;}
.ring-inner span { font-family: var(--f-mono); font-size: 8px; font-weight: 600; color: rgba(255,255,255,.9); letter-spacing: .04em; }

/* ── Slider controls ── */

/* Desktop: arrows float on sides of the slider shell */
.sl-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--warm-200);
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
#sPrev { left: -60px; }
#sNext { right: -60px; }
.sl-btn:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(12,31,61,.15);
  transform: translateY(-50%) scale(1.08);
}
.sl-btn svg { width: 18px; height: 18px; color: var(--ink-700); stroke-width: 1.8; }

/* Pips + label bar — hidden on desktop, shown on mobile */
.sl-controls { display: none; }
.sl-pips { display: flex; gap: 8px; }
.sl-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--warm-300); cursor: pointer;
  transition: background .2s, transform .15s;
}
.sl-pip.on { background: var(--navy); transform: scale(1.4);--amber:#f59e0b;}
.sl-label {
  font-family: var(--f-mono); font-size: 10px; color: var(--ink-400);
  min-width: 160px; text-align: center; letter-spacing: .06em;
  text-transform: uppercase;
}

/* Mobile nav bar: hide floating arrows, show inline bar below slider */





/* ── Deeplinks ─────────────────────────────────────────────────────────
   Each link type inherits its context's type style exactly.
   Hover: amber underline — consistent with the accent system site-wide.
   No borders, backgrounds, or padding that would disturb layout rhythm.
   ──────────────────────────────────────────────────────────────────── */

/* Capability rail items — already styled as flex column tiles */
a.cap-item {
  text-decoration: none;
  transition: opacity .2s;
}
a.cap-item:hover { opacity: .7; }

/* Testimonial industry tags — inherit .testi-tag mono style exactly */
a.testi-tag {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}
a.testi-tag:hover { color: var(--ink-700); }

/* Ecosystem card title links — on dark navy background */
.eco-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.eco-title-link:hover .eco-title {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 3px;
}

/* Panel text deeplinks — after tag rows in platform tabs and depth card footers */
.panel-link {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-500);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
  margin-top: 20px;
}
.panel-link:hover {
  color: var(--ink-900);
  border-bottom-color: var(--amber);
}
.panel-link svg {
  width: 11px; height: 11px;
  flex-shrink: 0;
  position: relative; top: 1px;
  transition: transform .15s;
}
.panel-link:hover svg { transform: translateX(3px); }

/* Multiple panel links side by side — separated from tag row by a hairline */
.panel-link-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--warm-100);
  padding-top: 16px;
}
.panel-link-row .panel-link { margin-top: 0; }

/* Service track heading links — inherit Instrument Serif h3 style exactly */
.track-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .15s;
}
.track-link:hover { border-bottom-color: var(--amber); }

/* Section-footer links — centred below a section, muted until hovered */
.section-text-link {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-400);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.section-text-link:hover {
  color: var(--ink-700);
  border-bottom-color: var(--amber);
}
.section-text-link svg {
  width: 11px; height: 11px;
  flex-shrink: 0;
  position: relative; top: 1px;
  transition: transform .15s;
}
.section-text-link:hover svg { transform: translateX(3px); }

/* Named clients footnote beneath testimonials */
.testi-clients {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-400);
  text-align: center;
  margin-top: 28px;
}
.testi-clients a {
  color: var(--ink-500);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-200);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.testi-clients a:hover {
  color: var(--ink-800);
  border-bottom-color: var(--amber);
}

.section-footer-link {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  /* Hide the floating absolute-positioned arrows */
  #sPrev, #sNext { display: none; }

  /* Show the controls bar — just the two arrow buttons, centred */
  .sl-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
  }

  /* Inline prev/next buttons */
  .sl-mob-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--warm-200);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background .15s, border-color .15s, box-shadow .15s, transform .1s;
  }
  .sl-mob-btn:hover { background: var(--warm-50); border-color: var(--warm-300); box-shadow: 0 3px 12px rgba(0,0,0,.12); }
  .sl-mob-btn:active { transform: scale(.95); }
  .sl-mob-btn svg { width: 16px; height: 16px; color: var(--ink-700); stroke-width: 2; }

  /* Hide pips and label */
  .sl-pips { display: none; }
  .sl-label { display: none; }
}

/* ═══════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  overflow: hidden;--amber:#f59e0b;}
.cap-rail {
  display: flex; align-items: stretch;
  max-width: 1180px; margin: 0 auto;
  padding: 0 52px;
}
.cap-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px 12px;
  border-right: 1px solid rgba(255,255,255,.1);
  gap: 9px;
  transition: background .2s;
}
.cap-item:last-child { border-right: none; }
.cap-item:hover { background: rgba(255,255,255,.05); }
.cap-icon {
  width: 20px; height: 20px;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}
.cap-label {
  font-family: var(--f-mono);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  text-align: center; white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   LOGO BAND
   ═══════════════════════════════════════════════════════ */
.logo-band {
  overflow: hidden; position: relative;
  padding: 16px 0;
  background: var(--white);
  border-bottom: 1px solid var(--warm-200);
}
.logo-band::before, .logo-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.logo-band::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.logo-band::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.logo-track { display: flex; width: max-content; align-items: center; animation: lscroll 130s linear infinite; touch-action: pan-y; will-change: transform; flex-shrink: 0; }
.logo-group { display: flex; flex-shrink: 0; align-items: center; }
.logo-band:hover .logo-track { animation-play-state: paused; }
.logo-band-testi {
  border-bottom: none;
  border-top: none;
  margin-top: 40px;
  background: var(--white);
  padding: 10px 0;
}
.logo-band-testi .logo-pill {
  background: var(--warm-50);
  border-color: var(--warm-200);
}
.logo-band-dark:hover .logo-track { animation-play-state: paused; }
@keyframes lscroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.logo-img {
  height: 32px; width: auto; object-fit: contain;
  flex-shrink: 0; padding: 0 32px;
  opacity: .55; filter: grayscale(1);
  transition: opacity .2s, filter .2s;
  display: block;
}
.logo-img:hover { opacity: .85; filter: grayscale(0); }
.logo-group-dark { /* duration/delay set dynamically by JS */ }
.logo-name {
  flex-shrink: 0; padding: 0 28px;
  font-family: var(--f-sans); font-weight: 500; font-size: 13.5px;
  color: var(--warm-300); white-space: nowrap;
  transition: color .2s;
}
.logo-name:hover { color: var(--ink-500); }

/* ═══════════════════════════════════════════════════════
   STATEMENT
   ═══════════════════════════════════════════════════════ */
.statement {
  display: flex; flex-direction: row; align-items: center;
  gap: 64px;
  padding: 80px 52px;
  max-width: 1180px; margin: 0 auto;
  background: var(--warm-100);
  overflow: hidden;
}
.statement-outer {
  background: var(--warm-100);
  border-top: 1px solid var(--warm-200);
  border-bottom: 1px solid var(--warm-200);
  overflow: hidden;
  max-width: 100vw;
}

/* ── Orbit SVG canvas ── */
.stmt-orbit {
  position: relative;
  width: min(520px, 48vw); height: min(520px, 48vw);
  flex-shrink: 0;
  opacity: 0; transition: opacity 1.4s ease;
}
.statement.alive .stmt-orbit { opacity: 1; }

/* SVG fills orbit box */
.orbit-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

/* Rings — progressively stronger as they approach center */
.or1 { stroke: var(--warm-400); stroke-width: 1.2; fill: none; }
.or2 { stroke: var(--warm-300); stroke-width: 1; fill: none; }
.or3 { stroke: var(--ink-400);  stroke-width: .9; fill: none; opacity: .45; }
.or4 { stroke: var(--ink-400);  stroke-width: 1; fill: none; opacity: .45; stroke-dasharray: 4 8; }

/* Spokes — slightly more visible, dashed */
.spoke { stroke: var(--warm-300); stroke-width: .8; stroke-dasharray: 3 6; opacity: .7; }

/* Pulse dots */
.pulse-dot { opacity: 0; }
.pd-blue   { fill: var(--blue-mid);  filter: drop-shadow(0 0 6px rgba(37,99,235,.85)); }
.pd-teal   { fill: var(--teal);      filter: drop-shadow(0 0 6px rgba(14,116,144,.75)); }
.pd-green  { fill: var(--green);     filter: drop-shadow(0 0 6px rgba(21,128,61,.75)); }
.pd-violet { fill: var(--violet);    filter: drop-shadow(0 0 6px rgba(109,40,217,.75)); }
.pd-amber  { fill: var(--amber);     filter: drop-shadow(0 0 6px rgba(180,83,9,.75)); }
.pd-in     { fill: var(--ink-400);   filter: drop-shadow(0 0 3px rgba(100,100,90,.5)); }

/* Node chips — more depth, stronger border */
.o-node {
  position: absolute;
  will-change: opacity;
  padding: 6px 12px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--warm-300);
  box-shadow: 0 2px 8px rgba(14,14,12,.10), 0 1px 2px rgba(14,14,12,.06);
  white-space: nowrap; transform: translate(-50%, -50%);
  animation: nfade 6s ease-in-out infinite;
}
@keyframes nfade { 0%,100%{opacity:.6} 50%{opacity:1} }

/* Core — stronger glow, larger halo */
.orbit-core-outer {
  fill: var(--warm-50); stroke: var(--warm-300); stroke-width: 1.5;
  filter: drop-shadow(0 6px 24px rgba(14,14,12,.14));
}
.orbit-core-inner { animation: cpulse 3.5s ease-in-out infinite; }
@keyframes cpulse {
  0%,100% { filter: drop-shadow(0 0 0px rgba(12,31,61,0)); }
  50%      { filter: drop-shadow(0 0 22px rgba(12,31,61,.4)); }
}
.orbit-core-label {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  fill: rgba(255,255,255,.95); letter-spacing: .05em;
  dominant-baseline: central; text-anchor: middle;
}

/* ── Text block — left column ── */
.stmt-content {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}
.stmt-stats {
  display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; align-items: flex-start;
}
.stmt-stat-num {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); color: var(--ink-900);
  letter-spacing: -.02em; line-height: 1; display: block;
}
.stmt-stat-label {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-400); margin-top: 5px; display: block;
}
.stmt-spine {
  font-size: 15px; font-weight: 300; color: var(--ink-600);
  line-height: 1.7; max-width: min(480px, 100%);
  margin: 28px 0 0; text-align: left;
  border-top: 1px solid var(--warm-200); padding-top: 24px;
}
.stmt-overline {
  font-family: var(--f-mono); font-size: 9px; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-400);
  margin-bottom: 20px; display: block;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
}

.statement.alive .stmt-overline { opacity: 1; transform: none; }
.stmt-h {
  display: block; opacity: 0; transform: translateY(20px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.statement.alive .stmt-h { opacity: 1; transform: none; }
.sh-light {
  font-family: var(--f-serif); font-weight: 400; font-style: italic;
  font-size: clamp(20px, 2.6vw, 38px); color: var(--ink-400); line-height: 1.2;
  transition-delay: .12s;
}

.sh-bold {
  font-family: var(--f-serif); font-weight: 400; font-style: normal;
  font-size: clamp(28px, 4vw, 56px); color: var(--ink-900); line-height: 1.1;
  transition-delay: .48s;
}

/* ═══════════════════════════════════════════════════════
   PLATFORM
   ═══════════════════════════════════════════════════════ */
.platform { padding: 104px 0; background: var(--white); border-bottom: 1px solid var(--warm-200); }

.section-header { margin-bottom: 44px; }
.deploy-business-lead {
  font-size: 17px; font-weight: 400; color: var(--ink-800);
  margin-bottom: 10px; line-height: 1.4; letter-spacing: -.01em;
}
.section-tag { font-family: var(--f-mono); font-size: 9px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 10px; }
.section-header h2 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(28px,3.2vw,42px); color: var(--ink-900); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.section-header p { font-size: 14px; font-weight: 300; color: var(--ink-500); max-width: 480px; line-height: 1.6; }

/* Tab system */
.tab-row {
  display: flex;
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: calc(var(--r-md) + 2px);
  padding: 3px;
  gap: 2px;
  margin-bottom: 44px;
  box-shadow: 0 2px 8px rgba(12,31,61,.2), 0 1px 2px rgba(12,31,61,.12);--amber:#f59e0b;}
.tab-btn {
  flex: 1; padding: 13px 20px;
  font-family: var(--f-sans); font-size: 13px; font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.55);
  border: none; border-radius: 7px;
  background: transparent;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
}
.tab-btn:hover:not(.on) {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
.tab-btn.on {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(12,31,61,.18), 0 2px 8px rgba(0,0,0,.08);
}

.tab-panel { display: none; }
.tab-panel.on { display: block; }

/* Two-column panel layout */
.panel-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.panel-text h3 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(22px,2.6vw,32px); color: var(--ink-900); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 14px; }
.panel-text p { font-size: 14px; font-weight: 300; color: var(--ink-500); line-height: 1.6; margin-bottom: 12px; }
.panel-text strong { font-weight: 500; color: var(--ink-700); }

.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag {
  font-family: var(--f-mono); font-size: 10px;
  padding: 4px 10px; border-radius: var(--r-sm);
  border: 1px solid var(--warm-200); color: var(--ink-500);
  background: var(--white); letter-spacing: .04em;
}

/* Code block */
.code-card {
  background: var(--white); border: 1px solid var(--warm-200);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.code-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; border-bottom: 1px solid var(--warm-200);
  background: var(--warm-50);
}
.code-header span { font-family: var(--f-mono); font-size: 10px; color: var(--ink-400); }
.code-body { padding: 20px; font-family: var(--f-mono); font-size: 11.5px; line-height: 1.7; color: var(--ink-600); }
.kw { color: var(--blue); font-weight: 500; }
.str { color: var(--green); }
.fn { color: var(--amber); font-weight: 500; }
.cm { color: var(--warm-400); font-style: italic; }
.vr { color: var(--violet); }

/* AI pipeline card */
.pipeline-card {
  background: var(--white); border: 1px solid var(--warm-200);
  border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-sm);
}
.pipe-step {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px; border-radius: var(--r-md);
  border: 1px solid var(--warm-100); background: var(--warm-50);
  margin-bottom: 4px; transition: background .2s, border-color .2s;
}
.pipe-step:hover { background: var(--warm-100); border-color: var(--warm-200); }
.pipe-step:last-child { margin-bottom: 0; }
.pipe-n {
  width: 22px; height: 22px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 9px; font-weight: 600; flex-shrink: 0;
}
.pipe-text strong { display: block; font-size: 12px; font-weight: 500; color: var(--ink-800); font-family: var(--f-mono); }
.pipe-text span { font-size: 11px; font-weight: 300; color: var(--ink-400); }
.pipe-connector { height: 4px; width: 1.5px; background: var(--warm-100); margin: 0 0 0 20px; position: relative; overflow: hidden; }
.pipe-connector::after { content: ''; position: absolute; width: 100%; height: 5px; background: var(--blue-mid); animation: aflow 2.2s ease-in-out infinite; border-radius: 1px; }
@keyframes aflow { 0%{top:-5px;opacity:0} 40%{opacity:1} 100%{top:5px;opacity:0} }

/* Architecture grid */
.arch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.arch-card {
  background: var(--white); border: 1px solid var(--warm-200);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s, transform .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.arch-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--warm-300); }
.arch-illus {
  width: 100%; height: 130px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.arch-illus svg { width: 100%; height: 100%; }
.arch-card-body { padding: 20px 20px 24px; }
.arch-card h4 { font-family: var(--f-serif); font-weight: 400; font-size: 19px; color: var(--ink-900); margin-bottom: 6px; letter-spacing: -.01em; }
.arch-card p { font-size: 13.5px; font-weight: 300; color: var(--ink-500); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   DEPLOY & SERVICES — Interactive spotlight panel
   ═══════════════════════════════════════════════════════ */
.services {
  padding: 104px 0;
  background: var(--warm-100);
  border-bottom: 1px solid var(--warm-200);
}

/* Two-column: tab list left | spotlight right */
.services-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border: 1px solid var(--warm-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 520px;
}

/* ── RIGHT: spotlight panel ── */
.sc-spotlight {
  background: var(--navy);
  padding: 52px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  height: 100%;--amber:#f59e0b;}
.sc-spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.sc-spotlight-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,74,128,.55) 0%, transparent 65%);
  bottom: -120px; right: -120px; pointer-events: none;
  transition: background .5s ease;
}

/* Content panels — only active one visible */
.sc-panel { display: none; flex-direction: column; position: relative; z-index: 1; }
.sc-panel.active { display: flex; animation: panelIn .35s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.sc-panel.active.settled { will-change: auto; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.sc-panel-tag {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 28px;
}
.sc-panel h3 {
  font-family: var(--f-serif); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 2.8vw, 42px); line-height: 1.05; letter-spacing: -.02em;
  color: #fff; margin-bottom: 14px;
}
.sc-panel-desc {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.88);
  line-height: 1.6; max-width: 340px; flex: 1;
}

/* Big stat */
.sc-panel-stat {
  margin-top: 32px; margin-bottom: 24px;
  display: flex; align-items: baseline; gap: 10px;
}
.sc-panel-stat-num {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 60px; line-height: 1; letter-spacing: -.03em; color: #fff;
}
.sc-panel-stat-label {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,.7); letter-spacing: .12em;
  text-transform: uppercase; line-height: 1.5;
}

/* Flow diagram */
.sc-flow {
  display: flex; align-items: center;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.sc-flow-node {
  padding: 5px 11px; border-radius: 4px;
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
}
.n-dim  { background: rgba(255,255,255,.06); color: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.08); }
.n-mid  { background: rgba(37,99,235,.18);   color: #93b4f8;               border: 1px solid rgba(37,99,235,.28); }
.n-mid2 { background: rgba(109,40,217,.18);  color: #c4b5fd;               border: 1px solid rgba(109,40,217,.28); }
.n-lf   { background: rgba(255,255,255,.11); color: #fff;         border: 1px solid rgba(255,255,255,.18); }
.sc-flow-arr {
  flex: 1; height: 1px; max-width: 32px; margin: 0 8px;
  background: rgba(255,255,255,.08); position: relative; overflow: hidden;
}
.sc-flow-arr::after {
  content: ''; position: absolute; top: 0; height: 100%; width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: flowpulse 2.2s ease-in-out infinite;
}
@keyframes flowpulse { 0%{left:-50%} 100%{left:150%} }

/* Bullet list inside spotlight */
.sc-panel-bullets { display: flex; flex-direction: column; margin-top: 24px; }
.sc-panel-b {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.88);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
}
.sc-panel-b:last-child { border-bottom: none; }
.sc-panel-check {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.sc-panel-check svg { width: 8px; height: 8px; color: rgba(255,255,255,.85); }

/* ── LEFT: tab list ── */
.sc-tabs {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--warm-200);
  height: 100%;
}

.sc-tab {
  padding: 0 32px;
  border-bottom: 1px solid var(--warm-200);
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: background .2s;
  user-select: none;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.sc-tab:last-child { border-bottom: none; }
.sc-tab:hover { background: var(--warm-50); }
.sc-tab.active { background: var(--off-white); }

/* Active indicator stripe */
.sc-tab::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 3px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
  border-radius: 2px 0 0 2px;
}
.sc-tab.active::before { transform: scaleY(1); }
.sc-tab[data-id="saas"].active::before      { background: var(--blue-mid); }
.sc-tab[data-id="appliance"].active::before { background: var(--teal); }
.sc-tab[data-id="secure"].active::before    { background: var(--violet); }
.sc-tab[data-id="managed"].active::before   { background: var(--green); }
.sc-tab[data-id="hybrid"].active::before    { background: var(--amber); }

.sc-tab-num {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-400); margin-bottom: 6px;
  transition: color .2s;
}
.sc-tab.active .sc-tab-num { color: var(--ink-600); }

.sc-tab-title {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 20px; color: var(--ink-700);
  letter-spacing: -.01em; line-height: 1.15; margin-bottom: 5px;
  transition: color .2s;
}
.sc-tab.active .sc-tab-title { color: var(--ink-900); }

.sc-tab-sub {
  font-size: 12px; font-weight: 300; color: var(--ink-400);
  line-height: 1.5;
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.16,1,.3,1), opacity .3s;
  opacity: 0;
}
.sc-tab.active .sc-tab-sub { max-height: 60px; opacity: 1; }

.sc-tab-arrow {
  position: absolute; right: 24px; top: 50%; margin-top: -8px;
  width: 16px; height: 16px; color: var(--warm-300);
  transition: color .2s, transform .3s cubic-bezier(.16,1,.3,1);
}
.sc-tab.active .sc-tab-arrow { color: var(--ink-500); transform: translateX(-3px); }

/* ═══════════════════════════════════════════════════════
   BUSINESS IMPACT (formerly Ecosystem)
   ═══════════════════════════════════════════════════════ */
.ecosystem {
  background: var(--white);
  padding: 104px 0 80px;
  border-bottom: 1px solid var(--warm-200);
}

/* Header */
.eco-header {
  display: block;
  margin-bottom: 64px;
}
.eco-text .section-tag { color: var(--amber); }
.eco-text h2 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(26px, 3.2vw, 48px);
  color: var(--ink-900); letter-spacing: -.025em; line-height: 1.1; margin-bottom: 20px;
}
.eco-text p {
  font-size: 15px; font-weight: 300;
  color: var(--ink-500); line-height: 1.7; max-width: 640px;
}

/* Three outcome cards — horizontal rule layout */
.eco-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-200);
  border: 1px solid var(--warm-200);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.eco-card {
  background: var(--white);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  transition: background .25s;
}
.eco-card:hover { background: var(--warm-50); }

.eco-card-num {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; color: var(--ink-400);
  margin-bottom: 20px;
}

.eco-card-body { display: flex; flex-direction: column; flex: 1; }

.eco-card-title-link { text-decoration: none; }
.eco-card-title {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-900); letter-spacing: -.015em; line-height: 1.2;
  margin-bottom: 16px;
  transition: color .15s;
}
.eco-card-title-link:hover .eco-card-title { color: var(--navy); }

.eco-card-desc {
  font-size: 14px; font-weight: 300;
  color: var(--ink-500); line-height: 1.65;
  flex: 1; margin-bottom: 32px;
}

/* Metric accent — the payoff at the bottom of each card */
.eco-card-metric {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--warm-200);
  margin-top: auto;
}
.eco-card-metric-num {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(28px, 2.4vw, 36px);
  color: var(--navy); line-height: 1; letter-spacing: -.02em;
}
.eco-card-metric-label {
  font-family: var(--f-mono); font-size: 9px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-400); line-height: 1.4;
}

/* .hc-btn and body.hc tokens moved to global.css */

/* HC overrides — high contrast surfaces */

body.hc .ecosystem { background: var(--white); }
body.hc .stats-bar  { background: #001830; } /* cap rail — slightly deeper navy */
body.hc .eco-text p { color: var(--ink-600); }
body.hc .eco-card-desc { color: var(--ink-600); }
body.hc .eco-card-num { color: var(--ink-500); }
body.hc .eco-card-title { color: var(--ink-900); }
body.hc .eco-cards { background: var(--warm-300); }
body.hc .eco-card { background: var(--white); }
body.hc .eco-card-metric { border-top-color: var(--warm-300); }
body.hc .sc-featured, body.hc .ps-header, body.hc .ps-statement { background: #00102a;--amber:#f59e0b;}
body.hc .sc-panel-desc { color: rgba(255,255,255,.78); }
body.hc .sc-featured-desc { color: rgba(255,255,255,.75); }
body.hc .sc-tab { color: var(--ink-900); }
body.hc .sc-tab-title { color: var(--ink-800); }
body.hc .eco-text .section-tag { color: var(--amber); }
body.hc .section-tag { color: var(--ink-500); }
body.hc .section-header p { color: var(--ink-600); }
body.hc .service-card > p, body.hc .ps-track-desc, body.hc .ps-svc-sub, body.hc .sc-card-desc { color: var(--ink-700); }
body.hc .logo-name, body.hc .logo-name-dark { color: rgba(0,0,0,.55); }
body.hc .logo-name-dark { color: rgba(255,255,255,.6); }
body.hc .cta-section { background: #00102a; overflow: hidden;--amber:#f59e0b;}
body.hc .hero-sub { color: rgba(255,255,255,.92); }
body.hc .tab-content p { color: var(--ink-600); }
body.hc .nav { background: rgba(255,255,255,.98); border-bottom-color: var(--warm-200); }
body.hc .result-detail p { color: var(--ink-600); }
/* Ensure all text on white bg meets 4.5:1 minimum */
/* Blanket rules moved to precise per-context block below */
/* ── HC: precise per-context overrides ──
   Rule: blanket h/p rules only apply to LIGHT backgrounds.
   Dark sections (ecosystem, cta, ps-statement, sc-panel) opt-out explicitly.
   ─────────────────────────────────────────────────────── */

/* Light backgrounds: headings fully dark, body text ink-700 */
body.hc h1, body.hc h2, body.hc h3, body.hc h4 { color: var(--ink-900); }
body.hc p, body.hc li { color: var(--ink-700); }

/* Statement section (white bg): sh-light/sh-light2 stay readable ink-600, sh-bold stays ink-900 */
body.hc .sh-light, body.hc .sh-light2 { color: var(--ink-600) !important; }
body.hc .sh-bold { color: var(--ink-900) !important; }
body.hc .stmt-stats {
  display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; align-items: flex-start;
}


/* Ecosystem section (navy bg): all text stays white/near-white */
body.hc .ecosystem h1,
body.hc .ecosystem h2,
body.hc .ecosystem h3 { color: #ffffff !important; }
body.hc .eco-title { color: #ffffff !important; }
body.hc .eco-n { color: rgba(255,255,255,.6) !important; }
body.hc .eco-desc { color: rgba(255,255,255,.88) !important; }
body.hc .eco-text p { color: rgba(255,255,255,.88) !important; }

/* PS statement panel (navy bg) */
body.hc .ps-statement h3 { color: #ffffff !important; }
body.hc .ps-statement p { color: rgba(255,255,255,.85) !important; }
body.hc .ps-statement-tag { color: rgba(255,255,255,.55) !important; }

/* Services spotlight panel (navy bg) */
body.hc .sc-panel h3 { color: #ffffff !important; }
body.hc .sc-panel-desc { color: rgba(255,255,255,.85) !important; }
body.hc .sc-featured-desc { color: rgba(255,255,255,.8) !important; }

/* CTA section (navy bg) */
body.hc .cta-section h2,
body.hc .cta-section h3 { color: #ffffff !important; }
body.hc .cta-section p { color: rgba(255,255,255,.8) !important; }
body.hc .hero-sub { color: rgba(255,255,255,.82) !important; }

/* Light section body copy (platform, deploy, services) */
body.hc .section-header p,
body.hc .tab-content p,
body.hc .result-detail p,
body.hc .ps-track-desc,
body.hc .ps-svc-sub,
body.hc .sc-card-desc { color: var(--ink-700) !important; }

/* Dark logo band */
.logo-band-dark {
  overflow: hidden; position: relative; height: 80px; margin-top: 56px;
  display: flex; align-items: center;
  background: var(--warm-100);
  border-top: none;
}
.logo-band-dark::before, .logo-band-dark::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.logo-band-dark::before { left: 0; background: linear-gradient(90deg, var(--warm-100), transparent); }
.logo-band-dark::after { right: 0; background: linear-gradient(270deg, var(--warm-100), transparent); }

/* Caption under the platform logo carousel */
.logo-band-caption {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-500);
  text-align: center;
  max-width: 640px;
  margin: 24px auto 0;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .logo-band-caption { font-size: 12.5px; margin-top: 20px; }
}
body.hc .logo-band-caption { color: var(--ink-700); }
.logo-name-dark {
  flex-shrink: 0; padding: 0 28px;
  font-family: var(--f-sans); font-weight: 400; font-size: 13px;
  color: rgba(255,255,255,.7); white-space: nowrap; line-height: 52px;
  transition: color .2s;
}
.logo-name-dark:hover { color: rgba(255,255,255,.4); }
.logo-pill {
  flex-shrink: 0; margin: 0 20px;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 8px;
  width: 120px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  opacity: .7;
  transition: opacity .2s, border-color .2s;
}
.logo-pill:hover { opacity: 1; }
.logo-img-dark {
  max-width: 88px; max-height: 24px;
  width: auto; height: auto;
  object-fit: contain; display: block;
  filter: grayscale(1);
  transition: filter .2s;
}
.logo-pill:hover .logo-img-dark { filter: grayscale(0); }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials {
  background: var(--white);
  padding: 80px 0 96px;
  border-top: 1px solid var(--warm-200);
  border-bottom: 1px solid var(--warm-200);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.testi-card {
  padding: 36px 40px 40px;
  border: 1px solid var(--warm-200);
  border-radius: 0;
  position: relative;
  background: var(--white);
  transition: background .2s;
}
.testi-card:first-child { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.testi-card:last-child  { border-radius: 0 var(--r-xl) var(--r-xl) 0; }
.testi-card:hover { background: var(--warm-50); }
.testi-mark {
  font-family: var(--f-serif); font-size: 48px; font-weight: 400;
  color: var(--warm-300); line-height: .8;
  margin-bottom: 16px; display: block;
  user-select: none;
}
.testi-quote {
  font-size: 14.5px; font-weight: 300; color: var(--ink-700);
  line-height: 1.7; margin-bottom: 28px;
  font-style: italic;
}
.testi-divider {
  width: 32px; height: 1px;
  background: var(--warm-300);
  margin-bottom: 20px;
}
.testi-name {
  font-size: 12px; font-weight: 500; color: var(--ink-700); letter-spacing: -.01em;
}
.testi-role {
  font-size: 11px; font-weight: 300; color: var(--ink-400);
  font-family: var(--f-mono); letter-spacing: .04em;
}
.testi-tag {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-400);
  border: 1px solid var(--warm-200);
  padding: 3px 8px; border-radius: 20px;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card:first-child, .testi-card:last-child { border-radius: var(--r-xl); }
}
/* ═══════════════════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   PROFESSIONAL SERVICES
   ═══════════════════════════════════════════════════════ */
.ps-section {
  padding: 104px 0 104px;
  background: var(--warm-100);
  border-top: 1px solid var(--warm-200);
  border-bottom: 1px solid var(--warm-200);
}

/* ── Intro header (standard wrap) ── */
.ps-intro {
  margin-bottom: 52px;
}
.ps-intro h2 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--ink-900); letter-spacing: -.025em; line-height: 1.1;
  margin-bottom: 12px;
}
.ps-intro-desc {
  font-size: 14px; font-weight: 300; color: var(--ink-500);
  line-height: 1.6; max-width: 560px;
}

/* ── Master panel: bordered card, full wrap width ── */
.ps-master {
  border: 1px solid var(--warm-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}

/* Top row: dark statement col + credential cols */
.ps-top {
  display: grid;
  grid-template-columns: 1fr 200px 200px 200px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  min-height: 180px;
}
.ps-statement {
  background: var(--navy);
  padding: 0;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px;--amber:#f59e0b;}
.ps-photo {
  position: absolute; inset: 0;
}
.ps-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.48) saturate(.7);
  display: block;
}
.ps-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(12,31,61,.1) 0%, rgba(12,31,61,.88) 65%);
}
.ps-statement-inner {
  position: relative; z-index: 2;
  padding: 36px 40px;
  display: flex; flex-direction: column;
}
.ps-statement::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.ps-statement-glow {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,74,128,.5) 0%, transparent 65%);
  bottom: -80px; right: -60px; pointer-events: none;
}
.ps-statement-tag {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.82); margin-bottom: 14px;

}
.ps-statement h3 {
  font-family: var(--f-serif); font-weight: 400; font-style: italic;
  font-size: clamp(24px, 2.6vw, 38px); line-height: 1.08;
  color: #fff; margin-bottom: 10px;

}
.ps-statement p {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.88);
  line-height: 1.6; max-width: 340px;

}
.ps-top-div { display: none; }
.ps-cred {
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--navy);
  border-left: 1px solid rgba(255,255,255,.07);--amber:#f59e0b;}
.ps-cred-num {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 38px; color: #fff; line-height: 1;
  letter-spacing: -.03em; margin-bottom: 5px;
}
.ps-cred-label {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,.88); line-height: 1.5;
}

/* ── Three track rows with flow connector ── */
/* ── Track rows ── */
.ps-track {
  display: grid;
  grid-template-columns: 225px 1fr;
  position: relative;
}

/* Straight rule on the label side only */
.ps-track + .ps-track .ps-track-label::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: -1px; /* extend 1px to overlap border-right */
  height: 1px;
  background: var(--warm-100);
}

/* Wave across the tile side */
.ps-track + .ps-track::after {
  content: '';
  position: absolute;
  top: -9px;
  left: 200px;
  right: 0;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 18' preserveAspectRatio='none'%3E%3Cpath d='M0,9 C75,1 150,17 225,9 C300,1 375,17 450,9 C525,1 600,17 675,9 C750,1 825,17 900,9 C975,1 1050,17 1125,9 C1162,3 1185,13 1200,9' fill='none' stroke='%23dddad0' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
}

.ps-track-label {
  padding: 24px 20px 24px 28px;
  border-right: 1px solid var(--warm-200);
  background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
/* Thin left accent per stage */
.ps-track:nth-child(2) .ps-track-label { border-left: 2px solid var(--violet); }
.ps-track:nth-child(3) .ps-track-label { border-left: 2px solid var(--blue-mid); }
.ps-track:nth-child(4) .ps-track-label { border-left: 2px solid var(--teal); }

.ps-track-eyebrow {
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 6px; display: block;
}
.ps-track h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 17px; color: var(--ink-900);
  letter-spacing: -.01em; line-height: 1.2; margin: 0;
}
.ps-track-desc { display: none; }

/* ── Horizontal tile strip ── */
.ps-services {
  display: flex;
}
.ps-svc {
  flex: 1;
  padding: 20px 18px;
  border-right: 1px solid var(--warm-100);
  display: flex; align-items: center; gap: 10px;
  transition: background .15s;
  min-width: 0;
}
.ps-svc:last-child { border-right: none; }
.ps-svc:hover { background: var(--warm-50); }

.ps-svc-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ps-svc-icon svg { width: 16px; height: 16px; }
.ps-svc-title {
  font-size: 12.5px; font-weight: 500; color: var(--ink-800);
  line-height: 1.3; letter-spacing: -.01em;
}
.ps-svc-sub { display: none; }

/* ── PS responsive ── */
@media (max-width: 1024px) {
  .ps-top { grid-template-columns: 1fr 160px 160px 160px; }
  .ps-track { grid-template-columns: 160px 1fr; }
}
@media (max-width: 768px) {
  /* Deploy section mobile fixes */
  .sc-spotlight { padding: 32px 20px; min-height: 260px; }
  .sc-panel h3 { font-size: clamp(22px, 6vw, 32px); }
  .sc-panel-stat-num { font-size: 44px; }

  /* Hero slider mobile */
  .hero-slider { margin-top: 28px; }
  .slider-shell { border-radius: 10px; }

  /* Testimonials */
  .testi-card { padding: 28px 24px; }

  /* PS section */
  .ps-section { padding: 64px 0; }
  .ps-top { grid-template-columns: 1fr; }
  .ps-statement { min-height: 200px; }
  .ps-cred {
    border-left: none; border-top: 1px solid rgba(255,255,255,.07);
    flex-direction: row; align-items: baseline; gap: 12px;
  }
  .ps-track + .ps-track .ps-track-label::before { background: var(--warm-100); }
  .ps-track + .ps-track::after { display: none; }
  .ps-track { grid-template-columns: 1fr; }
  .ps-track-label {
    border-right: none; border-bottom: 1px solid var(--warm-200);
    padding: 16px 20px;
  }
  .ps-track:nth-child(2) .ps-track-label { border-left: none; border-top: 2px solid var(--violet); }
  .ps-track:nth-child(3) .ps-track-label { border-left: none; border-top: 2px solid var(--blue-mid); }
  .ps-track:nth-child(4) .ps-track-label { border-left: none; border-top: 2px solid var(--teal); }
  .ps-services { flex-wrap: wrap; }
  .ps-svc { flex: 1 1 calc(50% - 1px); }
  .ps-svc:nth-child(even) { border-right: none; }
  .ps-svc { border-bottom: 1px solid var(--warm-100); }
  .ps-svc:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .ps-section { padding: 52px 0; }
  .ps-svc { flex: 1 1 100%; border-right: none; }
  .ps-svc:nth-last-child(-n+2) { border-bottom: 1px solid var(--warm-100); }
  .ps-svc:last-child { border-bottom: none; }
}

/* process strip removed */
.ps-step-arr { display: none; }
.ps-step:last-child .ps-step-arr { display: none; }

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */
.depth-section {
  background: var(--warm-100);
  padding: 104px 0 32px;
  border-top: 1px solid var(--warm-200);
  border-bottom: 1px solid var(--warm-200);
}
.depth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.depth-card {
  background: var(--off-white);
  border: 1px solid var(--warm-200);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.depth-card:hover {
  box-shadow: 0 12px 40px rgba(12,31,61,.09);
  transform: translateY(-3px);
}
.depth-card-visual {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; position: relative;
  background: var(--warm-100);
  flex-shrink: 0;
}
.depth-card-visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.depth-card:hover .depth-card-visual img { transform: scale(1.03); }
.depth-card-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,31,61,.55) 100%);
}
.depth-card-visual-badge {
  position: absolute; bottom: 14px; left: 16px;
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.depth-card-body {
  padding: 28px 32px 32px;
  display: flex; flex-direction: column; flex: 1;
}

.depth-card h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 20px; color: var(--ink-900);
  letter-spacing: -.015em; line-height: 1.2;
  margin-bottom: 8px;
}
.depth-card-lead {
  font-size: 13.5px; font-weight: 500; color: var(--ink-700);
  line-height: 1.5; margin-bottom: 10px;
}
.depth-card-body > p {
  font-size: 14px; font-weight: 300; color: var(--ink-500);
  line-height: 1.6; margin-bottom: 20px; flex: 1;
}
.depth-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-top: auto;
}
.depth-tag {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .05em; padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--warm-300);
  color: var(--ink-500);
  background: var(--warm-50);
}

/* HC */
body.hc .depth-section { background: var(--white); }
body.hc .depth-card { background: var(--warm-50); }
body.hc .depth-card h3 { color: var(--ink-900) !important; }
body.hc .depth-card-lead { color: var(--ink-800) !important; }
body.hc .depth-card-body > p { color: var(--ink-600) !important; }

/* Responsive */
@media (max-width: 960px) {
  .depth-grid { grid-template-columns: 1fr; gap: 16px; }
  .depth-card-visual { aspect-ratio: 21/9; }
}

.tco-section {
  background: var(--white);
  border-top: 1px solid var(--warm-200);
  padding: 104px 0 64px;
}
.tco-section .section-header { margin-bottom: 64px; }
.tco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.tco-card {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.tco-card-photo {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; position: relative;
  background: var(--warm-100);
  flex-shrink: 0;
}
.tco-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.tco-card:hover .tco-card-photo img { transform: scale(1.03); }
.tco-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,31,61,.55) 100%);
}
.tco-card-photo-badge {
  position: absolute; bottom: 14px; left: 18px;
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.tco-card-body { padding: 28px 32px 36px; flex: 1; display: flex; flex-direction: column; }

.tco-card:hover { box-shadow: 0 12px 40px rgba(12,31,61,.09); transform: translateY(-3px); }
.tco-eyebrow {
  font-family: var(--f-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 20px; display: block;
}
.tco-card h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--ink-900); letter-spacing: -.025em; line-height: 1.1;
  margin-bottom: 16px;
}
.tco-card > p {
  font-size: 14px; font-weight: 300; color: var(--ink-500);
  line-height: 1.6; max-width: 420px; margin-bottom: 0;
}
.tco-items { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--warm-200); padding-top: 20px; margin-top: 24px; }
.tco-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--warm-100);
}
.tco-item:first-child { border-top: none; padding-top: 0; }
.tco-item-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.tco-item-icon svg { width: 16px; height: 16px; }
.tco-item-body {}
.tco-item-label {
  font-size: 13px; font-weight: 500; color: var(--ink-900);
  margin-bottom: 2px; letter-spacing: -.01em;
}
.tco-item-desc {
  font-size: 13px; font-weight: 300; color: var(--ink-500); line-height: 1.55;
}
.tco-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 32px;
  padding: 14px 20px;
  background: var(--warm-50);
  border: 1px solid var(--warm-200);
  border-radius: 10px;
}
.tco-metric-num {
  font-family: var(--f-serif); font-size: 28px; font-weight: 400;
  letter-spacing: -.03em; line-height: 1;
}
.tco-metric-label {
  font-size: 12px; font-weight: 300; color: var(--ink-500); line-height: 1.4;
  max-width: 140px;
}

/* HC overrides */
body.hc .tco-section { background: var(--warm-50); }
body.hc .tco-card { background: var(--white); }
body.hc .tco-card h3 { color: var(--ink-900) !important; }
body.hc .tco-card > p, body.hc .tco-item-desc { color: var(--ink-700) !important; }

.cta-section {
  background: var(--navy); padding: 104px 52px;
  text-align: center; position: relative; overflow: hidden;--amber:#f59e0b;}
.cta-section::before {
  content: '';
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,74,128,.3), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .07;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-section .section-tag { color: var(--amber); margin-bottom: 18px; display: block; }
.cta-section h2 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(30px,4vw,52px); color: #fff; letter-spacing: -.025em; line-height: 1.05; margin-bottom: 14px; }
.cta-section p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.92); max-width: 380px; margin: 0 auto 32px; line-height: 1.55; }
.cta-section .btn-white { display: inline-block; }
.cta-btns { display: flex; gap: 10px; justify-content: center; }
.btn-white {
  font-size: 13.5px; font-weight: 500; letter-spacing: -.01em;
  padding: 12px 28px; border-radius: var(--r-sm);
  background: #fff; color: var(--navy); border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: opacity .18s, transform .1s;
}
.btn-white:hover { opacity: .93; }
.btn-white:active { transform: scale(.98); }
.btn-ghost {
  font-size: 13.5px; font-weight: 400; letter-spacing: -.01em;
  padding: 12px 28px; border-radius: var(--r-sm);
  background: transparent; color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.14);
  transition: color .18s, border-color .18s;
}
.btn-ghost:hover { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.28); }



/* Deploy accordion inline panels — hidden at all sizes, shown only on mobile */
.sc-panel-inline { display: none; }

/* ═══════════════════════════════════════════════════════════════════════
   HOME.CSS — RESPONSIVE 768px
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hero ── */
  .hero { padding: calc(88px + env(safe-area-inset-top, 0px)) 20px 48px; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); max-width: 100%; }
  .hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-slider { margin-top: 28px; }
  .slider-shell { border-radius: 10px; }

  /* ── Statement — stack vertically ── */
  .statement {
    flex-direction: column;
    padding: 56px 20px;
    gap: 36px;
    max-width: 100%;
  }
  .stmt-content {
    flex: none;
    width: 100%;
    min-width: 0;
    text-align: left;
  }
  .stmt-spine { max-width: 100%; }
  .stmt-h { display: block; width: 100%; }
  .sh-light { font-size: clamp(18px, 5vw, 28px); }
  .sh-bold  { font-size: clamp(24px, 7vw, 40px); }
  .stmt-overline { display: block; }
  .stmt-stats { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
  .stmt-stat { min-width: 80px; }
  .stmt-orbit {
    width: min(320px, 90vw);
    height: min(320px, 90vw);
    margin: 0 auto;
    flex-shrink: 0;
    overflow: hidden;
  }
  .o-node { font-size: 8px; padding: 4px 8px; }

  /* ── Platform ── */
  .platform { padding: 56px 0; }
  .panel-cols { grid-template-columns: 1fr; gap: 24px; }
  .tab-row { flex-wrap: wrap; }
  .tab-btn { flex: 1 1 50%; min-width: 0; border-bottom: 1px solid var(--warm-200); }
  .code-body { font-size: 11px; overflow-x: auto; }

  /* ── Deploy & Services ── */
  /* ── Deploy section: accordion on mobile ── */
  .services { padding: 56px 0; }
  .services-layout { display: block; height: auto; border-radius: 12px; overflow: hidden; }

  /* Tabs become accordion headers */
  .sc-tabs { border-right: none; height: auto; overflow: hidden; }
  .sc-tab { cursor: pointer; border-bottom: 1px solid var(--warm-200); }
  .sc-tab-sub { max-height: none !important; opacity: 1 !important; }

  /* Arrow rotates when open */
  .sc-tab-arrow { transition: transform .25s ease; }
  .sc-tab.active .sc-tab-arrow { transform: rotate(90deg); }

  /* Inline panel — hidden by default, shown when active */
  .sc-panel-inline {
    display: none;
    flex-direction: column;
    background: var(--navy);
    padding: 24px 20px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);--amber:#f59e0b;}
  .sc-panel-inline.open { display: flex; }
  .sc-panel-inline .sc-panel-tag { font-family: var(--f-mono); font-size: 9px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px; }
  .sc-panel-inline h3 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(22px, 6vw, 32px); color: #fff; letter-spacing: -.02em; line-height: 1.05; margin-bottom: 12px; }
  .sc-panel-inline .sc-panel-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 16px; }
  .sc-panel-inline .sc-panel-stat { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
  .sc-panel-inline .sc-panel-stat-num { font-family: var(--f-serif); font-weight: 400; font-size: 44px; color: #fff; line-height: 1; }
  .sc-panel-inline .sc-panel-stat-label { font-family: var(--f-mono); font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
  .sc-panel-inline .sc-panel-bullets { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
  .sc-panel-inline .sc-panel-b { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.85); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; }
  .sc-panel-inline .sc-panel-b:last-child { border-bottom: none; }
  .sc-panel-inline .sc-panel-check { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .sc-panel-inline .sc-panel-check svg { width: 8px; height: 8px; color: rgba(255,255,255,.85); }
  .sc-panel-inline .sc-flow { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
  .sc-panel-inline .sc-flow-node { font-family: var(--f-mono); font-size: 10px; font-weight: 500; padding: 4px 10px; border-radius: 4px; }
  .sc-panel-inline .sc-flow-arr { display: none; }

  /* Hide the original spotlight on mobile */
  .sc-spotlight { display: none; }

  .sc-flow { flex-wrap: wrap; gap: 8px; }
  .sc-flow-arr { display: none; }

  /* ── Ecosystem ── */
  .ecosystem { padding: 56px 0 40px; }
  .eco-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .eco-text h2 { white-space: normal; font-size: clamp(22px, 6vw, 32px); }
  .eco-cards { grid-template-columns: 1fr; gap: 1px; border-radius: var(--r-lg); background: var(--warm-200); }
  .eco-card { padding: 28px 24px 32px; }
  .eco-card-metric-num { font-size: clamp(24px, 7vw, 32px); }

  /* ── Depth ── */
  .depth-section { padding: 56px 0; }
  .depth-card-body { padding: 20px; }
  .depth-card-visual { aspect-ratio: 16/9; }

  /* ── TCO / Business Case — stack cards ── */
  .tco-section { padding: 56px 0; }
  .tco-grid { grid-template-columns: 1fr; gap: 20px; }
  .tco-card-body { padding: 20px; }
  .tco-metric { margin-top: 16px; padding: 10px 14px; }

  /* ── Professional Services ── */
  .ps-section { padding: 56px 0; }
  .ps-cred { padding: 20px 24px; }
  .ps-cred-num { font-size: 28px; }
  .ps-cred-label { font-size: 11px; }

  /* ── Testimonials ── */
  .testimonials { padding: 52px 0 64px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .testi-card { padding: 28px 24px; }
  .testi-card:first-child, .testi-card:last-child { border-radius: var(--r-xl); }

  /* ── CTA ── */
  .cta-section { padding: 72px 20px; }
  .cta-section h2 { font-size: clamp(28px, 7vw, 44px); }
  .cta-section p { font-size: 15px; }
  .btn-white { display: block; width: 100%; max-width: 280px; margin: 0 auto; text-align: center; }

  /* ── Logo band ── */
  .logo-band-testi { margin-top: 32px; }

  /* ── Section footer links ── */
  .section-footer-link { margin-top: 28px; }

  /* ── Cap rail: override overflow:hidden from base ── */
  .stats-bar { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .stats-bar::-webkit-scrollbar { display: none; }
  .cap-rail { flex-wrap: nowrap; width: max-content; min-width: 100%; padding: 0 20px; }
  .cap-item { flex: 0 0 80px; padding: 18px 8px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: none; }
  .cap-item:last-child { border-right: none; }
  .cap-label { font-size: 8px; white-space: normal; text-align: center; }

  /* ── Arch grid: 1 col on mobile ── */
  .arch-grid { grid-template-columns: 1fr; gap: 12px; }

  /* ── Code card: allow horizontal scroll ── */
  .code-card { overflow: hidden; }
  .code-body { overflow-x: hidden; white-space: pre-wrap; word-break: break-all; font-size: 10px; line-height: 1.6; }

  /* ── Deploy spotlight: fix height collapse ── */

}


/* ═══════════════════════════════════════════════════════════════════════
   HOME.CSS — RESPONSIVE 480px
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Hero ── */
  .hero { padding: calc(88px + env(safe-area-inset-top, 0px)) 16px 36px; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .hero-sub { font-size: 14px; }

  /* ── Statement ── */
  .statement { padding: 48px 16px; gap: 28px; }
  .stmt-orbit { width: min(280px, 90vw); height: min(280px, 90vw); }
  .sh-bold  { font-size: clamp(22px, 8vw, 36px); }
  .sh-light { font-size: clamp(16px, 5vw, 24px); }
  .o-node { font-size: 7.5px; padding: 3px 7px; }

  /* ── Platform ── */
  .platform { padding: 48px 0; }
  .tab-btn { width: 100%; }
  .code-body { font-size: 10.5px; }

  /* ── Deploy ── */
  .services { padding: 48px 0; }
  .sc-spotlight { padding: 24px 16px; }
  .sc-tab { padding: 12px 16px; }

  /* ── Ecosystem ── */
  .ecosystem { padding: 48px 0 32px; }
  .eco-card { padding: 24px 20px 28px; }
  .testi-footer { grid-template-columns: 1fr; gap: 12px; }
  .testi-result-label { max-width: 100%; }

  /* ── Depth ── */
  .depth-section { padding: 48px 0; }
  .depth-card-body { padding: 16px; }

  /* ── TCO ── */
  .tco-section { padding: 48px 0; }
  .tco-metric-num { font-size: 22px; }

  /* ── PS ── */
  .ps-section { padding: 48px 0; }

  /* ── Testimonials ── */
  .testimonials { padding: 48px 0; }

  /* ── CTA ── */
  .cta-section { padding: 56px 16px; }
  .cta-section h2 { font-size: clamp(26px, 8vw, 38px); }
  .cta-section p { font-size: 14px; }

  /* ── Cap rail: tighter on small screens ── */
  .cap-item { flex: 0 0 72px; padding: 16px 6px; }
  .cap-label { font-size: 7.5px; }

  /* ── Arch grid stays 1 col ── */
  .arch-grid { grid-template-columns: 1fr; }

  /* ── Code body: even smaller font ── */
  .code-body { font-size: 10px; }
}


/* ═══════════════════════════════════════════════════════
   INDUSTRIES SECTION
   ═══════════════════════════════════════════════════════ */
.industries-section {
  background: var(--white);
  padding: 104px 0 48px;
  border-bottom: 1px solid var(--warm-200);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.ind-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: var(--r-xl);
  padding: 28px 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}
.ind-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,31,61,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.ind-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(12,31,61,.18); }
.ind-card:hover::before { opacity: 1; }

.ind-card-icon {
  width: 36px; height: 36px;
  background: var(--warm-50);
  border: 1px solid var(--warm-200);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background .22s, border-color .22s;
}
.ind-card:hover .ind-card-icon { background: var(--navy); border-color: var(--navy);--amber:#f59e0b;}
.ind-card-icon svg { width: 16px; height: 16px; color: var(--ink-600); transition: color .22s; }
.ind-card:hover .ind-card-icon svg { color: #fff; }

.ind-card-body { flex: 1; }
.ind-card-body h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 19px; line-height: 1.15;
  color: var(--ink-900); letter-spacing: -.015em;
  margin-bottom: 8px;
}
.ind-card-body p {
  font-size: 13px; font-weight: 300;
  line-height: 1.6; color: var(--ink-500);
  margin-bottom: 0;
}

.ind-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 20px;
  font-size: 12.5px; font-weight: 500;
  color: var(--ink-400);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.ind-card-link svg { width: 11px; height: 11px; flex-shrink: 0; transition: transform .15s; }
.ind-card:hover .ind-card-link { color: var(--ink-900); border-bottom-color: var(--amber); }
.ind-card:hover .ind-card-link svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   NEWS SECTION — BANNER SLIDER
   ═══════════════════════════════════════════════════════ */
.news-section {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--warm-200);
}

/* Header row: heading left, controls right */
.news-banner-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.news-banner-meta { flex: 1; }
.news-banner-meta h2 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(20px,2vw,28px); color: var(--ink-900); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 0; }

/* Prev / next arrows */
.news-banner-nav { display: flex; gap: 8px; flex-shrink: 0; }
.news-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--warm-200); background: var(--white);
  color: var(--ink-600); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.news-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.news-arrow:active { transform: scale(.94); }
.news-arrow svg { width: 16px; height: 16px; }

/* Mobile: slide is the press-release image only */
.news-slide-link { display: block; width: 100%; height: 100%; }
.news-slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* Slider viewport */
.news-slider-outer {
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--warm-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: 280px;
}
.news-slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each slide = one news item */
.news-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 280px;
}
.news-slide iframe {
  width: 100%;
  height: 280px;
  border: none; display: block;
}

/* Left: visual panel */



/* Right: text content */







.news-slide-link svg { width: 11px; height: 11px; transition: transform .15s; }
.news-slide-link:hover { color: var(--ink-900); border-bottom-color: var(--amber); }
.news-slide-link:hover svg { transform: translateX(3px); }



/* ═══════════════════════════════════════════════════════
   SECTION BACKGROUND OVERRIDES — new order
   ═══════════════════════════════════════════════════════ */
/* Statement: now white */
.statement-outer--white { background: var(--warm-100); }
.statement-outer--white .statement { background: var(--warm-100); }

/* Platform: now warm-100 */
.platform--warm { background: var(--white); }

/* Deploy services: now white */
.services--white { background: var(--warm-100); }

/* Testimonials: white at bottom of page */
.testimonials--warm { background: var(--warm-100); }
.testimonials--warm .logo-band::before { background: linear-gradient(90deg, var(--warm-100), transparent); }
.testimonials--warm .logo-band::after  { background: linear-gradient(270deg, var(--warm-100), transparent); }

/* ═══════════════════════════════════════════════════════
   INDUSTRIES + NEWS — RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
}
@media (max-width: 768px) {
  .industries-section { padding: 56px 0; }
  .ind-grid { grid-template-columns: 1fr; gap: 12px; }
  .ind-card { padding: 22px 20px 20px; }
  .news-section { padding: 56px 0; }
  .news-slide { grid-template-columns: 1fr; min-height: auto; }
  .news-slide-visual { height: 200px; border-left: none; border-top: 1px solid var(--warm-200); position: relative; order: -1; }
  
  
  
  .news-banner-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .news-slider-outer { height: 320px; }
  .news-slide { height: 320px; }
  .news-slide iframe { height: 320px; }
}
@media (max-width: 480px) {
  .industries-section { padding: 48px 0; }
  .news-section { padding: 48px 0; }
}

/* TCO competitive reference line */
.tco-compare {
  text-align: center;
  font-size: 13px; font-weight: 300;
  color: var(--ink-400);
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}
.tco-compare a { color: var(--ink-700); font-weight: 500; }
.tco-compare a:hover { color: var(--navy); }

/* G2 badges — inline with Results headline */
.results-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.results-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.results-badges img {
  display: block;
  object-fit: contain;
  opacity: .8;
  transition: opacity .2s;
}
.results-badges img:hover { opacity: 1; }
@media (max-width: 768px) {
  .results-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .results-badges { flex-wrap: wrap; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════
   RESULTS SECTION — outcome proof points
   ═══════════════════════════════════════════════════════ */
.testi-card-logo {
  margin-bottom: 16px;
  height: 32px;
  display: flex;
  align-items: center;
}
.testi-card-logo img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.testi-outcome-tag {
  font-family: var(--f-mono); font-size: 9px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 14px; display: block;
}
/* Card footer — metric left, attribution + link right */
.testi-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: end;
}
.testi-metric {
  display: flex; flex-direction: column; gap: 3px;
}
.testi-result-num {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 32px; line-height: 1; letter-spacing: -.02em;
  color: var(--navy);
}
.testi-result-label {
  font-size: 11px; font-weight: 300;
  color: var(--ink-400); line-height: 1.35;
  max-width: 120px;
}
.testi-footer-right {
  display: flex; flex-direction: column; gap: 2px;
  align-items: flex-start;
}

/* ═══════════════════════════════════════════════════════
   PS COMPACT
   ═══════════════════════════════════════════════════════ */
.ps-compact {
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 0;
  border: 1px solid var(--warm-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}

.ps-compact-statement {
  background: var(--navy);
  padding: 40px 28px;
  display: flex; flex-direction: column; justify-content: center;--amber:#f59e0b;}
.ps-compact-creds {
  display: flex; flex-direction: column; gap: 24px;
}
.ps-compact-cred {
  display: flex; flex-direction: column; gap: 4px;
}
.ps-compact-cred .ps-cred-num {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 26px; color: #fff; line-height: 1; letter-spacing: -.02em;
}
.ps-compact-cred .ps-cred-label {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.6); line-height: 1.4;
}

.ps-compact-tracks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ps-compact-track {
  padding: 32px 24px;
  border-left: 1px solid var(--warm-200);
  display: flex; flex-direction: column;
}
.ps-compact-track .ps-track-eyebrow {
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-400); margin-bottom: 8px; display: block;
  min-height: 2.4em;
}
.ps-compact-track h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(20px, 2vw, 36px); color: var(--ink-900);
  letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 12px;
}
.ps-compact-track p {
  font-size: 13px; font-weight: 300;
  color: var(--ink-500); line-height: 1.6;
  margin-bottom: 0; flex: 1;
}
.ps-compact-track .panel-link { margin-top: 16px; }

/* Responsive */
@media (max-width: 1024px) {
  .ps-compact { grid-template-columns: 1fr; }
  .ps-compact-statement { padding: 36px 32px; }
  .ps-compact-creds { flex-direction: row; gap: 24px; }
  .ps-compact-tracks { grid-template-columns: repeat(2, 1fr); }
  .ps-compact-track h3 { font-size: clamp(18px, 3vw, 28px); }
}
@media (max-width: 768px) {
  .ps-compact-creds { flex-direction: column; gap: 20px; }
  .ps-compact-tracks { grid-template-columns: 1fr; }
  .ps-compact-track { border-left: none; border-top: 1px solid var(--warm-200); padding: 28px 24px; }
  .ps-compact-statement { padding: 28px 24px; }
  .ps-compact-track h3 { font-size: 24px; }
}

.industries-section .logo-band-testi { background: var(--white); }
.industries-section .logo-band-testi::before { background: linear-gradient(90deg, var(--white), transparent); }
.industries-section .logo-band-testi::after  { background: linear-gradient(270deg, var(--white), transparent); }
