/* ==========================================================================
   ALLUMATIK INDIA PVT. LTD. — ULTRA-PREMIUM 1000X DESIGN SYSTEM (style.css)
   ========================================================================== */

:root {
  --obsidian: #07090a;
  --coal: #0e1113;
  --slate-card: #14181a;
  --slate-hover: #1b2023;
  --paper: #f7f5f0;
  --paper-card: #ffffff;
  --paper-warm: #f0ede5;

  --line: rgba(60, 63, 58, 0.18);
  --line-strong: rgba(60, 63, 58, 0.28);
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-dark-strong: rgba(255, 255, 255, 0.14);

  --amber: #e88d00;
  --amber-bright: #ffb020;
  --amber-accent: #ff9500;
  --amber-deep: #cc7400;
  --amber-glow: rgba(255, 176, 32, 0.18);
  --amber-glow-strong: rgba(255, 176, 32, 0.32);

  --muted: #7a807d;
  --muted-light: #949996;
  --text-dark: #0a0d0e;
  --text-dark-secondary: #2a2f31;
  --text-light: #f1f5f9;
  --text-light-secondary: #b8bdba;

  --font-heading: "Outfit", "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-display: "Syne", "Outfit", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.5s var(--ease-premium);
  --transition-fast: all 0.28s var(--ease-out);
  --glass-backdrop: blur(20px) saturate(1.2);

  --space-xs: clamp(8px, 1vw, 12px);
  --space-sm: clamp(12px, 1.6vw, 20px);
  --space-md: clamp(20px, 3vw, 36px);
  --space-lg: clamp(40px, 6vw, 72px);
  --space-xl: clamp(64px, 10vw, 120px);
  --space-2xl: clamp(96px, 14vw, 160px);

  --shadow-sm: 0 2px 8px rgba(10, 13, 14, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 13, 14, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 13, 14, 0.12);
  --shadow-xl: 0 40px 80px rgba(10, 13, 14, 0.18);
  --shadow-dark-lg: 0 30px 60px rgba(0, 0, 0, 0.5);
  --shadow-amber: 0 12px 32px rgba(255, 176, 32, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

/* Lenis Smooth Scroll Essential Rules (Prevents Chrome scroll jitter & lag) */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  background: var(--paper);
  color: var(--text-dark);
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(14px, 0.95vw, 15px);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transform: translateZ(0);
  will-change: transform;
}

::selection {
  background: var(--amber-bright);
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--obsidian);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3a3f42 0%, #2a2f31 100%);
  border-radius: 5px;
  border: 2px solid var(--obsidian);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--amber-bright) 0%,
    var(--amber) 100%
  );
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.08;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.shell {
  width: min(1380px, 100% - clamp(32px, 6vw, 96px));
  margin-inline: auto;
  position: relative;
}

.shell-fluid {
  width: 100%;
  padding-inline: clamp(24px, 4vw, 64px);
  position: relative;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #cbd5e1 45%,
    #94a3b8 75%,
    #64748b 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.amber-gradient-text {
  background: linear-gradient(
    135deg,
    #ffd86b 0%,
    #ffb020 35%,
    #e88d00 65%,
    #cc7400 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow,
.sectionNo,
.micro {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: clamp(9px, 0.65vw, 10px);
  font-weight: 700;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
}
.eyebrow {
  color: #989e9b;
  color: var(--text-light-secondary);
}
.eyebrow i {
  background: linear-gradient(90deg, var(--amber-bright), var(--amber));
  vertical-align: middle;
  width: 40px;
  height: 1.5px;
  margin-right: 16px;
  display: inline-block;
  box-shadow: 0 0 12px var(--amber-glow-strong);
  position: relative;
}
.eyebrow i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 10px var(--amber-glow-strong);
}

.sectionNo {
  color: #8a8f8c;
  position: relative;
}
.darkSection .sectionNo,
.innerHero .sectionNo {
  color: #6b6f6c;
}

/* ============ PREMIUM BUTTONS ============ */
.amberButton {
  background: linear-gradient(135deg, #ffc240 0%, #ffb020 40%, #e88d00 100%);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 0;
  padding: clamp(16px, 1.6vw, 20px) clamp(24px, 2.5vw, 32px);
  font-size: clamp(9px, 0.65vw, 10px);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0a0d0e !important;
  border-radius: 3px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-amber);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.amberButton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffd86b 0%, #ffc240 50%, #ffb020 100%);
  opacity: 0;
  transition: var(--transition-fast);
  z-index: -1;
}
.amberButton::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
  z-index: -1;
}
.amberButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 176, 32, 0.4);
  letter-spacing: 0.22em;
}
.amberButton:hover::before {
  opacity: 1;
}
.amberButton:hover::after {
  animation: shine 0.7s var(--ease-premium);
}
@keyframes shine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}
.amberButton:active {
  transform: translateY(-1px);
}

.btn-premium {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #787e7b;
  padding-bottom: 8px;
  font-size: clamp(10px, 0.7vw, 11px);
  font-weight: 700;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: var(--transition-smooth);
}
.btn-premium::after {
  content: "↗";
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}
.btn-premium:hover {
  color: var(--amber-bright);
  border-color: var(--amber-bright);
  letter-spacing: 0.2em;
}
.btn-premium:hover::after {
  transform: translate(3px, -3px);
}

.btn-premium-solid {
  background: linear-gradient(135deg, #ffc240 0%, #ffb020 100%);
  color: #0a0d0e !important;
  border: none;
  padding: 14px 26px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: var(--shadow-amber);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-premium-solid:hover {
  background: linear-gradient(135deg, #ffd86b 0%, #ffc240 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 176, 32, 0.35);
}

/* ============ PREMIUM HEADER / NAVBAR (1000X ULTRA-LUXURY) ============ */

/* ---------- TOP UTILITY BAR (Full Width) ---------- */
.top-bar {
  display: block !important;
  position: relative;
  z-index: 999;
  width: 100%;
  background: #07090a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-ui);
  overflow: hidden;
}
.top-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 0.72   0 0 0 0 0.16   0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.top-bar-inner {
  width: 100%;
  padding-inline: clamp(24px, 4vw, 64px);
  height: clamp(32px, 2.4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 32px);
  color: rgba(226, 232, 240, 0.72);
  font-size: clamp(9.5px, 0.65vw, 10.5px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
}
.top-bar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow:
    0 0 0 3px rgba(255, 176, 32, 0.15),
    0 0 10px rgba(255, 176, 32, 0.6);
  position: relative;
  flex-shrink: 0;
}
.top-bar-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 32, 0.35);
  animation: amber-pulse 2.4s ease-out infinite;
}
@keyframes amber-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.top-bar-label {
  color: rgba(226, 232, 240, 0.82);
  font-weight: 700;
}
.top-bar-sep {
  color: rgba(255, 176, 32, 0.35);
  font-size: 10px;
}
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(226, 232, 240, 0.78);
  transition: color 0.3s var(--ease-premium);
  white-space: nowrap;
}
.top-bar-link svg {
  color: var(--amber-bright);
}
.top-bar-link:hover {
  color: var(--amber-bright);
}
@media (max-width: 991px) {
  .top-bar-right .top-bar-loc {
    display: none;
  }
}
@media (max-width: 680px) {
  .top-bar-left .top-bar-label {
    display: none;
  }
}
@media (max-width: 479px) {
  .top-bar-right .top-bar-sep {
    display: none;
  }
}

/* ---------- MAIN SITE HEADER (100% Full Width) ---------- */
.siteHeader {
  z-index: 1000;
  position: sticky;
  top: 0;
  width: 100%;
  height: clamp(72px, 6vw, 84px);
  margin: 0;
  padding-inline: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 40px);
  background: rgba(9, 11, 12, 0.95);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.35s var(--ease-premium);
}
.siteHeader.dark {
  color: #fff;
}

