/* KPIT Architecture Redux */
:root {
  --color-green: #1FA8DF;
  /* APJ3D Electric Cyan */
  --color-dark: #040814;
  /* APJ3D Deep Navy */
  --color-light: #ffffff;
  --color-text-main: #1f2937;
  --color-text-muted: #8e96a3;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  width: 100% !important;
  background-color: var(--color-light);
  color: var(--color-text-main);
  transition: background-color 0.5s ease, color 0.5s ease;
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE and Edge */
}

/* Hide browser scrollbars completely for an immersive, clean app-like 3D stage experience */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
.pin-spacer::-webkit-scrollbar,
.kpit-morph-section::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.pin-spacer {
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  z-index: 20 !important;
}

/* Ensure fixed pinned section never slides or moves horizontally when scrolling internally */
#morph-trigger.pin-spacer>.kpit-morph-section,
.pin-spacer>.kpit-morph-section,
#morph-trigger,
.kpit-morph-section {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  z-index: 20 !important;
}

/* Dark Mode override class */
body.dark-mode {
  background-color: var(--color-dark);
  color: var(--color-light);
}

body.dark-mode .kpit-hero h1,
body.dark-mode .kpit-hero .hero-subtitle {
  color: var(--color-light);
}

/* ==========================================================================
   CINEMATIC SHUTTER ENTRANCE OVERLAY ("Dark Premium Effect of Opening")
   ========================================================================== */
.shutter-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  z-index: 999999999 !important;
  pointer-events: auto;
  display: block;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.shutter-panel {
  position: absolute !important;
  left: -10vw !important;
  right: -10vw !important;
  width: 120vw !important;
  height: 52vh !important;
  background: linear-gradient(180deg, #040814 0%, #081226 100%);
  z-index: 2;
  overflow: hidden;
  will-change: transform;
}

.shutter-panel.shutter-top {
  top: -1vh !important;
  border-bottom: 2px solid #1FA8DF;
}

.shutter-panel.shutter-bottom {
  bottom: -1vh !important;
  border-top: 2px solid #1FA8DF;
}

/* Subtle engineering grid lines & edge glow inside the dark shutter panels */
.shutter-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(31, 168, 223, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 168, 223, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
}

.shutter-edge-glow {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #0B4EAE 20%, #1FA8DF 50%, #0B4EAE 80%, transparent 100%);
  opacity: 0.85;
}

.shutter-edge-glow.top {
  bottom: 0;
}

.shutter-edge-glow.bottom {
  top: 0;
}

.shutter-seam {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #0B4EAE 20%, #1FA8DF 50%, #0B4EAE 80%, transparent 100%);
  box-shadow: 0 0 30px #1FA8DF, 0 0 60px #0B4EAE;
  z-index: 5;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: opacity, transform;
}

.shutter-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(6, 13, 26, 0.94);
  border: 1px solid rgba(31, 168, 223, 0.65);
  padding: 12px 28px;
  border-radius: 40px;
  box-shadow: 0 0 35px rgba(31, 168, 223, 0.45), inset 0 0 15px rgba(11, 78, 174, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #fff;
  z-index: 10;
  will-change: opacity, transform;
}

.shutter-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1FA8DF;
  box-shadow: 0 0 14px #1FA8DF;
  animation: shutterPulse 0.8s infinite alternate;
}

@keyframes shutterPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1.35);
  }
}

#webgl-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#scroll-wrapper {
  position: relative;
  z-index: 10;
}

.panel,
.kpit-hero,
.kpit-value-section,
.kpit-global-reach-section,
.apj-careers-section,
.apj-investors-section {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 100vh !important;
  height: auto !important;
  padding: 150px 4% 80px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  z-index: 50 !important;
}

.kpit-morph-section {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 100vh !important;
  height: auto !important;
  padding: 75px 4% 25px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  z-index: 20 !important;
}

