:root {
  --ink: #101820;
  --muted: #536170;
  --steel: #f4f6f8;
  --steel-strong: #d7e0e8;
  --blue: #0a4c7d;
  --blue-dark: #07304f;
  --gold: #f3b700;
  --neon: #ffe34d;
  --heat: #bd5526;
  --green: #496b5a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.12);
  --max: 1180px;
  --carousel-duration: 110s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.pipeline-locked > *:not(.pipeline-auth-screen) {
  display: none !important;
}

.pipeline-auth-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(8, 24, 38, 0.9), rgba(11, 79, 131, 0.74)),
    url("assets/images/continuous-casting.webp") center / cover;
}

.pipeline-auth-card {
  width: min(100%, 460px);
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.pipeline-auth-card img {
  width: 190px;
  height: auto;
}

.pipeline-auth-card h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.pipeline-auth-card p {
  margin: 0;
  color: var(--muted);
}

.pipeline-auth-card label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.pipeline-auth-card input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--steel-strong);
  border-radius: 6px;
  font: inherit;
}

.pipeline-auth-error {
  min-height: 22px;
  color: #b42318 !important;
  font-weight: 800;
}

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

.page-anim-ready .site-header {
  opacity: 0;
  transform: translateY(-12px);
}

.page-is-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease-out,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-anim-ready .hero-content,
.page-anim-ready .page-hero-copy,
.page-anim-ready .page-hero img {
  opacity: 0;
  transform: translateY(18px);
}

.page-anim-ready .hero-image {
  transform: scale(1.018);
}

