/* ==========================================================================
   TrendForge Insight — Design tokens & base styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root{
  /* --- brand color (sampled from the mark) --- */
  --navy-950:#050B24;
  --navy-900:#00134B;
  --navy-700:#0D1B57;
  --blue-600:#0B63D6;
  --blue-400:#01BCF9;
  --orange-500:#FE8F00;
  --orange-600:#E51503;

  /* --- neutrals --- */
  --paper:#F6F8FC;
  --paper-raised:#FFFFFF;
  --ink:#0A1230;
  --slate:#55607A;
  --slate-light:#8892A6;
  --line:#E1E6F0;
  --line-dark:#22305E;

  /* --- gradients --- */
  --grad-blue: linear-gradient(135deg, var(--navy-900) 0%, var(--blue-600) 55%, var(--blue-400) 100%);
  --grad-orange: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);

  /* --- type --- */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;

  /* --- scale --- */
  --step-1: clamp(2.25rem, 1.6rem + 2.6vw, 3.6rem);
  --step-2: clamp(1.6rem, 1.35rem + 1vw, 2.1rem);
  --step-3: 1.375rem;
  --step-0: 1.0625rem;
  --step--1: 0.9rem;

  --radius: 3px;
  --wrap: 1180px;
}

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

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:var(--step-0);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--navy-900);
  margin:0 0 0.5em;
  line-height:1.12;
  font-weight:600;
  letter-spacing:-0.01em;
}
h1{ font-size:var(--step-1); line-height:1.06; }
h2{ font-size:var(--step-2); }
h3{ font-size:var(--step-3); }
p{ margin:0 0 1em; color:var(--ink); }
a{ color:var(--blue-600); text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }

:focus-visible{
  outline:2px solid var(--blue-600);
  outline-offset:3px;
}

.wrap{
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:28px;
}

.eyebrow-free-note{ display:none; } /* placeholder guard: no all-caps eyebrows used by design */

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:0.5em;
  font-family:var(--font-body);
  font-weight:600;
  font-size:0.98rem;
  padding:0.85em 1.5em;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary{
  background:var(--grad-orange);
  color:#fff;
}
.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px -8px rgba(229,21,3,0.55);
  text-decoration:none;
}
.btn-ghost{
  background:transparent;
  color:var(--navy-900);
  border-color:var(--line-dark-soft, #C7CEDE);
}
.btn-ghost:hover{
  border-color:var(--navy-900);
  text-decoration:none;
}
.btn-ghost.on-dark{
  color:#fff;
  border-color:rgba(255,255,255,0.35);
}
.btn-ghost.on-dark:hover{ border-color:#fff; }
.btn-block{ width:100%; justify-content:center; }

/* ---------- header / nav ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,248,252,0.92);
  backdrop-filter:saturate(160%) blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-block:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ height:34px; width:auto; }
.brand-word{
  font-family:var(--font-display);
  font-size:1.2rem;
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1;
}
.brand-word .t1{ color:var(--navy-900); }
.brand-word .t2{ color:var(--orange-600); }
.brand-word small{
  display:block;
  font-family:var(--font-body);
  font-weight:500;
  font-size:0.62rem;
  letter-spacing:0.14em;
  color:var(--slate-light);
  margin-top:2px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}
.nav-links a{
  color:var(--ink);
  font-weight:500;
  font-size:0.96rem;
  padding-block:6px;
  border-bottom:2px solid transparent;
}
.nav-links a:hover{ color:var(--navy-900); text-decoration:none; border-bottom-color:var(--orange-500); }
.nav-links a.active{ color:var(--navy-900); border-bottom-color:var(--orange-500); font-weight:600; }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none;
  background:none;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:8px 10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:var(--navy-900);
  margin:4px 0;
}

@media (max-width: 880px){
  .nav-links{
    position:fixed;
    inset:66px 0 auto 0;
    flex-direction:column;
    align-items:flex-start;
    background:var(--paper-raised);
    border-bottom:1px solid var(--line);
    padding:10px 28px 24px;
    gap:4px;
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
  }
  .nav-links a{ width:100%; padding-block:12px; border-bottom:1px solid var(--line); }
  .nav-links.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:block; }
}

/* ==========================================================================
   Hero Section — Ultra-Modern Command Center & Data-Forge Experience
   ========================================================================== */
.hero{
  position:relative;
  overflow:hidden;
}

.hero-enhanced{
  background: radial-gradient(circle at 50% 15%, #0C173D 0%, #060D27 60%, #030717 100%);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Background Atmosphere & Ambient Glows */
.hero-bg-fx{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  will-change: transform, opacity;
}
.hero-glow-1{
  top: -100px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1, 188, 249, 0.4) 0%, rgba(11, 99, 214, 0.1) 70%, transparent 100%);
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.hero-glow-2{
  top: 15%;
  right: -80px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(254, 143, 0, 0.35) 0%, rgba(229, 21, 3, 0.1) 70%, transparent 100%);
  animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}
.hero-glow-3{
  bottom: -150px;
  left: 35%;
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 99, 214, 0.3) 0%, rgba(5, 11, 36, 0.2) 70%, transparent 100%);
}

.hero-grid-pattern{
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 100%);
}

.hero-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  pointer-events: none;
}

/* Grid Layout */
.hero-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-block: 68px 84px;
}