.hero-container,
.morph-section-header,
.morph-content-row,
.value-container,
.global-reach-container,
.orbital-cockpit-wrapper,
.apj-careers-grid {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

/* Typography Masks (GSAP ready) */
.line {
  overflow: visible !important;
  display: block;
  padding: 0 !important;
}

.line-inner {
  display: inline-block;
  transform: translateY(0%);
  /* Full visibility without cutting letters */
}

.reveal-fade {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-stagger .kpit-card {
  opacity: 0;
  transform: translateY(30px);
}

/* HERO SECTION */
.kpit-hero {
  position: relative;
  z-index: 5;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 135px 5% 75px !important;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.kpit-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.25 !important;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  overflow: visible !important;
  text-shadow: 0 8px 30px rgba(26, 35, 90, 0.08);
}

.kpit-hero h1 .line {
  overflow: visible !important;
  line-height: 1.25 !important;
}

.kpit-hero .accent {
  color: var(--color-green);
  text-shadow: 0 0 25px rgba(31, 168, 223, 0.25);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--color-text-muted);
  max-width: 650px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* BUTTON */
.btn-fill-slide {
  position: relative;
  display: inline-flex;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-light);
  background-color: var(--color-text-main);
  border-radius: 9999px;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.3s ease;
}

body.dark-mode .btn-fill-slide {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.btn-fill-slide .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 1;
}

.btn-fill-slide:hover .btn-bg {
  transform: scaleX(1);
}

.btn-fill-slide .btn-text {
  position: relative;
  z-index: 2;
}

.btn-fill-slide:hover {
  color: #000;
}

/* MORPH SECTION & FUTURISTIC HUD STAGE CARDS */
.kpit-morph-section {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  height: auto !important;
  min-height: 100vh !important;
  width: 100% !important;
  padding: 75px 4% 25px !important;
  margin: 0 auto !important;
  z-index: 20 !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  /* Engineering Blueprint Isometric Grid & Radial Falloff to replace flat white background */
  background-image:
    radial-gradient(circle at 50% 45%, rgba(31, 168, 223, 0.05) 0%, transparent 70%),
    linear-gradient(to right, rgba(11, 78, 174, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 78, 174, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  border-top: 1px solid rgba(11, 78, 174, 0.12);
  border-bottom: 1px solid rgba(11, 78, 174, 0.12);
}

.morph-showcase-container {
  flex: 0 0 45%;
  max-width: 620px;
  position: relative;
  z-index: 15;
  margin-top: 0;
}

/* Telemetry HUD Header */
.side-card-hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(11, 78, 174, 0.22);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(11, 78, 174, 0.08);
}

.hud-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0B4EAE;
  box-shadow: 0 0 12px #0B4EAE;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.hud-label {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #1b1564;
}

.hud-progress {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hud-notch {
  width: 16px;
  height: 6px;
  border-radius: 3px;
  background: rgba(11, 78, 174, 0.18);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-notch.active {
  background: #0B4EAE;
  width: 32px;
  box-shadow: 0 0 10px rgba(11, 78, 174, 0.45);
}

/* ==========================================================================
   4-STAGE PARAMETRIC ENGINE - 3D STACKED CARDS SHOWCASE (Reference Image 2)
   ========================================================================== */
.kpit-morph-section {
  position: relative;
  padding: 80px 5% 100px;
  background: #ffffff;
  background-image: 
    linear-gradient(to right, rgba(11, 78, 174, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 78, 174, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
  width: 100%;
}

.morph-section-header {
  text-align: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 2.6rem;
  position: relative;
  z-index: 20;
}

.parametric-stack-wrapper {
  position: relative;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Stack Deck Container */
.stack-deck-container {
  width: 100%;
  max-width: 1260px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1400px;
  perspective-origin: center 40%;
}

/* ==========================================================================
   PURE GPU HARDWARE-ACCELERATED 4-LAYER "STACK-CYCLE" (60 FPS Butter Smooth)
   ========================================================================== */
.stack-wrapper,
.stage-deck-wrapper,
.parametric-stack-wrapper {
  position: relative;
  width: calc(100% - 32px);
  max-width: 1320px;
  height: 520px;
  min-height: 520px;
  margin: 0 auto;
}

.stack-card,
.stage-slide-item {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  min-height: 480px;
  background: #061026;
  border-radius: 24px;
  border: 1px solid rgba(41, 171, 226, 0.35);
  box-shadow: 0 25px 60px -15px rgba(5, 20, 51, 0.55), 0 0 40px rgba(0, 229, 255, 0.14);
  overflow: hidden;
  transform-origin: center top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: 
    transform 750ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 750ms ease,
    box-shadow 750ms ease;
  will-change: transform, opacity;
}

/* 1. FRONT / ACTIVE ROLE (Layer 1 - Active Front Card) */
.stack-card.role-front,
.stage-slide-item.role-front {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  z-index: 4;
  pointer-events: auto;
  visibility: visible;
  border-color: rgba(41, 171, 226, 0.45);
}

.stack-card.role-front:hover,
.stage-slide-item.role-front:hover {
  transform: translate3d(0, -4px, 0) scale(1.004);
  border-color: rgba(0, 243, 255, 0.65);
  box-shadow: 0 35px 75px -15px rgba(5, 20, 51, 0.7), 0 0 50px rgba(0, 243, 255, 0.28);
}

/* 2. MID ROLE (Layer 2 Peek Card) */
.stack-card.role-mid,
.stage-slide-item.role-mid {
  transform: translate3d(0, -12px, 0) scale(0.96);
  opacity: 0.82;
  z-index: 3;
  pointer-events: none;
  visibility: visible;
  border-color: rgba(41, 171, 226, 0.28);
  box-shadow: 0 18px 40px -10px rgba(5, 20, 51, 0.45);
}

/* 3. BACK ROLE (Layer 3 Peek Card) */
.stack-card.role-back,
.stage-slide-item.role-back {
  transform: translate3d(0, -24px, 0) scale(0.92);
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
  visibility: visible;
  border-color: rgba(41, 171, 226, 0.18);
  box-shadow: 0 12px 30px -10px rgba(5, 20, 51, 0.35);
}

/* 4. DEEP ROLE (Layer 4 Deepest Base Card) */
.stack-card.role-deep,
.stage-slide-item.role-deep {
  transform: translate3d(0, -36px, 0) scale(0.88);
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
  visibility: visible;
  border-color: rgba(41, 171, 226, 0.12);
  box-shadow: 0 8px 24px -10px rgba(5, 20, 51, 0.25);
}

/* 5. EXITING ROLE (Clean, fast, crisp fade-out so no lag or lingering mud) */
.stack-card.role-exiting,
.stage-slide-item.role-exiting {
  transform: translate3d(0, 10px, 0) scale(1.02);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  visibility: visible;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease-out;
}

/* 6. HIDDEN ROLE (Base Queue) */
.stack-card.role-hidden,
.stage-slide-item.role-hidden {
  transform: translate3d(0, -40px, 0) scale(0.85);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Top 2-Column Row (Left Content + Right Image cleanly separated & blended) */
.stage-top-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.stage-content-col {
  flex: 0 0 50%;
  max-width: 580px;
  padding: 48px 24px 48px 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 10;
}

/* Stage Badge Pill */
.stage-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 168, 223, 0.18);
  border: 1px solid rgba(31, 168, 223, 0.45);
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.stage-badge-pill .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f3ff;
  box-shadow: 0 0 10px #00f3ff;
}

/* Stage Title */
.stage-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.95rem, 2.6vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.025em;
}

/* Stage Description */
.stage-hero-desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(224, 242, 254, 0.9);
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* Row with Dual Circles & CTA Button */
.stage-footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  gap: 20px;
  flex-wrap: nowrap;
}

.stage-circles-pair {
  display: flex;
  align-items: center;
}

.stage-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.stage-circle:hover {
  transform: scale(1.08);
}

.stage-circle-cyan {
  background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
  box-shadow: 0 0 24px rgba(0, 210, 255, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.stage-circle-cyan .circle-acronym {
  font-size: 1.25rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 2px;
}

.stage-circle-cyan .circle-tag {
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.15;
  opacity: 0.95;
}

.stage-circle-white {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.9);
  color: #082154;
  margin-left: -12px;
  position: relative;
  z-index: 1;
}

.stage-circle-white .circle-acronym {
  font-size: 1.25rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  color: #082154;
  margin-bottom: 2px;
}

.stage-circle-white .circle-tag {
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.15;
  color: #082154;
}

/* Action CTA Pill Button */
.stage-action-btn {
  margin-left: 0;
  background: #00f3ff;
  color: #040d21;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 243, 255, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.stage-action-btn:hover {
  background: #ffffff;
  color: #082154;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.6);
}

/* Right Image Column - Seamless blend & balanced coverage */
.stage-visual-col {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 8%, rgba(0, 0, 0, 0.7) 20%, #000000 35%, #000000 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.15) 8%, rgba(0, 0, 0, 0.7) 20%, #000000 35%, #000000 100%);
}

.stage-visual-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-slide-item:hover .stage-visual-col img {
  transform: scale(1.03);
}

/* Pagination Indicator Pills */
.stage-pagination-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.stage-pag-dot {
  border: none;
  padding: 0;
  height: 8px;
  width: 32px;
  border-radius: 4px;
  background: rgba(203, 213, 225, 0.5);
  cursor: pointer;
  transition: background 500ms ease-in-out, box-shadow 500ms ease-in-out, opacity 500ms ease-in-out;
}

.stage-pag-dot:hover {
  background: rgba(203, 213, 225, 0.85);
}

.stage-pag-dot.active {
  background: #00f3ff;
  box-shadow: 0 0 14px rgba(0, 243, 255, 0.85);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE DECK CARDS (LTTS-Inspired Sleek Compact Deck)
   ========================================================================== */
@media (max-width: 1024px) {
  .stack-wrapper,
  .stage-deck-wrapper,
  .parametric-stack-wrapper {
    height: 520px;
    min-height: 520px;
    max-width: 920px;
  }
  .stack-card,
  .stage-slide-item {
    min-height: 480px;
    height: 480px;
  }
  .stage-top-body {
    flex-direction: row;
    min-height: 100%;
    padding: 0;
  }
  .stage-content-col {
    flex: 0 0 52%;
    max-width: 52%;
    padding: 32px 28px;
  }
  .stage-visual-col {
    position: relative;
    width: 48%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 10%, #000 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 10%, #000 30%);
  }
}

@media (max-width: 768px) {
  /* Section Header Compact */
  .morph-section-header {
    margin-bottom: 1.2rem !important;
    padding: 0 16px;
  }
  .morph-section-header h2 {
    font-size: clamp(1.45rem, 4.8vw, 1.85rem) !important;
    margin-bottom: 0.4rem !important;
  }
  .morph-section-header p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Compact Deck Container - Reduced height matching reference */
  .stack-wrapper,
  .stage-deck-wrapper,
  .parametric-stack-wrapper {
    height: 470px !important;
    min-height: 470px !important;
    width: calc(100% - 24px) !important;
    max-width: 440px !important;
    margin: 0 auto !important;
    perspective: none !important;
  }

  /* Compact Card Base */
  .stack-card,
  .stage-slide-item {
    top: 36px !important;
    height: 415px !important;
    min-height: 415px !important;
    border-radius: 20px !important;
    background: #061026 !important;
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.1) !important;
    border: 1px solid rgba(41, 171, 226, 0.35) !important;
    overflow: hidden !important;
    transform-style: flat !important;
  }

  /* Layer Stacking without text bleed (Inactive cards only show top tab) */
  .stack-card.role-front,
  .stage-slide-item.role-front {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    z-index: 10 !important;
    border-color: rgba(0, 243, 255, 0.6) !important;
  }
  .stack-card.role-mid,
  .stage-slide-item.role-mid {
    transform: translate3d(0, -12px, 0) scale(0.96) !important;
    opacity: 0.85 !important;
    z-index: 8 !important;
    background: #081636 !important;
    border-color: rgba(41, 171, 226, 0.3) !important;
  }
  .stack-card.role-back,
  .stage-slide-item.role-back {
    transform: translate3d(0, -24px, 0) scale(0.92) !important;
    opacity: 0.65 !important;
    z-index: 6 !important;
    background: #0a1c44 !important;
    border-color: rgba(41, 171, 226, 0.2) !important;
  }
  .stack-card.role-deep,
  .stage-slide-item.role-deep {
    transform: translate3d(0, -36px, 0) scale(0.88) !important;
    opacity: 0.45 !important;
    z-index: 4 !important;
    background: #0d2252 !important;
    border-color: rgba(41, 171, 226, 0.12) !important;
  }
  .stack-card.role-exiting,
  .stage-slide-item.role-exiting {
    transform: translate3d(0, 10px, 0) scale(1.02) !important;
    opacity: 0 !important;
    z-index: 12 !important;
    pointer-events: none !important;
  }

  /* CRITICAL: Hide content of inactive cards on mobile so text NEVER overlaps */
  .stage-slide-item:not(.role-front) .stage-top-body {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Vertical Card Layout: Image prominently on Top, Content on Bottom */
  .stage-top-body {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: unset !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }

  /* TOP HALF: 3D Visual prominently visible and illuminated */
  .stage-visual-col {
    order: 1 !important;
    position: relative !important;
    width: 100% !important;
    height: 195px !important;
    min-height: 195px !important;
    max-height: 195px !important;
    margin: 0 !important;
    padding: 10px 14px 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: radial-gradient(circle at 50% 50%, rgba(31, 168, 223, 0.18) 0%, rgba(6, 16, 38, 0.75) 70%, #061026 100%) !important;
    border-bottom: 1px solid rgba(41, 171, 226, 0.18) !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
  .stage-visual-col::before {
    display: none !important;
  }
  .stage-visual-col img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5)) !important;
    transition: transform 0.4s ease !important;
  }

  /* BOTTOM HALF: Compact Content Area */
  .stage-content-col {
    order: 2 !important;
    flex: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 18px 16px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }

  /* Compact Stage Badge */
  .stage-badge-pill {
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    padding: 3px 10px !important;
    margin-bottom: 6px !important;
    border-radius: 12px !important;
    letter-spacing: 0.06em !important;
  }
  .stage-badge-pill .pill-dot {
    width: 6px !important;
    height: 6px !important;
  }

  /* Compact Stage Title */
  .stage-hero-title {
    font-size: 1.18rem !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: -0.015em !important;
  }

  /* Compact Stage Description (concise 2 lines max) */
  .stage-hero-desc {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    color: rgba(224, 242, 254, 0.85) !important;
    margin: 0 0 10px 0 !important;
    max-width: 100% !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* Hide bulky 80px circles on mobile to eliminate clutter */
  .stage-circles-pair {
    display: none !important;
  }

  /* Footer Actions Full Width */
  .stage-footer-actions {
    width: 100% !important;
    margin-top: auto !important;
    display: flex !important;
  }

  /* Compact CTA Button */
  .stage-action-btn {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 10px 18px !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 24px !important;
    box-shadow: 0 4px 16px rgba(0, 243, 255, 0.35) !important;
  }

  /* Pagination Bar at Bottom */
  .stage-pagination-strip {
    margin-top: 18px !important;
    gap: 8px !important;
  }
  .stage-pag-dot {
    height: 4px !important;
    width: 24px !important;
    border-radius: 2px !important;
    background: rgba(203, 213, 225, 0.3) !important;
  }
  .stage-pag-dot.active {
    width: 38px !important;
    background: #00f3ff !important;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.7) !important;
  }
}

@media (max-width: 420px) {
  .stack-wrapper,
  .stage-deck-wrapper,
  .parametric-stack-wrapper {
    height: 460px !important;
    min-height: 460px !important;
  }
  .stack-card,
  .stage-slide-item {
    height: 405px !important;
    min-height: 405px !important;
  }
  .stage-visual-col {
    height: 185px !important;
    min-height: 185px !important;
    max-height: 185px !important;
  }
  .stage-content-col {
    padding: 12px 14px 14px 14px !important;
  }
  .stage-hero-title {
    font-size: 1.1rem !important;
  }
  .stage-hero-desc {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }
  .stage-action-btn {
    padding: 9px 14px !important;
    font-size: 0.78rem !important;
  }
}

/* Glassmorphism Dashboard Cards */
.morph-showcase-card {
  position: relative;
  min-height: 330px;
  width: 100%;
  transform-style: preserve-3d;
}

.morph-stage-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(11, 78, 174, 0.22);
  box-shadow: 0 24px 50px rgba(11, 78, 174, 0.28), 0 4px 14px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  display: none;
  overflow: visible;
  transform-style: preserve-3d;
  animation: valoirCardFloat 5s ease-in-out infinite;
}

@keyframes valoirCardFloat {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    box-shadow: 0 22px 48px rgba(11, 78, 174, 0.28), 0 4px 12px rgba(0, 0, 0, 0.06);
  }
  50% {
    transform: translateY(-8px) rotateX(1.8deg) rotateY(-1deg);
    box-shadow: 0 32px 64px rgba(11, 78, 174, 0.38), 0 8px 20px rgba(0, 0, 0, 0.1);
  }
}

.morph-stage-content.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}

/* Corner HUD Brackets */
.hud-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #0B4EAE;
  pointer-events: none;
  opacity: 0.65;
}

.hud-corner.top-left {
  top: 16px;
  left: 16px;
  border-top: 2.5px solid;
  border-left: 2.5px solid;
}

.hud-corner.bottom-right {
  bottom: 16px;
  right: 16px;
  border-bottom: 2.5px solid;
  border-right: 2.5px solid;
}

.side-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.3rem;
}