.page-is-loaded .hero-content,
.page-is-loaded .page-hero-copy,
.page-is-loaded .page-hero img {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 680ms ease-out,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-is-loaded .page-hero img {
  transition-delay: 110ms;
}

.page-is-loaded .hero-image {
  transform: scale(1);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease-out var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-ready .scroll-reveal.scroll-reveal-media {
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 560ms ease-out var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-ready .scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .scroll-reveal.scroll-reveal-media.is-revealed {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-reveal,
  .scroll-reveal-media,
  .site-header,
  .hero-content,
  .hero-image,
  .page-hero-copy,
  .page-hero img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 224, 232, 0.9);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 148px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #263340;
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-nav a,
.nav-item > a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.nav-item:hover > a,
.nav-item:focus-within > a {
  color: var(--blue);
  border-color: var(--gold);
}

.primary-nav a[aria-current="page"] {
  color: var(--blue);
  border-color: var(--gold);
}

.nav-item {
  position: relative;
  display: grid;
}

.subnav {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 12;
  width: 260px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.engineering-subnav {
  width: min(680px, calc(100vw - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.engineering-subnav .subnav-feature-link {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 520px;
  text-align: center;
  font-weight: 900;
}

.subnav-group {
  display: grid;
  align-content: start;
  gap: 2px;
}

.subnav-heading {
  padding: 8px 10px 4px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-item:hover > .subnav,
.nav-item:focus-within > .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.subnav a {
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  color: #263340;
}

.subnav a:hover,
.subnav a:focus-visible {
  border-color: transparent;
  background: var(--steel);
}

.subnav a[aria-current="page"] {
  border-color: transparent;
  background: rgba(10, 76, 125, 0.08);
  color: var(--blue);
}

.pipeline-subnav,
.resources-subnav,
.other-industry-subnav {
  width: 230px;
}

.subnav-item {
  position: relative;
}

.subnav-item > a {
  display: block;
}

.has-nested-subnav > a::after {
  content: "›";
  float: right;
  margin-left: 12px;
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
}

.nested-subnav {
  top: -10px;
  left: calc(100% + 8px);
  width: 170px;
  transform: translate(6px, 0);
}

.nested-subnav::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: -10px;
  width: 10px;
  height: auto;
}

.subnav-item:hover > .nested-subnav,
.subnav-item:focus-within > .nested-subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(22, 150, 255, 0.7);
  background: #15283b;
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.3),
    0 0 24px rgba(22, 150, 255, 0.16),
    0 8px 20px rgba(8, 42, 68, 0.18);
}

.button.primary {
  background: var(--gold);
  color: #1d1a0b;
  box-shadow: 0 0 12px rgba(246, 198, 40, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffd64a;
  box-shadow:
    0 0 12px rgba(246, 198, 40, 0.42),
    0 0 24px rgba(246, 198, 40, 0.22),
    0 10px 24px rgba(246, 198, 40, 0.16);
}

.hero-feature-cta {
  box-shadow: 0 0 0 rgba(246, 198, 40, 0);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hero-feature-cta:hover,
.hero-feature-cta:focus-visible {
  background: #ffd64a;
  box-shadow:
    0 0 12px rgba(246, 198, 40, 0.42),
    0 0 24px rgba(246, 198, 40, 0.22),
    0 10px 24px rgba(246, 198, 40, 0.16);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:not(.text-link):hover,
.button.secondary:not(.text-link):focus-visible {
  border-color: rgba(22, 150, 255, 0.76);
  background: rgba(22, 150, 255, 0.12);
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.34),
    0 0 24px rgba(22, 150, 255, 0.18),
    0 10px 24px rgba(8, 42, 68, 0.24);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--steel-strong);
  border-radius: 6px;
  background: var(--white);
  place-items: center;
  gap: 4px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(22, 150, 255, 0.7);
  box-shadow:
    0 0 10px rgba(22, 150, 255, 0.28),
    0 0 20px rgba(22, 150, 255, 0.14);
  transform: translateY(-1px);
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 76svh;
  max-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 16, 28, 0.88) 0%, rgba(4, 16, 28, 0.7) 43%, rgba(4, 16, 28, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 16, 28, 0.86) 0%, rgba(4, 16, 28, 0.08) 55%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 138px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.pipeline-band .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-feature-cta {
  box-shadow: 0 14px 34px rgba(243, 183, 0, 0.28);
}

.hero-stats {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(11, 24, 35, 0.88);
  color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(22, 150, 255, 0.2),
    0 0 8px rgba(22, 150, 255, 0.14),
    0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  min-height: 96px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.48rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-stats .stat-kicker {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compact-hero {
  min-height: 70svh;
}

.compact-hero .hero-content {
  padding-bottom: 188px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 56%, #fff7df 100%);
  border-bottom: 1px solid var(--steel-strong);
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero h1.eyebrow {
  margin-bottom: 20px;
  color: var(--blue);
  max-width: 820px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero-subtitle {
  margin: -6px 0 16px;
  color: var(--blue-dark);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 850;
  line-height: 1.25;
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero img[src$=".png"] {
  object-fit: contain;
  padding: 22px;
  background: var(--white);
}

.page-hero img[src$="large-machining-lathe.png"] {
  object-fit: cover;
  padding: 0;
  background: transparent;
}

.page-hero img[src$="engineering-cad-fea-workstation.png"] {
  object-fit: cover;
  padding: 0;
  background: transparent;
}

.page-hero img[src$="reverse-engineering-workshop-inspection.png"] {
  object-fit: cover;
  object-position: center 38%;
  padding: 0;
  background: transparent;
}

.page-qhse .page-hero img {
  object-fit: cover;
  object-position: 43% center;
  padding: 0;
  background: transparent;
}

.page-heat-treatment .page-hero img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
}

.page-quality-inspection-technology .page-hero img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
}

.page-deep-hole-drilling .page-hero img {
  object-fit: cover;
  object-position: center 54%;
  padding: 0;
  background: transparent;
}

.page-hard-facing .page-hero img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
}

.page-company .page-hero img {
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
}

.page-contact .page-hero img {
  width: 100%;
  max-height: 430px;
  justify-self: end;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
}

.page-mechanics .page-hero {
  grid-template-columns: minmax(0, 0.62fr) minmax(440px, 1fr);
  gap: 30px;
  align-items: end;
  padding-top: 46px;
  padding-bottom: 52px;
}

.page-mechanics .page-hero-copy {
  align-self: center;
}

.page-mechanics .page-hero h1.eyebrow {
  margin-bottom: 14px;
}

.page-mechanics .page-hero img {
  width: 100%;
  min-height: 300px;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
}

.page-links {
  position: sticky;
  top: 76px;
  z-index: 8;
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 18px;
  margin: 0 auto;
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.page-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 112px;
  padding: 10px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  transition: color 160ms ease, transform 160ms ease;
}

.page-link-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  padding: 16px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 10px 28px rgba(10, 76, 125, 0.16);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.page-links a:hover,
.page-links a:focus-visible {
  color: var(--gold);
  transform: translateY(-2px);
}

.page-links a:hover .page-link-icon,
.page-links a:focus-visible .page-link-icon {
  background: var(--gold);
  box-shadow: 0 0 22px rgba(246, 198, 40, 0.44);
  transform: scale(1.08);
}

.page-mechanics .page-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 10px 0;
  border-top: 1px solid var(--steel-strong);
  border-bottom: 1px solid var(--steel-strong);
  background: rgba(255, 255, 255, 0.96);
}

.page-mechanics .page-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 10px 14px;
  border-right: 1px solid #e1e8ee;
  border-radius: 0;
  background: transparent;
  color: var(--blue-dark);
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.page-mechanics .page-links a span {
  line-height: 1.25;
}

.page-mechanics .page-links a:nth-child(3n) {
  border-right: 0;
}

.page-mechanics .page-links a:nth-child(-n + 3) {
  border-bottom: 1px solid #e1e8ee;
}

.page-mechanics .page-links .page-link-icon {
  order: 2;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  box-shadow: none;
  stroke-width: 2.4;
}

.page-mechanics .page-links a:hover,
.page-mechanics .page-links a:focus-visible {
  color: var(--blue);
  background: rgba(36, 150, 255, 0.055);
  box-shadow: inset 0 -2px 0 rgba(36, 150, 255, 0.82);
  transform: none;
}

.page-mechanics .page-links a:hover .page-link-icon,
.page-mechanics .page-links a:focus-visible .page-link-icon {
  background: transparent;
  box-shadow: none;
  transform: translateX(3px);
}

.section,
.band {
  padding: 76px 24px;
}

.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

#sandvik-technology .section-heading .eyebrow {
  color: var(--ink);
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: none;
}

.section-body {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.page-section {
  background: var(--white);
}

main > .page-section:nth-of-type(even) {
  background: #f7f9fb;
}

.lead {
  max-width: 840px;
  color: var(--muted);
  font-size: 1.08rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.two-column p {
  color: var(--muted);
  font-size: 1.04rem;
}

.company-history-grid article {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.company-history-grid article::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.company-history-grid article:hover,
.company-history-grid article:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.24),
    0 0 24px rgba(22, 150, 255, 0.12),
    0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.company-history-grid article:hover::before,
.company-history-grid article:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.company-history-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.company-history-grid h3 {
  margin: 0 0 10px;
}

.company-history-grid p {
  margin: 0;
}

.company-profile-panels {
  display: grid;
  gap: 12px;
}

.company-profile-panels article {
  padding: 30px 34px;
  border-left: 3px solid var(--neon);
  background: #f5f6f7;
  box-shadow:
    -5px 0 14px rgba(22, 150, 255, 0.14),
    0 12px 30px rgba(10, 76, 125, 0.16);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.company-profile-panels article:hover {
  background: #f8fafc;
  box-shadow:
    -6px 0 20px rgba(22, 150, 255, 0.28),
    0 16px 38px rgba(10, 76, 125, 0.22);
  transform: translateY(-2px);
}

.company-profile-panels h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.company-profile-panels p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.link-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.link-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 230px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
  isolation: isolate;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.link-card:hover::before,
.link-card:focus-visible::before {
  opacity: 1;
  transform: scale(1.02);
}

.link-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid var(--steel-strong);
  background: var(--steel);
}

.link-card img[src$=".png"] {
  object-fit: contain;
  padding: 18px;
}

.link-card img[src$="industries-served-metallurgy.png"],
.link-card img[src$="continuous-casting-line-rfq.png"],
.link-card img[src$="mechanical-services-inspection.png"],
.link-card img[src$="metallurgy-equipment-casting-rolls.png"],
.link-card img[src$="technology-capabilities-workshop.png"],
.link-card img[src$="home-research-development.png"],
.link-card img[src$="large-machining-lathe.png"],
.link-card img[src$="five-axis-cnc-milling.png"],
.link-card img[src$="deep-hole-drilling-machine.png"],
.link-card img[src$="engineering-cad-fea-workstation.png"],
.link-card img[src$="engineering-design-workshop.png"],
.link-card img[src$="quality-inspection-hero.png"],
.link-card img[src$="case-studies-large-valve.png"],
.link-card img[src$="reverse-engineering-workshop-inspection.png"] {
  object-fit: cover;
  padding: 0;
}

.link-card img[src$="case-studies-large-valve.png"],
.link-card img[src$="quality-inspection-hero.png"] {
  object-position: center;
}

.link-card img[src$="reverse-engineering-workshop-inspection.png"] {
  object-position: center 38%;
}

.page-qhse .link-card img[src$="crane-wheels-60hrc.jpg"] {
  object-position: center 18%;
}

.page-qhse .link-card img[src$="quality-inspection-hero.png"] {
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.link-card span,
.link-card strong,
.link-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.link-card span {
  margin-top: 20px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-card strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.2;
}

.link-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.static-card {
  cursor: default;
}

.buyer-card-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-index .buyer-card-grid .buyer-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.buyer-card {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: #eef6ff;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.07);
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.buyer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(245, 250, 255, 0.82), rgba(245, 250, 255, 0.62)),
    var(--buyer-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  filter: saturate(0.94);
  transition: opacity 180ms ease, transform 220ms ease;
}

.buyer-card::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 45%, rgba(22, 150, 255, 0.28), transparent 64%);
  opacity: 0;
  filter: blur(16px);
  transition: opacity 180ms ease;
}

.buyer-card:hover,
.buyer-card:focus-visible {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 18px 46px rgba(22, 100, 180, 0.16);
  transform: translateY(-2px);
}

.buyer-card:hover::before,
.buyer-card:focus-visible::before {
  opacity: 0.8;
  transform: scale(1.03);
}

.buyer-card:hover::after,
.buyer-card:focus-visible::after {
  opacity: 1;
}

.buyer-icon {
  width: 100px;
  height: 100px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(10, 76, 125, 0.2);
}

.buyer-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.buyer-copy {
  display: grid;
  gap: 8px;
}

.buyer-kicker {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-card strong {
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.buyer-text {
  max-width: 560px;
  color: #374656;
  font-size: 1.05rem;
  line-height: 1.55;
}

.area-tiles {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.area-tile {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
  color: var(--blue-dark);
  isolation: isolate;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.area-tile::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.area-tile-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  clip-path: none;
  background: var(--steel);
  transition: filter 180ms ease;
}

.area-tile-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin-left: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.page-index .area-tile img[src$="home-metallurgy-equipment.png"] {
  object-position: center 52%;
}

.area-tile span:not(.area-tile-image) {
  margin: 22px 24px 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.area-tile strong {
  margin: 6px 24px 0;
  color: var(--blue);
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1.1;
}

.area-tile p {
  margin: 8px 24px 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.area-tile:hover,
.area-tile:focus-visible {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.area-tile:hover::before,
.area-tile:focus-visible::before {
  opacity: 1;
  transform: scale(1.02);
}

.area-tile:hover img,
.area-tile:focus-visible img {
  transform: scale(1.04);
}

.check-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li::marker {
  color: var(--blue);
}

.page-privacy-policy .eyebrow,
.page-cookies-policy .eyebrow,
.page-privacy-policy .check-list li::marker,
.page-cookies-policy .check-list li::marker {
  color: var(--blue);
}

.wide-image {
  width: min(var(--max), 100%);
  max-height: 460px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  margin-top: 22px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.09);
}

.dark-text {
  color: var(--ink);
}

.light-specs div {
  border-color: var(--steel-strong);
  background: var(--steel);
}

.light-specs strong {
  color: var(--blue);
}

.light-specs span {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  grid-auto-rows: 1fr;
}

.metric-carousel {
  width: min(var(--max), 100%);
  overflow: hidden;
  padding: 18px 0 30px;
  margin-top: 22px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.metric-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: metricSlide var(--carousel-duration) linear infinite;
}

.metric-carousel:hover .metric-track,
.metric-carousel:focus-within .metric-track {
  animation-play-state: paused;
}

.metric-card {
  flex: 0 0 clamp(360px, 38vw, 540px);
  min-height: 150px;
  padding: 30px 32px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.05);
}

.metric-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1.62rem;
  line-height: 1.15;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

@keyframes metricSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.intro {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card,
.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
}

.pillar-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pillar-card div {
  padding: 24px;
}

.pillar-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.pillar-card p,
.product-card p,
.service-item p,
.pipeline-list p,
.quality-points p,
.documents p,
.careers-band p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.pillar-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.capability-strip article,
.fact-grid article,
.detail-card,
.service-deep article,
.equipment-detail-grid article {
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
}

.capability-strip article {
  position: relative;
  min-height: 180px;
  padding: 22px;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.capability-strip article::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.36), rgba(22, 150, 255, 0.14) 38%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.capability-strip article:hover,
.capability-strip article:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.capability-strip article:hover::before,
.capability-strip article:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.capability-strip p,
.fact-grid p,
.detail-card p,
.service-deep p,
.equipment-detail-grid p,
.equipment-detail-grid li {
  color: var(--muted);
}

.company-section {
  background: #f6f1e7;
}

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

.fact-grid article {
  position: relative;
  min-height: 220px;
  padding: 24px;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fact-grid article::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.fact-grid article:hover,
.fact-grid article:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.fact-grid article:hover::before,
.fact-grid article:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.fact-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metallurgy {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--steel);
}

.product-copy {
  padding: 22px;
}

.detail-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.detail-card {
  position: relative;
  padding: 24px;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.detail-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.detail-card:hover,
.detail-card:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.detail-card:hover::before,
.detail-card:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.proof-route,
.proof-matrix,
.record-pack-grid,
.wear-component-grid,
.sample-report {
  display: grid;
  gap: 16px;
}

.proof-route {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.proof-route.route-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-route article,
.proof-matrix article,
.record-pack-grid article,
.wear-component-grid article {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.proof-route article::before,
.case-grid article::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.28), rgba(22, 150, 255, 0.1) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.proof-route article:hover,
.proof-route article:focus-within,
.case-grid article:hover,
.case-grid article:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.24),
    0 0 24px rgba(22, 150, 255, 0.12),
    0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.proof-route article:hover::before,
.proof-route article:focus-within::before,
.case-grid article:hover::before,
.case-grid article:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.proof-route article,
.record-pack-grid article,
.proof-matrix article {
  padding: 22px;
}

.proof-route span,
.record-pack-grid span,
.wear-component-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-route h3,
.record-pack-grid h3,
.wear-component-grid h3 {
  margin-top: 0;
}

.proof-route p,
.record-pack-grid p,
.wear-component-grid p,
.proof-matrix span {
  color: var(--muted);
}

.hard-facing-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.hard-facing-feature-main,
.hard-facing-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: 0 20px 52px rgba(17, 47, 84, 0.14);
  isolation: isolate;
}

.hard-facing-feature-main::before,
.hard-facing-gallery figure::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: radial-gradient(circle at 52% 42%, rgba(22, 150, 255, 0.3), transparent 65%);
  opacity: 0;
  filter: blur(16px);
  transition: opacity 180ms ease;
}

.hard-facing-feature-main:hover::before,
.hard-facing-gallery figure:hover::before {
  opacity: 1;
}

.hard-facing-feature-main img,
.hard-facing-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hard-facing-feature-main {
  aspect-ratio: 16 / 10;
}

.hard-facing-feature-copy .check-list {
  margin-top: 20px;
}

.hard-facing-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.hard-facing-gallery figure {
  min-height: 280px;
}

.hard-facing-gallery-wide {
  grid-column: span 2;
}

.hard-facing-gallery .hard-facing-image-button {
  height: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hard-facing-gallery .hard-facing-image-button:focus-visible {
  outline: 3px solid var(--neon);
  outline-offset: -4px;
}

.machining-image-carousel {
  position: relative;
  margin-top: 28px;
}

.turning-carousel-viewport {
  overflow: hidden;
}

.turning-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px;
}

.turning-carousel-track::-webkit-scrollbar {
  display: none;
}

.turning-carousel-track figure {
  margin: 0;
  scroll-snap-align: start;
}

.machining-grinding-carousel .turning-carousel-track {
  grid-auto-columns: calc((100% - 20px) / 2);
  gap: 20px;
}

.machining-grinding-carousel .turning-image-button {
  height: 320px;
}

.heat-treatment-image-carousel .turning-carousel-track {
  grid-auto-columns: calc((100% - 20px) / 2);
  gap: 20px;
}

.heat-treatment-feature-figure {
  margin: 0 0 28px;
}

.heat-treatment-image-carousel .heat-treatment-feature-button {
  height: 430px;
}

.heat-treatment-image-carousel .turning-image-button {
  height: 320px;
}

.heat-treatment-image-carousel .turning-image-button.heat-treatment-feature-button {
  height: 430px;
}

.heat-treatment-image-carousel .turning-carousel-button {
  top: calc(430px + 28px + 160px);
}

.rolling-mill-rolls-feature-figure {
  margin: 0 0 20px;
}

.rolling-mill-rolls-image-carousel .rolling-mill-rolls-feature-button {
  height: 420px;
}

.rolling-mill-rolls-image-carousel .turning-carousel-track {
  grid-auto-columns: calc((100% - 20px) / 2);
  gap: 20px;
}

.rolling-mill-rolls-image-carousel .turning-carousel-track .turning-image-button {
  height: 360px;
  background: var(--blue-dark);
}

.rolling-mill-rolls-image-carousel .turning-carousel-track img {
  object-fit: cover;
}

.rolling-mill-rolls-image-carousel .turning-carousel-track figure:first-child img {
  object-position: center 72%;
}

.rolling-mill-rolls-image-carousel .turning-carousel-track figure:nth-child(2) img {
  object-position: center 66%;
}

.rolling-mill-rolls-image-carousel .turning-carousel-button {
  top: calc(420px + 20px + 180px);
}

.turning-image-button {
  position: relative;
  display: block;
  width: 100%;
  height: 230px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: 0 18px 46px rgba(17, 47, 84, 0.12);
  cursor: zoom-in;
}

.turning-image-button::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 1;
  background: radial-gradient(circle at 50% 45%, rgba(22, 150, 255, 0.26), transparent 66%);
  opacity: 0;
  filter: blur(16px);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.turning-image-button:hover,
.turning-image-button:focus-visible {
  border-color: rgba(22, 150, 255, 0.58);
  outline: none;
}

.turning-image-button:hover::before,
.turning-image-button:focus-visible::before {
  opacity: 1;
}

.turning-image-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.turning-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 54px;
  place-items: center;
  border: 0;
  background: rgba(7, 48, 79, 0.78);
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.turning-carousel-button:hover,
.turning-carousel-button:focus-visible {
  background: var(--blue);
  box-shadow: 0 0 22px rgba(22, 150, 255, 0.36);
  outline: none;
}

.machining-image-carousel.is-static-carousel .turning-carousel-button {
  display: none;
}

.turning-carousel-button.prev {
  left: 0;
}

.turning-carousel-button.next {
  right: 0;
}

.turning-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.turning-lightbox.is-open {
  display: grid;
}

body.lightbox-open {
  overflow: hidden;
}

.turning-lightbox-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 18px;
  width: min(1200px, calc(100% - 44px));
  max-height: calc(100vh - 56px);
  margin: auto;
}

.turning-lightbox-main {
  display: grid;
  place-items: center;
  min-height: 60vh;
}

.turning-lightbox-main img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 90px);
  border: 4px solid var(--white);
  box-shadow: 0 24px 62px rgba(17, 47, 84, 0.2);
  object-fit: contain;
}

.turning-lightbox-thumbs {
  display: grid;
  align-content: start;
  gap: 8px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

.turning-lightbox-thumbs button {
  padding: 0;
  border: 3px solid transparent;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.turning-lightbox-thumbs button[aria-current="true"],
.turning-lightbox-thumbs button:hover,
.turning-lightbox-thumbs button:focus-visible {
  border-color: var(--yellow);
  outline: none;
}

.turning-lightbox-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.turning-lightbox-close,
.turning-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(7, 48, 79, 0.78);
  color: var(--white);
  cursor: pointer;
}

.turning-lightbox-close {
  top: 8px;
  right: 8px;
  width: 42px;
  height: 42px;
  font-size: 1.7rem;
}

.turning-lightbox-nav {
  top: 50%;
  width: 46px;
  height: 64px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.turning-lightbox-nav.prev {
  left: 8px;
}

.turning-lightbox-nav.next {
  right: 158px;
}

.turning-lightbox-close:hover,
.turning-lightbox-close:focus-visible,
.turning-lightbox-nav:hover,
.turning-lightbox-nav:focus-visible {
  background: var(--blue);
  box-shadow: 0 0 22px rgba(22, 150, 255, 0.36);
  outline: none;
}

.page-hard-facing .proof-route article,
.page-reverse-engineering .proof-route article,
.page-hard-facing .proof-matrix article,
.page-inspection-traceability .record-pack-grid article,
.page-inspection-traceability .proof-matrix article {
  position: relative;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.page-hard-facing .proof-route article::before,
.page-reverse-engineering .proof-route article::before,
.page-hard-facing .proof-matrix article::before,
.page-inspection-traceability .record-pack-grid article::before,
.page-inspection-traceability .proof-matrix article::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.page-hard-facing .proof-route article:hover,
.page-hard-facing .proof-route article:focus-within,
.page-reverse-engineering .proof-route article:hover,
.page-reverse-engineering .proof-route article:focus-within,
.page-hard-facing .proof-matrix article:hover,
.page-hard-facing .proof-matrix article:focus-within,
.page-inspection-traceability .record-pack-grid article:hover,
.page-inspection-traceability .record-pack-grid article:focus-within,
.page-inspection-traceability .proof-matrix article:hover,
.page-inspection-traceability .proof-matrix article:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.page-inspection-traceability .record-pack-grid article:hover,
.page-inspection-traceability .record-pack-grid article:focus-within,
.page-inspection-traceability .proof-matrix article:hover,
.page-inspection-traceability .proof-matrix article:focus-within {
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.28),
    0 0 24px rgba(22, 150, 255, 0.14),
    0 16px 42px rgba(22, 100, 180, 0.14);
}

.page-hard-facing .proof-route article:hover::before,
.page-hard-facing .proof-route article:focus-within::before,
.page-reverse-engineering .proof-route article:hover::before,
.page-reverse-engineering .proof-route article:focus-within::before,
.page-hard-facing .proof-matrix article:hover::before,
.page-hard-facing .proof-matrix article:focus-within::before,
.page-inspection-traceability .record-pack-grid article:hover::before,
.page-inspection-traceability .record-pack-grid article:focus-within::before,
.page-inspection-traceability .proof-matrix article:hover::before,
.page-inspection-traceability .proof-matrix article:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.page-hard-facing .proof-route span,
.page-reverse-engineering .proof-route span {
  color: var(--blue);
}

.proof-matrix {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-matrix strong,
.proof-matrix span {
  display: block;
}

.proof-matrix strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.04rem;
}

.record-pack-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wear-component-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wear-component-grid article {
  overflow: hidden;
}

.wear-component-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--steel);
}

.wear-component-grid div {
  padding: 22px;
}

.wear-component-grid .wear-component-card-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 8px;
}

.wear-component-grid .wear-component-card-link:focus-visible {
  outline: 3px solid rgba(22, 150, 255, 0.78);
  outline-offset: 3px;
}

.page-wear-components .wear-component-grid article,
.page-wear-components .proof-matrix article,
.page-wear-components .proof-route article {
  position: relative;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.page-wear-components .wear-component-grid article {
  overflow: visible;
}

.page-wear-components .wear-component-grid img {
  border-radius: 8px 8px 0 0;
}

.page-wear-components .wear-component-grid article::before,
.page-wear-components .proof-matrix article::before,
.page-wear-components .proof-route article::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.page-wear-components .wear-component-grid article:hover,
.page-wear-components .wear-component-grid article:focus-within,
.page-wear-components .proof-matrix article:hover,
.page-wear-components .proof-matrix article:focus-within,
.page-wear-components .proof-route article:hover,
.page-wear-components .proof-route article:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.page-wear-components .wear-component-grid article:hover::before,
.page-wear-components .wear-component-grid article:focus-within::before,
.page-wear-components .proof-matrix article:hover::before,
.page-wear-components .proof-matrix article:focus-within::before,
.page-wear-components .proof-route article:hover::before,
.page-wear-components .proof-route article:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.page-wear-components .wear-component-grid span,
.page-wear-components .proof-route span {
  color: var(--blue);
}

.sample-report {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  align-items: stretch;
}

.sample-report-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0 12%, rgba(10, 76, 125, 0.18) 13% 24%, transparent 25%),
    linear-gradient(135deg, #eef4f8, #ffffff);
}

.sample-report-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border: 28px solid #8797a4;
  border-radius: 50%;
  box-shadow: inset 0 0 0 38px rgba(7, 48, 79, 0.12), 0 18px 34px rgba(16, 24, 32, 0.12);
}

.sample-report-visual strong {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 22px;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(247, 250, 252, 0.96);
  color: var(--blue-dark);
  font-size: 1.06rem;
}

.sample-point {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--heat);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(16, 24, 32, 0.18);
}

.sample-point.p1 {
  left: 45%;
  top: 18%;
}

.sample-point.p2 {
  right: 21%;
  top: 36%;
}

.sample-point.p3 {
  left: 22%;
  top: 45%;
}

.sample-point.p4 {
  left: 48%;
  bottom: 24%;
}

.wheel-proof-layout,
.wheel-profile-grid,
.traceability-layout,
.wheel-inquiry-grid {
  display: grid;
  gap: 28px;
}

.wheel-proof-layout {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  align-items: start;
}

.wheel-proof-photo,
.wheel-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
}

.wheel-proof-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wheel-proof-photo figcaption,
.wheel-photo-grid figcaption {
  padding: 18px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.wheel-profile-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.68fr);
  align-items: stretch;
}

.wheel-section-graphic {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(10, 76, 125, 0.08), rgba(243, 183, 0, 0.08)),
    #f7fafc;
}

.wheel-section-body {
  position: absolute;
  left: 34px;
  bottom: 46px;
  width: 58%;
  height: 260px;
  clip-path: polygon(0 28%, 18% 28%, 25% 8%, 74% 8%, 100% 24%, 100% 88%, 76% 88%, 68% 64%, 28% 64%, 20% 88%, 0 88%);
  border: 1px solid rgba(83, 97, 112, 0.28);
  background: linear-gradient(180deg, #d7e0e8 0%, #aebbc6 100%);
  box-shadow: inset 0 14px 24px rgba(255, 255, 255, 0.42), inset 0 -18px 28px rgba(16, 24, 32, 0.14);
}

.wheel-section-tread,
.wheel-section-groove,
.wheel-section-core,
.wheel-section-hub {
  position: absolute;
  display: block;
}

.wheel-section-tread {
  left: 27%;
  top: 10%;
  width: 49%;
  height: 34%;
  border-radius: 999px 999px 22px 22px;
  border: 16px solid rgba(189, 85, 38, 0.84);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.18);
}

.wheel-section-groove {
  left: 10%;
  bottom: 37px;
  width: 32%;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 12px 0 rgba(10, 76, 125, 0.34);
}

.wheel-section-core {
  left: 25%;
  bottom: 50px;
  width: 52%;
  height: 92px;
  border-radius: 0 0 88px 88px;
  background: rgba(7, 48, 79, 0.12);
}

.wheel-section-hub {
  left: 39%;
  bottom: 56px;
  width: 86px;
  height: 86px;
  border: 16px solid rgba(7, 48, 79, 0.28);
  border-radius: 50%;
  background: #f7fafc;
}

.wheel-callouts {
  position: absolute;
  top: 26px;
  right: 22px;
  width: min(260px, 36%);
  display: grid;
  gap: 10px;
  margin: 0;
}

.wheel-callouts div,
.traceability-table th,
.traceability-table td {
  border: 1px solid var(--steel-strong);
  background: rgba(255, 255, 255, 0.88);
}

.wheel-callouts div {
  position: relative;
  isolation: isolate;
  padding: 12px 14px;
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.page-crane-wheels .wheel-callouts div::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(13px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.page-crane-wheels .wheel-callouts div:hover,
.page-crane-wheels .wheel-callouts div:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.28),
    0 0 24px rgba(22, 150, 255, 0.14),
    0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.page-crane-wheels .wheel-callouts div:hover::before,
.page-crane-wheels .wheel-callouts div:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.wheel-callouts dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.wheel-callouts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
}

.wheel-note-stack {
  display: grid;
  gap: 14px;
}

.wheel-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.7fr) minmax(240px, 0.7fr);
  gap: 18px;
}