.siteHeader.scrolled {
  height: 66px;
  background: rgba(7, 9, 10, 0.98);
  border-bottom-color: rgba(255, 176, 32, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* ---------- LEFT ZONE: LOGO ---------- */
.siteHeader-left {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}
.siteHeader .logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}
.siteHeader .logo img {
  object-fit: contain;
  max-height: clamp(48px, 5vw, 60px);
  width: auto;
  display: block;
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
.siteHeader.scrolled .logo img {
  max-height: clamp(38px, 4vw, 50px);
}
.siteHeader .logo img:hover {
  filter: drop-shadow(0 0 10px rgba(255, 176, 32, 0.6));
}

/* ---------- CENTER ZONE: NAV MENU ---------- */
.siteHeader-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.navMenu {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  position: relative;
}
.navMenu > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(203, 213, 225, 0.85);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10.5px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.navMenu > a:hover {
  color: #0a0c0d;
  background: linear-gradient(135deg, #ffd86b 0%, #ffc240 50%, #ffb020 100%);
  box-shadow: 0 4px 18px rgba(255, 176, 32, 0.4);
  transform: translateY(-1px);
}
.navMenu > a.is-active {
  color: #0a0c0d;
  background: linear-gradient(135deg, #ffc240 0%, #ffb020 50%, #e88d00 100%);
  box-shadow: 0 4px 18px rgba(255, 176, 32, 0.45);
}

.nav-indicator {
  display: none !important;
}

@media (max-width: 1280px) {
  .nav-no {
    display: none;
  }
}
@media (max-width: 1100px) {
  .siteHeader-center {
    display: none;
  }
}

/* ---------- RIGHT ZONE: ACTIONS ---------- */
.siteHeader-right {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
  height: 100%;
  position: relative;
}

/* Premium Search */
.global-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.searchIconBtn {
  width: clamp(40px, 3.2vw, 46px);
  height: clamp(40px, 3.2vw, 46px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(226, 232, 240, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s var(--ease-premium);
  position: relative;
  z-index: 3;
}
.searchIconBtn svg {
  transition:
    transform 0.35s var(--ease-premium),
    color 0.3s;
}
.searchIconBtn:hover {
  background: rgba(255, 176, 32, 0.1);
  border-color: rgba(255, 176, 32, 0.32);
  color: var(--amber-bright);
  box-shadow: 0 0 24px rgba(255, 176, 32, 0.12);
}
.searchIconBtn:hover svg {
  transform: scale(1.08) rotate(-8deg);
}

.global-search-wrapper.is-open .searchIconBtn {
  background: linear-gradient(135deg, #ffb020 0%, #e88d00 100%);
  border-color: rgba(255, 176, 32, 0.6);
  color: #0a0c0d;
  box-shadow: 0 8px 22px rgba(255, 176, 32, 0.3);
}

.searchDrawer {
  position: absolute;
  top: 120%;
  right: 0;
  width: clamp(300px, 34vw, 460px);
  background: linear-gradient(180deg, #0e1113 0%, #0a0c0d 100%);
  border: 1px solid rgba(255, 176, 32, 0.16);
  border-radius: 16px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transform-origin: top right;
  transform: scale(0.9) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1060;
  backdrop-filter: blur(24px) saturate(1.6);
}
.searchDrawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 176, 32, 0.42),
    transparent
  );
}
.global-search-wrapper.is-open .searchDrawer {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.searchField {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.75);
}
.searchField svg {
  color: var(--amber-bright);
  flex-shrink: 0;
}
.searchField input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-ui);
  letter-spacing: 0.01em;
}
.searchField input::placeholder {
  color: rgba(148, 163, 184, 0.65);
}
.searchField kbd {
  padding: 3px 7px;
  font-family: var(--font-mono-ui, monospace);
  font-size: 10px;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
}
.search-results-dropdown {
  position: relative;
  top: auto;
  right: auto;
  width: auto;
  max-height: 380px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}
.search-results-dropdown[style*="block"],
.search-results-dropdown[style*="display: block"] {
  display: block !important;
}
.search-result-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Premium Header CTA */
.headerCta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1vw, 14px);
  padding: clamp(11px, 1vw, 14px) clamp(18px, 2vw, 26px);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #ffd86b 0%,
    #ffc240 25%,
    #ffb020 55%,
    #e88d00 85%,
    #cc7400 100%
  );
  color: #0a0c0d;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: clamp(9.5px, 0.68vw, 11px);
  overflow: hidden;
  box-shadow:
    0 10px 26px rgba(255, 176, 32, 0.28),
    0 0 0 1px rgba(255, 216, 107, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -4px 12px rgba(204, 116, 0, 0.3);
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s,
    letter-spacing 0.35s;
  isolation: isolate;
}
.ctaGlow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    120px 40px at 20% 0%,
    rgba(255, 255, 255, 0.6) 0%,
    transparent 60%
  );
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}
.headerCta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-22deg);
  animation: cta-shine 5.6s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes cta-shine {
  0%,
  60%,
  100% {
    transform: translateX(0) skewX(-22deg);
    left: -120%;
  }
  15%,
  25% {
    transform: translateX(0) skewX(-22deg);
    left: 140%;
  }
}
.ctaArrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(24px, 2vw, 28px);
  height: clamp(24px, 2vw, 28px);
  border-radius: 50%;
  background: rgba(10, 12, 13, 0.12);
  border: 1px solid rgba(10, 12, 13, 0.22);
  color: #0a0c0d;
  transition:
    transform 0.35s var(--ease-premium),
    background 0.3s,
    color 0.3s;
}
.headerCta:hover {
  transform: translateY(-2px);
  letter-spacing: 0.15em;
  box-shadow:
    0 16px 38px rgba(255, 176, 32, 0.42),
    0 0 0 1px rgba(255, 216, 107, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -4px 12px rgba(204, 116, 0, 0.32);
}
.headerCta:hover .ctaArrow {
  transform: translate(3px, -3px) rotate(-12deg);
  background: #0a0c0d;
  color: var(--amber-bright);
}
.siteHeader.scrolled .headerCta {
  padding-top: clamp(9px, 0.8vw, 12px);
  padding-bottom: clamp(9px, 0.8vw, 12px);
}

/* ---------- Premium Hamburger ---------- */
.hamburgerMenu {
  display: none;
  width: clamp(42px, 3.4vw, 48px);
  height: clamp(42px, 3.4vw, 48px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s var(--ease-premium);
  position: relative;
}
.hamburgerMenu span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #fff 0%, #cbd5e1 100%);
  transition: all 0.4s var(--ease-premium);
  transform-origin: center;
}
.hamburgerMenu span:nth-child(2) {
  width: 16px;
  margin-left: 2px;
  align-self: flex-start;
}
.hamburgerMenu span:nth-child(3) {
  width: 11px;
  margin-left: 2px;
  align-self: flex-start;
}
.hamburgerMenu:hover {
  background: rgba(255, 176, 32, 0.1);
  border-color: rgba(255, 176, 32, 0.32);
  box-shadow: 0 0 24px rgba(255, 176, 32, 0.12);
}
.hamburgerMenu:hover span {
  background: linear-gradient(90deg, #ffd86b, #e88d00);
  box-shadow: 0 0 8px rgba(255, 176, 32, 0.5);
}
.hamburgerMenu.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}
.hamburgerMenu.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}
.hamburgerMenu.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

@media (max-width: 1100px) {
  .hamburgerMenu {
    display: inline-flex;
  }
}
@media (max-width: 991px) {
  .headerCta {
    display: none !important;
  }
  .siteHeader-right {
    padding-left: 0 !important;
    gap: 0 !important;
    border: none !important;
  }
  .siteHeader-right::before {
    display: none !important;
  }
}
@media (max-width: 420px) {
  .siteHeader .logo {
    padding-right: 8px;
    border: none;
  }
  .siteHeader .logo::after {
    display: none;
  }
  .logo-mark {
    display: none;
  }
}

/* ---------- MOBILE NAV SLIDE-OVER (Premium) ---------- */
.mobileNavOverlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 7, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-premium);
}
.mobileNavOverlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobileNav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  height: 100svh;
  width: min(420px, 86vw);
  background:
    radial-gradient(
      600px 300px at 100% 0%,
      rgba(255, 176, 32, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #0b0d0e 0%, #090a0b 60%, #070809 100%);
  border-left: 1px solid rgba(255, 176, 32, 0.12);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  padding: clamp(20px, 4vw, 28px);
  gap: clamp(18px, 3vw, 26px);
  color: #fff;
  overflow-y: auto;
}
.mobileNav.is-open {
  transform: translateX(0);
}
.mobileNav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 0.72   0 0 0 0 0.16   0 0 0 0.045 0'/></filter><rect width='100%' height='100%' filter='url(%23n2)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.mobileNavHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.mobileNavHead::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, #ffb020, #cc7400);
  box-shadow: 0 0 10px rgba(255, 176, 32, 0.4);
}
.mobileNavBrand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobileNavBrand img {
  width: 120px;
  height: auto;
}
.mobileNavBrand small {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 176, 32, 0.7);
}
.mobileNavClose {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.mobileNavClose:hover {
  background: rgba(255, 176, 32, 0.12);
  border-color: rgba(255, 176, 32, 0.3);
  color: var(--amber-bright);
}
.mobileNavSearch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.78);
}
.mobileNavSearch svg {
  color: var(--amber-bright);
  flex-shrink: 0;
}
.mobileNavSearch input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--font-ui);
}
.mobileNavSearch input::placeholder {
  color: rgba(148, 163, 184, 0.65);
}

