:root {
  --ink: #111827;
  --muted: #52687c;
  --line: #9bc5dd;
  --soft-line: #b7d8e9;
  --paper: #d4eaf6;
  --mist: #bddbeb;
  --navy: #0b1f35;
  --navy-2: #102a43;
  --blue: #1769aa;
  --blue-2: #22a6c7;
  --red: #e31b23;
  --red-dark: #b9151c;
  --steel: #6f7d8e;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.45rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  background: rgba(226, 242, 250, 0.96);
  border-bottom: 1px solid rgba(112, 166, 198, 0.58);
  backdrop-filter: blur(16px);
  transition: transform 360ms ease, opacity 360ms ease, box-shadow 360ms ease;
}

.home-page .site-header {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-105%);
}

.home-page.header-visible .site-header,
.home-page .site-header:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 14px 32px rgba(7, 20, 34, 0.12);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(168px, 22vw, 250px);
  height: auto;
}

.brand-text {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #20334a;
  font-size: 0.93rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 0.65rem 0.72rem;
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a.is-active {
  color: #0f5d98;
  background: #cce7f6;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #edf8fd;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  --mx: 0;
  --my: 0;
  --stage-x: 0px;
  --stage-y: 0px;
  --robot-x: 0px;
  --robot-y: 0px;
  --data-x: 0px;
  --data-y: 0px;
  --track-shoulder: 0deg;
  --track-elbow: 0deg;
  --track-wrist: 0deg;
  background:
    linear-gradient(118deg, rgba(4, 21, 39, 0.98), rgba(8, 55, 96, 0.94) 53%, rgba(14, 96, 146, 0.86)),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.06) 42% 43%, transparent 43% 68%, rgba(34, 166, 199, 0.12) 68% 69%, transparent 69%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 38px),
    #071422;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 42%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 166, 199, 0.7), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(4.4rem, 7vw, 6.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.4rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--red);
}

.hero h1,
.page-hero h1 {
  margin: 0 0 1.2rem;
  font-family: "Sora", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2.35rem, 4.8vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4.2vw, 4.15rem);
}

.hero h1.hero-logo-title {
  margin: 0 0 1.2rem;
  font-size: 0;
  line-height: 1;
}

.hero-logo-mark {
  position: relative;
  display: block;
  width: min(820px, 100%);
  max-height: 280px;
  aspect-ratio: 2172 / 724;
}

.hero-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.hero p {
  max-width: 60ch;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 24px rgba(23, 105, 170, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  background: #0f5d98;
  box-shadow: 0 16px 30px rgba(23, 105, 170, 0.3);
}

.button.outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.button.outline:hover,
.button.outline:focus {
  background: rgba(255, 255, 255, 0.14);
}

.button.light {
  color: var(--navy);
  background: #d6edf8;
  box-shadow: none;
}

.button.small {
  min-height: 38px;
  padding: 0.62rem 0.82rem;
  font-size: 0.9rem;
}

.hero-stage {
  position: relative;
  height: min(47vw, 500px);
  min-height: 390px;
  cursor: crosshair;
  transform: translate3d(var(--stage-x), var(--stage-y), 0);
  transition: transform 140ms ease-out;
}

.robot-arm {
  position: absolute;
  right: 2%;
  bottom: 20%;
  width: 360px;
  height: 318px;
  --robot-scale: 1;
  transform: translate3d(var(--robot-x), var(--robot-y), 0) scale(var(--robot-scale));
  transform-origin: 70% 100%;
  transition: transform 140ms ease-out;
}

.robot-shadow {
  position: absolute;
  left: 48px;
  right: 26px;
  bottom: -7px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  filter: blur(8px);
}

.robot-base {
  position: absolute;
  left: 88px;
  bottom: 0;
  width: 138px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #eef6fd, #a9bdd0 58%, #7f93a8);
  box-shadow: inset 0 -8px 0 rgba(16, 42, 67, 0.18), 0 16px 26px rgba(0, 0, 0, 0.24);
}

.robot-base::before {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  top: -18px;
  height: 20px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #dfeaf5, #9fb3c8);
}

.robot-pedestal {
  position: absolute;
  left: 123px;
  bottom: 42px;
  width: 68px;
  height: 64px;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(90deg, #8aa1b7, #e5eef7 45%, #99adbf);
  box-shadow: inset -9px 0 0 rgba(16, 42, 67, 0.14);
}

.robot-shoulder,
.robot-elbow,
.robot-wrist {
  position: absolute;
  width: 0;
  height: 0;
  transform-origin: 0 0;
}

.robot-shoulder {
  left: 156px;
  bottom: 108px;
  animation: shoulder-cycle 6.2s cubic-bezier(.55, .05, .25, 1) infinite;
}

.robot-joint {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.16) 26%, transparent 27%),
    linear-gradient(145deg, #1d79bd, #0d426f);
  border: 7px solid #e6f0f8;
  box-shadow: inset 0 -7px 0 rgba(6, 27, 48, 0.22), 0 10px 18px rgba(0, 0, 0, 0.28);
}

.shoulder-joint {
  left: -34px;
  top: -34px;
  width: 68px;
  height: 68px;
}

.robot-upper {
  position: absolute;
  left: -18px;
  bottom: 0;
  width: 36px;
  height: 136px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a5b9cc, #f5f9fc 46%, #a9bccf);
  box-shadow: inset -8px 0 0 rgba(16, 42, 67, 0.12), 0 10px 18px rgba(0, 0, 0, 0.18);
}

.robot-upper::before,
.robot-forearm::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(23, 105, 170, 0.76);
}