.wheel-photo-grid figure {
  display: grid;
  grid-template-rows: auto 1fr;
}

.wheel-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--steel);
}

.wheel-photo-grid strong,
.wheel-photo-grid span {
  display: block;
}

.wheel-photo-grid strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.wheel-photo-large {
  grid-row: span 2;
}

.wheel-photo-large img {
  aspect-ratio: 4 / 3.1;
}

.traceability-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  align-items: start;
}

.traceability-mark {
  position: relative;
  min-height: 270px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0 12%, rgba(7, 48, 79, 0.12) 13% 26%, transparent 27%),
    linear-gradient(135deg, #edf3f7, #ffffff);
}

.traceability-wheel-face {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border: 24px solid #7f8f9d;
  border-radius: 50%;
  background: #f8fafc;
  box-shadow: 0 20px 38px rgba(16, 24, 32, 0.12), inset 0 0 0 28px rgba(10, 76, 125, 0.12);
}

.traceability-brand-line,
.traceability-serial {
  position: absolute;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
}

.traceability-brand-line {
  bottom: 88px;
  padding: 7px 20px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.78rem;
}

.traceability-serial {
  bottom: 46px;
  padding: 8px 16px;
  border: 1px solid rgba(10, 76, 125, 0.22);
  background: var(--white);
  color: var(--blue);
  font-size: 0.86rem;
}