.mobileNavList {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobileNavList > a {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: clamp(14px, 2.5vw, 18px) 14px;
  border-radius: 12px;
  position: relative;
  color: rgba(226, 232, 240, 0.9);
  transition: all 0.35s var(--ease-premium);
  overflow: hidden;
}
.mobileNavList > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: linear-gradient(180deg, #ffb020, #cc7400);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-premium);
  box-shadow: 0 0 10px rgba(255, 176, 32, 0.4);
}
.mobileNavList > a span {
  font-family: var(--font-mono-ui, monospace);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 176, 32, 0.65);
  letter-spacing: 0.06em;
}
.mobileNavList > a strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.mobileNavList > a em {
  color: rgba(148, 163, 184, 0.7);
  font-size: 16px;
  font-style: normal;
  transition: all 0.3s;
  justify-self: end;
}
.mobileNavList > a:hover,
.mobileNavList > a.is-active {
  background: linear-gradient(
    90deg,
    rgba(255, 176, 32, 0.1),
    rgba(255, 176, 32, 0.02)
  );
  padding-left: 22px;
  color: #fff;
}
.mobileNavList > a:hover::before,
.mobileNavList > a.is-active::before {
  transform: scaleY(1);
}
.mobileNavList > a:hover span,
.mobileNavList > a.is-active span {
  color: var(--amber-bright);
}
.mobileNavList > a:hover em {
  color: var(--amber-bright);
  transform: translateX(4px);
}

.mobileNavFoot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.mobileNavBlock b {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 176, 32, 0.75);
  margin-bottom: 4px;
}
.mobileNavBlock a,
.mobileNavBlock span {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 500;
}
.mobileNavBlock a:hover {
  color: var(--amber-bright);
}
.mobileNavCta {
  justify-content: center;
  text-align: center;
  padding: 14px 18px;
}

body.mobile-nav-open {
  overflow: hidden;
}

/* ============ HERO SECTIONS ============ */
.homeHero,
.innerHero {
  color: #fff;
  background:
    radial-gradient(
      circle at 72% 32%,
      rgba(255, 176, 32, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 176, 32, 0.03) 0%,
      transparent 45%
    ),
    var(--obsidian);
  position: relative;
  overflow: hidden;
}
.homeHero {
  min-height: clamp(640px, 82vh, 960px);
}
.innerHero {
  min-height: clamp(440px, 52vh, 560px);
}

.heroLines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 1;
}
.heroLines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    25% 100%,
    100% 50%;
}
.heroLines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 176, 32, 0.12) 30%,
    rgba(255, 176, 32, 0.12) 70%,
    transparent
  );
}

.homeHeroGrid {
  z-index: 2;
  grid-template-columns: 46% 54%;
  min-height: clamp(540px, 68vh, 760px);
  display: grid;
  position: relative;
  align-items: center;
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(20px, 3vw, 40px);
}

.homeCopy {
  padding-top: 0;
}
.homeCopy h1,
.innerHero h1 {
  color: #fff;
  letter-spacing: -0.05em;
  margin: clamp(20px, 2.5vw, 36px) 0;
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 600;
  font-family: var(--font-display);
  line-height: 0.94;
}
.homeCopy h1 em,
.innerHero h1 em,
.engineeringCopy h2 em {
  color: #aab0ad;
  font-family: var(--font-serif);
  font-weight: 400;
}
.homeCopy h1 em {
  color: var(--amber-bright);
}
.homeCopy > p,
.innerHeroGrid > div:first-child > p {
  color: #94a3b8;
  width: min(540px, 100%);
  max-width: 100%;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.8;
}

.heroActions {
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(28px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
}
.heroActions > a:last-child {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #6f7572;
  padding-bottom: 8px;
  font-size: clamp(10px, 0.7vw, 11px);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}
.heroActions > a:last-child:hover {
  color: var(--amber-bright);
  border-color: var(--amber-bright);
  letter-spacing: 0.2em;
}

.heroMachine,
.innerMachine {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  width: 100%;
  min-height: clamp(340px, 48vh, 560px);
}

.heroMachine > img,
.innerMachine > img {
  z-index: 3;
  filter: drop-shadow(0 40px 32px rgba(0, 0, 0, 0.65));
  width: 112%;
  max-width: 112%;
  position: relative;
  transition: transform 0.8s var(--ease-premium);
  animation: machineFloat 7s ease-in-out infinite;
}
@keyframes machineFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.heroMachine:hover > img,
.innerMachine:hover > img {
  transform: translateY(-14px) scale(1.02);
  filter: drop-shadow(0 50px 40px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 30px var(--amber-glow));
}

.orb {
  display: none;
}

.hero-sun {
  display: block !important;
  width: clamp(320px, 40vw, 540px);
  height: clamp(320px, 40vw, 540px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #ffd86b 0%,
    #ffc240 20%,
    #ffb020 45%,
    #e88d00 70%,
    #cc7400 100%
  );
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow:
    0 0 80px rgba(255, 176, 32, 0.25),
    inset -20px -40px 80px rgba(0, 0, 0, 0.18),
    inset 20px 20px 60px rgba(255, 255, 255, 0.15);
  animation: sunPulse 8s ease-in-out infinite;
}
@keyframes sunPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -52%) scale(1.02);
  }
}

.hero-frame {
  position: absolute;
  inset: clamp(24px, 4vw, 56px);
  z-index: 2;
  pointer-events: none;
}
.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: clamp(48px, 6vw, 80px);
  height: clamp(48px, 6vw, 80px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.hero-frame::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.hero-frame::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.hero-frame .corner-tr,
.hero-frame .corner-bl {
  position: absolute;
  width: clamp(48px, 6vw, 80px);
  height: clamp(48px, 6vw, 80px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.hero-frame .corner-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.hero-frame .corner-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
.hero-frame .cross-h,
.hero-frame .cross-v {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}
.hero-frame .cross-h {
  top: 50%;
  left: -8%;
  right: -8%;
  height: 1px;
}
.hero-frame .cross-v {
  top: 42%;
  bottom: 42%;
  left: 50%;
  width: 1px;
}

.vertical {
  writing-mode: vertical-rl;
  letter-spacing: 0.32em;
  color: #5f6461;
  font-size: 9px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: clamp(8px, 2vw, 20px);
  transform: translateY(-50%);
  z-index: 4;
  font-family: var(--font-heading);
  user-select: none;
}
.vertical::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--amber-bright), transparent);
  margin: 12px auto 0;
}