.robot-upper::before {
  left: 14px;
  top: 18px;
  width: 8px;
  height: 96px;
}

.robot-elbow {
  left: 18px;
  top: 0;
  animation: elbow-cycle 6.2s cubic-bezier(.55, .05, .25, 1) infinite;
}

.elbow-joint {
  left: -28px;
  top: -28px;
  width: 56px;
  height: 56px;
  border-width: 6px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.14) 25%, transparent 26%),
    linear-gradient(145deg, #e31b23, #9f1117);
}

.robot-forearm {
  position: absolute;
  left: 0;
  top: -16px;
  width: 140px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3f8fc, #b6c9da 55%, #8096aa);
  box-shadow: inset 0 -7px 0 rgba(16, 42, 67, 0.14), 0 10px 18px rgba(0, 0, 0, 0.2);
}

.robot-forearm::before {
  left: 26px;
  top: 12px;
  width: 84px;
  height: 7px;
}

.robot-wrist {
  left: 140px;
  top: 16px;
  animation: wrist-cycle 6.2s cubic-bezier(.55, .05, .25, 1) infinite;
}

.wrist-joint {
  left: -19px;
  top: -19px;
  width: 38px;
  height: 38px;
  border-width: 5px;
}

.robot-gripper {
  position: absolute;
  left: 19px;
  top: -12px;
  width: 66px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f7fbff, #b7cadb);
  box-shadow: inset 0 -6px 0 rgba(16, 42, 67, 0.14), 0 10px 18px rgba(0, 0, 0, 0.2);
}

.robot-gripper::before,
.robot-gripper::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 8px;
  height: 36px;
  border-radius: 4px;
  background: #edf5fb;
  transform-origin: top center;
  animation: claw-cycle 6.2s ease-in-out infinite;
}

.robot-gripper::before {
  left: 10px;
}

.robot-gripper::after {
  right: 10px;
}

.conveyor {
  position: absolute;
  left: 1%;
  right: 1%;
  bottom: 8%;
  height: 96px;
}

.conveyor::before,
.conveyor::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 38px;
  border-radius: 6px 6px 0 0;
  background: rgba(198, 219, 235, 0.72);
}

.conveyor::before {
  left: 18%;
}

.conveyor::after {
  right: 18%;
}

.conveyor-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 38px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 45%),
    repeating-linear-gradient(90deg, #dce9f3 0 28px, #9db7cc 28px 32px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  animation: belt 1.4s linear infinite;
}

.package {
  position: absolute;
  top: 0;
  width: 54px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: linear-gradient(145deg, #eef7fc, #9fb8cb);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  animation: package-move 6s linear infinite;
}

.package::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 8px;
  height: 5px;
  border-radius: 999px;
  background: rgba(227, 27, 35, 0.72);
}

.package::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(17, 24, 39, 0.18);
}

.package:nth-child(2) {
  animation-delay: -2s;
  transform: scale(0.88);
}

.package:nth-child(3) {
  animation-delay: -4.1s;
  transform: scale(1.08);
}