.side-card-badge {
  display: inline-block;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1b1564;
  background: linear-gradient(90deg, rgba(11, 78, 174, 0.12), rgba(31, 168, 223, 0.1));
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(11, 78, 174, 0.25);
}

.side-card-stage-pill {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  font-weight: 800;
  color: #64748b;
  background: rgba(100, 116, 139, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
}

.side-card-title {
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1.1rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.side-card-desc {
  font-size: 1.03rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 2rem;
}

/* 3-Tile Telemetry Specs Grid */
.side-card-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2.2rem;
}

.spec-tile {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 78, 174, 0.18);
  border-radius: 16px;
  padding: 14px 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.spec-tile:hover {
  transform: translateY(-3px);
  border-color: #0B4EAE;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(11, 78, 174, 0.14);
}

.spec-icon {
  font-size: 1.15rem;
  color: #1b1564;
  margin-bottom: 8px;
  opacity: 0.9;
}

.spec-lbl {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.spec-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.side-card-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.side-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0B4EAE 0%, #1565C0 100%);
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(11, 78, 174, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.side-card-btn:hover {
  background: linear-gradient(135deg, #083B8A 0%, #0B4EAE 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(11, 78, 174, 0.45);
}

/* ==========================================================================
   DOMAIN-SPECIFIC CARD COLOR THEMING (Strictly Website Colors)
   ========================================================================== */
/* Theme 1: Automotive BIW (#0B4EAE Royal Blue) */
.morph-stage-content.card-theme-1 {
  border-color: rgba(11, 78, 174, 0.28);
}

.morph-stage-content.card-theme-1 .side-card-badge {
  color: #1b1564;
  background: rgba(11, 78, 174, 0.12);
  border-color: rgba(11, 78, 174, 0.28);
}

.morph-stage-content.card-theme-1 .hud-corner {
  border-color: #0B4EAE;
}

.morph-stage-content.card-theme-1 .spec-icon {
  color: #1b1564;
}

.morph-stage-content.card-theme-1 .spec-tile:hover {
  border-color: #0B4EAE;
  box-shadow: 0 10px 24px rgba(11, 78, 174, 0.14);
}

.morph-stage-content.card-theme-1 .side-card-btn {
  background: linear-gradient(135deg, #0B4EAE, #1565C0);
  box-shadow: 0 10px 24px rgba(11, 78, 174, 0.3);
}

/* Theme 2: Commercial Vehicles (#1A235A Deep Navy) */
.morph-stage-content.card-theme-2 {
  border-color: rgba(26, 35, 90, 0.3);
}

.morph-stage-content.card-theme-2 .side-card-badge {
  color: #1b1564;
  background: rgba(26, 35, 90, 0.12);
  border-color: rgba(26, 35, 90, 0.3);
}

.morph-stage-content.card-theme-2 .hud-corner {
  border-color: #1A235A;
}

.morph-stage-content.card-theme-2 .spec-icon {
  color: #1b1564;
}

.morph-stage-content.card-theme-2 .spec-tile:hover {
  border-color: #1A235A;
  box-shadow: 0 10px 24px rgba(26, 35, 90, 0.16);
}

.morph-stage-content.card-theme-2 .side-card-btn {
  background: linear-gradient(135deg, #1A235A, #283593);
  box-shadow: 0 10px 24px rgba(26, 35, 90, 0.3);
}

/* Theme 3: Rail Transit (#1FA8DF Electric Cyan) */
.morph-stage-content.card-theme-3 {
  border-color: rgba(31, 168, 223, 0.35);
}

.morph-stage-content.card-theme-3 .side-card-badge {
  color: #1b1564;
  background: rgba(31, 168, 223, 0.16);
  border-color: rgba(31, 168, 223, 0.35);
}

.morph-stage-content.card-theme-3 .hud-corner {
  border-color: #1FA8DF;
}

.morph-stage-content.card-theme-3 .spec-icon {
  color: #29abe3;
}

.morph-stage-content.card-theme-3 .spec-tile:hover {
  border-color: #1FA8DF;
  box-shadow: 0 10px 24px rgba(31, 168, 223, 0.2);
}

.morph-stage-content.card-theme-3 .side-card-btn {
  background: linear-gradient(135deg, #1FA8DF, #0B4EAE);
  box-shadow: 0 10px 24px rgba(31, 168, 223, 0.3);
}

/* Theme 4: Aerospace Defense (#040814 Obsidian / #1A235A) */
.morph-stage-content.card-theme-4 {
  border-color: rgba(4, 8, 20, 0.35);
}

.morph-stage-content.card-theme-4 .side-card-badge {
  color: #040814;
  background: rgba(4, 8, 20, 0.12);
  border-color: rgba(4, 8, 20, 0.35);
}

.morph-stage-content.card-theme-4 .hud-corner {
  border-color: #040814;
}

.morph-stage-content.card-theme-4 .spec-icon {
  color: #040814;
}

.morph-stage-content.card-theme-4 .spec-tile:hover {
  border-color: #040814;
  box-shadow: 0 10px 24px rgba(4, 8, 20, 0.18);
}

.morph-stage-content.card-theme-4 .side-card-btn {
  background: linear-gradient(135deg, #040814, #1A235A);
  box-shadow: 0 10px 24px rgba(4, 8, 20, 0.3);
}

/* ==========================================================================
   VALOIR GRADIENT STAT BANNER CARD DESIGN (Main Home Page Upgrade)
   ========================================================================== */
/* ==========================================================================
   VALOIR FULL-CARD OVERRIDE (Entire Card = Valoir Gradient Banner, Zero Long Paragraphs)
   ========================================================================== */
.morph-stage-content.valoir-main-card {
  border-radius: 22px !important;
  padding: 24px 28px !important;
  position: relative !important;
  display: none;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 229, 255, 0.2) !important;
  border: 1px solid rgba(0, 229, 255, 0.38) !important;
  overflow: visible !important;
  min-height: 280px !important;
  width: 100% !important;
  color: #ffffff !important;
}

.morph-stage-content.valoir-main-card.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Domain-Specific Gradients for each stage card so they look vibrant & distinctive while keeping website colors */
.morph-stage-content.valoir-main-card.card-theme-1 {
  background: linear-gradient(135deg, #051952 0%, #083B8A 45%, #0B4EAE 80%, #1FA8DF 100%) !important;
  border-color: rgba(0, 229, 255, 0.5) !important;
}

.morph-stage-content.valoir-main-card.card-theme-2 {
  background: linear-gradient(135deg, #040814 0%, #1A235A 50%, #0B4EAE 100%) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
}

.morph-stage-content.valoir-main-card.card-theme-3 {
  background: linear-gradient(135deg, #082F6B 0%, #0B4EAE 55%, #1FA8DF 100%) !important;
  border-color: rgba(34, 211, 238, 0.5) !important;
}

.morph-stage-content.valoir-main-card.card-theme-4 {
  background: linear-gradient(135deg, #02040A 0%, #040814 55%, #1A235A 100%) !important;
  border-color: rgba(96, 165, 250, 0.5) !important;
}

.valoir-header-row {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 24px;
}

.valoir-domain-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #E0F2FE;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.valoir-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #E0F2FE;
  line-height: 1.48;
  margin: 4px 0 12px 0;
  max-width: 96%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.morph-stage-content.valoir-main-card .valoir-circles-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 12px;
  transform-style: preserve-3d;
}

.valoir-sparkle {
  position: absolute;
  font-size: 1.2rem;
  color: #00E5FF;
  pointer-events: none;
  animation: sparkleFloat 3s ease-in-out infinite alternate;
}
.valoir-sparkle.top-right {
  top: 18px;
  right: 22px;
}
.valoir-sparkle.bottom-left {
  bottom: 18px;
  left: 22px;
  animation-delay: 1.5s;
}

@keyframes sparkleFloat {
  0% { transform: scale(0.9) rotate(0deg); opacity: 0.7; filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.4)); }
  100% { transform: scale(1.3) rotate(25deg); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.9)); }
}

.morph-stage-content.valoir-main-card .valoir-circle-primary {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: linear-gradient(145deg, #22D3EE 0%, #1FA8DF 60%, #38BDF8 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(31, 168, 223, 0.55), inset 0 2px 6px rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  animation: circleLevitate1 4.5s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes circleLevitate1 {
  0%, 100% { transform: translateY(0px) translateZ(25px) scale(1); }
  50% { transform: translateY(-6px) translateZ(35px) scale(1.03); }
}

.morph-stage-content.valoir-main-card:hover .valoir-circle-primary {
  transform: scale(1.08) translateY(-6px) translateZ(40px);
}

.morph-stage-content.valoir-main-card .valoir-num {
  font-size: 1.95rem;
  font-weight: 900;
  color: #040814;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: 'Outfit', sans-serif;
}

.morph-stage-content.valoir-main-card .valoir-lbl {
  font-size: 0.82rem;
  font-weight: 800;
  color: #040814;
  line-height: 1.2;
  margin-top: 4px;
  max-width: 110px;
}

.morph-stage-content.valoir-main-card .valoir-circle-secondary {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22), inset 0 2px 5px rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 4;
  margin-left: -22px;
  margin-top: -14px;
  flex-shrink: 0;
  animation: circleLevitate2 4.5s ease-in-out infinite 0.7s;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes circleLevitate2 {
  0%, 100% { transform: translateY(0px) translateZ(15px) scale(1); }
  50% { transform: translateY(-4px) translateZ(22px) scale(1.02); }
}

.morph-stage-content.valoir-main-card:hover .valoir-circle-secondary {
  transform: scale(1.06) translateY(-4px) translateZ(25px);
}

.morph-stage-content.valoir-main-card .valoir-num-sub {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0B4EAE;
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
}

.morph-stage-content.valoir-main-card .valoir-lbl-sub {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0B4EAE;
  line-height: 1.2;
  margin-top: 3px;
  max-width: 85px;
}

/* Pill badge on bottom right of the entire card */
.morph-stage-content.valoir-main-card .valoir-pill-badge {
  background: #00E5FF;
  color: #040814;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 28px rgba(0, 229, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 10;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.morph-stage-content.valoir-main-card .valoir-pill-badge:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 36px rgba(0, 229, 255, 0.75);
  background: #ffffff;
  color: #0B4EAE;
}

.morph-stage-content.valoir-main-card .valoir-pill-badge:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 36px rgba(0, 229, 255, 0.75);
  background: #ffffff;
  color: #1b1564;
}

@media (max-width: 1024px) {
  .morph-showcase-container {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .morph-visual-spacer {
    min-height: 320px !important;
  }
}

@media (max-width: 576px) {
  .morph-stage-content.valoir-main-card {
    padding: 20px 18px 56px 18px !important;
    align-items: center !important;
  }

  .morph-stage-content.valoir-main-card .valoir-circles-wrap {
    justify-content: center;
  }

  .morph-stage-content.valoir-main-card .valoir-circle-primary {
    width: 135px;
    height: 135px;
  }

  .morph-stage-content.valoir-main-card .valoir-num {
    font-size: 2rem;
  }

  .morph-stage-content.valoir-main-card .valoir-circle-secondary {
    width: 105px;
    height: 105px;
    margin-left: -18px;
  }

  .morph-stage-content.valoir-main-card .valoir-num-sub {
    font-size: 1.5rem;
  }

  .morph-stage-content.valoir-main-card .valoir-pill-badge {
    right: 18px;
    bottom: 14px;
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

.valoir-card-banner {
  background: linear-gradient(135deg, #051952 0%, #083B8A 48%, #0B4EAE 78%, #1FA8DF 100%);
  border-radius: 28px;
  padding: 30px 25px 38px 25px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  box-shadow: 0 24px 50px rgba(11, 78, 174, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: visible;
  min-height: 200px;
  margin: 18px 0 24px 0;
}

.valoir-circles-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
}

/* Large Floating Stat Circle (Left/Bottom) */
.valoir-circle-primary {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(145deg, #22D3EE 0%, #1FA8DF 60%, #38BDF8 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 16px 36px rgba(31, 168, 223, 0.45), inset 0 2px 5px rgba(255, 255, 255, 0.85);
  position: relative;
  margin-left: -12px;
  margin-bottom: -15px;
  z-index: 5;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.valoir-card-banner:hover .valoir-circle-primary {
  transform: scale(1.05) translateY(-4px);
}

.valoir-num {
  font-size: 2.3rem;
  font-weight: 900;
  color: #040814;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: 'Outfit', sans-serif;
}

.valoir-lbl {
  font-size: 0.82rem;
  font-weight: 800;
  color: #040814;
  line-height: 1.2;
  margin-top: 4px;
  max-width: 110px;
}

/* Secondary Stat Circle (Right/Top) */
.valoir-circle-secondary {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: #E0F2FE;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 4;
  margin-left: -25px;
  margin-top: -20px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.valoir-card-banner:hover .valoir-circle-secondary {
  transform: scale(1.04) translateY(-2px);
}

.valoir-num-sub {
  font-size: 1.65rem;
  font-weight: 900;
  color: #1b1564;
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: 'Outfit', sans-serif;
}

.valoir-lbl-sub {
  font-size: 0.72rem;
  font-weight: 800;
  color: #1b1564;
  line-height: 1.15;
  margin-top: 3px;
  max-width: 90px;
}

/* Turquoise Pill Badge floating at bottom right */
.valoir-pill-badge {
  background: #00E5FF;
  color: #040814;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: absolute;
  right: 20px;
  bottom: -15px;
  z-index: 10;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.valoir-card-banner:hover .valoir-pill-badge {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.65);
  background: #1FA8DF;
  color: #ffffff;
}

/* Glowing Diamond Sparkles */
.valoir-sparkle {
  position: absolute;
  color: #29abe3;
  font-size: 1.5rem;
  text-shadow: 0 0 12px #38BDF8;
  z-index: 6;
  pointer-events: none;
}

.valoir-sparkle.top-right {
  top: 15px;
  right: 60px;
  color: #29abe3;
  font-size: 1.8rem;
  animation: floatValoir 2.2s infinite alternate ease-in-out;
}

.valoir-sparkle.bottom-left {
  bottom: 12px;
  left: 155px;
  color: #29abe3;
  font-size: 1.4rem;
  animation: floatValoir 2.6s infinite alternate-reverse ease-in-out;
}

@keyframes floatValoir {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: translateY(-6px) rotate(18deg) scale(1.15);
    opacity: 1;
  }
}

/* Responsive adjustment for Valoir Banner inside Stage Cards */
@media (max-width: 576px) {
  .valoir-card-banner {
    flex-direction: column;
    padding: 24px 18px 36px 18px;
    align-items: center;
  }

  .valoir-circles-wrap {
    justify-content: center;
  }

  .valoir-circle-primary {
    width: 130px;
    height: 130px;
    margin-left: 0;
  }

  .valoir-num {
    font-size: 1.9rem;
  }

  .valoir-circle-secondary {
    width: 105px;
    height: 105px;
    margin-left: -15px;
  }

  .valoir-num-sub {
    font-size: 1.4rem;
  }

  .valoir-pill-badge {
    right: auto;
    bottom: -15px;
  }

  /* VALUE SECTION
     NOTE: on desktop this section starts hidden and is faded in by a GSAP
     ScrollTrigger tied to the pinned WebGL morph story above it. That pin
     is disabled on mobile (see .kpit-morph-section mobile override), which
     desyncs the ScrollTrigger's calculated trigger position from the real
     mobile layout, so the reveal fires late or never and the section can be
     stuck invisible. Mobile doesn't get the pinned story, so it doesn't
     need the fade-reveal either — just show it statically. */
  .kpit-value-section {
    position: relative;
    z-index: 50 !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--color-bg, #F8FAFC) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none;
  }

  .value-container {
    width: 100%;
    max-width: 1400px;
  }

  .metric-divider {
    display: none !important;
  }
}

body.dark-mode .card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.kpit-card:hover .card-icon {
  background: var(--color-green);
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.card-arrow {
  margin-top: auto;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-green);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.kpit-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}



canvas#bg-mesh {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.kpit-hero {
  justify-content: center !important;
}

.kpit-hero .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kpit-hero h1,
.kpit-hero .hero-subtitle,
.kpit-hero .hero-actions {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* HERO BADGE */
.hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: rgba(31, 168, 223, 0.1);
  border: 1px solid rgba(31, 168, 223, 0.3);
  color: #29abe3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin: 0 auto 25px auto !important;
  text-transform: uppercase;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background-color: #1fa8df;
  border-radius: 50%;
  margin-right: 8px;
  opacity: 0.8;
}

/* DUAL BUTTONS */
.hero-actions.dual-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, #1fa8df, #0f6bbd);
  color: white;
  padding: 15px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(31, 168, 223, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(31, 168, 223, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #1b1564;
  padding: 15px 32px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: background 0.3s ease;
}

body.dark-mode .card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.kpit-card:hover .card-icon {
  background: var(--color-green);
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.card-arrow {
  margin-top: auto;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-green);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.kpit-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}



canvas#bg-mesh {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.kpit-hero {
  justify-content: center !important;
}

.kpit-hero .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kpit-hero h1,
.kpit-hero .hero-subtitle,
.kpit-hero .hero-actions {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* HERO BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(31, 168, 223, 0.1);
  border: 1px solid rgba(31, 168, 223, 0.3);
  color: #29abe3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background-color: #1fa8df;
  border-radius: 50%;
  margin-right: 8px;
  opacity: 0.8;
}

/* DUAL BUTTONS */
.hero-actions.dual-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, #1fa8df, #0f6bbd);
  color: white;
  padding: 15px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(31, 168, 223, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(31, 168, 223, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #1b1564;
  padding: 15px 32px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #1a235a;
  background-color: rgba(26, 35, 90, 0.03);
  color: #1b1564;
}

body.dark-mode .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .btn-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--color-dark);
  color: var(--color-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: background 0.3s ease;
}

body.dark-mode .card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.kpit-card:hover .card-icon {
  background: var(--color-green);
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.card-arrow {
  margin-top: auto;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-green);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.kpit-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}



canvas#bg-mesh {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.kpit-hero {
  justify-content: center !important;
}

.kpit-hero .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kpit-hero h1,
.kpit-hero .hero-subtitle,
.kpit-hero .hero-actions {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* HERO BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(31, 168, 223, 0.1);
  border: 1px solid rgba(31, 168, 223, 0.3);
  color: #29abe3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background-color: #1fa8df;
  border-radius: 50%;
  margin-right: 8px;
  opacity: 0.8;
}

/* DUAL BUTTONS */
.hero-actions.dual-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, #1fa8df, #0f6bbd);
  color: white;
  padding: 15px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(31, 168, 223, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(31, 168, 223, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #1b1564;
  padding: 15px 32px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #1a235a;
  background-color: rgba(26, 35, 90, 0.03);
  color: #1b1564;
}

body.dark-mode .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .btn-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* HERO TRUST BADGES */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.72rem;
  font-weight: bold;
  border: 2px solid white;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.92rem;
  color: #64748b;
}

.trust-text strong {
  color: #1b1564;
}

body.dark-mode .trust-text strong {
  color: #ffffff;
}



/* Added by Font Update */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.display-font,
.numeric,
.stat-value,
.value {
  font-family: 'Outfit', sans-serif !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SHUTTER INTRO & HERO SECTION
   ========================================================================== */
@media (max-width: 992px) {
  .kpit-hero {
    padding: 110px 4% 50px !important;
  }

  .kpit-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem) !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
    max-width: 90% !important;
  }
}

@media (max-width: 768px) {
  .shutter-badge {
    padding: 8px 16px !important;
    font-size: 0.68rem !important;
    max-width: 90vw !important;
    text-align: center;
    white-space: normal !important;
    line-height: 1.4;
  }

  .shutter-dot {
    flex-shrink: 0;
  }

  .kpit-hero {
    padding: 100px 4% 40px !important;
    min-height: 100vh !important;
  }

  .kpit-hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.8rem) !important;
    margin-bottom: 1.2rem !important;
  }

  .hero-subtitle {
    font-size: 0.98rem !important;
    margin-bottom: 2.2rem !important;
  }

  .hero-actions.dual-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    max-width: 300px !important;
    justify-content: center !important;
    padding: 14px 24px !important;
  }

  .hero-trust {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 15px !important;
  }
}

/* ==========================================================================
   GLOBAL REACH & ORBITAL COMMAND COCKPIT STYLES ("lassomorphism" + "maximims")
   ========================================================================== */
.glass-hud-pod:hover {
  transform: translateY(-6px) scale(1.04) !important;
  border-color: #083B8A !important;
  box-shadow: 0 25px 50px rgba(8, 59, 138, 0.16), inset 0 2px 12px rgba(255, 255, 255, 0.9) !important;
  z-index: 35 !important;
}

.hub-dock-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(8, 59, 138, 0.1) !important;
  border-color: #083B8A !important;
  color: #1b1564 !important;
  box-shadow: 0 8px 25px rgba(8, 59, 138, 0.15) !important;
}

.hub-dock-btn.active {
  background: linear-gradient(135deg, #083B8A, #00E5FF) !important;
  border-color: #083B8A !important;
  color: #ffffff !important;
  box-shadow: 0 8px 30px rgba(8, 59, 138, 0.35) !important;
}

@keyframes orbitalRotateClockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbitalRotateCounter {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes globeRingPulse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.98);
    opacity: 0.4;
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.02);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(0.98);
    opacity: 0.4;
  }
}

/* Responsive Compact & Maximized Layout for Orbital Cockpit */
@media (max-width: 1300px) {
  .cockpit-globe-stage {
    width: 440px !important;
    height: 440px !important;
  }

  .cockpit-ring.ring-outer {
    width: 420px !important;
    height: 420px !important;
  }

  .cockpit-ring.ring-inner {
    width: 370px !important;
    height: 370px !important;
  }

  .glass-hud-pod {
    width: 230px !important;
    padding: 15px !important;
  }

  .pod-bottom-left,
  .pod-bottom-right {
    bottom: 60px !important;
  }

  #globe-hub-popup {
    width: 360px !important;
    top: 12% !important;
    padding: 14px 16px !important;
  }
}

/* ── Full Size Flat World Map & 4-Column Stats Layout ── */
.flat-world-map-full-container {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto 8px;
  z-index: 10;
}

.global-reach-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 1380px;
  margin: 18px auto 0;
  z-index: 10;
}

/* 100% Transparent, seamless stage directly on blueprint section background */
.flat-world-map-stage {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  overflow: hidden !important;
}

.flat-world-map-svg {
  width: 100%;
  max-height: 400px;
  height: auto;
  display: block;
  overflow: hidden !important;
  filter: drop-shadow(0 12px 28px rgba(8, 59, 138, 0.07));
}

/* Clean, Calm High-Definition Natural Earth Country Paths (No Hover Flashing) */
.map-country {
  fill: #cbd5e1;
  fill-opacity: 0.55;
  stroke: #94a3b8;
  stroke-width: 0.5;
  stroke-opacity: 0.75;
  pointer-events: none !important; /* Zero country hover distraction */
}

/* Hotspot Pins (Stable, Clean, No Ghost Circles) */
.map-hotspot-pin {
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

.pin-core-dot {
  transition: fill 0.2s ease;
}

.map-hotspot-pin:hover .pin-core-dot,
.map-hotspot-pin.active .pin-core-dot {
  fill: #00A3FF !important;
}

.map-hotspot-pin.active .pin-glow-bg {
  fill: rgba(0, 163, 255, 0.45) !important;
}

.pin-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  fill: #1b1564;
  letter-spacing: 0.02em;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.95));
}