.traceability-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.traceability-table th,
.traceability-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.traceability-table th {
  width: 34%;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  color: var(--blue-dark);
  font-size: 0.95rem;
}

.traceability-table td {
  border-left: 0;
  border-radius: 0 8px 8px 0;
  color: var(--muted);
}

.page-inspection-traceability .traceability-table tr,
.page-crane-wheels .traceability-table tr {
  transition: filter 180ms ease, transform 180ms ease;
}

.page-inspection-traceability .traceability-table th,
.page-inspection-traceability .traceability-table td,
.page-crane-wheels .traceability-table th,
.page-crane-wheels .traceability-table td {
  transition: border-color 180ms ease, background 180ms ease;
}

.page-inspection-traceability .traceability-table tr:hover,
.page-crane-wheels .traceability-table tr:hover {
  filter:
    drop-shadow(0 0 7px rgba(22, 150, 255, 0.34))
    drop-shadow(0 0 14px rgba(22, 150, 255, 0.16));
  transform: translateY(-1px);
}

.page-inspection-traceability .traceability-table tr:hover th,
.page-inspection-traceability .traceability-table tr:hover td,
.page-crane-wheels .traceability-table tr:hover th,
.page-crane-wheels .traceability-table tr:hover td {
  border-color: rgba(22, 150, 255, 0.58);
  background: rgba(248, 252, 255, 0.98);
}

.wheel-inquiry-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  align-items: start;
}

.wheel-download-panel {
  padding: 28px;
  border: 1px solid rgba(10, 76, 125, 0.2);
  border-radius: 8px;
  background: linear-gradient(160deg, #f8fbfd 0%, #eef5f9 100%);
}

.wheel-download-panel p:not(.eyebrow) {
  color: var(--muted);
}

.pipeline-band {
  background: var(--ink);
  color: var(--white);
}

.feature-layout,
.quality-grid,
.careers-layout,
.contact-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 46px;
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.spec-grid div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.spec-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
}

.spec-grid span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.feature-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: contain;
  padding: 18px;
  background: #f3f6f8;
  border-radius: 8px;
}

.pipeline-list {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 44px auto 0;
}

.pipeline-list article {
  min-height: 220px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.pipeline-list p {
  color: rgba(255, 255, 255, 0.74);
}

.equipment-detail-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px auto 0;
}

.equipment-detail-grid article {
  min-height: 310px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
}

.equipment-detail-grid ul,
.service-deep ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.equipment-detail-grid li::marker,
.service-deep li::marker {
  color: var(--blue);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-item {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--steel);
}