.data-pulse {
  position: absolute;
  right: 8%;
  top: 16%;
  width: 120px;
  display: grid;
  gap: 9px;
  transform: translate3d(var(--data-x), var(--data-y), 0);
  transition: opacity 160ms ease, transform 140ms ease-out;
}

.data-pulse span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(34, 166, 199, 0.85);
  animation: pulse-bars 2.4s ease-in-out infinite;
}

.data-pulse span:nth-child(2) {
  width: 72%;
  animation-delay: 0.25s;
}

.data-pulse span:nth-child(3) {
  width: 46%;
  animation-delay: 0.5s;
}

@keyframes belt {
  from { background-position: 0 0; }
  to { background-position: 32px 0; }
}

@keyframes package-move {
  from { left: -54px; }
  to { left: calc(100% + 20px); }
}

@keyframes pulse-bars {
  0%, 100% { opacity: 0.32; transform: scaleX(0.72); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes shoulder-cycle {
  0%, 100% { transform: rotate(calc(-17deg + var(--track-shoulder))); }
  28% { transform: rotate(calc(10deg + var(--track-shoulder))); }
  46%, 54% { transform: rotate(calc(18deg + var(--track-shoulder))); }
  72% { transform: rotate(calc(-7deg + var(--track-shoulder))); }
}

@keyframes elbow-cycle {
  0%, 100% { transform: rotate(calc(62deg + var(--track-elbow))); }
  28% { transform: rotate(calc(92deg + var(--track-elbow))); }
  46%, 54% { transform: rotate(calc(106deg + var(--track-elbow))); }
  72% { transform: rotate(calc(52deg + var(--track-elbow))); }
}

@keyframes wrist-cycle {
  0%, 100% { transform: rotate(calc(-18deg + var(--track-wrist))); }
  28% { transform: rotate(calc(-38deg + var(--track-wrist))); }
  46%, 54% { transform: rotate(calc(-55deg + var(--track-wrist))); }
  72% { transform: rotate(calc(-4deg + var(--track-wrist))); }
}

@keyframes claw-cycle {
  0%, 35%, 68%, 100% { transform: rotate(0deg); }
  46%, 54% { transform: rotate(13deg); }
}

.robot-gripper::after {
  animation-name: claw-cycle-right;
}

@keyframes claw-cycle-right {
  0%, 35%, 68%, 100% { transform: rotate(0deg); }
  46%, 54% { transform: rotate(-13deg); }
}

.hero.is-directing .data-pulse span {
  opacity: 1;
}

.hero.is-directing .robot-shoulder,
.hero.is-directing .robot-elbow,
.hero.is-directing .robot-wrist,
.hero.is-directing .robot-gripper::before,
.hero.is-directing .robot-gripper::after {
  animation-duration: 4.2s;
}

.hero.is-directing .data-pulse {
  transform: translate3d(var(--data-x), var(--data-y), 0) scale(1.06);
}

.hero.is-directing .data-pulse span {
  background: rgba(104, 211, 239, 0.98);
  box-shadow: 0 0 14px rgba(34, 166, 199, 0.48);
}

.hero.is-directing .conveyor-track {
  animation-duration: 1s;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(5, 25, 45, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.hero-scroll-cue span {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.86);
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
  transform: rotate(45deg);
  animation: scroll-cue 1.6s ease-in-out infinite;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus {
  background: rgba(23, 105, 170, 0.5);
}

@keyframes scroll-cue {
  0%, 100% { opacity: 0.45; transform: translateY(-3px) rotate(45deg); }
  50% { opacity: 1; transform: translateY(4px) rotate(45deg); }
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #c7e3f2, #a9d0e6);
}

.section.tight {
  padding: clamp(2rem, 4vw, 3.2rem) 0;
}

#home-details {
  scroll-margin-top: calc(var(--header-height) + 1.2rem);
}

.section.light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(180deg, #b8dceb, #91c2dc);
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 31, 53, 0.96), rgba(23, 105, 170, 0.85)),
    #0b1f35;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .eyebrow::before {
  display: none;
}

.section-heading h2,
.page-hero h1,
.content-block h2,
.solution-intro h2 {
  margin: 0 0 1rem;
  font-family: "Sora", "Inter", "Segoe UI", sans-serif;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-heading p,
.dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 1.1rem;
}

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

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

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

.card {
  border: 1px solid rgba(100, 159, 193, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d7edf7, #b9daeb);
  box-shadow: 0 12px 30px rgba(13, 65, 101, 0.12);
}

.card.pad {
  padding: 1.25rem;
}

.card h3 {
  margin: 0 0 0.65rem;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

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

.card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(92, 154, 190, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d8eef8, #b7d9eb);
  box-shadow: 0 12px 30px rgba(13, 65, 101, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card-link:hover,
.card-link:focus {
  transform: translateY(-4px);
  border-color: rgba(23, 105, 170, 0.38);
  box-shadow: var(--shadow);
}

.card-link .kicker {
  margin-bottom: 0.6rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-link .arrow {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--blue);
  font-weight: 900;
}

.solution-browser-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.solution-browser-heading h2 {
  margin: 0 0 0.8rem;
  color: #122840;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1.12;
}

.solution-browser-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.solution-jump-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: clamp(3.2rem, 7vw, 5.2rem);
}

.solution-jump-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.8rem;
  min-height: 88px;
  padding: 1rem 2.5rem 1rem 1rem;
  border: 1px solid rgba(82, 148, 187, 0.52);
  border-radius: var(--radius);
  background: rgba(221, 241, 250, 0.7);
  box-shadow: 0 8px 20px rgba(13, 65, 101, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solution-jump-nav a::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-65%) rotate(45deg);
}

.solution-jump-nav a:hover,
.solution-jump-nav a:focus {
  transform: translateY(-2px);
  border-color: rgba(23, 105, 170, 0.72);
  background: #d7effa;
}

.solution-jump-nav span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.solution-jump-nav strong {
  color: #122840;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

.solution-jump-nav small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.solution-groups {
  display: grid;
  gap: clamp(3.5rem, 8vw, 6rem);
}

.solution-group {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74, 140, 180, 0.45);
}

.solution-group-heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin-bottom: 1.5rem;
  align-items: start;
}

.solution-group-heading > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 105, 170, 0.38);
  border-radius: 6px;
  color: var(--red);
  background: rgba(224, 243, 251, 0.75);
  font-size: 0.78rem;
  font-weight: 900;
}