.pin-label.hq-label {
  font-size: 11px;
  font-weight: 800;
  fill: #083B8A;
}

/* Subtle, Calm Telemetry Flight Arcs */
.telemetry-arc {
  animation: arcDashFlow 35s infinite linear;
}

@keyframes arcDashFlow {
  to {
    stroke-dashoffset: -200;
  }
}

/* Floating Glassmorphic HUD Tooltip (Only displayed on click) */
.map-hub-tooltip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 100;
  width: 275px;
  max-width: 85%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(8, 59, 138, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(8, 59, 138, 0.14);
  padding: 14px 16px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.map-hub-tooltip.is-hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.tooltip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.tooltip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #083B8A;
  letter-spacing: 0.1em;
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: 4px;
}

.tooltip-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5ff;
  box-shadow: 0 0 6px #00e5ff;
}

.tooltip-close-btn {
  background: none;
  border: none;
  font-size: 0.95rem;
  color: #64748b;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.15s ease;
}

.tooltip-close-btn:hover {
  color: #040814;
}

.tooltip-city-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #040814;
  margin: 0 0 2px 0;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.tooltip-country {
  font-size: 0.74rem;
  font-weight: 700;
  color: #1FA8DF;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tooltip-desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.tooltip-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px;
  text-align: center;
}