.machineLabel {
  border-left: 3px solid var(--amber-bright);
  background: linear-gradient(
    135deg,
    rgba(20, 24, 26, 0.92) 0%,
    rgba(14, 17, 19, 0.92) 100%
  );
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-radius: 0 8px 8px 0;
  z-index: 4;
  padding: 14px 22px;
  position: absolute;
  bottom: clamp(24px, 4vw, 60px);
  right: clamp(8px, 2vw, 24px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(255, 176, 32, 0.08);
  transition: var(--transition-smooth);
}
.machineLabel:hover {
  transform: translateX(-4px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 176, 32, 0.14);
}
.machineLabel small {
  letter-spacing: 0.18em;
  color: var(--amber-bright);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.machineLabel strong {
  margin-top: 4px;
  font-size: clamp(13px, 0.95vw, 15px);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
}

.heroIndex {
  z-index: 2;
  color: #8b918e;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  gap: 24px;
  height: clamp(80px, 9vw, 112px);
  font-size: clamp(9px, 0.6vw, 10px);
  font-weight: 700;
  display: flex;
  position: relative;
  margin-top: clamp(12px, 2vw, 28px);
  font-family: var(--font-heading);
}
.heroIndex > span:first-child {
  position: relative;
  padding-right: 32px;
  color: #646966;
}
.heroIndex > i {
  background: linear-gradient(90deg, #4d5250, transparent);
  width: clamp(60px, 10vw, 120px);
  height: 1px;
  margin-right: auto;
}
.heroIndex div {
  width: clamp(100px, 12vw, 160px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.heroIndex div::before {
  content: "";
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
}
.heroIndex div:first-of-type::before {
  display: none;
}
.heroIndex b {
  color: var(--amber-bright);
  margin-right: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1em;
}

/* Inner Page Structural Grids */
.innerHeroGrid {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: clamp(380px, 46vh, 500px);
  position: relative;
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 80px);
}
.innerHero h1 {
  margin: clamp(18px, 2.2vw, 30px) 0;
  font-size: clamp(36px, 5vw, 72px);
}
.innerHeroGrid > div:first-child {
  padding: 0;
  max-width: 900px;
  width: 100%;
}
.innerHeroGrid > div:first-child > p {
  margin: 0 auto;
}
.innerHeroGrid .heroActions {
  justify-content: center;
}
.innerHeroGrid > div:first-child h1 em {
  color: #aab0ad;
}

/* ============ SECTION WRAPPERS ============ */
.section-wrap {
  position: relative;
  overflow: hidden;
}

/* ============ STATEMENT SECTION ============ */
.statement {
  grid-template-columns: 16% 56% 28%;
  gap: clamp(24px, 3vw, 40px);
  padding: var(--space-2xl) 0;
  display: grid;
  align-items: start;
}
.statement em {
  color: #8d9390;
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
}
.statement h2,
.sectionIntro h2,
.engineeringCopy h2,
.applicationPreview h2,
.amberBand h2,
.footerLead h2,
.narrative h2,
.featureStory h2,
.qualityBand h2,
.selectionBand h2,
.darkCallout h2,
.productIntro h2,
.specSection h2,
.serviceForm h2,
.emptyState h2,
.contactGrid aside h2 {
  letter-spacing: -0.045em;
  margin: clamp(14px, 1.6vw, 22px) 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  color: var(--text-dark);
  font-family: var(--font-heading);
}
.statement > div:last-child {
  padding-top: clamp(20px, 4vw, 68px);
}
.statement p,
.sectionIntro p,
.narrative p,
.featureStory p,
.qualityBand p,
.selectionBand p,
.productIntro p,
.specSection p,
.serviceForm p,
.emptyState p,
.contactGrid aside p {
  color: #5a6470;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.85;
}
.statement a,
.featureStory a {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #9a9fa2;
  margin-top: 20px;
  padding-bottom: 8px;
  font-size: clamp(9px, 0.65vw, 10px);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}
.statement a:hover,
.featureStory a:hover {
  color: var(--amber);
  border-color: var(--amber-bright);
  letter-spacing: 0.2em;
}

/* ============ DARK SECTIONS ============ */
.darkSection {
  background: var(--coal);
  color: #fff;
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.darkSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px
  );
  background-size: 100% 48px;
  pointer-events: none;
}
.darkSection .sectionIntro {
  padding: 0 0 clamp(40px, 5vw, 68px);
}
.darkSection h2 {
  color: #fff;
}

.sectionIntro {
  grid-template-columns: 16% 54% 30%;
  align-items: end;
  padding: clamp(60px, 9vw, 120px) 0 clamp(36px, 4.5vw, 68px);
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}
.sectionIntro h2,
.sectionIntro p {
  margin: 0;
}

/* ============ FAMILY & MODEL GRIDS ============ */
.familyGrid,
.modelGrid {
  background: rgba(255, 255, 255, 0.03);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  display: grid;
}
.familyGrid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.familyCard,
.modelGrid > a,
.modelGrid > div {
  background: var(--paper);
  min-height: clamp(380px, 36vw, 460px);
  padding: clamp(20px, 2vw, 30px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.familyCard::before,
.modelGrid > a::before,
.modelGrid > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(255, 176, 32, 0.04) 100%
  );
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}
.familyCard::after,
.modelGrid > a::after,
.modelGrid > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-bright), var(--amber));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-premium);
  box-shadow: 0 0 12px var(--amber-glow);
  z-index: 2;
}
.darkSection .familyCard,
.modelGrid > a,
.modelGrid > div {
  background: linear-gradient(180deg, var(--slate-card) 0%, #121618 100%);
  color: #fff;
  border: 1px solid var(--line-dark);
}
.familyCard:hover,
.modelGrid > a:hover,
.modelGrid > div:hover {
  background: var(--paper-card);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}
.familyCard:hover::before,
.modelGrid > a:hover::before,
.modelGrid > div:hover::before {
  opacity: 1;
}
.familyCard:hover::after,
.modelGrid > a:hover::after,
.modelGrid > div:hover::after {
  transform: scaleX(1);
}
.darkSection .familyCard:hover,
.modelGrid > a:hover,
.modelGrid > div:hover {
  background: linear-gradient(180deg, var(--slate-hover) 0%, #1c2123 100%);
  border-color: rgba(255, 176, 32, 0.22);
  box-shadow:
    var(--shadow-dark-lg),
    0 0 40px rgba(255, 176, 32, 0.1);
}

.familyCard > div:first-child {
  color: #858b88;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  justify-content: space-between;
  font-size: clamp(8px, 0.6vw, 9.5px);
  font-weight: 700;
  display: flex;
  align-items: center;
}
.familyCard > div:first-child span:first-child {
  color: var(--amber-bright);
  font-family: var(--font-display);
  font-size: 1.15em;
  padding: 4px 0;
  position: relative;
}
.familyCard > div:first-child span:last-child {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}
.familyCard:hover > div:first-child span:last-child {
  color: var(--amber-bright);
  transform: translate(2px, -2px);
}

.familyCard img,
.modelGrid img {
  object-fit: contain;
  filter: drop-shadow(0 20px 16px rgba(0, 0, 0, 0.25));
  width: 100%;
  height: clamp(200px, 18vw, 240px);
  margin: clamp(12px, 1.5vw, 18px) 0;
  transition:
    transform 0.6s var(--ease-premium),
    filter 0.6s var(--ease-premium);
  flex-shrink: 0;
}
.darkSection .familyCard img,
.modelGrid img {
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.5));
}
.familyCard:hover img,
.modelGrid > a:hover img,
.modelGrid > div:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 28px 20px rgba(0, 0, 0, 0.3));
}
.familyCard h3,
.modelGrid h3 {
  margin: 6px 0 8px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.02em;
  line-height: 1.25;
  transition: color 0.3s var(--ease-out);
}
.familyCard:hover h3,
.modelGrid > a:hover h3,
.modelGrid > div:hover h3 {
  color: var(--amber-bright);
}
.familyCard p,
.modelGrid p {
  color: #889099;
  font-size: clamp(12px, 0.85vw, 13px);
  line-height: 1.7;
  margin: 0;
}
.darkSection .familyCard p,
.modelGrid p {
  color: #868c89;
}

.modelGrid > a > div:first-child > div,
.modelGrid > div > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.modelGrid > a > div:first-child > div > span:first-child,
.modelGrid > div > div:first-child > span:first-child {
  color: var(--amber-bright);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: clamp(10px, 0.7vw, 11px);
  letter-spacing: 0.08em;
}
.modelGrid > a > div:first-child > div > b,
.modelGrid > div > div:first-child > b {
  color: var(--muted);
  font-size: clamp(9px, 0.65vw, 10px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.modelGrid > a .card-footer,
.modelGrid > div .card-footer,
.modelGrid > a > div:last-child,
.modelGrid > div > div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}
.darkSection .modelGrid > a .card-footer,
.darkSection .modelGrid > div .card-footer,
.modelGrid > a > div:last-child,
.modelGrid > div > div:last-child {
  border-top-color: var(--line-dark);
}
.modelGrid .card-footer small,
.modelGrid > a > div:last-child small,
.modelGrid > div > div:last-child small {
  color: var(--muted);
  font-size: clamp(9px, 0.65vw, 10px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.modelGrid .card-footer span:last-child,
.modelGrid > a > div:last-child span:last-child,
.modelGrid > div > div:last-child span:last-child {
  color: var(--amber);
  font-size: clamp(9px, 0.65vw, 10.5px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}
.modelGrid > a:hover .card-footer span:last-child,
.modelGrid > div:hover .card-footer span:last-child,
.modelGrid > a:hover > div:last-child span:last-child,
.modelGrid > div:hover > div:last-child span:last-child {
  transform: translate(2px, -2px);
}

.centerAction {
  text-align: right;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: clamp(24px, 3vw, 40px);
  font-size: clamp(9px, 0.65vw, 10px);
  font-weight: 700;
  position: relative;
}
.centerAction::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-bright));
  margin-right: calc(100% + 16px);
}

/* ============ ENGINEERING SPLIT ============ */
.engineeringSplit {
  grid-template-columns: 50% 50%;
  min-height: clamp(540px, 60vh, 720px);
  display: grid;
  position: relative;
}
.engineeringImage {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(7, 9, 10, 0.88) 0%,
      rgba(14, 17, 19, 0.82) 100%
    ),
    url("data/fav.webp") 50% / contain no-repeat,
    linear-gradient(135deg, #171b1d 0%, #0e1113 100%);
  position: relative;
  overflow: hidden;
}
.engineeringImage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 176, 32, 0.1),
    transparent 60%
  );
}
.engineeringImage:after {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  inset: clamp(28px, 4vw, 56px);
}
.engineeringImage > span {
  letter-spacing: 0.28em;
  font-size: 9px;
  font-weight: 700;
  position: absolute;
  bottom: clamp(40px, 8vw, 80px);
  left: clamp(28px, 5vw, 60px);
  font-family: var(--font-heading);
  color: #8a8f8c;
}
.engineeringImage > b {
  color: var(--amber-bright);
  font-size: clamp(48px, 6vw, 84px);
  position: absolute;
  top: 35%;
  left: 55%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 500;
  opacity: 0.9;
  text-shadow: 0 0 40px var(--amber-glow);
  animation: plusPulse 4s ease-in-out infinite;
}
@keyframes plusPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.engineeringCopy {
  padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 80px);
}
.engineeringCopy > p {
  color: #5a6470;
  margin-bottom: clamp(28px, 3.5vw, 48px);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.85;
}