.solution-group-heading h2 {
  margin: 0 0 0.4rem;
  color: #122840;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  line-height: 1.15;
}

.solution-group-heading p {
  margin: 0;
  color: var(--muted);
}

.solution-card-grid {
  display: grid;
  gap: 1.05rem;
  align-items: stretch;
}

.solution-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-card-grid.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 790px;
}

.solution-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(92, 154, 190, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d8eef8, #b7d9eb);
  box-shadow: 0 10px 26px rgba(13, 65, 101, 0.1);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover {
  border-color: rgba(23, 105, 170, 0.48);
  box-shadow: 0 16px 34px rgba(13, 65, 101, 0.15);
}

.solution-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0)),
    #d8edf7;
  border-bottom: 1px solid rgba(92, 154, 190, 0.35);
}

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

.solution-card-media:hover img,
.solution-card-media:focus img {
  transform: scale(1.025);
}

.solution-card-media.contain {
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(220, 240, 249, 0.68)),
    #f4fbfe;
}

.solution-card-media.contain img {
  object-fit: contain;
}

.solution-card-body {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.solution-card-body .kicker {
  margin-bottom: 0.45rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.solution-card-body h3 {
  margin: 0 0 0.55rem;
  color: #122840;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.solution-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.solution-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
}

.solution-card-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(23, 105, 170, 0.34);
  border-radius: 6px;
  color: #0d568c;
  background: rgba(226, 243, 251, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.solution-card-links a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 0.4rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.solution-card-links a:hover,
.solution-card-links a:focus {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.solution-card-links a.primary {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.solution-card-links a.primary:hover,
.solution-card-links a.primary:focus {
  border-color: #0f5d98;
  background: #0f5d98;
}

.solution-card-links.compact {
  gap: 0.35rem;
}

.solution-card-links.compact a {
  min-height: 32px;
  padding: 0.36rem 0.48rem;
  font-size: 0.76rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 0;
  padding-left: 1.55rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(82, 147, 185, 0.56);
  border-radius: var(--radius);
  background: #83b7d4;
  box-shadow: 0 16px 38px rgba(13, 65, 101, 0.18);
}

.stat {
  padding: 1.3rem;
  background: linear-gradient(180deg, #d3eaf6, #aed4e8);
}

.stat strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--blue);
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.industry-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(80, 145, 184, 0.5);
  border-radius: 999px;
  background: #d5ecf7;
  color: #20334a;
  font-weight: 800;
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(11, 31, 53, 0.97), rgba(18, 75, 123, 0.9)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 42px),
    #0b1f35;
}

.page-hero .container {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.career-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(122deg, rgba(5, 21, 39, 0.98), rgba(12, 75, 122, 0.95) 58%, rgba(18, 116, 162, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 44px),
    #0b1f35;
}

.career-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -34% 28%;
  height: 65%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 166, 199, 0.32), rgba(34, 166, 199, 0));
  pointer-events: none;
}

.career-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 16%;
  width: 160px;
  height: 3px;
  background: var(--red);
  box-shadow: 0 28px 0 rgba(255, 255, 255, 0.16), 0 56px 0 rgba(34, 166, 199, 0.32);
  transform: skewX(-28deg);
  pointer-events: none;
}