.service-deep {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-deep article {
  padding: 26px;
  background: var(--white);
}

.service-deep li {
  color: var(--muted);
}

.capacity-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.capacity-table div {
  min-height: 132px;
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.capacity-table strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.capacity-table span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.workshop-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.workshop-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.quality-band {
  background: #edf4ef;
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.quality-grid > div:first-child p:not(.eyebrow) {
  color: #435245;
  font-size: 1.06rem;
}

.quality-points {
  display: grid;
  gap: 14px;
}

.quality-points article {
  padding: 22px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
}

.quality-methods {
  width: min(var(--max), 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px auto 0;
}

.quality-methods span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid #bfd0c4;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  color: #344a3b;
  font-size: 0.9rem;
  font-weight: 800;
}

.quality-method-carousel {
  width: min(var(--max), 100%);
  overflow: hidden;
  margin: 26px auto 0;
  padding: 4px 0 10px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.quality-method-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: qualityMethodSlide var(--carousel-duration) linear infinite;
}

.quality-method-carousel:hover .quality-method-track,
.quality-method-carousel:focus-within .quality-method-track {
  animation-play-state: paused;
}

.quality-method-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid #bfd0c4;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: #344a3b;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.06);
}

.qhse-intro-grid img,
.qhse-hse-layout img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 52px rgba(17, 47, 84, 0.14);
}

.qhse-hse-image {
  aspect-ratio: 16 / 10;
  object-position: 42% 50%;
}

.qhse-method-sections {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.qhse-method-sections article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: stretch;
  min-height: 255px;
  padding: 24px;
  isolation: isolate;
  border: 1px solid var(--steel-strong);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 47, 84, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.qhse-method-sections article::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 22%, rgba(22, 150, 255, 0.28), rgba(22, 150, 255, 0.1) 42%, transparent 74%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease;
}

.qhse-method-sections article:hover,
.qhse-method-sections article:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 20px 46px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.qhse-method-sections article:hover::before,
.qhse-method-sections article:focus-within::before {
  opacity: 1;
}

.qhse-method-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(17, 47, 84, 0.18);
}

.qhse-method-copy h3 {
  margin-top: 0;
}

.qhse-method-copy p,
.qhse-method-sections figcaption {
  color: var(--muted);
}

.qhse-method-sections figure {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  margin: 0;
}

.qhse-method-placeholder {
  display: grid;
  min-height: 170px;
  place-items: center;
  border: 1px dashed rgba(17, 47, 84, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(245, 250, 255, 0.86), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 72% 28%, rgba(22, 150, 255, 0.22), transparent 48%);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qhse-method-sections figcaption {
  font-size: 0.88rem;
  line-height: 1.5;
}

.qhse-method-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.qhse-method-feature.image-left figure {
  order: -1;
}

.qhse-method-feature .lead {
  max-width: 820px;
}

.qhse-method-feature .check-list {
  margin-top: 20px;
}

.qhse-method-feature figure {
  display: grid;
  gap: 12px;
  margin: 0;
}

.qhse-method-image {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 52px rgba(17, 47, 84, 0.14);
}

.qhse-method-feature figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.qhse-method-feature .qhse-method-placeholder {
  min-height: 300px;
  border-color: rgba(17, 47, 84, 0.22);
  background:
    linear-gradient(135deg, rgba(245, 250, 255, 0.78), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 72% 28%, rgba(22, 150, 255, 0.16), transparent 48%);
}

.qhse-document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.qhse-document-grid article,
.qhse-gate-flow article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.05);
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.qhse-document-grid article {
  padding: 24px;
}

.qhse-document-grid article::before,
.qhse-gate-flow article::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: radial-gradient(circle at 42% 0%, rgba(22, 150, 255, 0.28), transparent 64%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease;
}

.qhse-document-grid article:hover,
.qhse-document-grid article:focus-within,
.qhse-gate-flow article:hover,
.qhse-gate-flow article:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 18px 42px rgba(22, 100, 180, 0.13);
  transform: translateY(-2px);
}

.qhse-document-grid article:hover::before,
.qhse-document-grid article:focus-within::before,
.qhse-gate-flow article:hover::before,
.qhse-gate-flow article:focus-within::before {
  opacity: 1;
}

.qhse-document-grid span,
.qhse-gate-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(245, 189, 38, 0.18);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.qhse-document-grid h3,
.qhse-gate-flow h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.qhse-document-grid p,
.qhse-gate-flow p {
  margin: 0;
  color: var(--muted);
}

.qhse-gate-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.qhse-gate-flow article {
  padding: 22px;
}

.qhse-gate-flow span {
  background: rgba(245, 189, 38, 0.18);
  box-shadow: none;
}

.qhse-gate-flow h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.qhse-gate-flow p {
  font-size: 0.95rem;
  line-height: 1.48;
}

.qhse-hse-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.qhse-closing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.qhse-closing-panel h3 {
  max-width: 850px;
}

@keyframes qualityMethodSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.case-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-grid article,
.industry-grid article {
  position: relative;
  isolation: isolate;
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.case-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-grid p,
.industry-grid p {
  color: var(--muted);
}

.industry-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.industry-grid article::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.28), rgba(22, 150, 255, 0.1) 44%, transparent 72%);
  opacity: 0;
  filter: blur(13px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.industry-grid article:hover,
.industry-grid article:focus-within {
  border-color: rgba(22, 150, 255, 0.62);
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.2),
    0 16px 38px rgba(10, 76, 125, 0.14);
  transform: translateY(-3px);
}

.industry-grid article:hover::before,
.industry-grid article:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
}

.industry-grid a {
  align-self: end;
  width: fit-content;
  margin-top: 16px;
  padding: 10px 15px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(20, 75, 127, 0.16);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.industry-grid a::after {
  content: " \2192";
  margin-left: 7px;
}

.industry-grid a:hover,
.industry-grid a:focus-visible {
  border-color: #1696ff;
  background: #123f6f;
  color: #fff;
  box-shadow:
    0 0 14px rgba(22, 150, 255, 0.34),
    0 8px 20px rgba(20, 75, 127, 0.2);
  transform: translateY(-2px);
}

.documents {
  background: var(--white);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.document-grid a {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--steel);
}

.document-grid span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.document-grid strong {
  font-size: 1.08rem;
}

.document-grid-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.document-grid-full a {
  min-height: 132px;
}

.careers-band {
  background: #fff7df;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: 36px;
  align-items: center;
}

.role-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-list li {
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid #f1dc97;
  font-weight: 800;
}

.role-list span {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.careers-update {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(10, 76, 125, 0.2);
  border-radius: 999px;
  background: rgba(10, 76, 125, 0.05);
  color: var(--blue-dark);
  font-size: 0.82rem;
}

.careers-update span {
  font-weight: 700;
}

.careers-update strong {
  color: var(--blue);
}

.role-list-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: open-role;
}

.role-list-wide li {
  position: relative;
  isolation: isolate;
  min-height: 210px;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 10px;
  padding: 24px 24px 24px 76px;
  border-color: var(--steel-strong);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.05);
  counter-increment: open-role;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.role-list-wide li::before {
  content: counter(open-role, decimal-leading-zero);
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.role-list-wide li::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(22, 150, 255, 0.34), rgba(22, 150, 255, 0.13) 40%, transparent 72%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.role-list-wide li:hover,
.role-list-wide li:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.24),
    0 0 24px rgba(22, 150, 255, 0.12),
    0 16px 42px rgba(22, 100, 180, 0.14);
  transform: translateY(-2px);
}

.role-list-wide li:hover::after,
.role-list-wide li:focus-within::after {
  opacity: 1;
  transform: scale(1.02);
}

.role-list-wide li > strong {
  font-size: 1.06rem;
  line-height: 1.3;
}

.role-list-wide span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.careers-principles .detail-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.98)),
    var(--white);
}

.career-role-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 460px;
}

.career-role-module {
  display: grid;
  gap: 16px;
}

.career-role-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.career-role-toolbar p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.career-role-toolbar strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.career-role-controls {
  display: flex;
  gap: 8px;
}

.career-role-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10, 76, 125, 0.3);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.career-role-controls button:hover,
.career-role-controls button:focus-visible {
  border-color: rgba(22, 150, 255, 0.72);
  background: rgba(22, 150, 255, 0.08);
  box-shadow: 0 0 12px rgba(22, 150, 255, 0.25);
  transform: translateY(-1px);
}

.career-role-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.career-role-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 76, 125, 0.24);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.career-role-dots button[aria-current="true"] {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(246, 198, 40, 0.42);
  transform: scale(1.25);
}

.career-role-card[data-career-slide]:not([data-active="true"]) {
  display: none;
}

.career-role-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 22px;
  align-items: center;
  min-height: 0;
  padding: 22px 24px 22px 30px;
  overflow: hidden;
  border: 1px solid var(--steel-strong);
  border-left: 3px solid var(--neon);
  border-radius: 8px;
  background: #f5f6f7;
  box-shadow:
    -5px 0 14px rgba(22, 150, 255, 0.14),
    0 12px 30px rgba(10, 76, 125, 0.12);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.career-role-card::before {
  display: none;
}

.career-role-card::after {
  display: none;
}