.principle {
  border-top: 1px solid var(--line);
  grid-template-columns: clamp(40px, 4vw, 56px) 1fr;
  padding: clamp(16px, 2vw, 22px) 0;
  display: grid;
  align-items: start;
  gap: 4px 12px;
  transition: var(--transition-fast);
  position: relative;
  padding-left: 0;
}
.principle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--amber-bright), transparent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.4s var(--ease-premium);
}
.principle:hover::before {
  transform: scaleY(1);
}
.principle:hover {
  padding-left: 12px;
}
.principle:last-child {
  border-bottom: 1px solid var(--line);
}
.principle > b {
  color: var(--amber-bright);
  grid-row: 1/3;
  font-size: clamp(10px, 0.7vw, 11px);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  padding-top: 2px;
}
.principle strong {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.principle span {
  color: #64748b;
  margin-top: 4px;
  font-size: clamp(12px, 0.85vw, 13.5px);
  line-height: 1.7;
}

/* ============ APPLICATIONS PREVIEW ============ */
.applicationPreview {
  grid-template-columns: 40% 60%;
  padding: var(--space-2xl) 0;
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.applicationPreview > div:last-child {
  border-top: 1px solid var(--line);
}
.applicationPreview > div:last-child a {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: clamp(52px, 5vw, 80px) 1fr 28px;
  align-items: center;
  height: clamp(80px, 8vw, 100px);
  transition: var(--transition-smooth);
  display: grid;
  padding-left: 0;
  position: relative;
  margin-top: -1px;
}
.applicationPreview > div:last-child a:hover {
  background: var(--paper-card);
  padding-left: 20px;
  box-shadow: var(--shadow-md);
  border-color: var(--amber-bright);
  z-index: 2;
}
.applicationPreview > div:last-child a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--amber-bright);
  transition: height 0.4s var(--ease-premium);
  box-shadow: 0 0 10px var(--amber-glow);
}
.applicationPreview > div:last-child a:hover::before {
  height: 40%;
}
.applicationPreview a span {
  color: var(--amber-bright);
  font-size: clamp(10px, 0.7vw, 11px);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}
.applicationPreview a strong {
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  transition: color 0.3s var(--ease-out);
}
.applicationPreview a:hover strong {
  color: var(--amber);
}
.applicationPreview a b {
  color: var(--muted);
  font-weight: 500;
  transition: var(--transition-fast);
  font-size: 1.1em;
  text-align: right;
}
.applicationPreview a:hover b {
  color: var(--amber-bright);
  transform: translate(3px, -3px);
}

/* ============ APPLICATION DETAILS ============ */
.applicationDetails {
  padding: var(--space-2xl) 0;
}
.applicationDetails article {
  display: grid;
  grid-template-columns: clamp(56px, 6vw, 88px) 1fr clamp(120px, 14vw, 200px);
  align-items: start;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(32px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: var(--transition-smooth);
}
.applicationDetails article::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  transition: height 0.5s var(--ease-premium);
  border-radius: 0 2px 2px 0;
}
.applicationDetails article:hover::before {
  height: 50%;
}
.applicationDetails article:hover {
  padding-left: clamp(16px, 2vw, 28px);
}
.applicationDetails article > span {
  color: var(--amber-bright);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.applicationDetails article h2 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease-out);
}
.applicationDetails article:hover h2 {
  color: var(--amber);
}
.applicationDetails article p {
  color: #5a6470;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.8;
  max-width: 700px;
}
.applicationDetails article > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
}
.applicationDetails article > div > div b {
  font-size: clamp(9px, 0.65vw, 10px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper-warm);
  font-family: var(--font-heading);
  transition: var(--transition-fast);
}
.applicationDetails article:hover > div > div b {
  color: var(--amber);
  border-color: rgba(255, 176, 32, 0.3);
  background: rgba(255, 176, 32, 0.06);
}
.applicationDetails article > a {
  color: var(--amber);
  font-size: clamp(9px, 0.65vw, 10px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 176, 32, 0.3);
  border-radius: 2px;
  background: rgba(255, 176, 32, 0.04);
  transition: var(--transition-smooth);
}
.applicationDetails article > a:hover {
  background: linear-gradient(135deg, #ffb020 0%, #e88d00 100%);
  color: #0a0d0e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
  border-color: transparent;
}

/* ============ AMBER BAND ============ */
.amberBand {
  background: linear-gradient(135deg, #ffc240 0%, #ffb020 45%, #e88d00 100%);
  padding: clamp(64px, 9vw, 110px) 0;
  color: #0a0d0e;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.amberBand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.1), transparent 45%);
  z-index: -1;
}
.amberBand::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: multiply;
}
.amberBand h2 {
  color: #0a0d0e !important;
  font-family: var(--font-display);
}
.amberBand > .shell {
  grid-template-columns: 52% 30% 18%;
  align-items: end;
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
}
.amberBand p {
  color: rgba(10, 13, 14, 0.82);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
}
.amberBand a {
  text-align: right;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(9px, 0.65vw, 10px);
  font-weight: 800;
  color: #0a0d0e;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  transition: var(--transition-smooth);
  padding-bottom: 4px;
  border-bottom: 1.5px solid rgba(10, 13, 14, 0.3);
  white-space: nowrap;
}
.amberBand a:hover {
  letter-spacing: 0.2em;
  border-bottom-color: #0a0d0e;
  padding-right: 4px;
}

/* ============ NARRATIVE & CONTENT ============ */
.narrative {
  grid-template-columns: 25% 65%;
  gap: 10%;
  padding: var(--space-2xl) 0;
  display: grid;
  align-items: start;
}
.narrative h2 {
  font-family: var(--font-display);
}
.narrative p {
  margin-bottom: 1.2em;
}
.narrative p:last-child {
  margin-bottom: 0;
}

/* ============ CAPABILITY GRID ============ */
.capabilityGrid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: var(--space-2xl);
  display: grid;
  position: relative;
}
.capabilityGrid::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 3px;
  height: 3px;
  background: var(--amber-bright);
  box-shadow: 0 0 10px var(--amber-glow);
}
.capabilityGrid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: clamp(220px, 24vw, 280px);
  padding: clamp(24px, 2.5vw, 36px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.capabilityGrid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--paper-card) 0%,
    var(--paper-warm) 100%
  );
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}
.capabilityGrid article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-bright), var(--amber));
  transition: width 0.5s var(--ease-premium);
  box-shadow: 0 0 10px var(--amber-glow);
}
.capabilityGrid article:hover {
  background: var(--paper-card);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  z-index: 3;
}
.capabilityGrid article:hover::before {
  opacity: 1;
}
.capabilityGrid article:hover::after {
  width: 100%;
}
.capabilityGrid span {
  color: var(--amber-bright);
  font-size: clamp(10px, 0.7vw, 11px);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}
.capabilityGrid h3 {
  margin-top: auto;
  margin-bottom: 10px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease-out);
}
.capabilityGrid article:hover h3 {
  color: var(--amber);
}
.capabilityGrid p {
  color: #64748b;
  font-size: clamp(12px, 0.85vw, 13.5px);
  line-height: 1.75;
  margin: 0;
}

/* ============ SUPPORT STEPS (Technology Page) ============ */
.supportSteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.supportSteps article {
  background: var(--paper);
  min-height: clamp(260px, 26vw, 320px);
  padding: clamp(24px, 2.5vw, 36px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.supportSteps article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-bright), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-premium);
  box-shadow: 0 0 12px var(--amber-glow);
  z-index: 2;
}
.supportSteps article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 70%,
    rgba(255, 176, 32, 0.04) 100%
  );
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}
.supportSteps article:hover {
  background: var(--paper-card);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}
.supportSteps article:hover::before {
  transform: scaleX(1);
}
.supportSteps article:hover::after {
  opacity: 1;
}
.supportSteps span {
  color: var(--amber-bright);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: clamp(10px, 0.7vw, 11px);
  letter-spacing: 0.08em;
}
.supportSteps h3 {
  margin-top: auto;
  margin-bottom: 12px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease-out);
}
.supportSteps article:hover h3 {
  color: var(--amber);
}
.supportSteps p {
  color: #64748b;
  font-size: clamp(12px, 0.85vw, 13.5px);
  line-height: 1.75;
  margin: 0;
}