.career-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.career-hero .container {
  padding: clamp(3.4rem, 6vw, 5rem) 0;
}

.career-hero h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 4vw, 4.1rem);
  line-height: 1.06;
}

.career-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
}

.career-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 720px;
  margin-top: 1.8rem;
}

.career-hero-metrics div {
  min-height: 108px;
  padding: 1rem;
  border: 1px solid rgba(172, 224, 244, 0.2);
  border-radius: var(--radius);
  background: rgba(3, 18, 32, 0.34);
  box-shadow: 0 18px 36px rgba(4, 18, 33, 0.18);
  backdrop-filter: blur(10px);
}

.career-hero-metrics strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1;
}

.career-hero-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  line-height: 1.3;
}

.career-visual {
  position: relative;
  min-height: 410px;
  isolation: isolate;
}

.career-visual::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 2%;
  bottom: 18%;
  height: 76px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 44%),
    repeating-linear-gradient(90deg, #dce9f3 0 34px, #8fb2cd 34px 39px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.28);
}

.career-visual::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 16%;
  bottom: 9%;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(10px);
}

.career-visual-panel {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  min-width: 190px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(196, 230, 246, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(216, 238, 248, 0.96), rgba(160, 205, 228, 0.92));
  color: var(--navy);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.career-visual-panel span {
  color: #1d668f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.career-visual-panel strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1rem;
}

.career-visual-panel.panel-one {
  left: 0;
  top: 15%;
}

.career-visual-panel.panel-two {
  right: 0;
  top: 46%;
}

.career-visual-track {
  position: absolute;
  z-index: 2;
  left: 15%;
  right: 18%;
  bottom: 29%;
  display: flex;
  justify-content: space-between;
}

.career-visual-track span {
  width: 54px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: linear-gradient(145deg, #eff8fc, #8dadc6);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.career-visual-track span::before {
  content: "";
  display: block;
  width: 26px;
  height: 5px;
  margin: 9px auto 0;
  border-radius: 999px;
  background: rgba(227, 27, 35, 0.72);
}

.career-visual-arm {
  position: absolute;
  z-index: 3;
  left: 43%;
  bottom: 38%;
  --career-arm-scale: 1;
  width: 118px;
  height: 168px;
  border-left: 24px solid #dce8f2;
  border-top: 24px solid #dce8f2;
  border-radius: 28px 0 0;
  transform: rotate(-14deg) scale(var(--career-arm-scale));
  transform-origin: left bottom;
  filter: drop-shadow(14px 18px 16px rgba(0, 0, 0, 0.3));
  animation: career-arm 7s ease-in-out infinite;
}

.career-visual-arm::before,
.career-visual-arm::after,
.career-visual-arm span {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #f5fbff, #7f9ab3);
  box-shadow: inset 0 -8px 0 rgba(16, 42, 67, 0.16);
}

.career-visual-arm::before {
  left: -44px;
  bottom: -30px;
  width: 62px;
  height: 62px;
}

.career-visual-arm::after {
  right: -30px;
  top: -42px;
  width: 58px;
  height: 58px;
}

.career-visual-arm span {
  right: -47px;
  top: 10px;
  width: 42px;
  height: 42px;
}

@keyframes career-arm {
  0%, 100% { transform: rotate(-14deg) scale(var(--career-arm-scale)); }
  48% { transform: rotate(-5deg) scale(var(--career-arm-scale)); }
}

.career-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(180deg, #b8dceb, #91c2dc);
}

#open-roles,
#apply {
  scroll-margin-top: calc(var(--header-height) + 1.2rem);
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.career-role-group + .career-role-group {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
}

.career-role-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(13, 79, 131, 0.24);
}

.career-role-heading span {
  color: var(--navy);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.career-role-heading a {
  color: #0d4f83;
  font-weight: 900;
  word-break: break-word;
}

.career-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.career-role-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(81, 144, 183, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #d9eef8, #b6d9ea);
  box-shadow: 0 14px 32px rgba(13, 65, 101, 0.13);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.career-role-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), var(--blue-2));
}

