:root {
  --ink: #061833;
  --ink-soft: #163254;
  --muted: #5d6f87;
  --line: #dce4ef;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-cool: #edf3f8;
  --navy: #052642;
  --navy-2: #03182c;
  --accent: #f6b800;
  --accent-dark: #d49c00;
  --green: #54b96d;
  --shadow: 0 18px 50px rgba(6, 24, 51, 0.12);
  --max: 1180px;
  --header-height: 76px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.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: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 80% 20%, rgba(84, 185, 109, 0.16), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: #fff;
}

.brand-mark {
  width: 63px;
  height: 63px;
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
}

.brand strong,
.brand em {
  display: inline;
  font-style: normal;
  line-height: 1.02;
}

.brand strong {
  font-size: 22px;
  font-weight: 780;
}

.brand em {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 650;
}

.brand strong + em {
  margin-left: 4px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  padding: 28px 0 26px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #fff;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.primary-nav a[aria-current="page"] {
  color: #fff;
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.language-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.language-switch button.active {
  color: #fff;
}

.language-switch span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.32);
}

.menu-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-button svg,
.button svg,
.text-link svg,
.dialog-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button .close-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 16px auto;
  z-index: 45;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 14px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 700;
}

.mobile-menu a:hover {
  background: var(--surface-soft);
}