/* ============ SPEC SECTION ============ */
.specSection {
  color: #fff;
  background: var(--coal);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.specSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(255, 176, 32, 0.05),
    transparent 55%
  );
  pointer-events: none;
}
.specSection h2 {
  color: #fff;
}
.specSection > .shell {
  grid-template-columns: 40% 60%;
  gap: clamp(32px, 5vw, 80px);
  display: grid;
  align-items: start;
}
.specTable {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.specTable div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  grid-template-columns: 1fr clamp(120px, 10vw, 150px) clamp(60px, 5vw, 88px);
  align-items: baseline;
  padding: clamp(14px, 1.6vw, 20px) 0;
  display: grid;
  transition: var(--transition-fast);
  position: relative;
}
.specTable div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--amber-bright);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-premium);
}
.specTable div:hover {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.02);
}
.specTable div:hover::before {
  transform: scaleY(1);
}
.specTable span {
  color: #94a3b8;
  font-size: clamp(12px, 0.85vw, 13.5px);
}
.specTable strong {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  color: #fff;
  font-family: var(--font-heading);
}
.specTable small {
  color: var(--amber-bright);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: clamp(9px, 0.6vw, 10px);
  text-align: right;
  display: block;
}

/* ============ CONTACT GRID ============ */
.contactGrid {
  grid-template-columns: 62% 30%;
  gap: 8%;
  padding: var(--space-xl) 0 var(--space-2xl);
  display: grid;
  align-items: start;
}
.contactGrid form {
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.8vw, 28px);
  display: grid;
}
.contactGrid label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(8px, 0.6vw, 9px);
  font-weight: 800;
  color: var(--text-dark-secondary);
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contactGrid label::after {
  content: "*";
  color: var(--amber);
}
.contactGrid input,
.contactGrid select,
.contactGrid textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid #c9ccca;
  outline: none;
  width: 100%;
  margin-top: 8px;
  padding: clamp(12px, 1.2vw, 16px) 0;
  font: clamp(13px, 0.95vw, 15px) var(--font-body);
  color: var(--text-dark);
  display: block;
  transition: var(--transition-smooth);
  border-radius: 0;
}
.contactGrid input::placeholder,
.contactGrid textarea::placeholder {
  color: #b0b5b2;
}
.contactGrid input:focus,
.contactGrid select:focus,
.contactGrid textarea:focus {
  border-bottom-color: var(--amber-bright);
  border-bottom-width: 2px;
  padding-bottom: calc(clamp(12px, 1.2vw, 16px) - 0.5px);
  box-shadow: 0 1px 0 0 var(--amber-bright);
}
.contactGrid textarea {
  resize: vertical;
  min-height: 120px;
}
.contactGrid .wide {
  grid-column: 1/-1;
}
.contactGrid button {
  justify-self: start;
}
.contactGrid aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 3vw, 48px);
  position: sticky;
  top: 120px;
}
.contactGrid aside h2 {
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 16px 0 14px;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}
.contactGrid aside p {
  margin-bottom: 14px;
}
.contactGrid aside a {
  display: block;
  transition: var(--transition-fast);
  margin-bottom: 8px;
}
.contactGrid aside a[href^="tel:"] {
  color: var(--amber);
  font-weight: 700;
  font-size: clamp(16px, 1.3vw, 20px);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.contactGrid aside a[href^="mailto:"] {
  color: var(--text-dark-secondary);
  font-weight: 500;
  font-size: clamp(13px, 0.95vw, 14px);
  word-break: break-all;
}
.contactGrid aside a[href^="mailto:"]:hover {
  color: var(--amber);
}
.contactGrid aside > div:last-of-type {
  margin-top: clamp(20px, 2.5vw, 36px);
  border-top: 1px solid var(--line);
  padding-top: clamp(16px, 2vw, 24px);
}
.contactGrid aside > div:last-of-type b {
  font-size: clamp(8px, 0.6vw, 9px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-heading);
}
.contactGrid aside > div:last-of-type p {
  margin-top: 8px;
  font-size: clamp(12px, 0.85vw, 13px);
  color: var(--text-dark-secondary);
}

/* ============ DOWNLOADS LIST ============ */
.downloadList {
  padding: clamp(64px, 8vw, 100px) 0 var(--space-2xl);
}
.downloadList > .sectionNo {
  margin-bottom: clamp(24px, 3vw, 36px);
  display: block;
}
.downloadList > div {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 6% 70% 24%;
  align-items: center;
  padding: clamp(24px, 3vw, 36px) 0;
  display: grid;
  gap: 16px;
  transition: var(--transition-smooth);
  position: relative;
}
.downloadList > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  transition: height 0.5s var(--ease-premium);
  border-radius: 0 2px 2px 0;
}
.downloadList > div:hover {
  background: var(--paper-card);
  padding-left: 20px;
  padding-right: 4px;
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--amber-bright);
}
.downloadList > div:hover::before {
  height: 45%;
}
.downloadList > div:first-of-type {
  border-top: 1px solid var(--line);
}
.downloadList > div > span {
  color: var(--amber-bright);
  font-size: clamp(10px, 0.7vw, 11px);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}
.downloadList h3 {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease-out);
}
.downloadList > div:hover h3 {
  color: var(--amber);
}
.downloadList p {
  color: #64748b;
  font-size: clamp(12px, 0.85vw, 13.5px);
  margin: 6px 0 0;
  line-height: 1.7;
}
.downloadList a {
  text-align: right;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(9px, 0.65vw, 10px);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 176, 32, 0.28);
  border-radius: 2px;
  background: rgba(255, 176, 32, 0.05);
  transition: var(--transition-smooth);
  white-space: nowrap;
}
.downloadList a:hover {
  background: linear-gradient(135deg, #ffb020 0%, #e88d00 100%);
  color: #0a0d0e;
  border-color: transparent;
  box-shadow: var(--shadow-amber);
  transform: translateY(-2px);
}

/* ============ NEWS GRID ============ */
.newsGrid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.5vw, 36px);
}
.newsGrid > div {
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  isolation: isolate;
}
.newsGrid > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(255, 176, 32, 0.04) 100%
  );
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}
.newsGrid > div:hover {
  transform: translateY(-8px);
}
.newsGrid > div:hover::after {
  opacity: 1;
}
.newsVisual {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #171b1d 0%, #0a0d0e 100%);
  margin-bottom: clamp(16px, 1.8vw, 22px);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: var(--transition-smooth);
}
.newsVisual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 176, 32, 0.18),
    transparent 55%
  );
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}
.newsGrid > div:hover .newsVisual {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.newsGrid > div:hover .newsVisual::before {
  opacity: 1;
}
.newsVisual.n1 {
  background: linear-gradient(135deg, #1c2022 0%, #0a0d0e 100%);
  background-image:
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 176, 32, 0.12),
      transparent 50%
    ),
    linear-gradient(135deg, #1c2022 0%, #0a0d0e 100%);
}
.newsVisual.n2 {
  background-image:
    radial-gradient(
      circle at 20% 70%,
      rgba(255, 176, 32, 0.1),
      transparent 50%
    ),
    linear-gradient(135deg, #171b1d 0%, #0e1113 100%);
}
.newsVisual > span {
  position: absolute;
  bottom: clamp(14px, 1.5vw, 20px);
  left: clamp(14px, 1.5vw, 20px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(8px, 0.6vw, 9px);
  font-weight: 700;
  color: var(--amber-bright);
  font-family: var(--font-heading);
  padding: 6px 12px;
  border: 1px solid rgba(255, 176, 32, 0.3);
  background: rgba(255, 176, 32, 0.08);
  backdrop-filter: blur(8px);
}
.newsGrid > div > small {
  font-size: clamp(10px, 0.7vw, 11px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-heading);
}
.newsGrid h2 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease-out);
  color: var(--text-dark);
}
.newsGrid > div:hover h2 {
  color: var(--amber);
}
.newsGrid a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(9px, 0.65vw, 10px);
  transition: var(--transition-fast);
  align-self: flex-start;
}
.newsGrid a:hover {
  transform: translate(2px, -2px);
  letter-spacing: 0.16em;
}