.career-role-card:hover,
.career-role-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(13, 79, 131, 0.5);
  box-shadow: 0 20px 44px rgba(13, 65, 101, 0.18);
}

.role-kicker {
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.34rem 0.58rem;
  border: 1px solid rgba(23, 105, 170, 0.24);
  border-radius: 999px;
  background: rgba(239, 248, 253, 0.86);
  color: #0d4f83;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.career-role-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.18rem;
  line-height: 1.25;
}

.career-role-card p {
  color: #40576e;
}

.career-role-card .feature-list {
  margin: 0.2rem 0 1.2rem;
  font-size: 0.96rem;
}

.career-role-card .button {
  align-self: start;
  margin-top: auto;
}

.career-apply-panel {
  position: sticky;
  top: calc(var(--header-height) + 1.4rem);
  padding: 1.25rem;
  border: 1px solid rgba(184, 220, 235, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(7, 28, 50, 0.97), rgba(13, 79, 131, 0.92)),
    #0b1f35;
  color: #fff;
  box-shadow: 0 22px 48px rgba(7, 25, 44, 0.24);
}

.career-apply-panel h2 {
  margin: 0 0 1rem;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.career-steps {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  counter-reset: career-step;
}

.career-steps li {
  position: relative;
  min-height: 62px;
  margin: 0;
  padding-left: 3rem;
}

.career-steps li::before {
  counter-increment: career-step;
  content: counter(career-step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.career-steps strong,
.career-steps span {
  display: block;
}

.career-steps strong {
  margin-bottom: 0.12rem;
  color: #fff;
}

.career-steps span,
.career-apply-panel .fine-print {
  color: rgba(255, 255, 255, 0.72);
}

.career-apply-note {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.career-apply-note strong {
  color: #fff;
}

.career-apply-note a {
  color: #d7f1ff;
  font-weight: 800;
  word-break: break-word;
}

.career-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.career-strip h2 {
  margin: 0 0 0.6rem;
  font-family: "Sora", "Inter", sans-serif;
}

.career-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.career-application-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(122deg, rgba(5, 21, 39, 0.98), rgba(12, 75, 122, 0.94) 58%, rgba(18, 116, 162, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 44px),
    #0b1f35;
}

.application-summary {
  padding: 1.1rem;
  border: 1px solid rgba(147, 199, 226, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(227, 27, 35, 0.1), transparent 42%),
    rgba(223, 241, 250, 0.12);
  box-shadow: 0 22px 55px rgba(4, 16, 30, 0.26);
}

.application-summary span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(214, 239, 250, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.application-summary strong {
  display: block;
  color: #fff;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.16;
}

.application-summary p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.application-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(180deg, #c4e2f1, #9cc8df);
}

#application-form {
  scroll-margin-top: calc(var(--header-height) + 1.2rem);
}

.application-form-card input[type="file"] {
  padding: 0.58rem;
}

.field-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.application-sidebar .contact-card:first-child .info-list a {
  color: #d7f1ff;
  font-weight: 800;
  word-break: break-word;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.solution-main {
  min-width: 0;
}

.solution-main h2,
.solution-main h3 {
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.18;
}

.solution-main h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.solution-main h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.25rem;
}

.solution-main .spec-list {
  margin: 1rem 0 0;
}

.media-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  border: 1px dashed #5f9fc3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    #94c0d8;
  color: #123a58;
  font-weight: 900;
  text-align: center;
}

.media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(91, 151, 187, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
    #d8edf7;
  box-shadow: 0 18px 42px rgba(13, 65, 101, 0.15);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.contain {
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(220, 240, 249, 0.7)),
    #f4fbfe;
}

.media-frame.contain img {
  width: min(82%, 560px);
  height: min(82%, 430px);
  object-fit: contain;
}

.side-panel {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  padding: 1.1rem;
  border: 1px solid rgba(91, 151, 187, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d9eef8, #b9dcec);
  box-shadow: 0 12px 30px rgba(13, 65, 101, 0.12);
}

.side-panel h2,
.side-panel h3 {
  margin: 0 0 0.9rem;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.08rem;
}

.side-nav {
  display: grid;
  gap: 0.75rem;
}

.side-nav-controls {
  display: grid;
  gap: 0.45rem;
}

.side-nav-group {
  appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 10px;
  gap: 0.55rem;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0.58rem 0.55rem;
  border: 1px solid rgba(91, 151, 187, 0.28);
  border-radius: 6px;
  color: #233c55;
  background: rgba(199, 229, 244, 0.62);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.side-nav-group::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #36759f;
  border-bottom: 2px solid #36759f;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.side-nav-group[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}

.side-nav-group:hover,
.side-nav-group.is-selected {
  color: #0d4f83;
  background: #c7e5f4;
}

.side-nav-group.is-selected {
  border-color: rgba(91, 151, 187, 0.52);
  box-shadow: inset 3px 0 0 var(--red);
}

.side-nav-group:focus {
  outline: none;
}

.side-nav-group:focus-visible {
  outline: 2px solid #1769aa;
  outline-offset: 2px;
}

.side-nav-number {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
}

.side-nav-title {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.side-nav-panels {
  min-height: 19.5rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(91, 151, 187, 0.34);
}

.side-nav-links {
  display: grid;
  gap: 0;
  align-content: start;
  padding: 0.35rem 0 0.15rem;
}

.side-nav-links[hidden] {
  display: none;
}

.side-nav-subheading,
.side-nav a {
  margin-top: 0.1rem;
  padding: 0.4rem 0.58rem;
  color: #31445b;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.side-nav a {
  border-radius: 6px;
}

.side-nav a.side-nav-child {
  margin-left: 0.72rem;
  padding-left: 0.68rem;
  border-left: 2px solid rgba(23, 105, 170, 0.25);
  border-radius: 0 6px 6px 0;
}

.side-nav a:hover,
.side-nav a:focus,
.side-nav a.is-active {
  color: #0d4f83;
  background: #c2e2f2;
}

.side-nav a.is-active {
  box-shadow: inset 3px 0 0 var(--red);
}

.download-note {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #09243e, #1769aa);
  color: #fff;
}

.contact-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

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

.logo-tile {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(91, 151, 187, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d8eef8, #b6d8ea);
  color: var(--navy);
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 900;
  text-align: center;
}

.partner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(122deg, rgba(5, 21, 39, 0.98), rgba(13, 71, 119, 0.95) 58%, rgba(20, 105, 157, 0.86)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 44px),
    #0b1f35;
}

.contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 166, 199, 0.78), transparent);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contact-hero h1 {
  max-width: 840px;
}

.contact-hero .hero-actions {
  margin-top: 1.5rem;
}

.contact-hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(147, 199, 226, 0.38);
  border-radius: var(--radius);
  background: rgba(147, 199, 226, 0.22);
  box-shadow: 0 22px 55px rgba(4, 16, 30, 0.26);
}

.contact-hero-panel div {
  padding: 1rem;
  background: rgba(223, 241, 250, 0.1);
}

.contact-hero-panel span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(214, 239, 250, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-hero-panel a,
.contact-hero-panel strong {
  display: block;
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(180deg, #c4e2f1, #9cc8df);
}

.form-card {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(91, 151, 187, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d9eef8, #b8daeb);
  box-shadow: var(--shadow);
}

.contact-form-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #d9eef8, #b2d7ea);
}

.form-intro {
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(91, 151, 187, 0.34);
}

.form-intro h2 {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.form-intro p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #22384f;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.72rem 0.78rem;
  border: 1px solid #bfccd9;
  border-radius: 6px;
  color: var(--ink);
  background: #eef8fd;
  font: inherit;
}

.contact-page input,
.contact-page select,
.contact-page textarea {
  border-color: rgba(82, 132, 164, 0.45);
  background: rgba(246, 252, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-page textarea {
  min-height: 170px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(34, 166, 199, 0.22);
  border-color: var(--blue);
}

.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
}

.form-footer .fine-print {
  margin: 0;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.success {
  color: #14532d;
  background: #dcfce7;
}

.form-status.error {
  color: #7f1d1d;
  background: #fee2e2;
}

.map-frame {
  overflow: hidden;
  border: 1px solid rgba(91, 151, 187, 0.52);
  border-radius: var(--radius);
  background: #8fbdd7;
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.contact-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.2rem);
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.15rem;
  border: 1px solid rgba(91, 151, 187, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d9eef8, #b7d9eb);
  box-shadow: 0 12px 30px rgba(13, 65, 101, 0.12);
}

.contact-card h2 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.contact-card p:last-child,
.contact-card .info-list {
  margin-bottom: 0;
}

.contact-sidebar .contact-card:first-child {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(147, 199, 226, 0.34);
  background:
    linear-gradient(135deg, rgba(227, 27, 35, 0.08), transparent 38%),
    linear-gradient(135deg, #09243e, #145d96);
}

.contact-sidebar .contact-card:first-child h2,
.contact-sidebar .contact-card:first-child .info-list strong {
  color: #fff;
}

.contact-sidebar .contact-card:first-child .info-list li {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.info-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.info-list li {
  margin: 0;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--soft-line);
}

.info-list strong {
  display: block;
  color: var(--navy);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #071422;
}

.footer-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.85fr;
  gap: 2rem;
}

.footer-logo {
  width: min(250px, 80%);
  margin-bottom: 1rem;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 8px);
    display: none;
    padding: 0.75rem;
    border: 1px solid var(--soft-line);
    border-radius: var(--radius);
    background: #d8edf7;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 0.2rem;
  }

  .primary-nav a {
    border-radius: 6px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 100vh;
    min-height: 100svh;
    padding: 4.8rem 0 4rem;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.6rem;
  }

  .hero-stage {
    height: min(38vh, 350px);
    min-height: 280px;
  }

  .robot-arm {
    right: 5%;
    bottom: 22%;
    --robot-scale: 0.86;
  }

  .split,
  .solution-layout,
  .contact-grid,
  .contact-hero-grid,
  .career-hero-grid,
  .career-layout,
  .career-strip,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .contact-sidebar,
  .career-apply-panel {
    position: static;
  }

  .career-visual {
    min-height: 340px;
  }

  .grid.three,
  .grid.four,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-jump-nav,
  .solution-card-grid.three,
  .solution-card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-card-grid.two {
    max-width: none;
  }

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

  .contact-strip {
    grid-template-columns: 1fr;
  }
}

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

  .nav-wrap,
  .container,
  .hero-inner,
  .footer-main {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 164px;
  }

  .hero-inner {
    padding-top: 2.4rem;
    padding-bottom: 3.4rem;
    gap: 0.9rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 11vw, 3.35rem);
  }

  .career-hero h1 {
    font-size: clamp(2.1rem, 9.4vw, 2.45rem);
  }

  .career-hero p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .contact-hero .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .contact-hero-panel div,
  .contact-card,
  .contact-form-card {
    padding: 1rem;
  }

  .hero-stage {
    height: min(31vh, 250px);
    min-height: 210px;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .robot-arm {
    right: -34%;
    bottom: 20%;
    --robot-scale: 0.62;
  }

  .conveyor {
    left: -10%;
    right: -6%;
  }

  .data-pulse {
    top: 8%;
    right: 2%;
    width: 92px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .logo-grid,
  .partner-row,
  .form-grid,
  .career-role-grid,
  .career-hero-metrics,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .solution-jump-nav,
  .solution-card-grid.two,
  .solution-card-grid.three,
  .solution-card-grid.four {
    grid-template-columns: 1fr;
  }

  .solution-group-heading {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .solution-group-heading > span {
    width: 38px;
    height: 38px;
  }

  .career-hero .container {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

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

  .career-hero-actions .button,
  .career-role-card .button,
  .career-strip .button,
  .form-footer .button {
    width: 100%;
  }

  .career-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .career-hero-metrics div {
    min-height: 0;
    padding: 0.72rem;
  }

  .career-hero-metrics strong {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .career-hero-metrics span {
    font-size: 0.72rem;
  }

  .career-visual {
    display: none;
  }

  .footer-bottom .container {
    display: grid;
  }
}