.mobile-menu.open {
  display: flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #091626;
  box-shadow: 0 10px 24px rgba(246, 184, 0, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc526;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: #aebaca;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink-soft);
  box-shadow: 0 10px 22px rgba(6, 24, 51, 0.08);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.section-band,
.section {
  position: relative;
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 46px max(28px, calc((100vw - var(--max)) / 2)) 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(circle at 12% 20%, rgba(246, 184, 0, 0.08), transparent 30%),
    #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(6, 24, 51, 0.05) 1px, transparent 1px),
    linear-gradient(150deg, rgba(6, 24, 51, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 60%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.section-line {
  width: 34px;
  height: 4px;
  margin: 0 0 22px;
  background: var(--accent);
  border-radius: 4px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 820;
}

.hero-statement {
  margin: 18px 0 0;
  max-width: 540px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 760;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  margin-right: calc((var(--max) - 100vw) / 2);
  min-height: 430px;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: -24px 34px 70px rgba(6, 24, 51, 0.13);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.scroll-cue {
  position: absolute;
  left: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 84px max(28px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 36px;
}

.section-heading h2,
.global-copy h2,
.careers-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.12;
  font-weight: 810;
}

.section-heading p,
.global-copy p,
.careers-heading p {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--muted);
}

.about-section .section-heading p[data-about-field="company_intro"] {
  max-width: 100%;
}

.contact-section .section-heading > p:not(.section-line) {
  max-width: 80%;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.row-heading > p {
  max-width: 460px;
  margin: 0;
}

.compact-heading {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.compact-heading .section-line {
  margin-left: auto;
  margin-right: auto;
}

.about-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  margin-bottom: 2em;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: start;
}

.about-copy {
  color: var(--ink-soft);
}

.about-copy > p:last-of-type {
  margin-bottom: 13em;
}

html[lang="en"] .about-copy > p:last-of-type {
  margin-bottom: 4em;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
}

.metric-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.metric-list dt {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  font-weight: 820;
}

.metric-list dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.metric-extra-card:has(dt:empty) {
  display: none;
}

.metric-extra-card {
  width: 300%;
  transform: translateX(248px);
}

.about-products {
  margin-top: 42px;
}

.about-product-grid {
  width: min(100%, var(--max));
  grid-template-columns: repeat(var(--products-per-row, 4), minmax(0, 1fr));
  gap: 22px;
}

.facility-gallery {
  display: grid;
  gap: 16px;
}

.facility-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.16s ease;
}

.facility-gallery img.is-loaded {
  opacity: 1;
}

.facility-main {
  height: 270px;
}

.facility-strip {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 14px;
}

.facility-strip img {
  height: 150px;
}

.global-band {
  padding: 88px max(28px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 80% 20%, rgba(84, 185, 109, 0.16), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.global-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 42px;
  align-items: center;
}

.global-copy h2,
.global-copy p {
  color: #fff;
}

.global-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.location-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.location-list li {
  position: relative;
  padding-left: 24px;
}

.location-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.location-list strong,
.location-list span {
  display: block;
}

.location-list strong {
  font-size: 15px;
}

.location-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.location-list .branch-address {
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.location-list .branch-contact {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.location-list .branch-contact a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-panel {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 42%, rgba(255, 255, 255, 0.2), transparent 1px),
    radial-gradient(circle at 64% 48%, rgba(255, 255, 255, 0.18), transparent 1px),
    radial-gradient(circle at 75% 62%, rgba(255, 255, 255, 0.18), transparent 1px),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.map-panel.map-image-panel {
  min-height: 0;
  aspect-ratio: 1113 / 606;
  border-color: rgba(255, 255, 255, 0.32);
  background: #fff;
}

.map-image-panel::before,
.map-image-panel::after {
  display: none;
}

.map-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  inset: 42px 48px;
  opacity: 0.24;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(255, 255, 255, 0.85) 0 9%, transparent 9.5%),
    radial-gradient(ellipse at 31% 34%, rgba(255, 255, 255, 0.85) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 50% 33%, rgba(255, 255, 255, 0.85) 0 12%, transparent 12.5%),
    radial-gradient(ellipse at 62% 51%, rgba(255, 255, 255, 0.85) 0 14%, transparent 14.5%),
    radial-gradient(ellipse at 74% 67%, rgba(255, 255, 255, 0.85) 0 8%, transparent 8.5%);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
}

.map-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translate(-9px, -9px);
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.map-point::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 5px solid var(--accent);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 8px rgba(246, 184, 0, 0.11);
}

.solutions-section,
.news-section {
  background: var(--surface-soft);
}

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

.capability-card,
.job-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.capability-card {
  min-height: 184px;
  padding: 24px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.capability-card:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 184, 0, 0.72);
  box-shadow: 0 18px 36px rgba(6, 24, 51, 0.08);
}

.capability-card svg {
  width: 34px;
  height: 34px;
  color: var(--ink);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card h3,
.showcase-copy h3,
.news-card h3,
.job-card h3,
.form-heading h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 780;
}

.capability-card p,
.showcase-copy p,
.news-card p,
.job-card p,
.form-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-showcase {
  width: min(100%, var(--max));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 32px;
  align-items: center;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.showcase-copy h3 {
  margin-top: 0;
  font-size: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 760;
}

.text-link svg {
  color: var(--accent-dark);
}

.showcase-images {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 176px 176px;
  gap: 14px;
}

.showcase-images img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.showcase-images img:first-child {
  grid-row: span 2;
}

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

.industry-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(2, 12, 24, 0.78));
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 220ms ease;
}

.industry-card:hover img {
  transform: scale(1.04);
}

.industry-card h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

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

.news-card {
  padding: 24px;
}

.news-card-image {
  width: 100%;
  height: 180px;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
}

.news-dialog-image {
  width: 100%;
  max-height: 360px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.news-rich-content {
  color: var(--ink-soft);
  line-height: 1.75;
}

.news-rich-content h2,
.news-rich-content h3 {
  margin: 26px 0 10px;
  color: var(--ink);
}

.news-rich-content img {
  display: block;
  max-width: 100%;
  max-height: 620px;
  margin: 22px auto;
  border-radius: 8px;
  object-fit: contain;
}

.news-rich-content blockquote {
  margin: 20px 0;
  padding: 12px 18px;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
}

.news-rich-content a {
  color: #1768a6;
  text-decoration: underline;
}

.product-page-section {
  background: #fff;
}

.product-rich-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.75;
}

.product-rich-content::after {
  content: "";
  display: block;
  clear: both;
}

.product-rich-content h2,
.product-rich-content h3 {
  margin: 30px 0 12px;
  color: var(--ink);
}

.product-rich-content img {
  display: block;
  max-width: 100%;
  max-height: 720px;
  margin: 26px auto;
  border-radius: 8px;
  object-fit: contain;
}

.product-rich-content img[style] {
  max-height: none;
}

.product-rich-content blockquote {
  margin: 22px 0;
  padding: 14px 20px;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
}

.product-rich-content a {
  color: #1768a6;
  text-decoration: underline;
}

[data-about-field] {
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.product-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(var(--products-per-row, 4), minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(10, 36, 69, 0.12);
}

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

.product-card strong {
  display: block;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 18px;
}

.job-dialog.product-dialog,
.job-dialog.news-detail-dialog,
.job-dialog.career-dialog {
  width: min(1880px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  padding: 56px;
}

.job-dialog.product-dialog {
  overflow: hidden;
}

.job-dialog.product-dialog [data-product-dialog-content] {
  max-height: calc(100vh - 136px);
  overflow: auto;
  padding-right: 12px;
}

.job-dialog.product-dialog .product-rich-content,
.job-dialog.news-detail-dialog .news-rich-content {
  width: 100%;
  max-width: none;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.product-detail-layout.is-vertical {
  grid-template-columns: 1fr;
}

.product-detail-images,
.product-detail-text {
  min-width: 0;
  height: 100%;
}

.product-detail-images {
  align-content: start;
  padding: 0;
}

.product-detail-images p,
.product-detail-images div {
  min-height: 1.75em;
  margin: 1em 0;
}

.product-detail-images .product-image-row {
  margin: 0;
}

.product-detail-images img {
  width: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
}

.product-detail-images img:not([style]) {
  width: 100%;
}

.product-detail-text {
  padding: 0;
}

.product-detail-cover {
  width: 100%;
  max-height: min(1200px, 72vh);
  margin-bottom: 38px;
  border-radius: 8px;
  object-fit: contain;
}

.news-card span {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.news-card h3 {
  min-height: 86px;
  font-size: 19px;
}

.news-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.careers-band {
  padding: 84px max(28px, calc((100vw - var(--max)) / 2));
  background: #fff;
}

.careers-heading {
  width: min(100%, var(--max));
  margin: 0 auto 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.job-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.job-card {
  display: grid;
  min-height: 188px;
  padding: 20px;
}

.job-card h3 {
  margin-top: 0;
  font-size: 16px;
}

.job-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.job-card p svg,
.contact-card svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.job-card button {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.job-card button svg {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.application-form {
  width: min(100%, var(--max));
  margin: 42px auto 0;
  padding: 28px;
  border-radius: 8px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.form-heading h3 {
  margin-top: 0;
  font-size: 22px;
}

.form-heading p {
  max-width: 440px;
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 720;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #ccd7e5;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(246, 184, 0, 0.18);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.checkbox-row input {
  width: 16px;
  min-height: 16px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.contact-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.22fr 0.88fr;
  gap: 20px;
  align-items: stretch;
}

.contact-card,
.contact-form,
.map-card {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-card {
  display: grid;
  gap: 18px;
  font-style: normal;
  color: var(--muted);
}

.contact-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-card figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: #fff;
}

.map-card figcaption a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(28px, calc((100vw - var(--max)) / 2));
  background: #fff;
  color: #111;
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: #111;
}

.footer-brand em {
  color: #111;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.site-footer a {
  color: #111;
}

.footer-links a:hover {
  color: #000;
}

.job-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(780px, calc(100vh - 48px));
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.job-dialog::backdrop {
  background: rgba(3, 14, 27, 0.58);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.product-dialog .dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.job-dialog h2 {
  margin: 0 48px 8px 0;
  font-size: 30px;
  line-height: 1.16;
}

.job-dialog p {
  color: var(--muted);
}

.job-dialog h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.job-dialog ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  color: var(--ink-soft);
}

.job-dialog li {
  position: relative;
  padding-left: 24px;
}

.job-dialog li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .primary-nav,
  .header-actions .button-small {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-grid,
  .about-layout,
  .global-content,
  .solution-showcase,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    margin-right: 0;
    min-height: 420px;
    border-radius: 8px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .capability-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .job-dialog.product-dialog,
  .job-dialog.news-detail-dialog,
  .job-dialog.career-dialog {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    padding: 42px 18px 24px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail-cover {
    max-height: 62vh;
    margin-bottom: 24px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand em {
    font-size: 13px;
  }

  .language-switch {
    display: none;
  }

  .hero,
  .section,
  .global-band,
  .careers-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 44px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-statement {
    font-size: 23px;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media {
    min-height: 310px;
  }

  .hero-media img {
    min-height: 310px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .global-copy h2,
  .careers-heading h2 {
    font-size: 31px;
  }

  .row-heading,
  .careers-heading,
  .form-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .capability-grid,
  .industry-grid,
  .news-grid,
  .job-grid,
  .form-grid,
  .facility-strip {
    grid-template-columns: 1fr;
  }

  .facility-main,
  .facility-strip img {
    height: 220px;
  }

  .map-panel {
    min-height: 330px;
  }

  .map-point {
    font-size: 11px;
  }

  .showcase-images {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .showcase-images img:first-child {
    grid-row: auto;
  }

  .application-form,
  .contact-card,
  .contact-form {
    padding: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .toast {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
