@import url("https://use.typekit.net/axr5ytg.css");

body, button, input, select, textarea,
.font-body-md, .font-body-lg, .font-display-lg, .font-display-lg-mobile, .font-headline-md, .font-label-caps, .font-mono-data {
  font-family: "helvetica-lt-pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* =========================================================
   SM Auto — Shared Stylesheet
   Design System: Industrial Global Precision
   ========================================================= */

/* ---------------------------------------------------------
   Material Symbols — consistent rendering
   --------------------------------------------------------- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  user-select: none;
}

/* ---------------------------------------------------------
   Glassmorphism — unified class (glass-panel used site-wide)
   --------------------------------------------------------- */
.glass-panel {
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---------------------------------------------------------
   Text gradient utility (blue → deep navy)
   --------------------------------------------------------- */
.text-gradient {
  background: linear-gradient(135deg, #00549d 0%, #1c6dc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------------------------------------------------------
   Industrial dot-grid background pattern
   --------------------------------------------------------- */
.industrial-grid {
  background-image: radial-gradient(circle at 2px 2px,
      rgba(0, 0, 0, 0.03) 1px,
      transparent 0);
  background-size: 40px 40px;
}

/* ---------------------------------------------------------
   Pipeline connector line (horizontal, desktop)
   Used on progress / process steps sections
   --------------------------------------------------------- */
.pipeline-node {
  position: relative;
}

.pipeline-node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100%;
  height: 2px;
  background: #c1c6d3;
  z-index: -1;
}

.pipeline-node:last-child::after {
  display: none;
}

/* Active pipeline step */
.pipeline-active {
  background: #1c6dc1 !important;
}

/* ---------------------------------------------------------
   Scroll reveal animation
   JS adds .active when element enters viewport
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   Section fade-in (sections start hidden, JS reveals them)
   --------------------------------------------------------- */
section.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   Text shadow utility (subtle depth on hero overlays)
   --------------------------------------------------------- */
.text-shadow-subtle {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
}

/* ---------------------------------------------------------
   Active nav link indicator
   Applied automatically by shared.js based on current page
   --------------------------------------------------------- */
nav a.nav-active,
header a.nav-active {
  color: #00549d;
  font-weight: 700;
  border-bottom: 2px solid #00549d;
  padding-bottom: 4px;
}