.hero-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Live Badge / Kicker */
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  background: rgba(1, 188, 249, 0.08);
  border: 1px solid rgba(1, 188, 249, 0.28);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 22px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #E2EAF8;
  box-shadow: 0 0 20px rgba(1, 188, 249, 0.15), inset 0 0 12px rgba(1, 188, 249, 0.08);
}
.badge-pulse{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
}
.pulse-dot{
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}
.badge-pulse::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #10B981;
  animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.badge-text{
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}
.badge-sep{
  color: rgba(255, 255, 255, 0.4);
}
.badge-tag{
  color: var(--blue-400);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Typography */
.hero-title{
  color: #FFFFFF;
  font-size: clamp(2.35rem, 1.8rem + 2.8vw, 3.85rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 16ch;
}
.gradient-text{
  background: linear-gradient(120deg, #FFFFFF 0%, #A5C9FF 30%, #01BCF9 65%, #FE8F00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero .lede{
  color: #B5C4E3;
  font-size: 1.12rem;
  line-height: 1.68;
  max-width: 48ch;
  margin-bottom: 30px;
}

/* Action Buttons */
.hero-actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-btn-main{
  background: linear-gradient(135deg, #FE8F00 0%, #E51503 100%);
  color: #FFFFFF !important;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(229, 21, 3, 0.5), 0 0 20px rgba(254, 143, 0, 0.3);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-btn-main:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(229, 21, 3, 0.7), 0 0 30px rgba(254, 143, 0, 0.5);
  text-decoration: none;
}
.hero-btn-main .icon-arrow{
  transition: transform 0.2s ease;
}
.hero-btn-main:hover .icon-arrow{
  transform: translateX(4px);
}

.hero-btn-ghost{
  background: rgba(255, 255, 255, 0.07);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 22px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.hero-btn-ghost:hover{
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Metrics Strip */
.hero-metrics-strip{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  background: rgba(13, 27, 87, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.metric-block{
  display: flex;
  flex-direction: column;
}
.metric-num{
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
}
.metric-accent{
  color: var(--blue-400);
  font-size: 0.95rem;
  margin-left: 2px;
}
.metric-desc{
  font-size: 0.78rem;
  color: #92A4C9;
  font-weight: 500;
  white-space: nowrap;
  margin-top: 2px;
}
.metric-sep{
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   Operations Command Center HUD (Right Column)
   ========================================================================== */
.hero-visual-col{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-hud{
  position: relative;
  width: 100%;
  max-width: 530px;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* Main HUD Window */
.hud-window{
  background: rgba(8, 16, 46, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 
    0 24px 60px -15px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(1, 188, 249, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* HUD Window Header */
.hud-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(5, 11, 36, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hud-window-dots{
  display: flex;
  gap: 6px;
}
.hud-window-dots .dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.hud-window-dots .dot.red{ background: #FF5F56; }
.hud-window-dots .dot.yellow{ background: #FFBD2E; }
.hud-window-dots .dot.green{ background: #27C93F; }

.hud-title-bar{
  font-family: 'Space Grotesk', monospace;
  font-size: 0.74rem;
  color: #7E93BE;
  letter-spacing: 0.02em;
}
.terminal-prefix{
  color: var(--orange-500);
  font-weight: 700;
  margin-right: 3px;
}
.hud-live-indicator{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.live-pulse{
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulseDot 1.4s ease-in-out infinite;
}

/* HUD Body & Pipeline Grid */
.hud-body{
  padding: 16px 14px 10px;
}
.pipeline-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 8px;
  align-items: center;
  min-height: 220px;
}

.pipeline-col{
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 3;
}
.pipeline-col-header{
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6C82B0;
  margin-bottom: 2px;
  padding-left: 4px;
}

.pipeline-node{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(13, 27, 87, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}
.pipeline-node:hover{
  background: rgba(13, 27, 87, 0.9);
  border-color: rgba(1, 188, 249, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 188, 249, 0.15);
}
.pipeline-node .node-icon{
  font-size: 1rem;
  flex-shrink: 0;
}
.node-icon.accent-orange{ color: var(--orange-500); }
.node-icon.accent-blue{ color: var(--blue-600); }
.node-icon.accent-cyan{ color: var(--blue-400); }

.node-text{
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.node-text strong{
  font-size: 0.74rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.node-text small{
  font-size: 0.64rem;
  color: #8CA0C7;
  white-space: nowrap;
}

/* Center Pipeline Core */
.pipeline-core{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  z-index: 2;
}
.core-glow-disc{
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 188, 249, 0.45) 0%, rgba(254, 143, 0, 0.2) 60%, transparent 80%);
  filter: blur(14px);
  animation: corePulse 3s ease-in-out infinite alternate;
}
.core-ring{
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(1, 188, 249, 0.35);
}
.core-ring-outer{
  width: 120px;
  height: 120px;
  border-color: rgba(254, 143, 0, 0.25);
  animation: spinClockwise 20s linear infinite;
}
.core-ring-inner{
  width: 96px;
  height: 96px;
  border-color: rgba(1, 188, 249, 0.4);
  animation: spinCounterClockwise 12s linear infinite;
}

.core-center-card{
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 12px;
  background: rgba(5, 11, 36, 0.95);
  border: 1px solid rgba(1, 188, 249, 0.4);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(1, 188, 249, 0.25), inset 0 0 10px rgba(1, 188, 249, 0.15);
  text-align: center;
}
.core-logo{
  height: 24px;
  width: auto;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 6px rgba(1, 188, 249, 0.6));
}
.core-name{
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}
.core-stream-stats{
  font-size: 0.58rem;
  color: var(--blue-400);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 1px;
}

/* SVG Connection Beams */
.pipeline-beams{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.beam-line{
  fill: none;
  stroke: url(#beamGrad1);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: beamFlow 1.6s linear infinite;
  opacity: 0.75;
}
.beam-line.b4, .beam-line.b5, .beam-line.b6{
  stroke: url(#beamGrad2);
  animation-duration: 1.3s;
}

/* HUD Footer Ticker */
.hud-footer-ticker{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 7px 10px;
  background: rgba(3, 7, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.68rem;
}
.ticker-label{
  color: var(--orange-500);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.terminal-flash{
  animation: pulseDot 1s step-start infinite;
  color: #10B981;
}
.ticker-content{
  color: #9DB0D6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.t-time{
  color: #556D9B;
  margin-right: 4px;
}

/* Floating Glass Cards */
.hud-floating-card{
  position: absolute;
  z-index: 5;
  background: rgba(10, 20, 56, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 10px 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 16px 36px -8px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(1, 188, 249, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hud-floating-card:hover{
  transform: scale(1.03) !important;
  border-color: rgba(1, 188, 249, 0.45);
  box-shadow: 0 20px 40px -6px rgba(0, 0, 0, 0.65), 0 0 30px rgba(1, 188, 249, 0.3);
}

.hud-badge-icon{
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.eye-glow{ background: linear-gradient(135deg, #0B63D6 0%, #01BCF9 100%); box-shadow: 0 0 10px rgba(1, 188, 249, 0.4); }
.mail-glow{ background: linear-gradient(135deg, #FE8F00 0%, #E51503 100%); box-shadow: 0 0 10px rgba(254, 143, 0, 0.4); }
.chart-glow{ background: linear-gradient(135deg, #10B981 0%, #01BCF9 100%); box-shadow: 0 0 10px rgba(16, 185, 129, 0.4); }

.hud-card-info{
  display: flex;
  flex-direction: column;
}
.hud-card-title{
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
}
.hud-card-sub{
  font-size: 0.64rem;
  color: #92A5CB;
}
.stat-highlight{
  color: #10B981;
  font-weight: 700;
}

/* Card 1: Argus (Top Right) */
.hud-card-argus{
  top: -18px;
  right: -20px;
  animation: floatCard1 6s ease-in-out infinite alternate;
}
.hud-status-live{
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.64rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 6px;
  border-radius: 3px;
  margin-left: auto;
}
.live-dot.green{
  width: 5px;
  height: 5px;
  background: #10B981;
  border-radius: 50%;
}

/* Card 2: MailOps (Bottom Left) */
.hud-card-mailops{
  bottom: -22px;
  left: -22px;
  min-width: 210px;
  animation: floatCard2 7s ease-in-out infinite alternate-reverse;
}
.hud-progress-bar{
  width: 36px;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-left: auto;
}
.hud-progress-fill{
  height: 100%;
  background: linear-gradient(90deg, #FE8F00, #10B981);
  border-radius: 10px;
}

/* Card 3: PX Analytics (Bottom Right) */
.hud-card-px{
  bottom: 24px;
  right: -26px;
  animation: floatCard3 6.5s ease-in-out infinite alternate;
}
.mini-spark-bars{
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 20px;
  margin-left: auto;
}
.mini-spark-bars span{
  width: 3px;
  background: var(--blue-400);
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(1, 188, 249, 0.5);
}

/* ==========================================================================
   Hero Keyframe Animations
   ========================================================================== */
@keyframes floatOrb{
  0%{ transform: translate(0, 0) scale(1); }
  100%{ transform: translate(30px, 40px) scale(1.1); }
}

@keyframes pulseRing{
  0%{ transform: scale(0.6); opacity: 1; }
  100%{ transform: scale(2.2); opacity: 0; }
}

@keyframes pulseDot{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.3; }
}

@keyframes corePulse{
  0%{ transform: scale(0.9); opacity: 0.3; }
  100%{ transform: scale(1.2); opacity: 0.65; }
}

@keyframes spinClockwise{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

@keyframes spinCounterClockwise{
  from{ transform: rotate(360deg); }
  to{ transform: rotate(0deg); }
}

@keyframes beamFlow{
  from{ stroke-dashoffset: 24; }
  to{ stroke-dashoffset: 0; }
}

@keyframes floatCard1{
  0%{ transform: translateY(0px) rotate(0deg); }
  100%{ transform: translateY(-8px) rotate(1deg); }
}
@keyframes floatCard2{
  0%{ transform: translateY(0px) rotate(0deg); }
  100%{ transform: translateY(8px) rotate(-1deg); }
}
@keyframes floatCard3{
  0%{ transform: translateY(0px) rotate(0deg); }
  100%{ transform: translateY(-7px) rotate(1deg); }
}

/* ==========================================================================
   Responsive Adaptations for Hero Section
   ========================================================================== */
@media (max-width: 1040px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 54px 64px;
  }
  .hero-content{
    align-items: center;
    text-align: center;
  }
  .hero h1{
    max-width: 22ch;
  }
  .hero .lede{
    max-width: 48ch;
  }
  .hero-actions{
    justify-content: center;
  }
  .hero-metrics-strip{
    justify-content: center;
  }
  .hero-hud{
    max-width: 480px;
    margin-inline: auto;
  }
  .hud-card-argus{ right: 0; top: -14px; }
  .hud-card-mailops{ left: 0; bottom: -18px; }
  .hud-card-px{ right: 0; bottom: 18px; }
}

@media (max-width: 640px){
  .hero-enhanced{
    padding-top: 10px;
  }
  .hero-grid{
    padding-block: 40px 52px;
    gap: 40px;
  }
  .hero-badge{
    font-size: 0.76rem;
    padding: 5px 11px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-title{
    font-size: 2.1rem;
  }
  .hero .lede{
    font-size: 0.98rem;
  }
  .hero-actions{
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-btn-main, .hero-btn-ghost{
    width: 100%;
    justify-content: center;
  }
  .hero-metrics-strip{
    width: 100%;
    justify-content: space-around;
    gap: 10px;
    padding: 12px 10px;
  }
  .metric-num{
    font-size: 1.18rem;
  }
  .metric-desc{
    font-size: 0.7rem;
  }
  .hud-window{
    border-radius: 8px;
  }
  .pipeline-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pipeline-beams{
    display: none;
  }
  .pipeline-core{
    min-height: 120px;
  }
  .hud-floating-card{
    position: static;
    margin-bottom: 8px;
    width: 100%;
  }
  .hud-card-argus, .hud-card-mailops, .hud-card-px{
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-glow-1, .hero-glow-2, .hero-canvas,
  .hud-card-argus, .hud-card-mailops, .hud-card-px,
  .core-ring-outer, .core-ring-inner, .beam-line,
  .core-glow-disc{
    animation: none !important;
  }
}

/* ---------- page header (interior pages) ---------- */
.page-header{
  border-bottom:1px solid var(--line);
  padding-block:56px 44px;
  position:relative;
}
.page-header .kicker{
  font-family:var(--font-display);
  color:var(--orange-600);
  font-weight:600;
  margin-bottom:10px;
}
.page-header h1{ max-width:20ch; }
.page-header .lede{ max-width:56ch; color:var(--slate); font-size:1.06rem; }

/* ---------- sections ---------- */
section{ padding-block:76px; }
section.tight{ padding-block:56px; }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  margin-bottom:40px;
  border-bottom:1px solid var(--line);
  padding-bottom:22px;
}
.section-head h2{ max-width:16ch; margin-bottom:0.3em; }
.section-head p{ max-width:42ch; color:var(--slate); margin:0; }
.section-head .link-more{ white-space:nowrap; font-weight:600; }

.on-dark{ background:var(--navy-900); color:#fff; }
.on-dark, .on-dark p{ color:#D9E0F5; }
.on-dark h1, .on-dark h2, .on-dark h3{ color:#fff; }
.on-dark .section-head{ border-color:rgba(255,255,255,0.14); }
.on-panel{ background:var(--paper-raised); }
.on-panel-alt{ background:#EEF2F9; }

/* ==========================================================================
   Four Disciplines, One Build Process — Flagship Showcase Section (White Theme)
   ========================================================================== */
.disciplines-section{
  position: relative;
  background: #FFFFFF;
  color: var(--ink);
  padding-block: 88px 96px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Ambient Subtle FX */
.disciplines-ambient-fx{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.disc-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
}
.disc-glow-1{
  width: 500px;
  height: 500px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, #01BCF9, transparent 70%);
}
.disc-glow-2{
  width: 540px;
  height: 540px;
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, #FE8F00, transparent 70%);
}
.disc-glow-3{
  width: 420px;
  height: 420px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #0B63D6, transparent 70%);
  opacity: 0.08;
}
.disc-grid-overlay{
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(11, 99, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 99, 214, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.7;
}

.disciplines-section .wrap{
  position: relative;
  z-index: 1;
}

/* Header */
.disciplines-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 44px;
}
.disciplines-header-text{
  max-width: 680px;
}
.kicker-pill-blue{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--blue-600);
  background: #EAF3FF;
  border: 1px solid rgba(11, 99, 214, 0.22);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.kicker-pill-blue .pill-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 8px rgba(11, 99, 214, 0.6);
  animation: pulseBeacon 2s infinite ease-in-out;
}
@keyframes pulseBeacon{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.4; transform: scale(0.8); }
}

.disciplines-heading{
  font-size: clamp(2rem, 1.6rem + 1.8vw, 2.75rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.gradient-text-alt{
  background: linear-gradient(135deg, #0B63D6 0%, #FE8F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.disciplines-lede{
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.disciplines-header-stats{
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.disc-stat-card{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10, 18, 48, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.disc-stat-card:hover{
  transform: translateY(-2px);
  border-color: rgba(11, 99, 214, 0.35);
  box-shadow: 0 8px 22px rgba(10, 18, 48, 0.08);
}
.disc-stat-num{
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}
.disc-stat-x{
  color: var(--orange-500);
  font-size: 1.1rem;
}
.disc-stat-label{
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.disc-stat-sub{
  font-size: 0.68rem;
  color: var(--slate-light);
  margin-top: 2px;
}

/* 4 Master Discipline Cards */
.disciplines-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.disc-card{
  background: #FFFFFF;
  border: 1px solid rgba(225, 230, 240, 0.95);
  border-radius: 12px;
  padding: 24px 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10, 18, 48, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease,
              background 0.28s ease;
  cursor: default;
}
.disc-card:hover, .disc-card:focus-visible{
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -8px rgba(10, 18, 48, 0.12), 0 0 20px rgba(11, 99, 214, 0.06);
  outline: none;
}
.disc-card.disc-ai:hover{ border-color: rgba(11, 99, 214, 0.45); }
.disc-card.disc-analytics:hover{ border-color: rgba(2, 132, 199, 0.45); }
.disc-card.disc-automation:hover{ border-color: rgba(254, 143, 0, 0.45); box-shadow: 0 18px 36px -8px rgba(10, 18, 48, 0.12), 0 0 20px rgba(254, 143, 0, 0.08); }
.disc-card.disc-transformation:hover{ border-color: rgba(16, 185, 129, 0.45); box-shadow: 0 18px 36px -8px rgba(10, 18, 48, 0.12), 0 0 20px rgba(16, 185, 129, 0.08); }

.disc-card-accent-strip{
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.disc-ai .disc-card-accent-strip{ background: linear-gradient(90deg, #0B63D6, #01BCF9); }
.disc-analytics .disc-card-accent-strip{ background: linear-gradient(90deg, #0284C7, #0B63D6); }
.disc-automation .disc-card-accent-strip{ background: linear-gradient(90deg, #FE8F00, #E51503); }
.disc-transformation .disc-card-accent-strip{ background: linear-gradient(90deg, #10B981, #0B63D6); }

.disc-card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.disc-icon-box{
  display: flex;
  align-items: center;
  gap: 10px;
}
.disc-num{
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-light);
}
.disc-icon-svg{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
}
.disc-ai .disc-icon-svg{ color: #0B63D6; background: #EAF3FF; border-color: rgba(11, 99, 214, 0.2); }
.disc-analytics .disc-icon-svg{ color: #0284C7; background: #E0F2FE; border-color: rgba(2, 132, 199, 0.2); }
.disc-automation .disc-icon-svg{ color: #EA580C; background: #FFF7ED; border-color: rgba(234, 88, 12, 0.2); }
.disc-transformation .disc-icon-svg{ color: #059669; background: #ECFDF5; border-color: rgba(5, 150, 105, 0.2); }

.disc-live-badge{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.disc-pulse-dot{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: pulseBeacon 1.8s infinite ease-in-out;
}
.badge-ai{ background: #EAF3FF; color: #0B63D6; border-color: rgba(11, 99, 214, 0.2); }
.badge-ai .disc-pulse-dot{ background: #0B63D6; box-shadow: 0 0 6px rgba(11, 99, 214, 0.6); }

.badge-analytics{ background: #E0F2FE; color: #0369A1; border-color: rgba(3, 105, 161, 0.2); }
.badge-analytics .disc-pulse-dot{ background: #0284C7; box-shadow: 0 0 6px rgba(2, 132, 199, 0.6); }

.badge-automation{ background: #FFF7ED; color: #C2410C; border-color: rgba(194, 65, 12, 0.2); }
.badge-automation .disc-pulse-dot{ background: #EA580C; box-shadow: 0 0 6px rgba(234, 88, 12, 0.6); }

.badge-transformation{ background: #ECFDF5; color: #047857; border-color: rgba(4, 120, 87, 0.2); }
.badge-transformation .disc-pulse-dot{ background: #059669; box-shadow: 0 0 6px rgba(5, 150, 105, 0.6); }

.disc-card-body{
  flex-grow: 1;
}
.disc-title{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 2px;
}
.disc-tagline{
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.disc-ai .disc-tagline{ color: #0B63D6; }
.disc-analytics .disc-tagline{ color: #0284C7; }
.disc-automation .disc-tagline{ color: #EA580C; }
.disc-transformation .disc-tagline{ color: #059669; }

.disc-desc{
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 16px;
}

.disc-specs{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}
.disc-spec-tag{
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--navy-900);
  background: #F4F7FC;
  border: 1px solid #E2E8F0;
  padding: 3px 7px;
  border-radius: 4px;
}

/* Card Micro Visual Footers */
.disc-card-footer{
  padding-top: 14px;
  border-top: 1px solid #EEF2F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.disc-hud-preview{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}
.disc-hud-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.disc-hud-dot.green{ background: #10B981; box-shadow: 0 0 6px #10B981; }
.disc-hud-dot.orange{ background: #FE8F00; box-shadow: 0 0 6px #FE8F00; }

.disc-hud-label{
  font-size: 0.72rem;
  color: var(--slate);
  flex-grow: 1;
}
.disc-hud-val{
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.04em;
}
.disc-hud-sub{
  font-size: 0.7rem;
  color: var(--slate);
}

.disc-mini-spark-row{
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 18px;
}
.disc-mini-spark-row span{
  width: 4px;
  background: var(--blue-600);
  border-radius: 1px;
  animation: sparkDance 2s infinite alternate ease-in-out;
}
.disc-mini-spark-row span:nth-child(2){ animation-delay: 0.2s; }
.disc-mini-spark-row span:nth-child(3){ animation-delay: 0.4s; }
.disc-mini-spark-row span:nth-child(4){ animation-delay: 0.6s; }
.disc-mini-spark-row span:nth-child(5){ animation-delay: 0.8s; }
.disc-mini-spark-row span:nth-child(6){ animation-delay: 1s; }

@keyframes sparkDance{
  0%{ transform: scaleY(0.6); opacity: 0.6; }
  100%{ transform: scaleY(1); opacity: 1; }
}

.disc-circuit-track{
  display: flex;
  align-items: center;
  gap: 3px;
}
.circuit-node{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FE8F00;
  box-shadow: 0 0 5px rgba(254, 143, 0, 0.6);
}
.circuit-line{
  width: 14px;
  height: 2px;
  background: rgba(254, 143, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.circuit-line::after{
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: #FE8F00;
  animation: circuitFlow 1.6s infinite ease-in-out;
}
@keyframes circuitFlow{
  0%{ left: -100%; }
  100%{ left: 100%; }
}

/* ==========================================================================
   The "One Build Process" Lifecycle Banner / Workbench (White Theme)
   ========================================================================== */
.build-process-banner{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
  margin-bottom: 36px;
  position: relative;
  box-shadow: 0 8px 24px rgba(10, 18, 48, 0.04);
}

.build-banner-head{
  margin-bottom: 24px;
}
.build-banner-kicker{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.build-kicker-num{
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #C2410C;
  background: #FFF7ED;
  border: 1px solid rgba(234, 88, 12, 0.22);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.build-kicker-text{
  font-size: 0.78rem;
  color: var(--slate);
  font-weight: 500;
}
.build-banner-title{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
}

.build-phases-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.build-phase-card{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 16px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(10, 18, 48, 0.03);
  cursor: pointer;
}
.build-phase-card:hover, .build-phase-card.active, .build-phase-card:focus-visible{
  background: #FFFFFF;
  border-color: var(--blue-600);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 99, 214, 0.12);
  outline: none;
}
.build-phase-card.active{
  border-color: var(--blue-600);
  box-shadow: 0 0 0 2px rgba(11, 99, 214, 0.18), 0 8px 20px rgba(11, 99, 214, 0.08);
}

.phase-badge{
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.phase-icon{
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.phase-name{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
}
.phase-desc{
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.45;
  margin: 0 0 14px;
  flex-grow: 1;
}

.phase-synergy{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid #EEF2F6;
}
.synergy-label{
  font-size: 0.66rem;
  color: var(--slate-light);
  width: 100%;
  margin-bottom: 2px;
}
.synergy-tag{
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
}
.tag-ai{ color: #0B63D6; background: #EAF3FF; }
.tag-analytics{ color: #0284C7; background: #E0F2FE; }
.tag-auto{ color: #EA580C; background: #FFF7ED; }
.tag-trans{ color: #059669; background: #ECFDF5; }

.phase-arrow{
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-light);
  font-size: 1.1rem;
  font-weight: 700;
  pointer-events: none;
  z-index: 2;
}

/* ==========================================================================
   Product Synergy / Discipline Matrix Interactive Mixer (White Theme)
   ========================================================================== */
.product-synergy-mixer{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 8px 24px rgba(10, 18, 48, 0.04);
}

.mixer-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E5EAF2;
  padding-bottom: 20px;
}
.mixer-kicker{
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mixer-title{
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 4px;
}
.mixer-sub{
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
}

.mixer-tabs{
  display: flex;
  gap: 8px;
  background: #EDF2F9;
  padding: 5px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.mixer-tab{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mixer-tab:hover{
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.6);
}
.mixer-tab.active{
  color: var(--navy-900);
  background: #FFFFFF;
  border-color: rgba(11, 99, 214, 0.25);
  box-shadow: 0 2px 8px rgba(10, 18, 48, 0.08);
}
.tab-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.dot-orange{ background: #FE8F00; }
.dot-blue{ background: #0B63D6; }
.dot-cyan{ background: #0284C7; }
.dot-purple{ background: #8B5CF6; }

.mixer-display-panel{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.mixer-product-meta{
  display: flex;
  flex-direction: column;
}
.mixer-badge-wrap{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mixer-category-tag{
  font-size: 0.72rem;
  font-weight: 600;
  color: #C2410C;
  background: #FFF7ED;
  border: 1px solid rgba(234, 88, 12, 0.22);
  padding: 3px 9px;
  border-radius: 4px;
}
.mixer-status-indicator{
  font-size: 0.72rem;
  color: #059669;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.pulse-tiny{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 6px rgba(5, 150, 105, 0.6);
}

.mixer-prod-name{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.mixer-prod-desc{
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0 0 16px;
}
.mixer-quote-callout{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange-500);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.45;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(10, 18, 48, 0.03);
}
.mixer-quote-callout strong{
  color: var(--navy-900);
}
.callout-icon{
  font-size: 1rem;
}

.mixer-bars-container{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(10, 18, 48, 0.03);
}
.mixer-bar-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bar-label-group{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
}
.bar-name{ color: var(--navy-900); }
.bar-val{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
}
.bar-track{
  width: 100%;
  height: 8px;
  background: #EDF2F9;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar-fill{
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fill-ai{ background: linear-gradient(90deg, #0B63D6, #01BCF9); }
.fill-analytics{ background: linear-gradient(90deg, #0284C7, #0B63D6); }
.fill-automation{ background: linear-gradient(90deg, #FE8F00, #E51503); }
.fill-trans{ background: linear-gradient(90deg, #10B981, #0B63D6); }

/* Responsive Media Queries for Disciplines Section */
@media (max-width: 1100px){
  .disciplines-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .build-phases-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .phase-arrow{
    display: none;
  }
}

@media (max-width: 860px){
  .disciplines-header{
    flex-direction: column;
    align-items: flex-start;
  }
  .disciplines-header-stats{
    width: 100%;
    justify-content: flex-start;
  }
  .mixer-header{
    flex-direction: column;
    align-items: flex-start;
  }
  .mixer-tabs{
    width: 100%;
    overflow-x: auto;
  }
  .mixer-display-panel{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px){
  .disciplines-grid{
    grid-template-columns: 1fr;
  }
  .build-phases-grid{
    grid-template-columns: 1fr;
  }
  .disciplines-header-stats{
    flex-direction: column;
  }
}

/* ---------- card grid / signature clipped-corner card ---------- */
.grid{ display:grid; gap:22px; }
.grid-3{ grid-template-columns:repeat(3, 1fr); }
.grid-2{ grid-template-columns:repeat(2, 1fr); }
@media (max-width: 900px){ .grid-3{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 620px){ .grid-3, .grid-2{ grid-template-columns:1fr; } }

.card{
  background:var(--paper-raised);
  border:1px solid var(--line);
  padding:30px 28px 28px;
  position:relative;
  clip-path:polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.card::before{
  content:"";
  position:absolute;
  top:0; right:0;
  width:22px; height:22px;
  background:var(--grad-orange);
  clip-path:polygon(100% 0, 0 0, 100% 100%);
}
.card.blue::before{ background:var(--grad-blue); }
.card .tag{
  display:inline-block;
  font-size:0.76rem;
  font-weight:600;
  color:var(--blue-600);
  background:#EAF3FF;
  padding:4px 10px;
  border-radius:2px;
  margin-bottom:14px;
}
.card h3{ margin-bottom:0.5em; }
.card p{ color:var(--slate); font-size:0.96rem; }
.card .status{
  margin-top:18px;
  font-size:0.82rem;
  color:var(--slate-light);
  border-top:1px dashed var(--line);
  padding-top:12px;
}

/* ---------- process / numbered sequence ---------- */
.process{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:0;
  border-top:1px solid var(--line);
}
.process-step{
  padding:26px 20px 0;
  border-right:1px solid var(--line);
  position:relative;
}
.process-step:last-child{ border-right:none; }
.process-step .num{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.6rem;
  background:var(--grad-blue);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  display:block;
  margin-bottom:10px;
}
.process-step h4{
  font-family:var(--font-body);
  font-weight:600;
  font-size:1rem;
  color:var(--navy-900);
  margin:0 0 8px;
}
.process-step p{ font-size:0.9rem; color:var(--slate); }
@media (max-width: 900px){
  .process{ grid-template-columns:repeat(2,1fr); }
  .process-step{ border-right:none; border-bottom:1px solid var(--line); padding-bottom:24px; }
}
@media (max-width: 560px){ .process{ grid-template-columns:1fr; } }

/* ---------- values / list rows ---------- */
.rowlist{ border-top:1px solid var(--line); }
.rowlist > div{
  display:grid;
  grid-template-columns:1.4fr 2.2fr;
  gap:28px;
  padding:26px 0;
  border-bottom:1px solid var(--line);
}
.rowlist h3{ margin:0; font-size:1.05rem; }
.rowlist p{ margin:0; color:var(--slate); }
@media (max-width: 700px){ .rowlist > div{ grid-template-columns:1fr; gap:10px; } }

/* ---------- stat-free proof strip ---------- */
.chipline{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.chip{
  border:1px solid var(--line);
  padding:9px 16px;
  border-radius:2px;
  font-size:0.9rem;
  font-weight:500;
  color:var(--navy-900);
  background:var(--paper-raised);
}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--navy-900);
  color:#fff;
  padding-block:60px;
  position:relative;
  overflow:hidden;
}
.cta-band .wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}
.cta-band h2{ color:#fff; margin-bottom:6px; }
.cta-band p{ color:#B9C4E6; margin:0; }
.cta-band::after{
  content:"";
  position:absolute;
  right:-60px; top:-60px;
  width:260px; height:260px;
  background:var(--grad-orange);
  opacity:0.14;
  clip-path:polygon(30% 0, 100% 0, 100% 70%);
}

/* ---------- footer ---------- */
.site-footer{
  background:var(--navy-950);
  color:#B9C4E6;
  padding-block:64px 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-word .t1{ color:#fff; }
.footer-brand p{ color:#9AA6C7; max-width:34ch; margin-top:14px; font-size:0.94rem; }
.footer-col h4{
  font-family:var(--font-body);
  color:#fff;
  font-size:0.92rem;
  font-weight:600;
  margin-bottom:16px;
}
.footer-col a{
  display:block;
  color:#9AA6C7;
  font-size:0.92rem;
  padding-block:6px;
}
.footer-col a:hover{ color:#fff; text-decoration:none; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:26px;
  flex-wrap:wrap;
  gap:12px;
  font-size:0.84rem;
  color:#7C88AD;
}
.footer-tagline span{ margin-inline:6px; color:var(--orange-500); }
@media (max-width: 820px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns:1fr; }
}

/* ---------- forms ---------- */
.form-panel{
  background:var(--paper-raised);
  border:1px solid var(--line);
  padding:36px;
}
.field{ margin-bottom:20px; }
.field label{
  display:block;
  font-size:0.88rem;
  font-weight:600;
  color:var(--navy-900);
  margin-bottom:8px;
}
.field input, .field textarea, .field select{
  width:100%;
  font-family:var(--font-body);
  font-size:0.98rem;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  color:var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color:var(--blue-600);
  outline:none;
  box-shadow:0 0 0 3px rgba(11,99,214,0.12);
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:0.84rem; color:var(--slate-light); margin-top:14px; }
.form-success{
  display:none;
  border:1px solid #BFE3C8;
  background:#F1FBF3;
  color:#1E6B33;
  padding:16px 18px;
  border-radius:var(--radius);
  font-size:0.94rem;
  margin-bottom:20px;
}
.form-success.show{ display:block; }

/* ---------- contact info list ---------- */
.info-rows{ display:flex; flex-direction:column; gap:26px; }
.info-rows .row{ display:flex; gap:16px; align-items:flex-start; }
.info-rows .ico{
  width:38px; height:38px;
  flex:none;
  background:var(--grad-blue);
  clip-path:polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}
.info-rows h4{ margin:0 0 4px; font-size:0.98rem; color:var(--navy-900); font-family:var(--font-body); font-weight:600; }
.info-rows p{ margin:0; color:var(--slate); font-size:0.94rem; }

/* ---------- media / articles ---------- */
.article-card{
  background:var(--paper-raised);
  border:1px solid var(--line);
}
.article-media{
  aspect-ratio:16/9;
  background:var(--grad-blue);
  position:relative;
  overflow:hidden;
}
.article-card:nth-child(3n+2) .article-media{ background:var(--grad-orange); }
.article-media .sq{ position:absolute; background:rgba(255,255,255,0.18); }
.article-body{ padding:22px 24px 26px; }
.article-meta{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:0.8rem;
  color:var(--slate-light);
  margin-bottom:10px;
}
.article-meta .tag{
  color:var(--orange-600);
  font-weight:600;
  background:none;
  padding:0;
}
.article-body h3{ font-size:1.08rem; margin-bottom:8px; }
.article-body p{ font-size:0.92rem; color:var(--slate); }

.press-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
  border-bottom:1px solid var(--line);
  gap:20px;
  flex-wrap:wrap;
}
.press-row .src{ font-weight:600; color:var(--navy-900); min-width:180px; }
.press-row p{ margin:0; color:var(--slate); flex:1; min-width:220px; }

/* ==========================================================================
   Products Suite: Flagship Operations Engines Styling Suite
   ========================================================================== */

/* Hero Section */
.products-hero{
  position: relative;
  background: #FFFFFF;
  padding-block: 84px 44px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.products-hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ph-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.ph-glow-1{
  width: 550px;
  height: 550px;
  top: -140px;
  right: 5%;
  background: radial-gradient(circle, #FE8F00, transparent 70%);
}
.ph-glow-2{
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: 5%;
  background: radial-gradient(circle, #01BCF9, transparent 70%);
}
.ph-grid{
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(11, 99, 214, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 99, 214, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.8;
}

.products-hero-header{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin-inline: auto;
}
.products-hero-title{
  font-size: clamp(2.2rem, 1.8rem + 2vw, 3.2rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.products-hero-subtitle{
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 72ch;
  margin-inline: auto;
  margin-bottom: 32px;
}

/* Fleet Assurance Metrics */
.products-fleet-metrics{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 28px;
  margin-inline: auto;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 40px;
  box-shadow: 0 4px 18px rgba(10, 18, 48, 0.03);
  flex-wrap: wrap;
}
.pfm-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px 6px;
}
.pfm-val{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}
.pfm-val small{
  font-size: 0.8rem;
  color: var(--blue-600);
  font-weight: 600;
}
.pfm-label{
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.pfm-sep{
  width: 1px;
  height: 28px;
  background: var(--line);
}

/* Interactive Category Filter Bar */
.products-filter-bar{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px;
  background: #F1F5F9;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  border: 1px solid var(--line);
}
.pf-tab{
  background: transparent;
  border: none;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  outline: none;
}
.pf-tab:hover{
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.6);
}
.pf-tab:focus-visible{
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}
.pf-tab.active{
  background: #FFFFFF;
  color: var(--navy-900);
  box-shadow: 0 2px 8px rgba(10, 18, 48, 0.08);
}
.pf-count{
  font-size: 0.72rem;
  background: var(--navy-900);
  color: #FFFFFF;
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 700;
}
.pf-tag-pill{
  font-size: 0.68rem;
  background: #EAF3FF;
  color: var(--blue-600);
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 600;
}

/* ==========================================================================
   Product Showcase Sections
   ========================================================================== */
.product-showcase-section{
  padding-block: 88px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 84px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-showcase-section.is-hidden{
  display: none !important;
}

.product-showcase-grid{
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 56px;
  align-items: center;
}
.product-showcase-grid.flip{
  direction: rtl;
}
.product-showcase-grid.flip > *{
  direction: ltr;
}

/* Product Info Left Side */
.product-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: #EAF3FF;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.pe-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
}
.product-theme-mailops .product-eyebrow{ color: var(--orange-600); background: #FFF1E6; }
.product-theme-mailops .pe-dot{ background: var(--orange-600); }
.product-theme-argus .product-eyebrow{ color: #059669; background: #ECFDF5; }
.product-theme-argus .pe-dot{ background: #059669; }
.product-theme-crm .product-eyebrow{ color: #D97706; background: #FEF3C7; }
.product-theme-crm .pe-dot{ background: #D97706; }
.product-theme-hrms .product-eyebrow{ color: #4F46E5; background: #EEF2FF; }
.product-theme-hrms .pe-dot{ background: #4F46E5; }
.product-theme-clinic .product-eyebrow{ color: #0284C7; background: #E0F2FE; }
.product-theme-clinic .pe-dot{ background: #0284C7; }

.product-title{
  font-size: clamp(2rem, 1.6rem + 1.2vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  line-height: 1.15;
}
.product-tagline{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-600);
  margin: 0 0 14px;
  line-height: 1.35;
}
.product-desc{
  font-size: 0.96rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0 0 22px;
}

/* Metric Strip inside product card */
.product-metrics-strip{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pms-pill{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
}
.pms-pill strong{
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.1;
}
.pms-pill span{
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Checklist */
.product-capabilities-list{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-capabilities-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
}
.product-capabilities-list li strong{
  color: var(--navy-900);
}
.pc-check{
  color: #10B981;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Best for Box */
.product-bestfor-box{
  background: #F8FAFD;
  border-left: 3px solid var(--blue-600);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}
.pbf-label{
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 3px;
}
.product-bestfor-box p{
  margin: 0;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.45;
}
.product-bestfor-box p strong{
  color: var(--navy-900);
}

.product-actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Realistic Operational UI Cockpit Windows
   ========================================================================== */
.cockpit-window-frame{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(10, 18, 48, 0.08);
  overflow: hidden;
  position: relative;
}
.cw-header{
  background: #F1F5F9;
  border-bottom: 1px solid var(--line);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cw-dots{
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.cw-dots span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
}
.cw-dots span:nth-child(1){ background: #FDA4AF; }
.cw-dots span:nth-child(2){ background: #FCD34D; }
.cw-dots span:nth-child(3){ background: #86EFAC; }
.cw-title{
  font-family: var(--font-mono, monospace);
  font-size: 0.76rem;
  color: var(--slate);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cw-live-tag{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #10B981;
  background: #ECFDF5;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.live-blink{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
  animation: pulseBlink 1.8s infinite;
}
@keyframes pulseBlink{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.4; transform: scale(0.85); }
}

.cw-body{
  padding: 20px;
  background: #FFFFFF;
}

/* 1. MailOps Cockpit Styles */
.mo-topbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.mo-inbox-stats{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.mo-badge{
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
  background: #F1F5F9;
  padding: 3px 8px;
  border-radius: 4px;
}
.mo-badge-active{
  background: #EAF3FF;
  color: var(--blue-600);
}
.mo-badge-urgent{
  background: #FFF1F2;
  color: #E11D48;
}
.mo-nlp-banner{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
  background: #F8FAFD;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.nlp-icon{
  color: var(--blue-600);
  font-weight: 700;
}

.mo-thread-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.mo-thread-item{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.mo-thread-item:hover{
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(10, 18, 48, 0.05);
}
.mo-thread-item.urgent{
  border-left: 3px solid #E11D48;
  background: #FFFDFC;
}
.mo-th-left{
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-grow: 1;
}
.mo-th-sender{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--navy-900);
}
.mo-tag{
  font-size: 0.66rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
}
.mo-tag-red{ background: #FFE4E6; color: #E11D48; }
.mo-tag-blue{ background: #DBEAFE; color: #1D4ED8; }
.mo-tag-green{ background: #D1FAE5; color: #047857; }
.mo-th-subject{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
}
.mo-th-snippet{
  font-size: 0.78rem;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 44ch;
}
.mo-th-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.mo-assignee{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy-900);
}
.mo-avatar{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3B82F6;
  color: #FFFFFF;
  font-size: 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.avatar-cyan{ background: #06B6D4; }
.avatar-orange{ background: #F97316; }
.avatar-blue{ background: #2563EB; }
.mo-time{
  font-size: 0.7rem;
  color: var(--slate-light);
}

.mo-copilot-panel{
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 12px 14px;
}
.mcp-header{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #15803D;
  margin-bottom: 4px;
}
.mcp-body{
  font-size: 0.8rem;
  color: #166534;
  line-height: 1.4;
  margin-bottom: 10px;
}
.mcp-buttons{
  display: flex;
  gap: 8px;
}
.mcp-btn{
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}
.mcp-btn.primary{
  background: #15803D;
  color: #FFFFFF;
}
.mcp-btn.secondary{
  background: #DCFCE7;
  color: #166534;
}

/* 2. PX Reports Cockpit Styles */
.px-metrics-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.px-metric-card{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.pxm-lbl{
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
}
.pxm-num{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 4px 0 2px;
}
.pxm-trend{
  font-size: 0.7rem;
  font-weight: 600;
}
.pxm-trend.positive{ color: #10B981; }
.pxm-trend.neutral{ color: var(--blue-600); }

.px-chart-box{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
}
.pxc-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.pxc-export{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue-600);
  cursor: pointer;
}
.px-histogram{
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 110px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.px-bar-col{
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.px-bar{
  width: 100%;
  background: #93C5FD;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}
.px-bar.peak{
  background: linear-gradient(180deg, #01BCF9, #0B63D6);
}
.px-bar-col span{
  position: absolute;
  bottom: -20px;
  font-size: 0.65rem;
  color: var(--slate-light);
  white-space: nowrap;
}
.px-bar-col .peak-lbl{
  font-weight: 700;
  color: var(--blue-600);
}

.px-audit-strip{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--slate);
  background: #F8FAFD;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.pxa-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

/* 3. Argus Cockpit Styles */
.argus-video-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.argus-cam-cell{
  position: relative;
  aspect-ratio: 16/10;
  background: #0B132B;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #1E293B;
}
.acc-feed-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-dock{
  background: radial-gradient(circle at 40% 40%, #1E293B 0%, #0F172A 100%);
}
.feed-bay{
  background: radial-gradient(circle at 60% 50%, #172554 0%, #0F172A 100%);
}
.feed-perimeter{
  background: radial-gradient(circle at 50% 50%, #14213D 0%, #020617 100%);
}
.feed-conveyor{
  background: radial-gradient(circle at 30% 60%, #1F2937 0%, #0B1120 100%);
}
.ai-box{
  border: 1.5px solid #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 8px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ai-box.ai-truck{
  border-color: #F59E0B;
  background: rgba(245, 158, 11, 0.15);
}
.ai-tag{
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 700;
  color: #FCD34D;
}
.ai-dwell{
  font-family: var(--font-mono, monospace);
  font-size: 0.6rem;
  font-weight: 700;
  color: #F87171;
}
.ai-clear .ai-tag{
  color: #6EE7B7;
}
.acc-status-secure{
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
}
.acc-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acc-name{
  font-size: 0.68rem;
  font-weight: 600;
  color: #F8FAFC;
}
.acc-fps{
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  color: #94A3B8;
}

.argus-alert-ticker{
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 6px;
  padding: 8px 12px;
}
.aat-badge{
  font-size: 0.65rem;
  font-weight: 700;
  color: #B45309;
  background: #FDE68A;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}
.aat-text{
  font-size: 0.75rem;
  color: #92400E;
  line-height: 1.35;
}

/* 4. CRM Cockpit Styles */
.crm-kanban-board{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.crm-column{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.crm-col-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.crm-col-count{
  font-size: 0.65rem;
  color: var(--slate-light);
}
.crm-deal-card{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  box-shadow: 0 2px 6px rgba(10, 18, 48, 0.03);
}
.crm-deal-card.highlighted{
  border-color: #3B82F6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
.cdc-title{
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-900);
}
.cdc-val{
  font-size: 0.72rem;
  color: var(--blue-600);
  font-weight: 600;
  margin: 2px 0 6px;
}
.cdc-status-pill{
  font-size: 0.65rem;
  font-weight: 600;
  color: #10B981;
  background: #ECFDF5;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.cdc-meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
}
.cdc-tag{
  background: #F1F5F9;
  color: var(--slate);
  padding: 1px 5px;
  border-radius: 3px;
}
.cdc-hot{ background: #FEE2E2; color: #DC2626; font-weight: 600; }
.cdc-amber{ background: #FEF3C7; color: #D97706; }
.cdc-green{ background: #D1FAE5; color: #059669; }
.cdc-rep{
  color: var(--slate-light);
}

.crm-action-bar{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--slate);
  background: #F8FAFD;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.cab-icon{
  color: var(--orange-500);
}

/* 5. HRMS Cockpit Styles */
.hrms-status-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.hs-card{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}
.hs-lbl{
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
}
.hs-num{
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 3px 0 2px;
}
.hs-sub{
  font-size: 0.68rem;
  color: var(--slate);
}

.hrms-table-container{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.ht-header{
  background: #F8FAFD;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.ht-pill{
  font-size: 0.66rem;
  font-weight: 600;
  color: #10B981;
  background: #ECFDF5;
  padding: 2px 6px;
  border-radius: 4px;
}
.ht-row{
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  padding: 10px 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.ht-row:last-child{ border-bottom: none; }
.ht-user{
  display: flex;
  align-items: center;
  gap: 8px;
}
.ht-user strong{
  display: block;
  color: var(--navy-900);
}
.ht-user span{
  font-size: 0.7rem;
  color: var(--slate-light);
}
.ht-avatar{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ht-badge{
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}
.ht-badge.present{ background: #D1FAE5; color: #047857; }
.ht-badge.overtime{ background: #FEF3C7; color: #D97706; }
.ht-hours{ color: var(--slate); }
.ht-status{ color: var(--navy-900); font-weight: 500; }

.hrms-payroll-bar{
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.76rem;
  color: #166534;
}
.hpb-icon{
  font-weight: 700;
  color: #15803D;
}

/* 6. Clinic Cockpit Styles */
.clinic-queue-bar{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.cq-item{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
}
.cq-lbl{
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--slate-light);
}
.cq-item strong{
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-top: 2px;
}

.clinic-patients-list{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.cpl-header{
  background: #F8FAFD;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.cpl-tag{
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--blue-600);
  background: #EAF3FF;
  padding: 2px 6px;
  border-radius: 4px;
}
.cp-row{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.cp-row:last-child{ border-bottom: none; }
.cp-row.active-patient{
  background: #EFF6FF;
  border-left: 3px solid #3B82F6;
}
.cpr-time{
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate);
}
.cpr-info{
  flex-grow: 1;
}
.cpr-info strong{
  display: block;
  color: var(--navy-900);
}
.cpr-info span{
  font-size: 0.7rem;
  color: var(--slate);
}
.cpr-status{
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}
.status-in{ background: #DBEAFE; color: #1D4ED8; }
.status-wait{ background: #F1F5F9; color: var(--slate); }

.clinic-emr-preview{
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 6px;
  padding: 10px 12px;
}
.cep-head{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #166534;
  margin-bottom: 6px;
}
.cep-tags{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.cep-pill{
  font-size: 0.7rem;
  font-family: var(--font-mono, monospace);
  background: #FFFFFF;
  border: 1px solid #BBF7D0;
  padding: 2px 6px;
  border-radius: 4px;
  color: #166534;
}
.cep-badge{
  font-size: 0.68rem;
  font-weight: 600;
  color: #15803D;
  margin-left: auto;
}

/* 7. Workflow Cockpit Styles */
.wf-node-track{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding: 6px 2px;
}
.wf-node{
  background: #F8FAFD;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  min-width: 140px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-shrink: 0;
}
.wf-node.completed{
  border-color: #10B981;
  background: #ECFDF5;
}
.wf-node.current{
  border-color: var(--blue-600);
  background: #EFF6FF;
  box-shadow: 0 4px 12px rgba(11, 99, 214, 0.12);
}
.wf-node.pending{
  opacity: 0.6;
}
.wfn-icon{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E2E8F0;
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-node.completed .wfn-icon{ background: #10B981; color: #FFFFFF; }
.wf-node.current .wfn-icon{ background: var(--blue-600); color: #FFFFFF; }
.wfn-info{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wfn-info strong{
  font-size: 0.74rem;
  color: var(--navy-900);
}
.wfn-info span{
  font-size: 0.66rem;
  color: var(--slate);
}
.wfn-time{
  font-size: 0.64rem;
  font-weight: 600;
}
.wf-connector{
  width: 16px;
  height: 2px;
  background: #CBD5E1;
  flex-shrink: 0;
}
.wf-connector.active{
  background: #10B981;
}

.wf-metadata-box{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wmb-row{
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}
.wmb-row span{ color: var(--slate); }
.wmb-row strong{ color: var(--navy-900); }

.wf-actions-bar{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wf-btn{
  font-size: 0.74rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  cursor: pointer;
}
.wf-btn.approve{
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
}
.wf-btn.escalate{
  background: #FFFFFF;
  color: var(--navy-900);
}
.wf-btn.history{
  background: transparent;
  color: var(--slate);
  border: none;
  margin-left: auto;
}

/* ==========================================================================
   The Synchronized Floor: Ecosystem Architecture Bus
   ========================================================================== */
.products-architecture-section{
  padding-block: 88px;
  border-bottom: 1px solid var(--line);
}
.architecture-bus-diagram{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 32px rgba(10, 18, 48, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.arch-layer{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.arch-layer-title{
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.06em;
}
.arch-pills-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.arch-pill{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
}

.arch-core-bus{
  background: #00134B;
  border-radius: 12px;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}
.arch-core-bus::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #01BCF9, #0B63D6, #FE8F00, #E51503);
}
.acb-title{
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.acb-sub{
  font-size: 0.82rem;
  color: #94A3B8;
  margin-bottom: 16px;
}
.acb-disciplines-bar{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.acb-discipline{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #E2E8F0;
}
.d-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.d-dot-ai{ background: #01BCF9; }
.d-dot-analytics{ background: #0B63D6; }
.d-dot-automation{ background: #FE8F00; }
.d-dot-trans{ background: #E51503; }

.arch-engines-grid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.arch-engine-box{
  background: #F8FAFD;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.2s ease;
}
.arch-engine-box:hover{
  border-color: var(--blue-600);
  background: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(11, 99, 214, 0.1);
  text-decoration: none;
}
.arch-engine-box strong{
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--navy-900);
}
.arch-engine-box span{
  font-size: 0.68rem;
  color: var(--slate);
  margin-top: 2px;
}

/* ==========================================================================
   Comparison Matrix Table
   ========================================================================== */
.products-comparison-section{
  padding-block: 88px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}
.comparison-table-wrapper{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 18, 48, 0.04);
}
.products-comparison-table{
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.products-comparison-table th,
.products-comparison-table td{
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.5;
}
.products-comparison-table tr:last-child td{
  border-bottom: none;
}
.products-comparison-table thead th{
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  background: #F8FAFD;
}
.products-comparison-table thead th.th-trendforge{
  background: #EFF6FF;
  color: var(--blue-600);
  border-bottom: 2px solid var(--blue-600);
}
.products-comparison-table thead th.th-legacy{
  background: #FFF7ED;
  color: #C2410C;
  border-bottom: 2px solid #EA580C;
}
.products-comparison-table td.td-tf{
  background: #F8FBFF;
  color: var(--navy-900);
}
.products-comparison-table td.td-legacy{
  color: var(--slate);
}

/* ==========================================================================
   Products CTA Card
   ========================================================================== */
.products-cta-section{
  padding-block: 84px;
}
.products-cta-card{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 12px 34px rgba(10, 18, 48, 0.05);
  position: relative;
  overflow: hidden;
}
.products-cta-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FE8F00, #0B63D6, #01BCF9);
}
.pca-copy h2{
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.3rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 12px 0 14px;
  line-height: 1.2;
}
.pca-copy p{
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}
.pca-buttons{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ==========================================================================
   Responsive Rules for Products Suite
   ========================================================================== */
@media (max-width: 1080px){
  .product-showcase-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-showcase-grid.flip{
    direction: ltr;
  }
  .arch-engines-grid{
    grid-template-columns: repeat(4, 1fr);
  }
  .products-cta-card{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px;
  }
}

@media (max-width: 768px){
  .products-fleet-metrics{
    border-radius: 16px;
    gap: 16px;
    padding: 16px;
  }
  .pfm-sep{ display: none; }
  .products-filter-bar{
    border-radius: 12px;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .arch-engines-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .crm-kanban-board{
    grid-template-columns: 1fr;
  }
  .argus-video-grid{
    grid-template-columns: 1fr;
  }
  .clinic-queue-bar{
    grid-template-columns: 1fr 1fr;
  }
  .hrms-status-row{
    grid-template-columns: 1fr;
  }
  .ht-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


/* ==========================================================================
   Trusted By Teams & Client Partner Impact Section
   ========================================================================== */
.trusted-section{
  background: #EDF2F9;
  padding-block: 84px 92px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.trusted-head{
  margin-bottom: 38px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  border-bottom: 1px solid rgba(225, 230, 240, 0.9);
  padding-bottom: 24px;
}

.trusted-stat-badge{
  background: #FFFFFF;
  border: 1px solid rgba(11, 99, 214, 0.2);
  border-radius: 8px;
  padding: 12px 22px;
  box-shadow: 0 4px 16px rgba(11, 99, 214, 0.08);
  text-align: center;
  flex-shrink: 0;
}
.badge-big-num{
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
}
.badge-sub-text{
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--slate);
  margin-top: 4px;
  white-space: nowrap;
}

/* 5-Column Client Partner Impact Grid */
.client-cards-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 38px;
}

.client-impact-card{
  background: #FFFFFF;
  border: 1px solid rgba(225, 230, 240, 0.95);
  border-radius: 10px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(10, 18, 48, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.client-impact-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -8px rgba(10, 18, 48, 0.12), 0 0 20px rgba(1, 188, 249, 0.06);
  border-color: rgba(11, 99, 214, 0.35);
}

.client-card-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.client-monogram{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}
.mono-kaizen{ background: linear-gradient(135deg, #0B63D6, #01BCF9); color: #FFFFFF; }
.mono-ihr{ background: linear-gradient(135deg, #00134B, #0B63D6); color: #FFFFFF; }
.mono-ksca{ background: linear-gradient(135deg, #FE8F00, #E51503); color: #FFFFFF; }
.mono-pvrn{ background: linear-gradient(135deg, #0D1B57, #FE8F00); color: #FFFFFF; }
.mono-ih{ background: linear-gradient(135deg, #10B981, #01BCF9); color: #FFFFFF; }

.client-header-meta{
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.client-org-name{
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.2;
}
.client-industry-tag{
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-light);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-summary{
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0 0 14px;
  flex-grow: 1;
}

.client-impact-stat{
  background: #F4F7FC;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 12px;
  border: 1px solid #E3ECF7;
}
.stat-digit{
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  display: block;
  line-height: 1.1;
}
.stat-label{
  font-size: 0.7rem;
  color: var(--slate);
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

.client-tech-pills{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tech-pill{
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  background: #EAF3FF;
  color: var(--blue-600);
  border: 1px solid rgba(11, 99, 214, 0.15);
}

/* Trust Proof Strip */
.trust-proof-strip{
  background: #FFFFFF;
  border: 1px solid rgba(225, 230, 240, 0.95);
  border-radius: 10px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(10, 18, 48, 0.04);
}
.proof-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.proof-number{
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}
.proof-label{
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate);
  margin-top: 3px;
}
.proof-divider{
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* Responsive Adaptations for Trusted Section */
@media (max-width: 1140px){
  .client-cards-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px){
  .trusted-head{
    flex-direction: column;
    align-items: flex-start;
  }
  .client-cards-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-proof-strip{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 20px;
  }
  .proof-divider{
    display: none;
  }
}
@media (max-width: 580px){
  .client-cards-grid{
    grid-template-columns: 1fr;
  }
  .trust-proof-strip{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------- service detail card ---------- */
.service-card{
  background:var(--paper-raised);
  border:1px solid var(--line);
  padding:32px 30px;
  position:relative;
  clip-path:polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}
.service-card::before{
  content:"";
  position:absolute;
  top:0; right:0;
  width:26px; height:26px;
  background:var(--grad-orange);
  clip-path:polygon(100% 0, 0 0, 100% 100%);
}
.service-card.blue::before{ background:var(--grad-blue); }
.service-card .num{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.1rem;
  color:var(--slate-light);
  margin-bottom:14px;
  display:block;
}
.service-card h3{ margin-bottom:0.5em; }
.service-card p{ color:var(--slate); font-size:0.96rem; margin-bottom:18px; }
.service-card .bullets{ border-top:1px dashed var(--line); padding-top:16px; }
.service-card .bullets li{
  position:relative;
  padding-left:18px;
  margin-bottom:9px;
  font-size:0.9rem;
  color:var(--ink);
}
.service-card .bullets li::before{
  content:"";
  position:absolute;
  left:0; top:0.55em;
  width:7px; height:7px;
  background:var(--grad-orange);
}
.service-card.blue .bullets li::before{ background:var(--grad-blue); }
.service-card .bullets li:last-child{ margin-bottom:0; }

/* ---------- data motif (decorative squares) ---------- */
.motif{ position:absolute; inset:0; pointer-events:none; z-index:-1; }
.motif .sq{
  position:absolute;
  background:var(--blue-400);
  opacity:0.5;
}

/* ---------- misc ---------- */
.vr{ width:1px; background:var(--line); align-self:stretch; }
.small-print{ font-size:0.84rem; color:var(--slate-light); }

/* ==========================================================================
   About Page: Flagship Story, Contrast Showcase, Principles & Blueprint
   ========================================================================== */
.about-hero{
  position: relative;
  background: #FFFFFF;
  padding-block: 84px 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.about-hero-bg-fx{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.about-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.about-glow-1{
  width: 520px;
  height: 520px;
  top: -140px;
  left: -100px;
  background: radial-gradient(circle, #01BCF9, transparent 70%);
}
.about-glow-2{
  width: 480px;
  height: 480px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, #FE8F00, transparent 70%);
}
.about-grid-pattern{
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(11, 99, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 99, 214, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.65;
}

.about-hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.about-hero-manifesto{
  display: flex;
  flex-direction: column;
}
.about-hero-title{
  font-size: clamp(2.2rem, 1.8rem + 2vw, 3.25rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.about-hero-lede{
  font-size: 1.12rem;
  color: var(--slate);
  line-height: 1.62;
  margin: 0 0 16px;
}
.about-hero-subtext{
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0 0 26px;
}
.about-hero-actions{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.about-hero-trust-badges{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-900);
  background: #F8FAFD;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.trust-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
}

/* Right Column: Hero Simulation Cockpit */
.about-hero-cockpit{
  position: relative;
}
.cockpit-card{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px 20px;
  box-shadow: 0 14px 38px rgba(10, 18, 48, 0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cockpit-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01BCF9, #0B63D6, #FE8F00);
}

.cockpit-top-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
  flex-wrap: wrap;
}
.cockpit-facility-info{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.04em;
}
.cockpit-live-pulse{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  transition: all 0.3s ease;
}
.cockpit-live-pulse.pulse-red{
  background: #DC2626;
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.8);
}

.cockpit-toggle-group{
  display: inline-flex;
  background: #F1F5F9;
  border-radius: 8px;
  padding: 3px;
  border: 1px solid var(--line);
}
.cockpit-toggle-btn{
  border: none;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
  padding: 5px 11px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cockpit-toggle-btn:hover{
  color: var(--navy-900);
}
.cockpit-toggle-btn.active{
  background: #FFFFFF;
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Cockpit Status Banner */
.cockpit-status-banner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.banner-tf{
  background: #EAF3FF;
  border: 1px solid rgba(11, 99, 214, 0.25);
  color: var(--navy-900);
}
.banner-legacy{
  background: #FEF2F2;
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #991B1B;
}
.csb-left{
  display: flex;
  align-items: center;
  gap: 10px;
}
.csb-icon{
  font-size: 1.25rem;
  line-height: 1;
}
.csb-left strong{
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}
.csb-left span{
  font-size: 0.72rem;
  color: var(--slate);
}
.banner-legacy .csb-left span{
  color: #B91C1C;
}
.csb-pill{
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.banner-tf .csb-pill{
  background: #0B63D6;
  color: #FFFFFF;
}
.banner-legacy .csb-pill{
  background: #DC2626;
  color: #FFFFFF;
}

/* Event Telemetry Stream */
.cockpit-stream-card{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.stream-card-label{
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--slate-light);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.cockpit-stream-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stream-event{
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  line-height: 1.35;
}
.ev-time{
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--slate-light);
  flex-shrink: 0;
}
.ev-badge{
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}
.ev-tf{
  background: #EAF3FF;
  color: var(--blue-600);
  border: 1px solid rgba(11, 99, 214, 0.2);
}
.ev-legacy{
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.ev-text{
  color: var(--slate);
  flex-grow: 1;
}
.ev-text strong{
  color: var(--navy-900);
}
.ev-legacy-text strong{
  color: #B91C1C;
}

/* Cockpit Shift Ergonomics Meters */
.cockpit-meters-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.meter-box{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.meter-title{
  font-size: 0.66rem;
  color: var(--slate-light);
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.meter-val{
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
.val-good{
  color: #0B63D6;
}
.val-bad{
  color: #DC2626;
}
.meter-sub{
  font-size: 0.65rem;
  color: var(--slate);
}

/* Cockpit Footer Callout */
.cockpit-footer-callout{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--slate);
  background: #F1F5F9;
  border-radius: 6px;
  padding: 7px 10px;
  border: 1px dashed var(--line);
}
.callout-icon{
  flex-shrink: 0;
}

@media (max-width: 1080px){
  .about-hero-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* About Origin Proof Strip */
.about-proof-strip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 32px;
  box-shadow: 0 4px 20px rgba(10, 18, 48, 0.04);
  flex-wrap: wrap;
  gap: 20px;
}
.about-proof-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-proof-num{
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}
.about-proof-num .stat-accent{
  color: var(--blue-600);
}
.about-proof-label{
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 5px;
}
.about-proof-sub{
  font-size: 0.72rem;
  color: var(--slate-light);
  margin-top: 1px;
}
.about-proof-sep{
  width: 1px;
  height: 36px;
  background: var(--line);
}

/* Contrast Section: Status Quo vs TrendForge */
.about-contrast-section{
  padding-block: 84px;
  border-bottom: 1px solid var(--line);
}
.contrast-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contrast-card{
  border-radius: 14px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contrast-card:hover{
  transform: translateY(-4px);
}
.status-quo-card{
  background: #FFFFFF;
  border: 1.5px solid #FCD34D;
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.06);
}
.trendforge-card{
  background: #FFFFFF;
  border: 2px solid var(--blue-600);
  box-shadow: 0 10px 30px rgba(11, 99, 214, 0.1);
}
.contrast-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
}
.badge-warning{
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid rgba(217, 119, 6, 0.3);
}
.badge-success{
  background: #EAF3FF;
  color: var(--blue-600);
  border: 1px solid rgba(11, 99, 214, 0.3);
}
.contrast-card h3{
  font-size: 1.45rem;
  color: var(--navy-900);
  margin: 0 0 10px;
  line-height: 1.25;
}
.contrast-summary{
  font-size: 0.94rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0 0 20px;
}
.contrast-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #EEF2F6;
  list-style: none;
}
.contrast-list li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
}
.contrast-list li strong{
  color: var(--navy-900);
}
.list-negative .list-bullet{
  color: #DC2626;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.list-positive .list-bullet{
  color: #10B981;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Operating Principles */
.about-principles-section{
  padding-block: 88px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}
.principles-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.principle-card{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 22px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(10, 18, 48, 0.04);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.28s ease;
  cursor: default;
}
.principle-card:hover, .principle-card:focus-visible{
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -8px rgba(10, 18, 48, 0.12), 0 0 20px rgba(11, 99, 214, 0.06);
  border-color: rgba(11, 99, 214, 0.4);
  outline: none;
}
.principle-accent-bar{
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.p-cyan .principle-accent-bar{ background: linear-gradient(90deg, #01BCF9, #0B63D6); }
.p-orange .principle-accent-bar{ background: linear-gradient(90deg, #FE8F00, #E51503); }
.p-blue .principle-accent-bar{ background: linear-gradient(90deg, #0B63D6, #00134B); }
.p-emerald .principle-accent-bar{ background: linear-gradient(90deg, #10B981, #01BCF9); }

.principle-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.principle-num{
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-light);
}
.principle-pill-tag{
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.p-cyan .principle-pill-tag{ background: #EAF3FF; color: #0B63D6; }
.p-orange .principle-pill-tag{ background: #FFF7ED; color: #EA580C; }
.p-blue .principle-pill-tag{ background: #EEF2F9; color: var(--navy-900); }
.p-emerald .principle-pill-tag{ background: #ECFDF5; color: #059669; }

.principle-card h3{
  font-size: 1.25rem;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.principle-quote{
  font-size: 0.84rem;
  font-style: italic;
  color: var(--navy-900);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  border-left: 2.5px solid;
  padding-left: 10px;
}
.p-cyan .principle-quote{ border-color: #01BCF9; }
.p-orange .principle-quote{ border-color: #FE8F00; }
.p-blue .principle-quote{ border-color: #0B63D6; }
.p-emerald .principle-quote{ border-color: #10B981; }

.principle-card p{
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 16px;
  flex-grow: 1;
}
.principle-metric-box{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
}
.pm-val{
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
}
.pm-label{
  font-size: 0.72rem;
  color: var(--slate);
  margin-top: 1px;
}

/* ==========================================================================
   About Page: The Delivery Framework Section (5-Phase Blueprint)
   ========================================================================== */
.about-blueprint-section{
  position: relative;
  background: #F8FAFD;
  padding-block: 92px 84px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.blueprint-bg-fx{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bp-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.bp-glow-1{
  width: 500px;
  height: 500px;
  top: -120px;
  left: 5%;
  background: radial-gradient(circle, #01BCF9, transparent 70%);
}
.bp-glow-2{
  width: 480px;
  height: 480px;
  bottom: -100px;
  right: 5%;
  background: radial-gradient(circle, #0B63D6, transparent 70%);
}
.bp-grid-pattern{
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(11, 99, 214, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 99, 214, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.7;
}

.about-blueprint-section > .wrap{
  position: relative;
  z-index: 1;
}

/* Header */
.blueprint-header{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 48px;
}
.blueprint-title{
  font-size: clamp(2rem, 1.6rem + 1.8vw, 2.85rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.blueprint-subtitle{
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Delivery Assurance Strip */
.blueprint-assurance-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(10, 18, 48, 0.04);
}
.bp-ass-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 4px;
}
.bp-ass-num{
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}
.bp-ass-num small{
  font-size: 0.78rem;
  color: var(--blue-600);
  font-weight: 600;
}
.bp-ass-label{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate);
  margin-top: 4px;
  line-height: 1.3;
}

/* Pipeline Track & Tabs */
.blueprint-track-wrapper{
  position: relative;
  margin-bottom: 24px;
}
.blueprint-track-rail{
  position: absolute;
  top: 36px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: #E2E8F0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 2px;
}
.bp-rail-beam{
  position: absolute;
  top: 0;
  left: -20%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #01BCF9, #0B63D6, transparent);
  animation: bpBeamTravel 4s infinite linear;
}
@keyframes bpBeamTravel{
  0%{ left: -30%; }
  100%{ left: 110%; }
}

.blueprint-phases-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.bp-phase-tab{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(10, 18, 48, 0.03);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease, 
              box-shadow 0.25s ease,
              background 0.25s ease;
  cursor: pointer;
  position: relative;
  outline: none;
}
.bp-phase-tab:hover{
  transform: translateY(-4px);
  border-color: rgba(11, 99, 214, 0.4);
  box-shadow: 0 10px 24px rgba(10, 18, 48, 0.08);
}
.bp-phase-tab:focus-visible{
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}
.bp-phase-tab.active{
  border-color: var(--blue-600);
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(11, 99, 214, 0.12);
  transform: translateY(-4px);
}
.bp-phase-tab.active::before{
  content: "";
  position: absolute;
  top: -1.5px;
  left: 14px;
  right: 14px;
  height: 3.5px;
  background: linear-gradient(90deg, #01BCF9, #0B63D6);
  border-radius: 3px 3px 0 0;
}

.bp-tab-badge{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bp-tab-num{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  background: #F1F5F9;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.bp-phase-tab.active .bp-tab-num{
  background: #EAF3FF;
  color: var(--blue-600);
}
.bp-tab-status-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: all 0.25s ease;
}
.bp-phase-tab.active .bp-tab-status-dot{
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.bp-tab-time{
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.bp-tab-name{
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  line-height: 1.25;
}
.bp-tab-summary{
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.45;
  margin: 0 0 12px;
  flex-grow: 1;
}
.bp-tab-meta{
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.bp-tab-deliverable{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy-900);
  background: #F4F7FC;
  padding: 3px 7px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #E2E8F0;
}

/* About Blueprint Deep-Dive Inspector Workbench */
.about-blueprint-workbench{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 34px 34px 30px;
  box-shadow: 0 8px 30px rgba(10, 18, 48, 0.04);
  position: relative;
  overflow: hidden;
}
.about-blueprint-workbench::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #01BCF9, #0B63D6, #FE8F00);
}

.bp-workbench-header{
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.bp-wb-kicker{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.bp-wb-tag{
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-600);
  background: #EAF3FF;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(11, 99, 214, 0.2);
  letter-spacing: 0.04em;
}
.bp-wb-time{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate);
  background: #F8FAFD;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.bp-wb-title{
  font-size: 1.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 10px;
  line-height: 1.25;
}
.bp-wb-desc{
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
  max-width: 82ch;
}

.bp-workbench-body{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.bp-col-heading{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bp-checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bp-checklist li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
}
.bp-checklist li strong{
  color: var(--navy-900);
}
.bp-check-icon{
  color: #10B981;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Deliverable Card */
.bp-deliverable-card{
  background: #F8FAFD;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(10, 18, 48, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bp-del-badge{
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.bp-del-title{
  font-size: 1.2rem;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.3;
}
.bp-del-desc{
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0 0 18px;
}

.bp-roles-box{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin-top: auto;
  margin-bottom: 16px;
}
.bp-role-item{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-role-lbl{
  font-size: 0.68rem;
  color: var(--slate-light);
  font-weight: 600;
  text-transform: uppercase;
}
.bp-role-item strong{
  font-size: 0.8rem;
  color: var(--navy-900);
  line-height: 1.3;
}

.bp-discipline-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Responsive Media Queries for Blueprint */
@media (max-width: 1100px){
  .blueprint-header{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blueprint-phases-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .blueprint-track-rail{
    display: none;
  }
}
@media (max-width: 860px){
  .bp-workbench-body{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blueprint-phases-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px){
  .blueprint-phases-grid{
    grid-template-columns: 1fr;
  }
  .blueprint-assurance-strip{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bp-roles-box{
    grid-template-columns: 1fr;
  }
}


/* Leadership Section */
.about-leadership-section{
  padding-block: 88px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}
.leadership-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.leader-card{
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 26px 26px;
  box-shadow: 0 4px 18px rgba(10, 18, 48, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease;
  cursor: default;
}
.leader-card:hover, .leader-card:focus-visible{
  transform: translateY(-5px);
  border-color: rgba(11, 99, 214, 0.35);
  box-shadow: 0 16px 36px rgba(10, 18, 48, 0.1);
  outline: none;
}
.leader-header{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.leader-avatar{
  width: 50px;
  height: 50px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}
.avatar-systems{ background: linear-gradient(135deg, #00134B, #0B63D6); }
.avatar-ai{ background: linear-gradient(135deg, #0B63D6, #01BCF9); }
.avatar-trans{ background: linear-gradient(135deg, #FE8F00, #E51503); }

.leader-meta{
  display: flex;
  flex-direction: column;
}
.leader-name{
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 2px;
  line-height: 1.25;
}
.leader-role{
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--blue-600);
}
.leader-bio{
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0 0 18px;
  flex-grow: 1;
}
.leader-expertise{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #EEF2F6;
}
.exp-tag{
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: #EAF3FF;
  color: var(--blue-600);
  border: 1px solid rgba(11, 99, 214, 0.15);
}

/* Responsive Styles for About Page */
@media (max-width: 1080px){
  .principles-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px){
  .about-proof-strip{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
  }
  .about-proof-sep{
    display: none;
  }
  .contrast-grid{
    grid-template-columns: 1fr;
  }
  .leadership-grid{
    grid-template-columns: 1fr;
  }
  .blueprint-step{
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 580px){
  .principles-grid{
    grid-template-columns: 1fr;
  }
  .about-proof-strip{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   How We Work: Operational Delivery Framework Section
   ========================================================================== */
.delivery-section{
  position: relative;
  background: #FFFFFF;
  padding-block: 92px 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.delivery-bg-ambient{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.del-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.del-glow-1{
  width: 500px;
  height: 500px;
  top: -120px;
  left: 5%;
  background: radial-gradient(circle, #01BCF9, transparent 70%);
}
.del-glow-2{
  width: 480px;
  height: 480px;
  bottom: -100px;
  right: 5%;
  background: radial-gradient(circle, #0B63D6, transparent 70%);
}
.del-grid-pattern{
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(11, 99, 214, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 99, 214, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.7;
}

.delivery-section > .wrap{
  position: relative;
  z-index: 1;
}

/* Header */
.delivery-header{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 48px;
}
.delivery-title{
  font-size: clamp(2rem, 1.6rem + 1.8vw, 2.85rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.delivery-subtitle{
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Delivery Assurance Strip */
.delivery-assurance-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(10, 18, 48, 0.04);
}
.del-assurance-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 4px;
}
.del-ass-num{
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}
.del-ass-num small{
  font-size: 0.78rem;
  color: var(--blue-600);
  font-weight: 600;
}
.del-ass-label{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate);
  margin-top: 4px;
  line-height: 1.3;
}

/* Pipeline Track & Tabs */
.delivery-track-wrapper{
  position: relative;
  margin-bottom: 24px;
}
.delivery-track-rail{
  position: absolute;
  top: 36px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: #E2E8F0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 2px;
}
.rail-glow-beam{
  position: absolute;
  top: 0;
  left: -20%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #01BCF9, #0B63D6, transparent);
  animation: beamTravel 4s infinite linear;
}
@keyframes beamTravel{
  0%{ left: -30%; }
  100%{ left: 110%; }
}

.delivery-phases-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.delivery-phase-tab{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(10, 18, 48, 0.03);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease, 
              box-shadow 0.25s ease,
              background 0.25s ease;
  cursor: pointer;
  position: relative;
  outline: none;
}
.delivery-phase-tab:hover{
  transform: translateY(-4px);
  border-color: rgba(11, 99, 214, 0.4);
  box-shadow: 0 10px 24px rgba(10, 18, 48, 0.08);
}
.delivery-phase-tab:focus-visible{
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}
.delivery-phase-tab.active{
  border-color: var(--blue-600);
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(11, 99, 214, 0.12);
  transform: translateY(-4px);
}
.delivery-phase-tab.active::before{
  content: "";
  position: absolute;
  top: -1.5px;
  left: 14px;
  right: 14px;
  height: 3.5px;
  background: linear-gradient(90deg, #01BCF9, #0B63D6);
  border-radius: 3px 3px 0 0;
}

.dphase-badge{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dphase-num{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  background: #F1F5F9;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.delivery-phase-tab.active .dphase-num{
  background: #EAF3FF;
  color: var(--blue-600);
}
.dphase-status-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: all 0.25s ease;
}
.delivery-phase-tab.active .dphase-status-dot{
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.dphase-time{
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.dphase-name{
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 6px;
  line-height: 1.25;
}
.dphase-summary{
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.45;
  margin: 0 0 12px;
  flex-grow: 1;
}
.dphase-meta{
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.dphase-deliverable{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy-900);
  background: #F4F7FC;
  padding: 3px 7px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #E2E8F0;
}

/* Phase Deep-Dive Inspector Workbench */
.delivery-inspector-workbench{
  background: #F8FAFD;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 34px 34px 30px;
  box-shadow: 0 8px 30px rgba(10, 18, 48, 0.04);
  position: relative;
  overflow: hidden;
}
.delivery-inspector-workbench::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #01BCF9, #0B63D6, #FE8F00);
}

.workbench-header{
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.workbench-kicker{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.wb-phase-tag{
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-600);
  background: #EAF3FF;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(11, 99, 214, 0.2);
  letter-spacing: 0.04em;
}
.wb-timeline-pill{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate);
  background: #FFFFFF;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.wb-phase-title{
  font-size: 1.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 10px;
  line-height: 1.25;
}
.wb-phase-desc{
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
  max-width: 82ch;
}

.workbench-body{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.wb-col-title{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wb-checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wb-checklist li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
}
.wb-checklist li strong{
  color: var(--navy-900);
}
.wb-check-icon{
  color: #10B981;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Deliverable Card */
.wb-deliverable-card{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(10, 18, 48, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wb-del-badge{
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.wb-del-title{
  font-size: 1.2rem;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.3;
}
.wb-del-desc{
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0 0 18px;
}

.wb-roles-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin-top: auto;
  margin-bottom: 16px;
}
.wb-role-item{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wb-role-label{
  font-size: 0.68rem;
  color: var(--slate-light);
  font-weight: 600;
  text-transform: uppercase;
}
.wb-role-item strong{
  font-size: 0.8rem;
  color: var(--navy-900);
  line-height: 1.3;
}

.wb-discipline-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.d-tag{
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.d-tag-analytics{ background: #EAF3FF; color: #0B63D6; border: 1px solid rgba(11, 99, 214, 0.2); }
.d-tag-trans{ background: #ECFDF5; color: #059669; border: 1px solid rgba(5, 150, 105, 0.2); }
.d-tag-ai{ background: #EFF6FF; color: #0284C7; border: 1px solid rgba(2, 132, 199, 0.2); }
.d-tag-automation{ background: #FFF7ED; color: #EA580C; border: 1px solid rgba(234, 88, 12, 0.2); }

/* Responsive Media Queries */
@media (max-width: 1100px){
  .delivery-header{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .delivery-phases-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .delivery-track-rail{
    display: none;
  }
}
@media (max-width: 860px){
  .workbench-body{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .delivery-phases-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px){
  .delivery-phases-grid{
    grid-template-columns: 1fr;
  }
  .delivery-assurance-strip{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wb-roles-grid{
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICES PAGE: FLAGSHIP STYLES & INTERACTIVE SHOWCASES
   ========================================================================== */

/* ---------- Services Hero Section ---------- */
.services-hero{
  position: relative;
  background: radial-gradient(circle at 50% 20%, #0A1744 0%, #050B24 75%, #020617 100%);
  color: #FFFFFF;
  padding: 84px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.services-hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.sh-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.sh-glow-1{
  width: 550px;
  height: 550px;
  top: -160px;
  left: 10%;
  background: radial-gradient(circle, rgba(1, 188, 249, 0.22) 0%, transparent 70%);
}
.sh-glow-2{
  width: 500px;
  height: 500px;
  bottom: -120px;
  right: 8%;
  background: radial-gradient(circle, rgba(254, 143, 0, 0.18) 0%, transparent 70%);
}
.sh-glow-3{
  width: 420px;
  height: 420px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(11, 99, 214, 0.25) 0%, transparent 70%);
}
.sh-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
}

.services-hero > .wrap{
  position: relative;
  z-index: 2;
}

.services-hero-header{
  max-width: 960px;
  margin: 0 auto 54px;
  text-align: center;
}

.kicker-pill-cyan{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 188, 249, 0.12);
  border: 1px solid rgba(1, 188, 249, 0.35);
  color: #01BCF9;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.pill-dot-cyan{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #01BCF9;
  box-shadow: 0 0 10px #01BCF9;
  animation: pulseCyan 2.2s infinite ease-in-out;
}
@keyframes pulseCyan{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.45; transform: scale(0.85); }
}

.services-hero-title{
  font-size: clamp(2.35rem, 1.8rem + 2.5vw, 3.8rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.services-hero-title .gradient-text{
  background: linear-gradient(135deg, #01BCF9 0%, #60A5FA 50%, #FE8F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-hero-subtitle{
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.25rem);
  color: #CBD5E1;
  line-height: 1.68;
  max-width: 820px;
  margin: 0 auto 36px;
}

.services-hero-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.services-hero-actions .btn-primary{
  padding: 0.95em 1.85em;
  font-size: 1.02rem;
  box-shadow: 0 10px 28px -6px rgba(254, 143, 0, 0.45);
}
.services-hero-actions .btn-ghost.on-dark{
  padding: 0.95em 1.85em;
  font-size: 1.02rem;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}
.services-hero-actions .btn-ghost.on-dark:hover{
  background: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
}

/* Hero Performance Stats Strip */
.services-hero-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(15, 23, 54, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 22px 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.sh-stat-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px;
  position: relative;
}
.sh-stat-card:not(:last-child)::after{
  content: "";
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.sh-stat-num{
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.sh-stat-num small{
  color: #01BCF9;
  font-size: 1.05rem;
  font-weight: 600;
}
.sh-stat-label{
  font-size: 0.78rem;
  font-weight: 600;
  color: #94A3B8;
  margin-top: 6px;
  line-height: 1.35;
}

/* ---------- Interactive Discipline Filter Bar ---------- */
.services-filter-section{
  padding: 40px 0 20px;
  background: #F6F8FC;
}
.services-filter-bar-wrap{
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.services-filter-bar{
  display: inline-flex;
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  box-shadow: 0 6px 22px rgba(10, 18, 48, 0.05);
  flex-wrap: wrap;
  justify-content: center;
}
.sfb-btn{
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s ease;
  outline: none;
}
.sfb-btn:hover{
  color: var(--navy-900);
  background: #F1F5F9;
}
.sfb-btn.active{
  background: var(--navy-900);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 19, 75, 0.25);
}
.sfb-badge{
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 999px;
  background: #E2E8F0;
  color: var(--navy-900);
  font-weight: 700;
  transition: all 0.22s ease;
}
.sfb-btn.active .sfb-badge{
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* ---------- Discipline Showcase Cards ---------- */
.services-showcase-section{
  padding: 20px 0 84px;
  background: #F6F8FC;
}
.services-disciplines-stack{
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.service-discipline-card{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 18, 48, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.service-discipline-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10, 18, 48, 0.08);
  border-color: rgba(11, 99, 214, 0.35);
}
.service-discipline-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #01BCF9, #0B63D6);
}
.service-discipline-card.theme-amber::before{
  background: linear-gradient(90deg, #FE8F00, #E51503);
}
.service-discipline-card.theme-emerald::before{
  background: linear-gradient(90deg, #10B981, #059669);
}
.service-discipline-card.theme-purple::before{
  background: linear-gradient(90deg, #8B5CF6, #6366F1);
}

.sd-card-grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  padding: 44px 44px 38px;
  align-items: stretch;
}

/* Left Narrative Column */
.sd-info-col{
  display: flex;
  flex-direction: column;
}
.sd-header-eyebrow{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sd-num-badge{
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: #EAF3FF;
  color: var(--blue-600);
}
.theme-amber .sd-num-badge{
  background: #FFF4E6;
  color: #D97706;
}
.theme-emerald .sd-num-badge{
  background: #ECFDF5;
  color: #059669;
}
.theme-purple .sd-num-badge{
  background: #F3E8FF;
  color: #7C3AED;
}
.sd-tagline-pill{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.sd-title{
  font-size: clamp(1.65rem, 1.4rem + 0.8vw, 2.15rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 10px;
}
.sd-lead{
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--blue-600);
  margin: 0 0 14px;
  line-height: 1.45;
}
.theme-amber .sd-lead{ color: #D97706; }
.theme-emerald .sd-lead{ color: #059669; }
.theme-purple .sd-lead{ color: #7C3AED; }

.sd-description{
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.62;
  margin: 0 0 24px;
}

.sd-capabilities-title{
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px;
}
.sd-checklist{
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sd-checklist li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.45;
}
.sd-chk-icon{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.sd-tech-stack-wrap{
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.sd-tech-label{
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.sd-tech-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tech-chip{
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-900);
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 4px 9px;
}

/* Right Blueprint / Architecture Cockpit */
.sd-cockpit-col{
  display: flex;
  flex-direction: column;
}
.sd-cockpit-box{
  background: #F8FAFD;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sd-cockpit-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.sd-cockpit-label{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sd-cockpit-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
.sd-cockpit-badge{
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: #EAF3FF;
  color: var(--blue-600);
}

/* Architectural Flow Visual inside card */
.sd-flow-diagram{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.sd-flow-node{
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(10, 18, 48, 0.02);
}
.sd-node-left{
  display: flex;
  align-items: center;
  gap: 10px;
}
.sd-node-icon{
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.sd-node-title{
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}
.sd-node-sub{
  font-size: 0.74rem;
  color: var(--slate);
}
.sd-node-metric{
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-600);
  background: #EAF3FF;
  padding: 3px 7px;
  border-radius: 4px;
}
.sd-flow-connector{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -4px 0;
  color: var(--slate-light);
  font-size: 0.75rem;
}

/* Live Shift Assurances Strip in Card */
.sd-shift-assurances{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
  margin-bottom: 16px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 8px;
}
.sd-sa-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sd-sa-val{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
}
.sd-sa-label{
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.sd-deliverables-box{
  background: #F1F5F9;
  border-radius: 8px;
  padding: 12px 14px;
}
.sd-del-title{
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.sd-del-text{
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.4;
  margin: 0;
}

/* ---------- Scope & Engagement Configurator Widget ---------- */
.scope-configurator-section{
  padding: 90px 0;
  background: radial-gradient(circle at 50% 10%, #09153A 0%, #050B24 85%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sc-bg-ambient{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sc-glow-1{
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  right: 5%;
  background: radial-gradient(circle, rgba(1, 188, 249, 0.16) 0%, transparent 70%);
  filter: blur(120px);
}
.sc-glow-2{
  position: absolute;
  width: 460px;
  height: 460px;
  bottom: -100px;
  left: 5%;
  background: radial-gradient(circle, rgba(254, 143, 0, 0.14) 0%, transparent 70%);
  filter: blur(120px);
}

.scope-configurator-section > .wrap{
  position: relative;
  z-index: 2;
}

.sc-header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}
.sc-title{
  font-size: clamp(2rem, 1.6rem + 1.8vw, 2.9rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 16px;
}
.sc-subtitle{
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

.configurator-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* Left: Controls Panel */
.cfg-controls-card{
  background: rgba(15, 23, 54, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 36px 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.cfg-group{
  margin-bottom: 28px;
}
.cfg-group:last-child{
  margin-bottom: 0;
}
.cfg-group-title{
  font-size: 0.8rem;
  font-weight: 700;
  color: #01BCF9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cfg-pill-options{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cfg-pill-btn{
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: #E2E8F0;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cfg-pill-btn:hover{
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
}
.cfg-pill-btn.active{
  background: rgba(1, 188, 249, 0.15);
  border-color: #01BCF9;
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(1, 188, 249, 0.25);
}
.cfg-btn-sub{
  font-size: 0.72rem;
  color: #94A3B8;
  font-weight: 400;
}
.cfg-pill-btn.active .cfg-btn-sub{
  color: #E0F2FE;
}

/* Right: Dynamic Output Engine Card */
.cfg-output-card{
  background: #FFFFFF;
  border-radius: 18px;
  padding: 36px 34px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.cfg-output-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #01BCF9, #0B63D6, #FE8F00);
}

.cfg-out-badge-strip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cfg-out-mode{
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-600);
  background: #EAF3FF;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cfg-out-readiness{
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cfg-readiness-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
}

.cfg-out-title{
  font-size: 1.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.25;
}
.cfg-out-desc{
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0 0 24px;
}

/* Metric Highlights in Configurator */
.cfg-metric-highlights{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.cfg-mh-box{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.cfg-mh-label{
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.cfg-mh-val{
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
}
.cfg-mh-val small{
  font-size: 0.8rem;
  color: var(--blue-600);
}

/* Dedicated Engineering Pod Structure */
.cfg-squad-box{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 26px;
}
.cfg-squad-title{
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cfg-squad-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.squad-chip{
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-900);
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.squad-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
}

.cfg-actions{
  margin-top: auto;
}
.cfg-actions .btn-primary{
  width: 100%;
  justify-content: center;
  padding: 1em;
  font-size: 1rem;
}

/* ---------- Engagement Models & SLA Comparison Matrix ---------- */
.engagement-section{
  padding: 84px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}
.engagement-header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}
.engagement-title{
  font-size: clamp(2rem, 1.6rem + 1.8vw, 2.75rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 14px;
}
.engagement-subtitle{
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.engagement-cards-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  align-items: stretch;
}
.engagement-tier-card{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(10, 18, 48, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.engagement-tier-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(10, 18, 48, 0.08);
}
.engagement-tier-card.featured{
  border-color: var(--blue-600);
  box-shadow: 0 12px 36px rgba(11, 99, 214, 0.12);
  transform: scale(1.02);
}
.engagement-tier-card.featured:hover{
  transform: scale(1.02) translateY(-4px);
}
.et-badge-pop{
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0B63D6, #01BCF9);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(11, 99, 214, 0.35);
}

.et-head{
  margin-bottom: 20px;
}
.et-tag{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: #EAF3FF;
  padding: 3px 9px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.et-name{
  font-size: 1.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.et-desc{
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}

.et-cadence-box{
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.et-cadence-label{
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate);
}
.et-cadence-val{
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
}

.et-features-list{
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.et-features-list li{
  font-size: 0.88rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.et-feat-check{
  color: #10B981;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.et-action{
  margin-top: auto;
}
.et-action .btn{
  width: 100%;
  justify-content: center;
}

/* Comparison Matrix Table */
.matrix-table-wrap{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 18, 48, 0.03);
}
.matrix-table-title{
  background: #F8FAFD;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.matrix-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}
.matrix-table th{
  background: #F1F5F9;
  color: var(--navy-900);
  font-weight: 700;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.matrix-table td{
  padding: 15px 20px;
  border-bottom: 1px solid #EAEFF7;
  color: var(--ink);
  vertical-align: middle;
}
.matrix-table tr:hover td{
  background: #F8FAFD;
}
.matrix-table .col-feature{
  font-weight: 600;
  color: var(--navy-900);
  width: 34%;
}
.matrix-table .matrix-badge-yes{
  color: #059669;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.matrix-table .matrix-badge-opt{
  color: var(--slate);
  font-weight: 500;
}

/* ---------- Enterprise Security & Assurances Grid ---------- */
.assurances-section{
  padding: 80px 0;
  background: #F6F8FC;
  border-bottom: 1px solid var(--line);
}
.assurances-header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.assurances-title{
  font-size: clamp(1.85rem, 1.5rem + 1.5vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.assurances-subtitle{
  font-size: 1.02rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.assurances-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.assurance-card{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
  box-shadow: 0 4px 16px rgba(10, 18, 48, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.assurance-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 18, 48, 0.06);
  border-color: rgba(11, 99, 214, 0.3);
}
.as-icon{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EAF3FF;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.assurance-card h3{
  font-size: 1.15rem;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.3;
}
.assurance-card p{
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Accessible FAQ Accordion (<details name="services-faq">) ---------- */
.services-faq-section{
  padding: 84px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}
.faq-header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.faq-title{
  font-size: clamp(1.85rem, 1.5rem + 1.5vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.faq-subtitle{
  font-size: 1.02rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.faq-list-wrap{
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-faq-item{
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.services-faq-item[open]{
  border-color: var(--blue-600);
  box-shadow: 0 6px 20px rgba(11, 99, 214, 0.08);
}
.services-faq-item summary{
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  outline: none;
  user-select: none;
}
.services-faq-item summary::-webkit-details-marker{
  display: none;
}
.services-faq-item summary:focus-visible{
  outline: 2px solid var(--blue-600);
  outline-offset: -2px;
}
.faq-chevron{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.services-faq-item[open] .faq-chevron{
  transform: rotate(180deg);
  background: #EAF3FF;
  color: var(--blue-600);
}
.faq-content-body{
  padding: 0 24px 22px;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.65;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
}
.faq-content-body p{
  margin: 0 0 10px;
}
.faq-content-body p:last-child{
  margin: 0;
}

/* ---------- Services Call-To-Action Band ---------- */
.services-cta-band{
  position: relative;
  background: radial-gradient(circle at 60% 30%, #0A1744 0%, #050B24 85%);
  color: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}
.services-cta-band .wrap{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.scta-content h2{
  font-size: clamp(1.85rem, 1.45rem + 1.6vw, 2.65rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px;
  line-height: 1.18;
}
.scta-content p{
  font-size: 1.05rem;
  color: #CBD5E1;
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}
.scta-actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ---------- Services Responsive Breakpoints ---------- */
@media (max-width: 1024px){
  .services-hero-stats{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .sh-stat-card:nth-child(2)::after{
    display: none;
  }
  .sd-card-grid{
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  .configurator-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .engagement-cards-grid{
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
  .engagement-tier-card.featured{
    transform: none;
  }
  .engagement-tier-card.featured:hover{
    transform: translateY(-4px);
  }
  .assurances-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .services-hero{
    padding: 60px 0 70px;
  }
  .services-hero-stats{
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .sh-stat-card::after{
    display: none !important;
  }
  .cfg-pill-options{
    grid-template-columns: 1fr;
  }
  .cfg-metric-highlights{
    grid-template-columns: 1fr;
  }
  .assurances-grid{
    grid-template-columns: 1fr;
  }
  .services-cta-band .wrap{
    flex-direction: column;
    text-align: center;
  }
  .scta-actions{
    flex-direction: column;
    width: 100%;
  }
  .scta-actions .btn{
    width: 100%;
    justify-content: center;
  }
  .matrix-table-wrap{
    overflow-x: auto;
  }
  .matrix-table{
    min-width: 600px;
  }
}