/* ============ CAREER / JOB CARDS ============ */
.jobCard {
  background: var(--paper-warm);
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.jobCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-premium);
}
.jobCard:hover {
  background: var(--paper-card);
  border-color: rgba(255, 176, 32, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}
.jobCard:hover::before {
  transform: scaleY(1);
}
.jobCard > span:first-child {
  color: var(--amber);
  font-size: clamp(9px, 0.65vw, 10px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.jobCard h3 {
  font-size: clamp(18px, 1.3vw, 22px);
  margin: 8px 0;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.jobCard p {
  font-size: clamp(12px, 0.85vw, 13.5px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ============ FILTER BAR (Products) ============ */
.filterBar {
  background: var(--paper-warm);
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.filterBar:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}
.filterBar label {
  font-size: clamp(8px, 0.6vw, 9px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.filterBar input,
.filterBar select {
  background: var(--paper-card);
  border: 1px solid var(--line);
  padding: clamp(10px, 1vw, 12px) clamp(12px, 1.2vw, 14px);
  font-size: clamp(12px, 0.85vw, 13px);
  border-radius: 2px;
  width: 100%;
  color: var(--text-dark);
  transition: var(--transition-fast);
}
.filterBar input:focus,
.filterBar select:focus {
  outline: none;
  border-color: var(--amber-bright);
  box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.1);
}

/* ============ PAGINATION ============ */
.pagination {
  margin-top: clamp(32px, 4vw, 48px);
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination .page-link {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper-card);
  color: var(--text-dark-secondary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
  transition: var(--transition-fast);
}
.pagination .page-link:hover {
  border-color: var(--amber-bright);
  color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 176, 32, 0.12);
}
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #ffb020 0%, #e88d00 100%);
  border-color: transparent;
  color: #0a0d0e;
  font-weight: 700;
  box-shadow: var(--shadow-amber);
}
.pagination .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============ EMPTY STATES ============ */
.emptyState {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 48px);
  text-align: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
}
.emptyState:hover {
  box-shadow: var(--shadow-md);
}
.emptyState h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ============ MODALS ============ */
.modal-content {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-card);
  box-shadow: var(--shadow-xl);
}
.modal-header {
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 28px);
  border-bottom: 2px solid var(--amber-bright);
  background: linear-gradient(
    135deg,
    var(--paper-warm) 0%,
    var(--paper-card) 100%
  );
}
.modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  font-size: clamp(16px, 1.2vw, 19px);
}
.modal-body {
  padding: clamp(20px, 2.4vw, 32px);
}
.modal select,
.modal .form-control {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 13px;
  background: var(--paper);
  transition: var(--transition-fast);
}
.modal select:focus,
.modal .form-control:focus {
  border-color: var(--amber-bright);
  box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.1);
}

/* ============ PRODUCT INTRO SECTION ============ */
.productIntro {
  grid-template-columns: 60% 35%;
  gap: 5%;
  padding: var(--space-2xl) 0 clamp(60px, 8vw, 110px);
  display: grid;
  align-items: start;
}
.productIntro h2 {
  font-family: var(--font-display);
}
.productIntro > div:first-child p {
  margin-bottom: 1em;
}
.productIntro > div:first-child p:last-child {
  margin-bottom: 0;
}
.productIntro .spec-highlight-card {
  background: var(--paper-warm);
  padding: clamp(24px, 2.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: sticky;
  top: 120px;
  transition: var(--transition-smooth);
}
.productIntro .spec-highlight-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 176, 32, 0.2);
}
.productIntro .spec-highlight-card > b:first-child {
  display: block;
  font-size: clamp(9px, 0.65vw, 10px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: clamp(14px, 1.6vw, 18px);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 176, 32, 0.2);
  font-family: var(--font-heading);
  font-weight: 700;
}
.productIntro .spec-row {
  margin-bottom: clamp(10px, 1.2vw, 14px);
  font-size: clamp(12px, 0.85vw, 14px);
  color: var(--text-dark-secondary);
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.6;
}
.productIntro .spec-row strong {
  font-weight: 600;
  color: var(--text-dark);
  min-width: 120px;
  flex-shrink: 0;
}
.productIntro .spec-highlight-card .amberButton {
  justify-content: center;
  margin-top: clamp(14px, 1.6vw, 20px);
  padding: clamp(14px, 1.4vw, 17px) 16px;
  width: 100%;
}

/* ============ FOOTER ============ */
footer {
  color: #fff;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(255, 176, 32, 0.05),
      transparent 50%
    ),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size:
    100%,
    100% 48px;
  pointer-events: none;
}
.footerLead {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(64px, 10vw, 120px) 0;
  position: relative;
  isolation: isolate;
}
.footerLead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(320px, 40vw, 560px);
  height: clamp(320px, 40vw, 560px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 176, 32, 0.06),
    transparent 70%
  );
  z-index: -1;
}
.footerLead .micro {
  margin-bottom: clamp(12px, 1.6vw, 18px);
  display: inline-flex;
  color: var(--muted);
}
.footerLead .micro::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--amber-bright));
  margin-right: 14px;
  align-self: center;
}
.footerLead h2 {
  font-size: clamp(36px, 5.2vw, 72px);
  color: #fff;
  margin-bottom: clamp(24px, 3vw, 36px);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.footerLead h2 em {
  color: var(--amber-bright);
}
.footerLead .amberButton {
  padding: clamp(16px, 1.6vw, 20px) clamp(32px, 3.5vw, 44px);
}

.footerGrid {
  grid-template-columns: 1.8fr 1.4fr 1fr 1.4fr;
  gap: clamp(30px, 4vw, 50px);
  padding: clamp(60px, 7vw, 80px) 0;
  display: grid;
  position: relative;
}
.footerIdentity p {
  color: #8a8f8c;
  max-width: 320px;
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.8;
}
.footerLogo {
  margin-bottom: clamp(20px, 2.5vw, 28px);
  filter: brightness(0) invert(1);
  max-width: clamp(140px, 15vw, 180px);
  height: auto;
  transition: var(--transition-smooth);
}
.footerLogo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 15px var(--amber-glow-strong));
  transform: scale(1.02);
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footerGrid .social-icons a:hover {
  background: var(--amber-bright);
  color: #111;
  transform: translateY(-4px);
  border-color: var(--amber-bright);
  box-shadow: 0 4px 15px var(--amber-glow);
  padding: 0;
}
.footerGrid .social-icons a::before {
  display: none;
}
.footerGrid > div:not(.footerIdentity) {
  color: #a0a5a2;
  flex-direction: column;
  gap: 12px;
  font-size: clamp(13px, 0.85vw, 14px);
  display: flex;
}
.footerGrid b {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: clamp(12px, 1.5vw, 18px);
  font-size: clamp(10px, 0.7vw, 11px);
  font-weight: 700;
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 12px;
}
.footerGrid b::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--amber-bright);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--amber-glow);
}
.footerGrid a {
  transition: var(--transition-fast);
  padding: 4px 0;
  position: relative;
  padding-left: 0;
}
.footerGrid a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--amber-bright);
  margin-right: 0;
  vertical-align: middle;
  transition:
    width 0.3s var(--ease-out),
    margin-right 0.3s var(--ease-out);
}
.footerGrid a:hover {
  color: var(--amber-bright);
  padding-left: 0;
}
.footerGrid a:hover::before {
  width: 16px;
  margin-right: 10px;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-style: normal;
  line-height: 1.6;
}
.footer-contact-info span {
  display: block;
}
.footer-contact-info a {
  display: inline-block;
  padding: 0;
}
.footer-contact-info a:hover {
  color: var(--amber-bright);
}
.footer-contact-info a::before {
  display: none;
}

.legal {
  color: #7a807d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: space-between;
  padding: clamp(24px, 3vw, 32px) 0 clamp(32px, 4vw, 48px);
  font-size: clamp(11px, 0.75vw, 13px);
  font-weight: 500;
  display: flex;
  gap: 20px;
  letter-spacing: 0.04em;
  align-items: center;
  flex-wrap: wrap;
}
.legal-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.legal a {
  color: #7a807d;
  transition: color 0.3s ease;
}
.legal a:hover {
  color: var(--amber-bright);
}

/* ============ REVEAL ANIMATION CLASSES ============ */
.reveal-up,
.reveal-right,
.reveal-left,
.reveal-scale {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-premium),
    transform 0.9s var(--ease-premium);
  will-change: opacity, transform;
}
.reveal-up {
  transform: translateY(40px);
}
.reveal-right {
  transform: translateX(-40px);
}
.reveal-left {
  transform: translateX(40px);
}
.reveal-scale {
  transform: scale(0.96);
}
.reveal-up.is-visible,
.reveal-right.is-visible,
.reveal-left.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease-premium),
    transform 0.8s var(--ease-premium);
}
.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger-children.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger-children.is-visible > *:nth-child(3) {
  transition-delay: 0.19s;
}
.stagger-children.is-visible > *:nth-child(4) {
  transition-delay: 0.26s;
}
.stagger-children.is-visible > *:nth-child(5) {
  transition-delay: 0.33s;
}
.stagger-children.is-visible > *:nth-child(6) {
  transition-delay: 0.4s;
}
.stagger-children.is-visible > *:nth-child(7) {
  transition-delay: 0.47s;
}
.stagger-children.is-visible > *:nth-child(8) {
  transition-delay: 0.54s;
}
.stagger-children.is-visible > *:nth-child(9) {
  transition-delay: 0.61s;
}
.stagger-children.is-visible > *:nth-child(10) {
  transition-delay: 0.68s;
}