.career-role-card:hover,
.career-role-card:focus-within {
  background: #f8fafc;
  border-color: var(--steel-strong);
  border-left-color: var(--neon);
  box-shadow:
    -6px 0 20px rgba(22, 150, 255, 0.22),
    0 16px 38px rgba(10, 76, 125, 0.18);
  transform: translateY(-2px);
}

.career-role-card:hover::after,
.career-role-card:focus-within::after {
  display: none;
}

.career-role-main {
  display: grid;
  gap: 9px;
}

.career-role-main h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.2;
}

.career-role-main p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.career-role-main ul {
  display: grid;
  gap: 5px;
  margin: 3px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.career-role-main li::marker {
  color: var(--blue);
}

.career-role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
  grid-column: 1 / -1;
}

.career-role-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(10, 76, 125, 0.16);
  border-radius: 999px;
  background: rgba(10, 76, 125, 0.05);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.role-apply-button {
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 18px;
  border-color: transparent;
  background: var(--gold);
  color: #1d1a0b;
  box-shadow: 0 0 12px rgba(246, 198, 40, 0.26);
  justify-self: end;
}

.role-apply-button:hover,
.role-apply-button:focus-visible {
  border-color: transparent;
  background: #ffd64a;
  box-shadow:
    0 0 12px rgba(246, 198, 40, 0.42),
    0 0 24px rgba(246, 198, 40, 0.22),
    0 10px 24px rgba(246, 198, 40, 0.16);
}

.career-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 1px solid rgba(22, 150, 255, 0.42);
  border-radius: 10px;
  background: var(--white);
  box-shadow:
    0 0 22px rgba(22, 150, 255, 0.18),
    0 28px 80px rgba(16, 24, 32, 0.28);
}

.career-dialog::backdrop {
  background: rgba(3, 18, 29, 0.72);
  backdrop-filter: blur(4px);
}

.career-application-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
}

.career-application-form h3,
.career-application-form .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.career-application-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 800;
}

.career-application-form .full {
  grid-column: 1 / -1;
}

.career-application-form input,
.career-application-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--steel-strong);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.career-application-form input:focus,
.career-application-form textarea:focus {
  outline: 2px solid rgba(22, 150, 255, 0.24);
  border-color: rgba(22, 150, 255, 0.64);
}

.career-file-field small {
  color: var(--muted);
  font-weight: 500;
}

.career-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--steel-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 1.4rem;
  cursor: pointer;
}

.career-application-form .form-status {
  align-self: center;
  margin: 0;
}

.contact-section {
  background: var(--white);
}

.partner-company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
}

.partner-collaboration-intro {
  max-width: 980px;
  margin-bottom: 30px;
}

.partner-collaboration-intro > .lead {
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.55;
}

.partner-collaboration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.partner-collaboration-grid article {
  padding: 20px;
  border-left: 4px solid var(--yellow);
  background: var(--steel);
}

.partner-collaboration-grid h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.12rem;
}

.partner-collaboration-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.partner-company-card {
  overflow: hidden;
  border: 1px solid var(--steel-strong);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(10, 76, 125, 0.1);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-company-card:hover,
.partner-company-card:focus-within {
  border-color: rgba(22, 150, 255, 0.58);
  box-shadow: 0 0 18px rgba(22, 150, 255, 0.16), 0 20px 46px rgba(10, 76, 125, 0.15);
  transform: translateY(-3px);
}

.partner-company-logo {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 28px;
  background: linear-gradient(145deg, #ffffff, #f3f6f8);
}

.partner-company-logo:focus-visible {
  outline: 3px solid var(--neon);
  outline-offset: -4px;
}

.partner-company-logo img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 190px;
  object-fit: contain;
}

.partner-company-copy {
  padding: 24px;
}

.partner-company-copy h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.partner-company-copy > p:not(.eyebrow) {
  min-height: 96px;
  color: var(--muted);
  line-height: 1.55;
}

.partner-company-copy > a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .partner-company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .partner-company-grid,
  .partner-collaboration-grid {
    grid-template-columns: 1fr;
  }

  .partner-company-copy > p:not(.eyebrow) {
    min-height: 0;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.85fr);
  gap: 46px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.contact-details div {
  padding: 18px 0;
  border-top: 1px solid var(--steel-strong);
}

.contact-details dt {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  font-size: 1.04rem;
}

.contact-details a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--steel);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2b3742;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #bec8d1;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(10, 76, 125, 0.18);
  border-color: var(--blue);
}

.contact-form button {
  width: fit-content;
}