.tt-stat-val {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #083B8A;
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.tt-stat-lbl {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Hub Selector Dock */
.flat-map-hub-dock {
  margin-top: 10px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  z-index: 20;
  width: 100%;
}

.hub-dock-btn {
  position: relative;
  z-index: 25;
  padding: 6px 14px;
  background: #ffffff !important;
  border: 1px solid rgba(8, 59, 138, 0.2);
  color: #1b1564;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.81rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(8, 59, 138, 0.08);
}

.hub-dock-btn:hover {
  transform: translateY(-2px);
  background: #f0f7ff !important;
  border-color: #083B8A !important;
  color: #083B8A !important;
  box-shadow: 0 6px 18px rgba(8, 59, 138, 0.12) !important;
}

.hub-dock-btn.active {
  background: #083B8A !important;
  border-color: #083B8A !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(8, 59, 138, 0.25) !important;
}

.hub-btn-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.hub-dock-btn.active .hub-btn-dot {
  background: #00e5ff;
  box-shadow: 0 0 6px #00e5ff;
}

/* Responsive Breakpoints for Flat World Map & Stats Grid */
@media (max-width: 1024px) {
  .global-reach-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 640px) {
  .global-reach-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .map-hub-tooltip {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 14px !important;
  }

  .hub-dock-btn {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 12px rgba(8, 59, 138, 0.06);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hub-dock-btn.active {
  font-weight: 800;
  background: linear-gradient(135deg, #083B8A, #00A3FF) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px rgba(8, 59, 138, 0.35) !important;
}

.hub-btn-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.glass-hud-pod {
  position: relative !important;
  width: 100% !important;
  flex: 1 1 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 16px 18px !important;
  min-height: 155px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border: 1px solid rgba(8, 59, 138, 0.16) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(8, 59, 138, 0.06), inset 0 2px 8px rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.glass-hud-pod .hud-pod-stat {
  font-size: 1.95rem !important;
  line-height: 1.05 !important;
  margin-bottom: 4px !important;
}

.glass-hud-pod .hud-pod-desc {
  font-size: 0.81rem !important;
  line-height: 1.4 !important;
  color: #475569 !important;
}

.glass-hud-pod > div:first-child {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  justify-content: flex-start !important;
}

.orbital-col-left,
.orbital-col-right {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 24px !important;
  height: 100% !important;
  max-width: 320px !important;
  margin: 0 auto !important;
}

/* ── Tablet & Mobile Breakpoint (max-width: 1024px) ── */
@media (max-width: 1024px) {
  #global-reach-section,
  .kpit-global-reach-section {
    padding: 90px 16px 50px !important;
    min-height: auto !important;
    height: auto !important;
    scroll-margin-top: 80px;
  }

  .orbital-cockpit-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  /* Center Column (Globe + City Selector) only */
  .orbital-col-center {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  /* Clean Globe Stage without outer fake rings */
  .cockpit-globe-stage {
    width: 320px !important;
    height: 320px !important;
    max-width: 85vw !important;
    max-height: 85vw !important;
    margin: 0 auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Hide distracting 2 outer orbit rings and orbiting dots on mobile */
  .cockpit-ring,
  .cockpit-ring.ring-outer,
  .cockpit-ring.ring-inner,
  .ring-orbit-dot {
    display: none !important;
  }

  /* Hide the 4 bulky HUD cards on mobile so only the clean globe & controls exist */
  .orbital-col-left,
  .orbital-col-right,
  .glass-hud-pod {
    display: none !important;
  }

  /* Clean Interactive City Hub Selector Buttons */
  .interactive-hub-dock {
    max-width: 440px !important;
    gap: 8px !important;
    margin-top: 16px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .hub-dock-btn {
    padding: 7px 14px !important;
    font-size: 0.8rem !important;
    min-height: 34px !important;
  }
}

/* ── Mobile Phone Breakpoint (max-width: 576px) ── */
@media (max-width: 576px) {
  #global-reach-section,
  .kpit-global-reach-section {
    padding: 80px 14px 45px !important;
  }

  .cockpit-globe-stage {
    width: 280px !important;
    height: 280px !important;
  }

  .interactive-hub-dock {
    max-width: 340px !important;
    gap: 6px !important;
  }

  .hub-dock-btn {
    padding: 6px 12px !important;
    font-size: 0.76rem !important;
    min-height: 32px !important;
  }
}

/* ==========================================================================
   SECTION 5: JOIN OUR TEAM & CAREERS SHOWCASE ("APJ 3D Careers")
   ========================================================================== */
.apj-careers-section {
  position: relative;
  background: radial-gradient(circle at 30% 50%, #ffffff 0%, #F4F8FF 60%, #E2EFFF 100%);
  overflow: hidden;
  padding: 110px 20px;
  border-top: 1px solid rgba(8, 59, 138, 0.08);
}

.career-testimonial-portal {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dual-Colour Pulsating Dot Ring Around Testimonial Bubble */
.career-dot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  animation: orbitalRotateClockwise 45s infinite linear;
}

.career-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #083B8A;
  box-shadow: 0 0 12px rgba(8, 59, 138, 0.45);
}

.career-dot.cyan {
  background: #00E5FF;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.85);
}

.career-bubble-card {
  position: relative;
  width: 82%;
  height: 82%;
  background: #040814;
  border: 2px solid rgba(0, 229, 255, 0.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(4, 8, 20, 0.35), 0 0 45px rgba(0, 229, 255, 0.15);
  z-index: 5;
}

.career-avatar-badge {
  position: absolute;
  top: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #083B8A, #00E5FF);
  padding: 3px;
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #040814;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #29abe3;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
}

.career-track-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 59, 138, 0.18);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(8, 59, 138, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.career-track-card:hover {
  transform: translateY(-7px);
  background: #ffffff;
  border-color: #083B8A;
  box-shadow: 0 22px 48px rgba(8, 59, 138, 0.15), 0 0 24px rgba(0, 229, 255, 0.18);
}

.career-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4) !important;
}

@media (max-width: 991px) {
  .apj-careers-grid {
    grid-template-columns: 1fr !important;
    gap: 60px !important;
  }

  .career-bubble-card {
    padding: 28px !important;
  }
}

@media (max-width: 576px) {
  .apj-careers-grid {
    gap: 80px !important;
  }

  .career-testimonial-portal {
    max-width: 350px !important;
  }

  .career-bubble-card {
    padding: 24px 16px !important;
    width: 92% !important;
    height: 92% !important;
  }

  .career-bubble-card > div:not(.career-avatar-badge) {
    margin-top: 14px !important;
    margin-bottom: 8px !important;
  }

  .career-bubble-card h4 {
    font-size: 1rem !important;
  }

  .career-bubble-card span {
    font-size: 0.65rem !important;
  }

  .career-bubble-card p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }
}

/* =========================================================================
   SECTION 6: INVESTORS (Modern Bento Box / VC Theme)
   ========================================================================= */
.apj-bento-section {
  background: #f8fafc; /* Very light, clean background */
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.bento-container {
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Header Area */
.bento-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.bento-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary-deep);
  margin: 0 0 10px;
}
.text-blue { color: #29abe3; }
.bento-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.bento-pill {
  background: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(0,0,0,0.05);
}
.pill-avatars {
  display: flex;
}
.pill-avatars .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #eee;
  margin-left: -10px;
  overflow: hidden;
}
.pill-avatars .av:first-child { margin-left: 0; }
.pill-avatars .av img { width: 100%; height: 100%; object-fit: cover; }
.pill-text strong { display: block; font-size: 1.1rem; color: var(--primary-deep); line-height: 1; }
.pill-text span { font-size: 0.8rem; color: var(--text-secondary); }

/* GRID SYSTEM */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(300px, auto) minmax(220px, auto);
  gap: 24px;
}

.bento-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bento-wide { grid-column: 1 / 3; grid-row: 1 / 2; background: #fff; display: flex; align-items: flex-end; }
.bento-tall { grid-column: 3 / 4; grid-row: 1 / 3; background: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.bento-blue { 
  grid-column: 1 / 2; 
  grid-row: 2 / 3; 
  background: var(--primary-deep, #1b1564); 
  color: #fff; 
  box-shadow: 0 12px 32px rgba(27, 21, 100, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
} 
.bento-light { grid-column: 2 / 3; grid-row: 2 / 3; background: #fff; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }

/* CONTENT & BACKGROUNDS */
.bento-content {
  padding: 35px;
  position: relative;
  z-index: 2;
}

.bento-wide .bento-content {
  width: 65%;
  background: linear-gradient(to right, rgba(255,255,255,1) 50%, rgba(255,255,255,0));
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-wide h3 { font-size: 2rem; font-weight: 700; color: var(--primary-deep); margin: 0 0 15px; }
.bento-wide p { color: var(--text-secondary); line-height: 1.6; }

.bg-governance {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url('../images/abstract_engineering_wireframe.webp') right center/cover no-repeat;
  z-index: 0;
}

.bg-metrology {
  height: 55%;
  background: url('../images/scanner.webp') center/cover no-repeat;
}
.tall-content {
  height: 45%;
  background: #fff;
  padding: 30px;
}
.icon-circle {
  width: 45px; height: 45px;
  background: rgba(92, 124, 250, 0.1);
  color: #29abe3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.tall-content h3 { font-size: 1.4rem; color: var(--primary-deep); margin: 0 0 10px; font-weight: 700;}
.tall-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; margin: 0;}

/* Blue & White Blocks */
.bento-blue .bento-content, .bento-light .bento-content {
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}

.bento-badge {
  background: rgba(41, 171, 226, 0.15);
  color: #29abe3;
  border: 1px solid rgba(41, 171, 226, 0.3);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  align-self: flex-start;
  font-weight: 600;
}

.bento-huge {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 5px;
  line-height: 1;
}
.bento-blue .bento-huge { color: #fff; }
.bento-blue .bento-badge {
  background: rgba(41, 171, 226, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(41, 171, 226, 0.4);
}
.highlight-blue { color: #29abe3; }

.bento-blue h4, .bento-light h4 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.bento-blue h4 { color: #fff; }
.bento-blue p { color: rgba(255, 255, 255, 0.82) !important; }
.bento-light h4 { color: var(--primary-deep); }
.bento-light p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }

@media (max-width: 992px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-tall { grid-column: 1 / 3; grid-row: auto; flex-direction: row; }
  .bg-metrology { height: 100%; width: 50%; }
  .tall-content { height: 100%; width: 50%; }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide, .bento-tall, .bento-blue, .bento-light { grid-column: 1 / 2; }
  .bento-header-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; }
  .bento-tall { flex-direction: column; }
  .bg-metrology { height: 250px; width: 100%; }
  .tall-content { width: 100%; }
}

/* 1. TABLET & COMPACT DESKTOP (<= 1024px) */
@media (max-width: 1024px) {
  .cockpit-ring.ring-outer {
    width: 400px !important;
    height: 400px !important;
  }

  .cockpit-ring.ring-inner {
    width: 350px !important;
    height: 350px !important;
  }

  .glass-hud-pod {
    max-width: 100% !important;
  }

  .interactive-hub-dock {
    margin-top: 15px !important;
  }

  .apj-careers-grid {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
    width: 100% !important;
  }

  .career-testimonial-portal {
    max-width: 420px !important;
    margin: 0 auto !important;
  }
}

/* 2. MOBILE & SMALL TABLET (<= 768px) */
@media (max-width: 768px) {
  .kpit-hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem) !important;
  }

  .hero-actions.dual-buttons {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
  }

  .twin-controls-dock {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .twin-pill-btn {
    padding: 8px 14px !important;
    font-size: 0.78rem !important;
  }

  .valoir-circles-wrap {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }

  .cockpit-globe-stage {
    width: 330px !important;
    height: 330px !important;
  }

  .cockpit-ring.ring-outer {
    width: 310px !important;
    height: 310px !important;
  }

  .cockpit-ring.ring-inner {
    width: 270px !important;
    height: 270px !important;
  }

  .hub-dock-btn {
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
  }
}

/* 3. COMPACT MOBILE (<= 576px) */
@media (max-width: 576px) {

  .showroom-3d-stage,
  .model-canvas-wrapper {
    height: 300px !important;
    min-height: 300px !important;
  }

  .cockpit-globe-stage {
    width: 290px !important;
    height: 290px !important;
  }

  .cockpit-ring.ring-outer {
    width: 275px !important;
    height: 275px !important;
  }

  .cockpit-ring.ring-inner {
    width: 240px !important;
    height: 240px !important;
  }

  .glass-hud-pod {
    padding: 16px !important;
  }

  .career-testimonial-portal {
    max-width: 310px !important;
  }

  .career-bubble-card {
    padding: 24px !important;
  }

  .career-bubble-card p {
    font-size: 0.92rem !important;
  }

  .career-tracks-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ── Careers Section & Engineer Spotlight Styling ── */
.engineer-spotlight-card:hover {
  border-color: #083B8A !important;
  box-shadow: 0 20px 50px rgba(8, 59, 138, 0.12) !important;
}

.eng-tab-btn {
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid rgba(8, 59, 138, 0.2);
  color: #1b1564;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(8, 59, 138, 0.04);
}

.eng-tab-btn:hover {
  background: #f0f7ff;
  border-color: #083B8A;
  color: #083B8A;
  transform: translateY(-1px);
}

.eng-tab-btn.active {
  background: #083B8A !important;
  border-color: #083B8A !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(8, 59, 138, 0.25) !important;
}

.eng-tab-dot {
  width: 6px;
  height: 6px;
  background: #00E5FF;
  border-radius: 50%;
  display: inline-block;
}

.eng-tab-btn.active .eng-tab-dot {
  box-shadow: 0 0 6px #00E5FF;
}

.career-pathway-card:hover {
  transform: translateY(-3px);
  border-color: #083B8A !important;
  box-shadow: 0 14px 32px rgba(8, 59, 138, 0.1) !important;
}

.career-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(8, 59, 138, 0.35) !important;
}

.career-secondary-cta:hover {
  background: #f0f7ff !important;
  border-color: #083B8A !important;
  color: #083B8A !important;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .careers-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