/* ============ RESPONSIVE ADJUSTMENTS ============ */
@media (max-width: 1199px) {
  .supportSteps,
  .newsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .applicationDetails article {
    grid-template-columns: clamp(48px, 5vw, 72px) 1fr;
  }
  .applicationDetails article > a {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px;
  }
  .footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footerIdentity {
    grid-column: 1 / -1;
  }
  .productIntro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .productIntro .spec-highlight-card {
    position: static;
  }
}

@media (max-width: 991px) {
  .capabilityGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contactGrid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contactGrid aside {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 40px;
    position: static;
  }
  .engineeringSplit {
    grid-template-columns: 1fr;
  }
  .engineeringImage {
    min-height: 380px;
  }
  .siteHeader nav {
    display: none;
  }
  .global-search-wrapper {
    display: none;
  }
  .headerCta {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .shell,
  .siteHeader {
    width: calc(100% - clamp(20px, 5vw, 32px));
  }
  .siteHeader {
    height: clamp(68px, 10vw, 78px);
    padding-inline: clamp(12px, 3vw, 16px);
    border-radius: 0 0 10px 10px;
  }
  .homeHero {
    min-height: auto;
  }
  .homeHeroGrid,
  .innerHeroGrid {
    grid-template-columns: 1fr;
    height: auto;
    align-items: start;
  }
  .homeCopy {
    padding-top: clamp(32px, 6vw, 52px);
  }
  .homeCopy h1,
  .innerHero h1 {
    font-size: clamp(38px, 10.5vw, 54px);
  }
  .homeCopy > p {
    width: auto;
  }
  .heroMachine,
  .innerMachine {
    min-height: clamp(280px, 50vw, 380px);
    margin-top: clamp(8px, 2vw, 24px);
  }
  .hero-sun {
    width: clamp(260px, 75vw, 400px);
    height: clamp(260px, 75vw, 400px);
  }
  .heroMachine > img,
  .innerMachine > img {
    width: 100%;
    max-width: 100%;
  }
  .heroIndex {
    display: none;
  }
  .vertical {
    display: none;
  }
  .statement,
  .sectionIntro,
  .applicationPreview,
  .amberBand > .shell,
  .narrative,
  .specSection > .shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .statement > div:last-child {
    padding-top: 0;
  }
  .statement h2,
  .sectionIntro h2,
  .engineeringCopy h2,
  .applicationPreview h2,
  .amberBand h2,
  .footerLead h2,
  .narrative h2,
  .specSection h2 {
    font-size: clamp(28px, 7.5vw, 42px);
  }
  .familyGrid,
  .familyGrid.compact,
  .modelGrid {
    grid-template-columns: 1fr;
  }
  .familyCard,
  .modelGrid > a,
  .modelGrid > div {
    min-height: 340px;
  }
  .supportSteps,
  .newsGrid {
    grid-template-columns: 1fr;
  }
  .engineeringImage {
    min-height: 320px;
  }
  .engineeringCopy {
    padding: 48px 20px;
  }
  .footerLead h2 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .legal {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }
  .capabilityGrid {
    grid-template-columns: 1fr 1fr;
  }
  .applicationDetails article {
    grid-template-columns: clamp(40px, 10vw, 56px) 1fr;
    padding: 28px 0;
  }
  .footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .amberBand > .shell {
    gap: 20px;
  }
  .amberBand a {
    justify-content: flex-start;
    text-align: left;
    display: inline-flex;
  }
  .contactGrid form {
    grid-template-columns: 1fr;
  }
  .downloadList > div {
    grid-template-columns: 10% 1fr;
    gap: 12px 16px;
  }
  .downloadList a {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
  }
}

@media (max-width: 479px) {
  .capabilityGrid {
    grid-template-columns: 1fr;
  }
  .footerGrid {
    grid-template-columns: 1fr;
  }
  .heroActions {
    gap: 20px;
  }
  .headerCta {
    display: none !important;
  }
  .siteHeader .logo img {
    width: clamp(90px, 26vw, 110px);
  }
}

/* ============ ULTRA-PREMIUM PRELOADER V2 ============ */
.premium-preloader-v2 {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-panel {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100vh;
  background-color: var(--obsidian);
  z-index: 1;
}
.preloader-panel.left-panel {
  left: 0;
}
.preloader-panel.right-panel {
  right: 0;
}
.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.preloader-logo-wrap img {
  width: clamp(140px, 15vw, 180px);
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}
.preloader-counter {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  letter-spacing: -0.02em;
}
.preloader-counter .pct {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 400;
  color: var(--amber-bright);
  margin-left: 4px;
}
.preloader-progress-wrap {
  width: clamp(200px, 30vw, 300px);
  height: 2px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.preloader-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--amber-bright);
}

/* Reference Design Custom Product Card */
.custom-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
@media (min-width: 992px) {
    .custom-model-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.custom-product-card {
    display: flex;
    flex-direction: column;
    background-color: #4B4B4B;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #5A5A5A;
    opacity: 1 !important;
    visibility: visible !important;
}

.custom-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.custom-product-card .card-img-wrapper {
    background-color: #FFFFFF;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    margin: 10px 10px 0 10px;
    border-radius: 8px;
}

.custom-product-card .card-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.custom-product-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.custom-product-card .card-content-wrapper {
    padding: 15px 20px 20px;
    position: relative;
    background-color: transparent;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.custom-product-card .product-title {
    color: #FFC107;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    font-family: var(--font-display, inherit);
    letter-spacing: 0.02em;
}

.custom-product-card .product-desc {
    color: #E0E0E0;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    padding-right: 20px;
}

.custom-product-card .card-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 8px;
    background-color: #FFC107;
    border-radius: 4px;
}

/* ==========================================================================
   FOUNDER & LEADERSHIP SECTION STYLES
   ========================================================================== */
.founderSection {
  background: var(--coal, #0e1113);
  color: var(--text-light, #f1f5f9);
  padding: clamp(60px, 7vw, 110px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: clamp(40px, 6vw, 80px) 0;
}

.founderSection::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.founderGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 992px) {
  .founderGrid {
    grid-template-columns: 0.88fr 1.12fr;
  }
}

.founderImageWrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #14181a;
  align-self: start;
}

.founderImageWrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.founderImageWrap:hover img {
  transform: scale(1.03);
}

.founderImageOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(7, 9, 10, 0.88) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
  pointer-events: none;
}

.founderBadge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(14, 17, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 176, 32, 0.35);
  color: var(--amber-bright, #ffb020);
  font-family: var(--font-heading, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 2;
}

.founderBadge i {
  font-size: 8px;
  color: var(--amber-bright, #ffb020);
}

.founderCaption h4 {
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  margin: 0 0 4px 0;
  letter-spacing: -0.02em;
  font-family: var(--font-heading, sans-serif);
}

.founderCaption p {
  color: var(--amber-bright, #ffb020);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.founderCopy .eyebrow {
  color: var(--amber-bright, #ffb020);
}

.founderCopy h2 {
  color: #ffffff;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  margin: 16px 0 24px 0;
  font-family: var(--font-heading, sans-serif);
}

.founderCopy h2 em {
  color: var(--amber-bright, #ffb020);
  font-style: italic;
  font-family: var(--font-serif, Georgia, serif);
}

.founderQuoteBox {
  background: rgba(255, 255, 255, 0.035);
  border-left: 4px solid var(--amber-bright, #ffb020);
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.founderQuoteBox p {
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.founderDescription p {
  color: #b8bdba;
  font-size: clamp(14px, 0.95vw, 15px);
  line-height: 1.8;
  margin-bottom: 16px;
}

.founderDescription p strong {
  color: #ffffff;
}

.founderPillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.pillarItem {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pillarItem:hover {
  border-color: rgba(255, 176, 32, 0.4);
  background: rgba(255, 176, 32, 0.06);
  transform: translateY(-3px);
}

.pillarItem h5 {
  color: var(--amber-bright, #ffb020);
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading, sans-serif);
}

.pillarItem h5 i {
  font-size: 12px;
}

.pillarItem p {
  color: #949996;
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
}

.founderResultCard {
  background: linear-gradient(135deg, rgba(232, 141, 0, 0.15) 0%, rgba(14, 17, 19, 0.7) 100%);
  border: 1px solid rgba(255, 176, 32, 0.4);
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.founderResultCard .resultIcon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--amber-bright, #ffb020);
  color: #0e1113;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 176, 32, 0.4);
}

.founderResultCard p {
  color: #ffffff;
  font-size: clamp(13.5px, 0.95vw, 15px);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

.founderResultCard p strong {
  color: var(--amber-bright, #ffb020);
}

/* Fix text colors for principle blocks inside dark sections */
.darkSection .principle strong {
  color: #f1f5f9;
}
.darkSection .principle span {
  color: #94a3b8;
}