.callback-form-intro h3 {
  margin: 4px 0 8px;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.contact-request-type {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-request-type legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 900;
}

.contact-request-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-request-options label {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.contact-request-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-request-options span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 12px 16px;
  border: 1px solid var(--steel-strong);
  border-radius: 7px;
  background: var(--white);
  color: var(--blue-dark);
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-request-options input:checked + span {
  border-color: var(--yellow);
  background: rgba(241, 187, 44, 0.14);
  box-shadow: inset 0 0 0 1px var(--yellow);
}

.contact-request-options input:focus-visible + span {
  outline: 3px solid var(--neon);
  outline-offset: 2px;
}

.callback-schedule {
  display: grid;
  gap: 22px;
}

.callback-schedule[hidden] {
  display: none;
}

.contact-form [data-project-area-field][hidden] {
  display: none;
}

.callback-calendar-field {
  position: relative;
}

.callback-calendar-label {
  display: block;
  margin-bottom: 8px;
  color: #2b3742;
  font-size: 0.92rem;
  font-weight: 800;
}

.callback-form .callback-calendar-trigger {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 15px;
  border: 1px solid #bec8d1;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.callback-form .callback-calendar-trigger:hover,
.callback-form .callback-calendar-trigger:focus-visible,
.callback-form .callback-calendar-trigger[aria-expanded="true"] {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(22, 150, 255, 0.14), 0 0 16px rgba(22, 150, 255, 0.12);
}

.callback-calendar-popover {
  position: absolute;
  z-index: 8;
  top: calc(100% + 8px);
  left: 0;
  width: min(390px, 100%);
  padding: 18px;
  border: 1px solid rgba(10, 76, 125, 0.22);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(7, 48, 79, 0.2), 0 0 18px rgba(22, 150, 255, 0.12);
}

.callback-calendar-popover[hidden] {
  display: none;
}

.callback-calendar-header {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.callback-calendar-header strong {
  color: var(--blue-dark);
  font-size: 1.05rem;
  text-align: center;
}

.callback-form .callback-calendar-header button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(10, 76, 125, 0.2);
  border-radius: 50%;
  background: rgba(10, 76, 125, 0.04);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.callback-form .callback-calendar-header button:hover,
.callback-form .callback-calendar-header button:focus-visible {
  border-color: var(--neon);
  background: rgba(22, 150, 255, 0.09);
  outline: 0;
  box-shadow: 0 0 12px rgba(22, 150, 255, 0.22);
}

.callback-form .callback-calendar-header button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  box-shadow: none;
}

.callback-calendar-weekdays,
.callback-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.callback-calendar-weekdays {
  margin-bottom: 7px;
}

.callback-calendar-weekdays span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.callback-calendar-spacer {
  min-height: 40px;
}

.callback-form .callback-calendar-day {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.callback-form .callback-calendar-day:hover,
.callback-form .callback-calendar-day:focus-visible {
  border-color: rgba(22, 150, 255, 0.52);
  background: rgba(22, 150, 255, 0.09);
  outline: 0;
}

.callback-form .callback-calendar-day[data-today="true"] {
  border-color: rgba(10, 76, 125, 0.35);
  color: var(--blue);
}

.callback-form .callback-calendar-day[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: #1d1a0b;
  box-shadow: 0 0 12px rgba(246, 198, 40, 0.36);
}

.callback-form .callback-calendar-day:disabled {
  color: #a9b1b8;
  cursor: not-allowed;
  opacity: 0.48;
}

.callback-slot-picker {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(10, 76, 125, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.callback-slot-picker:disabled {
  opacity: 0.58;
}

.callback-slot-picker legend {
  padding: 0 6px;
  color: #2b3742;
  font-size: 0.92rem;
  font-weight: 800;
}

.callback-slot-picker legend span {
  color: var(--muted);
  font-weight: 600;
}

.callback-time-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.callback-time-slots button {
  width: 100%;
  min-height: 44px;
  padding: 9px 8px;
  border: 1px solid rgba(10, 76, 125, 0.3);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.callback-time-slots button:hover,
.callback-time-slots button:focus-visible {
  border-color: rgba(22, 150, 255, 0.72);
  background: rgba(22, 150, 255, 0.08);
  box-shadow: 0 0 12px rgba(22, 150, 255, 0.22);
  transform: translateY(-1px);
}

.callback-time-slots button[aria-pressed="true"] {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 14px rgba(22, 150, 255, 0.3);
}

.callback-picker-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.callback-details {
  display: grid;
  gap: 16px;
  padding-top: 4px;
}

.callback-details[hidden] {
  display: none;
}

.callback-selection-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 13px 15px;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: rgba(246, 198, 40, 0.12);
  color: var(--blue-dark);
}

.callback-selection-summary[hidden] {
  display: none;
}

.callback-selection-summary span {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.callback-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.callback-details-grid .full {
  grid-column: 1 / -1;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.casting-request-section {
  background: linear-gradient(180deg, var(--white), #f7fafc);
}

.casting-request-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.casting-preview-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 48, 79, 0.97), rgba(16, 24, 32, 0.98)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.casting-preview-panel h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.casting-preview-panel .eyebrow {
  color: var(--gold);
}

.casting-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0;
}

.diagram-node {
  position: relative;
  z-index: 1;
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.diagram-node span,
.preview-specs dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.diagram-node strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.diagram-node-hot {
  border-color: rgba(243, 183, 0, 0.62);
  background: linear-gradient(145deg, rgba(189, 85, 38, 0.8), rgba(243, 183, 0, 0.14));
}

.strand-preview {
  display: grid;
  gap: 10px;
}

.line-scale {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.line-scale strong {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  overflow: hidden;
}

.line-scale strong::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #ff7b30, #8fb6d3);
}

.strand-preview article {
  display: grid;
  gap: 5px;
}

.strand-route-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb000, #ff6f2d 38%, #6ea2c8);
  box-shadow: 0 0 18px rgba(255, 126, 48, 0.28);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.strand-preview article::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.32);
}

.strand-preview article:first-child::before {
  display: none;
}

.strand-preview i,
.strand-preview b {
  position: relative;
  z-index: 1;
  font-style: normal;
}

.strand-preview b {
  max-width: 52%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.strand-route-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
}

.strand-route-meta span:last-child {
  text-align: right;
}

.dimension-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dimension-preview div {
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.dimension-preview span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dimension-preview strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.25;
}

.preview-note {
  margin: -6px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 800;
}

.preview-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.preview-specs div {
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.preview-specs dd {
  margin: 6px 0 0;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.summary-box {
  display: grid;
  gap: 12px;
}

.summary-box pre {
  max-height: 260px;
  overflow: auto;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 12, 20, 0.48);
  color: rgba(255, 255, 255, 0.86);
  font: 0.82rem/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.summary-box .button {
  width: fit-content;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 24, 32, 0.08);
}

.rfq-form label {
  display: grid;
  gap: 8px;
  color: #2b3742;
  font-size: 0.92rem;
  font-weight: 800;
}

.rfq-form small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.rfq-form .full {
  grid-column: 1 / -1;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #bec8d1;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.rfq-form textarea {
  min-height: 146px;
  resize: vertical;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  outline: 3px solid rgba(10, 76, 125, 0.18);
  border-color: var(--blue);
}

.form-block {
  padding-top: 8px;
  border-top: 1px solid var(--steel-strong);
}

.form-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.form-block h3 {
  margin: 0;
  font-size: 1.35rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--steel-strong);
  border-radius: 8px;
  background: var(--steel);
  font-size: 0.88rem;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.rfq-form .form-status {
  align-self: center;
}

.project-cta {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 18px auto 54px;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 76, 125, 0.96), rgba(16, 24, 32, 0.98)),
    var(--ink);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(16, 24, 32, 0.16);
}

.project-cta .eyebrow {
  color: var(--gold);
}

.project-cta h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 2rem;
}

.project-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.project-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.blue-neon-cta {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button.blue-neon-cta:hover,
.button.blue-neon-cta:focus-visible {
  border-color: rgba(22, 150, 255, 0.76);
  background: rgba(22, 150, 255, 0.12);
  box-shadow:
    0 0 12px rgba(22, 150, 255, 0.34),
    0 0 24px rgba(22, 150, 255, 0.18),
    0 10px 24px rgba(8, 42, 68, 0.24);
}

.button.text-link {
  min-height: auto;
  padding: 8px 0;
  border-color: transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.button.text-link:hover,
.button.text-link:focus-visible {
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.site-footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  min-height: 360px;
  padding: 58px max(24px, calc((100vw - var(--max)) / 2)) 20px;
  background: #064a76;
  color: var(--white);
}

.footer-map {
  position: absolute;
  top: -18%;
  right: -18%;
  bottom: -18%;
  left: -18%;
  z-index: -2;
  --footer-scroll-x: 0px;
  --footer-scroll-y: 0px;
  background:
    linear-gradient(90deg, rgba(4, 54, 86, 0.74), rgba(6, 74, 118, 0.58)),
    url("assets/images/footer-world-map.webp") center / cover no-repeat;
  background-position: center, 50% 50%;
  background-size: auto, cover;
  opacity: 1;
  transform: scale(1.16) translate3d(var(--footer-scroll-x), var(--footer-scroll-y), 0);
  transition: transform 80ms linear;
  animation: footerMapScroll 22s ease-in-out infinite alternate;
  will-change: transform;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 227, 77, 0.15), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(22, 150, 255, 0.2), transparent 24%),
    linear-gradient(90deg, transparent, rgba(255, 227, 77, 0.12), transparent),
    linear-gradient(180deg, rgba(8, 24, 36, 0.08), rgba(7, 28, 44, 0.56));
  background-size: 100% 100%, 100% 100%, 180% 100%, 100% 100%;
  animation: footerGlow 8s ease-in-out infinite;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 24px rgba(255, 227, 77, 0.62);
  animation: footerLine 5.5s linear infinite;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.8fr);
  gap: 22px 56px;
  align-items: start;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-items: start;
}

.site-footer img {
  width: 148px;
  height: auto;
  margin-bottom: 0;
}

.site-footer p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.52;
}

.footer-right {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  font-weight: 800;
}

.site-footer a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 14px rgba(255, 227, 77, 0.72);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--neon);
  text-shadow:
    0 0 6px rgba(255, 227, 77, 0.78),
    0 0 18px rgba(255, 227, 77, 0.5);
  transform: translateY(-2px);
}

.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.footer-contact {
  display: grid;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.footer-contact a {
  justify-self: end;
}

.footer-contact-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-contact-email {
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.1;
}

.footer-contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin: 6px 0 2px;
}

.site-footer .footer-contact-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(6, 28, 43, 0.58);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(3, 18, 29, 0.18);
}

.site-footer .footer-contact-icon::after {
  display: none;
}

.footer-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .footer-contact-icon:hover,
.site-footer .footer-contact-icon:focus-visible {
  border-color: rgba(22, 150, 255, 0.72);
  background: rgba(8, 53, 83, 0.92);
  color: var(--white);
  text-shadow: none;
  box-shadow:
    0 0 0 1px rgba(22, 150, 255, 0.18),
    0 0 22px rgba(22, 150, 255, 0.3);
}

.footer-contact-phone,
.footer-address {
  font-size: 0.9rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  align-items: center;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.86rem;
  font-weight: 800;
}

.copyright {
  margin: 0;
  font-size: 0.88rem;
}

@keyframes footerGlow {
  0%,
  100% {
    background-position: -80% 0, 0 0;
    opacity: 0.8;
  }

  50% {
    background-position: 180% 0, 0 0;
    opacity: 1;
  }
}

@keyframes footerLine {
  from {
    transform: translateX(-60%);
  }

  to {
    transform: translateX(60%);
  }
}

@keyframes footerMapScroll {
  from {
    background-position: center, 42% 50%;
  }

  to {
    background-position: center, 58% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-map {
    transform: scale(1.1);
    animation: none;
    transition: none;
  }

  .site-footer::after,
  .site-footer::before {
    animation: none;
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .primary-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding: 12px 0 4px;
  }

  .site-header.nav-open .primary-nav a,
  .site-header.nav-open .nav-item > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--steel-strong);
  }

  .site-header.nav-open .nav-item {
    display: grid;
  }

  .site-header.nav-open .subnav {
    position: static;
    width: auto;
    grid-template-columns: 1fr;
    display: grid;
    gap: 0;
    padding: 2px 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.nav-open .subnav::before {
    display: none;
  }

  .site-header.nav-open .subnav a {
    min-height: 36px;
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.9rem;
  }

  .site-header.nav-open .engineering-subnav .subnav-feature-link {
    justify-self: stretch;
    max-width: none;
    text-align: left;
  }

  .site-header.nav-open .subnav-group {
    gap: 0;
  }

  .site-header.nav-open .subnav-heading {
    padding: 12px 0 4px;
  }

  .site-header.nav-open .nested-subnav {
    padding-left: 28px;
  }

  .site-header.nav-open .has-nested-subnav > a::after {
    transform: rotate(90deg);
  }

  .hero-content {
    padding-bottom: 210px;
  }

  .hero-stats div {
    padding: 18px 14px;
  }

  .hero-stats strong {
    font-size: 1.38rem;
  }

  .hero-stats span {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .pillar-grid,
  .product-grid,
  .service-grid,
  .pipeline-list,
  .document-grid,
  .capability-strip,
  .fact-grid,
  .detail-panel,
  .equipment-detail-grid,
  .capacity-table,
  .case-grid,
  .industry-grid,
  .link-grid,
  .area-tiles,
  .metric-grid,
  .proof-route,
  .proof-route.route-wide,
  .proof-matrix,
  .record-pack-grid,
  .wear-component-grid,
  .qhse-method-sections article,
  .qhse-document-grid,
  .qhse-gate-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-layout,
  .quality-grid,
  .careers-layout,
  .contact-layout,
  .casting-request-layout,
  .service-deep,
  .project-cta,
  .page-hero,
  .two-column,
  .sample-report,
  .wheel-proof-layout,
  .wheel-profile-grid,
  .traceability-layout,
  .wheel-inquiry-grid,
  .hard-facing-feature,
  .qhse-method-feature,
  .qhse-hse-layout {
    grid-template-columns: 1fr;
  }

  .page-mechanics .page-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .page-mechanics .page-hero img {
    min-height: 280px;
    max-height: 340px;
  }

  .qhse-method-feature.image-left figure {
    order: 0;
  }

  .qhse-gate-flow {
    gap: 14px;
  }

  .qhse-gate-flow article {
    padding: 22px;
  }

  .qhse-gate-flow span {
    margin-bottom: 14px;
  }

  .wheel-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hard-facing-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .turning-carousel-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .wheel-photo-large {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .buyer-card-grid {
    grid-template-columns: 1fr;
  }

  .casting-preview-panel {
    position: relative;
    top: auto;
  }

  .project-cta-actions {
    justify-content: flex-start;
  }

  .page-hero {
    padding: 54px 24px;
  }

}

@media (min-width: 1241px) and (max-width: 1320px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 12px 18px;
  }

  .brand img {
    width: 120px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    font-size: 0.76rem;
  }

  .header-cta {
    display: none;
  }
}

@media (hover: none) and (min-width: 721px) and (max-width: 1240px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .primary-nav {
    display: none;
  }

  .site-header.nav-open .primary-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding: 12px 0 4px;
  }

  .site-header.nav-open .primary-nav a,
  .site-header.nav-open .nav-item > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--steel-strong);
  }

  .site-header.nav-open .nav-item {
    display: grid;
  }

  .site-header.nav-open .subnav {
    position: static;
    width: auto;
    grid-template-columns: 1fr;
    display: grid;
    gap: 0;
    padding: 2px 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.nav-open .subnav::before {
    display: none;
  }

  .site-header.nav-open .subnav a {
    min-height: 36px;
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.9rem;
  }
}

@media (max-width: 1040px) {
  .page-mechanics .page-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-mechanics .page-links a,
  .page-mechanics .page-links a:nth-child(3n),
  .page-mechanics .page-links a:nth-child(-n + 3) {
    border-right: 1px solid #e1e8ee;
    border-bottom: 1px solid #e1e8ee;
  }

  .page-mechanics .page-links a:nth-child(2n) {
    border-right: 0;
  }

  .page-mechanics .page-links a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    display: block;
    min-height: 0;
    max-height: none;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 42px 0 24px;
  }

  .compact-hero .hero-content {
    padding: 42px 0 36px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    max-width: none;
  }

  .button.text-link {
    justify-content: center;
    min-height: 44px;
    padding: 10px 0;
  }

  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 36px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto 24px;
    transform: none;
  }

  .hero-stats div {
    min-height: 96px;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-stats div:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats div:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 0;
  }

  .hero-stats div:nth-last-child(2) {
    border-bottom: 0;
  }

  .section,
  .band {
    padding: 58px 18px;
  }

  .page-links {
    top: 68px;
    width: calc(100% - 36px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 16px 0;
  }

  .page-links a {
    min-height: 106px;
  }

  .page-mechanics .page-links {
    grid-template-columns: 1fr;
    padding: 6px 0;
  }

  .page-mechanics .page-links a {
    min-height: 54px;
    justify-content: space-between;
    padding: 10px 16px;
    border-right: 0;
  }

  .page-mechanics .page-links a:nth-child(2n),
  .page-mechanics .page-links a:nth-last-child(-n + 2) {
    border-bottom: 1px solid #e1e8ee;
  }

  .page-mechanics .page-links a:last-child {
    border-bottom: 0;
  }

  .pillar-grid,
  .product-grid,
  .service-grid,
  .pipeline-list,
  .document-grid,
  .workshop-strip,
  .contact-form,
  .rfq-form,
  .feature-media,
  .capability-strip,
  .fact-grid,
  .detail-panel,
  .equipment-detail-grid,
  .capacity-table,
  .case-grid,
  .industry-grid,
  .link-grid,
  .area-tiles,
  .metric-grid,
  .proof-route,
  .proof-route.route-wide,
  .proof-matrix,
  .record-pack-grid,
  .wear-component-grid,
  .hard-facing-gallery,
  .qhse-method-sections article,
  .qhse-document-grid,
  .qhse-gate-flow,
  .hard-facing-feature,
  .qhse-method-feature,
  .qhse-hse-layout,
  .role-list-wide,
  .career-role-grid,
  .sample-report {
    grid-template-columns: 1fr;
  }

  .hard-facing-gallery-wide {
    grid-column: auto;
  }

  .turning-carousel-track {
    grid-auto-columns: 100%;
  }

  .turning-image-button {
    height: 220px;
  }

  .machining-grinding-carousel .turning-carousel-track {
    grid-auto-columns: 100%;
  }

  .machining-grinding-carousel .turning-image-button {
    height: 240px;
  }

  .heat-treatment-image-carousel .heat-treatment-feature-button,
  .heat-treatment-image-carousel .turning-image-button {
    height: 240px;
  }

  .heat-treatment-image-carousel .turning-carousel-button {
    top: calc(240px + 28px + 120px);
  }

  .rolling-mill-rolls-image-carousel .rolling-mill-rolls-feature-button {
    height: 240px;
  }

  .rolling-mill-rolls-image-carousel .turning-carousel-track {
    grid-auto-columns: 100%;
  }

  .rolling-mill-rolls-image-carousel .turning-carousel-track .turning-image-button {
    height: 280px;
  }

  .rolling-mill-rolls-image-carousel .turning-carousel-button {
    top: calc(240px + 20px + 140px);
  }

  .turning-carousel-button {
    width: 36px;
    height: 48px;
  }

  .turning-lightbox-panel {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    gap: 12px;
  }

  .turning-lightbox-main {
    min-height: 52vh;
  }

  .turning-lightbox-main img {
    max-height: calc(100vh - 154px);
  }

  .turning-lightbox-thumbs {
    grid-auto-flow: column;
    grid-auto-columns: 72px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .turning-lightbox-nav {
    width: 40px;
    height: 56px;
  }

  .turning-lightbox-nav.next {
    right: 8px;
  }

  .qhse-method-feature.image-left figure {
    order: 0;
  }

  .qhse-closing-panel {
    display: grid;
  }

  .casting-request-layout {
    gap: 24px;
  }

  .career-application-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .career-application-form h3,
  .career-application-form .eyebrow,
  .career-application-form .full {
    grid-column: auto;
  }

  .career-role-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    padding: 22px 20px 22px 24px;
  }

  .career-role-meta {
    display: flex;
    flex-wrap: wrap;
  }

  .role-apply-button {
    justify-self: start;
  }

  .role-list-wide li {
    min-height: 0;
    padding: 22px 20px 22px 70px;
  }

  .casting-preview-panel,
  .rfq-form {
    padding: 18px;
  }

  .casting-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-specs,
  .dimension-preview,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .rfq-form .full {
    grid-column: auto;
  }

  .area-tiles {
    gap: 28px;
  }

  .area-tile {
    gap: 14px;
  }

  .area-tile-image {
    aspect-ratio: 16 / 9;
    clip-path: none;
  }

  .buyer-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
    padding: 26px;
  }

  .buyer-icon {
    width: 76px;
    height: 76px;
  }

  .buyer-icon svg {
    width: 38px;
    height: 38px;
  }

  .page-hero {
    padding: 42px 18px;
  }

  .page-hero h1.eyebrow {
    font-size: 2rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .page-hero img {
    max-height: 300px;
  }

  .page-company .page-hero img {
    min-height: 0;
    max-height: 280px;
    aspect-ratio: 16 / 9;
  }

  .page-contact .page-hero img {
    width: 100%;
    max-height: 300px;
    justify-self: center;
    aspect-ratio: 3 / 2;
    object-position: center;
  }

  .wheel-photo-grid {
    grid-template-columns: 1fr;
  }

  .wheel-section-graphic {
    min-height: 610px;
  }

  .wheel-section-body {
    height: 220px;
  }

  .wheel-callouts {
    top: 276px;
  }

  .traceability-table,
  .traceability-table tbody,
  .traceability-table tr,
  .traceability-table th,
  .traceability-table td {
    display: block;
    width: 100%;
  }

  .traceability-table th,
  .traceability-table td {
    border: 1px solid var(--steel-strong);
    border-radius: 8px;
  }

  .traceability-table td {
    margin-top: -1px;
    border-radius: 0 0 8px 8px;
  }

  .traceability-table th {
    border-radius: 8px 8px 0 0;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-request-options {
    grid-template-columns: 1fr;
  }

  .callback-time-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .callback-details-grid {
    grid-template-columns: 1fr;
  }

  .wheel-section-graphic {
    min-height: 640px;
  }

  .wheel-section-body {
    left: 18px;
    top: 28px;
    bottom: auto;
    width: calc(100% - 36px);
  }

  .wheel-callouts {
    left: 18px;
    right: 18px;
    top: 292px;
    width: auto;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .form-status {
    min-height: 24px;
  }

  .site-footer {
    min-height: 430px;
    padding: 42px 18px 18px;
  }

  .footer-map {
    inset: -10% -42%;
    background-size: cover;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer img {
    width: 156px;
  }

  .footer-right,
  .site-footer nav,
  .footer-contact,
  .footer-bottom {
    justify-items: start;
    justify-content: flex-start;
    text-align: left;
  }

  .footer-contact a {
    justify-self: start;
  }

  .footer-contact-actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    margin-top: 4px;
  }
}
