:root {
  --navy: #071c2c;
  --blue: #0d3149;
  --red: #30256f;
  --accent-light: #8d84c3;
  --ink: #15212a;
  --muted: #60717e;
  --line: #dce3e7;
  --off: #f3f6f7;
  --white: #fff;
  --pad: clamp(24px, 6vw, 92px)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden
}

body.menu-open,
body.modal-open,
body.is-loading {
  overflow-x: hidden;
  overflow-y: auto
}

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

button {
  font: inherit
}

.site-header {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  padding: 30px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: height .5s cubic-bezier(.22, 1, .36, 1), padding .5s cubic-bezier(.22, 1, .36, 1), background .4s ease, box-shadow .4s ease
}

.site-header.scrolled {
  height: 71px;
  padding: 15px 8vw;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(7, 28, 44, .08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
  backdrop-filter: blur(12px)
}

.brand {
  position: relative;
  z-index: 2001;
  display: block;
  line-height: 0
}

.brand img {
  display: block;
  width: 185px;
  height: 40px;
  object-fit: contain;
  transition: filter .4s ease
}

.site-header:not(.scrolled) .brand img {
  filter: brightness(0) invert(1)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px
}

.nav-links a {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 500
}

.site-header.scrolled .nav-links a {
  color: #0b1026
}

.nav-links a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1)
}

.nav-links a:hover:after {
  transform: scaleX(1);
  transform-origin: left
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2001;
  width: 28px;
  height: 18px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: .4s
}

.site-header.scrolled .menu-toggle span {
  background: #0b1026
}

.menu-toggle[aria-expanded=true] span {
  background: #fff
}

.menu-toggle[aria-expanded=true] span:first-child {
  transform: translateY(8px) rotate(45deg)
}

.menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0
}

.menu-toggle[aria-expanded=true] span:last-child {
  transform: translateY(-8px) rotate(-45deg)
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  overflow: hidden
}

.hero-slides,
.hero-slide,
.fleet-image {
  position: absolute;
  inset: 0
}

.hero-slide,
.fleet-image {
  background-size: cover;
  background-position: center
}

.hero-slide {
  background-image: var(--hero-image);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.15s ease, transform 7s linear;
  will-change: opacity, transform
}

.hero-slide.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1)
}

.hero-slide:nth-child(2) {
  background-position: center 56%
}

.hero-slide:nth-child(3) {
  background-position: center
}

.hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 21, 33, .9), rgba(4, 26, 39, .62) 44%, rgba(4, 24, 36, .2) 78%), linear-gradient(0deg, rgba(2, 17, 27, .78), transparent 42%)
}

.hero-content {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  top: 47%;
  width: min(850px, 58vw);
  max-width: 850px;
  transform: translateY(-50%)
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px
}

.eyebrow span {
  width: 36px;
  border-top: 2px solid var(--red)
}

.hero h1 {
  font: 700 clamp(52px, min(7vw, 10.5vh), 96px)/.97 "Manrope";
  letter-spacing: -5px;
  margin: 22px 0
}

.hero h1 em {
  font-style: normal;
  color: rgba(255, 255, 255, .45)
}

.hero-copy {
  font-size: clamp(15px, min(1.3vw, 2.3vh), 18px);
  line-height: 1.6;
  max-width: 620px;
  color: rgba(255, 255, 255, .82)
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: clamp(22px, 3.5vh, 34px)
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 17px 21px;
  font-size: 14px;
  font-weight: 700
}

.button span {
  margin-left: 20px
}

.button.primary {
  background: var(--red);
  color: #fff
}

.button.white {
  background: #fff;
  color: var(--navy)
}

.text-link {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding: 10px 0
}

.text-link span {
  margin-left: 10px
}

.hero-slider-controls {
  position: absolute;
  z-index: 4;
  bottom: 42px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 13px
}

.hero-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 24, 36, .12);
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .3s ease
}

.hero-arrow:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .16);
  transform: scale(1.06)
}

.hero-pagination {
  display: flex;
  align-items: center;
  gap: 7px
}

.hero-pagination button {
  position: relative;
  width: 30px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer
}

.hero-pagination button:before {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .36)
}

.hero-pagination button span {
  position: absolute;
  top: 16px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff
}

.hero-pagination button.active span {
  animation: hero-progress 6s linear forwards
}

.hero-slide-count {
  margin-left: 5px;
  color: rgba(255, 255, 255, .52);
  font: 500 9px "Manrope";
  letter-spacing: 1px
}

.hero-slide-count strong {
  color: #fff;
  font-weight: 700
}

@keyframes hero-progress {
  to {
    width: 100%
  }
}

.hero-status {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 42px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, .3);
  width: min(490px, 40vw)
}

.hero-status>div {
  flex: 1;
  padding: 16px 10px 0;
  display: flex;
  gap: 12px
}

.hero-status span {
  font-size: 9px;
  color: #ef5b5d
}

.hero-status p {
  margin: 0;
  font: 600 11px/1.4 "Manrope";
  text-transform: uppercase;
  letter-spacing: 1px
}

.section {
  padding: 110px var(--pad)
}

.section-label {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #6d7e89
}

.section-label span {
  color: var(--red)
}

.section-label:after {
  content: "";
  width: 55px;
  border-top: 1px solid #9ca9b0
}

.section-label.light {
  color: #b9c7d0
}

.intro {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px 80px
}

.intro>.section-label {
  grid-column: 1/-1
}

.kicker {
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700
}

.intro h2,
.section-heading h2,
.qhse h2 {
  font: 700 clamp(34px, 4vw, 59px)/1.12 "Manrope";
  letter-spacing: -2.6px;
  margin: 18px 0
}

.intro-detail {
  padding-top: 55px
}

.intro-detail>p,
.section-heading>p,
.qhse-copy>p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted)
}

.arrow-link {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: inline-flex;
  gap: 30px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  margin-top: 15px
}

.metrics {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 25px
}

.metrics>div {
  padding: 34px 0;
  border-right: 1px solid var(--line)
}

.metrics>div:not(:first-child) {
  padding-left: 32px
}

.metrics strong {
  font: 700 42px "Manrope";
  display: block;
  color: var(--navy)
}

.metrics span {
  color: var(--muted);
  font-size: 13px
}

.logo-marquee {
  grid-column: 1/-1;
  margin-top: 18px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  overflow: hidden
}

.logo-marquee>p {
  margin: 0 0 34px;
  color: #a0a8af;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase
}

.logo-marquee-window {
  position: relative;
  margin: 0 calc(var(--pad)*-1);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logo-scroll 24s linear infinite
}

.logo-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(80px, 11vw, 190px);
  padding-right: clamp(80px, 11vw, 190px)
}

.logo-marquee img {
  display: block;
  width: clamp(180px, 17vw, 275px);
  height: auto;
  opacity: .48;
  filter: grayscale(1);
  transition: .35s
}

.logo-marquee img:hover {
  opacity: .9;
  filter: grayscale(0);
  transform: scale(1.035)
}

@keyframes logo-scroll {
  to {
    transform: translateX(-50%)
  }
}

.capabilities {
  background: var(--off)
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  margin: 50px 0 65px
}

.section-heading h2,
.section-heading p {
  margin: 0
}

.service-list {
  border-bottom: 1px solid #cad4d9
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px 70px 1fr 30px;
  align-items: center;
  gap: 25px;
  padding: 31px 28px;
  border-top: 1px solid #cad4d9;
  isolation: isolate;
  overflow: hidden;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s cubic-bezier(.22, 1, .36, 1), border-color .35s ease
}

.service-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #fff;
  opacity: 0;
  transform: scaleY(.7);
  transform-origin: center;
  transition: opacity .4s ease, transform .55s cubic-bezier(.22, 1, .36, 1)
}

.service-card:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

.service-card:hover {
  z-index: 1;
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(11, 35, 51, .08)
}

.service-card:hover:before {
  opacity: 1;
  transform: scaleY(1)
}

.service-card:hover:after {
  transform: scaleY(1)
}

.service-number {
  font-size: 11px;
  color: #8a9aa4;
  transition: color .35s ease
}

.service-icon {
  font-size: 35px;
  color: var(--red);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.service-card>div:nth-child(3) {
  display: grid;
  grid-template-columns: 150px 280px 1fr;
  align-items: center;
  gap: 30px
}

.service-tag {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px
}

.service-card h3 {
  font: 700 22px "Manrope";
  margin: 0;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.service-card div>p:last-child {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0
}

.service-card:hover .service-number {
  color: var(--navy)
}

.service-card:hover .service-icon {
  transform: translateX(4px)
}

.service-card:hover h3 {
  transform: translateX(5px)
}

.fleet {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1fr 1fr
}

.fleet-image {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1530789253388-582c481c54b0?auto=format&fit=crop&w=1600&q=85');
  filter: saturate(.75)
}

.fleet-panel {
  background: var(--navy);
  color: #fff;
  padding: 90px clamp(35px, 6vw, 90px)
}

.light-text {
  color: #f05d60;
  margin-top: 70px
}

.fleet-panel h2 {
  font: 700 clamp(36px, 4vw, 58px)/1.12 "Manrope";
  letter-spacing: -2.5px;
  margin: 18px 0 24px
}

.fleet-panel>p:not(.kicker) {
  color: #afbdc7;
  line-height: 1.7
}

.vessel-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #345064;
  margin-top: 48px
}

.vessel-tabs button {
  color: #7f95a4;
  background: none;
  border: 0;
  padding: 14px 0;
  cursor: pointer;
  font-weight: 700
}

.vessel-tabs button.active {
  color: #fff;
  border-bottom: 2px solid var(--red)
}

.vessel-data>div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid #213d50;
  font-size: 12px
}

.vessel-data span {
  color: #8298a7
}

.vessel-data strong {
  text-align: right
}

.qhse-layout {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 90px;
  align-items: end;
  margin: 60px 0
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line)
}

.principles article {
  padding: 38px 28px;
  border-right: 1px solid var(--line)
}

.principles article:first-child {
  padding-left: 0
}

.principles span {
  font: 800 48px "Manrope";
  color: #dce4e8
}

.principles h3 {
  font: 700 17px "Manrope"
}

.principles p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted)
}

.projects {
  padding-top: 78px;
  padding-bottom: 74px;
  color: #fff;
  background: var(--navy)
}

.projects .section-label:after {
  border-color: #607485
}

.projects .light-text {
  margin: 0
}

.projects-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin: 34px 0 38px
}

.projects-heading h2 {
  font: 700 clamp(34px, 3.8vw, 52px)/1.08 "Manrope";
  letter-spacing: -2.5px;
  margin: 11px 0 0
}

.projects-heading>p {
  color: #aebbc4;
  font-size: 14px;
  line-height: 1.65;
  margin: 0
}

.project-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px
}

.project-card {
  position: relative;
  min-height: 194px;
  padding: 26px;
  overflow: hidden;
  background: #0e2b40;
  border: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background .4s ease, border-color .35s ease
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-4px);
  background: #123750;
  border-color: rgba(255, 255, 255, .3);
  outline: none
}

.project-featured {
  grid-row: span 2;
  min-height: 402px;
  padding: 0
}

.project-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 18, 29, .96), rgba(3, 18, 29, .08) 68%), url('assets/hse/source/ini bagus nih lagi berbaris di atas kapal.jpeg') center/cover
}

.project-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 30px
}

.project-card p {
  color: #ef686b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.project-client {
  display: block;
  color: #a8bac6 !important;
  font-size: 9px !important;
  letter-spacing: .4px
}

.project-card h3 {
  max-width: 560px;
  font: 700 clamp(21px, 2vw, 31px)/1.16 "Manrope";
  letter-spacing: -1px;
  margin: 9px 0 14px
}

.project-description {
  max-width: 610px;
  margin: 0 0 17px;
  color: #c1cdd4 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.55;
  text-transform: none !important;
  letter-spacing: 0 !important
}

.project-index {
  color: #668091;
  font: 600 32px "Manrope"
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.project-footer>span {
  color: #91a4b1;
  font-size: 11px
}

.project-footer button {
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer
}

.project-footer button span {
  display: inline-block;
  margin-left: 10px;
  transition: transform .3s
}

.project-card:hover .project-footer button span {
  transform: translate(4px, -4px)
}

.project-card:not(.project-featured) .project-footer button {
  width: 30px;
  height: 30px;
  border: 1px solid #536c7d;
  border-radius: 50%;
  font-size: 14px
}

.projects-link {
  display: flex;
  justify-content: space-between;
  max-width: 220px;
  margin: 28px 0 0 auto;
  padding-bottom: 8px;
  border-bottom: 1px solid #6b7e8b;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px
}

.projects-link span {
  transition: transform .3s
}

.projects-link:hover span {
  transform: translate(4px, -4px)
}

.project-modal[hidden] {
  display: none
}

.project-modal {
  position: fixed;
  z-index: 4000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 13, 22, .82);
  backdrop-filter: blur(8px);
  cursor: pointer
}

.project-modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: 88vh;
  padding: 48px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
  overflow-y: auto;
  animation: modal-in .45s cubic-bezier(.22, 1, .36, 1)
}

.project-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer
}

.project-modal-category {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.project-modal-client {
  margin: 0;
  color: #7b8891;
  font-size: 11px
}

.project-modal h2 {
  font: 700 clamp(30px, 4vw, 48px)/1.12 "Manrope";
  letter-spacing: -2px;
  margin: 22px 0
}

.project-modal-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75
}

.project-modal-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line)
}

.project-modal-facts div {
  padding: 22px 18px 0 0
}

.project-modal-facts span {
  display: block;
  color: #89959e;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.project-modal-facts strong {
  display: block;
  margin-top: 8px;
  font-size: 13px
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.updates-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  margin: 52px 0 62px
}

.updates-heading h2 {
  font: 700 clamp(38px, 4.5vw, 62px)/1.1 "Manrope";
  letter-spacing: -2.8px;
  margin: 0
}

.updates-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.news-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  border-right: 1px solid var(--line);
  transition: background-color .35s ease
}

.news-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1)
}

.news-card:first-child {
  padding-left: 32px
}

.news-card:last-child {
  border-right: 0
}

.news-card:hover {
  background: #f7f9fa
}

.news-card:hover:before {
  transform: scaleX(1)
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #89959e;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.news-meta span {
  color: var(--red)
}

.news-card h3 {
  font: 700 clamp(20px, 1.7vw, 27px)/1.3 "Manrope";
  letter-spacing: -.7px;
  margin: 34px 0 20px
}

.news-card>p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7
}

.news-card>a {
  display: inline-flex;
  gap: 20px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px
}

.news-card>a span {
  transition: transform .3s
}

.news-card>a:hover span {
  transform: translate(4px, -4px)
}

.contact {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(55px, 8vw, 130px);
  padding: 100px var(--pad);
  background: #fff;
  border-top: 1px solid var(--line)
}

.contact-intro {
  align-self: start;
  max-width: 560px
}

.contact-intro>.section-label {
  margin-bottom: 58px
}

.contact-intro h2 {
  font: 700 clamp(39px, 4vw, 58px)/1.1 "Manrope";
  letter-spacing: -2.6px;
  margin: 16px 0 24px
}

.contact-intro>p:not(.kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75
}

.contact-info {
  margin-top: 52px;
  border-top: 1px solid var(--line)
}

.contact-info>div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px
}

.contact-info span {
  color: #8a969f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.contact-info p,
.contact-info a {
  margin: 0;
  line-height: 1.55
}

.contact-info a {
  font-weight: 700
}

.contact-form {
  padding: 42px;
  background: var(--off);
  border: 1px solid var(--line)
}

.contact-form label {
  display: block;
  margin-bottom: 25px
}

.contact-form label>span {
  display: block;
  margin-bottom: 9px;
  color: #586670;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9c3ca;
  border-radius: 0;
  padding: 11px 0;
  color: var(--ink);
  background: transparent;
  font: 500 14px "DM Sans";
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ba6ae
}

.contact-form select {
  cursor: pointer
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 1px 0 var(--navy)
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 7px
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important
}

.form-submit p {
  max-width: 320px;
  margin: 0;
  color: #8a969f;
  font-size: 10px;
  line-height: 1.5
}

.form-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 175px;
  padding: 16px 18px;
  border: 0;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1)
}

.form-submit button span {
  margin-left: 25px;
  transition: transform .3s
}

.form-submit button:hover {
  background: var(--blue);
  transform: translateY(-2px)
}

.form-submit button:hover span {
  transform: translate(3px, -3px)
}

.contact-form button[disabled],
.contact-form button.is-cooling-down {
  cursor: not-allowed;
  opacity: .64;
  transform: none
}

footer {
  background: #051722;
  color: #b0bdc5;
  padding: 70px var(--pad) 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  font-size: 13px;
  line-height: 1.7
}

.footer-brand {
  color: #fff;
  align-self: start
}

.footer-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.5px
}

.footer-title~a {
  display: block
}

.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #263946;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  margin-top: 30px
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.service-card.reveal {
  transition: opacity .7s ease, transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s cubic-bezier(.22, 1, .36, 1), border-color .35s ease
}

.service-card.reveal.visible:hover {
  transform: translateY(-2px)
}

.hero-slide {
  transform: scale(1.075);
  transition: opacity 1.8s cubic-bezier(.4, 0, .2, 1), transform 8s cubic-bezier(.16, 1, .3, 1)
}

.hero-slide.active {
  transform: scale(1)
}

.hero-slide-video {
  overflow: hidden;
  background-color: #071c2c;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  opacity: 1
}

.hero-pagination button.active span {
  animation-duration: 7s
}

.hero-content>.eyebrow,
.hero-content>h1,
.hero-content>.hero-copy,
.hero-content>.hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1)
}

.hero-content>h1 {
  transition-delay: .05s
}

.hero-content>.hero-copy {
  transition-delay: .1s
}

.hero-content>.hero-actions {
  transition-delay: .15s
}

.hero-content.is-changing>.eyebrow,
.hero-content.is-changing>h1,
.hero-content.is-changing>.hero-copy,
.hero-content.is-changing>.hero-actions {
  opacity: 0;
  transform: translateY(16px);
  transition-duration: .32s;
  transition-delay: 0s
}

.eyebrow b,
.hero-actions b {
  font: inherit
}

@media(min-width:901px) {
  .hero-content {
    top: 40%
  }
}

@media(max-height:800px) and (min-width:901px) {
  .hero-content {
    top: 38.5%;
    width: min(760px, 58vw)
  }

  .hero h1 {
    font-size: clamp(48px, min(6.5vw, 9.5vh), 76px);
    margin: 18px 0
  }

  .hero-copy {
    max-width: 570px;
    line-height: 1.5
  }

  .hero-actions {
    margin-top: 20px
  }

  .button {
    padding: 14px 18px
  }

  .hero-status,
  .hero-slider-controls {
    bottom: 24px
  }
}

@media(max-width:900px) {

  .site-header,
  .site-header.scrolled {
    height: 80px;
    padding: 20px 5vw;
    background: rgba(11, 16, 38, .2);
    border: 0;
    box-shadow: none
  }

  .site-header.scrolled {
    background: rgba(11, 16, 38, .92)
  }

  .site-header.scrolled .brand img {
    filter: brightness(0) invert(1)
  }

  .menu-toggle {
    display: flex
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    padding: 100px 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: #0b1026;
    transition: right .6s cubic-bezier(.22, 1, .36, 1)
  }

  .nav-links.open {
    right: 0
  }

  .nav-links a,
  .site-header.scrolled .nav-links a {
    color: #fff;
    font-size: 24px
  }

  .hero-content {
    top: 48%;
    right: var(--pad);
    width: auto;
    max-width: 720px
  }

  .hero h1 {
    font-size: clamp(46px, min(10vw, 9.5vh), 72px);
    letter-spacing: -3px;
    margin: 20px 0
  }

  .hero-actions {
    margin-top: 24px
  }

  .hero-status {
    display: none
  }

  .hero-slider-controls {
    bottom: 28px
  }

  .intro,
  .section-heading,
  .qhse-layout,
  .projects-heading,
  .updates-heading {
    grid-template-columns: 1fr
  }

  .intro-detail {
    padding-top: 0
  }

  .section-heading,
  .projects-heading,
  .updates-heading {
    gap: 20px
  }

  .service-card {
    grid-template-columns: 30px 45px 1fr 20px
  }

  .service-card>div:nth-child(3) {
    grid-template-columns: 1fr
  }

  .fleet {
    grid-template-columns: 1fr
  }

  .fleet-image {
    min-height: 420px
  }

  .principles {
    grid-template-columns: 1fr 1fr
  }

  .project-grid {
    grid-template-columns: 1fr
  }

  .project-card {
    min-height: 180px
  }

  .project-card.project-featured {
    grid-row: auto;
    min-height: 390px
  }

  .news-grid {
    grid-template-columns: 1fr
  }

  .news-card,
  .news-card:first-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 32px 0
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 55px
  }

  .contact-intro>.section-label {
    margin-bottom: 35px
  }

  .contact-form {
    padding: 36px
  }

  .contact-map {
    display: none
  }
}

@media(max-width:600px) {
  :root {
    --pad: 20px
  }

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

  .hero-content {
    top: 48%;
    right: 20px;
    left: 20px
  }

  .hero h1 {
    font-size: clamp(40px, min(12vw, 8.5vh), 52px);
    line-height: 1;
    letter-spacing: -2px;
    margin: 18px 0
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.5
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px
  }

  .button {
    padding: 14px 17px
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .intro {
    gap: 30px
  }

  .metrics {
    grid-template-columns: 1fr 1fr
  }

  .metrics>div:nth-child(2) {
    border-right: 0
  }

  .metrics>div:not(:first-child) {
    padding-left: 15px
  }

  .logo-marquee {
    margin-top: 8px;
    padding-top: 34px
  }

  .logo-marquee>p {
    letter-spacing: 2.5px
  }

  .logo-marquee-group {
    gap: 64px;
    padding-right: 64px
  }

  .logo-marquee img {
    width: 190px
  }

  .logo-marquee-track {
    animation-duration: 18s
  }

  .service-card {
    grid-template-columns: 24px 1fr 20px;
    padding: 25px 10px;
    gap: 12px
  }

  .service-icon,
  .service-card div>p:last-child {
    display: none
  }

  .fleet-panel {
    padding: 70px 20px
  }

  .principles {
    grid-template-columns: 1fr
  }

  .principles article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0
  }

  .project-description {
    display: none
  }

  .project-modal {
    padding: 14px
  }

  .project-modal-panel {
    padding: 42px 24px 30px
  }

  .project-modal-facts {
    grid-template-columns: 1fr
  }

  .project-modal-facts div {
    padding: 15px 0;
    border-bottom: 1px solid var(--line)
  }

  .contact {
    padding-top: 75px;
    padding-bottom: 75px
  }

  .contact h2 {
    letter-spacing: -2px
  }

  .contact-form {
    padding: 25px 20px
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column
  }

  .form-submit button {
    width: 100%
  }

  .contact-info>div {
    grid-template-columns: 100px 1fr
  }

  footer {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px
  }
}

@media(max-width:600px) {
  .hero-content {
    top: 42%
  }
}

@media(max-width:600px) {
  .hero-slide {
    background-position: center top
  }

  .hero-slide:nth-child(1) {
    background-position: 58% center
  }

  .hero-slide:nth-child(2) {
    background-position: 62% center
  }

  .hero-slide:nth-child(3) {
    background-position: 52% center
  }

  .hero-content {
    right: 20px;
    left: 20px;
    width: calc(100vw - 40px);
    max-width: none
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.03;
    letter-spacing: -1.8px;
    overflow-wrap: normal
  }

  .hero-copy {
    max-width: 100%;
    font-size: 13.5px
  }

  .hero-actions {
    width: 100%;
    margin-top: 18px
  }

  .button.primary {
    width: 100%;
    justify-content: space-between
  }

  .text-link {
    font-size: 13px
  }

  .hero-slider-controls {
    right: 20px;
    left: 20px;
    gap: 10px
  }

  .hero-pagination {
    flex: 1
  }

  .hero-pagination button {
    flex: 1;
    width: auto
  }

  .hero-slide-count {
    white-space: nowrap
  }
}

@media(max-height:650px) {
  .eyebrow {
    font-size: 9px
  }

  .hero h1 {
    font-size: clamp(38px, 8.5vh, 54px);
    margin: 12px 0
  }

  .hero-copy {
    line-height: 1.4
  }

  .hero-actions {
    margin-top: 14px
  }

  .button {
    padding: 12px 16px
  }
}

.light-text,
.project-card>p,
.project-content>p:first-child {
  color: var(--accent-light)
}

.fleet-image {
  overflow: hidden;
  background: #071c2c;
  background-image: none;
  filter: none
}

.fleet-image-layer {
  position: absolute;
  inset: -2%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.045);
  filter: saturate(.9);
  transition: opacity 1s cubic-bezier(.4, 0, .2, 1), transform 1.4s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform
}

.fleet-image-layer.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1)
}

.fleet-image:after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(7, 28, 44, .22));
  pointer-events: none
}

.vessel-data {
  transition: opacity .3s ease, transform .45s cubic-bezier(.22, 1, .36, 1)
}

.vessel-data.is-changing {
  opacity: 0;
  transform: translateY(9px)
}

.vessel-detail-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 27px;
  padding: 15px 0;
  border: 0;
  border-top: 1px solid #345064;
  border-bottom: 1px solid #345064;
  color: #fff;
  background: transparent;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: padding .45s cubic-bezier(.22, 1, .36, 1), color .35s ease, border-color .35s ease
}

.vessel-detail-button span {
  font-size: 17px;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1)
}

.vessel-detail-button:hover {
  padding-right: 8px;
  padding-left: 8px;
  border-color: var(--accent-light);
  color: var(--accent-light)
}

.vessel-detail-button:hover span {
  transform: translate(4px, -4px)
}

.vessel-modal[hidden] {
  display: none
}

.vessel-modal {
  position: fixed;
  z-index: 4100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px
}

.vessel-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 13, 22, .86);
  backdrop-filter: blur(9px);
  cursor: pointer
}

.vessel-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  width: min(1050px, 100%);
  max-height: 90vh;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  overflow: auto;
  animation: modal-in .5s cubic-bezier(.22, 1, .36, 1)
}

.vessel-modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 28, 44, .28);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px)
}

.vessel-modal-image {
  min-height: 570px;
  background-position: center;
  background-size: cover
}

.vessel-modal-content {
  align-self: center;
  padding: 55px
}

.vessel-modal-category {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.vessel-modal h2 {
  font: 700 clamp(34px, 4vw, 54px)/1.08 "Manrope";
  letter-spacing: -2.4px;
  margin: 13px 0 22px
}

.vessel-modal-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75
}

.vessel-modal-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
  border-top: 1px solid var(--line)
}

.vessel-modal-facts div {
  padding: 17px 12px 17px 0;
  border-bottom: 1px solid var(--line)
}

.vessel-modal-facts span {
  display: block;
  color: #89959e;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.vessel-modal-facts strong {
  display: block;
  margin-top: 7px;
  font-size: 12px
}

@media(max-width:700px) {
  .vessel-modal {
    padding: 12px
  }

  .vessel-modal-panel {
    display: block
  }

  .vessel-modal-image {
    min-height: 260px
  }

  .vessel-modal-content {
    padding: 32px 24px
  }

  .vessel-modal-close {
    top: 12px;
    right: 12px
  }

  .vessel-modal-facts {
    grid-template-columns: 1fr
  }

  .vessel-modal-facts div {
    padding-right: 0
  }
}

.vessel-detail-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(440px, 100%);
  margin-top: 30px;
  padding: 0 0 13px;
  border: 0;
  color: #fff;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .3s ease, transform .45s cubic-bezier(.22, 1, .36, 1), color .35s ease
}

.vessel-detail-button:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .65);
  transform-origin: left;
  transition: background .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1)
}

.vessel-detail-button b {
  font: inherit
}

.vessel-detail-button span {
  font-size: 20px;
  line-height: 1;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1)
}

.vessel-detail-button:hover {
  color: var(--accent-light)
}

.vessel-detail-button:hover:after {
  background: var(--accent-light);
  transform: scaleX(.92)
}

.vessel-detail-button:hover span {
  transform: translate(4px, -4px)
}

.vessel-detail-button.is-changing {
  opacity: 0;
  transform: translateY(9px);
  pointer-events: none
}

.project-card {
  padding: 0
}

.project-card:not(.project-featured) {
  min-height: 194px
}

.project-card .project-image {
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .5s ease
}

.project-card:hover .project-image,
.project-card:focus-visible .project-image {
  transform: scale(1.045);
  filter: saturate(.95)
}

.project-card:not(.project-featured) .project-content {
  padding: 25px 26px
}

.project-image-geodrill {
  background: linear-gradient(0deg, rgba(3, 18, 29, .96), rgba(3, 18, 29, .14) 70%), url('assets/optimized/images/assets-vessels-source-kapal-geodrill-lagi-4c39f6c4-1400.webp') center/cover
}

.project-image-barakuda {
  background: linear-gradient(0deg, rgba(3, 18, 29, .96), rgba(3, 18, 29, .14) 70%), url('assets/optimized/images/assets-ss-barakuda-dji-0133-21afbfba-1400.webp') center/cover
}

.project-image-karimun {
  background: linear-gradient(0deg, rgba(3, 18, 29, .96), rgba(3, 18, 29, .14) 70%), url('assets/PDM/WhatsApp Image 2025-12-31 at 10.33.02 AM.jpeg') center/cover
}

.project-image-angola {
  background: linear-gradient(0deg, rgba(3, 18, 29, .96), rgba(3, 18, 29, .08) 68%), url('assets/Angola/WhatsApp Image 2025-12-30 at 12.15.54 PM.jpeg') center/cover
}

.project-image-keppel {
  background: linear-gradient(0deg, rgba(3, 18, 29, .96), rgba(3, 18, 29, .14) 70%), url('assets/optimized/images/assets-keppel-img-4535-93af2e9a-1400.webp') center/cover
}

.project-card:not(.project-featured) .project-content h3 {
  font-size: clamp(22px, 2vw, 29px)
}

.project-card:not(.project-featured) .project-footer {
  margin-top: 24px
}

.news-card {
  padding: 0;
  overflow: hidden;
  background: #fff
}

.news-card:first-child {
  padding-left: 0
}

.news-card:before {
  z-index: 2
}

.news-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .45s ease
}

.news-card:hover .news-image {
  transform: scale(1.045);
  filter: saturate(.96)
}

.news-image-barakuda {
  background-image: linear-gradient(0deg, rgba(7, 28, 44, .12), rgba(7, 28, 44, .02)), url('assets/optimized/images/assets-ss-barakuda-dji-0147-7fc15baa-1400.webp')
}

.news-image-geodrill {
  background-image: linear-gradient(0deg, rgba(7, 28, 44, .12), rgba(7, 28, 44, .02)), url('assets/optimized/images/assets-vessels-source-kapal-geodrlll-1ef9430e-1400.webp')
}

.news-image-offshore {
  background-image: linear-gradient(0deg, rgba(7, 28, 44, .12), rgba(7, 28, 44, .02)), url('assets/optimized/images/assets-hse-source-ini-bagus-juga-lingkaran-diatas-kapal-5c44e9ae-1400.webp')
}

.news-content {
  padding: 30px 32px 34px
}

.news-card h3 {
  margin-top: 28px
}

.news-card>a,
.news-content>a {
  display: inline-flex;
  gap: 20px;
  margin-top: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px
}

.news-content>a span {
  transition: transform .3s
}

.news-content>a:hover span {
  transform: translate(4px, -4px)
}

.site-preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), visibility .65s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity;
  animation: preloader-auto-release .24s ease 1.25s forwards
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.preloader-inner {
  width: min(320px, 76vw);
  text-align: center
}

.preloader-inner img {
  display: block;
  width: min(230px, 70vw);
  height: auto;
  margin: 0 auto 24px
}

.preloader-inner p {
  margin: 0 0 18px;
  color: #6b7580;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase
}

.preloader-bar {
  height: 2px;
  background: #dce3e7;
  overflow: hidden
}

.preloader-bar span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--red);
  animation: preloader-sweep 1.05s cubic-bezier(.65, 0, .35, 1) infinite
}

@keyframes preloader-sweep {
  0% {
    transform: translateX(-110%)
  }

  100% {
    transform: translateX(230%)
  }
}

@keyframes preloader-auto-release {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
  }
}

@media(max-width:760px) {
  .site-preloader {
    animation-delay: .85s
  }
}

body.is-ready .site-header,
body.is-ready main,
body.is-ready footer {
  animation: page-in .75s cubic-bezier(.22, 1, .36, 1) both
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

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

  .hero-slide {
    transform: none;
    transition: opacity .25s ease
  }

  .hero-content>.eyebrow,
  .hero-content>h1,
  .hero-content>.hero-copy,
  .hero-content>.hero-actions {
    transition: none
  }

  .hero-pagination button.active span {
    animation: none;
    width: 100%
  }

  .logo-marquee-track {
    animation-play-state: paused
  }

  .logo-marquee-window {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* About profile redesign */
.intro {
  position: relative;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .68fr);
  align-items: start;
  background: #fff
}

.intro-detail {
  padding-top: 0;
  max-width: 640px
}

.intro-visual {
  grid-column: 2;
  grid-row: 2 / span 2;
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 28px 80px rgba(7, 28, 44, .12)
}

.intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(.88) contrast(1.02)
}

.intro-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 18, 29, .74), rgba(3, 18, 29, .05) 58%)
}

.intro-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  color: #fff;
  background: linear-gradient(0deg, rgba(5, 23, 34, .9), rgba(5, 23, 34, .12))
}

.intro-visual figcaption span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.intro-visual figcaption strong {
  display: block;
  max-width: 440px;
  font: 800 clamp(18px, 2vw, 26px)/1.22 "Manrope";
  letter-spacing: -.8px
}

.intro .metrics {
  margin-top: 48px
}

.intro .metrics>div {
  background: #fff
}

.intro .metrics strong {
  letter-spacing: -1.5px
}

@media(min-width:901px) {
  .intro {
    min-height: 100svh;
    padding-top: clamp(70px, 9vh, 96px);
    padding-bottom: clamp(34px, 5vh, 56px);
    gap: 24px 64px;
    grid-template-rows: auto minmax(0, 1fr) auto
  }

  .intro>.section-label {
    margin-bottom: 2px
  }

  .intro h2 {
    max-width: 760px;
    margin: 12px 0 0;
    font-size: clamp(35px, min(4.6vw, 7vh), 58px);
    line-height: 1.05
  }

  .intro-detail {
    align-self: start
  }

  .intro-detail>p {
    font-size: clamp(14px, 1.35vw, 16px);
    line-height: 1.62
  }

  .intro-detail .arrow-link {
    margin-top: 8px
  }

  .intro-visual {
    align-self: stretch;
    min-height: 0;
    height: min(58vh, 440px)
  }

  .intro-visual img {
    min-height: 0
  }

  .intro-visual figcaption {
    padding: 22px
  }

  .intro-visual figcaption strong {
    font-size: clamp(17px, 1.7vw, 22px)
  }

  .intro .metrics {
    align-self: end;
    margin-top: 12px
  }

  .intro .metrics>div {
    padding: 22px 0
  }

  .intro .metrics strong {
    font-size: clamp(30px, 3.2vw, 40px)
  }

  .intro .metrics span {
    font-size: 12px
  }
}

@media(max-height:760px) and (min-width:901px) {
  .intro {
    padding-top: 62px;
    padding-bottom: 32px
  }

  .intro h2 {
    font-size: clamp(34px, 6vh, 50px)
  }

  .intro-detail>p {
    font-size: 14px;
    line-height: 1.52
  }

  .intro-visual {
    height: 390px
  }

  .intro .metrics>div {
    padding: 16px 0
  }

  .intro .metrics strong {
    font-size: 31px
  }
}

@media(max-width:900px) {
  .intro {
    grid-template-columns: 1fr
  }

  .intro-visual {
    grid-column: 1;
    grid-row: auto;
    min-height: 420px
  }

  .intro-visual img {
    min-height: 420px
  }

  .intro .metrics {
    margin-top: 28px
  }
}

@media(max-width:600px) {
  .intro-visual {
    min-height: 320px
  }

  .intro-visual img {
    min-height: 320px
  }

  .intro-visual figcaption {
    padding: 22px
  }

  .intro-visual figcaption strong {
    font-size: 18px
  }
}

/* Trusted by marquee inside About */
.trusted-strip {
  max-width: 760px;
  margin-top: clamp(26px, 4.8vh, 50px);
  padding-top: 18px;
  border-top: 1px solid rgba(7, 28, 44, .12);
  overflow: hidden
}

.trusted-strip>p {
  margin: 0 0 14px;
  color: #81909a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase
}

.trusted-window {
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 0%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 86%, transparent 100%)
}

.trusted-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: trusted-scroll 30s linear infinite;
  will-change: transform
}

.trusted-track span {
  display: grid;
  min-width: 148px;
  height: 48px;
  place-items: center;
  border: 1px solid #d5dee4;
  background: #f8fafb;
  color: #657680;
  font: 800 13px/1 "Manrope";
  letter-spacing: -.25px;
  text-align: center;
  white-space: nowrap;
  transition: background .35s ease, color .35s ease, border-color .35s ease
}

.trusted-track span:hover {
  background: #071c2c;
  color: #fff;
  border-color: #071c2c
}

@keyframes trusted-scroll {
  to {
    transform: translateX(-50%)
  }
}

@media(min-width:901px) {
  .trusted-strip {
    margin-top: clamp(20px, 3.6vh, 36px)
  }

  .trusted-track span {
    height: 44px;
    min-width: 138px;
    font-size: 12px
  }

  .intro-detail {
    margin-top: -8px
  }

  .intro-visual {
    height: min(54vh, 420px)
  }
}

@media(max-height:760px) and (min-width:901px) {
  .trusted-strip {
    margin-top: 18px;
    padding-top: 14px
  }

  .trusted-strip>p {
    margin-bottom: 10px
  }

  .trusted-track span {
    height: 38px;
    min-width: 126px;
    font-size: 11px
  }

  .intro-visual {
    height: 360px
  }
}

@media(max-width:900px) {
  .trusted-strip {
    margin: 30px 0 4px
  }

  .trusted-window {
    mask-image: linear-gradient(90deg, #000 0%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 90%, transparent 100%)
  }
}

@media(max-width:600px) {
  .trusted-track {
    gap: 8px;
    animation-duration: 24s
  }

  .trusted-track span {
    height: 42px;
    min-width: 128px;
    font-size: 11px
  }
}

@media(prefers-reduced-motion:reduce) {
  .trusted-track {
    animation: none
  }

  .trusted-window {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none
  }
}

/* Tighten About spacing around trusted strip */
@media(min-width:901px) {
  .trusted-strip {
    margin-top: clamp(18px, 3vh, 28px);
    padding-top: 14px
  }

  .trusted-strip>p {
    margin-bottom: 10px
  }

  .trusted-track span {
    height: 38px;
    min-width: 132px
  }

  .intro-detail {
    margin-top: -38px
  }

  .intro-detail>p {
    max-width: 760px
  }

  .intro-detail .arrow-link {
    margin-top: 10px
  }

  .intro-visual {
    height: min(52vh, 405px)
  }
}

@media(max-height:760px) and (min-width:901px) {
  .trusted-strip {
    margin-top: 14px;
    padding-top: 12px
  }

  .trusted-track span {
    height: 34px;
    min-width: 120px
  }

  .intro-detail {
    margin-top: -32px
  }

  .intro-visual {
    height: 340px
  }
}

/* Keep About copy close to trusted strip */
@media(min-width:901px) {
  .intro {
    grid-template-rows: auto auto auto 1fr
  }

  .intro-head {
    grid-column: 1;
    grid-row: 2
  }

  .intro-detail {
    grid-column: 1;
    grid-row: 3;
    margin-top: 6px
  }

  .intro-visual {
    grid-column: 2;
    grid-row: 2 / span 2
  }

  .intro .metrics {
    grid-row: 4
  }

  .trusted-strip {
    margin-bottom: 0
  }

  .trusted-track span {
    height: 36px
  }
}

@media(max-height:760px) and (min-width:901px) {
  .intro-detail {
    margin-top: 2px
  }

  .trusted-track span {
    height: 32px
  }
}

/* Refine About image and metrics */
@media(min-width:901px) {
  .intro-visual {
    height: min(61vh, 492px)
  }

  .intro .metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    border-top: 0;
    margin-top: 18px
  }

  .intro .metrics>div {
    position: relative;
    min-height: 118px;
    padding: 22px 22px 20px;
    border: 1px solid #d8e1e7;
    background: #f8fafb;
    overflow: hidden
  }

  .intro .metrics>div:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(.28);
    transform-origin: left
  }

  .intro .metrics>div:after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(7, 28, 44, .06);
    border-radius: 50%
  }

  .intro .metrics strong {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: #071c2c;
    font-size: clamp(32px, 3.1vw, 44px);
    line-height: .9;
    letter-spacing: -1.8px
  }

  .intro .metrics span {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 210px;
    color: #657680;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45
  }

  .intro .metrics>div:first-child {
    background: #071c2c;
    border-color: #071c2c
  }

  .intro .metrics>div:first-child:before {
    background: var(--accent-light);
    transform: scaleX(.34)
  }

  .intro .metrics>div:first-child strong,
  .intro .metrics>div:first-child span {
    color: #fff
  }

  .intro .metrics>div:first-child span {
    color: #c2d0d8
  }
}

@media(max-height:760px) and (min-width:901px) {
  .intro-visual {
    height: 390px
  }

  .intro .metrics {
    gap: 12px;
    margin-top: 12px
  }

  .intro .metrics>div {
    min-height: 96px;
    padding: 16px 18px
  }

  .intro .metrics strong {
    margin-bottom: 12px;
    font-size: 31px
  }

  .intro .metrics span {
    font-size: 11px
  }
}

@media(max-width:900px) {
  .intro .metrics {
    gap: 10px;
    border-top: 0
  }

  .intro .metrics>div {
    border: 1px solid #d8e1e7;
    padding: 24px 18px;
    background: #f8fafb
  }

  .intro .metrics>div:first-child {
    background: #071c2c
  }

  .intro .metrics>div:first-child strong,
  .intro .metrics>div:first-child span {
    color: #fff
  }
}

/* Hero text vertical balance */
@media(min-width:901px) {
  .hero-content {
    top: 48%
  }
}

@media(max-height:800px) and (min-width:901px) {
  .hero-content {
    top: 47%
  }
}

/* Capabilities visual redesign */
.capability-showcase {
  display: block
}

.capability-visual {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 28px 80px rgba(7, 28, 44, .12)
}

.capability-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
  transform: scale(1.02)
}

.capability-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 18, 29, .82), rgba(3, 18, 29, .08) 62%)
}

.capability-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  color: #fff
}

.capability-visual figcaption span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.capability-visual figcaption strong {
  display: block;
  max-width: 520px;
  font: 800 clamp(22px, 2.4vw, 34px)/1.12 "Manrope";
  letter-spacing: -1.3px
}

.capabilities .service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 0;
  background: transparent
}

.capabilities .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 296px;
  padding: 24px;
  border: 0;
  background: #071c2c;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 48px rgba(7, 28, 44, .08);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s cubic-bezier(.22, 1, .36, 1)
}

.capabilities .service-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 28, 44, .08) 0%, rgba(7, 28, 44, .18) 42%, rgba(7, 28, 44, .92) 100%), var(--capability-image);
  background-size: cover;
  background-position: var(--capability-position, center);
  opacity: 1;
  transform: scale(1.015);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .45s ease
}

.capabilities .service-card:after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 22px;
  bottom: 22px;
  left: 22px;
  height: 1px;
  background: rgba(255, 255, 255, .22);
  transform: scaleX(.32);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), background .35s ease
}

.capabilities .service-card:hover,
.capabilities .service-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(7, 28, 44, .16)
}

.capabilities .service-card:hover:before {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03)
}

.capabilities .service-card:hover:after,
.capabilities .service-card:focus-within:after {
  transform: scaleX(1);
  background: rgba(141, 132, 195, .75)
}

.capabilities .service-card>div,
.capabilities .service-number {
  position: relative;
  z-index: 1
}

.capabilities .service-number {
  position: absolute;
  top: 22px;
  left: 24px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px
}

.capabilities .service-tag {
  margin: 0 0 10px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.55px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .35)
}

.capabilities .service-card h3 {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font: 800 clamp(22px, 1.8vw, 30px)/1.08 "Manrope";
  letter-spacing: -1.15px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34)
}

.capabilities .service-card div>p:last-child {
  max-width: 420px;
  margin: 14px 0 0;
  color: #d6e0e7;
  font-size: 13px;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .3)
}

.service-marine {
  --capability-image: url('assets/services terbaru/marine-geophysical-monitoring.jpeg')
}

.service-offshore {
  --capability-image: url('assets/equipment/drilling/offshore-drilling-operation.jpeg')
}

.service-seabed {
  --capability-image: url('assets/equipment/cpt-manta-medco/WhatsApp Image 2025-08-01 at 09.19.33.jpeg');
  --capability-position: center
}

.service-nearshore {
  --capability-image: url('assets/optimized/images/assets-haju-haju-4411bcf0-1400.webp');
  --capability-position: center 58%
}

.service-exploratory {
  --capability-image: url('assets/Onshore/Rig.jpeg')
}

.service-onshore {
  --capability-image: url('assets/optimized/images/assets-onshore-whatsapp-image-2026-07-16-at-08-22-49-4-8e6db438-1400.webp')
}

@media(max-width:1050px) {
  .capability-showcase {
    grid-template-columns: 1fr
  }

  .capability-visual {
    min-height: 420px
  }

  .capabilities .service-list {
    grid-template-columns: 1fr 1fr
  }

  .capabilities .service-card {
    min-height: 260px
  }
}

@media(max-width:700px) {
  .capability-visual {
    min-height: 320px
  }

  .capability-visual figcaption {
    padding: 24px
  }

  .capability-visual figcaption strong {
    font-size: 22px
  }

  .capabilities .service-list {
    grid-template-columns: 1fr
  }

  .capabilities .service-card {
    min-height: 240px;
    padding: 24px
  }

  .capabilities .service-tag {
    margin-top: 42px
  }

  .capabilities .service-card h3 {
    font-size: 24px
  }
}

/* QHSE visual redesign */
.qhse {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #071c2c
}

.qhse:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 18%, rgba(141, 132, 195, .18), transparent 32%), linear-gradient(135deg, rgba(13, 49, 73, .86), rgba(5, 23, 34, .98) 54%, #04131e);
  pointer-events: none
}

.qhse:after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none
}

.qhse>* {
  position: relative;
  z-index: 1
}

.qhse .section-label {
  color: #aebbc4
}

.qhse .section-label span {
  color: var(--accent-light)
}

.qhse .section-label:after {
  border-color: rgba(174, 187, 196, .42)
}

.qhse .light-text {
  margin-top: 0;
  color: var(--accent-light)
}

.qhse-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: stretch;
  margin-top: 52px
}

.qhse-copy {
  align-self: center;
  max-width: 760px
}

.qhse h2 {
  max-width: 760px;
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.03;
  letter-spacing: -3.2px
}

.qhse-copy>p:not(.kicker) {
  max-width: 680px;
  color: #c0ccd5;
  font-size: 17px;
  line-height: 1.72
}

.qhse-link {
  margin-top: 28px;
  border-color: rgba(255, 255, 255, .46);
  color: #fff
}

.qhse-link:hover {
  color: var(--accent-light);
  border-color: var(--accent-light)
}

.qhse-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #0b2638;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .28)
}

.qhse-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
  transform: scale(1.02)
}

.qhse-visual:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  pointer-events: none
}

.qhse-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 15, 24, .9), rgba(3, 15, 24, .04) 62%), linear-gradient(90deg, rgba(48, 37, 111, .35), transparent 48%)
}

.qhse-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  color: #fff
}

.qhse-visual figcaption span {
  display: block;
  margin-bottom: 13px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.qhse-visual figcaption strong {
  display: block;
  max-width: 460px;
  font: 800 clamp(20px, 2vw, 29px)/1.18 "Manrope";
  letter-spacing: -1px
}

.qhse-control-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px)
}

.qhse-control-strip span {
  position: relative;
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  color: #d4dee5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase
}

.qhse-control-strip span:last-child {
  border-right: 0
}

.qhse-control-strip span:before {
  content: "";
  position: absolute;
  top: -1px;
  right: 28%;
  left: 28%;
  height: 2px;
  background: var(--accent-light)
}

.qhse-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
  border-top: 0
}

.qhse-principles article {
  position: relative;
  min-height: 244px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background .35s ease, border-color .35s ease
}

.qhse-principles article:first-child {
  padding-left: 30px
}

.qhse-principles article:before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), border-color .35s ease
}

.qhse-principles article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .095)
}

.qhse-principles article:hover:before {
  transform: scale(1.28);
  border-color: rgba(141, 132, 195, .4)
}

.qhse-principles span {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, .24);
  font: 800 42px/.9 "Manrope";
  letter-spacing: -1.5px
}

.qhse-principles h3 {
  margin: 0 0 14px;
  color: #fff;
  font: 800 19px/1.2 "Manrope";
  letter-spacing: -.45px
}

.qhse-principles p {
  margin: 0;
  color: #b7c5ce;
  font-size: 13px;
  line-height: 1.62
}

@media(max-width:1050px) {
  .qhse-hero-panel {
    grid-template-columns: 1fr
  }

  .qhse-visual {
    min-height: 420px
  }

  .qhse-control-strip {
    grid-template-columns: repeat(3, 1fr)
  }

  .qhse-control-strip span:nth-child(3) {
    border-right: 0
  }

  .qhse-principles {
    grid-template-columns: 1fr 1fr
  }

  .qhse-principles article {
    min-height: 220px
  }
}

@media(max-width:700px) {
  .qhse h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2px
  }

  .qhse-copy>p:not(.kicker) {
    font-size: 15px
  }

  .qhse-visual {
    min-height: 330px
  }

  .qhse-visual:before {
    inset: 12px
  }

  .qhse-visual figcaption {
    padding: 24px
  }

  .qhse-control-strip {
    grid-template-columns: 1fr 1fr
  }

  .qhse-control-strip span {
    min-height: 66px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .qhse-control-strip span:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .1)
  }

  .qhse-control-strip span:nth-child(2n) {
    border-right: 0
  }

  .qhse-principles {
    grid-template-columns: 1fr
  }

  .qhse-principles article,
  .qhse-principles article:first-child {
    min-height: 0;
    padding: 24px
  }

  .qhse-principles span {
    margin-bottom: 36px;
    font-size: 34px
  }
}

/* QHSE editorial rebuild */
.qhse-editorial {
  position: relative;
  overflow: hidden;
  color: #071c2c;
  background: #f4f7f8
}

.qhse-editorial:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, #f4f7f8 58%, #e8eff2 100%);
  pointer-events: none
}

.qhse-editorial:after {
  content: "";
  position: absolute;
  top: 95px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(7, 28, 44, .06);
  border-radius: 50%;
  pointer-events: none
}

.qhse-editorial>* {
  position: relative;
  z-index: 1
}

.qhse-editorial .section-label {
  color: #6d7e89
}

.qhse-editorial .section-label span {
  color: var(--red)
}

.qhse-editorial .section-label:after {
  border-color: #9ca9b0
}

.qhse-editorial .kicker {
  color: var(--red)
}

.qhse-editorial-grid {
  display: grid;
  grid-template-columns: minmax(360px, .74fr) minmax(0, 1.26fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
  margin-top: 52px
}

.qhse-editorial .qhse-copy {
  align-self: center;
  max-width: 670px;
  padding: 30px 0 34px
}

.qhse-editorial h2 {
  max-width: 670px;
  margin: 14px 0 24px;
  color: #071c2c;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.01;
  letter-spacing: -3.6px
}

.qhse-editorial .qhse-copy>p:not(.kicker) {
  max-width: 610px;
  color: #60717e;
  font-size: 17px;
  line-height: 1.72
}

.qhse-editorial .qhse-link {
  margin-top: 26px;
  border-color: #071c2c;
  color: #071c2c
}

.qhse-editorial .qhse-link:hover {
  color: var(--red);
  border-color: var(--red)
}

.qhse-commitments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 8px;
  border-top: 1px solid #d5dee4;
  border-bottom: 1px solid #d5dee4
}

.qhse-commitments div {
  padding: 18px 18px 18px 0;
  border-right: 1px solid #d5dee4
}

.qhse-commitments div:last-child {
  border-right: 0
}

.qhse-commitments span {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.qhse-commitments strong {
  display: block;
  color: #071c2c;
  font: 800 15px/1.2 "Manrope";
  letter-spacing: -.25px
}

.qhse-editorial .qhse-visual {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 32px 85px rgba(7, 28, 44, .16)
}

.qhse-editorial .qhse-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.02);
  transform: scale(1.01)
}

.qhse-editorial .qhse-visual:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .26);
  pointer-events: none
}

.qhse-editorial .qhse-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 16, 25, .82), rgba(3, 16, 25, .02) 64%), linear-gradient(90deg, rgba(3, 16, 25, .2), transparent 54%)
}

.qhse-editorial .qhse-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  padding: 24px 26px;
  color: #fff;
  background: rgba(5, 23, 34, .78);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px)
}

.qhse-editorial .qhse-visual figcaption span {
  margin: 0;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.qhse-editorial .qhse-visual figcaption strong {
  display: block;
  max-width: 640px;
  font: 800 clamp(18px, 1.7vw, 24px)/1.2 "Manrope";
  letter-spacing: -.75px
}

.qhse-workflow {
  display: grid;
  grid-template-columns: .34fr .66fr;
  gap: clamp(34px, 5vw, 74px);
  margin-top: 36px;
  padding: 34px;
  border: 1px solid #d5dee4;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .07)
}

.qhse-workflow-head {
  align-self: center
}

.qhse-workflow-head h3 {
  max-width: 310px;
  margin: 10px 0 0;
  color: #071c2c;
  font: 800 clamp(25px, 2.6vw, 38px)/1.08 "Manrope";
  letter-spacing: -1.5px
}

.qhse-workflow ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none
}

.qhse-workflow li {
  position: relative;
  min-height: 220px;
  padding: 0 24px 0 0;
  border-right: 1px solid #d5dee4
}

.qhse-workflow li:not(:first-child) {
  padding-left: 24px
}

.qhse-workflow li:last-child {
  border-right: 0
}

.qhse-workflow li:before {
  content: "";
  position: absolute;
  top: 46px;
  right: 0;
  left: 0;
  height: 1px;
  background: #d5dee4
}

.qhse-workflow li:last-child:before {
  right: 24px
}

.qhse-workflow li span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 68px;
  border: 1px solid #cdd8df;
  background: #fff;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px
}

.qhse-workflow li strong {
  display: block;
  margin-bottom: 12px;
  color: #071c2c;
  font: 800 20px/1.1 "Manrope";
  letter-spacing: -.5px
}

.qhse-workflow li p {
  margin: 0;
  color: #667783;
  font-size: 13px;
  line-height: 1.6
}

@media(max-width:1100px) {
  .qhse-editorial-grid {
    grid-template-columns: 1fr
  }

  .qhse-editorial .qhse-copy {
    max-width: 820px;
    padding-bottom: 0
  }

  .qhse-editorial .qhse-visual {
    min-height: 460px
  }

  .qhse-workflow {
    grid-template-columns: 1fr
  }

  .qhse-workflow-head h3 {
    max-width: 620px
  }

  .qhse-workflow ol {
    grid-template-columns: 1fr 1fr
  }

  .qhse-workflow li {
    min-height: 190px;
    margin-bottom: 28px
  }

  .qhse-workflow li:nth-child(2) {
    border-right: 0
  }

  .qhse-workflow li:nth-child(3) {
    padding-left: 0
  }

  .qhse-workflow li:before {
    right: 24px
  }

  .qhse-workflow li:nth-child(2):before,
  .qhse-workflow li:nth-child(4):before {
    right: 0
  }
}

@media(max-width:700px) {
  .qhse-editorial {
    padding-top: 78px;
    padding-bottom: 78px
  }

  .qhse-editorial-grid {
    margin-top: 34px
  }

  .qhse-editorial h2 {
    font-size: clamp(36px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .qhse-editorial .qhse-copy>p:not(.kicker) {
    font-size: 15px
  }

  .qhse-commitments {
    grid-template-columns: 1fr
  }

  .qhse-commitments div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid #d5dee4
  }

  .qhse-commitments div:last-child {
    border-bottom: 0
  }

  .qhse-editorial .qhse-visual {
    min-height: 360px
  }

  .qhse-editorial .qhse-visual:before {
    inset: 14px
  }

  .qhse-editorial .qhse-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    padding: 20px
  }

  .qhse-editorial .qhse-visual figcaption span {
    display: block;
    margin-bottom: 11px
  }

  .qhse-workflow {
    margin-top: 24px;
    padding: 24px
  }

  .qhse-workflow ol {
    grid-template-columns: 1fr
  }

  .qhse-workflow li,
  .qhse-workflow li:not(:first-child),
  .qhse-workflow li:nth-child(3) {
    min-height: 0;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid #d5dee4;
    margin-bottom: 26px
  }

  .qhse-workflow li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0
  }

  .qhse-workflow li:before {
    display: none
  }

  .qhse-workflow li span {
    margin-bottom: 24px
  }
}

@media(min-width:1101px) {
  .qhse-editorial {
    padding-top: 88px;
    padding-bottom: 88px
  }

  .qhse-editorial-grid {
    align-items: start;
    margin-top: 42px
  }

  .qhse-editorial .qhse-copy {
    padding: 22px 0 0
  }

  .qhse-editorial h2 {
    font-size: clamp(40px, 4.2vw, 64px)
  }

  .qhse-editorial .qhse-visual {
    height: min(62vh, 540px);
    min-height: 500px
  }

  .qhse-workflow {
    margin-top: 28px;
    padding: 28px 30px
  }

  .qhse-workflow li {
    min-height: 188px
  }

  .qhse-workflow li span {
    margin-bottom: 52px
  }
}

/* Center Trusted By between About headline and copy */
@media(min-width:901px) {
  .intro-head .trusted-strip {
    max-width: 820px;
    margin-top: clamp(42px, 5vh, 48px);
    padding-top: 18px
  }

  .intro-head .trusted-strip>p {
    margin-bottom: 13px;
    font-size: 11px;
    letter-spacing: 3px
  }

  .intro-head .trusted-track {
    gap: 14px;
    animation-duration: 32s
  }

  .intro-head .trusted-track span {
    min-width: 160px;
    height: 48px;
    font-size: 14px
  }
}

@media(max-height:760px) and (min-width:901px) {
  .intro-head .trusted-strip {
    margin-top: 38px;
    padding-top: 16px
  }

  .intro-head .trusted-track span {
    min-width: 146px;
    height: 42px;
    font-size: 12px
  }
}

/* Marine assets redesign */
.marine-assets {
  position: relative;
  min-height: 100svh;
  padding: clamp(82px, 9vw, 118px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .78fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  background: #061925;
  color: #fff;
  overflow: hidden
}

.marine-assets:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 8%, rgba(141, 132, 195, .18), transparent 30%), linear-gradient(135deg, #071c2c 0%, #061925 48%, #030d14 100%);
  pointer-events: none
}

.marine-assets:after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none
}

.marine-assets>* {
  position: relative;
  z-index: 1
}

.marine-assets .fleet-image {
  position: relative;
  inset: auto;
  min-height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28)
}

.marine-assets .fleet-image-layer {
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.035)
}

.marine-assets .fleet-image-layer.active {
  transform: scale(1)
}

.marine-assets .fleet-image:before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  pointer-events: none
}

.marine-assets .fleet-image:after {
  z-index: 2;
  background: linear-gradient(0deg, rgba(3, 13, 20, .9), rgba(3, 13, 20, .08) 58%), linear-gradient(90deg, rgba(3, 13, 20, .12), transparent 55%)
}

.fleet-image-caption {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 24px 28px;
  color: #fff;
  background: rgba(5, 23, 34, .78);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(14px)
}

.fleet-image-caption span {
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.fleet-image-caption strong {
  max-width: 560px;
  font: 800 clamp(20px, 2vw, 30px)/1.16 "Manrope";
  letter-spacing: -1px
}

.marine-assets .fleet-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.8vw, 70px);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .14);
  backdrop-filter: blur(10px)
}

.fleet-panel-head {
  max-width: 680px
}

.marine-assets .light-text {
  margin: 0;
  color: var(--accent-light)
}

.marine-assets .fleet-panel h2 {
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.03;
  letter-spacing: -3px
}

.marine-assets .fleet-panel>p:not(.kicker),
.fleet-panel-head>p {
  max-width: 600px;
  color: #b7c5ce;
  font-size: 15px;
  line-height: 1.72
}

.marine-assets .vessel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 42px;
  border: 0
}

.marine-assets .vessel-tabs button {
  position: relative;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #9fb0bb;
  background: rgba(255, 255, 255, .045);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-align: left;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1)
}

.marine-assets .vessel-tabs button:after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 1px;
  background: currentColor;
  opacity: .35;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .35s ease, opacity .35s ease
}

.marine-assets .vessel-tabs button.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px)
}

.marine-assets .vessel-tabs button.active:after {
  opacity: .8;
  transform: scaleX(1)
}

.marine-assets .vessel-data {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15)
}

.marine-assets .vessel-data>div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px
}

.marine-assets .vessel-data span {
  color: #8fa4b1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase
}

.marine-assets .vessel-data strong {
  text-align: left;
  color: #fff;
  font: 800 16px/1.25 "Manrope";
  letter-spacing: -.3px
}

.fleet-readiness {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px
}

.fleet-readiness div {
  min-height: 98px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .035)
}

.fleet-readiness span {
  display: block;
  margin-bottom: 18px;
  color: #8fa4b1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase
}

.fleet-readiness strong {
  display: block;
  color: #fff;
  font: 800 18px/1.18 "Manrope";
  letter-spacing: -.5px
}

.marine-assets .vessel-detail-button {
  width: 100%;
  margin-top: 26px;
  color: #fff
}

.marine-assets .vessel-detail-button:after {
  background: rgba(255, 255, 255, .5)
}

.marine-assets .vessel-detail-button:hover {
  color: var(--accent-light)
}

.marine-assets .vessel-detail-button:hover:after {
  background: var(--accent-light)
}

@media(max-width:1050px) {
  .marine-assets {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .marine-assets .fleet-image {
    min-height: 520px
  }

  .marine-assets .fleet-panel {
    justify-content: flex-start
  }

  .marine-assets .fleet-panel h2 {
    max-width: 800px
  }

  .fleet-readiness {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:700px) {
  .marine-assets {
    padding-top: 78px;
    padding-bottom: 78px;
    gap: 18px
  }

  .marine-assets .fleet-image {
    min-height: 380px
  }

  .marine-assets .fleet-image:before {
    inset: 14px
  }

  .fleet-image-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    padding: 20px
  }

  .fleet-image-caption span {
    display: block;
    margin-bottom: 10px
  }

  .fleet-image-caption strong {
    font-size: 20px
  }

  .marine-assets .fleet-panel {
    padding: 28px 22px
  }

  .marine-assets .fleet-panel h2 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -2px
  }

  .marine-assets .vessel-tabs {
    margin-top: 30px
  }

  .marine-assets .vessel-data>div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px 0
  }

  .fleet-readiness {
    grid-template-columns: 1fr
  }

  .fleet-readiness div {
    min-height: 0
  }
}

@media(min-width:1051px) {
  .marine-assets {
    min-height: 0;
    padding-top: clamp(72px, 7vw, 92px);
    padding-bottom: clamp(72px, 7vw, 92px);
    align-items: start
  }

  .marine-assets .fleet-image {
    height: min(72vh, 640px);
    min-height: 560px
  }

  .marine-assets .fleet-panel {
    align-self: start;
    min-height: min(72vh, 640px);
    padding: clamp(34px, 4vw, 54px);
    justify-content: center
  }

  .marine-assets .fleet-panel h2 {
    font-size: clamp(36px, 3.7vw, 56px)
  }

  .marine-assets .vessel-tabs {
    margin-top: 34px
  }

  .marine-assets .vessel-data>div {
    padding: 15px 0
  }

  .fleet-readiness div {
    min-height: 84px;
    padding: 17px
  }

  .fleet-readiness span {
    margin-bottom: 13px
  }

  .marine-assets .vessel-detail-button {
    margin-top: 22px
  }
}

@media(min-width:1051px) {
  .marine-assets {
    grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr)
  }

  .marine-assets .fleet-panel h2 {
    font-size: clamp(34px, 3.3vw, 50px);
    letter-spacing: -2.4px
  }

  .fleet-panel-head>p {
    font-size: 14px;
    line-height: 1.62
  }

  .marine-assets .vessel-tabs {
    margin-top: 28px
  }

  .marine-assets .vessel-data {
    margin-top: 18px
  }

  .marine-assets .vessel-data>div {
    padding: 13px 0
  }

  .fleet-readiness {
    margin-top: 18px
  }

  .fleet-readiness div {
    min-height: 76px;
    padding: 15px
  }

  .fleet-readiness strong {
    font-size: 16px
  }

  .marine-assets .vessel-detail-button {
    margin-top: 18px
  }
}

@media(min-width:1051px) {
  .marine-assets {
    padding-top: 56px;
    padding-bottom: 56px
  }

  .marine-assets .fleet-panel {
    padding: 36px;
    min-height: 0
  }

  .marine-assets .fleet-image {
    height: min(70vh, 620px);
    min-height: 560px
  }

  .marine-assets .fleet-panel h2 {
    font-size: clamp(34px, 3vw, 46px);
    margin-bottom: 16px
  }

  .marine-assets .vessel-tabs {
    margin-top: 24px
  }

  .marine-assets .vessel-tabs button {
    min-height: 52px
  }

  .marine-assets .vessel-data {
    margin-top: 14px
  }

  .marine-assets .vessel-data>div {
    padding: 11px 0
  }

  .fleet-readiness {
    margin-top: 14px
  }

  .fleet-readiness div {
    min-height: 60px;
    padding: 13px
  }

  .fleet-readiness span {
    margin-bottom: 8px
  }

  .marine-assets .vessel-detail-button {
    margin-top: 14px
  }
}

/* Marine assets elegant reset */
.marine-assets {
  min-height: 0;
  padding: clamp(82px, 8vw, 112px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(390px, .78fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  color: #071c2c;
  background: #f6f8f9;
  overflow: hidden
}

.marine-assets:before {
  background: linear-gradient(180deg, #fff 0%, #f6f8f9 100%)
}

.marine-assets:after {
  display: none
}

.marine-assets .fleet-image {
  position: relative;
  inset: auto;
  min-height: 0;
  height: min(64vh, 560px);
  overflow: hidden;
  background: #dfe7eb;
  box-shadow: none
}

.marine-assets .fleet-image-layer {
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(.86) contrast(1.01);
  transform: scale(1.018)
}

.marine-assets .fleet-image-layer.active {
  transform: scale(1)
}

.marine-assets .fleet-image:before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(7, 28, 44, .12);
  pointer-events: none
}

.marine-assets .fleet-image:after {
  z-index: 2;
  background: linear-gradient(0deg, rgba(7, 28, 44, .16), rgba(7, 28, 44, .02) 46%)
}

.marine-assets .fleet-panel {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none
}

.marine-assets .light-text {
  margin: 0;
  color: var(--red)
}

.marine-assets .fleet-panel h2 {
  max-width: 600px;
  margin: 16px 0 22px;
  color: #071c2c;
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.05;
  letter-spacing: -3px
}

.fleet-panel-head>p {
  max-width: 560px;
  color: #60717e;
  font-size: 16px;
  line-height: 1.75
}

.marine-assets .vessel-tabs {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  border-bottom: 1px solid #d5dee4
}

.marine-assets .vessel-tabs button {
  min-height: 0;
  padding: 0 0 15px;
  border: 0;
  color: #7d8d97;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: none
}

.marine-assets .vessel-tabs button:after {
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--red);
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left
}

.marine-assets .vessel-tabs button.active {
  color: #071c2c;
  background: transparent;
  border: 0;
  transform: none
}

.marine-assets .vessel-tabs button.active:after {
  transform: scaleX(1)
}

.marine-assets .vessel-data {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 20px;
  border-top: 0
}

.marine-assets .vessel-data>div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid #d5dee4
}

.marine-assets .vessel-data span {
  color: #8997a0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.marine-assets .vessel-data strong {
  color: #071c2c;
  text-align: left;
  font: 800 17px/1.25 "Manrope";
  letter-spacing: -.3px
}

.marine-assets .vessel-detail-button {
  width: min(360px, 100%);
  margin-top: 30px;
  color: #071c2c
}

.marine-assets .vessel-detail-button:after {
  background: #071c2c
}

.marine-assets .vessel-detail-button:hover {
  color: var(--red)
}

.marine-assets .vessel-detail-button:hover:after {
  background: var(--red)
}

@media(min-width:1051px) {
  .marine-assets {
    padding-top: clamp(78px, 7vw, 100px);
    padding-bottom: clamp(78px, 7vw, 100px)
  }

  .marine-assets .fleet-image {
    height: min(62vh, 540px);
    min-height: 480px
  }

  .marine-assets .fleet-panel {
    padding: 0;
    min-height: 0
  }

  .marine-assets .fleet-panel h2 {
    font-size: clamp(38px, 3.8vw, 58px)
  }
}

@media(max-width:1050px) {
  .marine-assets {
    grid-template-columns: 1fr;
    background: #f6f8f9
  }

  .marine-assets .fleet-image {
    height: 480px
  }

  .marine-assets .fleet-panel h2 {
    max-width: 760px
  }

  .marine-assets .vessel-tabs {
    margin-top: 36px
  }

  .fleet-readiness {
    display: none
  }
}

@media(max-width:700px) {
  .marine-assets {
    padding-top: 76px;
    padding-bottom: 76px;
    gap: 32px
  }

  .marine-assets .fleet-image {
    height: 330px
  }

  .marine-assets .fleet-panel h2 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -2px
  }

  .fleet-panel-head>p {
    font-size: 15px
  }

  .marine-assets .vessel-tabs {
    gap: 22px;
    overflow-x: auto
  }

  .marine-assets .vessel-tabs button {
    flex: 0 0 auto
  }

  .marine-assets .vessel-data>div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 15px 0
  }
}

/* Add controlled depth to Marine Assets */
.marine-assets {
  background: #f3f6f7
}

.marine-assets:before {
  background: linear-gradient(180deg, #fff 0%, #f5f7f8 100%), linear-gradient(90deg, rgba(7, 28, 44, .045) 1px, transparent 1px);
  background-size: auto, 96px 96px
}

.marine-assets .fleet-image {
  box-shadow: 0 24px 70px rgba(7, 28, 44, .1)
}

.fleet-photo-mark {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 20px 22px;
  color: #fff;
  background: rgba(7, 28, 44, .84);
  border-left: 3px solid var(--accent-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .16)
}

.fleet-photo-mark span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.fleet-photo-mark strong {
  display: block;
  font: 800 clamp(17px, 1.5vw, 22px)/1.18 "Manrope";
  letter-spacing: -.65px
}

.fleet-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px
}

.fleet-scope span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #d5dee4;
  background: #fff;
  color: #44545f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.marine-assets .fleet-panel {
  position: relative
}

.marine-assets .fleet-panel:before {
  content: "";
  position: absolute;
  top: -18px;
  left: -28px;
  width: 54px;
  height: 3px;
  background: var(--red)
}

.marine-assets .vessel-data {
  margin-top: 26px;
  background: rgba(255, 255, 255, .55)
}

@media(max-width:700px) {
  .fleet-photo-mark {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 17px 18px
  }

  .fleet-scope {
    gap: 8px;
    margin-top: 22px
  }

  .fleet-scope span {
    min-height: 34px;
    padding: 0 12px
  }

  .marine-assets .fleet-panel:before {
    display: none
  }
}

@media(min-width:1051px) {
  .marine-assets {
    padding-top: 66px;
    padding-bottom: 66px
  }

  .marine-assets .fleet-image {
    height: min(58vh, 505px);
    min-height: 455px
  }

  .fleet-photo-mark {
    right: 20px;
    bottom: 20px;
    max-width: 330px;
    padding: 17px 19px
  }

  .fleet-photo-mark strong {
    font-size: 18px
  }

  .fleet-scope {
    margin-top: 22px
  }

  .marine-assets .vessel-tabs {
    margin-top: 34px
  }

  .marine-assets .vessel-data {
    margin-top: 20px
  }

  .marine-assets .vessel-data>div {
    padding: 14px 0
  }
}

/* Marine assets kinetic redesign */
.marine-assets {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: clamp(76px, 7vw, 96px) var(--pad);
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, .78fr);
  gap: clamp(36px, 5.2vw, 84px);
  align-items: center;
  color: #fff;
  background: #061925
}

.marine-assets:before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 17% 18%, rgba(141, 132, 195, .22), transparent 28%), linear-gradient(135deg, #071c2c 0%, #081f2e 50%, #03111b 100%)
}

.marine-assets:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0 0;
  height: 42%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, .24), transparent);
  pointer-events: none
}

.marine-assets .fleet-image {
  height: min(62vh, 560px);
  min-height: 500px;
  background: #071c2c;
  box-shadow: 0 34px 95px rgba(0, 0, 0, .3);
  overflow: hidden
}

.marine-assets .fleet-image-layer {
  inset: -3%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.045) translate3d(0, 0, 0);
  transition: opacity .95s ease, transform 1.8s cubic-bezier(.22, 1, .36, 1)
}

.marine-assets .fleet-image-layer.active {
  opacity: 1;
  transform: scale(1.015);
  animation: marine-image-drift 16s ease-in-out infinite alternate
}

.marine-assets.is-switching .fleet-image-layer.active {
  transform: scale(1.035)
}

.marine-assets .fleet-image:before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  pointer-events: none
}

.marine-assets .fleet-image:after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 13, 20, .72), rgba(3, 13, 20, .05) 58%), linear-gradient(90deg, rgba(3, 13, 20, .18), transparent 54%)
}

.marine-motion-rail {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: 28px;
  bottom: 28px;
  width: 1px;
  background: rgba(255, 255, 255, .18);
  overflow: hidden
}

.marine-motion-rail span {
  position: absolute;
  left: 0;
  width: 1px;
  height: 24%;
  background: linear-gradient(180deg, transparent, var(--accent-light), transparent);
  animation: marine-rail-drop 4.2s cubic-bezier(.65, 0, .35, 1) infinite
}

.marine-motion-rail span:nth-child(2) {
  animation-delay: 1.4s
}

.marine-motion-rail span:nth-child(3) {
  animation-delay: 2.8s
}

.fleet-photo-mark {
  z-index: 5;
  right: 32px;
  bottom: 32px;
  max-width: 380px;
  padding: 20px 22px;
  color: #fff;
  background: rgba(5, 23, 34, .72);
  border: 1px solid rgba(255, 255, 255, .13);
  border-left: 3px solid var(--accent-light);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
  transform: translateY(0);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), background .45s ease
}

.marine-assets.is-switching .fleet-photo-mark {
  transform: translateY(-6px);
  background: rgba(5, 23, 34, .82)
}

.fleet-photo-mark span {
  color: var(--accent-light)
}

.fleet-photo-mark strong {
  font-size: clamp(18px, 1.5vw, 23px)
}

.marine-assets .fleet-panel {
  color: #fff;
  background: transparent
}

.marine-assets .fleet-panel:before {
  top: -22px;
  left: 0;
  width: 68px;
  height: 2px;
  background: var(--accent-light);
  transform-origin: left;
  animation: marine-line-pulse 4.6s ease-in-out infinite
}

.marine-assets .light-text {
  color: var(--accent-light)
}

.marine-assets .fleet-panel h2 {
  color: #fff;
  max-width: 620px;
  font-size: clamp(38px, 3.9vw, 62px);
  line-height: 1.02
}

.fleet-panel-head>p {
  color: #b9c7d0;
  max-width: 590px
}

.fleet-scope {
  gap: 9px;
  margin-top: 26px
}

.fleet-scope span {
  min-height: 37px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
  color: #d8e2e8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background .35s ease, color .35s ease
}

.fleet-scope span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .12);
  color: #fff
}

.fleet-motion-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: #8fa4b1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.fleet-motion-status i {
  display: block;
  width: min(210px, 42vw);
  height: 1px;
  background: rgba(255, 255, 255, .18);
  position: relative;
  overflow: hidden
}

.fleet-motion-status i:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  background: var(--accent-light);
  animation: marine-status-sweep 3.4s ease-in-out infinite
}

.marine-assets .vessel-tabs {
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04)
}

.marine-assets .vessel-tabs button {
  flex: 1;
  padding: 17px 18px;
  color: #9fb0bb;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: color .4s ease, background .45s ease
}

.marine-assets .vessel-tabs button:last-child {
  border-right: 0
}

.marine-assets .vessel-tabs button:after {
  right: 18px;
  bottom: 10px;
  left: 18px;
  background: var(--accent-light);
  height: 1px
}

.marine-assets .vessel-tabs button.active {
  color: #fff;
  background: rgba(255, 255, 255, .08)
}

.marine-assets .vessel-data {
  margin-top: 22px;
  background: transparent
}

.marine-assets .vessel-data>div {
  grid-template-columns: 148px 1fr;
  padding: 16px 0;
  border-bottom-color: rgba(255, 255, 255, .14);
  animation: marine-row-in .52s cubic-bezier(.22, 1, .36, 1) both
}

.marine-assets .vessel-data>div:nth-child(2) {
  animation-delay: .06s
}

.marine-assets .vessel-data>div:nth-child(3) {
  animation-delay: .12s
}

.marine-assets .vessel-data.is-changing>div {
  opacity: 0;
  transform: translateY(8px)
}

.marine-assets .vessel-data span {
  color: #8fa4b1
}

.marine-assets .vessel-data strong {
  color: #fff
}

.marine-assets .vessel-detail-button {
  color: #fff
}

.marine-assets .vessel-detail-button:after {
  background: rgba(255, 255, 255, .5)
}

.marine-assets .vessel-detail-button:hover {
  color: var(--accent-light)
}

.marine-assets .vessel-detail-button:hover:after {
  background: var(--accent-light)
}

@keyframes marine-bg-drift {
  from {
    background-position: 0% 50%
  }

  to {
    background-position: 100% 50%
  }
}

@keyframes marine-image-drift {
  from {
    transform: scale(1.015) translate3d(-.6%, 0, 0)
  }

  to {
    transform: scale(1.055) translate3d(.9%, -.8%, 0)
  }
}

@keyframes marine-rail-drop {
  0% {
    transform: translateY(-120%);
    opacity: 0
  }

  20%,
  70% {
    opacity: 1
  }

  100% {
    transform: translateY(520%);
    opacity: 0
  }
}

@keyframes marine-line-pulse {

  0%,
  100% {
    transform: scaleX(.42);
    opacity: .55
  }

  50% {
    transform: scaleX(1);
    opacity: 1
  }
}

@keyframes marine-status-sweep {
  0% {
    transform: translateX(-120%)
  }

  55%,
  100% {
    transform: translateX(300%)
  }
}

@keyframes marine-row-in {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:1050px) {
  .marine-assets {
    grid-template-columns: 1fr;
    background: #061925
  }

  .marine-assets .fleet-image {
    height: 520px
  }

  .marine-assets .fleet-panel {
    padding: 0
  }

  .fleet-motion-status i {
    width: 180px
  }
}

@media(max-width:700px) {
  .marine-assets {
    padding-top: 76px;
    padding-bottom: 76px;
    gap: 30px
  }

  .marine-assets .fleet-image {
    height: 350px;
    min-height: 350px
  }

  .marine-assets .fleet-image:before {
    inset: 13px
  }

  .marine-motion-rail {
    top: 18px;
    right: 18px;
    bottom: 18px
  }

  .fleet-photo-mark {
    right: 15px;
    bottom: 15px;
    left: 15px;
    max-width: none;
    padding: 17px 18px
  }

  .fleet-photo-mark strong {
    font-size: 18px
  }

  .marine-assets .fleet-panel h2 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -2px
  }

  .fleet-scope {
    margin-top: 22px
  }

  .fleet-motion-status {
    margin-top: 20px
  }

  .marine-assets .vessel-tabs {
    overflow: visible
  }

  .marine-assets .vessel-tabs button {
    padding: 15px 13px;
    font-size: 10px
  }

  .marine-assets .vessel-data>div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 14px 0
  }

  .marine-assets .fleet-panel:before {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {

  .marine-assets:before,
  .marine-assets .fleet-image-layer.active,
  .marine-motion-rail span,
  .marine-assets .fleet-panel:before,
  .fleet-motion-status i:after,
  .marine-assets .vessel-data>div {
    animation: none
  }

  .fleet-scope span:hover,
  .marine-assets.is-switching .fleet-photo-mark {
    transform: none
  }
}

@media(min-width:1051px) {
  .marine-assets {
    padding-top: 58px;
    padding-bottom: 58px
  }

  .marine-assets .fleet-image {
    height: min(57vh, 510px);
    min-height: 470px
  }

  .marine-assets .fleet-panel h2 {
    font-size: clamp(38px, 3.55vw, 56px)
  }

  .fleet-scope {
    margin-top: 22px
  }

  .fleet-motion-status {
    margin-top: 20px
  }

  .marine-assets .vessel-tabs {
    margin-top: 28px
  }

  .marine-assets .vessel-data {
    margin-top: 18px
  }

  .marine-assets .vessel-data>div {
    padding: 14px 0
  }

  .fleet-photo-mark {
    bottom: 24px;
    right: 24px
  }
}

/* Marine assets full-stage redesign */
.marine-stage {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: 0;
  color: #fff;
  background: #03111b;
  overflow: hidden
}

.marine-stage:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 17, 27, .92), rgba(3, 17, 27, .68) 42%, rgba(3, 17, 27, .24) 72%), linear-gradient(0deg, rgba(3, 17, 27, .95), rgba(3, 17, 27, .16) 54%, rgba(3, 17, 27, .45));
  pointer-events: none
}

.marine-stage:after {
  content: "";
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 34px;
  left: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .06));
  pointer-events: none
}

.marine-stage .fleet-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #03111b;
  box-shadow: none
}

.marine-stage .fleet-image-layer {
  position: absolute;
  inset: -2%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.7s cubic-bezier(.22, 1, .36, 1)
}

.marine-stage .fleet-image-layer.active {
  opacity: 1;
  transform: scale(1.01);
  animation: marine-stage-drift 18s ease-in-out infinite alternate
}

.marine-stage.is-switching .fleet-image-layer.active {
  transform: scale(1.04)
}

.marine-stage .fleet-image:before,
.marine-stage .fleet-image:after,
.marine-stage .fleet-photo-mark,
.marine-stage .marine-motion-rail,
.marine-stage .fleet-scope,
.marine-stage .fleet-motion-status {
  display: none
}

.marine-stage-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding: clamp(98px, 10vw, 132px) var(--pad) 58px;
  gap: 48px
}

.marine-stage .fleet-panel {
  align-self: center;
  display: block;
  width: min(850px, 62vw);
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none
}

.marine-stage .fleet-panel:before {
  content: "";
  position: relative;
  display: block;
  width: 72px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--accent-light);
  animation: marine-line-pulse 5.4s ease-in-out infinite
}

.marine-stage .light-text {
  margin: 0;
  color: var(--accent-light)
}

.marine-stage .fleet-panel h2 {
  max-width: 820px;
  margin: 16px 0 24px;
  color: #fff;
  font-size: clamp(50px, 6vw, 92px);
  line-height: .96;
  letter-spacing: -5px
}

.marine-stage .fleet-panel-head>p {
  max-width: 680px;
  color: rgba(228, 236, 241, .82);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7
}

.marine-stage .vessel-detail-button {
  width: min(380px, 100%);
  margin-top: 34px;
  color: #fff
}

.marine-stage .vessel-detail-button:after {
  background: rgba(255, 255, 255, .55)
}

.marine-stage .vessel-detail-button:hover {
  color: var(--accent-light)
}

.marine-stage .vessel-detail-button:hover:after {
  background: var(--accent-light)
}

.marine-stage-console {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch
}

.marine-stage .vessel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  border: 0;
  background: transparent
}

.marine-stage .vessel-tabs button {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #aebdc7;
  background: rgba(255, 255, 255, .045);
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition: background .45s ease, border-color .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1), color .35s ease
}

.marine-stage .vessel-tabs button:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.marine-stage .vessel-tabs button:after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transform: none
}

.marine-stage .vessel-tabs button span {
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.marine-stage .vessel-tabs button b {
  display: block;
  margin-top: 30px;
  color: #fff;
  font: 900 clamp(23px, 2vw, 32px)/1 "Manrope";
  letter-spacing: -1.2px
}

.marine-stage .vessel-tabs button small {
  display: block;
  margin-top: 13px;
  color: #aebdc7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase
}

.marine-stage .vessel-tabs button.active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .32);
  transform: translateY(-4px)
}

.marine-stage .vessel-tabs button.active:before {
  transform: scaleX(1)
}

.marine-stage .vessel-tabs button.active small {
  color: #d7e2e9
}

.marine-stage .vessel-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(3, 17, 27, .52)
}

.marine-stage .vessel-data>div {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .12);
  animation: marine-row-in .55s cubic-bezier(.22, 1, .36, 1) both
}

.marine-stage .vessel-data>div:last-child {
  border-right: 0
}

.marine-stage .vessel-data span {
  color: #8fa4b1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase
}

.marine-stage .vessel-data strong {
  max-width: 220px;
  color: #fff;
  text-align: left;
  font: 900 clamp(17px, 1.6vw, 24px)/1.16 "Manrope";
  letter-spacing: -.8px
}

.marine-stage .vessel-data.is-changing>div {
  opacity: 0;
  transform: translateY(8px)
}

@keyframes marine-stage-drift {
  from {
    transform: scale(1.01) translate3d(-.5%, 0, 0)
  }

  to {
    transform: scale(1.06) translate3d(.8%, -.7%, 0)
  }
}

@media(max-width:1100px) {
  .marine-stage-content {
    padding-top: 96px
  }

  .marine-stage .fleet-panel {
    width: 100%
  }

  .marine-stage-console {
    grid-template-columns: 1fr
  }

  .marine-stage .vessel-data {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:700px) {
  .marine-stage-content {
    min-height: auto;
    padding: 92px 20px 48px;
    gap: 34px
  }

  .marine-stage .fleet-panel h2 {
    font-size: clamp(42px, 12vw, 58px);
    letter-spacing: -2.8px
  }

  .marine-stage .fleet-panel-head>p {
    font-size: 15px
  }

  .marine-stage .vessel-detail-button {
    margin-top: 26px
  }

  .marine-stage .vessel-tabs {
    grid-template-columns: 1fr
  }

  .marine-stage .vessel-tabs button {
    min-height: 124px;
    padding: 20px
  }

  .marine-stage .vessel-tabs button b {
    margin-top: 18px
  }

  .marine-stage .vessel-data {
    grid-template-columns: 1fr
  }

  .marine-stage .vessel-data>div {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 20px
  }

  .marine-stage .vessel-data>div:last-child {
    border-bottom: 0
  }
}

@media(prefers-reduced-motion:reduce) {

  .marine-stage .fleet-image-layer.active,
  .marine-stage .fleet-panel:before,
  .marine-stage .vessel-data>div {
    animation: none
  }

  .marine-stage .vessel-tabs button.active {
    transform: none
  }
}

/* Marine assets command-deck redesign */
.marine-assets.marine-command {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: clamp(72px, 8vh, 92px) var(--pad);
  color: #fff;
  background: #04131e;
  overflow: hidden;
  isolation: isolate
}

.marine-assets.marine-command:before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(141, 132, 195, .18), transparent 29%), linear-gradient(135deg, #071c2c 0%, #061a28 48%, #03111b 100%)
}

.marine-assets.marine-command:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .74), transparent 78%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .74), transparent 78%);
  pointer-events: none
}

.marine-command-shell {
  display: grid;
  grid-template-columns: minmax(360px, .76fr) minmax(520px, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(24px, 3vw, 44px) clamp(44px, 5vw, 82px);
  max-width: 1700px;
  min-height: calc(100svh - clamp(144px, 16vh, 184px));
  margin: 0 auto;
  align-items: center
}

.marine-command-copy {
  position: relative;
  align-self: center;
  display: block;
  width: auto;
  max-width: 680px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none
}

.marine-command-copy:before {
  content: "";
  display: block;
  width: 66px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--accent-light);
  animation: marine-line-pulse 5.8s ease-in-out infinite
}

.marine-command-copy .light-text {
  margin: 0;
  color: var(--accent-light)
}

.marine-command-copy h2 {
  max-width: 680px;
  margin: 16px 0 22px;
  color: #fff;
  font-size: clamp(42px, 4.7vw, 76px);
  line-height: .98;
  letter-spacing: -4px
}

.marine-command-copy .fleet-panel-head>p {
  max-width: 610px;
  color: #c1ccd4;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.68
}

.marine-asset-scope {
  display: grid;
  gap: 8px;
  margin-top: 28px
}

.marine-asset-scope span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 34px;
  color: #d9e3e9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase
}

.marine-asset-scope span:before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(141, 132, 195, .85)
}

.marine-command .vessel-detail-button {
  width: min(360px, 100%);
  margin-top: 26px;
  color: #fff
}

.marine-command .vessel-detail-button:after {
  background: rgba(255, 255, 255, .52)
}

.marine-command .vessel-detail-button:hover {
  color: var(--accent-light)
}

.marine-command .vessel-detail-button:hover:after {
  background: var(--accent-light)
}

.marine-command-media {
  position: relative;
  align-self: stretch;
  min-height: clamp(430px, 60vh, 620px);
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 34px 95px rgba(0, 0, 0, .28)
}

.marine-command-media .fleet-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #071c2c;
  box-shadow: none;
  overflow: hidden
}

.marine-command-media .fleet-image-layer {
  position: absolute;
  inset: -3%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: saturate(.88) contrast(1.03);
  transform: scale(1.045);
  transition: opacity 1s ease, transform 1.7s cubic-bezier(.22, 1, .36, 1)
}

.marine-command-media .fleet-image-layer.active {
  opacity: 1;
  transform: scale(1.015);
  animation: marine-command-drift 17s ease-in-out infinite alternate
}

.marine-command.is-switching .fleet-image-layer.active {
  transform: scale(1.04)
}

.marine-command-media .fleet-image:before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  pointer-events: none
}

.marine-command-media .fleet-image:after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 13, 20, .78), rgba(3, 13, 20, .06) 58%), linear-gradient(90deg, rgba(3, 13, 20, .2), transparent 54%);
  display: block
}

.marine-command-media figcaption {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  color: #fff;
  background: rgba(5, 23, 34, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 3px solid var(--accent-light);
  backdrop-filter: blur(12px)
}

.marine-command-media figcaption span {
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.marine-command-media figcaption strong {
  font: 900 clamp(22px, 2.2vw, 34px)/1 "Manrope";
  letter-spacing: -1.2px
}

.marine-command-console {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(420px, .72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch
}

.marine-command .vessel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  border: 0;
  background: transparent
}

.marine-command .vessel-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #aebdc7;
  background: rgba(255, 255, 255, .045);
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transform: none;
  transition: background .45s ease, border-color .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1), color .35s ease
}

.marine-command .vessel-tabs button:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.marine-command .vessel-tabs button:after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -44px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  transform: none
}

.marine-command .vessel-tabs button span {
  grid-row: 1 / 3;
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.marine-command .vessel-tabs button b {
  display: block;
  margin: 0;
  color: #fff;
  font: 900 clamp(19px, 1.55vw, 27px)/1.05 "Manrope";
  letter-spacing: -1px
}

.marine-command .vessel-tabs button small {
  display: block;
  margin-top: 9px;
  color: #aebdc7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase
}

.marine-command .vessel-tabs button.active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .32);
  transform: translateY(-3px)
}

.marine-command .vessel-tabs button.active:before {
  transform: scaleX(1)
}

.marine-command .vessel-tabs button.active small {
  color: #d7e2e9
}

.marine-command .vessel-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(3, 17, 27, .52);
  backdrop-filter: blur(10px)
}

.marine-command .vessel-data>div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .12);
  animation: marine-row-in .55s cubic-bezier(.22, 1, .36, 1) both
}

.marine-command .vessel-data>div:last-child {
  border-right: 0
}

.marine-command .vessel-data span {
  color: #8fa4b1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase
}

.marine-command .vessel-data strong {
  max-width: 240px;
  color: #fff;
  text-align: left;
  font: 900 clamp(16px, 1.3vw, 22px)/1.16 "Manrope";
  letter-spacing: -.7px
}

.marine-command .vessel-data.is-changing>div {
  opacity: 0;
  transform: translateY(8px)
}

@keyframes marine-command-drift {
  from {
    transform: scale(1.015) translate3d(-.5%, 0, 0)
  }

  to {
    transform: scale(1.055) translate3d(.8%, -.7%, 0)
  }
}

@media(max-height:820px) and (min-width:1051px) {
  .marine-assets.marine-command {
    padding-top: 58px;
    padding-bottom: 46px
  }

  .marine-command-shell {
    min-height: calc(100svh - 104px);
    gap: 20px 58px
  }

  .marine-command-copy h2 {
    font-size: clamp(38px, 4vw, 62px);
    letter-spacing: -3.2px
  }

  .marine-command-copy .fleet-panel-head>p {
    font-size: 15px;
    line-height: 1.55
  }

  .marine-asset-scope {
    margin-top: 20px
  }

  .marine-command .vessel-detail-button {
    margin-top: 20px
  }

  .marine-command-media {
    min-height: 430px
  }

  .marine-command .vessel-tabs button,
  .marine-command .vessel-data>div {
    min-height: 96px;
    padding: 18px
  }
}

@media(max-width:1100px) {
  .marine-command-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto
  }

  .marine-command-copy {
    max-width: 820px
  }

  .marine-command-media {
    min-height: 480px
  }

  .marine-command-console {
    grid-template-columns: 1fr
  }

  .marine-command .vessel-data {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:700px) {
  .marine-assets.marine-command {
    min-height: 0;
    padding: 76px 20px
  }

  .marine-command-shell {
    min-height: 0;
    gap: 30px
  }

  .marine-command-copy:before {
    display: none
  }

  .marine-command-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .marine-command-copy .fleet-panel-head>p {
    font-size: 15px
  }

  .marine-asset-scope {
    margin-top: 22px
  }

  .marine-command-media {
    min-height: 340px
  }

  .marine-command-media .fleet-image:before {
    inset: 12px
  }

  .marine-command-media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    padding: 17px 18px
  }

  .marine-command-media figcaption span {
    display: block;
    margin-bottom: 10px
  }

  .marine-command-media figcaption strong {
    font-size: 22px
  }

  .marine-command .vessel-tabs {
    grid-template-columns: 1fr
  }

  .marine-command .vessel-tabs button {
    min-height: 102px;
    padding: 18px
  }

  .marine-command .vessel-data {
    grid-template-columns: 1fr
  }

  .marine-command .vessel-data>div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 18px
  }

  .marine-command .vessel-data>div:last-child {
    border-bottom: 0
  }
}

@media(prefers-reduced-motion:reduce) {

  .marine-command-media .fleet-image-layer.active,
  .marine-command-copy:before,
  .marine-command .vessel-data>div {
    animation: none
  }

  .marine-command .vessel-tabs button.active {
    transform: none
  }
}

/* Marine assets quiet-stage redesign */
.marine-assets.marine-stage {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: clamp(64px, 7.2vh, 84px) var(--pad);
  color: #071c2c;
  background: #f3f6f7;
  overflow: hidden
}

.marine-assets.marine-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, #f3f6f7 100%);
  pointer-events: none
}

.marine-assets.marine-stage:after {
  display: none
}

.marine-stage-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(390px, .72fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: stretch;
  max-width: 1700px;
  min-height: calc(100svh - clamp(128px, 14.4vh, 168px));
  margin: 0 auto
}

.marine-stage-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #dfe7eb;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .1)
}

.marine-stage-media .fleet-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #dfe7eb;
  box-shadow: none;
  overflow: hidden
}

.marine-stage-media .fleet-image-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: saturate(.9) contrast(1.02);
  transform: scale(1.018);
  transition: opacity .85s ease, transform 1.2s cubic-bezier(.22, 1, .36, 1)
}

.marine-stage-media .fleet-image-layer.active {
  opacity: 1;
  transform: scale(1)
}

.marine-stage.is-switching .fleet-image-layer.active {
  transform: scale(1.012)
}

.marine-stage-media .fleet-image:before {
  display: none
}

.marine-stage-media .fleet-image:after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 28, 44, .46), rgba(7, 28, 44, .03) 58%);
  display: block
}

.marine-stage-media figcaption {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(7, 28, 44, .82);
  border-left: 3px solid var(--red)
}

.marine-stage-media figcaption span {
  color: #c6d2d9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase
}

.marine-stage-media figcaption strong {
  font: 900 clamp(20px, 2vw, 30px)/1 "Manrope";
  letter-spacing: -1px
}

.marine-stage-copy {
  align-self: center;
  display: block;
  width: auto;
  padding: clamp(30px, 3.4vw, 46px);
  color: #071c2c;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: none;
  backdrop-filter: none
}

.marine-stage-copy:before {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--red);
  animation: none
}

.marine-stage-copy .light-text {
  margin: 0;
  color: var(--red)
}

.marine-stage-copy h2 {
  max-width: 560px;
  margin: 14px 0 20px;
  color: #071c2c;
  font-size: clamp(34px, 3.35vw, 54px);
  line-height: 1.04;
  letter-spacing: -2.4px
}

.marine-stage-copy .fleet-panel-head>p {
  max-width: 560px;
  color: #60717e;
  font-size: 15px;
  line-height: 1.68
}

.marine-stage .vessel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 30px 0 0;
  border: 0;
  background: transparent
}

.marine-stage .vessel-tabs button {
  position: relative;
  display: block;
  min-height: 92px;
  padding: 18px;
  border: 1px solid #d5dee4;
  color: #657680;
  background: #f8fafb;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transform: none;
  transition: background .32s ease, border-color .32s ease, color .32s ease
}

.marine-stage .vessel-tabs button:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s ease
}

.marine-stage .vessel-tabs button:after {
  display: none
}

.marine-stage .vessel-tabs button span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.marine-stage .vessel-tabs button b {
  display: block;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(18px, 1.4vw, 23px)/1.08 "Manrope";
  letter-spacing: -.7px
}

.marine-stage .vessel-tabs button small {
  display: block;
  margin-top: 8px;
  color: #74848e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase
}

.marine-stage .vessel-tabs button.active {
  color: #fff;
  background: #071c2c;
  border-color: #071c2c;
  transform: none
}

.marine-stage .vessel-tabs button.active:before {
  transform: scaleX(1)
}

.marine-stage .vessel-tabs button.active b,
.marine-stage .vessel-tabs button.active small {
  color: #fff
}

.marine-stage .vessel-data {
  display: grid;
  grid-template-columns: 1fr;
  margin: 18px 0 0;
  border-top: 1px solid #d5dee4;
  background: transparent;
  backdrop-filter: none
}

.marine-stage .vessel-data>div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 22px;
  align-items: baseline;
  min-height: 0;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #d5dee4;
  animation: marine-row-in .38s cubic-bezier(.22, 1, .36, 1) both
}

.marine-stage .vessel-data>div:last-child {
  border-bottom: 1px solid #d5dee4
}

.marine-stage .vessel-data span {
  color: #8997a0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase
}

.marine-stage .vessel-data strong {
  max-width: none;
  color: #071c2c;
  text-align: left;
  font: 800 16px/1.22 "Manrope";
  letter-spacing: -.25px
}

.marine-stage .vessel-data.is-changing>div {
  opacity: 0;
  transform: translateY(6px)
}

.marine-stage .vessel-detail-button {
  width: min(360px, 100%);
  margin-top: 24px;
  color: #071c2c
}

.marine-stage .vessel-detail-button:after {
  background: #071c2c
}

.marine-stage .vessel-detail-button:hover {
  color: var(--red)
}

.marine-stage .vessel-detail-button:hover:after {
  background: var(--red)
}

@media(max-height:820px) and (min-width:1051px) {
  .marine-assets.marine-stage {
    padding-top: 52px;
    padding-bottom: 52px
  }

  .marine-stage-shell {
    min-height: calc(100svh - 104px)
  }

  .marine-stage-media {
    min-height: 440px
  }

  .marine-stage-copy {
    padding: 30px
  }

  .marine-stage-copy h2 {
    font-size: clamp(32px, 3vw, 46px)
  }

  .marine-stage-copy .fleet-panel-head>p {
    font-size: 14px;
    line-height: 1.55
  }

  .marine-stage .vessel-tabs {
    margin-top: 22px
  }

  .marine-stage .vessel-tabs button {
    min-height: 82px;
    padding: 15px
  }

  .marine-stage .vessel-tabs button span {
    margin-bottom: 10px
  }

  .marine-stage .vessel-data {
    margin-top: 14px
  }

  .marine-stage .vessel-data>div {
    padding: 11px 0
  }

  .marine-stage .vessel-detail-button {
    margin-top: 18px
  }
}

@media(max-width:1100px) {
  .marine-stage-shell {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .marine-stage-media {
    min-height: 460px
  }

  .marine-stage-copy {
    align-self: auto
  }

  .marine-assets.marine-stage {
    min-height: 0
  }
}

@media(max-width:700px) {
  .marine-assets.marine-stage {
    padding: 76px 20px
  }

  .marine-stage-shell {
    gap: 26px
  }

  .marine-stage-media {
    min-height: 330px
  }

  .marine-stage-media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    padding: 16px 18px
  }

  .marine-stage-media figcaption span {
    display: block;
    margin-bottom: 9px
  }

  .marine-stage-media figcaption strong {
    font-size: 22px
  }

  .marine-stage-copy {
    padding: 24px 20px
  }

  .marine-stage-copy:before {
    display: none
  }

  .marine-stage-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -1.8px
  }

  .marine-stage-copy .fleet-panel-head>p {
    font-size: 15px
  }

  .marine-stage .vessel-tabs {
    grid-template-columns: 1fr;
    margin-top: 24px
  }

  .marine-stage .vessel-data>div {
    grid-template-columns: 1fr;
    gap: 6px
  }

  .marine-stage .vessel-detail-button {
    margin-top: 20px
  }
}

@media(prefers-reduced-motion:reduce) {

  .marine-stage-media .fleet-image-layer,
  .marine-stage .vessel-data>div {
    animation: none;
    transition: none
  }
}

/* Ensure quiet-stage wins over older marine-stage rules */
.marine-assets.marine-stage .marine-stage-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .68fr)
}

.marine-assets.marine-stage .marine-stage-copy {
  align-self: center;
  display: block;
  width: auto;
  max-width: none;
  padding: clamp(30px, 3.4vw, 46px);
  color: #071c2c;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: none;
  backdrop-filter: none
}

.marine-assets.marine-stage .marine-stage-copy:before {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 0 0 22px;
  background: var(--red);
  animation: none
}

.marine-assets.marine-stage .marine-stage-copy .light-text {
  margin: 0;
  color: var(--red)
}

.marine-assets.marine-stage .marine-stage-copy h2 {
  max-width: 560px;
  margin: 14px 0 20px;
  color: #071c2c;
  font-size: clamp(34px, 3.35vw, 54px);
  line-height: 1.04;
  letter-spacing: -2.4px
}

.marine-assets.marine-stage .marine-stage-copy .fleet-panel-head>p {
  max-width: 560px;
  color: #60717e;
  font-size: 15px;
  line-height: 1.68
}

.marine-assets.marine-stage .marine-stage-copy .vessel-tabs {
  margin-top: 30px
}

.marine-assets.marine-stage .marine-stage-copy .vessel-detail-button {
  margin-top: 24px;
  color: #071c2c
}

.marine-assets.marine-stage .marine-stage-copy .vessel-detail-button:after {
  background: #071c2c
}

@media(max-height:820px) and (min-width:1051px) {
  .marine-assets.marine-stage .marine-stage-copy {
    padding: 30px
  }

  .marine-assets.marine-stage .marine-stage-copy h2 {
    font-size: clamp(32px, 3vw, 46px)
  }

  .marine-assets.marine-stage .marine-stage-copy .fleet-panel-head>p {
    font-size: 14px;
    line-height: 1.55
  }

  .marine-assets.marine-stage .marine-stage-copy .vessel-tabs {
    margin-top: 22px
  }

  .marine-assets.marine-stage .marine-stage-copy .vessel-detail-button {
    margin-top: 18px
  }
}

@media(max-width:700px) {
  .marine-assets.marine-stage .marine-stage-shell {
    grid-template-columns: 1fr
  }

  .marine-assets.marine-stage .marine-stage-copy {
    padding: 24px 20px
  }

  .marine-assets.marine-stage .marine-stage-copy:before {
    display: none
  }

  .marine-assets.marine-stage .marine-stage-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -1.8px
  }
}

@media(min-width:1051px) {
  .marine-assets.marine-stage {
    padding-top: 52px;
    padding-bottom: 52px
  }

  .marine-assets.marine-stage .marine-stage-shell {
    min-height: calc(100svh - 104px)
  }

  .marine-assets.marine-stage .marine-stage-copy {
    padding: 32px
  }

  .marine-assets.marine-stage .marine-stage-copy:before {
    margin-bottom: 18px
  }

  .marine-assets.marine-stage .marine-stage-copy h2 {
    font-size: clamp(32px, 2.9vw, 42px);
    line-height: 1.03;
    letter-spacing: -1.9px;
    margin: 12px 0 16px
  }

  .marine-assets.marine-stage .marine-stage-copy .fleet-panel-head>p {
    font-size: 14px;
    line-height: 1.55
  }

  .marine-assets.marine-stage .marine-stage-copy .vessel-tabs {
    margin-top: 22px
  }

  .marine-assets.marine-stage .vessel-tabs button {
    min-height: 76px;
    padding: 14px
  }

  .marine-assets.marine-stage .vessel-tabs button span {
    margin-bottom: 8px
  }

  .marine-assets.marine-stage .vessel-tabs button b {
    font-size: 18px
  }

  .marine-assets.marine-stage .vessel-tabs button small {
    margin-top: 6px;
    font-size: 9px
  }

  .marine-assets.marine-stage .vessel-data {
    margin-top: 14px
  }

  .marine-assets.marine-stage .vessel-data>div {
    grid-template-columns: 128px 1fr;
    padding: 10px 0
  }

  .marine-assets.marine-stage .vessel-data strong {
    font-size: 15px
  }

  .marine-assets.marine-stage .marine-stage-copy .vessel-detail-button {
    margin-top: 18px
  }

  .marine-assets.marine-stage .marine-stage-media {
    min-height: 520px
  }
}

/* Marine assets portfolio redesign */
.marine-assets.marine-stage {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: clamp(60px, 7vh, 82px) var(--pad);
  color: #071c2c;
  background: #eef3f5;
  overflow: hidden
}

.marine-assets.marine-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, #eef3f5 100%);
  pointer-events: none
}

.marine-assets.marine-stage:after {
  display: none
}

.marine-portfolio {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(26px, 3.5vh, 38px);
  max-width: 1700px;
  min-height: calc(100svh - clamp(120px, 14vh, 164px));
  margin: 0 auto
}

.marine-portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .58fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: end
}

.marine-portfolio .fleet-panel-head {
  max-width: 880px
}

.marine-portfolio .light-text {
  margin: 0;
  color: var(--red)
}

.marine-portfolio h2 {
  max-width: 880px;
  margin: 14px 0 0;
  color: #071c2c;
  font-size: clamp(38px, 4.5vw, 70px);
  line-height: 1;
  letter-spacing: -3.8px
}

.marine-portfolio-intro {
  max-width: 560px;
  padding-bottom: 4px
}

.marine-portfolio-intro p {
  margin: 0;
  color: #60717e;
  font-size: 15px;
  line-height: 1.7
}

.marine-partner-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #d8e1e7
}

.marine-partner-lockup span {
  margin-right: 4px;
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap
}

.marine-partner-lockup img {
  display: block;
  width: auto;
  max-width: 142px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7, 28, 44, .06));
  mix-blend-mode: multiply
}

.marine-partner-lockup i {
  width: 24px;
  height: 1px;
  background: #b8c5cd
}

.marine-portfolio .vessel-detail-button {
  width: 100%;
  margin-top: 22px;
  color: #071c2c
}

.marine-portfolio .vessel-detail-button:after {
  background: #071c2c
}

.marine-portfolio .vessel-detail-button:hover {
  color: var(--red)
}

.marine-portfolio .vessel-detail-button:hover:after {
  background: var(--red)
}

.marine-portfolio-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .42fr);
  gap: 18px;
  align-items: stretch;
  min-height: 0
}

.marine-portfolio-board .marine-stage-media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #dfe7eb;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .1)
}

.marine-portfolio-board .fleet-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #dfe7eb;
  box-shadow: none;
  overflow: hidden
}

.marine-portfolio-board .fleet-image-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: saturate(.9) contrast(1.02);
  transform: scale(1.018);
  transition: opacity .85s ease, transform 1.15s cubic-bezier(.22, 1, .36, 1)
}

.marine-portfolio-board .fleet-image-layer.active {
  opacity: 1;
  transform: scale(1)
}

.marine-assets.marine-stage.is-switching .marine-portfolio-board .fleet-image-layer.active {
  transform: scale(1.012)
}

.marine-portfolio-board .fleet-image:before {
  display: none
}

.marine-portfolio-board .fleet-image:after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 28, 44, .46), rgba(7, 28, 44, .02) 54%);
  display: block
}

.marine-portfolio-board .marine-stage-media figcaption {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(7, 28, 44, .82);
  border-left: 3px solid var(--red);
  backdrop-filter: none
}

.marine-portfolio-board .marine-stage-media figcaption span {
  color: #c6d2d9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase
}

.marine-portfolio-board .marine-stage-media figcaption strong {
  font: 900 clamp(20px, 2vw, 30px)/1 "Manrope";
  letter-spacing: -1px
}

.marine-vessel-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  border: 1px solid #d8e1e7
}

.marine-panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8e1e7
}

.marine-panel-title span {
  color: #8997a0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.marine-panel-title strong {
  max-width: 170px;
  color: #071c2c;
  text-align: right;
  font: 900 20px/1.05 "Manrope";
  letter-spacing: -.8px
}

.marine-portfolio .vessel-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px 0 0;
  border: 0;
  background: transparent
}

.marine-portfolio .vessel-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  min-height: 84px;
  padding: 18px;
  border: 1px solid #d5dee4;
  color: #657680;
  background: #f8fafb;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transform: none;
  transition: background .32s ease, border-color .32s ease, color .32s ease
}

.marine-portfolio .vessel-tabs button:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .38s ease
}

.marine-portfolio .vessel-tabs button:after {
  display: none
}

.marine-portfolio .vessel-tabs button span {
  grid-row: 1 / 3;
  margin: 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.marine-portfolio .vessel-tabs button b {
  display: block;
  margin: 0;
  color: #071c2c;
  font: 900 21px/1.05 "Manrope";
  letter-spacing: -.8px
}

.marine-portfolio .vessel-tabs button small {
  display: block;
  margin-top: 7px;
  color: #74848e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase
}

.marine-portfolio .vessel-tabs button.active {
  color: #fff;
  background: #071c2c;
  border-color: #071c2c;
  transform: none
}

.marine-portfolio .vessel-tabs button.active:before {
  transform: scaleY(1)
}

.marine-portfolio .vessel-tabs button.active b,
.marine-portfolio .vessel-tabs button.active small {
  color: #fff
}

.marine-portfolio .vessel-data {
  display: grid;
  grid-template-columns: 1fr;
  margin: 22px 0 0;
  border-top: 1px solid #d5dee4;
  background: transparent;
  backdrop-filter: none
}

.marine-portfolio .vessel-data>div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: baseline;
  min-height: 0;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #d5dee4;
  animation: marine-row-in .38s cubic-bezier(.22, 1, .36, 1) both
}

.marine-portfolio .vessel-data span {
  color: #8997a0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase
}

.marine-portfolio .vessel-data strong {
  max-width: none;
  color: #071c2c;
  text-align: left;
  font: 800 15px/1.22 "Manrope";
  letter-spacing: -.25px
}

.marine-portfolio .vessel-data.is-changing>div {
  opacity: 0;
  transform: translateY(6px)
}

.marine-portfolio .marine-vessel-panel {
  justify-content: flex-start
}

.marine-portfolio .marine-vessel-panel .vessel-detail-button {
  margin-top: auto;
  padding-top: 18px
}

@media(max-height:920px) and (min-width:1051px) {
  .marine-assets.marine-stage {
    padding-top: 46px;
    padding-bottom: 46px
  }

  .marine-portfolio {
    min-height: calc(100svh - 92px);
    gap: 20px
  }

  .marine-portfolio h2 {
    font-size: clamp(36px, 4vw, 60px)
  }

  .marine-portfolio-intro p {
    font-size: 14px;
    line-height: 1.55
  }

  .marine-portfolio .vessel-detail-button {
    margin-top: 18px
  }

  .marine-portfolio-board {
    min-height: 0
  }

  .marine-portfolio-board .marine-stage-media {
    min-height: 500px
  }

  .marine-vessel-panel {
    padding: 20px
  }

  .marine-panel-title {
    padding-bottom: 14px
  }

  .marine-portfolio .vessel-tabs {
    margin-top: 16px
  }

  .marine-portfolio .vessel-tabs button {
    min-height: 72px;
    padding: 14px
  }

  .marine-portfolio .vessel-tabs button b {
    font-size: 18px
  }

  .marine-portfolio .vessel-tabs button small {
    font-size: 9px
  }

  .marine-portfolio .vessel-data {
    margin-top: 16px
  }

  .marine-portfolio .vessel-data>div {
    padding: 9px 0
  }
}

@media(max-width:1100px) {
  .marine-assets.marine-stage {
    min-height: 0
  }

  .marine-portfolio {
    min-height: 0
  }

  .marine-portfolio-head,
  .marine-portfolio-board {
    grid-template-columns: 1fr
  }

  .marine-portfolio-board .marine-stage-media {
    min-height: 460px
  }

  .marine-vessel-panel {
    display: block
  }

  .marine-portfolio .marine-vessel-panel .vessel-detail-button {
    margin-top: 22px
  }
}

@media(max-width:700px) {
  .marine-assets.marine-stage {
    padding: 76px 20px
  }

  .marine-portfolio {
    gap: 26px
  }

  .marine-portfolio h2 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -2.2px
  }

  .marine-portfolio-intro p {
    font-size: 15px
  }

  .marine-partner-lockup {
    flex-wrap: wrap;
    gap: 10px
  }

  .marine-partner-lockup span {
    flex-basis: 100%
  }

  .marine-partner-lockup img {
    max-width: 126px;
    height: 24px
  }

  .marine-portfolio-board .marine-stage-media {
    min-height: 330px
  }

  .marine-portfolio-board .marine-stage-media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    padding: 16px 18px
  }

  .marine-portfolio-board .marine-stage-media figcaption span {
    display: block;
    margin-bottom: 9px
  }

  .marine-portfolio-board .marine-stage-media figcaption strong {
    font-size: 22px
  }

  .marine-vessel-panel {
    padding: 20px
  }

  .marine-panel-title strong {
    text-align: left
  }

  .marine-portfolio .vessel-data>div {
    grid-template-columns: 1fr;
    gap: 6px
  }

  .marine-portfolio .vessel-detail-button {
    margin-top: 20px
  }
}

/* Compact vessel badge on Marine Assets image */
.marine-portfolio-board .marine-stage-media figcaption {
  right: auto;
  bottom: 26px;
  left: 26px;
  display: block;
  width: min(340px, calc(100% - 52px));
  padding: 18px 20px 20px;
  color: #fff;
  background: rgba(5, 23, 34, .9);
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  backdrop-filter: none
}

.marine-portfolio-board .marine-stage-media figcaption span {
  display: block;
  margin: 0 0 12px;
  color: #b9c6ce;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.marine-portfolio-board .marine-stage-media figcaption strong {
  display: block;
  color: #fff;
  font: 900 clamp(24px, 2vw, 32px)/1.02 "Manrope";
  letter-spacing: -1.2px
}

@media(max-width:700px) {
  .marine-portfolio-board .marine-stage-media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 16px 18px 18px
  }

  .marine-portfolio-board .marine-stage-media figcaption span {
    margin-bottom: 9px
  }

  .marine-portfolio-board .marine-stage-media figcaption strong {
    font-size: 22px
  }
}

/* Marine vessel directory: support three vessels */
.marine-portfolio .vessel-tabs {
  gap: 8px
}

.marine-portfolio .vessel-tabs button {
  min-height: 74px;
  padding: 14px
}

.marine-portfolio .vessel-tabs button b {
  font-size: 18px
}

.marine-portfolio .vessel-tabs button small {
  margin-top: 6px;
  font-size: 9px
}

@media(max-height:920px) and (min-width:1051px) {
  .marine-portfolio .vessel-tabs {
    gap: 7px
  }

  .marine-portfolio .vessel-tabs button {
    min-height: 66px;
    padding: 12px
  }

  .marine-portfolio .vessel-tabs button b {
    font-size: 16px
  }

  .marine-portfolio .vessel-data>div {
    padding: 8px 0
  }

  .marine-portfolio .marine-vessel-panel .vessel-detail-button {
    padding-top: 14px
  }
}

/* Marine Assets: wider operational profile panel */
@media(min-width:1101px) {
  .marine-portfolio {
    max-width: 1760px
  }

  .marine-portfolio-head {
    grid-template-columns: minmax(0, 1fr) clamp(460px, 28vw, 560px);
    gap: clamp(34px, 4vw, 70px)
  }

  .marine-portfolio-board {
    grid-template-columns: minmax(0, 1fr) clamp(460px, 28vw, 560px);
    gap: 24px
  }

  .marine-vessel-panel {
    padding: 28px
  }

  .marine-panel-title {
    align-items: center;
    padding-bottom: 20px
  }

  .marine-panel-title strong {
    max-width: 230px;
    font-size: 22px;
    line-height: 1.02
  }

  .marine-portfolio .vessel-tabs {
    gap: 10px;
    margin-top: 22px
  }

  .marine-portfolio .vessel-tabs button {
    grid-template-columns: 38px 1fr;
    min-height: 78px;
    padding: 16px 18px
  }

  .marine-portfolio .vessel-tabs button b {
    font-size: 19px;
    letter-spacing: -.75px
  }

  .marine-portfolio .vessel-tabs button small {
    font-size: 9.5px
  }

  .marine-portfolio .vessel-data {
    margin-top: 20px
  }

  .marine-portfolio .vessel-data>div {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 13px 0
  }

  .marine-portfolio .vessel-data strong {
    font-size: 16px;
    line-height: 1.18
  }

  .marine-portfolio .marine-vessel-panel .vessel-detail-button {
    padding-top: 20px
  }
}

@media(max-height:920px) and (min-width:1101px) {
  .marine-portfolio-head {
    grid-template-columns: minmax(0, 1fr) clamp(480px, 29vw, 560px)
  }

  .marine-portfolio-board {
    grid-template-columns: minmax(0, 1fr) clamp(480px, 29vw, 560px);
    gap: 22px
  }

  .marine-vessel-panel {
    padding: 24px
  }

  .marine-panel-title strong {
    font-size: 21px
  }

  .marine-portfolio .vessel-tabs {
    gap: 8px;
    margin-top: 18px
  }

  .marine-portfolio .vessel-tabs button {
    min-height: 70px;
    padding: 14px 16px
  }

  .marine-portfolio .vessel-tabs button b {
    font-size: 18px
  }

  .marine-portfolio .vessel-data {
    margin-top: 17px
  }

  .marine-portfolio .vessel-data>div {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    padding: 10px 0
  }

  .marine-portfolio .vessel-data strong {
    font-size: 15px
  }
}

/* QHSE dossier redesign */
.qhse.qhse-dossier {
  position: relative;
  overflow: hidden;
  color: #071c2c;
  background: #eef3f5
}

.qhse.qhse-dossier:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, #eef3f5 100%);
  pointer-events: none
}

.qhse.qhse-dossier:after {
  display: none
}

.qhse.qhse-dossier>* {
  position: relative;
  z-index: 1
}

.qhse-dossier .section-label {
  color: #6d7e89
}

.qhse-dossier .section-label span,
.qhse-dossier .kicker {
  color: var(--red)
}

.qhse-dossier .section-label:after {
  border-color: #9ca9b0
}

.qhse-dossier-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .54fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
  margin-top: 46px
}

.qhse-dossier-head h2 {
  max-width: 860px;
  margin: 14px 0 0;
  color: #071c2c;
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1;
  letter-spacing: -3.8px
}

.qhse-dossier-head>p {
  max-width: 560px;
  margin: 0;
  color: #60717e;
  font-size: 15px;
  line-height: 1.7
}

.qhse-dossier-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .44fr);
  gap: 18px;
  align-items: stretch;
  margin-top: clamp(30px, 4vh, 44px)
}

.qhse-dossier .qhse-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .1)
}

.qhse-dossier .qhse-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.02);
  transform: scale(1)
}

.qhse-slides {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.qhse-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.9) contrast(1.02);
  transform: scale(1.018);
  transition: opacity 1s ease, transform 1.4s cubic-bezier(.22, 1, .36, 1)
}

.qhse-slide.active {
  opacity: 1;
  transform: scale(1)
}

.qhse-dossier .qhse-visual:before {
  display: none
}

.qhse-dossier .qhse-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 28, 44, .58), rgba(7, 28, 44, .02) 60%)
}

.qhse-dossier .qhse-visual figcaption {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 26px;
  left: 26px;
  display: block;
  width: min(410px, calc(100% - 52px));
  padding: 18px 20px 20px;
  color: #fff;
  background: rgba(5, 23, 34, .9);
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  backdrop-filter: none
}

.qhse-dossier .qhse-visual figcaption span {
  display: block;
  margin: 0 0 12px;
  color: #b9c6ce;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.qhse-dossier .qhse-visual figcaption strong {
  display: block;
  max-width: 360px;
  color: #fff;
  font: 900 clamp(20px, 1.7vw, 27px)/1.12 "Manrope";
  letter-spacing: -.8px
}

.qhse-slide-controls {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 28px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(5, 23, 34, .66);
  border: 1px solid rgba(255, 255, 255, .14)
}

.qhse-slide-controls button {
  display: block;
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .36);
  cursor: pointer;
  transition: width .35s ease, background .35s ease
}

.qhse-slide-controls button.active {
  width: 54px;
  background: var(--red)
}

.qhse-register {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid #d8e1e7
}

.qhse-register-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8e1e7
}

.qhse-register-title span {
  color: #8997a0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.qhse-register-title strong {
  max-width: 190px;
  color: #071c2c;
  text-align: right;
  font: 900 20px/1.05 "Manrope";
  letter-spacing: -.8px
}

.qhse-checklist {
  display: grid;
  gap: 0;
  margin-top: 12px
}

.qhse-checklist article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #d8e1e7
}

.qhse-checklist article:last-child {
  border-bottom: 0
}

.qhse-checklist article>span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #cdd8df;
  color: var(--red);
  background: #f8fafb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px
}

.qhse-checklist strong {
  display: block;
  color: #071c2c;
  font: 900 18px/1.12 "Manrope";
  letter-spacing: -.45px
}

.qhse-checklist p {
  margin: 9px 0 0;
  color: #657680;
  font-size: 13px;
  line-height: 1.58
}

.qhse-control-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
  border: 1px solid #d8e1e7;
  background: #fff
}

.qhse-control-points>div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid #d8e1e7
}

.qhse-control-points>div:last-child {
  border-right: 0
}

.qhse-control-points span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.qhse-control-points strong {
  display: block;
  color: #071c2c;
  font: 900 21px/1.08 "Manrope";
  letter-spacing: -.6px
}

.qhse-control-points p {
  max-width: 250px;
  margin: 12px 0 0;
  color: #657680;
  font-size: 13px;
  line-height: 1.58
}

@media(min-width:1101px) {
  .qhse.qhse-dossier {
    padding-top: 72px;
    padding-bottom: 72px
  }

  .qhse-dossier-head {
    margin-top: 36px
  }

  .qhse-dossier-head h2 {
    font-size: clamp(40px, 4vw, 62px)
  }

  .qhse-dossier-head>p {
    font-size: 14px;
    line-height: 1.6
  }

  .qhse-dossier-board {
    height: min(56vh, 510px);
    margin-top: 30px
  }

  .qhse-dossier .qhse-visual {
    min-height: 0;
    height: 100%
  }

  .qhse-register {
    height: 100%;
    padding: 20px
  }

  .qhse-register-title {
    padding-bottom: 14px
  }

  .qhse-register-title strong {
    font-size: 18px
  }

  .qhse-checklist {
    margin-top: 8px
  }

  .qhse-checklist article {
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 12px 0
  }

  .qhse-checklist article>span {
    width: 40px;
    height: 40px
  }

  .qhse-checklist strong {
    font-size: 16px
  }

  .qhse-checklist p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45
  }

  .qhse-control-points {
    margin-top: 16px
  }

  .qhse-control-points>div {
    min-height: 126px;
    padding: 20px
  }

  .qhse-control-points span {
    margin-bottom: 20px
  }

  .qhse-control-points strong {
    font-size: 19px
  }

  .qhse-control-points p {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.48
  }
}

@media(max-height:920px) and (min-width:1101px) {
  .qhse.qhse-dossier {
    padding-top: 56px;
    padding-bottom: 56px
  }

  .qhse-dossier-head {
    margin-top: 28px
  }

  .qhse-dossier-head h2 {
    font-size: clamp(38px, 3.7vw, 56px)
  }

  .qhse-dossier-board {
    height: 460px;
    margin-top: 24px
  }

  .qhse-register {
    padding: 18px
  }

  .qhse-register-title {
    padding-bottom: 12px
  }

  .qhse-checklist article {
    padding: 10px 0
  }

  .qhse-checklist p {
    font-size: 11.5px;
    line-height: 1.38
  }

  .qhse-control-points {
    margin-top: 14px
  }

  .qhse-control-points>div {
    min-height: 112px;
    padding: 18px
  }

  .qhse-control-points span {
    margin-bottom: 15px
  }

  .qhse-control-points strong {
    font-size: 18px
  }

  .qhse-control-points p {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.42
  }
}

@media(max-width:1100px) {

  .qhse-dossier-head,
  .qhse-dossier-board {
    grid-template-columns: 1fr
  }

  .qhse-dossier .qhse-visual {
    min-height: 460px
  }

  .qhse-control-points {
    grid-template-columns: 1fr 1fr
  }

  .qhse-control-points>div:nth-child(2) {
    border-right: 0
  }

  .qhse-control-points>div:nth-child(-n+2) {
    border-bottom: 1px solid #d8e1e7
  }
}

@media(max-width:700px) {
  .qhse.qhse-dossier {
    padding-top: 78px;
    padding-bottom: 78px
  }

  .qhse-dossier-head {
    margin-top: 34px
  }

  .qhse-dossier-head h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .qhse-dossier-head>p {
    font-size: 15px
  }

  .qhse-dossier .qhse-visual {
    min-height: 340px
  }

  .qhse-dossier .qhse-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 16px 18px 18px
  }

  .qhse-dossier .qhse-visual figcaption span {
    margin-bottom: 9px
  }

  .qhse-slide-controls {
    right: 14px;
    bottom: auto;
    top: 14px;
    padding: 8px 10px
  }

  .qhse-slide-controls button {
    width: 24px
  }

  .qhse-slide-controls button.active {
    width: 38px
  }

  .qhse-register {
    padding: 20px
  }

  .qhse-register-title {
    display: block
  }

  .qhse-register-title strong {
    display: block;
    margin-top: 10px;
    text-align: left
  }

  .qhse-checklist article {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .qhse-control-points {
    grid-template-columns: 1fr
  }

  .qhse-control-points>div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #d8e1e7
  }

  .qhse-control-points>div:last-child {
    border-bottom: 0
  }

  .qhse-control-points span {
    margin-bottom: 22px
  }
}

@media(prefers-reduced-motion:reduce) {
  .qhse-slide {
    transition: none;
    transform: none
  }
}

/* Language toggle */
.header-tools {
  position: relative;
  z-index: 2001;
  display: flex;
  align-items: center;
  gap: 18px
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(7, 28, 44, .12);
  backdrop-filter: blur(12px)
}

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

.language-toggle button {
  min-width: 28px;
  padding: 4px 0;
  border: 0;
  color: rgba(255, 255, 255, .62);
  background: transparent;
  font: 900 10px/1 "Manrope";
  letter-spacing: 1.2px;
  cursor: pointer
}

.language-toggle button.active {
  color: #fff
}

.site-header.scrolled .language-toggle {
  border-color: rgba(7, 28, 44, .16);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 28, 44, .06);
  backdrop-filter: none
}

.site-header.scrolled .language-toggle span {
  background: rgba(7, 28, 44, .18)
}

.site-header.scrolled .language-toggle button {
  color: #8a98a2
}

.site-header.scrolled .language-toggle button.active {
  color: #071c2c
}

@media(max-width:900px) {
  .header-tools {
    gap: 16px
  }

  .language-toggle {
    height: 32px;
    border-color: rgba(255, 255, 255, .34);
    background: rgba(7, 28, 44, .24)
  }

  .site-header.scrolled .language-toggle {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .08);
    box-shadow: none
  }

  .site-header.scrolled .language-toggle span {
    background: rgba(255, 255, 255, .35)
  }

  .site-header.scrolled .language-toggle button {
    color: rgba(255, 255, 255, .58)
  }

  .site-header.scrolled .language-toggle button.active {
    color: #fff
  }
}

@media(max-width:600px) {
  .header-tools {
    gap: 12px
  }

  .language-toggle {
    height: 30px;
    padding: 4px 6px
  }

  .language-toggle button {
    min-width: 24px;
    font-size: 9px
  }
}

/* Remove false external-link affordances */
.project-card:not(.project-featured) .project-footer button {
  width: auto;
  height: auto;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  border-radius: 0;
  padding-bottom: 5px;
  font-size: 10px
}

.project-card:not(.project-featured) .project-footer button:hover {
  border-color: #fff
}

.vessel-detail-button {
  justify-content: flex-start
}

/* Client logo marquee */
.intro-head .trusted-strip {
  max-width: 880px
}

.trusted-strip .trusted-window {
  padding: 1px 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
}

.trusted-strip .trusted-track {
  gap: 14px;
  animation-duration: 46s
}

.client-logo-card {
  display: grid;
  flex: 0 0 auto;
  width: clamp(160px, 10.5vw, 188px);
  height: 64px;
  place-items: center;
  padding: 10px 16px;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 28, 44, .04);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease
}

.client-logo-card:hover {
  transform: translateY(-2px);
  border-color: #c6d2da;
  box-shadow: 0 14px 34px rgba(7, 28, 44, .08)
}

.client-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 42px;
  object-fit: contain
}

.client-logo-card.logo-square img {
  max-width: 72%;
  max-height: 48px
}

.client-logo-card.logo-wide img {
  max-width: 92%;
  max-height: 39px
}

.client-logo-card.logo-extra-wide img {
  max-width: 96%;
  max-height: 34px
}

.client-logo-card.logo-tall img {
  max-width: 70%;
  max-height: 50px
}

.client-logo-card.logo-zoom img {
  max-width: 120%;
  max-height: 58px;
  transform: scale(1.42)
}

@media(min-width:901px) {
  .intro-head .trusted-strip {
    margin-top: clamp(40px, 4.8vh, 48px)
  }

  .intro-head .trusted-track {
    gap: 14px
  }

  .intro-head .client-logo-card {
    height: 66px
  }

  .intro-head .trusted-strip>p {
    margin-bottom: 14px
  }
}

@media(max-height:760px) and (min-width:901px) {
  .intro-head .trusted-strip {
    margin-top: 34px
  }

  .intro-head .client-logo-card {
    width: 154px;
    height: 58px
  }

  .client-logo-card img {
    max-height: 36px
  }

  .client-logo-card.logo-square img {
    max-height: 42px
  }

  .client-logo-card.logo-extra-wide img {
    max-height: 30px
  }

  .client-logo-card.logo-tall img {
    max-height: 44px
  }
}

@media(max-width:600px) {
  .trusted-strip .trusted-track {
    gap: 10px;
    animation-duration: 34s
  }

  .client-logo-card {
    width: 142px;
    height: 56px;
    padding: 9px 13px
  }

  .client-logo-card img {
    max-height: 34px
  }

  .client-logo-card.logo-square img {
    max-height: 39px
  }

  .client-logo-card.logo-extra-wide img {
    max-height: 28px
  }

  .client-logo-card.logo-tall img {
    max-height: 40px
  }
}

@media(prefers-reduced-motion:reduce) {
  .trusted-strip .trusted-track {
    animation: none
  }

  .client-logo-card:hover {
    transform: none
  }
}

/* About metric cards */
.intro .metrics {
  border-top: 0
}

@media(min-width:901px) {
  .intro .metrics {
    gap: 16px;
    margin-top: 20px
  }

  .intro .metrics>div,
  .intro .metrics>div:first-child {
    position: relative;
    min-height: 126px;
    padding: 24px 24px 22px;
    border: 1px solid #d8e1e7;
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
    box-shadow: 0 16px 44px rgba(7, 28, 44, .045);
    overflow: hidden;
    transition: transform .38s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease
  }

  .intro .metrics>div:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 96px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--red));
    transform: none
  }

  .intro .metrics>div:after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(7, 28, 44, .055);
    border-radius: 50%;
    box-shadow: -18px -18px 0 -17px rgba(7, 28, 44, .11)
  }

  .intro .metrics>div:hover {
    transform: translateY(-4px);
    border-color: #c5d1d9;
    box-shadow: 0 22px 58px rgba(7, 28, 44, .08)
  }

  .intro .metrics strong,
  .intro .metrics>div:first-child strong {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 0 18px;
    color: #071c2c;
    font: 900 clamp(34px, 3.2vw, 46px)/.92 "Manrope";
    letter-spacing: -2px
  }

  .intro .metrics span,
  .intro .metrics>div:first-child span {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 230px;
    color: #657680;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45
  }

  .intro .metrics>div:nth-child(1):before {
    background: linear-gradient(90deg, #8d84c3, #312078)
  }

  .intro .metrics>div:nth-child(2):before {
    background: linear-gradient(90deg, #312078, #60717e)
  }

  .intro .metrics>div:nth-child(3):before {
    background: linear-gradient(90deg, #312078, var(--red))
  }

  .intro .metrics>div:nth-child(4):before {
    background: linear-gradient(90deg, var(--red), #8d84c3)
  }
}

.intro .metrics .iso-metric-card {
  display: flex;
  flex-direction: column
}

.iso-metric-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: auto
}

.iso-metric-list a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(7, 28, 44, .1);
  color: #071c2c;
  transition: color .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1)
}

.iso-metric-list a:hover {
  color: #332a7a;
  transform: translateX(3px)
}

.iso-metric-list b {
  font: 900 11px/1 "Manrope";
  letter-spacing: .7px
}

.iso-metric-list small {
  color: #657680;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25
}

.intro .credential-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.intro .metrics .credential-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px 24px 22px;
  border: 1px solid #d8e1e7;
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
  box-shadow: 0 16px 44px rgba(7, 28, 44, .045);
  overflow: hidden;
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease
}

.intro .metrics .credential-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #312078, #8d84c3);
  transform: none
}

.intro .metrics .credential-card:hover {
  transform: translateY(-4px);
  border-color: #c5d1d9;
  box-shadow: 0 22px 58px rgba(7, 28, 44, .08)
}

.credential-card-head {
  position: relative;
  z-index: 1
}

.credential-eyebrow {
  margin-bottom: 12px !important;
  color: #332a7a !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 1.7px !important;
  text-transform: uppercase !important
}

.intro .metrics .credential-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #60717e;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55
}

.intro .metrics .credential-card strong {
  margin-bottom: 12px
}

.credential-card-skup {
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%) !important
}

.credential-card-skup .credential-card-head {
  margin-top: 0
}

.credential-card-award {
  background: linear-gradient(135deg, #fff, #f8fafb) !important
}

.credential-card-award:before {
  background: linear-gradient(90deg, #312078, #60717e) !important
}

@media(max-height:760px) and (min-width:901px) {
  .intro .metrics {
    gap: 12px;
    margin-top: 14px
  }

  .intro .metrics>div,
  .intro .metrics>div:first-child {
    min-height: 106px;
    padding: 18px 20px
  }

  .intro .metrics strong,
  .intro .metrics>div:first-child strong {
    margin-bottom: 12px;
    font-size: 32px
  }

  .intro .metrics span,
  .intro .metrics>div:first-child span {
    font-size: 11px
  }
}

@media(max-height:760px) and (min-width:901px) {
  .intro .metrics .credential-card {
    min-height: 220px
  }

  .intro .metrics .credential-card p {
    margin-bottom: 16px;
    font-size: 11px
  }

  .iso-metric-list {
    gap: 6px
  }

  .iso-metric-list a {
    padding: 6px 0
  }
}

@media(max-width:900px) {
  .intro .metrics {
    gap: 10px;
    border-top: 0
  }

  .intro .credential-metrics {
    grid-template-columns: 1fr
  }

  .intro .metrics>div,
  .intro .metrics>article,
  .intro .metrics>div:first-child {
    position: relative;
    border: 1px solid #d8e1e7;
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
    box-shadow: 0 12px 30px rgba(7, 28, 44, .045);
    overflow: hidden
  }

  .intro .metrics>div:before,
  .intro .metrics>article:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 86px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--red))
  }

  .intro .metrics strong,
  .intro .metrics>div:first-child strong {
    color: #071c2c
  }

  .intro .metrics span,
  .intro .metrics>div:first-child span {
    color: #657680;
    font-weight: 800
  }

  .intro .metrics .credential-card {
    min-height: 0;
    padding: 24px 18px
  }

  .iso-metric-list {
    margin-top: 16px
  }

  .iso-metric-list a {
    grid-template-columns: 78px 1fr
  }
}

@media(max-width:900px) {
  .intro-head {
    min-width: 0;
    max-width: 100%
  }

  .intro-head .trusted-strip {
    max-width: 100%
  }

  .trusted-strip .trusted-window {
    max-width: 100%
  }
}

/* Trusted client hover polish */
.trusted-strip .trusted-track:hover {
  animation-play-state: running
}

.client-logo-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #fff 0%, #f9fbfc 100%);
  box-shadow: 0 10px 28px rgba(7, 28, 44, .035)
}

.client-logo-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  background: linear-gradient(135deg, rgba(49, 32, 120, .18), rgba(239, 68, 72, .16) 46%, rgba(141, 132, 195, .12));
  opacity: 0;
  transition: opacity .42s ease
}

.client-logo-card:after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 11px;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 32, 120, .32), transparent);
  opacity: 0;
  transform: scaleX(.42);
  transition: opacity .42s ease, transform .42s cubic-bezier(.22, 1, .36, 1)
}

.client-logo-card img {
  position: relative;
  z-index: 1;
  filter: saturate(.72) contrast(.96);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), filter .42s ease, opacity .42s ease
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: #c6d2da;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 28, 44, .09)
}

.client-logo-card:hover:before {
  opacity: 1
}

.client-logo-card:hover:after {
  opacity: 1;
  transform: scaleX(1)
}

.client-logo-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045)
}

.client-logo-card.logo-zoom:hover img {
  transform: scale(1.48)
}

@media(prefers-reduced-motion:reduce) {

  .client-logo-card,
  .client-logo-card:before,
  .client-logo-card:after,
  .client-logo-card img {
    transition: none
  }

  .client-logo-card:hover,
  .client-logo-card:hover img,
  .client-logo-card.logo-zoom:hover img {
    transform: none
  }
}

/* Trusted client hover color retune */
.client-logo-card:before {
  background: linear-gradient(135deg, rgba(7, 28, 44, .12), rgba(74, 101, 118, .1) 48%, rgba(213, 222, 228, .2))
}

.client-logo-card:after {
  background: linear-gradient(90deg, transparent, rgba(7, 28, 44, .42), transparent)
}

.client-logo-card:hover {
  border-color: #9faeb8;
  box-shadow: 0 18px 42px rgba(7, 28, 44, .1)
}

.client-logo-card:hover img {
  filter: saturate(.96) contrast(1.04)
}

/* Trusted client logos stay static on hover */
.client-logo-card,
.client-logo-card img,
.client-logo-card:before,
.client-logo-card:after {
  transition: none
}

.client-logo-card:hover {
  transform: none;
  border-color: #d8e1e7;
  background: linear-gradient(180deg, #fff 0%, #f9fbfc 100%);
  box-shadow: 0 10px 28px rgba(7, 28, 44, .035)
}

.client-logo-card:hover:before,
.client-logo-card:hover:after {
  opacity: 0;
  transform: none
}

.client-logo-card:hover img {
  filter: saturate(.72) contrast(.96);
  transform: none
}

.client-logo-card.logo-zoom:hover img {
  transform: scale(1.42)
}

/* Trusted client split rows */
.intro-head .trusted-strip {
  max-width: 920px;
  --trusted-logo-height: 34px
}

.trusted-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 12px
}

.trusted-row:first-of-type {
  margin-top: 0
}

.trusted-section-label {
  display: block;
  color: #8c9ca7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.35
}

.trusted-row-international .trusted-track {
  animation-direction: reverse;
  animation-duration: 52s
}

.trusted-strip .trusted-window {
  min-width: 0;
  padding: 1px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.trusted-strip .trusted-track {
  gap: 10px;
  animation-duration: 48s
}

.trusted-strip .client-logo-card {
  width: clamp(132px, 8.4vw, 150px);
  height: 54px;
  padding: 8px 12px;
  border-color: #dce4e9;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 28, 44, .028)
}

.trusted-strip .client-logo-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--trusted-logo-height);
  object-fit: contain;
  filter: saturate(.82) contrast(.98)
}

.trusted-strip .client-logo-card:hover {
  border-color: #dce4e9;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 28, 44, .028)
}

.trusted-strip .client-logo-card:hover img {
  filter: saturate(.82) contrast(.98);
  transform: none
}

@media(min-width:901px) {
  .intro-head .trusted-strip {
    margin-top: clamp(34px, 4vh, 42px)
  }

  .intro-head .trusted-strip>p {
    margin-bottom: 13px
  }

  .trusted-row {
    grid-template-columns: 104px minmax(0, 1fr)
  }

  .trusted-strip .client-logo-card {
    height: 56px
  }
}

@media(max-height:760px) and (min-width:901px) {
  .intro-head .trusted-strip {
    margin-top: 28px;
    --trusted-logo-height: 30px
  }

  .trusted-row {
    margin-top: 9px
  }

  .trusted-strip .client-logo-card {
    width: 130px;
    height: 48px;
    padding: 7px 10px
  }

  .trusted-section-label {
    font-size: 8px
  }
}

@media(max-width:900px) {
  .intro-head .trusted-strip {
    --trusted-logo-height: 31px
  }

  .trusted-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px
  }

  .trusted-strip .trusted-window {
    max-width: 100%;
    mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent)
  }

  .trusted-section-label {
    padding-left: 2px
  }

  .trusted-strip .client-logo-card {
    width: 132px;
    height: 52px
  }
}

@media(max-width:600px) {
  .intro-head .trusted-strip {
    --trusted-logo-height: 28px
  }

  .trusted-strip .trusted-track {
    gap: 8px;
    animation-duration: 38s
  }

  .trusted-row-international .trusted-track {
    animation-duration: 42s
  }

  .trusted-strip .client-logo-card {
    width: 118px;
    height: 48px;
    padding: 7px 10px
  }
}

@media(prefers-reduced-motion:reduce) {
  .trusted-row-international .trusted-track {
    animation-direction: normal
  }
}

/* About slideshow */
.intro-visual[data-about-slideshow] .intro-slides {
  position: absolute;
  inset: 0
}

.intro-visual[data-about-slideshow] .intro-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 6.4s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform
}

.intro-visual[data-about-slideshow] .intro-slide.is-active {
  opacity: 1;
  transform: scale(1)
}

.intro-visual[data-about-slideshow] .intro-slide:nth-child(1) {
  object-position: center 52%
}

.intro-visual[data-about-slideshow] .intro-slide:nth-child(2) {
  object-position: center 48%
}

.intro-visual[data-about-slideshow] .intro-slide:nth-child(3) {
  object-position: center 50%
}

.intro-slide-caption {
  transition: opacity .42s ease, transform .48s cubic-bezier(.22, 1, .36, 1)
}

.intro-slide-caption.is-changing {
  opacity: 0;
  transform: translateY(10px)
}

.intro-slide-controls {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 24px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(5, 23, 34, .28);
  backdrop-filter: blur(10px)
}

.intro-slide-controls button {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: width .35s cubic-bezier(.22, 1, .36, 1), background .35s ease
}

.intro-slide-controls button.is-active {
  width: 42px;
  background: #fff
}

.intro-slide-controls button:hover {
  background: #c7c2ff
}

@media(max-width:900px) {
  .intro-visual[data-about-slideshow] .intro-slide {
    min-height: 420px
  }

  .intro-slide-controls {
    right: 18px;
    top: 18px
  }
}

@media(max-width:600px) {
  .intro-visual[data-about-slideshow] .intro-slide {
    min-height: 320px
  }

  .intro-slide-controls {
    right: 16px;
    top: 16px
  }

  .intro-slide-controls button {
    width: 20px
  }

  .intro-slide-controls button.is-active {
    width: 34px
  }
}

@media(prefers-reduced-motion:reduce) {

  .intro-visual[data-about-slideshow] .intro-slide,
  .intro-slide-caption,
  .intro-slide-controls button {
    transition: none
  }
}

/* Documentation photography refinements */
.capabilities .service-card:after {
  opacity: 1;
  transform: scale(1);
  transition: none
}

.capabilities .service-card:hover,
.capabilities .service-card:focus-within {
  transform: none;
  border-color: rgba(7, 28, 44, .12);
  box-shadow: none
}

.capabilities .service-card:hover:after,
.capabilities .service-card:focus-within:after {
  opacity: 1;
  transform: scale(1)
}

.capabilities .service-card:hover .service-number,
.capabilities .service-card:focus-within .service-number {
  color: #d7e0e5
}

.capabilities .service-card:hover .service-tag,
.capabilities .service-card:focus-within .service-tag {
  color: #c9c3ff
}

.capabilities .service-card:hover h3,
.capabilities .service-card:focus-within h3 {
  color: #fff;
  transform: none
}

.capabilities .service-card:hover p,
.capabilities .service-card:focus-within p {
  color: #dbe5eb
}

.capabilities .service-number {
  color: #d7e0e5
}

.capabilities .service-tag {
  color: #c9c3ff
}

.capabilities .service-card h3 {
  color: #fff
}

.capabilities .service-card div>p:last-child {
  color: #dbe5eb
}

.qhse-dossier .qhse-visual:after {
  background: linear-gradient(0deg, rgba(7, 28, 44, .32), rgba(7, 28, 44, .03) 64%)
}

.qhse-dossier .qhse-visual figcaption {
  top: 24px;
  right: auto;
  bottom: auto;
  left: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 15px 17px 17px;
  background: rgba(5, 23, 34, .66);
  border-top: 2px solid var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  backdrop-filter: blur(8px)
}

.qhse-dossier .qhse-visual figcaption span {
  margin-bottom: 8px;
  color: #d4dee5
}

.qhse-dossier .qhse-visual figcaption strong {
  max-width: 285px;
  font: 900 clamp(17px, 1.35vw, 22px)/1.14 "Manrope";
  letter-spacing: -.55px
}

.qhse-slide-controls {
  top: auto;
  bottom: 24px
}

@media(max-width:700px) {
  .qhse-dossier .qhse-visual figcaption {
    top: 16px;
    right: auto;
    bottom: auto;
    left: 16px;
    width: min(230px, calc(100% - 32px));
    padding: 13px 15px 15px
  }

  .qhse-slide-controls {
    top: auto;
    right: 14px;
    bottom: 14px
  }
}

/* Navigation dropdown */
.nav-item {
  position: relative;
  display: flex;
  align-items: center
}

.nav-trigger {
  padding-right: 15px
}

.nav-trigger:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform .3s ease
}

.nav-dropdown:hover .nav-trigger:before,
.nav-dropdown:focus-within .nav-trigger:before,
.nav-dropdown.is-open .nav-trigger:before {
  transform: translateY(-35%) rotate(225deg)
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  width: 310px;
  padding: 10px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(7, 28, 44, .09);
  box-shadow: 0 24px 70px rgba(7, 28, 44, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .35s cubic-bezier(.22, 1, .36, 1), visibility .28s ease
}

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

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  color: #071c2c !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  background: transparent;
  transition: background .25s ease, color .25s ease
}

.nav-dropdown-menu a:after {
  display: none
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--red) !important;
  background: #f2f5f7
}

.nav-links a.active:after {
  transform: scaleX(1);
  transform-origin: left
}

@media(max-width:900px) {

  .nav-item,
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
  }

  .nav-trigger {
    padding-right: 0
  }

  .nav-trigger:before {
    display: none
  }

  .nav-dropdown-menu {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none
  }

  .nav-dropdown-menu:before {
    display: none
  }

  .nav-dropdown-menu a {
    padding: 0;
    color: #aebdc7 !important;
    font-size: 15px
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.active {
    color: #fff !important;
    background: transparent
  }
}

/* Board page */
.board-page {
  background: #f4f7f8;
  color: #071c2c
}

.board-hero {
  position: relative;
  min-height: 72svh;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(70px, 8vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .42fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  color: #fff;
  background: #061925;
  overflow: hidden
}

.board-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 16, 25, .94) 0%, rgba(5, 24, 38, .86) 44%, rgba(5, 24, 38, .5) 76%, rgba(5, 24, 38, .72) 100%), linear-gradient(0deg, rgba(3, 14, 22, .8), rgba(3, 14, 22, .2) 44%, rgba(3, 14, 22, .84)), url("assets/field-operations/source/lagi berdiri di kapal.jpeg") center/cover no-repeat;
  filter: saturate(.86) contrast(1.04)
}

.board-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 22%, rgba(141, 132, 195, .2), transparent 30%), linear-gradient(115deg, rgba(6, 25, 37, .25), transparent 56%);
  border: 0
}

.board-hero>* {
  position: relative;
  z-index: 1
}

.board-hero-copy {
  max-width: 900px
}

.board-hero .light-text {
  margin: 0 0 18px;
  color: var(--accent-light)
}

.board-hero h1 {
  max-width: 950px;
  margin: 0;
  color: #fff;
  font: 900 clamp(46px, 6.2vw, 94px)/.96 "Manrope";
  letter-spacing: -5px
}

.board-hero-copy>p:last-child {
  max-width: 690px;
  margin: 28px 0 0;
  color: #c3d0d8;
  font-size: 17px;
  line-height: 1.72
}

.board-hero-panel {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 20, 31, .58);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px)
}

.board-hero-panel span {
  display: block;
  color: #b9c6cf;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase
}

.board-hero-panel strong {
  display: block;
  margin: 32px 0 10px;
  color: #fff;
  font: 900 74px/.85 "Manrope";
  letter-spacing: -4px
}

.board-hero-panel p {
  margin: 0;
  color: #d2dce3;
  font-size: 13px;
  line-height: 1.65
}

.board-section {
  background: #f4f7f8
}

.board-section-head {
  max-width: 1080px;
  margin-top: 44px;
  padding: clamp(28px, 4vw, 46px) 0 0;
  border-top: 1px solid #cfd9df
}

.board-section-head .kicker {
  margin: 0 0 18px;
  color: #332a7a
}

.board-section-head h2 {
  max-width: 900px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(38px, 4.6vw, 72px)/.98 "Manrope";
  letter-spacing: -3.8px;
  text-wrap: balance
}

.board-section-head>p:not(.kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #60717e;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.72
}

.board-profile-list {
  display: grid;
  gap: 44px;
  margin-top: 48px
}

.board-profile-group {
  border-top: 1px solid #cfd9df
}

.board-group-title {
  margin: 0;
  padding: 18px 0;
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase
}

.board-profile {
  display: grid;
  grid-template-columns: 46px minmax(440px, .78fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid #d8e1e7;
  border-top: 0;
  box-shadow: 0 18px 52px rgba(7, 28, 44, .045)
}

.board-profile-index {
  align-self: start;
  color: #8a99a3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px
}

.board-profile-name {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center
}

.board-profile-photo {
  position: relative;
  width: 220px;
  aspect-ratio: 4/5;
  margin: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #071c2c, #1a4360 54%, #332a7a);
  overflow: hidden
}

.board-profile-photo:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .18), transparent 28%), linear-gradient(0deg, rgba(3, 15, 23, .18), transparent 52%)
}

.board-profile-photo:after {
  content: "Photo";
  position: absolute;
  top: 12px;
  left: 12px;
  color: #d8e2e8;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.board-profile-photo span {
  position: relative;
  z-index: 1;
  font: 900 clamp(46px, 4.4vw, 66px)/.9 "Manrope";
  letter-spacing: -3px
}

.board-profile-photo.has-photo {
  background: #e8eef2
}

.board-profile-photo.has-photo:before {
  z-index: 1;
  background: linear-gradient(0deg, rgba(5, 23, 34, .2), rgba(5, 23, 34, 0) 54%)
}

.board-profile-photo.has-photo:after {
  display: none
}

.board-profile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: saturate(.96) contrast(1.02);
  transform: translateY(var(--board-photo-y, 0)) scale(var(--board-photo-scale, 1.16));
  transform-origin: center 18%;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), filter .35s ease
}

.board-profile:hover .board-profile-photo img {
  transform: translateY(var(--board-photo-y, 0)) scale(var(--board-photo-hover-scale, 1.2));
  filter: saturate(1) contrast(1.04)
}

.board-photo-syukri {
  --board-photo-scale: 1.13;
  --board-photo-hover-scale: 1.17;
  --board-photo-y: -2px
}

.board-photo-andri {
  --board-photo-scale: 1.15;
  --board-photo-hover-scale: 1.19;
  --board-photo-y: -3px
}

.board-photo-frans {
  --board-photo-scale: 1.14;
  --board-photo-hover-scale: 1.18;
  --board-photo-y: 0px
}

.board-photo-novandi {
  --board-photo-scale: 1.14;
  --board-photo-hover-scale: 1.18;
  --board-photo-y: 0px
}

.board-photo-indra {
  --board-photo-scale: 1.14;
  --board-photo-hover-scale: 1.18;
  --board-photo-y: -2px
}

.board-photo-triana {
  --board-photo-scale: 1.14;
  --board-photo-hover-scale: 1.18;
  --board-photo-y: -2px
}

.board-profile-name p {
  margin: 0 0 10px;
  color: #60717e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase
}

.board-profile-name h3 {
  max-width: 620px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(25px, 2.35vw, 38px)/1.02 "Manrope";
  letter-spacing: -1.7px;
  text-wrap: balance
}

.board-profile-story {
  align-self: center
}

.board-profile .board-bio {
  max-width: 760px;
  margin: 0;
  color: #60717e;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.78
}

.board-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px
}

.board-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #071c2c;
  color: #071c2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1)
}

.board-social-links a:after {
  content: "↗";
  color: #332a7a
}

.board-social-links a:hover {
  color: #332a7a;
  border-color: #332a7a;
  transform: translateY(-2px)
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 46px
}

.board-card {
  grid-column: span 4;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 18px 52px rgba(7, 28, 44, .055);
  overflow: hidden;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease
}

.board-card:nth-child(n+4) {
  grid-column: span 6
}

.board-card:hover {
  transform: translateY(-4px);
  border-color: #c3d0d8;
  box-shadow: 0 26px 70px rgba(7, 28, 44, .09)
}

.board-thumb {
  position: relative;
  display: grid;
  height: 164px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #071c2c, #0d3149 54%, #30256f);
  overflow: hidden
}

.board-thumb:before {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%
}

.board-thumb:after {
  content: "Photo thumbnail";
  position: absolute;
  top: 18px;
  left: 20px;
  color: #aebdc7;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.board-thumb span {
  position: relative;
  z-index: 1;
  font: 900 46px/.9 "Manrope";
  letter-spacing: -2px
}

.board-card-body {
  display: flex;
  min-height: 276px;
  flex: 1;
  flex-direction: column;
  padding: 26px
}

.board-group {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.board-card h3 {
  margin: 0;
  color: #071c2c;
  font: 900 clamp(25px, 2.1vw, 34px)/1.04 "Manrope";
  letter-spacing: -1.6px
}

.board-role {
  margin: 10px 0 22px;
  color: #60717e;
  font-size: 13px;
  font-weight: 900
}

.board-bio {
  margin: 0;
  color: #657680;
  font-size: 14px;
  line-height: 1.72
}

.board-card a {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding-top: 24px;
  color: #071c2c;
  border-bottom: 1px solid #071c2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.board-card a:hover {
  color: var(--red);
  border-color: var(--red)
}

@media(max-width:1100px) {
  .board-hero {
    grid-template-columns: 1fr
  }

  .board-hero-panel {
    max-width: 360px
  }

  .board-profile {
    grid-template-columns: 42px 1fr;
    align-items: start
  }

  .board-profile-story {
    grid-column: 2
  }

  .board-card,
  .board-card:nth-child(n+4) {
    grid-column: span 6
  }
}

@media(max-width:700px) {
  .board-hero {
    min-height: 0;
    padding-top: 118px
  }

  .board-hero:before {
    background: linear-gradient(180deg, rgba(3, 16, 25, .9), rgba(3, 16, 25, .72)), url("assets/field-operations/source/lagi berdiri di kapal.jpeg") center/cover no-repeat
  }

  .board-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -2.7px
  }

  .board-hero-panel {
    padding: 24px
  }

  .board-hero-panel strong {
    font-size: 58px
  }

  .board-section {
    padding-top: 82px
  }

  .board-section-head {
    margin-top: 34px
  }

  .board-profile-list {
    gap: 38px;
    margin-top: 36px
  }

  .board-profile {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px
  }

  .board-profile-index {
    align-self: auto
  }

  .board-profile-story {
    grid-column: auto
  }

  .board-profile-name {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px
  }

  .board-profile-photo {
    width: 132px
  }

  .board-profile-name h3 {
    font-size: clamp(27px, 8.8vw, 38px);
    letter-spacing: -1.4px
  }

  .board-grid {
    grid-template-columns: 1fr;
    margin-top: 34px
  }

  .board-card,
  .board-card:nth-child(n+4) {
    grid-column: auto;
    min-height: 0
  }

  .board-thumb {
    height: 138px
  }

  .board-card-body {
    min-height: 0;
    padding: 24px
  }

  .board-card h3 {
    font-size: 27px
  }
}

/* Company profile page */
.company-profile-page {
  background: #f4f7f8;
  color: #071c2c
}

.profile-hero {
  position: relative;
  min-height: 94svh;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(72px, 8vw, 108px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #061925;
  overflow: hidden
}

.profile-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 23, .94) 0%, rgba(3, 15, 23, .84) 42%, rgba(3, 15, 23, .48) 72%, rgba(3, 15, 23, .62) 100%), linear-gradient(0deg, rgba(3, 15, 23, .9) 0%, rgba(3, 15, 23, .22) 54%, rgba(3, 15, 23, .76) 100%), url("assets/company-profile/profile-hero-offshore.jpg") center/cover no-repeat;
  filter: saturate(.9) contrast(1.05) brightness(.95);
  transform: scale(1.015)
}

.profile-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(141, 132, 195, .22), transparent 28%), linear-gradient(115deg, rgba(255, 255, 255, .06), transparent 46%);
  pointer-events: none
}

.profile-hero>* {
  position: relative;
  z-index: 1
}

.profile-hero-copy {
  max-width: 1060px
}

.profile-hero .light-text {
  margin: 0 0 18px;
  color: var(--accent-light)
}

.profile-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font: 900 clamp(52px, 7vw, 112px)/.94 "Manrope";
  letter-spacing: -5.8px
}

.profile-hero-copy>p:not(.kicker) {
  max-width: 690px;
  margin: 28px 0 0;
  color: #c3d0d8;
  font-size: 17px;
  line-height: 1.72
}

.profile-hero-footprint {
  max-width: 740px;
  margin-top: 42px;
  padding: 22px 26px;
  color: #fff;
  background: rgba(5, 23, 34, .62);
  border-left: 3px solid var(--accent-light);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px)
}

.profile-hero-footprint span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.profile-hero-footprint strong {
  display: block;
  font: 900 clamp(21px, 2.1vw, 32px)/1.12 "Manrope";
  letter-spacing: -1px
}

.profile-hero-visual {
  position: relative;
  margin: 0;
  min-height: 460px;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 34px 95px rgba(0, 0, 0, .3)
}

.profile-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04)
}

.profile-hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 27, .76), rgba(3, 17, 27, .04) 58%)
}

.profile-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px 24px;
  color: #fff;
  background: rgba(5, 23, 34, .72);
  border-left: 3px solid var(--accent-light);
  backdrop-filter: blur(10px)
}

.profile-hero-visual figcaption span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.profile-hero-visual figcaption strong {
  display: block;
  max-width: 560px;
  font: 900 clamp(20px, 2vw, 30px)/1.12 "Manrope";
  letter-spacing: -1px
}

.profile-overview,
.profile-culture,
.profile-fleet,
.profile-customers {
  background: #f4f7f8
}

.profile-overview {
  position: relative;
  overflow: hidden
}

.profile-overview:before {
  content: "";
  position: absolute;
  right: -16vw;
  top: 10%;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(7, 28, 44, .06);
  border-radius: 50%;
  pointer-events: none
}

.profile-overview>* {
  position: relative;
  z-index: 1
}

.profile-group-summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .28fr) minmax(0, 1fr) minmax(250px, .28fr);
  gap: clamp(22px, 3.4vw, 44px);
  align-items: stretch;
  margin-top: 54px;
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, #071c2c 0%, #0b293e 58%, #061925 100%);
  border: 1px solid rgba(7, 28, 44, .1);
  box-shadow: 0 26px 74px rgba(7, 28, 44, .12);
  overflow: hidden
}

.profile-group-summary:before {
  content: "";
  position: absolute;
  right: -9vw;
  top: -45%;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none
}

.profile-group-summary:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 132, 195, .5), transparent);
  pointer-events: none
}

.profile-group-summary>* {
  position: relative;
  z-index: 1
}

.profile-group-summary-brand {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px
}

.profile-group-summary-logo {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16)
}

.profile-group-summary-logo img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain
}

.profile-group-summary-brand span {
  color: #aebbc4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.profile-group-summary-copy {
  max-width: 940px
}

.profile-group-summary-copy .kicker {
  color: var(--accent-light)
}

.profile-group-summary-copy h2 {
  margin: 12px 0 16px;
  color: #fff;
  font: 900 clamp(34px, 3.5vw, 54px)/1 "Manrope";
  letter-spacing: -2.6px
}

.profile-group-summary-copy p:not(.kicker) {
  max-width: 880px;
  color: #c6d1d8;
  font-size: 15px;
  line-height: 1.62
}

.profile-group-summary-copy p:not(.kicker)+p:not(.kicker) {
  margin-top: 12px
}

.profile-group-summary .profile-overview-stats {
  grid-template-columns: 1fr;
  align-self: stretch;
  margin-top: 0
}

.profile-group-summary .profile-overview-stat {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055)
}

.profile-overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 34px
}

.profile-overview-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05)
}

.profile-overview-stat strong {
  display: block;
  color: #fff;
  font: 900 clamp(30px, 3vw, 42px)/.9 "Manrope";
  letter-spacing: -1.6px
}

.profile-overview-stat span {
  display: block;
  margin-top: 10px;
  color: #b9c8d1;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35
}

.profile-narrative h2,
.profile-section-head h2,
.profile-services-copy h2,
.profile-lab-copy h2 {
  margin: 14px 0 24px;
  color: #071c2c;
  font: 900 clamp(34px, 4.3vw, 64px)/1.03 "Manrope";
  letter-spacing: -3.2px
}

.profile-narrative p:not(.kicker),
.profile-services-copy>p:not(.kicker),
.profile-lab-copy>p:not(.kicker) {
  color: #60717e;
  font-size: 16px;
  line-height: 1.76
}

.profile-group-panel {
  position: relative;
  display: flex;
  min-height: 100%;
  align-self: start;
  flex-direction: column;
  margin-top: 28px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(246, 249, 251, .92));
  border: 1px solid #d8e1e7;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .075);
  overflow: hidden
}

.profile-group-panel:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7, 28, 44, .06);
  pointer-events: none
}

.profile-group-panel:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(51, 42, 122, .09), transparent 64%);
  pointer-events: none
}

.profile-group-panel-wide {
  width: 100%
}

.profile-group-panel-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, .22fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 30px 34px 32px;
  border-bottom: 1px solid #d8e1e7
}

.profile-group-panel-head span {
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.9px;
  text-transform: uppercase
}

.profile-group-panel-head p {
  max-width: 820px;
  margin: 0;
  color: #4d5d67;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.58
}

.profile-group-logo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px
}

.profile-group-company {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(148px, .62fr) minmax(190px, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(247, 250, 252, .52));
  border: 1px solid rgba(216, 225, 231, .94);
  box-shadow: 0 14px 38px rgba(7, 28, 44, .035);
  overflow: hidden
}

.profile-group-company:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #332a7a;
  opacity: .82
}

.profile-group-company:after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -84px;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(7, 28, 44, .045);
  border-radius: 50%
}

.profile-group-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center
}

.profile-group-logo-wrap img {
  display: block;
  width: 100%;
  max-width: 200px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 22px rgba(7, 28, 44, .09));
  mix-blend-mode: multiply
}

.profile-group-company span {
  position: relative;
  z-index: 1;
  align-self: start;
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase
}

.profile-group-copy {
  position: relative;
  z-index: 1
}

.profile-group-company h3 {
  margin: 0 0 8px;
  color: #071c2c;
  font: 900 clamp(24px, 2vw, 32px)/1.02 "Manrope";
  letter-spacing: -1.6px
}

.profile-group-company p {
  max-width: 390px;
  margin: 0;
  color: #60717e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.58
}

/* ── Group Structure Diagram ── */
.group-structure-diagram {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 4vw, 56px) clamp(22px, 3.4vw, 44px) 36px
}

/* Parent card */
.group-structure-parent {
  position: relative;
  z-index: 2;
  width: min(360px, 52%);
  margin: 0 auto;
  padding: 26px 32px 24px;
  background: #fff;
  border: 1px solid #cdd8df;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(7, 28, 44, .06), 0 2px 8px rgba(7, 28, 44, .03);
  text-align: center;
  transition: box-shadow .4s, transform .4s
}

.group-structure-parent:hover {
  box-shadow: 0 12px 44px rgba(7, 28, 44, .1), 0 4px 12px rgba(7, 28, 44, .04);
  transform: translateY(-2px)
}

.group-structure-parent img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: multiply
}

.group-structure-parent span {
  display: block;
  margin-top: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(7, 28, 44, .08);
  border-radius: 6px;
  background: rgba(51, 42, 122, .03);
  color: #6d7e89;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase
}

/* Branches — vertical stem + horizontal rail (rail flush at bottom so child lines connect) */
.group-structure-branches {
  position: relative;
  height: 30px;
  margin: 0 clamp(54px, 8vw, 124px)
}

.group-structure-branches:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 28px;
  background: rgba(51, 42, 122, .5);
  transform: translateX(-1px)
}

.group-structure-branches:after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(51, 42, 122, .5)
}

/* Children grid — padding-top provides space for connector lines + arrow tips */
.group-structure-children {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  padding-top: 22px
}

/* Child nodes */
.group-structure-node {
  position: relative;
  display: grid;
  grid-template-rows: 88px auto;
  gap: 16px;
  min-height: 268px;
  padding: 26px 22px 28px;
  background: #fff;
  border: 1px solid #d8e1e7;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(7, 28, 44, .04), 0 1px 4px rgba(7, 28, 44, .03);
  text-align: center;
  overflow: visible;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s
}

.group-structure-node:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(7, 28, 44, .08), 0 4px 14px rgba(7, 28, 44, .05)
}

/* Vertical line: starts at rail level → ends meeting triangle (adjusted +1px for card border) */
.group-structure-node:before {
  content: "";
  position: absolute;
  top: -23px;
  left: 50%;
  width: 2px;
  height: 15px;
  background: rgba(51, 42, 122, .5);
  transform: translateX(-1px)
}

/* Arrow tip: triangle point touches card border, flat top meets line bottom */
.group-structure-node:after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid rgba(51, 42, 122, .5);
  pointer-events: none;
  z-index: 2
}

.group-structure-node img {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 190px;
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(7, 28, 44, .07));
  mix-blend-mode: multiply;
  transition: transform .35s
}

.group-structure-node:hover img {
  transform: scale(1.04)
}

/* Text description in a box */
.group-structure-node p {
  position: relative;
  z-index: 1;
  align-self: start;
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid #d8e1e7;
  border-radius: 8px;
  background: rgba(51, 42, 122, .025);
  color: #071c2c;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .3px
}

/* Hydro node — extra height for sister */
.group-structure-node-hydro {
  min-height: 380px
}

/* Sister node */
.group-sister-node {
  position: relative;
  z-index: 1;
  margin: 30px auto 0;
  width: min(230px, 100%);
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #d8e1e7;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(7, 28, 44, .04);
  transition: transform .3s, box-shadow .3s
}

.group-sister-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(7, 28, 44, .06)
}

/* Sister arrow: line connects from text box bottom to PT.Hydrocore card edge */
.group-sister-node:before {
  content: "";
  position: absolute;
  top: -46px;
  left: 50%;
  width: 2px;
  height: 38px;
  background: rgba(51, 42, 122, .5);
  transform: translateX(-1px)
}

.group-sister-node:after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid rgba(51, 42, 122, .5);
  pointer-events: none;
  z-index: 2
}

.group-sister-node img {
  display: block;
  width: 100%;
  max-width: 198px;
  max-height: 54px;
  margin: 0 auto 9px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal
}

.group-sister-node strong {
  display: block;
  color: #071c2c;
  font: 900 16px/1.05 "Manrope";
  letter-spacing: -.5px;
  text-transform: uppercase
}

.group-sister-node span {
  display: block;
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid #d8e1e7;
  border-radius: 6px;
  background: rgba(51, 42, 122, .025);
  color: #60717e;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .5px
}

@media(max-width:1180px) {
  .profile-group-summary {
    grid-template-columns: 1fr
  }

  .profile-group-summary-brand {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    align-items: end
  }

  .profile-group-summary .profile-overview-stats {
    grid-template-columns: 1fr 1fr
  }

  .group-structure-children {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: 0
  }

  .group-structure-branches {
    display: none
  }

  .group-structure-node:before,
  .group-structure-node:after {
    display: none
  }

  .group-structure-node-hydro {
    min-height: 340px
  }
}

@media(max-width:700px) {
  .profile-group-summary {
    margin-top: 34px;
    padding: 24px
  }

  .profile-group-summary-brand {
    grid-template-columns: 1fr
  }

  .profile-group-summary-logo {
    min-height: 96px;
    padding: 20px
  }

  .profile-group-summary-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .profile-group-summary .profile-overview-stats {
    grid-template-columns: 1fr
  }

  .group-structure-diagram {
    padding: 22px 14px 18px
  }

  .group-structure-parent {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px
  }

  .group-structure-parent img {
    max-width: 220px
  }

  .group-structure-children {
    grid-template-columns: 1fr;
    padding-top: 0
  }

  .group-structure-node,
  .group-structure-node-hydro {
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 22px 18px;
    border-radius: 10px
  }

  .group-structure-node img {
    max-height: 50px
  }

  .group-sister-node {
    width: 100%;
    max-width: 230px;
    border-radius: 8px
  }
}

.profile-group-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  flex: 1
}

.profile-group-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 104px;
  border-bottom: 1px solid #d8e1e7;
  background: #fff
}

.profile-group-list article:last-child {
  border-bottom: 0
}

.profile-group-list span {
  display: grid;
  place-items: center;
  margin: 0;
  color: #332a7a;
  background: #f4f7f8;
  border-right: 1px solid #d8e1e7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.profile-group-list strong {
  display: flex;
  align-items: center;
  padding: 24px 28px;
  color: #071c2c;
  font: 900 clamp(20px, 2vw, 28px)/1.12 "Manrope";
  letter-spacing: -1px
}

.profile-vision {
  position: relative;
  color: #fff;
  background: #071c2c;
  overflow: hidden;
  isolation: isolate
}

.profile-vision:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 13, 20, .93) 0%, rgba(5, 23, 34, .82) 44%, rgba(5, 23, 34, .38) 100%), linear-gradient(0deg, rgba(3, 13, 20, .88), rgba(3, 13, 20, .14) 55%, rgba(3, 13, 20, .74)), url("assets/company-profile/vision-field-team.jpg") center/cover no-repeat;
  filter: saturate(.92) contrast(1.05);
  transform: scale(1.015)
}

.profile-vision:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 16%, rgba(141, 132, 195, .2), transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 44%);
  pointer-events: none
}

.profile-vision>* {
  position: relative;
  z-index: 1
}

.profile-vision .section-label {
  color: #aebbc4
}

.profile-vision .section-label:after {
  border-color: rgba(174, 187, 196, .4)
}

.profile-vision-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: clamp(22px, 3.4vw, 42px);
  align-items: stretch;
  margin-top: 54px
}

.profile-vision-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 18, 27, .7);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px)
}

.profile-vision-copy .light-text {
  color: var(--accent-light)
}

.profile-vision-copy h2 {
  margin: 16px 0 18px;
  color: #fff;
  font: 900 clamp(32px, 3vw, 48px)/1.02 "Manrope";
  letter-spacing: -2.2px
}

.profile-vision-copy>p:not(.kicker),
.profile-vision-intro {
  max-width: 720px;
  margin: 0;
  color: #cad6dd;
  font-size: 16px;
  line-height: 1.68
}

.profile-vision-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 34px
}

.profile-vision-badges span {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  color: #c0ced6;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .065);
  box-shadow: none;
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35
}

.profile-vision-badges strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font: 900 clamp(22px, 2.2vw, 32px)/.9 "Manrope";
  letter-spacing: -.8px
}

.profile-vision-badges em {
  display: block;
  color: #b9c8d1;
  font-style: normal
}

.profile-vision-system {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px
}

.profile-vision-card,
.profile-mission-grid article,
.profile-compliance-note {
  border: 1px solid rgba(216, 225, 231, .9);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .14);
  backdrop-filter: blur(12px)
}

.profile-vision-card-main {
  position: relative;
  min-height: 0;
  padding: 30px 32px;
  overflow: hidden
}

.profile-vision-card-main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-light)
}

.profile-vision-card-main:after {
  content: "VISION";
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(7, 28, 44, .035);
  font: 900 clamp(64px, 8vw, 118px)/.8 "Manrope";
  letter-spacing: -5px;
  pointer-events: none
}

.profile-vision-card-main span,
.profile-mission-grid span,
.profile-compliance-note span {
  position: relative;
  z-index: 1;
  display: block;
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.profile-vision-card-main h3 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 26px 0 0;
  color: #071c2c;
  font: 900 clamp(24px, 2.15vw, 34px)/1.08 "Manrope";
  letter-spacing: -1.5px
}

.profile-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px
}

.profile-mission-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 18px;
  align-items: start;
  min-height: 0;
  padding: 18px 22px
}

.profile-mission-grid article:before {
  display: none
}

.profile-mission-grid article strong {
  grid-row: 1/span 2;
  color: #332a7a;
  font: 900 19px/1 "Manrope";
  letter-spacing: -.6px
}

.profile-mission-grid span {
  color: #071c2c;
  font-size: 14px;
  letter-spacing: .2px
}

.profile-mission-grid p {
  margin: 2px 0 0;
  color: #60717e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55
}

.profile-compliance-note {
  display: grid;
  grid-template-columns: minmax(160px, .32fr) 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .88)
}

.profile-compliance-note p {
  margin: 0;
  color: #60717e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.58
}

.profile-section-head {
  max-width: 960px;
  margin-top: 54px
}

.culture-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 46px;
  padding: 34px 28px 30px;
  border: 1px solid #d8e1e7;
  background: radial-gradient(circle at 50% 38%, rgba(18, 63, 143, .055), transparent 34%), linear-gradient(180deg, #fff 0%, #f9fbfc 100%);
  box-shadow: 0 22px 70px rgba(7, 28, 44, .06);
  overflow: hidden
}

.culture-grid:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 calc(20% - .5px), rgba(216, 225, 231, .62) calc(20% - .5px) calc(20% + .5px), transparent calc(20% + .5px) calc(40% - .5px), rgba(216, 225, 231, .62) calc(40% - .5px) calc(40% + .5px), transparent calc(40% + .5px) calc(60% - .5px), rgba(216, 225, 231, .62) calc(60% - .5px) calc(60% + .5px), transparent calc(60% + .5px) calc(80% - .5px), rgba(216, 225, 231, .62) calc(80% - .5px) calc(80% + .5px), transparent calc(80% + .5px));
  pointer-events: none
}

.culture-grid:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .68), transparent 46%, rgba(255, 255, 255, .55));
  pointer-events: none
}

.sigap-card {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 330px;
  grid-template-rows: auto auto auto 1fr;
  justify-items: center;
  padding: 0 18px 22px;
  text-align: center;
  border-right: 1px solid rgba(216, 225, 231, .78)
}

.sigap-card:last-child {
  border-right: 0
}

.sigap-letter {
  display: block;
  margin: 0 0 20px;
  color: #123f8f;
  font: 900 clamp(48px, 5.8vw, 82px)/.85 "Manrope";
  letter-spacing: .12em
}

.sigap-icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: transparent
}

.sigap-icon img {
  display: block;
  width: 104px;
  height: 104px;
  object-fit: contain
}

.sigap-service {
  --sigap-color: #f27c22
}

.sigap-integrity {
  --sigap-color: #c9cf35
}

.sigap-grow {
  --sigap-color: #b9d383
}

.sigap-awareness {
  --sigap-color: #2f9db0
}

.sigap-professionalism {
  --sigap-color: #d90a67
}

.sigap-card h3 {
  margin: 0 0 15px;
  color: #071c2c;
  font: 900 12px/1.1 "Manrope";
  letter-spacing: .06em;
  text-transform: uppercase
}

.sigap-card p {
  max-width: 170px;
  margin: 0;
  color: #435461;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45
}

.sigap-notes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 28, 44, .045)
}

.sigap-notes article {
  min-width: 0
}

.sigap-notes span {
  display: block;
  margin-bottom: 10px;
  color: #123f8f;
  font: 900 11px/1.1 "Manrope";
  letter-spacing: .08em;
  text-transform: uppercase
}

.sigap-notes ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none
}

.sigap-notes li {
  position: relative;
  margin: 0;
  padding-left: 13px;
  color: #60717e;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45
}

.sigap-notes li:before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #123f8f;
  opacity: .72
}

.profile-services {
  background: #fff;
  overflow: hidden
}

.profile-services-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .46fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  margin-top: 54px
}

.profile-services-head h2 {
  max-width: 900px;
  margin: 14px 0 0;
  color: #071c2c;
  font: 900 clamp(40px, 4.8vw, 72px)/1 "Manrope";
  letter-spacing: -3.8px
}

.profile-services-head>p {
  max-width: 560px;
  margin: 0;
  color: #60717e;
  font-size: 16px;
  line-height: 1.75
}

.profile-services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px
}

.profile-service-card {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .08)
}

.profile-service-card:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 16, 25, .88), rgba(3, 16, 25, .08) 62%), linear-gradient(90deg, rgba(3, 16, 25, .2), transparent 60%)
}

.profile-service-card:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  pointer-events: none
}

.profile-service-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.02)
}

.profile-service-card:nth-child(1) img {
  object-position: center
}

.profile-service-card:nth-child(2) img {
  object-position: center
}

.profile-service-card:nth-child(3) img {
  object-position: center 44%
}

.profile-service-card div {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff
}

.profile-service-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.profile-service-card h3 {
  max-width: 390px;
  margin: 0;
  color: #fff;
  font: 900 clamp(24px, 2.2vw, 34px)/1.06 "Manrope";
  letter-spacing: -1.4px
}

.profile-service-card p {
  max-width: 400px;
  margin: 18px 0 0;
  color: #c7d3da;
  font-size: 14px;
  line-height: 1.65
}

.profile-service-explainer {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .58fr);
  gap: clamp(34px, 5.4vw, 86px);
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid #d8e1e7;
  background: transparent;
  box-shadow: none
}

.profile-service-explainer-copy {
  padding: 0;
  background: transparent
}

.profile-service-explainer-copy .kicker {
  margin: 0 0 14px
}

.profile-service-explainer-copy h3 {
  max-width: 860px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(25px, 2.5vw, 38px)/1.08 "Manrope";
  letter-spacing: -1.7px
}

.profile-service-explainer-copy p:not(.kicker) {
  max-width: 850px;
  margin: 20px 0 0;
  color: #60717e;
  font-size: 15px;
  line-height: 1.75
}

.profile-service-scope {
  display: grid;
  align-self: end;
  gap: 0;
  padding-left: clamp(26px, 3vw, 44px);
  border-left: 1px solid #d8e1e7
}

.profile-service-scope p {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 22px;
  margin: 0;
  padding: 0 0 17px;
  color: #60717e;
  border-bottom: 1px solid rgba(216, 225, 231, .78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.58
}

.profile-service-scope p+p {
  padding-top: 17px
}

.profile-service-scope p:last-child {
  padding-bottom: 0;
  border-bottom: 0
}

.profile-service-scope strong {
  display: block;
  color: #071c2c;
  font: 900 13px/1.2 "Manrope";
  letter-spacing: .08em;
  text-transform: uppercase
}

.profile-service-scope span {
  display: block
}

.profile-experience {
  position: relative;
  color: #fff;
  background: #101820;
  overflow: hidden;
  isolation: isolate
}

.profile-experience:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 12, 18, .82) 0%, rgba(5, 18, 27, .62) 44%, rgba(5, 18, 27, .18) 100%), linear-gradient(0deg, rgba(4, 12, 17, .7), rgba(4, 12, 17, .08) 55%, rgba(4, 12, 17, .34)), url("assets/company-profile/experience-offshore.jpg") center 44%/cover no-repeat;
  filter: saturate(.96) contrast(1.04) brightness(1.08);
  transform: scale(1.01)
}

.profile-experience:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 16%, rgba(255, 184, 106, .14), transparent 29%), linear-gradient(135deg, rgba(255, 255, 255, .05), transparent 44%);
  pointer-events: none
}

.profile-experience>* {
  position: relative;
  z-index: 1
}

.profile-experience .section-label {
  color: #aebbc4
}

.profile-experience .section-label:after {
  border-color: rgba(174, 187, 196, .42)
}

.profile-experience-head {
  max-width: 1040px;
  margin-top: 52px
}

.profile-experience-head .light-text {
  margin: 0 0 16px;
  color: var(--accent-light)
}

.profile-experience h2 {
  margin: 0;
  color: #fff;
  font: 900 clamp(35px, 4.4vw, 68px)/1.02 "Manrope";
  letter-spacing: -3.4px
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px
}

.experience-metrics article {
  position: relative;
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(4, 17, 25, .46);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .14);
  backdrop-filter: blur(10px);
  overflow: hidden
}

.experience-metrics article:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent-light);
  transform: scaleX(.28);
  transform-origin: left
}

.experience-metrics strong {
  display: block;
  margin-bottom: 52px;
  color: #fff;
  font: 900 clamp(35px, 3.4vw, 54px)/.88 "Manrope";
  letter-spacing: -2px
}

.experience-metrics span {
  display: block;
  color: #bccbd4;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55
}

.profile-fleet .profile-section-head {
  max-width: 1040px
}

.profile-fleet .profile-section-head>p:not(.kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #60717e;
  font-size: 15px;
  line-height: 1.72
}

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

.profile-fleet-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 0;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 18px 52px rgba(7, 28, 44, .055);
  overflow: hidden
}

.profile-vessel-card {
  grid-column: auto;
  grid-template-columns: 1fr
}

.profile-fleet-card>img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #eef3f6
}

.profile-fleet-copy {
  display: flex;
  min-height: 270px;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px
}

.profile-fleet-copy>span,
.equipment-grid article>span {
  display: block;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.profile-fleet-card h3,
.equipment-grid h3 {
  margin: 14px 0 14px;
  color: #071c2c;
  font: 900 clamp(24px, 2vw, 32px)/1.05 "Manrope";
  letter-spacing: -1.3px
}

.profile-fleet-card p,
.equipment-grid p {
  margin: 0;
  color: #657680;
  font-size: 14px;
  line-height: 1.68
}

.profile-vessel-slideshow {
  position: relative;
  height: 260px;
  min-height: 260px;
  background: #eef3f6;
  overflow: hidden
}

.profile-vessel-slideshow .vessel-slide img {
  display: block;
  width: 100%;
  height: 260px;
  min-height: 260px;
  object-fit: contain;
  object-position: center;
  background: #eef3f6;
  filter: saturate(.98) contrast(1.02)
}

.profile-vessel-slideshow .vessel-slide:nth-child(1) img {
  object-position: center 58%
}

.profile-vessel-slideshow .vessel-slide:nth-child(2) img {
  object-position: center 52%
}

.profile-vessel-slideshow .vessel-slide:nth-child(3) img {
  object-position: center 50%
}

.profile-vessel-slideshow .vessel-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 52px;
  left: 18px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  color: #fff;
  background: rgba(4, 20, 31, .72);
  border-left: 3px solid var(--accent-light);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

.profile-vessel-slideshow .vessel-slide-controls {
  right: 18px;
  bottom: 18px;
  padding: 7px
}

.profile-vessel-slideshow .vessel-slide-controls button {
  width: 24px
}

.profile-vessel-slideshow .vessel-slide-controls button.is-active {
  width: 38px
}

.profile-fleet-collaboration {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(216, 225, 231, .9);
  background: #f4f7f8
}

.profile-fleet-collaboration span {
  display: block;
  color: #60717e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.profile-fleet-collaboration img {
  display: block;
  width: min(188px, 100%);
  height: auto;
  object-fit: contain
}

.profile-fleet-actions {
  margin-top: 22px
}

.profile-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 178px;
  margin-top: 20px;
  padding: 13px 16px;
  color: #fff;
  background: #071c2c;
  font: 900 11px/1.15 "Manrope";
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease
}

.profile-fleet-actions .profile-card-link {
  margin-top: 0
}

.profile-card-link span {
  font-size: 14px;
  line-height: 1;
  transition: transform .25s ease
}

.profile-card-link:hover {
  background: #332a7a;
  box-shadow: 0 14px 34px rgba(7, 28, 44, .16);
  transform: translateY(-2px)
}

.profile-card-link:hover span {
  transform: translateX(3px)
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px
}

.equipment-grid article {
  display: grid;
  grid-template-rows: 260px auto 1fr auto;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 18px 52px rgba(7, 28, 44, .055);
  overflow: hidden
}

.equipment-grid img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 52%;
  background: #e7edf0
}

.equipment-grid article:nth-child(2) img {
  object-position: center 58%
}

.equipment-grid article:nth-child(3) img {
  object-position: center 48%
}

.equipment-grid h3,
.equipment-grid p,
.equipment-grid .profile-card-link {
  margin-right: 28px;
  margin-left: 28px
}

.equipment-grid h3 {
  margin-top: 28px
}

.equipment-grid p {
  margin-top: 0
}

.equipment-grid .profile-card-link {
  align-self: end;
  margin-top: 22px;
  margin-bottom: 28px
}

.profile-lab {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.08fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
  background: #fff
}

.profile-lab-copy .section-label {
  margin-bottom: 54px
}

.profile-lab-visual {
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .1)
}

.profile-lab-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover
}

.profile-client-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px
}

.profile-client-logos .client-logo-card {
  width: auto;
  height: 78px
}

.profile-client-logos .client-logo-card img {
  max-height: 46px
}

.profile-client-logos .client-logo-card.logo-square img {
  max-height: 54px
}

.profile-client-logos .client-logo-card.logo-extra-wide img {
  max-height: 38px
}

.profile-client-logos .client-logo-card.logo-tall img {
  max-height: 56px
}

@media(max-width:1100px) {

  .profile-overview-grid,
  .profile-vision-layout,
  .profile-services-head,
  .profile-service-explainer,
  .profile-lab {
    grid-template-columns: 1fr
  }

  .profile-group-panel-head,
  .profile-compliance-note {
    grid-template-columns: 1fr;
    align-items: start
  }

  .profile-hero-visual,
  .profile-lab-visual img {
    min-height: 420px
  }

  .profile-services-showcase {
    grid-template-columns: 1fr 1fr
  }

  .profile-service-card:first-child {
    grid-column: 1/-1;
    min-height: 460px
  }

  .profile-service-scope {
    padding-left: 0;
    border-left: 0
  }

  .culture-grid {
    grid-template-columns: 1fr 1fr 1fr
  }

  .experience-metrics,
  .equipment-grid {
    grid-template-columns: 1fr 1fr
  }

  .profile-client-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .profile-fleet-grid {
    grid-template-columns: 1fr 1fr
  }

  .profile-fleet-card {
    grid-template-columns: 1fr
  }
}

@media(max-width:700px) {
  .profile-hero {
    min-height: 0;
    padding-top: 118px
  }

  .profile-hero:before {
    background: linear-gradient(180deg, rgba(3, 15, 23, .9), rgba(3, 15, 23, .72)), url("assets/company-profile/profile-hero-offshore.jpg") center/cover no-repeat
  }

  .profile-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -2.8px
  }

  .profile-hero-footprint {
    margin-top: 30px;
    padding: 18px
  }

  .profile-overview-stats,
  .profile-vision-badges,
  .profile-mission-grid {
    grid-template-columns: 1fr
  }

  .profile-group-intro {
    padding: 28px
  }

  .profile-brand-lockup img {
    width: min(236px, 74vw)
  }

  .profile-group-panel-head,
  .profile-vision-card-main,
  .profile-compliance-note {
    padding: 24px
  }

  .profile-vision-card-main {
    min-height: 0
  }

  .profile-vision-card-main h3 {
    margin-top: 34px
  }

  .profile-group-logo-grid {
    grid-template-columns: 1fr
  }

  .profile-group-company,
  .profile-group-company:nth-child(2n),
  .profile-group-company:nth-last-child(-n+2) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid #d8e1e7
  }

  .profile-group-company:last-child {
    border-bottom: 0
  }

  .profile-group-logo-wrap {
    height: 88px
  }

  .profile-group-logo-wrap img {
    max-height: 50px
  }

  .profile-group-list article {
    grid-template-columns: 58px 1fr
  }

  .profile-group-list strong {
    padding: 22px;
    font-size: 20px
  }

  .profile-hero-visual,
  .profile-hero-visual img,
  .profile-lab-visual img {
    min-height: 320px
  }

  .profile-hero-visual figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 18px
  }

  .profile-overview-grid,
  .profile-vision-layout,
  .profile-section-head,
  .profile-services-head {
    margin-top: 34px
  }

  .profile-narrative h2,
  .profile-vision-copy h2,
  .profile-section-head h2,
  .profile-services-head h2,
  .profile-lab-copy h2,
  .profile-experience h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .profile-services-showcase {
    grid-template-columns: 1fr;
    margin-top: 34px
  }

  .profile-service-card,
  .profile-service-card:first-child {
    grid-column: auto;
    min-height: 360px
  }

  .profile-service-card div {
    padding: 24px
  }

  .profile-service-explainer,
  .profile-service-scope {
    grid-template-columns: 1fr
  }

  .profile-service-explainer {
    gap: 24px
  }

  .profile-service-explainer-copy {
    padding: 0
  }

  .profile-service-scope p {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .profile-group-list,
  .culture-grid,
  .experience-metrics,
  .profile-fleet-grid,
  .equipment-grid {
    grid-template-columns: 1fr
  }

  .profile-group-list article,
  .culture-grid article,
  .experience-metrics article {
    min-height: 0
  }

  .culture-grid span,
  .experience-metrics strong {
    margin-bottom: 28px
  }

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

  .profile-client-logos .client-logo-card {
    height: 66px;
    padding: 10px
  }

  .profile-client-logos .client-logo-card img {
    max-height: 38px
  }

  .profile-client-logos .client-logo-card.logo-extra-wide img {
    max-height: 30px
  }

  .profile-client-logos .client-logo-card.logo-tall img {
    max-height: 44px
  }

  .profile-fleet-card {
    grid-template-columns: 1fr
  }

  .profile-fleet-copy {
    min-height: 0
  }

  .profile-fleet-card>img,
  .profile-vessel-slideshow {
    height: 260px;
    min-height: 260px
  }

  .profile-vessel-slideshow .vessel-slide img {
    min-height: 260px
  }

  .equipment-grid img {
    height: 260px
  }

  .profile-lab-copy .section-label {
    margin-bottom: 34px
  }
}

@media(max-width:1100px) and (min-width:701px) {

  .profile-fleet-card>img,
  .profile-vessel-slideshow,
  .profile-vessel-slideshow .vessel-slide img {
    height: 260px;
    min-height: 260px
  }

  .profile-fleet-copy {
    min-height: 270px
  }
}

@media(max-width:900px) {
  .profile-group-panel {
    padding: 12px
  }

  .profile-group-panel:before {
    inset: 12px
  }

  .profile-group-panel-head {
    grid-template-columns: 1fr;
    padding: 24px
  }

  .profile-group-logo-grid {
    padding: 12px
  }

  .profile-group-company,
  .profile-group-company:nth-child(2n),
  .profile-group-company:nth-last-child(-n+2) {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 24px;
    border-right: 1px solid rgba(216, 225, 231, .94);
    border-bottom: 1px solid rgba(216, 225, 231, .94)
  }

  .profile-group-company:last-child {
    border-bottom: 1px solid rgba(216, 225, 231, .94)
  }

  .profile-group-company span {
    align-self: auto
  }

  .profile-group-logo-wrap {
    height: auto
  }

  .profile-group-logo-wrap img {
    max-width: 230px;
    max-height: 52px
  }

  .profile-group-copy {
    max-width: 420px
  }
}

@media(max-width:1100px) {
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px
  }

  .sigap-card {
    border-bottom: 1px solid rgba(216, 225, 231, .78)
  }

  .sigap-card:nth-child(2n) {
    border-right: 0
  }

  .sigap-card:nth-last-child(-n+1) {
    border-bottom: 0
  }

  .sigap-card:last-child {
    grid-column: 1/-1
  }

  .sigap-notes {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:700px) {
  .culture-grid {
    grid-template-columns: 1fr;
    padding: 18px 22px
  }

  .culture-grid:before {
    background: none
  }

  .culture-grid:after {
    display: none
  }

  .sigap-card {
    grid-template-columns: 62px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    min-height: 0;
    padding: 22px 0;
    justify-items: start;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 225, 231, .78)
  }

  .sigap-card:last-child {
    grid-column: auto;
    border-bottom: 0
  }

  .sigap-letter {
    grid-row: 1/4;
    margin: 0;
    color: #123f8f;
    font-size: 48px;
    letter-spacing: .02em
  }

  .sigap-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 12px
  }

  .sigap-icon img {
    width: 70px;
    height: 70px
  }

  .sigap-card h3 {
    margin-bottom: 8px
  }

  .sigap-card p {
    max-width: none;
    font-size: 12.5px
  }

  .sigap-notes {
    grid-template-columns: 1fr;
    margin-top: 14px;
    padding: 20px
  }

  .sigap-notes li {
    font-size: 12.5px
  }
}

/* Services page */
.services-page {
  background: #f4f7f8;
  color: #071c2c
}

.services-hero {
  position: relative;
  min-height: 92svh;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(72px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  color: #fff;
  background: #061925;
  overflow: hidden
}

.services-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 23, .94) 0%, rgba(3, 15, 23, .78) 44%, rgba(3, 15, 23, .42) 100%), linear-gradient(0deg, rgba(3, 15, 23, .88), rgba(3, 15, 23, .14) 56%, rgba(3, 15, 23, .74)), url("assets/optimized/images/assets-ss-barakuda-dji-0219-b4bc2fea-1400.webp") center/cover no-repeat;
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.015)
}

.services-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(141, 132, 195, .2), transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 44%);
  pointer-events: none
}

.services-hero>* {
  position: relative;
  z-index: 1
}

.services-hero-copy {
  max-width: 1040px
}

.services-hero .light-text {
  margin: 0 0 18px;
  color: var(--accent-light)
}

.services-hero h1 {
  max-width: 1080px;
  margin: 0;
  color: #fff;
  font: 900 clamp(48px, 6.4vw, 104px)/.96 "Manrope";
  letter-spacing: -5.4px
}

.services-hero-copy>p:not(.kicker) {
  max-width: 760px;
  margin: 28px 0 0;
  color: #c8d3da;
  font-size: 17px;
  line-height: 1.72
}

.services-hero-panel {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 20, 31, .62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px)
}

.services-hero-panel span {
  display: block;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.services-hero-panel strong {
  display: block;
  margin: 32px 0 10px;
  color: #fff;
  font: 900 74px/.85 "Manrope";
  letter-spacing: -4px
}

.services-hero-panel p {
  margin: 0;
  color: #d2dce3;
  font-size: 13px;
  line-height: 1.65
}

.services-directory {
  background: #f4f7f8
}

.services-directory-head {
  max-width: 1040px;
  margin-top: 54px
}

.services-directory-head h2 {
  margin: 14px 0 0;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 72px)/1 "Manrope";
  letter-spacing: -3.8px
}

.service-anchor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid #cfd9df;
  border-left: 1px solid #cfd9df
}

.service-anchor-list a {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid #cfd9df;
  border-bottom: 1px solid #cfd9df;
  color: #071c2c;
  background: rgba(255, 255, 255, .42);
  font: 900 13px/1.25 "Manrope";
  letter-spacing: -.2px;
  transition: background .3s ease, color .3s ease, padding-left .35s cubic-bezier(.22, 1, .36, 1)
}

.service-anchor-list a:hover {
  padding-left: 26px;
  color: #332a7a;
  background: #fff
}

.service-anchor-list span {
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.service-detail-stack {
  margin-top: 58px;
  border-top: 1px solid #cfd9df
}

.service-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .98fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: stretch;
  padding: clamp(58px, 6vw, 86px) 0;
  border-bottom: 1px solid #cfd9df
}

.service-detail-reverse {
  grid-template-columns: minmax(0, .98fr) minmax(0, 1fr)
}

.service-detail-reverse .service-detail-media {
  order: 2
}

.service-detail-reverse .service-detail-copy {
  order: 1
}

.service-detail-media {
  position: relative;
  height: 100%;
  min-height: clamp(430px, 43vw, 700px);
  margin: 0;
  background: #071c2c;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(7, 28, 44, .11)
}

.service-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
  transition: transform .9s cubic-bezier(.22, 1, .36, 1)
}

.service-detail-media:not(.service-detail-gallery)>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.service-detail-section:hover .service-detail-media img {
  transform: scale(1.025)
}

.service-detail-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: clamp(600px, 48vw, 760px);
  background: transparent;
  box-shadow: none
}

.service-gallery-feature,
.service-gallery-grid {
  min-height: 0
}

.service-gallery-feature,
.service-gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  outline: 0;
  transition: box-shadow .32s ease, transform .35s cubic-bezier(.22, 1, .36, 1)
}

.service-gallery-feature {
  min-height: clamp(430px, 34vw, 580px)
}

.service-gallery-feature.is-contain img {
  object-fit: contain;
  padding: clamp(18px, 2vw, 30px);
  filter: saturate(1) contrast(1.02)
}

.service-gallery-grid figure {
  aspect-ratio: 16/8;
  cursor: pointer
}

.service-gallery-grid figure:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 0 solid #8d84c3;
  box-shadow: inset 0 0 0 1px rgba(7, 28, 44, .1);
  pointer-events: none;
  transition: border-width .32s ease, box-shadow .32s ease
}

.service-gallery-grid figure:hover {
  transform: translateY(-2px)
}

.service-gallery-grid figure.is-selected:before,
.service-gallery-grid figure:focus-visible:before {
  border-width: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .86), 0 18px 45px rgba(51, 42, 122, .22)
}

.service-gallery-grid figure.is-selected figcaption {
  background: rgba(51, 42, 122, .88);
  border-color: #c7c2ff
}

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

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

.service-gallery-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.service-gallery-grid-six,
.service-gallery-grid-mixed {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.service-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
  background: #071c2c
}

.service-gallery-contain {
  object-fit: contain !important;
  object-position: center;
  padding: 10px;
  filter: saturate(1) contrast(1.02) !important
}

.service-detail-section:hover .service-gallery-contain {
  transform: none
}

.service-detail-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(4, 20, 31, .72);
  border-left: 3px solid #8d84c3;
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase
}

.service-gallery-feature figcaption {
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  font-size: 12px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0
}

#nearshore-onshore-geotechnical .service-detail-gallery {
  display: block;
  height: 100%;
  min-height: 0;
  background: transparent;
  overflow: visible;
  border: 0
}

#nearshore-onshore-geotechnical .service-gallery-feature {
  min-height: clamp(430px, 34vw, 560px);
  background: #071c2c;
  box-shadow: 0 22px 70px rgba(7, 28, 44, .14)
}

#nearshore-onshore-geotechnical .service-gallery-feature img {
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(.98) contrast(1.03)
}

#nearshore-onshore-geotechnical .service-gallery-feature figcaption {
  right: auto;
  bottom: 20px;
  left: 20px;
  width: min(520px, calc(100% - 40px));
  padding: 15px 18px;
  background: rgba(4, 20, 31, .78);
  font-size: 12px;
  line-height: 1.35
}

#nearshore-onshore-geotechnical .service-gallery-grid-mixed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
  background: transparent
}

#nearshore-onshore-geotechnical .service-gallery-grid-mixed figure {
  aspect-ratio: 16/9;
  background: #071c2c;
  box-shadow: 0 16px 44px rgba(7, 28, 44, .1)
}

#nearshore-onshore-geotechnical .service-gallery-grid-mixed img {
  height: 100%;
  object-fit: cover;
  object-position: center
}

#nearshore-onshore-geotechnical .service-gallery-grid-mixed figcaption {
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 12px;
  font-size: 8px;
  line-height: 1.25;
  background: linear-gradient(135deg, rgba(4, 20, 31, .9), rgba(7, 28, 44, .76));
  border-left: 3px solid var(--accent-light)
}

#nearshore-onshore-geotechnical .service-gallery-grid figure.is-selected:before,
#nearshore-onshore-geotechnical .service-gallery-grid figure:focus-visible:before {
  border-width: 3px
}

@media(max-width:900px) {
  #nearshore-onshore-geotechnical .service-gallery-grid-mixed {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:560px) {
  #nearshore-onshore-geotechnical .service-gallery-grid-mixed {
    grid-template-columns: 1fr
  }
}

.service-doc-label {
  display: block;
  margin-bottom: 5px;
  color: #c7c2ff;
  font-size: 8px;
  letter-spacing: 1.3px
}

.section-anchor {
  position: relative;
  top: -120px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.service-detail-media:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(0deg, rgba(3, 15, 23, .55), rgba(3, 15, 23, 0) 48%);
  pointer-events: none
}

.service-detail-media>figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(4, 20, 31, .7);
  border: 0;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5
}

.service-detail-copy {
  align-self: center;
  max-width: 720px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none
}

.service-detail-copy .kicker {
  margin: 0 0 18px;
  color: #332a7a
}

.service-detail-index {
  display: block;
  margin-bottom: 22px;
  color: #83929c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.service-detail-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(40px, 3.9vw, 62px)/.98 "Manrope";
  letter-spacing: -3.1px;
  text-wrap: balance
}

.service-detail-copy>p:not(.kicker) {
  max-width: 680px;
  margin: 16px 0 0;
  color: #60717e;
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.68
}

.service-detail-points {
  margin-top: 28px;
  border-top: 1px solid #cfd9df
}

.service-detail-points p {
  display: grid;
  grid-template-columns: minmax(112px, .32fr) minmax(0, 1fr);
  gap: 22px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #cfd9df
}

.service-detail-points strong {
  color: #071c2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.45px;
  text-transform: uppercase
}

.service-detail-points span {
  color: #60717e;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.58
}

.service-detail-points-compact p {
  grid-template-columns: 110px 1fr
}

.service-seabed-detail .service-detail-copy {
  max-width: 740px
}

.service-seabed-detail .service-detail-copy h2 {
  max-width: 650px
}

.service-seabed-detail .service-detail-copy>p:not(.kicker) {
  max-width: 700px
}

.service-seabed-detail .service-detail-points p {
  grid-template-columns: minmax(118px, .3fr) minmax(0, 1fr)
}

.service-seabed-detail .service-gallery-feature {
  min-height: clamp(460px, 36vw, 620px)
}

.service-seabed-detail .service-gallery-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.service-seabed-detail .service-gallery-grid-four figure {
  aspect-ratio: 16/8.4
}

@media(max-width:1100px) {
  .services-hero {
    grid-template-columns: 1fr
  }

  .services-hero-panel {
    max-width: 360px
  }

  .service-anchor-list {
    grid-template-columns: 1fr 1fr
  }

  .service-detail-section,
  .service-detail-reverse {
    grid-template-columns: 1fr
  }

  .service-detail-reverse .service-detail-media,
  .service-detail-reverse .service-detail-copy {
    order: initial
  }

  .service-detail-copy {
    max-width: 900px
  }

  .service-detail-points p {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .service-detail-points span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere
  }

  .service-seabed-detail .service-detail-points p {
    grid-template-columns: 1fr
  }
}

@media(max-width:700px) {
  .services-hero {
    min-height: 0;
    padding-top: 118px
  }

  .services-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -2.8px
  }

  .services-hero-panel {
    padding: 24px
  }

  .services-hero-panel strong {
    font-size: 58px
  }

  .services-directory-head {
    margin-top: 34px
  }

  .services-directory-head h2,
  .service-detail-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .service-anchor-list {
    grid-template-columns: 1fr;
    margin-top: 34px
  }

  .service-anchor-list a {
    min-height: 64px
  }

  .service-detail-stack {
    margin-top: 42px
  }

  .service-detail-section {
    gap: 26px;
    padding: 42px 0
  }

  .service-detail-media {
    min-height: 300px
  }

  .service-detail-gallery {
    grid-template-rows: 260px auto
  }

  .service-gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .service-gallery-grid img {
    height: 130px
  }

  .service-detail-gallery figcaption,
  .service-detail-media>figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px
  }

  .service-gallery-grid figcaption {
    padding: 8px 9px;
    font-size: 8px
  }

  .service-detail-points p {
    grid-template-columns: 1fr;
    gap: 8px
  }
}

/* Vessel page */
.vessel-page {
  background: #f4f7f8;
  color: #071c2c
}

.vessel-hero {
  position: relative;
  min-height: 92svh;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(72px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  color: #fff;
  background: #061925;
  overflow: hidden
}

.vessel-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 23, .94) 0%, rgba(3, 15, 23, .78) 44%, rgba(3, 15, 23, .36) 100%), linear-gradient(0deg, rgba(3, 15, 23, .9), rgba(3, 15, 23, .12) 56%, rgba(3, 15, 23, .78)), url("assets/vessels/ag-geodrill-sunset.jpg") center/cover no-repeat;
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.015)
}

.vessel-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(141, 132, 195, .2), transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 44%);
  pointer-events: none
}

.vessel-hero>* {
  position: relative;
  z-index: 1
}

.vessel-hero-copy {
  max-width: 1060px
}

.vessel-hero .light-text {
  margin: 0 0 18px;
  color: var(--accent-light)
}

.vessel-hero h1 {
  max-width: 1080px;
  margin: 0;
  color: #fff;
  font: 900 clamp(48px, 6.7vw, 108px)/.95 "Manrope";
  letter-spacing: -5.6px
}

.vessel-hero-copy>p:not(.kicker) {
  max-width: 760px;
  margin: 28px 0 0;
  color: #c8d3da;
  font-size: 17px;
  line-height: 1.72
}

.vessel-hero-panel {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 20, 31, .62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px)
}

.vessel-hero-panel span {
  display: block;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.vessel-hero-panel strong {
  display: block;
  margin: 32px 0 10px;
  color: #fff;
  font: 900 74px/.85 "Manrope";
  letter-spacing: -4px
}

.vessel-hero-panel p {
  margin: 0;
  color: #d2dce3;
  font-size: 13px;
  line-height: 1.65
}

.vessel-overview {
  background: #f4f7f8
}

.vessel-overview-head {
  max-width: 1040px;
  margin-top: 54px
}

.vessel-overview-head h2 {
  margin: 14px 0 0;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 72px)/1 "Manrope";
  letter-spacing: -3.8px
}

.vessel-collaboration {
  display: grid;
  grid-template-columns: minmax(280px, .36fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  margin-top: 38px;
  padding: 24px 0;
  border-top: 1px solid #d8e1e7;
  border-bottom: 1px solid #d8e1e7
}

.vessel-collaboration-lockup {
  display: flex;
  align-items: center;
  gap: 16px
}

.vessel-collaboration-lockup img {
  display: block;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(7, 28, 44, .06));
  mix-blend-mode: multiply
}

.vessel-collaboration-lockup .logo-hydrocore {
  width: 154px;
  height: auto
}

.vessel-collaboration-lockup .logo-geodrill {
  width: 154px;
  height: auto
}

.vessel-collaboration-lockup i {
  width: 34px;
  height: 1px;
  background: #aebbc4
}

.vessel-collaboration span {
  display: block;
  margin-bottom: 9px;
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.vessel-collaboration p {
  max-width: 820px;
  margin: 0;
  color: #60717e;
  font-size: 15px;
  line-height: 1.72
}

.vessel-platform-list {
  display: grid;
  margin-top: 46px;
  border-top: 1px solid #d8e1e7
}

.vessel-platform-list a {
  display: grid;
  grid-template-columns: 70px minmax(220px, .38fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #d8e1e7;
  transition: color .28s ease, transform .38s cubic-bezier(.22, 1, .36, 1)
}

.vessel-platform-list a:hover {
  color: #332a7a;
  transform: translateX(6px)
}

.vessel-platform-list span {
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px
}

.vessel-platform-list strong {
  display: block;
  color: #071c2c;
  font: 900 clamp(24px, 2.4vw, 38px)/1 "Manrope";
  letter-spacing: -1.5px
}

.vessel-platform-list small {
  display: block;
  margin-top: 9px;
  color: #8b9aa5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.vessel-platform-list p {
  max-width: 760px;
  margin: 0;
  color: #60717e;
  font-size: 14px;
  line-height: 1.7
}

.vessel-detail-copy .kicker {
  display: block;
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.vessel-detail-section {
  position: relative;
  color: #fff;
  background: #071c2c;
  overflow: hidden;
  padding: 0
}

.vessel-detail-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(141, 132, 195, .17), transparent 32%), linear-gradient(180deg, #071c2c, #04141f)
}

.vessel-detail-section>* {
  position: relative;
  z-index: 1
}

.vessel-detail-section>.section-label {
  margin-right: var(--pad);
  margin-left: var(--pad)
}

.vessel-detail-section .section-label {
  color: #aebbc4
}

.vessel-detail-section .section-label:after {
  border-color: rgba(174, 187, 196, .4)
}

.vessel-profile-section {
  display: flex;
  min-height: 100svh;
  padding-top: clamp(36px, 4.2vw, 64px);
  padding-bottom: clamp(36px, 4.2vw, 64px);
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.vessel-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 56vw) minmax(380px, 1fr);
  min-height: clamp(430px, calc(100svh - 250px), 560px);
  align-items: stretch;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible
}

.vessel-profile-section .vessel-detail-card {
  margin-top: clamp(16px, 2vw, 24px)
}

.vessel-profile-section.is-reversed .vessel-detail-card {
  grid-template-columns: minmax(380px, 1fr) minmax(0, 56vw)
}

.vessel-profile-section.is-reversed .vessel-detail-media {
  order: 2
}

.vessel-detail-media {
  position: relative;
  min-height: clamp(430px, calc(100svh - 250px), 560px);
  overflow: hidden;
  background: #0b2232;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24)
}

.vessel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .9s ease, transform 6.4s ease;
  pointer-events: none
}

.vessel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  pointer-events: auto
}

.vessel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(430px, calc(100svh - 250px), 560px);
  object-fit: cover;
  background: #0b2232;
  filter: saturate(.94) contrast(1.04)
}

.vessel-slide-contained {
  background: radial-gradient(circle at 50% 42%, rgba(35, 77, 104, .72), rgba(3, 18, 29, .98) 70%)
}

.vessel-slide-contained img {
  box-sizing: border-box;
  padding: clamp(14px, 2vw, 30px);
  object-fit: contain;
  background: transparent;
  filter: saturate(.98) contrast(1.03)
}

.vessel-slide-controls {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(3, 15, 23, .56);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px)
}

.vessel-slide-controls button {
  width: 30px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .34);
  cursor: pointer;
  transition: background .25s ease, width .25s ease
}

.vessel-slide-controls button.is-active {
  width: 46px;
  background: #fff
}

.vessel-detail-copy {
  position: relative;
  align-self: center;
  margin: clamp(16px, 2.2vw, 30px) var(--pad) clamp(16px, 2.2vw, 30px) clamp(22px, 3vw, 44px);
  padding: clamp(22px, 2.4vw, 34px);
  background: rgba(5, 22, 34, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  overflow: hidden
}

.vessel-detail-copy:before {
  content: attr(data-vessel-no);
  position: absolute;
  right: 22px;
  top: 10px;
  color: rgba(255, 255, 255, .055);
  font: 900 clamp(72px, 7vw, 118px)/.8 "Manrope";
  letter-spacing: -8px;
  pointer-events: none
}

.vessel-profile-section.is-reversed .vessel-detail-copy {
  margin-right: clamp(22px, 3vw, 44px);
  margin-left: var(--pad)
}

.vessel-detail-copy .light-text {
  color: var(--accent-light)
}

.vessel-status-pill {
  display: inline-flex;
  width: fit-content;
  margin: 12px 0 2px;
  padding: 8px 12px;
  border: 1px solid rgba(199, 194, 255, .38);
  background: rgba(141, 132, 195, .12);
  color: #d9d5ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase
}

.vessel-coming-soon .vessel-detail-media:after {
  content: "COMING SOON";
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  padding: 9px 12px;
  border-left: 3px solid var(--accent-light);
  background: rgba(5, 22, 34, .78);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  backdrop-filter: blur(10px)
}

.vessel-detail-copy h2 {
  max-width: 720px;
  margin: 10px 0 14px;
  color: #fff;
  font: 900 clamp(28px, 2.8vw, 40px)/1.04 "Manrope";
  letter-spacing: -2px
}

.vessel-detail-copy>p:not(.kicker) {
  max-width: 680px;
  margin: 0;
  color: #c9d5dc;
  font-size: 13.5px;
  line-height: 1.58
}

.vessel-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 18px
}

.vessel-spec-list span {
  padding: 12px;
  color: #c8d5dd;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.4
}

.vessel-spec-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font: 900 13px/1 "Manrope";
  letter-spacing: .06em;
  text-transform: uppercase
}

.vessel-gallery-section {
  background: #fff
}

.vessel-gallery {
  display: grid;
  grid-template-columns: 1.16fr .92fr .92fr;
  gap: 18px;
  margin-top: 46px
}

.vessel-gallery figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 22px 64px rgba(7, 28, 44, .08)
}

.vessel-gallery figure:first-child {
  grid-row: span 2;
  min-height: 680px
}

.vessel-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04)
}

.vessel-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(4, 20, 31, .68);
  border-left: 3px solid var(--accent-light);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

@media(max-width:1100px) {

  .vessel-hero,
  .vessel-collaboration,
  .vessel-detail-card,
  .vessel-profile-section.is-reversed .vessel-detail-card {
    grid-template-columns: 1fr
  }

  .vessel-profile-section {
    display: block;
    min-height: 0
  }

  .vessel-profile-section.is-reversed .vessel-detail-media {
    order: 0
  }

  .vessel-detail-card {
    min-height: 0
  }

  .vessel-detail-media,
  .vessel-slide img {
    min-height: 520px
  }

  .vessel-detail-copy,
  .vessel-profile-section.is-reversed .vessel-detail-copy {
    margin: 0 var(--pad);
    transform: translateY(-54px)
  }

  .vessel-profile-section {
    padding-bottom: calc(var(--pad) + 10px)
  }

  .vessel-platform-list a {
    grid-template-columns: 52px 1fr
  }

  .vessel-platform-list p {
    grid-column: 2
  }

  .vessel-gallery {
    grid-template-columns: 1fr 1fr
  }

  .vessel-gallery figure:first-child {
    grid-row: auto;
    grid-column: 1/-1;
    min-height: 420px
  }
}

@media(max-width:700px) {
  .vessel-hero {
    min-height: 0;
    padding-top: 118px
  }

  .vessel-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -2.8px
  }

  .vessel-hero-panel {
    padding: 24px
  }

  .vessel-hero-panel strong {
    font-size: 58px
  }

  .vessel-gallery,
  .vessel-spec-list {
    grid-template-columns: 1fr
  }

  .vessel-collaboration {
    gap: 18px;
    margin-top: 28px;
    padding: 20px 0
  }

  .vessel-collaboration-lockup {
    flex-wrap: wrap;
    gap: 10px
  }

  .vessel-collaboration-lockup .logo-hydrocore,
  .vessel-collaboration-lockup .logo-geodrill {
    width: 132px
  }

  .vessel-collaboration-lockup i {
    width: 24px
  }

  .vessel-platform-list a {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0
  }

  .vessel-platform-list p {
    grid-column: auto
  }

  .vessel-overview-head,
  .vessel-gallery,
  .vessel-profile-section .vessel-detail-card {
    margin-top: 34px
  }

  .vessel-overview-head h2,
  .vessel-detail-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .vessel-detail-media,
  .vessel-slide img {
    min-height: 390px
  }

  .vessel-slide-controls {
    right: 18px;
    bottom: 18px
  }

  .vessel-detail-copy,
  .vessel-profile-section.is-reversed .vessel-detail-copy {
    margin: 0 20px;
    padding: 28px;
    transform: translateY(-34px)
  }

  .vessel-gallery figure,
  .vessel-gallery figure:first-child {
    min-height: 300px
  }
}

/* QHSE and Project pages */
.qhse-page,
.project-page {
  background: #f4f7f8;
  color: #071c2c
}

.qhse-page-hero,
.project-page-hero {
  position: relative;
  min-height: 88svh;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(72px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  color: #fff;
  background: #061925;
  overflow: hidden
}

.qhse-page-hero:before,
.project-page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  filter: saturate(.9) contrast(1.06);
  transform: scale(1.015)
}

.qhse-page-hero:before {
  background: linear-gradient(90deg, rgba(3, 15, 23, .95), rgba(3, 15, 23, .76) 44%, rgba(3, 15, 23, .35)), linear-gradient(0deg, rgba(3, 15, 23, .88), rgba(3, 15, 23, .12) 58%, rgba(3, 15, 23, .68)), url("assets/qhse/hse-hero.jpg") center/cover no-repeat
}

.project-page-hero:before {
  background: linear-gradient(90deg, rgba(3, 15, 23, .95), rgba(3, 15, 23, .74) 44%, rgba(3, 15, 23, .32)), linear-gradient(0deg, rgba(3, 15, 23, .9), rgba(3, 15, 23, .1) 58%, rgba(3, 15, 23, .66)), url("assets/optimized/images/assets-vessels-source-ss-barakuda-marine-c04a6b27-1400.webp") center/cover no-repeat
}

.qhse-page-hero:after,
.project-page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(141, 132, 195, .2), transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 44%);
  pointer-events: none
}

.qhse-page-hero>*,
.project-page-hero>* {
  position: relative;
  z-index: 1
}

.qhse-page-hero-copy,
.project-page-hero-copy {
  max-width: 1060px
}

.qhse-page-hero .light-text,
.project-page-hero .light-text {
  margin: 0 0 18px;
  color: var(--accent-light)
}

.qhse-page-hero h1,
.project-page-hero h1 {
  max-width: 1080px;
  margin: 0;
  color: #fff;
  font: 900 clamp(48px, 6.5vw, 104px)/.96 "Manrope";
  letter-spacing: -5.4px
}

.qhse-page-hero-copy>p:not(.kicker),
.project-page-hero-copy>p:not(.kicker) {
  max-width: 760px;
  margin: 28px 0 0;
  color: #c8d3da;
  font-size: 17px;
  line-height: 1.72
}

.qhse-hero-card,
.project-page-hero-panel {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 20, 31, .62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px)
}

.qhse-hero-card span,
.project-page-hero-panel span {
  display: block;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.qhse-hero-card strong {
  display: block;
  margin: 32px 0 12px;
  color: #fff;
  font: 900 clamp(28px, 2.7vw, 44px)/1.04 "Manrope";
  letter-spacing: -1.8px
}

.project-page-hero-panel strong {
  display: block;
  margin: 32px 0 10px;
  color: #fff;
  font: 900 74px/.85 "Manrope";
  letter-spacing: -4px
}

.qhse-hero-card p,
.project-page-hero-panel p {
  margin: 0;
  color: #d2dce3;
  font-size: 13px;
  line-height: 1.65
}

.qhse-policy-section,
.project-map-section {
  background: #f4f7f8
}

.qhse-policy-grid,
.project-map-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  margin-top: 54px
}

.qhse-policy-copy h2,
.qhse-document-copy h2,
.project-map-copy h2,
.project-list-head h2 {
  margin: 14px 0 24px;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 72px)/1 "Manrope";
  letter-spacing: -3.8px
}

.qhse-policy-copy>p:not(.kicker),
.qhse-document-copy>p:not(.kicker),
.project-map-copy>p:not(.kicker) {
  max-width: 780px;
  color: #60717e;
  font-size: 16px;
  line-height: 1.76
}

.qhse-goal-strip,
.qhse-iso-strip,
.project-page-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border: 1px solid #d8e1e7;
  background: #fff
}

.project-page-metrics {
  grid-template-columns: repeat(4, 1fr)
}

.qhse-goal-strip div,
.qhse-iso-strip a,
.project-page-metrics div {
  min-height: 138px;
  padding: 24px;
  border-right: 1px solid #d8e1e7
}

.qhse-goal-strip div:last-child,
.qhse-iso-strip a:last-child,
.project-page-metrics div:last-child {
  border-right: 0
}

.qhse-goal-strip span,
.qhse-iso-strip span {
  display: block;
  margin-bottom: 30px;
  color: #9aa8b1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px
}

.qhse-goal-strip strong,
.qhse-iso-strip strong,
.project-page-metrics strong {
  display: block;
  color: #071c2c;
  font: 900 clamp(18px, 1.6vw, 27px)/1.08 "Manrope";
  letter-spacing: -.8px
}

.qhse-iso-strip a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease
}

.qhse-iso-strip a:hover {
  background: #f9fbfc;
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(7, 28, 44, .08)
}

.qhse-iso-strip span {
  margin-bottom: 18px;
  color: #332a7a
}

.qhse-iso-strip strong {
  max-width: 240px;
  font-size: clamp(18px, 1.45vw, 24px)
}

.project-page-metrics span {
  display: block;
  margin-top: 12px;
  color: #60717e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45
}

.qhse-policy-visual,
.project-map-card {
  position: relative;
  margin: 0;
  background: #071c2c;
  box-shadow: 0 26px 80px rgba(7, 28, 44, .12);
  overflow: hidden
}

.qhse-policy-visual img,
.project-map-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover
}

.project-map-card img {
  min-height: 520px;
  background: #071c2c;
  object-fit: cover;
  padding: 0
}

.qhse-policy-visual figcaption,
.project-map-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(4, 20, 31, .7);
  border-left: 3px solid var(--accent-light);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5
}

.qhse-readiness-section,
.project-list-section {
  position: relative;
  color: #fff;
  background: #071c2c;
  overflow: hidden
}

.qhse-readiness-section:before,
.project-list-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 14%, rgba(141, 132, 195, .18), transparent 34%), linear-gradient(180deg, #071c2c, #04141f)
}

.qhse-readiness-section>*,
.project-list-section>* {
  position: relative;
  z-index: 1
}

.qhse-readiness-section .section-label,
.project-list-section .section-label {
  color: #aebbc4
}

.qhse-readiness-section .section-label:after,
.project-list-section .section-label:after {
  border-color: rgba(174, 187, 196, .4)
}

.qhse-readiness-head,
.project-list-head {
  max-width: 1000px;
  margin-top: 54px
}

.qhse-readiness-head .light-text,
.project-list-head .light-text {
  color: var(--accent-light)
}

.qhse-readiness-head h2,
.project-list-head h2 {
  color: #fff
}

.qhse-readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px
}

.qhse-readiness-grid article {
  min-height: 340px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18)
}

.qhse-readiness-grid span {
  display: block;
  margin-bottom: 78px;
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px
}

.qhse-readiness-grid h3 {
  margin: 0;
  color: #fff;
  font: 900 clamp(22px, 2vw, 32px)/1.06 "Manrope";
  letter-spacing: -1.2px
}

.qhse-readiness-grid p {
  margin: 18px 0 0;
  color: #c7d3da;
  font-size: 14px;
  line-height: 1.68
}

.qhse-readiness-section {
  color: #071c2c;
  background: #fff
}

.qhse-readiness-section:before {
  background: linear-gradient(180deg, #fff 0%, #f4f7f8 100%), radial-gradient(circle at 15% 16%, rgba(51, 42, 122, .08), transparent 32%)
}

.qhse-readiness-section .section-label {
  color: #6d7e89
}

.qhse-readiness-section .section-label:after {
  border-color: #9ca9b0
}

.qhse-readiness-layout {
  display: grid;
  grid-template-columns: minmax(390px, .72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: stretch;
  margin-top: 54px
}

.qhse-readiness-visual {
  position: relative;
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 28px 80px rgba(7, 28, 44, .13)
}

.qhse-readiness-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04)
}

.qhse-readiness-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 15, 23, .84), rgba(3, 15, 23, .06) 58%)
}

.qhse-readiness-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 22px 24px;
  color: #fff;
  background: rgba(5, 23, 34, .76);
  border-left: 3px solid var(--accent-light);
  backdrop-filter: blur(12px)
}

.qhse-readiness-visual span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.qhse-readiness-visual strong {
  display: block;
  max-width: 520px;
  font: 900 clamp(20px, 1.9vw, 28px)/1.12 "Manrope";
  letter-spacing: -1px
}

.qhse-readiness-content {
  align-self: center
}

.qhse-readiness-head {
  max-width: 760px;
  margin-top: 0
}

.qhse-readiness-head .kicker {
  color: var(--red)
}

.qhse-readiness-head h2 {
  max-width: 760px;
  color: #071c2c;
  font: 900 clamp(38px, 4.6vw, 70px)/1 "Manrope";
  letter-spacing: -3.6px
}

.qhse-readiness-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px
}

.qhse-readiness-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid #d8e1e7;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 55px rgba(7, 28, 44, .06)
}

.qhse-readiness-grid span {
  margin-bottom: 46px;
  color: #332a7a
}

.qhse-readiness-grid h3 {
  color: #071c2c;
  font-size: clamp(20px, 1.8vw, 28px)
}

.qhse-readiness-grid p {
  color: #60717e
}

.qhse-document-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .58fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  margin-top: 54px
}

.qhse-certification-section {
  position: relative;
  background: #f4f7f8;
  overflow: hidden
}

.qhse-certification-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 12%, rgba(51, 42, 122, .09), transparent 32%), linear-gradient(180deg, #fff 0%, #f4f7f8 100%);
  pointer-events: none
}

.qhse-certification-section>* {
  position: relative;
  z-index: 1
}

.qhse-certification-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(430px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  margin-top: 54px
}

.qhse-certification-copy {
  position: sticky;
  top: 110px;
  max-width: 720px
}

.qhse-certification-copy h2 {
  margin: 14px 0 24px;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 72px)/1 "Manrope";
  letter-spacing: -3.8px
}

.qhse-certification-copy>p:not(.kicker) {
  max-width: 650px;
  color: #60717e;
  font-size: 16px;
  line-height: 1.76
}

.qhse-iso-list {
  border-top: 1px solid #cfd9df
}

.qhse-iso-list article {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) max-content;
  gap: clamp(22px, 3vw, 40px);
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #cfd9df
}

.qhse-iso-list article>span {
  color: #332a7a;
  font: 900 13px "Manrope";
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.qhse-iso-list h3 {
  margin: 0;
  color: #071c2c;
  font: 900 clamp(24px, 2.2vw, 34px)/1.05 "Manrope";
  letter-spacing: -1.3px
}

.qhse-iso-list p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #60717e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.68
}

.qhse-iso-list a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #071c2c;
  color: #071c2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s ease, border-color .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1)
}

.qhse-iso-list a:hover {
  color: #332a7a;
  border-color: #332a7a;
  transform: translateX(4px)
}

.qhse-policy-document,
.qhse-gallery-section {
  background: #fff
}

.qhse-document-card {
  margin: 0;
  max-height: 780px;
  padding: 18px;
  background: #f4f7f8;
  border: 1px solid #d8e1e7;
  box-shadow: 0 22px 64px rgba(7, 28, 44, .06);
  overflow: auto
}

.qhse-document-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff
}

.qhse-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 54px
}

.qhse-gallery figure {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 22px 64px rgba(7, 28, 44, .08)
}

.qhse-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04)
}

.qhse-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 17px;
  color: #fff;
  background: rgba(4, 20, 31, .68);
  border-left: 3px solid var(--accent-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

.project-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px
}

.project-category-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
  overflow: hidden
}

.project-category-feature {
  grid-column: 1/-1;
  grid-template-columns: 1fr
}

.project-category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
  background: #0b2232
}

.project-category-card div {
  padding: clamp(28px, 3.2vw, 46px)
}

.project-category-card span {
  display: block;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.project-category-card h3 {
  margin: 16px 0 28px;
  color: #fff;
  font: 900 clamp(26px, 2.7vw, 44px)/1.03 "Manrope";
  letter-spacing: -2px
}

.project-category-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none
}

.project-category-card li {
  position: relative;
  padding-left: 18px;
  color: #cad5dc;
  font-size: 13px;
  line-height: 1.55
}

.project-category-card li:before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent-light)
}

.project-service-list {
  display: grid;
  gap: 18px;
  margin-top: 46px
}

.project-service-section {
  display: block;
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .12);
  overflow: hidden;
  transition: border-color .32s ease, background .32s ease, transform .32s cubic-bezier(.22, 1, .36, 1)
}

.project-service-section:hover {
  border-color: rgba(255, 255, 255, .24);
  background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .045));
  transform: translateY(-2px)
}

.project-service-body {
  display: grid;
  grid-template-columns: minmax(240px, .34fr) minmax(0, .66fr);
  gap: 22px clamp(28px, 4vw, 56px);
  align-content: start;
  padding: clamp(30px, 3.4vw, 46px)
}

.project-service-index {
  grid-column: 1;
  display: block;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.project-service-body h3 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font: 900 clamp(28px, 2.7vw, 44px)/1.03 "Manrope";
  letter-spacing: -2px;
  text-wrap: balance
}

.project-service-body>p {
  grid-column: 1;
  max-width: 430px;
  margin: 0;
  color: #bac8d1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.72
}

.project-service-body ul {
  grid-column: 2;
  grid-row: 1/span 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0 0 0 clamp(24px, 3vw, 40px);
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, .13);
  list-style: none
}

.project-service-body li {
  position: relative;
  padding: 12px 0 12px 22px;
  color: #d5e0e7;
  border-bottom: 1px solid rgba(255, 255, 255, .085);
  font-size: 13px;
  line-height: 1.58
}

.project-service-body li:before {
  content: "";
  position: absolute;
  top: 1.36em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent-light);
  background: transparent
}

.project-service-body .project-list-subtitle {
  grid-column: 1/-1;
  margin: 18px 0 4px;
  padding: 14px 0 10px;
  color: var(--accent-light);
  border-bottom: 1px solid rgba(141, 132, 195, .26);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase
}

.project-service-body .project-list-subtitle:first-child {
  margin-top: 0
}

.project-service-body .project-list-subtitle:before {
  display: none
}

.project-service-body>a {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  transition: border-color .25s ease, transform .32s cubic-bezier(.22, 1, .36, 1)
}

.project-service-body>a:hover {
  border-color: #fff;
  transform: translateX(4px)
}

/* Project list clickable trigger */
.project-list-trigger {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #cad5dc;
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .25s ease, text-decoration-color .25s ease
}

.project-list-trigger:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, .5)
}

.trigger-arrow {
  display: none
}

/* Photo lightbox */
.pdm-lightbox {
  position: fixed;
  z-index: 6000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.pdm-lightbox[hidden] {
  display: none
}

.pdm-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .94);
  cursor: pointer
}

.pdm-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: lb-in .3s cubic-bezier(.22, 1, .36, 1)
}

@keyframes lb-in {
  from {
    opacity: 0;
    transform: scale(.95)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.pdm-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease
}

.pdm-lightbox-close:hover {
  background: rgba(255, 255, 255, .2)
}

.pdm-lightbox-prev,
.pdm-lightbox-next {
  position: fixed;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease
}

.pdm-lightbox-prev:hover,
.pdm-lightbox-next:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .45)
}

.pdm-lightbox-prev {
  left: 18px
}

.pdm-lightbox-next {
  right: 18px
}

/* Karimun Besar Project Detail Modal */
.project-detail-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px
}

.project-detail-modal[hidden] {
  display: none
}

.pdm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 22, .88);
  backdrop-filter: blur(10px);
  cursor: pointer
}

.pdm-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #071c2c;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
  animation: pdm-in .45s cubic-bezier(.22, 1, .36, 1)
}

@keyframes pdm-in {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.pdm-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  z-index: 2
}

.pdm-close:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .5)
}

.pdm-header {
  padding: 48px 48px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.pdm-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: rgba(233, 78, 72, .15);
  border: 1px solid rgba(233, 78, 72, .3);
  color: #ef686b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.pdm-header h2 {
  margin: 0 0 10px;
  color: #fff;
  font: 800 clamp(28px, 3.8vw, 46px)/1.05 "Manrope";
  letter-spacing: -2px
}

.pdm-meta {
  margin: 0;
  color: #7a9aad;
  font-size: 12px;
  letter-spacing: .5px
}

.pdm-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.pdm-scope {
  padding: 40px 48px;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.pdm-gallery {
  padding: 40px 48px
}

.pdm-scope h3,
.pdm-gallery h3 {
  margin: 0 0 24px;
  color: #fff;
  font: 700 14px/1 "Manrope";
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .5
}

.pdm-scope-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px
}

.pdm-scope-list li {
  padding-left: 14px;
  border-left: 2px solid var(--accent-light)
}

.pdm-scope-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px
}

.pdm-scope-list p {
  margin: 0;
  color: #8aabbd;
  font-size: 12px;
  line-height: 1.65
}

.pdm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.pdm-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  cursor: zoom-in;
  filter: saturate(.9);
  transition: filter .3s ease, transform .3s ease
}

.pdm-grid img:hover {
  filter: saturate(1.1);
  transform: scale(1.02)
}

@media(max-width:760px) {
  .pdm-body {
    grid-template-columns: 1fr
  }

  .pdm-scope {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
  }

  .pdm-header,
  .pdm-scope,
  .pdm-gallery {
    padding: 28px 24px
  }

  .pdm-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* Tighten Services page spacing seen under fixed navigation */
.services-hero {
  min-height: 78svh
}

.services-hero h1 {
  font-size: clamp(42px, 5.2vw, 84px);
  letter-spacing: -4.4px
}

.services-directory {
  padding-top: 88px
}

.services-directory-head {
  margin-top: 42px
}

.services-directory-head h2 {
  max-width: 1220px;
  font-size: clamp(34px, 4.1vw, 62px);
  line-height: 1.03;
  letter-spacing: -3.2px
}

@media(max-width:1100px) {

  .qhse-page-hero,
  .project-page-hero,
  .qhse-policy-grid,
  .project-map-grid,
  .qhse-document-layout,
  .qhse-certification-layout,
  .qhse-readiness-layout {
    grid-template-columns: 1fr
  }

  .qhse-certification-copy {
    position: static
  }

  .qhse-readiness-visual {
    min-height: 420px
  }

  .qhse-hero-card,
  .project-page-hero-panel {
    max-width: 420px
  }

  .qhse-readiness-grid {
    grid-template-columns: 1fr 1fr
  }

  .project-category-list {
    grid-template-columns: 1fr
  }

  .project-category-card,
  .project-category-feature {
    grid-column: auto;
    grid-template-columns: 1fr
  }

  .project-page-metrics {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:1100px) {
  .project-service-body {
    grid-template-columns: 1fr
  }

  .project-service-index,
  .project-service-body h3,
  .project-service-body>p,
  .project-service-body ul,
  .project-service-body>a {
    grid-column: 1
  }

  .project-service-body ul {
    grid-row: auto;
    grid-template-columns: 1fr;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .13)
  }
}

@media(max-width:700px) {

  .qhse-page-hero,
  .project-page-hero {
    min-height: 0;
    padding-top: 118px
  }

  .qhse-page-hero h1,
  .project-page-hero h1,
  .services-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
    letter-spacing: -2.7px
  }

  .qhse-hero-card,
  .project-page-hero-panel {
    padding: 24px
  }

  .project-page-hero-panel strong {
    font-size: 58px
  }

  .qhse-policy-grid,
  .project-map-grid,
  .qhse-document-layout,
  .qhse-certification-layout,
  .qhse-readiness-layout,
  .qhse-readiness-head,
  .project-list-head,
  .project-category-list,
  .qhse-gallery {
    margin-top: 34px
  }

  .qhse-policy-copy h2,
  .qhse-document-copy h2,
  .qhse-certification-copy h2,
  .project-map-copy h2,
  .project-list-head h2,
  .qhse-readiness-head h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .qhse-goal-strip,
  .qhse-iso-strip,
  .project-page-metrics,
  .qhse-readiness-grid,
  .qhse-gallery {
    grid-template-columns: 1fr
  }

  .qhse-goal-strip div,
  .qhse-iso-strip a,
  .project-page-metrics div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #d8e1e7
  }

  .qhse-goal-strip div:last-child,
  .qhse-iso-strip a:last-child,
  .project-page-metrics div:last-child {
    border-bottom: 0
  }

  .qhse-policy-visual img {
    min-height: 330px
  }

  .qhse-readiness-visual {
    min-height: 320px
  }

  .qhse-readiness-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 17px 18px
  }

  .qhse-readiness-grid article {
    min-height: 0
  }

  .qhse-readiness-grid span {
    margin-bottom: 38px
  }

  .qhse-iso-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0
  }

  .qhse-iso-list a {
    width: max-content
  }

  .qhse-gallery figure {
    min-height: 300px
  }

  .project-category-card div {
    padding: 26px
  }

  .services-directory {
    padding-top: 74px
  }

  .services-directory-head h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }
}

@media(max-width:700px) {
  .project-service-list {
    gap: 18px
  }

  .project-service-body {
    padding: 24px;
    gap: 18px
  }

  .project-service-body h3 {
    font-size: clamp(26px, 8vw, 38px);
    letter-spacing: -1.6px
  }

  .project-service-body ul {
    grid-template-columns: 1fr;
    padding-top: 18px
  }

  .project-service-body li {
    padding-top: 11px;
    padding-bottom: 11px
  }

  .project-service-body>a {
    margin-top: 2px
  }
}

/* Contact and News pages */
@media(min-width:901px) {
  .nav-links {
    gap: clamp(22px, 2.6vw, 40px)
  }
}

.nav-links a.active:after,
.nav-links a.active:hover:after {
  transform: scaleX(1);
  transform-origin: left
}

.contact-page,
.news-page {
  background: #f4f7f8;
  color: #071c2c
}

.contact-page-hero,
.news-page-hero {
  position: relative;
  min-height: 88svh;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(72px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  color: #fff;
  background: #061925;
  overflow: hidden
}

.contact-page-hero:before,
.news-page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.015)
}

.contact-page-hero:before {
  background: linear-gradient(90deg, rgba(3, 15, 23, .95), rgba(3, 15, 23, .76) 45%, rgba(3, 15, 23, .34)), linear-gradient(0deg, rgba(3, 15, 23, .9), rgba(3, 15, 23, .08) 58%, rgba(3, 15, 23, .68)), url("assets/field-operations/source/lagi ngomongin kerjaan.jpeg") center/cover no-repeat
}

.news-page-hero:before {
  background: linear-gradient(90deg, rgba(3, 15, 23, .95), rgba(3, 15, 23, .74) 45%, rgba(3, 15, 23, .3)), linear-gradient(0deg, rgba(3, 15, 23, .9), rgba(3, 15, 23, .08) 58%, rgba(3, 15, 23, .68)), url("assets/optimized/images/assets-ss-barakuda-dji-0230-5e370981-1400.webp") center/cover no-repeat
}

.contact-page-hero:after,
.news-page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(141, 132, 195, .2), transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 44%);
  pointer-events: none
}

.contact-page-hero>*,
.news-page-hero>* {
  position: relative;
  z-index: 1
}

.contact-page-hero-copy,
.news-page-hero-copy {
  max-width: 1060px
}

.contact-page-hero .kicker,
.news-page-hero .kicker {
  color: var(--accent-light)
}

.contact-page-hero h1,
.news-page-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font: 900 clamp(48px, 6.2vw, 100px)/.96 "Manrope";
  letter-spacing: -5.2px
}

.contact-page-hero-copy>p:not(.kicker),
.news-page-hero-copy>p:not(.kicker) {
  max-width: 760px;
  margin: 28px 0 0;
  color: #c8d3da;
  font-size: 17px;
  line-height: 1.72
}

.contact-hero-panel,
.news-hero-index {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 20, 31, .62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px)
}

.contact-hero-panel span,
.news-hero-index span {
  display: block;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.contact-hero-panel strong,
.news-hero-index strong {
  display: block;
  margin: 32px 0 12px;
  color: #fff;
  font: 900 clamp(32px, 3.2vw, 54px)/.96 "Manrope";
  letter-spacing: -2px
}

.news-hero-index strong {
  font-size: 74px;
  letter-spacing: -4px
}

.contact-hero-panel p,
.news-hero-index p {
  margin: 0;
  color: #d2dce3;
  font-size: 13px;
  line-height: 1.65
}

.contact-desk {
  background: #f4f7f8
}

.contact-desk-grid {
  display: grid;
  grid-template-columns: minmax(330px, .48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  margin-top: 54px
}

.contact-channel-stack {
  display: grid;
  gap: 16px
}

.contact-channel-card {
  padding: 26px;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 20px 58px rgba(7, 28, 44, .045)
}

.contact-channel-primary {
  color: #fff;
  background: #071c2c;
  border-color: #071c2c;
  box-shadow: 0 26px 80px rgba(7, 28, 44, .16)
}

.contact-channel-card span {
  display: block;
  margin-bottom: 34px;
  color: #8c9aa4;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase
}

.contact-channel-primary span {
  color: var(--accent-light)
}

.contact-channel-card h2 {
  margin: 0;
  color: inherit;
  font: 900 clamp(26px, 2.4vw, 38px)/1 "Manrope";
  letter-spacing: -1.5px
}

.contact-channel-card p {
  margin: 0;
  color: #60717e;
  font-size: 14px;
  line-height: 1.7
}

.contact-channel-primary p {
  margin-top: 18px;
  color: #c8d4db
}

.contact-channel-card a {
  display: inline-flex;
  gap: 18px;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .56);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.contact-page-form {
  background: #fff;
  box-shadow: 0 24px 74px rgba(7, 28, 44, .065)
}

.contact-office-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .34fr);
  gap: 0;
  margin: clamp(34px, 5vw, 58px) 0 0;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 22px 68px rgba(7, 28, 44, .06);
  overflow: hidden
}

.contact-office-map iframe {
  display: block;
  width: 100%;
  min-height: clamp(360px, 44vw, 560px);
  border: 0;
  filter: saturate(.88) contrast(1.02)
}

.contact-office-map figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
  background: #071c2c;
  color: #fff
}

.contact-office-map figcaption>span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.contact-office-map strong {
  display: block;
  color: #fff;
  font: 900 clamp(28px, 3vw, 46px)/1 "Manrope";
  letter-spacing: -2px
}

.contact-office-map a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .56);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.contact-brief {
  background: #fff
}

.contact-brief-head {
  max-width: 980px;
  margin-top: 52px
}

.contact-brief-head h2,
.contact-route h2,
.news-list-head h2 {
  margin: 14px 0 0;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 72px)/1 "Manrope";
  letter-spacing: -3.8px
}

.contact-brief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border: 1px solid #d8e1e7;
  background: #fff
}

.contact-brief-grid article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid #d8e1e7
}

.contact-brief-grid article:last-child {
  border-right: 0
}

.contact-brief-grid span,
.contact-route-steps span {
  display: block;
  margin-bottom: 72px;
  color: #8f9ea8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px
}

.contact-brief-grid strong,
.contact-route-steps strong {
  display: block;
  color: #071c2c;
  font: 900 clamp(21px, 1.8vw, 29px)/1.08 "Manrope";
  letter-spacing: -1px
}

.contact-brief-grid p,
.contact-route-steps p {
  margin: 16px 0 0;
  color: #60717e;
  font-size: 13px;
  line-height: 1.65
}

.contact-route {
  position: relative;
  color: #fff;
  background: #071c2c;
  overflow: hidden
}

.contact-route:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 23, .94), rgba(3, 15, 23, .72)), url("assets/optimized/images/assets-field-operations-source-ini-dia-berkupul-tengah-malem-bahas-kerjaan-diatas-kapal-f9e6e346-1400.webp") center/cover no-repeat;
  filter: saturate(.85) contrast(1.05)
}

.contact-route-inner {
  position: relative;
  z-index: 1;
  max-width: 1250px
}

.contact-route h2 {
  max-width: 980px;
  color: #fff
}

.contact-route-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px
}

.contact-route-steps article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16)
}

.contact-route-steps span {
  margin-bottom: 58px;
  color: var(--accent-light)
}

.contact-route-steps strong {
  color: #fff
}

.contact-route-steps p {
  color: #c8d4db
}

.news-feature-section,
.news-list-section,
.news-article-section {
  background: #f4f7f8
}

.news-feature-card {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .62fr);
  min-height: 410px;
  margin-top: 38px;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 22px 62px rgba(7, 28, 44, .065);
  overflow: hidden
}

.news-feature-card figure {
  margin: 0;
  background: #071c2c
}

.news-feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04)
}

.news-csr-card figure {
  background: #e9eef2
}

.news-csr-card img {
  object-fit: cover;
  object-position: center 20%;
  background: #e9eef2
}

.news-feature-card img.news-feature-image-contain {
  object-fit: contain;
  padding: clamp(22px, 3.6vw, 46px);
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .14), transparent 34%), linear-gradient(135deg, #061925, #102d43 52%, #071c2c);
  filter: none
}

.news-feature-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px)
}

.news-feature-card div>span,
.news-update-card div>span {
  display: block;
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.news-feature-card h2 {
  margin: 14px 0 18px;
  color: #071c2c;
  font: 900 clamp(30px, 3.1vw, 48px)/1.02 "Manrope";
  letter-spacing: -2.4px
}

.news-feature-card p {
  margin: 0;
  color: #60717e;
  font-size: 14px;
  line-height: 1.72
}

.news-feature-card a,
.news-update-card a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid #071c2c;
  color: #071c2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.newsroom-head {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, .45fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-top: 48px
}

.newsroom-head h2 {
  margin: 0;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 72px)/.98 "Manrope";
  letter-spacing: -3.6px
}

.news-empty-state {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: clamp(30px, 4vw, 52px);
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 18px 52px rgba(7, 28, 44, .045)
}

.news-empty-state span {
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.news-empty-state p {
  max-width: 620px;
  margin: 0;
  color: #60717e;
  font-size: 15px;
  line-height: 1.7
}

.newsroom-story {
  display: grid;
  grid-template-columns: minmax(360px, .58fr) minmax(0, .42fr);
  margin-top: 34px;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 20px 58px rgba(7, 28, 44, .06);
  overflow: hidden
}

.newsroom-story-media {
  display: block;
  min-height: 390px;
  background: #e9eef2;
  overflow: hidden
}

.newsroom-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 17%;
  filter: saturate(.96) contrast(1.03);
  transition: transform .8s cubic-bezier(.22, 1, .36, 1)
}

.newsroom-story:hover .newsroom-story-media img {
  transform: scale(1.025)
}

.newsroom-story-copy {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px)
}

.newsroom-story-meta,
.newsroom-story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #73838e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase
}

.newsroom-story-meta span {
  color: #332a7a
}

.newsroom-story-copy h2 {
  margin: 24px 0 16px;
  color: #071c2c;
  font: 900 clamp(27px, 2.8vw, 44px)/1.02 "Manrope";
  letter-spacing: -2.2px
}

.newsroom-story-copy p {
  max-width: 600px;
  margin: 0;
  color: #60717e;
  font-size: 13.5px;
  line-height: 1.68
}

.newsroom-story-footer {
  align-items: flex-end;
  margin-top: 28px
}

.newsroom-story-footer>a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding-bottom: 8px;
  border-bottom: 1px solid #071c2c;
  color: #071c2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.news-list-head {
  max-width: 1120px;
  margin-top: 52px
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

.news-update-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 20px 58px rgba(7, 28, 44, .052);
  overflow: hidden
}

.news-update-card img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #d8e1e7;
  filter: saturate(.92) contrast(1.03)
}

.news-update-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px
}

.news-update-card h3 {
  margin: 16px 0 18px;
  color: #071c2c;
  font: 900 clamp(22px, 1.9vw, 31px)/1.08 "Manrope";
  letter-spacing: -1.2px
}

.news-update-card p {
  margin: 0;
  color: #60717e;
  font-size: 14px;
  line-height: 1.68
}

.news-update-card a {
  margin-top: auto;
  padding-top: 26px
}

.news-detail-page {
  background: #f4f7f8;
  color: #071c2c
}

.news-detail-page .news-detail-hero:before {
  background: url("assets/optimized/images/assets-news-csr-idul-adha-2026-csr-report-page-4-20d4487d-900.webp") center 28%/cover no-repeat
}

.news-detail-page .news-detail-hero:after {
  background: linear-gradient(90deg, rgba(3, 15, 23, .9), rgba(3, 15, 23, .62) 48%, rgba(3, 15, 23, .28)), linear-gradient(0deg, rgba(3, 15, 23, .76), rgba(3, 15, 23, .18) 58%, rgba(3, 15, 23, .58))
}

.news-article {
  max-width: 1320px;
  margin-top: 46px
}

.news-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #71818d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase
}

.news-breadcrumb a {
  color: #332a7a;
  border-bottom: 1px solid rgba(51, 42, 122, .42)
}

.news-article-header {
  max-width: 1040px
}

.news-article-category {
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.news-article-header h2 {
  margin: 18px 0 24px;
  color: #071c2c;
  font: 900 clamp(42px, 6.4vw, 104px)/.95 "Manrope";
  letter-spacing: -5.5px;
  text-wrap: balance
}

.news-article-header>p {
  max-width: 860px;
  margin: 0;
  color: #526471;
  font-size: 20px;
  line-height: 1.65
}

.news-article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #d8e1e7;
  color: #71818d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase
}

.news-article-lead {
  margin: 54px 0 0;
  background: #e9eef2;
  overflow: hidden
}

.news-article-lead img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.96) contrast(1.02)
}

.news-article-lead figcaption {
  padding: 18px 22px;
  color: #6b7a85;
  background: #fff;
  border: 1px solid #d8e1e7;
  border-top: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(250px, .28fr) minmax(0, .72fr);
  gap: clamp(34px, 5vw, 82px);
  margin-top: 54px;
  align-items: start
}

.news-article-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 0;
  background: #071c2c;
  color: #fff;
  box-shadow: 0 22px 62px rgba(7, 28, 44, .12)
}

.news-article-sidebar div {
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.news-article-sidebar span {
  display: block;
  color: #c7c2ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.news-article-sidebar strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font: 800 16px/1.35 "Manrope"
}

.news-article-sidebar a,
.news-article-actions a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  margin: 26px;
  color: inherit;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.news-article-body {
  max-width: 860px
}

.news-article-body p {
  margin: 0 0 24px;
  color: #3f5260;
  font-size: 18px;
  line-height: 1.86
}

.news-article-body p.lead {
  color: #071c2c;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 700
}

.news-article-body blockquote {
  margin: 42px 0;
  padding: 34px 0 34px 34px;
  border-left: 4px solid #332a7a;
  color: #071c2c
}

.news-article-body blockquote p {
  margin: 0;
  color: #071c2c;
  font: 900 clamp(26px, 2.8vw, 42px)/1.16 "Manrope";
  letter-spacing: -1.6px
}

.news-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px
}

.news-article-actions a {
  margin: 0;
  color: #071c2c
}

@media(max-width:1100px) {

  .contact-page-hero,
  .news-page-hero,
  .contact-desk-grid,
  .news-feature-card {
    grid-template-columns: 1fr
  }

  .contact-hero-panel,
  .news-hero-index {
    max-width: 430px
  }

  .contact-brief-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-brief-grid article:nth-child(2n) {
    border-right: 0
  }

  .contact-brief-grid article:nth-child(-n+2) {
    border-bottom: 1px solid #d8e1e7
  }

  .contact-route-steps,
  .news-page-grid {
    grid-template-columns: 1fr 1fr
  }

  .news-feature-card img {
    height: 340px;
    min-height: 0
  }
}

@media(max-width:1100px) {
  .contact-office-map {
    grid-template-columns: 1fr
  }

  .contact-office-map iframe {
    min-height: 420px
  }

  .contact-office-map figcaption {
    padding: 28px
  }
}

@media(max-width:1100px) {

  .newsroom-head,
  .newsroom-story,
  .news-article-layout {
    grid-template-columns: 1fr
  }

  .newsroom-story-media,
  .newsroom-story-copy {
    min-height: 0
  }

  .newsroom-story-media {
    height: 360px
  }

  .news-article-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr)
  }

  .news-article-sidebar a {
    grid-column: 1/-1
  }
}

@media(max-width:700px) {

  .contact-page-hero,
  .news-page-hero {
    min-height: 0;
    padding-top: 118px
  }

  .contact-page-hero h1,
  .news-page-hero h1,
  .contact-brief-head h2,
  .contact-route h2,
  .news-list-head h2,
  .news-feature-card h2,
  .newsroom-head h2,
  .newsroom-story-copy h2,
  .news-article-header h2 {
    font-size: clamp(36px, 10.8vw, 54px);
    letter-spacing: -2.5px
  }

  .contact-hero-panel,
  .news-hero-index {
    padding: 24px
  }

  .contact-desk-grid,
  .contact-brief-head,
  .news-list-head,
  .news-feature-card,
  .news-page-grid {
    margin-top: 34px
  }

  .contact-brief-grid,
  .contact-route-steps,
  .news-page-grid,
  .news-article-sidebar {
    grid-template-columns: 1fr
  }

  .contact-brief-grid article,
  .contact-brief-grid article:nth-child(2n),
  .contact-brief-grid article:nth-child(-n+2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #d8e1e7
  }

  .contact-brief-grid article:last-child {
    border-bottom: 0
  }

  .contact-brief-grid span,
  .contact-route-steps span {
    margin-bottom: 34px
  }

  .contact-route-steps article {
    min-height: 0
  }

  .news-feature-card {
    min-height: 0
  }

  .news-feature-card img {
    height: 300px
  }

  .news-feature-card div,
  .news-update-card div {
    padding: 25px
  }

  .news-update-card {
    min-height: 0
  }

  .news-update-card img {
    height: 220px
  }

  .newsroom-story-media {
    height: 260px
  }

  .newsroom-story-copy {
    padding: 22px
  }

  .newsroom-story-copy h2 {
    font-size: clamp(26px, 8vw, 38px);
    letter-spacing: -1.8px
  }

  .newsroom-story-meta,
  .newsroom-story-footer {
    align-items: flex-start;
    flex-direction: column
  }

  .news-article-header>p {
    font-size: 17px
  }

  .news-article-byline {
    gap: 10px
  }

  .news-article-lead {
    margin-top: 34px
  }

  .news-article-layout {
    margin-top: 34px
  }

  .news-article-body p {
    font-size: 16px
  }

  .news-article-body p.lead {
    font-size: 18px
  }

  .news-article-body blockquote {
    padding-left: 22px
  }

  .news-article-sidebar div {
    padding: 22px
  }

  .news-article-sidebar a {
    margin: 22px
  }
}

/* Unified editorial heroes for secondary pages */
.board-hero,
.services-hero,
.vessel-hero,
.qhse-page-hero,
.project-page-hero,
.contact-page-hero,
.news-page-hero {
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(76px, 8vw, 112px);
  color: #fff;
  isolation: isolate;
  z-index: 0;
}

.board-hero:before,
.services-hero:before,
.vessel-hero:before,
.qhse-page-hero:before,
.project-page-hero:before,
.contact-page-hero:before,
.news-page-hero:before {
  inset: -2%;
  z-index: 0;
  transform: scale(1.035);
  filter: saturate(.96) contrast(1.05) brightness(1.03);
  animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.board-hero:after,
.services-hero:after,
.vessel-hero:after,
.qhse-page-hero:after,
.project-page-hero:after,
.contact-page-hero:after,
.news-page-hero:after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 15, 23, .82) 0%, rgba(3, 15, 23, .58) 42%, rgba(3, 15, 23, .16) 76%, rgba(3, 15, 23, .3) 100%),
    linear-gradient(0deg, rgba(3, 15, 23, .74) 0%, rgba(3, 15, 23, .08) 54%, rgba(3, 15, 23, .42) 100%),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .14), transparent 28%);
  pointer-events: none;
}

.board-hero:before {
  background: url("assets/field-operations/source/lagi berdiri di kapal.jpeg") center/cover no-repeat
}

.services-hero:before {
  background: url("assets/optimized/images/assets-ss-barakuda-dji-0219-b4bc2fea-1400.webp") center/cover no-repeat
}

.vessel-hero:before {
  background: url("assets/vessels/ag-geodrill-sunset.jpg") center/cover no-repeat
}

.qhse-page-hero:before {
  background: url("assets/qhse/hse-hero.jpg") center/cover no-repeat
}

.project-page-hero:before {
  background: url("assets/optimized/images/assets-vessels-source-ss-barakuda-marine-c04a6b27-1400.webp") center/cover no-repeat
}

.contact-page-hero:before {
  background: url("assets/field-operations/source/lagi ngomongin kerjaan.jpeg") center/cover no-repeat
}

.news-page-hero:before {
  background: url("assets/optimized/images/assets-ss-barakuda-dji-0230-5e370981-1400.webp") center/cover no-repeat
}

.board-hero:after,
.services-hero:after,
.vessel-hero:after,
.qhse-page-hero:after,
.project-page-hero:after,
.contact-page-hero:after,
.news-page-hero:after {
  animation: heroLightSweep 11s ease-in-out infinite alternate;
}

.board-hero-copy,
.services-hero-copy,
.vessel-hero-copy,
.qhse-page-hero-copy,
.project-page-hero-copy,
.contact-page-hero-copy,
.news-page-hero-copy {
  max-width: min(1160px, 78vw);
  position: relative;
  z-index: 2;
}

.board-hero .kicker,
.services-hero .kicker,
.vessel-hero .kicker,
.qhse-page-hero .kicker,
.project-page-hero .kicker,
.contact-page-hero .kicker,
.news-page-hero .kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  color: #c7c2ff;
}

.board-hero .kicker:before,
.services-hero .kicker:before,
.vessel-hero .kicker:before,
.qhse-page-hero .kicker:before,
.project-page-hero .kicker:before,
.contact-page-hero .kicker:before,
.news-page-hero .kicker:before {
  content: "";
  width: 52px;
  height: 2px;
  background: #8d84c3;
}

.board-hero h1,
.services-hero h1,
.vessel-hero h1,
.qhse-page-hero h1,
.project-page-hero h1,
.contact-page-hero h1,
.news-page-hero h1 {
  max-width: 1180px;
  color: #fff;
  font: 900 clamp(46px, 6vw, 96px)/.97 "Manrope";
  letter-spacing: -5px;
  text-wrap: balance;
}

.board-hero-copy>p:last-child,
.services-hero-copy>p:not(.kicker),
.vessel-hero-copy>p:not(.kicker),
.qhse-page-hero-copy>p:not(.kicker),
.project-page-hero-copy>p:not(.kicker),
.contact-page-hero-copy>p:not(.kicker),
.news-page-hero-copy>p:not(.kicker) {
  max-width: 790px;
  margin: 30px 0 0;
  color: #d8e2e8;
  font-size: 18px;
  line-height: 1.72;
}

.board-hero-copy:after,
.services-hero-copy:after,
.vessel-hero-copy:after,
.qhse-page-hero-copy:after,
.project-page-hero-copy:after,
.contact-page-hero-copy:after,
.news-page-hero-copy:after {
  content: "";
  display: block;
  width: min(360px, 42vw);
  height: 1px;
  margin-top: 34px;
  background: linear-gradient(90deg, #8d84c3, rgba(255, 255, 255, .56), rgba(255, 255, 255, 0));
  animation: heroRuleBreath 4.8s ease-in-out infinite alternate;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0)
  }

  to {
    transform: scale(1.075) translate3d(-1.2%, .8%, 0)
  }
}

@keyframes heroLightSweep {
  from {
    opacity: .94;
    background-position: 0 0, 0 0, 70% 18%
  }

  to {
    opacity: 1;
    background-position: 0 0, 0 0, 76% 22%
  }
}

@keyframes heroRuleBreath {
  from {
    opacity: .64;
    transform: scaleX(.82);
    transform-origin: left
  }

  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left
  }
}

@media(max-width:900px) {

  .board-hero,
  .services-hero,
  .vessel-hero,
  .qhse-page-hero,
  .project-page-hero,
  .contact-page-hero,
  .news-page-hero {
    min-height: 76svh;
  }

  .board-hero-copy,
  .services-hero-copy,
  .vessel-hero-copy,
  .qhse-page-hero-copy,
  .project-page-hero-copy,
  .contact-page-hero-copy,
  .news-page-hero-copy {
    max-width: 100%;
  }
}

@media(max-width:700px) {

  .board-hero,
  .services-hero,
  .vessel-hero,
  .qhse-page-hero,
  .project-page-hero,
  .contact-page-hero,
  .news-page-hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .board-hero:after,
  .services-hero:after,
  .vessel-hero:after,
  .qhse-page-hero:after,
  .project-page-hero:after,
  .contact-page-hero:after,
  .news-page-hero:after {
    background:
      linear-gradient(90deg, rgba(3, 15, 23, .88), rgba(3, 15, 23, .58)),
      linear-gradient(0deg, rgba(3, 15, 23, .78), rgba(3, 15, 23, .16) 55%, rgba(3, 15, 23, .5));
  }

  .board-hero h1,
  .services-hero h1,
  .vessel-hero h1,
  .qhse-page-hero h1,
  .project-page-hero h1,
  .contact-page-hero h1,
  .news-page-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
    letter-spacing: -2.7px;
  }

  .board-hero-copy>p:last-child,
  .services-hero-copy>p:not(.kicker),
  .vessel-hero-copy>p:not(.kicker),
  .qhse-page-hero-copy>p:not(.kicker),
  .project-page-hero-copy>p:not(.kicker),
  .contact-page-hero-copy>p:not(.kicker),
  .news-page-hero-copy>p:not(.kicker) {
    font-size: 15.5px;
  }
}

@media(prefers-reduced-motion:reduce) {

  .board-hero:before,
  .services-hero:before,
  .vessel-hero:before,
  .qhse-page-hero:before,
  .project-page-hero:before,
  .contact-page-hero:before,
  .news-page-hero:before,
  .board-hero:after,
  .services-hero:after,
  .vessel-hero:after,
  .qhse-page-hero:after,
  .project-page-hero:after,
  .contact-page-hero:after,
  .news-page-hero:after,
  .board-hero-copy:after,
  .services-hero-copy:after,
  .vessel-hero-copy:after,
  .qhse-page-hero-copy:after,
  .project-page-hero-copy:after,
  .contact-page-hero-copy:after,
  .news-page-hero-copy:after {
    animation: none;
  }
}

/* Landing card deep links */
[id] {
  scroll-margin-top: 110px
}

a.service-card,
a.project-card,
a.news-card {
  display: block;
  color: inherit;
  text-decoration: none
}

.capability-visual .card-fill-link {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: block
}

.capability-visual:focus-within {
  outline: 3px solid rgba(141, 132, 195, .72);
  outline-offset: 6px
}

.capability-visual .card-fill-link:focus-visible {
  outline: 0
}

.project-detail-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  padding-bottom: 5px;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase
}

.project-card:hover .project-detail-label,
.project-card:focus-visible .project-detail-label {
  border-color: #fff
}

.project-card:not(.project-featured) .project-detail-label {
  margin-left: auto
}

.service-detail-section:target,
.vessel-detail-card:target,
.project-category-card:target,
.project-service-section:target,
.news-feature-card:target,
.news-update-card:target,
.newsroom-story:target {
  outline: 3px solid rgba(141, 132, 195, .78);
  outline-offset: 8px
}

/* Equipment page */
.equipment-hero {
  position: relative;
  min-height: 78svh;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(70px, 8vw, 104px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #061925;
  overflow: hidden
}

.equipment-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 16, 25, .95) 0%, rgba(5, 24, 38, .86) 42%, rgba(5, 24, 38, .34) 76%, rgba(5, 24, 38, .7) 100%), linear-gradient(0deg, rgba(3, 14, 22, .78), rgba(3, 14, 22, .08) 48%, rgba(3, 14, 22, .82)), url("assets/equipment/drilling/offshore-drilling-operation.jpeg") center/cover no-repeat;
  filter: saturate(.9) contrast(1.04);
  animation: heroImageDrift 16s ease-in-out infinite alternate
}

.equipment-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 24%, rgba(141, 132, 195, .22), transparent 31%), linear-gradient(115deg, rgba(6, 25, 37, .24), transparent 58%);
  animation: heroLightSweep 11s ease-in-out infinite alternate
}

.equipment-hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(1160px, 78vw)
}

.equipment-hero .kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  color: #c7c2ff
}

.equipment-hero .kicker:before {
  content: "";
  width: 52px;
  height: 2px;
  background: #8d84c3
}

.equipment-hero h1 {
  max-width: 1180px;
  margin: 0;
  color: #fff;
  font: 900 clamp(46px, 6vw, 96px)/.97 "Manrope";
  letter-spacing: -5px;
  text-wrap: balance
}

.equipment-hero-copy>p:not(.kicker) {
  max-width: 790px;
  margin: 30px 0 0;
  color: #d8e2e8;
  font-size: 18px;
  line-height: 1.72
}

.equipment-hero-copy:after {
  content: "";
  display: block;
  width: min(360px, 42vw);
  height: 1px;
  margin-top: 34px;
  background: linear-gradient(90deg, #8d84c3, rgba(255, 255, 255, .56), rgba(255, 255, 255, 0));
  animation: heroRuleBreath 4.8s ease-in-out infinite alternate
}

.equipment-geotechnical-page .equipment-hero:before {
  background: linear-gradient(90deg, rgba(3, 16, 25, .96) 0%, rgba(5, 24, 38, .84) 42%, rgba(5, 24, 38, .28) 74%, rgba(5, 24, 38, .72) 100%), linear-gradient(0deg, rgba(3, 14, 22, .8), rgba(3, 14, 22, .06) 48%, rgba(3, 14, 22, .76)), url("assets/company-profile/services/offshore-drilling.jpg") center 48%/cover no-repeat
}

.equipment-geophysical-page .equipment-hero:before {
  background: linear-gradient(90deg, rgba(3, 16, 25, .95) 0%, rgba(5, 24, 38, .82) 42%, rgba(5, 24, 38, .24) 74%, rgba(5, 24, 38, .72) 100%), linear-gradient(0deg, rgba(3, 14, 22, .78), rgba(3, 14, 22, .08) 48%, rgba(3, 14, 22, .82)), url("assets/equipment/geophysical-equipment.webp") center/cover no-repeat
}

@media(max-width:700px) {
  .equipment-hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 72px
  }

  .equipment-hero:after {
    background: linear-gradient(90deg, rgba(3, 15, 23, .88), rgba(3, 15, 23, .58)), linear-gradient(0deg, rgba(3, 15, 23, .78), rgba(3, 15, 23, .16) 55%, rgba(3, 15, 23, .5))
  }

  .equipment-hero-copy {
    max-width: 100%
  }

  .equipment-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
    letter-spacing: -2.7px
  }

  .equipment-hero-copy>p:not(.kicker) {
    font-size: 15.5px
  }
}

@media(prefers-reduced-motion:reduce) {

  .equipment-hero:before,
  .equipment-hero:after,
  .equipment-hero-copy:after {
    animation: none;
    transition: none
  }
}

/* Equipment page editorial redesign */
.equipment-overview,
.equipment-directory {
  background: #f4f7f8
}

.equipment-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .72fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
  margin-top: 48px
}

.equipment-overview-copy {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none
}

.equipment-overview-copy h2,
.equipment-directory-head h2 {
  margin: 14px 0 0;
  color: #071c2c;
  font: 900 clamp(36px, 4.4vw, 68px)/1.01 "Manrope";
  letter-spacing: -3.5px;
  text-wrap: balance
}

.equipment-overview-copy p:not(.kicker) {
  max-width: 820px;
  margin: 26px 0 0;
  color: #60717e;
  font-size: 16px;
  line-height: 1.78
}

.equipment-jump {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #cfd9df
}

.equipment-jump a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 0 0 18px;
  border-bottom: 1px solid #cfd9df;
  color: #071c2c;
  font: 900 13px/1.2 "Manrope";
  letter-spacing: -.2px;
  transition: color .3s ease, padding-left .35s cubic-bezier(.22, 1, .36, 1), background .3s ease
}

.equipment-jump a:nth-child(odd) {
  border-right: 1px solid #cfd9df
}

.equipment-jump span {
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px
}

.equipment-jump a:hover {
  padding-left: 26px;
  color: #332a7a;
  background: rgba(255, 255, 255, .48)
}

.equipment-family-jump {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 0
}

.equipment-family-card {
  border: 1px solid #cfd9df;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 22px 70px rgba(7, 28, 44, .06)
}

.equipment-family-card>p {
  margin: 0;
  padding: 18px 20px 16px;
  color: #332a7a;
  border-bottom: 1px solid #cfd9df;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.equipment-family-links {
  display: grid;
  grid-template-columns: 1fr
}

.equipment-family-jump a {
  min-height: 54px;
  border-right: 0 !important;
  padding-right: 16px
}

.equipment-family-jump a:last-child {
  border-bottom: 0
}

.equipment-geotechnical-page .equipment-family-jump,
.equipment-geophysical-page .equipment-family-jump {
  grid-template-columns: 1fr
}

.equipment-geotechnical-page .equipment-family-card,
.equipment-geophysical-page .equipment-family-card {
  background: rgba(255, 255, 255, .68)
}

.equipment-geotechnical-page .equipment-family-card>p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.equipment-geotechnical-page .equipment-family-card>p:after {
  content: "13 systems";
  color: #83929c;
  font-size: 9px;
  letter-spacing: 1.2px
}

.equipment-geotechnical-page .equipment-family-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 10px
}

.equipment-geotechnical-page .equipment-family-jump a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 12px 12px;
  border: 0 !important;
  color: #071c2c;
  font-size: 12px;
  line-height: 1.18;
  letter-spacing: -.15px
}

.equipment-geotechnical-page .equipment-family-jump a span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #eef2f5;
  color: #332a7a;
  font-size: 9px;
  letter-spacing: .8px;
  transition: background .3s ease, color .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1)
}

.equipment-geotechnical-page .equipment-family-jump a:hover {
  padding-left: 12px;
  background: #fff;
  color: #332a7a
}

.equipment-geotechnical-page .equipment-family-jump a:hover span {
  background: #332a7a;
  color: #fff;
  transform: translateX(2px)
}

.equipment-geotechnical-page .equipment-family-jump a:focus-visible {
  outline: 2px solid #8d84c3;
  outline-offset: -2px
}

.equipment-overview-grid-simple {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1040px
}

.equipment-overview-grid-simple .equipment-overview-copy {
  max-width: 1000px
}

.geophys-showcase-section {
  padding-top: 72px
}

.geophys-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, .35fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: end;
  margin-top: 46px
}

.geophys-showcase-head .kicker {
  margin: 0;
  color: #332a7a
}

.geophys-showcase-head h2 {
  max-width: 780px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(34px, 4vw, 62px)/.98 "Manrope";
  letter-spacing: -3.1px;
  text-wrap: balance
}

.geophys-showcase-head>p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: #60717e;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.68
}

.geophys-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px
}

.geophys-equipment-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 245px;
  border: 1px solid #d8e1e7;
  background: #fff;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease
}

.geophys-equipment-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #332a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1)
}

.geophys-equipment-card img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: contain;
  background: #fff;
  filter: saturate(.96) contrast(1.02);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.geophys-equipment-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 76px;
  margin: 0;
  padding: 16px 16px 18px;
  border-top: 1px solid #e3eaf0;
  color: #071c2c;
  font: 900 14px/1.22 "Manrope";
  letter-spacing: -.45px;
  text-wrap: balance
}

.geophys-equipment-card:hover {
  transform: translateY(-5px);
  border-color: #c3ced6;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .09)
}

.geophys-equipment-card:hover:before {
  transform: scaleX(1)
}

.geophys-equipment-card:hover img {
  transform: scale(1.035)
}

.equipment-directory {
  padding-top: 96px
}

.equipment-directory-head {
  max-width: 1120px;
  margin-top: 44px
}

.equipment-detail-stack {
  margin-top: 52px;
  border-top: 1px solid #cfd9df
}

.equipment-family-divider {
  display: grid;
  grid-template-columns: minmax(0, .36fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: end;
  padding: clamp(42px, 5vw, 68px) 0 28px;
  border-bottom: 1px solid #cfd9df
}

.equipment-family-divider .kicker {
  margin: 0;
  color: #332a7a
}

.equipment-family-divider h3 {
  max-width: 980px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(30px, 3.6vw, 58px)/1 "Manrope";
  letter-spacing: -2.8px;
  text-wrap: balance
}

.equipment-family-divider-geophysical {
  background: linear-gradient(90deg, rgba(141, 132, 195, .12), transparent 58%)
}

.equipment-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .82fr);
  gap: clamp(32px, 5.5vw, 88px);
  align-items: center;
  padding: clamp(44px, 6vw, 82px) 0;
  border-bottom: 1px solid #cfd9df
}

.equipment-detail-reverse {
  grid-template-columns: minmax(430px, .82fr) minmax(0, 1.08fr)
}

.equipment-detail-reverse .equipment-detail-media {
  order: 2
}

.equipment-detail-reverse .equipment-detail-copy {
  order: 1
}

.equipment-detail-media {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  margin: 0;
  overflow: hidden;
  background: #071c2c
}

.equipment-detail-media:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(7, 28, 44, .12);
  pointer-events: none
}

.equipment-detail-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.03);
  transition: transform .9s cubic-bezier(.22, 1, .36, 1)
}

.equipment-detail:hover .equipment-detail-media img {
  transform: scale(1.025)
}

.equipment-detail-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform 1.1s cubic-bezier(.22, 1, .36, 1), visibility .85s ease
}

.equipment-detail-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}

.equipment-detail-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.equipment-slideshow .equipment-slide-controls {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(4, 20, 31, .52);
  backdrop-filter: blur(10px)
}

.equipment-slide-controls button {
  width: 32px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: width .35s cubic-bezier(.22, 1, .36, 1), background .3s ease
}

.equipment-slide-controls button.is-active {
  width: 54px;
  background: #8d84c3
}

.equipment-slide-controls button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px
}

.equipment-detail-contain {
  display: grid;
  place-items: center;
  background: #071c2c
}

.equipment-detail-contain img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover
}

.equipment-detail-fit {
  display: block;
  min-height: 0;
  background: transparent
}

.equipment-detail-fit img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: initial
}

.equipment-detail:hover .equipment-detail-fit img {
  transform: none
}

.equipment-detail-copy {
  max-width: 680px
}

.equipment-detail-copy .kicker {
  margin: 0 0 18px;
  color: #332a7a
}

.equipment-detail-index {
  display: block;
  margin-bottom: 22px;
  color: #83929c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.equipment-detail-copy h3 {
  max-width: 660px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(40px, 4.5vw, 74px)/.95 "Manrope";
  letter-spacing: -3.6px;
  text-wrap: balance
}

.equipment-detail-copy>p:not(.kicker) {
  max-width: 610px;
  margin: 24px 0 0;
  color: #60717e;
  font-size: 16px;
  line-height: 1.78
}

.equipment-detail-lines {
  margin-top: 34px;
  border-top: 1px solid #cfd9df
}

.equipment-detail-lines p {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid #cfd9df
}

.equipment-detail-lines strong {
  color: #071c2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.45px;
  text-transform: uppercase
}

.equipment-detail-lines span {
  color: #60717e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.58
}

.equipment-lab-section {
  padding: clamp(50px, 6vw, 86px) 0 0;
  border-bottom: 1px solid #cfd9df
}

.equipment-lab-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: end
}

.equipment-lab-head h3 {
  max-width: 880px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(40px, 4.8vw, 74px)/.98 "Manrope";
  letter-spacing: -3.8px;
  text-wrap: balance
}

.equipment-lab-head p:not(.kicker) {
  max-width: 820px;
  margin: 24px 0 0;
  color: #60717e;
  font-size: 16px;
  line-height: 1.78
}

.equipment-lab-logo {
  margin: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 20px 60px rgba(7, 28, 44, .06)
}

.equipment-lab-logo img {
  display: block;
  width: 100%;
  max-height: 120px;
  object-fit: contain
}

.equipment-lab-logo figcaption {
  margin-top: 18px;
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.equipment-lab-tests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 62px);
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid #cfd9df
}

.equipment-lab-tests article {
  padding-right: clamp(0px, 3vw, 36px)
}

.equipment-lab-tests h4 {
  margin: 0 0 20px;
  color: #071c2c;
  font: 900 clamp(22px, 2vw, 32px)/1.05 "Manrope";
  letter-spacing: -1.1px
}

.equipment-lab-tests ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none
}

.equipment-lab-tests li {
  position: relative;
  padding-left: 24px;
  color: #60717e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.68
}

.equipment-lab-tests li:before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #332a7a
}

.equipment-lab-statement {
  margin: 42px 0 0;
  padding: 24px 0;
  border-top: 1px solid #cfd9df;
  border-bottom: 1px solid #cfd9df;
  color: #071c2c;
  font: 900 clamp(20px, 2.4vw, 34px)/1.15 "Manrope";
  letter-spacing: -1.3px
}

.equipment-lab-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px
}

.equipment-lab-gallery figure {
  position: relative;
  min-height: 270px;
  margin: 0;
  background: #071c2c;
  overflow: hidden
}

.equipment-lab-gallery figure:nth-child(3),
.equipment-lab-gallery figure:nth-child(5) {
  grid-column: span 2
}

.equipment-lab-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1)
}

.equipment-lab-gallery figure:hover img {
  transform: scale(1.035)
}

.equipment-lab-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(4, 20, 31, .72);
  border-left: 3px solid #8d84c3;
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .07em
}

@media(max-width:1100px) {

  .equipment-overview-grid,
  .equipment-detail,
  .equipment-detail-reverse,
  .equipment-lab-head,
  .equipment-family-divider {
    grid-template-columns: 1fr
  }

  .geophys-showcase-head {
    grid-template-columns: 1fr;
    align-items: start
  }

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

  .equipment-detail-reverse .equipment-detail-media,
  .equipment-detail-reverse .equipment-detail-copy {
    order: initial
  }

  .equipment-detail-copy {
    max-width: 820px
  }

  .equipment-lab-tests {
    grid-template-columns: 1fr
  }

  .equipment-lab-gallery {
    grid-template-columns: 1fr 1fr
  }

  .equipment-lab-gallery figure:nth-child(3),
  .equipment-lab-gallery figure:nth-child(5) {
    grid-column: span 1
  }
}

@media(max-width:700px) {

  .equipment-overview-grid,
  .equipment-directory-head {
    margin-top: 34px
  }

  .equipment-overview-copy h2,
  .equipment-directory-head h2,
  .equipment-lab-head h3 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .equipment-jump,
  .equipment-family-jump {
    grid-template-columns: 1fr
  }

  .equipment-geotechnical-page .equipment-family-links {
    grid-template-columns: 1fr;
    padding: 8px
  }

  .equipment-geotechnical-page .equipment-family-card>p:after {
    content: ""
  }

  .equipment-geotechnical-page .equipment-family-jump a {
    min-height: 46px
  }

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

  .geophys-equipment-card {
    min-height: 210px
  }

  .geophys-equipment-card img {
    height: 138px
  }

  .geophys-equipment-card h3 {
    min-height: 70px;
    padding: 14px;
    font-size: 12px;
    letter-spacing: -.25px
  }

  .equipment-jump a:nth-child(odd) {
    border-right: 0
  }

  .equipment-family-divider h3 {
    font-size: clamp(30px, 9vw, 44px);
    letter-spacing: -1.9px
  }

  .equipment-detail {
    gap: 26px;
    padding: 40px 0
  }

  .equipment-detail-media {
    min-height: 300px
  }

  .equipment-detail-copy h3 {
    font-size: clamp(36px, 11vw, 52px);
    letter-spacing: -2.3px
  }

  .equipment-detail-lines p {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .equipment-slide-controls button {
    width: 24px
  }

  .equipment-slide-controls button.is-active {
    width: 38px
  }

  .equipment-lab-gallery {
    grid-template-columns: 1fr
  }

  .equipment-lab-gallery figure {
    min-height: 240px
  }
}

@media(prefers-reduced-motion:reduce) {

  .equipment-detail-media img,
  .equipment-detail-slide,
  .equipment-slide-controls button,
  .equipment-lab-gallery img {
    transition: none
  }

  .equipment-detail:hover .equipment-detail-media img {
    transform: none
  }

  .equipment-lab-gallery figure:hover img {
    transform: none
  }
}

/* One-screen capabilities layout */
@media(min-width:1051px) {
  .capabilities {
    min-height: 100svh;
    padding-top: clamp(72px, 8vh, 90px);
    padding-bottom: clamp(24px, 4vh, 42px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
  }

  .capabilities .section-heading {
    grid-template-columns: minmax(0, .9fr) minmax(280px, .46fr);
    gap: clamp(24px, 4vw, 56px);
    margin: clamp(16px, 2.6vh, 26px) 0 clamp(18px, 3vh, 30px);
  }

  .capabilities .section-heading h2 {
    max-width: 780px;
    font-size: clamp(30px, min(3.4vw, 5.4vh), 50px);
    line-height: 1.03;
    letter-spacing: -2.3px;
  }

  .capabilities .section-heading>p {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.55;
  }

  .capability-showcase {
    display: block;
    height: 100%;
    min-height: 0;
  }

  .capability-visual {
    height: 100%;
    min-height: 0;
    max-height: calc(100svh - 238px);
  }

  .capability-visual figcaption {
    padding: 22px;
  }

  .capability-visual figcaption span {
    margin-bottom: 10px;
  }

  .capability-visual figcaption strong {
    max-width: 420px;
    font-size: clamp(18px, min(1.7vw, 2.8vh), 26px);
    line-height: 1.12;
    letter-spacing: -.8px;
  }

  .capabilities .service-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: clamp(14px, 1.35vw, 22px);
    height: 100%;
    min-height: 0;
  }

  .capabilities .service-card {
    min-height: 0;
    height: 100%;
    padding: 20px;
    justify-content: flex-end;
  }

  .capabilities .service-card:after {
    opacity: 1;
    transform: scale(1);
  }

  .capabilities .service-number {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 9px;
  }

  .capabilities .service-tag {
    margin: 0 0 10px;
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .capabilities .service-card h3 {
    font-size: clamp(18px, min(1.35vw, 2.5vh), 23px);
    line-height: 1.08;
    letter-spacing: -.75px;
  }

  .capabilities .service-card div>p:last-child {
    display: -webkit-box;
    max-width: 360px;
    margin-top: 11px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 12.2px;
    line-height: 1.48;
  }
}

@media(min-width:1051px) and (max-height:820px) {
  .capabilities {
    padding-top: 64px;
    padding-bottom: 28px;
  }

  .capabilities .section-heading {
    margin: 14px 0 18px;
  }

  .capabilities .section-heading h2 {
    font-size: clamp(28px, min(3vw, 4.8vh), 42px);
  }

  .capabilities .section-heading>p {
    font-size: 13px;
    line-height: 1.45;
  }

  .capability-visual {
    max-height: calc(100svh - 190px);
  }

  .capability-visual figcaption strong {
    font-size: 20px;
  }

  .capabilities .service-card {
    padding: 17px;
  }

  .capabilities .service-number {
    top: 15px;
    left: 17px;
  }

  .capabilities .service-tag {
    margin-bottom: 8px;
  }

  .capabilities .service-card h3 {
    font-size: clamp(17px, min(1.25vw, 2.35vh), 21px);
  }

  .capabilities .service-card div>p:last-child {
    -webkit-line-clamp: 2;
    font-size: 11.7px;
  }
}

/* Refinements: footer, project map, credentials, and compact contact */
.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.22fr) minmax(260px, .9fr) minmax(240px, .84fr) minmax(220px, .68fr);
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(58px, 6vw, 86px) var(--pad) 30px;
  color: #b6c4cc;
  background:
    radial-gradient(circle at 12% 10%, rgba(141, 132, 195, .18), transparent 28%),
    linear-gradient(135deg, #071c2c 0%, #051722 54%, #030d15 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}

.site-footer:before {
  content: "";
  position: absolute;
  right: -14vw;
  top: -36%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer>* {
  position: relative;
  z-index: 1;
  min-width: 0
}

.footer-brand-block .footer-brand {
  display: inline-flex;
  margin-bottom: 24px
}

.footer-brand-block .footer-brand img {
  display: block;
  width: min(260px, 56vw);
  height: auto;
  filter: brightness(0) invert(1)
}

.footer-brand-block p {
  max-width: 430px;
  margin: 0;
  color: #c3d0d8;
  font-size: 14px;
  line-height: 1.72
}

.footer-cert-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.footer-cert-logos a {
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .25s ease;
}

.footer-cert-logos a:hover {
  transform: translateY(-3px);
  opacity: .92;
}

.footer-cert-logos .footer-cert-iso {
  padding: 8px;
  border-radius: 50%;
  background: #fff;
}

.footer-cert-logos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .24));
}

.footer-cert-logos .footer-cert-iso img {
  filter: none;
}

.footer-cert-logos .footer-cert-iso-small img {
  width: 67px;
  height: 67px;
}

.footer-cert-logos .footer-cert-smk3 img {
  transform: scale(.94);
}

.footer-title {
  margin: 0 0 18px;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px
}

.footer-links {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(16px, 1.6vw, 24px);
  row-gap: 10px
}

.footer-links .footer-title {
  grid-column: 1/-1
}

.footer-links a,
.footer-contact-block a {
  width: auto;
  max-width: 100%;
  color: #c8d4db;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: color .25s ease, transform .32s cubic-bezier(.22, 1, .36, 1)
}

.footer-links a:hover,
.footer-contact-block a:hover {
  color: #fff;
  transform: translateX(4px)
}

.footer-contact-block p:not(.footer-title) {
  margin: 0 0 14px;
  color: #b6c4cc;
  font-size: 13px;
  line-height: 1.68;
  overflow-wrap: anywhere
}

.site-footer .footer-bottom {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #8fa1ad;
  font-size: 12px
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  min-width: 0;
}

.footer-legal span,
.footer-legal a {
  color: #aebbc4;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-social {
  --footer-social-icon: none;
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  color: #eef5f8;
  opacity: .9;
  transition: color .25s ease, opacity .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.footer-social:hover {
  color: #8d84c3;
  opacity: 1;
  transform: translateY(-3px);
}

.footer-social span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-social:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  mask: var(--footer-social-icon) center / contain no-repeat;
  -webkit-mask: var(--footer-social-icon) center / contain no-repeat;
}

.footer-social-instagram {
  --footer-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2Zm0 2A3.5 3.5 0 0 0 4 7.5v9A3.5 3.5 0 0 0 7.5 20h9a3.5 3.5 0 0 0 3.5-3.5v-9A3.5 3.5 0 0 0 16.5 4h-9ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2.05A2.95 2.95 0 1 0 12 14.95 2.95 2.95 0 0 0 12 9.05ZM17.25 6.35a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E");
}

.footer-social-twitter {
  --footer-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.9 10.47 21.35 2h-3.02l-5.78 6.58L7.88 2H2l7.66 10.83L1.82 22h3.02l6.18-7.23L16.1 22H22l-8.1-11.53ZM5.93 4.22h.98l11.14 15.55h-.99L5.93 4.22Z'/%3E%3C/svg%3E");
}

.footer-social-linkedin {
  --footer-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.98 3.5a2.48 2.48 0 1 1 0 4.96 2.48 2.48 0 0 1 0-4.96ZM3 9h4v12H3V9Zm6.2 0h3.82v1.64h.05c.53-1 1.84-2.06 3.79-2.06 4.05 0 4.8 2.67 4.8 6.14V21h-4v-5.57c0-1.33-.02-3.04-1.85-3.04-1.86 0-2.14 1.45-2.14 2.95V21h-4V9Z'/%3E%3C/svg%3E");
}

.footer-social-youtube {
  --footer-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.13C19.55 3.58 12 3.58 12 3.58s-7.55 0-9.4.5A3 3 0 0 0 .5 6.2 31.4 31.4 0 0 0 0 12a31.4 31.4 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.12c1.85.5 9.4.5 9.4.5s7.55 0 9.4-.5a3 3 0 0 0 2.1-2.12A31.4 31.4 0 0 0 24 12a31.4 31.4 0 0 0-.5-5.8ZM9.6 15.57V8.43L15.86 12 9.6 15.57Z'/%3E%3C/svg%3E");
}

.credential-card-skup .credential-seal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.credential-card-skup .credential-seal img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(7, 28, 44, .12))
}

.credential-card-skup .credential-seal span {
  display: inline-flex;
  padding: 5px 10px;
  border: 1px solid rgba(7, 28, 44, .12);
  background: #fff;
  color: #312078 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 1px;
  box-shadow: 0 12px 26px rgba(7, 28, 44, .055)
}

.credential-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  width: 124px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 9px 12px;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 28, 44, .05)
}

.credential-logo-wrap img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.project-map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 46px);
  align-items: start;
  margin-top: 54px
}

.project-map-card {
  background: linear-gradient(135deg, #071c2c, #0b2537);
  border: 1px solid #d8e1e7;
  box-shadow: 0 28px 84px rgba(7, 28, 44, .12)
}

.project-map-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: #071c2c
}

.project-map-card figcaption {
  right: 22px;
  bottom: 22px;
  left: auto;
  max-width: min(460px, calc(100% - 44px));
  border-left-color: #8d84c3;
  background: rgba(4, 20, 31, .74)
}

.project-map-copy {
  max-width: 1120px
}

.project-page-metrics {
  display: none
}

.service-media-bleed {
  background: #071c2c
}

.service-media-bleed:after {
  display: none
}

.service-media-bleed img {
  object-fit: cover
}

.service-media-bleed>figcaption {
  right: 0;
  bottom: 0;
  left: 0;
  border: 0
}

.service-media-full {
  padding: 0;
  background: #071c2c
}

.service-media-full img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.contact {
  grid-template-columns: .78fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  padding-top: clamp(58px, 6vw, 76px);
  padding-bottom: clamp(58px, 6vw, 76px)
}

.contact-intro>.section-label {
  margin-bottom: 34px
}

.contact-intro h2 {
  font-size: clamp(32px, 3.3vw, 48px);
  letter-spacing: -2.1px
}

.contact-intro>p:not(.kicker) {
  font-size: 14px;
  line-height: 1.68
}

.contact-info {
  margin-top: 32px
}

.contact-form {
  padding: clamp(28px, 3vw, 34px)
}

.contact-form label {
  margin-bottom: 18px
}

.contact-form textarea {
  min-height: 92px
}

@media(max-width:1100px) {
  .site-footer {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand-block {
    grid-column: 1/-1
  }
}

@media(max-width:1400px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media(max-width:700px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 52px
  }

  .footer-links {
    grid-template-columns: 1fr
  }

  .site-footer .footer-bottom {
    flex-direction: column
  }

  .project-map-card figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none
  }

  .project-service-body ul {
    grid-template-columns: 1fr
  }
}

/* Current refinements: CMS news, cleaner project list, QHSE, and profile support */
.hero-actions .text-link[hidden] {
  display: none !important
}

.iso-metric-list a {
  grid-template-columns: 82px 1fr
}

.qhse.qhse-dossier {
  background: #f4f7f8
}

.qhse-dossier-head {
  align-items: start
}

.qhse-dossier-head h2 {
  max-width: 900px
}

.qhse-dossier-board {
  grid-template-columns: minmax(0, .94fr) minmax(380px, .5fr);
  gap: 20px
}

.qhse-register {
  border: 0;
  box-shadow: 0 18px 54px rgba(7, 28, 44, .065)
}

.qhse-register-title strong {
  max-width: 260px;
  text-align: left
}

.qhse-checklist article>span,
.qhse-control-points span {
  color: #332a7a
}

.qhse-control-points {
  border: 0;
  box-shadow: 0 18px 54px rgba(7, 28, 44, .055)
}

.qhse-control-points>div {
  background: #fff
}

.projects {
  padding-top: clamp(90px, 8vw, 124px);
  padding-bottom: clamp(94px, 8vw, 128px)
}

.projects-heading {
  margin-bottom: 48px
}

.project-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .85fr);
  gap: 18px
}

.project-card:not(.project-featured) {
  min-height: 266px
}

.project-featured {
  min-height: 550px
}

.project-content {
  padding: 34px 36px
}

.project-card p,
.project-content>p:first-child {
  color: #fff !important
}

.project-client {
  color: #c4d2dc !important
}

.project-card h3 {
  font-size: clamp(24px, 2.15vw, 36px)
}

.project-description {
  font-size: 13px !important
}

.news-grid.is-empty {
  display: block;
  border: 0
}

.news-empty-state-inline {
  width: 100%;
  min-height: 0
}

.news-cms-card .news-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #f4f7f8
}

.news-cms-card .news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f4f7f8
}

.news-cms-card .news-image:empty {
  background: linear-gradient(135deg, #071c2c, #123a55)
}

.newsroom-list {
  display: grid;
  gap: 18px;
  margin-top: 38px
}

.newsroom-list.is-empty {
  display: block
}

.news-cms-story .newsroom-story-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7f8
}

.news-cms-story .newsroom-story-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f4f7f8
}

.news-cms-story:hover .newsroom-story-media img {
  transform: none
}

.newsroom-story-media:empty {
  background: linear-gradient(135deg, #071c2c, #123a55)
}

.newsroom-story-footer span:last-child {
  color: #071c2c;
  font-weight: 900
}

.newsroom-head {
  align-items: end
}

.newsroom-head>p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  color: #60717e;
  font-size: 16px;
  line-height: 1.72
}

.news-list-head {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(280px, .38fr);
  gap: clamp(22px, 4vw, 60px);
  align-items: end;
  margin-top: clamp(46px, 6vw, 74px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid #d8e1e7
}

.news-list-head h2 {
  max-width: 820px;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(34px, 4vw, 62px)/.98 "Manrope";
  letter-spacing: -2.9px
}

.news-list-head>p {
  max-width: 560px;
  margin: 0;
  color: #60717e;
  font-size: 15px;
  line-height: 1.7
}

.newsroom-controls {
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(0, 1.55fr) minmax(150px, .35fr);
  gap: 18px;
  align-items: end;
  margin-top: 34px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 22px 70px rgba(7, 28, 44, .055)
}

.news-search-box,
.news-filter-select,
.news-filter-group {
  display: grid;
  gap: 10px
}

.news-search-box span,
.news-filter-select span,
.news-filter-group>span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase
}

.news-search-box input,
.news-filter-select select {
  width: 100%;
  height: 56px;
  border: 1px solid #d8e1e7;
  border-radius: 0;
  background: #f7fafb;
  color: #071c2c;
  font: 800 14px/1 "Manrope";
  letter-spacing: -.2px;
  padding: 0 18px;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease
}

.news-search-box input:focus,
.news-filter-select select:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(49, 37, 118, .08)
}

.news-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.news-filter-chips button,
.news-results-bar button {
  appearance: none;
  border-radius: 0;
  font-family: "Manrope";
  cursor: pointer
}

.news-filter-chips button {
  min-height: 42px;
  border: 1px solid #d8e1e7;
  background: #fff;
  color: #465866;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 0 14px;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease
}

.news-filter-chips button:hover {
  transform: translateY(-1px);
  border-color: rgba(49, 37, 118, .34);
  color: var(--brand)
}

.news-filter-chips button.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff
}

.newsroom-overview {
  display: block;
  margin-top: clamp(24px, 3vw, 38px)
}

.newsroom-overview[hidden] {
  display: none
}

.newsroom-featured-card {
  display: grid;
  grid-template-columns: minmax(520px, .58fr) minmax(360px, .42fr);
  min-height: 440px;
  background: #071c2c;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(7, 28, 44, .13)
}

.newsroom-featured-card figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #061c2b
}

.newsroom-featured-card figure:before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(7, 28, 44, .12), rgba(7, 28, 44, .04)), var(--news-feature-bg);
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(.92);
  transform: scale(1.08);
  opacity: .42
}

.newsroom-featured-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(7, 28, 44, .18)
}

.newsroom-featured-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 62px)
}

.newsroom-featured-card span,
.newsroom-featured-card small,
.newsroom-featured-card strong {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.65px;
  text-transform: uppercase
}

.newsroom-featured-card span {
  color: var(--accent-light)
}

.newsroom-featured-card small {
  margin-top: 16px;
  color: #aebbc5
}

.newsroom-featured-card h3 {
  max-width: 680px;
  margin: 24px 0 18px;
  color: #fff;
  font: 900 clamp(30px, 3vw, 50px)/1 "Manrope";
  letter-spacing: -2.3px
}

.newsroom-featured-card p {
  max-width: 640px;
  margin: 0;
  color: #cbd7de;
  font-size: 15px;
  line-height: 1.72
}

.newsroom-featured-card strong {
  width: max-content;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  color: #fff
}

.news-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #d8e1e7
}

.news-results-bar span {
  color: #465866;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.news-results-bar button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0 0 7px
}

.news-results-bar button:disabled {
  opacity: .35;
  cursor: default
}

.newsroom-list:not(.is-empty) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 24px
}

.news-directory-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  background: #fff
}

.news-directory-card .newsroom-story-media {
  height: 220px;
  min-height: 0
}

.news-directory-card .newsroom-story-media img {
  object-fit: cover;
  background: #071c2c
}

.news-directory-card .newsroom-story-copy {
  display: flex;
  min-height: 292px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 2.2vw, 30px)
}

.news-directory-card .newsroom-story-copy h2 {
  margin: 0;
  font-size: clamp(22px, 1.65vw, 31px);
  line-height: 1.05;
  letter-spacing: -1.3px
}

.news-directory-card .newsroom-story-copy p {
  display: -webkit-box;
  margin-top: 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3
}

.news-directory-card .newsroom-story-footer {
  margin-top: 0
}

@media(max-width:1100px) {
  .newsroom-controls {
    grid-template-columns: 1fr 1fr
  }

  .news-filter-group {
    grid-column: 1 / -1
  }

  .newsroom-overview {
    grid-template-columns: 1fr
  }

  .newsroom-featured-card {
    grid-template-columns: minmax(0, .52fr) minmax(0, .48fr);
    min-height: 400px
  }

  .newsroom-list:not(.is-empty) {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .news-directory-card.newsroom-story {
    grid-template-columns: 1fr
  }

  .news-directory-card .newsroom-story-media {
    height: 240px
  }
}

@media(max-width:700px) {
  .newsroom-head {
    gap: 18px
  }

  .newsroom-head>p:not(.kicker) {
    font-size: 14px
  }

  .news-list-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
    padding-top: 28px
  }

  .news-list-head h2 {
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: -1.8px
  }

  .news-list-head>p {
    font-size: 14px
  }

  .newsroom-controls {
    grid-template-columns: 1fr;
    margin-top: 26px;
    padding: 16px
  }

  .news-filter-group {
    grid-column: auto
  }

  .news-filter-chips {
    gap: 7px
  }

  .news-filter-chips button {
    min-height: 38px;
    font-size: 9px;
    padding: 0 11px
  }

  .news-search-box input,
  .news-filter-select select {
    height: 52px;
    font-size: 13px
  }

  .newsroom-featured-card {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .newsroom-featured-card figure {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 11
  }

  .newsroom-featured-card div {
    padding: 24px 20px 26px
  }

  .newsroom-featured-card h3 {
    margin: 18px 0 12px;
    font-size: clamp(26px, 9vw, 38px);
    letter-spacing: -1.8px
  }

  .news-results-bar {
    align-items: flex-start;
    flex-direction: column
  }

  .newsroom-list:not(.is-empty) {
    grid-template-columns: 1fr
  }

  .news-directory-card .newsroom-story-media {
    height: 230px
  }

  .news-directory-card .newsroom-story-copy {
    min-height: 0;
    padding: 22px
  }

  .news-directory-card .newsroom-story-meta,
  .news-directory-card .newsroom-story-footer {
    flex-direction: row;
    align-items: center
  }
}

/* Responsive news page refinements */
.news-page .news-feature-section {
  overflow: hidden;
}

.news-page .newsroom-head,
.news-page .news-list-head,
.news-page .newsroom-overview,
.news-page .newsroom-controls,
.news-page .news-results-bar,
.news-page .newsroom-list {
  min-width: 0;
}

.news-page .newsroom-featured-card {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  width: 100%;
  min-width: 0;
}

.news-page .newsroom-featured-card figure {
  display: flex;
  aspect-ratio: auto;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.news-page .newsroom-featured-card figure:before {
  content: none;
}

.news-page .newsroom-featured-card img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: none;
}

.news-page .newsroom-featured-card:hover img,
.news-page .news-directory-card:hover .newsroom-story-media img {
  transform: none;
}

.news-page .newsroom-featured-card div,
.news-page .news-directory-card .newsroom-story-copy {
  min-width: 0;
}

.news-page .newsroom-featured-card h3,
.news-page .news-directory-card .newsroom-story-copy h2 {
  overflow-wrap: anywhere;
}

.news-page .news-directory-card .newsroom-story-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.news-page .news-directory-card .newsroom-story-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

@media(max-width:1100px) {
  .news-page .newsroom-featured-card {
    grid-template-columns: 1fr;
  }

  .news-page .newsroom-featured-card img {
    max-height: none;
  }
}

@media(max-width:700px) {
  .news-page .news-feature-section {
    padding-inline: clamp(16px, 5vw, 24px);
  }

  .news-page .newsroom-head h2,
  .news-page .news-list-head h2 {
    font-size: clamp(32px, 10vw, 48px);
    line-height: .98;
  }

  .news-page .newsroom-head>p:not(.kicker),
  .news-page .news-list-head>p {
    max-width: 100%;
    font-size: 15px;
  }

  .news-page .newsroom-featured-card div {
    padding: 24px 20px 28px;
  }

  .news-page .newsroom-featured-card h3 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1;
    letter-spacing: -1.7px;
  }

  .news-page .newsroom-featured-card p {
    font-size: 15px;
    line-height: 1.62;
  }

  .news-page .news-filter-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .news-page .news-filter-chips button {
    flex: 0 0 auto;
  }

  .news-page .news-directory-card .newsroom-story-media {
    height: auto;
  }

  .news-page .news-directory-card .newsroom-story-media img {
    height: auto;
  }
}

@media(max-width:480px) {
  .news-page .newsroom-controls {
    padding: 14px;
  }

  .news-page .newsroom-featured-card div,
  .news-page .news-directory-card .newsroom-story-copy {
    padding: 18px;
  }

  .news-page .newsroom-featured-card h3 {
    font-size: clamp(28px, 9vw, 38px);
  }
}

.news-article-hero {
  position: relative;
  min-height: 72svh;
  padding: clamp(132px, 13vw, 178px) var(--pad) clamp(72px, 8vw, 108px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #061925;
  overflow: hidden
}

.news-article-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 23, .94), rgba(3, 15, 23, .68) 48%, rgba(3, 15, 23, .28)), var(--news-detail-image, linear-gradient(135deg, #071c2c, #123a55));
  background-size: cover;
  background-position: center;
  filter: saturate(.92) contrast(1.04)
}

.news-article-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 15, 23, .8), rgba(3, 15, 23, .04) 60%, rgba(3, 15, 23, .42));
  pointer-events: none
}

.news-article-hero>* {
  position: relative;
  z-index: 1
}

.news-article-header {
  max-width: 1040px
}

.news-article-header h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font: 900 clamp(46px, 6vw, 92px)/.96 "Manrope";
  letter-spacing: -4.8px
}

.news-article-header>p:not(.kicker) {
  max-width: 760px;
  margin: 26px 0 0;
  color: #d4dee5;
  font-size: 18px;
  line-height: 1.72
}

.news-detail-main-image {
  margin: 0 0 38px;
  background: #071c2c;
  overflow: hidden;
  box-shadow: 0 22px 68px rgba(7, 28, 44, .08)
}

.news-detail-main-image img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.02)
}

.news-detail-main-image figcaption {
  padding: 16px 20px;
  color: #667986;
  background: #fff;
  border: 1px solid #d8e1e7;
  border-top: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.news-article-body h2,
.news-article-body h3 {
  margin: 34px 0 16px;
  color: #071c2c;
  font: 900 clamp(24px, 2.4vw, 36px)/1.12 "Manrope";
  letter-spacing: -1.2px
}

.news-article-body ul {
  margin: 0 0 26px;
  padding-left: 22px;
  color: #3f5260;
  font-size: 17px;
  line-height: 1.75
}

.profile-fleet .profile-section-head {
  max-width: 1180px
}

.profile-fleet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px
}

.profile-fleet-card {
  display: grid;
  grid-template-rows: 320px 1fr;
  border: 0;
  background: #fff;
  box-shadow: 0 22px 70px rgba(7, 28, 44, .08)
}

.profile-fleet-card>img,
.profile-vessel-slideshow {
  height: 320px;
  min-height: 320px;
  background: #071c2c
}

.profile-fleet-card>img {
  object-fit: cover
}

.profile-vessel-slideshow .vessel-slide img {
  height: 320px;
  min-height: 320px;
  object-fit: cover;
  background: #071c2c
}

.profile-fleet-copy {
  min-height: 0;
  padding: 30px
}

.profile-fleet-collaboration {
  background: #f8fafb
}

.equipment-grid {
  gap: 22px
}

.equipment-grid article {
  grid-template-rows: 260px auto 1fr auto;
  border: 0;
  box-shadow: 0 22px 70px rgba(7, 28, 44, .08)
}

.profile-fleet-grid .profile-vessel-card {
  grid-column: 1/-1;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  grid-template-rows: none
}

.profile-fleet-grid .profile-vessel-card .profile-vessel-slideshow,
.profile-fleet-grid .profile-vessel-card .vessel-slide img {
  height: clamp(420px, 38vw, 560px);
  min-height: clamp(420px, 38vw, 560px)
}

.profile-fleet-grid .profile-vessel-card .profile-fleet-copy {
  padding: clamp(34px, 4vw, 58px);
  justify-content: center
}

.profile-fleet-grid .profile-vessel-card h3 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -3px
}

.profile-fleet-grid .profile-vessel-card p {
  max-width: 540px;
  font-size: 15px
}

.profile-fleet-grid .profile-fleet-card:not(.profile-vessel-card) {
  grid-column: 1/-1;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  grid-template-rows: none;
  align-items: stretch
}

.profile-fleet-grid .profile-fleet-card:not(.profile-vessel-card)>img {
  height: clamp(420px, 38vw, 560px);
  min-height: clamp(420px, 38vw, 560px);
  object-fit: cover;
  object-position: center 58%
}

.profile-fleet-grid .profile-fleet-card:not(.profile-vessel-card) .profile-fleet-copy {
  padding: clamp(34px, 4vw, 58px);
  justify-content: center
}

.profile-fleet-grid .profile-fleet-card:not(.profile-vessel-card) h3 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -3px
}

.profile-fleet-grid .profile-fleet-card:not(.profile-vessel-card) p {
  max-width: 540px;
  color: #657680;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68
}

.qhse-readiness-layout {
  display: block;
  margin-top: 54px
}

.qhse-readiness-visual {
  min-height: 0;
  height: auto;
  aspect-ratio: 16/6;
  box-shadow: 0 24px 72px rgba(7, 28, 44, .1)
}

.qhse-readiness-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center 45%
}

.qhse-readiness-content {
  margin-top: 34px
}

.qhse-readiness-head {
  max-width: 960px
}

.qhse-readiness-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px
}

.qhse-readiness-grid article {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 28, 44, .055)
}

.qhse-readiness-grid span {
  margin-bottom: 34px
}

.qhse-certification-layout {
  grid-template-columns: minmax(300px, .42fr) minmax(0, .88fr);
  gap: clamp(32px, 5vw, 70px)
}

.qhse-iso-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border: 0
}

.qhse-iso-list article {
  grid-template-columns: 112px 96px minmax(0, 1fr) max-content;
  gap: 22px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 14px 38px rgba(7, 28, 44, .045)
}

.qhse-iso-list figure {
  margin: 0;
  width: 112px;
  height: 150px;
  overflow: hidden;
  background: #eef3f6;
  border: 1px solid #d8e1e7
}

.qhse-iso-list figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center
}

.qhse-iso-list h3 {
  font-size: clamp(20px, 1.6vw, 26px)
}

.qhse-iso-list p {
  font-size: 13px
}

.qhse-document-layout {
  grid-template-columns: minmax(0, .9fr) minmax(300px, .42fr)
}

.qhse-document-card {
  padding: 0;
  max-height: none;
  overflow: hidden;
  background: #fff
}

.qhse-document-card img {
  display: block;
  width: 100%;
  height: auto
}

.qhse-document-card figcaption {
  padding: 16px 18px;
  border-top: 1px solid #d8e1e7
}

.qhse-document-card a {
  display: inline-flex;
  gap: 12px;
  color: #071c2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.quality-policy-documents {
  display: grid;
  gap: 32px;
  margin-top: 34px
}

.quality-policy-document-row {
  padding-top: 32px;
  border-top: 1px solid #d8e1e7
}

.quality-policy-section>.quality-policy-document-row {
  padding-top: 0;
  border-top: 0
}

.quality-policy-document-row.is-media-left .qhse-document-copy {
  order: 2
}

.quality-policy-document-row.is-media-left .qhse-document-card {
  order: 1
}

.quality-policy-document-row.is-media-right .qhse-document-copy {
  order: 1
}

.quality-policy-document-row.is-media-right .qhse-document-card {
  order: 2
}

.quality-policy-document-row .qhse-document-copy h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.4vw, 72px)
}

.quality-policy-document-row .qhse-document-card {
  align-self: start;
  height: clamp(520px, 62vw, 720px);
  overflow: hidden
}

.quality-policy-document-row .qhse-document-card img {
  height: calc(100% - 54px);
  object-fit: contain
}

.qhse-policy-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px
}

.qhse-policy-points article {
  display: grid;
  grid-template-rows: 132px 1fr;
  background: #f8fafb;
  border: 1px solid #d8e1e7;
  box-shadow: 0 14px 40px rgba(7, 28, 44, .04);
  overflow: hidden
}

.qhse-policy-points img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02)
}

.qhse-policy-points div {
  padding: 18px
}

.qhse-policy-points span {
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px
}

.qhse-policy-points h3 {
  margin: 16px 0 10px;
  color: #071c2c;
  font: 900 18px/1.12 "Manrope";
  letter-spacing: -.6px
}

.qhse-policy-points p {
  margin: 0;
  color: #60717e;
  font-size: 12px;
  line-height: 1.58
}

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

.qhse-gallery figure {
  min-height: 300px
}

.quality-page,
.hse-page {
  background: #f4f7f8;
  color: #071c2c
}

.quality-hero:before {
  background: linear-gradient(90deg, rgba(3, 15, 23, .95), rgba(3, 15, 23, .78) 46%, rgba(3, 15, 23, .32)),
    linear-gradient(0deg, rgba(3, 15, 23, .86), rgba(3, 15, 23, .1) 58%, rgba(3, 15, 23, .64)),
    url("assets/qhse/hse-field.jpg") center/cover no-repeat;
}

.hse-hero:before {
  background: linear-gradient(90deg, rgba(3, 15, 23, .94), rgba(3, 15, 23, .74) 46%, rgba(3, 15, 23, .25)),
    linear-gradient(0deg, rgba(3, 15, 23, .82), rgba(3, 15, 23, .08) 58%, rgba(3, 15, 23, .62)),
    url("assets/optimized/images/assets-hse-source-ini-landscape-bagus-lingkaran-orang-diatas-kapal-f36e5a03-1400.webp") center 44%/cover no-repeat;
}

.button.dark {
  margin-top: 28px;
  background: #071c2c;
  color: #fff
}

.button.dark:hover {
  background: #332a7a
}

.management-system-section {
  background: #fff
}

.management-system-head,
.hse-kpi-head,
.hse-documentation-head {
  max-width: 1120px;
  margin-top: 54px
}

.management-system-head h2,
.hse-kpi-head h2,
.hse-documentation-head h2 {
  max-width: 980px;
  margin: 14px 0 24px;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 72px)/1 "Manrope";
  letter-spacing: -3.8px;
}

.management-system-head>p:not(.kicker),
.hse-kpi-head>p:not(.kicker) {
  max-width: 820px;
  color: #60717e;
  font-size: 16px;
  line-height: 1.76;
}

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

.management-access-card {
  display: grid;
  min-height: 310px;
  align-content: space-between;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid #d8e1e7;
  background: #f8fafb;
  color: #071c2c;
  box-shadow: 0 18px 58px rgba(7, 28, 44, .055);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .25s ease, box-shadow .35s ease;
}

.management-access-card:hover {
  transform: translateY(-4px);
  border-color: #c1ced7;
  box-shadow: 0 24px 72px rgba(7, 28, 44, .09);
}

.management-access-card span {
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.management-access-card strong {
  max-width: 660px;
  color: #071c2c;
  font: 900 clamp(30px, 3.2vw, 52px)/1.02 "Manrope";
  letter-spacing: -2.4px;
}

.management-access-card p {
  max-width: 620px;
  margin: 0;
  color: #60717e;
  font-size: 14px;
  line-height: 1.7;
}

.quality-policy-section {
  background: #fff
}

.quality-value-chain-section {
  background: #f4f7f8
}

.quality-value-chain-head {
  max-width: 1120px;
  margin-top: 54px
}

.quality-value-chain-head h2 {
  max-width: 1040px;
  margin: 14px 0 24px;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 72px)/1 "Manrope";
  letter-spacing: -3.8px;
}

.quality-value-chain-head>p:not(.kicker) {
  max-width: 850px;
  color: #60717e;
  font-size: 16px;
  line-height: 1.76;
}

.quality-value-chain {
  margin: clamp(30px, 4vw, 56px) 0 0;
  padding: clamp(10px, 1.2vw, 16px);
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 24px 76px rgba(7, 28, 44, .08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.quality-value-chain img {
  display: block;
  width: 100%;
  min-width: 980px;
  height: auto;
}

.hse-kpi-section {
  background: #fff
}

.hse-performance-dashboard {
  display: grid;
  grid-template-columns: 1.15fr .86fr .86fr;
  gap: 18px;
  margin-top: 44px;
}

.hse-metric-card,
.hse-hour-panel,
.hse-report-context {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e1e7;
  background: #f8fafb;
  box-shadow: 0 18px 58px rgba(7, 28, 44, .055);
}

.hse-metric-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 42px);
}

.hse-metric-card:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #332a7a;
}

.hse-metric-card span,
.hse-hour-panel>div span,
.hse-report-context>span {
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hse-metric-card strong {
  color: #071c2c;
  font: 900 clamp(64px, 7vw, 112px)/.86 "Manrope";
  letter-spacing: -5px;
}

.hse-metric-card p {
  max-width: 330px;
  margin: 0;
  color: #60717e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.hse-metric-card-primary {
  background: linear-gradient(135deg, #071c2c, #0b2a41 56%, #332a7a);
}

.hse-metric-card-primary:before {
  background: rgba(255, 255, 255, .48)
}

.hse-metric-card-primary span,
.hse-metric-card-primary strong,
.hse-metric-card-primary p {
  color: #fff
}

.hse-metric-card-primary p {
  color: rgba(255, 255, 255, .78)
}

.hse-hour-panel {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: minmax(230px, .32fr) 1fr;
  gap: clamp(20px, 3vw, 42px);
  align-items: stretch;
  padding: clamp(26px, 3vw, 42px);
  background: #fff;
}

.hse-hour-panel>div strong {
  display: block;
  margin-top: 12px;
  color: #071c2c;
  font: 900 clamp(32px, 4vw, 58px)/.95 "Manrope";
  letter-spacing: -2.4px;
}

.hse-hour-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  min-height: 280px;
  align-items: stretch;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
}

.hse-hour-bars:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 58px;
  height: 1px;
  background: #d8e1e7;
}

.hse-hour-bars li {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-height: 260px;
  align-items: end;
  gap: 8px;
  padding-top: 6px;
}

.hse-hour-bars li:before {
  content: "";
  display: block;
  width: 100%;
  height: var(--bar);
  min-height: 30px;
  align-self: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #332a7a, #0b2a41);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2), 0 12px 26px rgba(7, 28, 44, .1);
  transform-origin: bottom;
  animation: hseBarRise .85s cubic-bezier(.22, 1, .36, 1) var(--delay, 0s) both;
}

.hse-hour-bars span {
  color: #8796a0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hse-hour-bars b {
  color: #071c2c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.2px;
}

@keyframes hseBarRise {
  from {
    transform: scaleY(.18);
    opacity: .58;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hse-report-context {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 42px);
  background: #f4f7f8;
}

.hse-report-context p {
  margin: 18px 0 22px;
  color: #60717e;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.hse-report-context p strong {
  color: #071c2c
}

.hse-report-context a {
  width: max-content;
  max-width: 100%;
  color: #071c2c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(7, 28, 44, .45);
}

.hse-report-context a:hover {
  color: #332a7a;
  border-color: #332a7a
}

.hse-kpi-table {
  margin-top: 44px;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 18px 58px rgba(7, 28, 44, .055);
}

.hse-kpi-row {
  display: grid;
  grid-template-columns: .72fr repeat(5, 1fr);
  min-height: 76px;
  align-items: center;
  border-top: 1px solid #e1e9ee;
}

.hse-kpi-row:first-child {
  border-top: 0
}

.hse-kpi-row>* {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-left: 1px solid #e1e9ee;
  color: #324858;
  font-size: 14px;
  font-weight: 800;
}

.hse-kpi-row>*:first-child {
  border-left: 0
}

.hse-kpi-row-head {
  min-height: 58px;
  background: #071c2c
}

.hse-kpi-row-head span {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hse-kpi-row strong {
  color: #332a7a;
  font: 900 22px "Manrope";
}

.hse-kpi-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: #8796a0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
}

.hse-controls-section {
  background: #f4f7f8
}

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

.hse-program-list article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 28, 44, .055);
}

.hse-program-list span {
  display: block;
  margin-bottom: 40px;
  color: #332a7a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.hse-program-list h3 {
  margin: 0;
  color: #071c2c;
  font: 900 clamp(20px, 1.8vw, 28px)/1.06 "Manrope";
  letter-spacing: -1px;
}

.hse-program-list p {
  margin: 16px 0 0;
  color: #60717e;
  font-size: 13px;
  line-height: 1.65;
}

.hse-documentation-section {
  background: #fff
}

.project-map-section[hidden] {
  display: none !important
}

.project-list-section {
  padding-top: clamp(86px, 8vw, 118px);
  color: #071c2c;
  background: #f4f7f8
}

.project-list-section:before {
  background: linear-gradient(180deg, #f4f7f8 0%, #fff 100%)
}

.project-list-section .section-label,
.project-list-section .section-label.light {
  color: #728491
}

.project-list-section .section-label:after,
.project-list-section .section-label.light:after {
  border-color: #c8d4db
}

.project-list-head {
  max-width: 1160px
}

.project-list-head .light-text {
  color: #332a7a
}

.project-list-head h2 {
  color: #071c2c;
  font-size: clamp(36px, 4.4vw, 66px)
}

.project-service-list {
  gap: 16px
}

.project-service-section {
  background: #fff;
  border-color: #d8e1e7;
  box-shadow: 0 18px 58px rgba(7, 28, 44, .055)
}

.project-service-section:hover {
  border-color: #c1ced7;
  background: #fff;
  transform: none
}

.project-service-body {
  grid-template-columns: minmax(250px, .31fr) minmax(0, .69fr);
  padding: clamp(26px, 3vw, 40px)
}

.project-service-index {
  color: #332a7a
}

.project-service-body h3 {
  font-size: clamp(25px, 2.2vw, 38px)
}

.project-service-body h3 {
  color: #071c2c
}

.project-service-body>p {
  color: #647684
}

.project-service-body ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  border-left: 1px solid #d8e1e7
}

.project-service-body li {
  color: #324858;
  border-bottom: 1px solid #e5edf1;
  font-size: 12.5px
}

.project-service-body li:before {
  border-color: #332a7a
}

.project-service-body .project-list-subtitle {
  color: #332a7a;
  border-bottom-color: #d8e1e7
}

.project-service-body>a {
  color: #071c2c;
  border-color: #071c2c
}

.project-service-body>a:hover {
  border-color: #332a7a;
  color: #332a7a
}

.project-list-trigger {
  color: #324858
}

.project-list-trigger:hover {
  color: #332a7a;
  text-decoration-color: rgba(51, 42, 122, .45)
}

@media(max-width:1100px) {
  .project-grid {
    grid-template-columns: 1fr
  }

  .project-featured {
    min-height: 430px
  }

  .qhse-dossier-board,
  .qhse-certification-layout,
  .qhse-document-layout {
    grid-template-columns: 1fr
  }

  .quality-policy-document-row.is-media-left .qhse-document-copy,
  .quality-policy-document-row.is-media-left .qhse-document-card,
  .quality-policy-document-row.is-media-right .qhse-document-copy,
  .quality-policy-document-row.is-media-right .qhse-document-card {
    order: initial
  }

  .quality-policy-document-row .qhse-document-card {
    height: auto;
    max-height: 640px;
  }

  .quality-policy-document-row .qhse-document-card img {
    height: auto;
    max-height: 580px;
    object-fit: contain;
  }

  .qhse-readiness-visual {
    aspect-ratio: 16/8
  }

  .qhse-readiness-grid,
  .qhse-policy-points,
  .qhse-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .qhse-iso-list article {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start
  }

  .qhse-iso-list article>span {
    grid-column: 2
  }

  .qhse-iso-list article>div {
    grid-column: 2
  }

  .qhse-iso-list article>a {
    grid-column: 2;
    width: max-content
  }

  .qhse-iso-list figure {
    grid-row: 1/span 3;
    width: 96px;
    height: 128px
  }

  .profile-fleet-grid {
    grid-template-columns: 1fr
  }

  .profile-fleet-grid .profile-vessel-card,
  .profile-fleet-grid .profile-fleet-card:not(.profile-vessel-card) {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr
  }

  .profile-fleet-grid .profile-vessel-card .profile-vessel-slideshow,
  .profile-fleet-grid .profile-vessel-card .vessel-slide img {
    height: 360px;
    min-height: 360px
  }

  .profile-fleet-grid .profile-fleet-card:not(.profile-vessel-card)>img {
    height: 340px;
    min-height: 340px
  }

  .project-service-body {
    grid-template-columns: 1fr
  }

  .project-service-body ul {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid #d8e1e7
  }

  .management-access-grid {
    grid-template-columns: 1fr
  }

  .hse-performance-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .hse-metric-card-primary,
  .hse-hour-panel,
  .hse-report-context {
    grid-column: 1 / -1
  }

  .hse-kpi-table {
    overflow-x: auto
  }

  .hse-kpi-row {
    min-width: 900px
  }

  .hse-program-list {
    grid-template-columns: 1fr
  }
}

@media(max-width:700px) {
  .project-content {
    padding: 26px
  }

  .project-featured,
  .project-card:not(.project-featured) {
    min-height: 360px
  }

  .qhse-readiness-visual {
    aspect-ratio: 16/11
  }

  .qhse-readiness-grid,
  .qhse-policy-points,
  .qhse-gallery {
    grid-template-columns: 1fr
  }

  .quality-policy-documents {
    gap: 24px;
    margin-top: 26px
  }

  .quality-policy-document-row {
    padding-top: 24px
  }

  .quality-policy-section>.quality-policy-document-row {
    padding-top: 0
  }

  .quality-policy-document-row .qhse-document-copy h2 {
    font-size: clamp(30px, 9vw, 44px)
  }

  .quality-policy-document-row .qhse-document-card {
    height: auto
  }

  .quality-policy-document-row .qhse-document-card img {
    height: auto
  }

  .qhse-iso-list article {
    grid-template-columns: 1fr
  }

  .qhse-iso-list figure {
    grid-row: auto;
    width: 100%;
    height: 220px
  }

  .management-system-head h2,
  .quality-value-chain-head h2,
  .hse-kpi-head h2,
  .hse-documentation-head h2 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .quality-value-chain {
    margin-inline: -24px;
    border-left: 0;
    border-right: 0
  }

  .quality-value-chain img {
    min-width: 820px
  }

  .management-access-card {
    min-height: 250px
  }

  .management-access-card strong {
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: -1.8px
  }

  .hse-performance-dashboard,
  .hse-hour-panel {
    grid-template-columns: 1fr
  }

  .hse-metric-card {
    min-height: 230px
  }

  .hse-metric-card strong {
    font-size: clamp(58px, 18vw, 84px);
    letter-spacing: -3.5px
  }

  .hse-hour-bars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: auto;
    gap: 8px
  }

  .hse-hour-bars li {
    min-height: 180px
  }

  .hse-hour-bars b {
    font-size: 11px
  }

  .profile-fleet-card {
    grid-template-rows: 260px 1fr
  }

  .profile-fleet-card>img,
  .profile-vessel-slideshow,
  .profile-vessel-slideshow .vessel-slide img {
    height: 260px;
    min-height: 260px
  }

  .profile-fleet-grid .profile-vessel-card .profile-vessel-slideshow,
  .profile-fleet-grid .profile-vessel-card .vessel-slide img,
  .profile-fleet-grid .profile-fleet-card:not(.profile-vessel-card)>img {
    height: 280px;
    min-height: 280px
  }

  .news-article-hero {
    min-height: 0;
    padding-top: 118px
  }

  .news-article-header h1 {
    font-size: clamp(38px, 11vw, 56px);
    letter-spacing: -2.7px
  }
}

/* Career microsite */
.career-page {
  background: #f5f7f8;
  color: #071c2c
}

.career-header {
  position: fixed;
  z-index: 2100;
  top: 18px;
  right: var(--pad);
  left: var(--pad);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 74px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(5, 23, 34, .78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.career-brand,
.career-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.career-brand img,
.career-footer-brand img {
  width: 168px;
  height: auto;
  filter: brightness(0) invert(1)
}

.career-brand span,
.career-footer-brand span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .25);
  font-size: 11px
}

.career-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.career-nav a,
.career-header-actions a {
  color: #d6e0e6;
  font-size: 12px;
  font-weight: 800;
  transition: color .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.career-nav a:hover,
.career-header-actions a:hover {
  color: #fff;
  transform: translateY(-1px)
}

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

.career-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: #fff;
  color: #071c2c !important;
}

.career-menu-toggle {
  display: none
}

.career-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .72fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding: clamp(150px, 14vw, 190px) var(--pad) clamp(74px, 7vw, 110px);
  color: #fff;
  background:
    radial-gradient(circle at 74% 10%, rgba(141, 132, 195, .2), transparent 32%),
    linear-gradient(135deg, #071c2c 0%, #061722 58%, #030b12 100%);
  overflow: hidden;
}

.career-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 23, .88), rgba(3, 15, 23, .46) 62%, rgba(3, 15, 23, .72));
  pointer-events: none;
}

.career-hero>* {
  position: relative;
  z-index: 1
}

.career-eyebrow,
.career-section-label,
.career-kicker {
  margin: 0;
  color: #8d84c3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.career-hero h1 {
  max-width: 930px;
  margin: 18px 0 28px;
  color: #fff;
  font: 900 clamp(54px, 7vw, 118px)/.94 "Manrope";
  letter-spacing: -6px;
}

.career-hero-copy>p:not(.career-eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #cbd6dd;
  font-size: 17px;
  line-height: 1.72;
}

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

.career-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .25s ease, border-color .25s ease;
}

.career-button:hover {
  transform: translateY(-3px)
}

.career-button.primary {
  background: #fff;
  color: #071c2c
}

.career-button.ghost {
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff
}

.career-hero-media {
  position: relative;
  min-height: 620px
}

.career-hero-main,
.career-hero-inset {
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24)
}

.career-hero-main {
  height: 620px
}

.career-hero-main img,
.career-hero-inset img,
.career-culture-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}

.career-hero-main figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(4, 20, 31, .7);
  border-left: 3px solid #8d84c3;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.career-hero-inset {
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 48%;
  height: 230px;
  border: 10px solid #071c2c;
}

.career-hero-strip {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.career-hero-strip span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: #d2dde3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.career-hero-strip span:last-child {
  border-right: 0
}

.career-section {
  padding: clamp(82px, 8vw, 126px) var(--pad);
  background: #fff;
}

.career-section:nth-of-type(even) {
  background: #f5f7f8
}

.career-why-layout,
.career-culture,
.career-apply {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(380px, .72fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: start;
  margin-top: 52px;
}

.career-big-copy p,
.career-section-head p,
.career-workflow-head p {
  margin: 0 0 16px;
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.career-big-copy h2,
.career-section-head h2,
.career-workflow-head h2,
.career-culture-copy h2,
.career-apply-copy h2 {
  margin: 0;
  color: #071c2c;
  font: 900 clamp(38px, 4.8vw, 76px)/.98 "Manrope";
  letter-spacing: -3.8px;
}

.career-why-text p,
.career-apply-copy>p:not(.career-kicker) {
  margin: 0;
  color: #60717e;
  font-size: 16px;
  line-height: 1.76;
}

.career-why-text ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.career-why-text li {
  padding: 16px 0;
  border-bottom: 1px solid #d8e1e7;
  color: #324858;
  font-size: 14px;
  font-weight: 800;
}

.career-section-head {
  max-width: 1120px;
  margin-top: 52px
}

.career-department-layout {
  display: grid;
  grid-template-columns: minmax(260px, .36fr) minmax(0, .64fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
  margin-top: 44px;
}

.career-department-tabs {
  display: grid;
  gap: 0;
  border-top: 1px solid #d8e1e7;
}

.career-department-tabs button {
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid #d8e1e7;
  background: transparent;
  color: #60717e;
  font: 900 13px/1.25 "Manrope";
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, padding-left .35s cubic-bezier(.22, 1, .36, 1);
}

.career-department-tabs button:hover,
.career-department-tabs button.active {
  color: #332a7a;
  padding-left: 14px;
}

.career-department-panel {
  min-height: 620px;
  display: grid;
  align-content: space-between;
  padding: clamp(32px, 4vw, 58px);
  background: #071c2c;
  color: #fff;
  box-shadow: 0 28px 88px rgba(7, 28, 44, .16);
  transition: opacity .22s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.career-department-panel.is-changing {
  opacity: .22;
  transform: translateY(8px)
}

.career-department-panel>span {
  color: #8d84c3;
  font: 900 13px "Manrope";
  letter-spacing: 1.7px;
}

.career-department-kicker {
  margin: 42px 0 14px;
  color: #aebbc4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase
}

.career-department-panel h3 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font: 900 clamp(38px, 5vw, 78px)/.98 "Manrope";
  letter-spacing: -3.8px;
}

.career-department-panel>p:not(.career-department-kicker) {
  max-width: 820px;
  margin: 24px 0 44px;
  color: #c7d3da;
  font-size: 16px;
  line-height: 1.75;
}

.career-department-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 28px;
}

.career-department-columns strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.career-department-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none
}

.career-department-columns li {
  color: #b8c6cf;
  font-size: 13px;
  line-height: 1.55
}

.career-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.career-job-grid article,
.career-role-list article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 16px 48px rgba(7, 28, 44, .045);
}

.career-job-grid span,
.career-role-list span {
  display: block;
  margin-bottom: 62px;
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.career-job-grid h3,
.career-role-list strong {
  display: block;
  margin: 0;
  color: #071c2c;
  font: 900 clamp(23px, 2.1vw, 34px)/1.05 "Manrope";
  letter-spacing: -1.1px;
}

.career-job-grid p {
  margin: 18px 0 0;
  color: #60717e;
  font-size: 13px;
  line-height: 1.65;
}

.career-workflow {
  background: #071c2c !important;
  color: #fff
}

.career-workflow .career-section-label {
  color: #aebbc4
}

.career-workflow-head {
  max-width: 1020px;
  margin-top: 52px
}

.career-workflow-head p {
  color: #8d84c3
}

.career-workflow-head h2 {
  color: #fff
}

.career-workflow-line {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.career-workflow-line div {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.career-workflow-line div:last-child {
  border-right: 0
}

.career-workflow-line span {
  color: #8d84c3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px
}

.career-workflow-line strong {
  color: #fff;
  font: 900 16px/1.18 "Manrope";
  letter-spacing: -.3px
}

.career-culture {
  background: #fff
}

.career-culture-media {
  height: 720px;
  overflow: hidden;
  background: #071c2c;
  box-shadow: 0 26px 78px rgba(7, 28, 44, .1);
}

.career-culture-copy {
  align-self: center
}

.career-kicker {
  margin: 46px 0 14px;
  color: #332a7a
}

.career-fit-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid #d8e1e7
}

.career-fit-list p {
  display: grid;
  grid-template-columns: minmax(180px, .38fr) minmax(0, .62fr);
  gap: 24px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #d8e1e7;
}

.career-fit-list strong {
  color: #071c2c;
  font-size: 13px;
  font-weight: 900
}

.career-fit-list span {
  color: #60717e;
  font-size: 13px;
  line-height: 1.62
}

.career-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.career-study-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #d8e1e7;
  background: #fff;
  color: #324858;
  font-size: 12px;
  font-weight: 900;
}

.career-talent-layout {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(360px, .72fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  margin-top: 52px;
}

.career-role-list {
  display: grid;
  gap: 12px
}

.career-role-list article {
  min-height: 0;
  padding: 22px
}

.career-role-list span {
  margin-bottom: 18px
}

.career-role-list small {
  display: block;
  margin-top: 16px;
  color: #697b86;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.career-apply {
  background: #071c2c;
  color: #fff
}

.career-apply .career-section-label,
.career-apply .career-kicker {
  color: #8d84c3
}

.career-apply-copy h2 {
  color: #fff
}

.career-apply-copy>p:not(.career-kicker) {
  color: #c3d0d8
}

.career-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(26px, 3.5vw, 44px);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 26px 78px rgba(0, 0, 0, .16);
}

.career-form label {
  display: grid;
  gap: 8px;
  color: #aebbc4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 14px 14px;
  font: 700 14px "DM Sans";
  outline: none;
}

.career-form select option {
  color: #071c2c
}

.career-form textarea {
  min-height: 118px;
  resize: vertical
}

.career-form input::placeholder,
.career-form textarea::placeholder {
  color: #8799a5
}

.career-form-wide,
.career-form-actions {
  grid-column: 1/-1
}

.career-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.career-form-actions p {
  margin: 0;
  color: #aebbc4;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5
}

.career-form-actions button {
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  background: #fff;
  color: #071c2c;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .25s ease;
}

.career-form-actions button:hover {
  transform: translateY(-3px);
  background: #eceff2
}

.career-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 36px var(--pad);
  background: #030d15;
  color: #8fa1ad;
}

.career-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap
}

.career-footer nav a {
  color: #c8d4db;
  font-size: 12px;
  font-weight: 900
}

.career-footer p {
  margin: 0;
  color: #8fa1ad;
  font-size: 12px;
  font-weight: 800
}

@media(max-width:1180px) {
  .career-header {
    grid-template-columns: auto auto;
    gap: 18px
  }

  .career-menu-toggle {
    display: flex;
    justify-self: end;
    width: 30px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .career-menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    transition: .35s
  }

  .career-header.menu-open .career-menu-toggle span:first-child {
    transform: translateY(10px) rotate(45deg)
  }

  .career-header.menu-open .career-menu-toggle span:nth-child(2) {
    opacity: 0
  }

  .career-header.menu-open .career-menu-toggle span:last-child {
    transform: translateY(-10px) rotate(-45deg)
  }

  .career-nav,
  .career-header-actions {
    grid-column: 1/-1;
    display: none;
  }

  .career-header.menu-open .career-nav,
  .career-header.menu-open .career-header-actions {
    display: flex;
  }

  .career-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px
  }

  .career-header-actions {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 8px
  }

  .career-hero,
  .career-why-layout,
  .career-department-layout,
  .career-culture,
  .career-talent-layout,
  .career-apply {
    grid-template-columns: 1fr
  }

  .career-hero-media {
    min-height: 520px
  }

  .career-hero-main {
    height: 520px
  }

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

  .career-workflow-line {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .career-workflow-line div {
    border-bottom: 1px solid rgba(255, 255, 255, .12)
  }

  .career-footer {
    grid-template-columns: 1fr
  }

  .career-footer nav {
    justify-content: flex-start
  }
}

@media(max-width:720px) {
  .career-header {
    top: 10px;
    right: 16px;
    left: 16px;
    padding: 11px 12px
  }

  .career-brand img,
  .career-footer-brand img {
    width: 150px
  }

  .career-brand span {
    font-size: 10px
  }

  .career-hero {
    min-height: 0;
    padding-top: 126px
  }

  .career-hero h1,
  .career-big-copy h2,
  .career-section-head h2,
  .career-workflow-head h2,
  .career-culture-copy h2,
  .career-apply-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
    letter-spacing: -2.6px;
  }

  .career-hero-media {
    min-height: 410px
  }

  .career-hero-main {
    height: 380px
  }

  .career-hero-inset {
    right: 14px;
    bottom: -42px;
    width: 58%;
    height: 150px;
    border-width: 8px
  }

  .career-hero-strip,
  .career-job-grid,
  .career-department-columns,
  .career-form {
    grid-template-columns: 1fr
  }

  .career-hero-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
  }

  .career-department-panel {
    min-height: 0
  }

  .career-department-panel h3 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.2px
  }

  .career-fit-list p {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .career-culture-media {
    height: 360px
  }

  .career-workflow-line {
    grid-template-columns: 1fr
  }

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

/* Career microsite light redesign */
.career-page {
  --career-navy: #071c2c;
  --career-blue: #173b58;
  --career-purple: #30256f;
  --career-soft: #f4f6f8;
  --career-line: #dbe3e8;
  --career-muted: #617482;
  --career-paper: #fff;
  background: #f4f6f8;
  color: var(--career-navy);
}

.career-page .site-preloader {
  background: #f8fafc
}

.career-page .preloader-bar span {
  background: var(--career-purple)
}

.career-header {
  top: 18px;
  min-height: 68px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(7, 28, 44, .11);
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 20px 58px rgba(7, 28, 44, .08);
  backdrop-filter: blur(18px);
}

.career-brand,
.career-footer-brand {
  color: var(--career-navy)
}

.career-brand img,
.career-footer-brand img {
  width: 158px;
  filter: none
}

.career-brand span,
.career-footer-brand span {
  border-left: 1px solid #d7e0e6;
  color: var(--career-purple)
}

.career-nav a,
.career-header-actions a {
  color: #536674
}

.career-nav a:hover,
.career-header-actions a:hover {
  color: var(--career-purple)
}

.career-submit {
  background: var(--career-purple);
  color: #fff !important
}

.career-menu-toggle span {
  background: var(--career-navy)
}

.career-hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, .86fr) minmax(420px, .74fr);
  gap: clamp(34px, 5vw, 78px);
  padding: clamp(140px, 13vw, 178px) var(--pad) clamp(66px, 6vw, 96px);
  color: var(--career-navy);
  background:
    radial-gradient(circle at 88% 12%, rgba(48, 37, 111, .12), transparent 30%),
    linear-gradient(132deg, #fff 0%, #f7f9fb 48%, #edf1f5 100%);
}

.career-hero:before {
  background:
    linear-gradient(90deg, rgba(7, 28, 44, .04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 44, .035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  opacity: .45;
}

.career-eyebrow,
.career-section-label,
.career-kicker {
  color: var(--career-purple)
}

.career-hero h1 {
  max-width: 880px;
  color: var(--career-navy);
  font-size: clamp(50px, 7.2vw, 106px);
  line-height: .96;
  letter-spacing: -5.4px;
}

.career-hero-copy>p:not(.career-eyebrow) {
  max-width: 680px;
  color: #516675;
  font-size: 17px;
}

.career-button {
  min-height: 50px;
  border: 1px solid var(--career-line);
  box-shadow: 0 12px 30px rgba(7, 28, 44, .06);
}

.career-button.primary {
  border-color: var(--career-purple);
  background: var(--career-purple);
  color: #fff
}

.career-button.ghost {
  background: #fff;
  color: var(--career-navy)
}

.career-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 28, 44, .1)
}

.career-hero-media {
  min-height: 560px
}

.career-hero-main,
.career-hero-inset {
  position: relative;
  background: #e8edf2;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .12);
}

.career-hero-main {
  height: 560px
}

.career-hero-main img,
.career-hero-inset img,
.career-culture-media img {
  filter: saturate(.98) contrast(1.01)
}

.career-hero-main figcaption {
  right: 22px;
  bottom: 22px;
  left: auto;
  max-width: 330px;
  color: var(--career-navy);
  background: rgba(255, 255, 255, .92);
  border-left: 3px solid var(--career-purple);
  box-shadow: 0 18px 36px rgba(7, 28, 44, .12);
}

.career-hero-inset {
  right: -18px;
  bottom: -26px;
  width: 42%;
  height: 210px;
  border: 8px solid #fff;
}

.career-hero-strip {
  gap: 12px;
  border-top: 0;
}

.career-hero-strip span {
  min-height: 76px;
  border: 1px solid var(--career-line);
  border-right: 1px solid var(--career-line);
  background: rgba(255, 255, 255, .84);
  color: #405464;
  box-shadow: 0 14px 34px rgba(7, 28, 44, .055);
}

.career-section {
  padding: clamp(74px, 7vw, 112px) var(--pad);
  background: #fff;
}

.career-section:nth-of-type(even) {
  background: #f4f6f8
}

.career-why-layout,
.career-culture,
.career-apply {
  margin-top: 42px
}

.career-big-copy p,
.career-section-head p,
.career-workflow-head p {
  color: var(--career-purple)
}

.career-big-copy h2,
.career-section-head h2,
.career-workflow-head h2,
.career-culture-copy h2,
.career-apply-copy h2 {
  color: var(--career-navy);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -3.1px;
}

.career-why-text p,
.career-apply-copy>p:not(.career-kicker) {
  color: var(--career-muted)
}

.career-why-text li {
  border-bottom: 1px solid var(--career-line);
  color: #30485a;
}

.career-department-layout {
  grid-template-columns: minmax(270px, .33fr) minmax(0, .67fr);
  gap: 24px;
}

.career-department-tabs {
  overflow: hidden;
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 28, 44, .045);
}

.career-department-tabs button {
  padding: 17px 20px;
  border-bottom: 1px solid var(--career-line);
  color: #536674;
  background: #fff;
}

.career-department-tabs button:last-child {
  border-bottom: 0
}

.career-department-tabs button:hover,
.career-department-tabs button.active {
  color: var(--career-purple);
  padding-left: 28px;
  background: #f5f3ff;
}

.career-department-panel {
  min-height: 520px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--career-line);
  background: #fff;
  color: var(--career-navy);
  box-shadow: 0 22px 64px rgba(7, 28, 44, .07);
}

.career-department-panel.is-changing {
  opacity: .45;
  transform: translateY(6px)
}

.career-department-panel>span {
  color: var(--career-purple)
}

.career-department-kicker {
  color: #778996
}

.career-department-panel h3 {
  color: var(--career-navy);
  font-size: clamp(36px, 4.2vw, 66px)
}

.career-department-panel>p:not(.career-department-kicker) {
  color: var(--career-muted)
}

.career-department-columns {
  border-top: 1px solid var(--career-line);
}

.career-department-columns strong {
  color: var(--career-navy)
}

.career-department-columns li {
  position: relative;
  padding-left: 16px;
  color: #536674;
}

.career-department-columns li:before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--career-purple);
}

.career-job-grid article,
.career-role-list article {
  min-height: 240px;
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 28, 44, .045);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .25s ease;
}

.career-job-grid article:hover,
.career-role-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 37, 111, .24);
  box-shadow: 0 22px 54px rgba(7, 28, 44, .085);
}

.career-job-grid span,
.career-role-list span {
  margin-bottom: 44px;
  color: var(--career-purple)
}

.career-job-grid h3,
.career-role-list strong {
  color: var(--career-navy)
}

.career-job-grid p {
  color: var(--career-muted)
}

.career-workflow {
  background: #fff !important;
  color: var(--career-navy);
}

.career-workflow .career-section-label {
  color: var(--career-purple)
}

.career-workflow-head p {
  color: var(--career-purple)
}

.career-workflow-head h2 {
  color: var(--career-navy)
}

.career-workflow-line {
  gap: 10px;
  border: 0;
}

.career-workflow-line div {
  min-height: 160px;
  border: 1px solid var(--career-line);
  border-right: 1px solid var(--career-line);
  background: #f8fafb;
}

.career-workflow-line span {
  color: var(--career-purple)
}

.career-workflow-line strong {
  color: var(--career-navy)
}

.career-culture {
  background: #f4f6f8;
  align-items: center;
}

.career-culture-media {
  height: 560px;
  background: #e8edf2;
  box-shadow: 0 22px 64px rgba(7, 28, 44, .08);
}

.career-kicker {
  color: var(--career-purple)
}

.career-fit-list {
  border-top: 1px solid var(--career-line)
}

.career-fit-list p {
  border-bottom: 1px solid var(--career-line)
}

.career-fit-list strong {
  color: var(--career-navy)
}

.career-fit-list span {
  color: var(--career-muted)
}

.career-study-list span {
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 28, 44, .035);
}

.career-talent {
  background: #f4f6f8
}

.career-role-list article {
  background: #fff
}

.career-role-list small {
  color: #778996
}

.career-apply {
  background: #fff;
  color: var(--career-navy);
  border-top: 1px solid var(--career-line);
}

.career-apply .career-section-label,
.career-apply .career-kicker {
  color: var(--career-purple)
}

.career-apply-copy h2 {
  color: var(--career-navy)
}

.career-apply-copy>p:not(.career-kicker) {
  color: var(--career-muted)
}

.career-form {
  border: 1px solid var(--career-line);
  background: #f8fafb;
  box-shadow: 0 22px 64px rgba(7, 28, 44, .07);
}

.career-form label {
  color: #536674
}

.career-form input,
.career-form select,
.career-form textarea {
  border: 1px solid var(--career-line);
  background: #fff;
  color: var(--career-navy);
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  border-color: rgba(48, 37, 111, .45);
  box-shadow: 0 0 0 4px rgba(48, 37, 111, .08);
}

.career-form input::placeholder,
.career-form textarea::placeholder {
  color: #9aa8b1
}

.career-form-actions p {
  color: #6b7f8d
}

.career-form-actions button {
  background: var(--career-purple);
  color: #fff;
}

.career-form-actions button:hover {
  background: #211958
}

.career-footer {
  border-top: 1px solid var(--career-line);
  background: #fff;
  color: #60717e;
}

.career-footer nav a {
  color: #405464
}

.career-footer nav a:hover {
  color: var(--career-purple)
}

.career-footer p {
  color: #7b8d99
}

.career-nav a.active,
.career-header-actions a.active,
.career-footer nav a.active {
  color: var(--career-purple);
}

.career-header-actions .career-submit.active {
  color: #fff !important
}

.career-subpage .career-header {
  position: fixed
}

.career-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(390px, .58fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: end;
  padding: clamp(88px, 8vw, 132px) var(--pad) clamp(58px, 6vw, 86px);
  background:
    radial-gradient(circle at 88% 10%, rgba(48, 37, 111, .11), transparent 28%),
    linear-gradient(135deg, #fff, #f6f8fa 58%, #eef2f5);
  overflow: hidden;
}

.career-page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 44, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 44, .03) 1px, transparent 1px);
  background-size: 92px 92px;
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.career-page-hero>* {
  position: relative;
  z-index: 1
}

.career-page-hero.compact {
  min-height: 68svh
}

.career-page-hero-copy h1 {
  max-width: 960px;
  margin: 18px 0 24px;
  color: var(--career-navy);
  font: 900 clamp(48px, 6.2vw, 94px)/.96 "Manrope";
  letter-spacing: -4.8px;
}

.career-page-hero-copy p:not(.career-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--career-muted);
  font-size: 17px;
  line-height: 1.72;
}

.career-page-hero-media {
  height: clamp(360px, 36vw, 560px);
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
  box-shadow: 0 24px 68px rgba(7, 28, 44, .11);
}

.career-page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
}

.career-split-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(380px, .72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  margin-top: 42px;
}

.career-detail-stack {
  display: grid;
  gap: 12px;
}

.career-detail-stack article {
  display: grid;
  grid-template-columns: 54px minmax(150px, .42fr) minmax(0, .58fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 28, 44, .04);
}

.career-detail-stack span {
  color: var(--career-purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.career-detail-stack h3 {
  margin: 0;
  color: var(--career-navy);
  font: 900 22px/1.08 "Manrope";
  letter-spacing: -.8px;
}

.career-detail-stack p {
  margin: 0;
  color: var(--career-muted);
  font-size: 14px;
  line-height: 1.65;
}

.career-note-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--career-line);
}

.career-page-split .career-note-list {
  margin-top: 0
}

.career-note-list p {
  display: grid;
  grid-template-columns: minmax(210px, .34fr) minmax(0, .66fr);
  gap: 26px;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--career-line);
}

.career-note-list strong {
  color: var(--career-navy);
  font-size: 14px;
  font-weight: 900;
}

.career-note-list span {
  color: var(--career-muted);
  font-size: 14px;
  line-height: 1.65;
}

.career-quote-panel {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  background: #f4f6f8 !important;
  border-top: 1px solid var(--career-line);
}

.career-quote-panel h2 {
  max-width: 980px;
  margin: 14px 0 0;
  color: var(--career-navy);
  font: 900 clamp(32px, 4vw, 62px)/1.02 "Manrope";
  letter-spacing: -3px;
}

.career-workflow-light {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 42px;
}

@media(max-width:1180px) {

  .career-header.menu-open .career-nav,
  .career-header.menu-open .career-header-actions {
    background: #fff;
  }

  .career-hero {
    grid-template-columns: 1fr
  }

  .career-hero-media {
    min-height: 500px
  }

  .career-hero-main {
    height: 500px
  }

  .career-workflow-line {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .career-workflow-line div {
    border: 1px solid var(--career-line)
  }

  .career-page-hero,
  .career-split-layout {
    grid-template-columns: 1fr
  }

  .career-page-hero-media {
    height: 480px
  }

  .career-detail-stack article {
    grid-template-columns: 52px 1fr
  }

  .career-detail-stack p {
    grid-column: 2
  }

  .career-quote-panel {
    align-items: flex-start;
    flex-direction: column
  }
}

@media(max-width:720px) {
  .career-header {
    top: 12px;
    right: 14px;
    left: 14px
  }

  .career-brand img,
  .career-footer-brand img {
    width: 142px
  }

  .career-hero {
    padding-top: 118px;
    gap: 28px;
  }

  .career-hero h1,
  .career-big-copy h2,
  .career-section-head h2,
  .career-workflow-head h2,
  .career-culture-copy h2,
  .career-apply-copy h2 {
    font-size: clamp(36px, 10.5vw, 52px);
    letter-spacing: -2.4px;
  }

  .career-hero-media {
    min-height: 390px
  }

  .career-hero-main {
    height: 360px
  }

  .career-hero-inset {
    right: 12px;
    bottom: -32px;
    width: 56%;
    height: 138px;
    border-width: 7px;
  }

  .career-hero-strip {
    gap: 8px
  }

  .career-hero-strip span {
    border: 1px solid var(--career-line)
  }

  .career-department-tabs button {
    padding: 15px 18px
  }

  .career-department-tabs button:hover,
  .career-department-tabs button.active {
    padding-left: 22px
  }

  .career-department-panel {
    padding: 28px 22px
  }

  .career-culture-media {
    height: 340px
  }

  .career-workflow-line {
    grid-template-columns: 1fr
  }

  .career-page-hero {
    padding-top: 72px;
    gap: 26px;
  }

  .career-page-hero-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
    letter-spacing: -2.5px;
  }

  .career-page-hero-media {
    height: 330px
  }

  .career-detail-stack article,
  .career-note-list p {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .career-detail-stack p {
    grid-column: auto
  }

  .career-quote-panel h2 {
    font-size: clamp(32px, 9.5vw, 48px);
    letter-spacing: -2.1px
  }
}

/* Career typography refinement */
.career-page .career-eyebrow,
.career-page .career-section-label,
.career-page .career-kicker {
  font-size: 9px;
  letter-spacing: 1.6px;
}

.career-page .career-nav a,
.career-page .career-header-actions a,
.career-page .career-footer nav a {
  font-size: 11px;
}

.career-page .career-hero {
  gap: clamp(28px, 4.4vw, 64px);
  padding-top: clamp(128px, 11vw, 158px);
}

.career-page .career-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: -3.7px;
}

.career-page .career-hero-copy>p:not(.career-eyebrow),
.career-page .career-page-hero-copy p:not(.career-eyebrow) {
  font-size: 15.5px;
  line-height: 1.68;
}

.career-page .career-page-hero {
  padding-top: clamp(78px, 7vw, 112px);
  padding-bottom: clamp(48px, 5vw, 72px);
}

.career-page .career-page-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.01;
  letter-spacing: -3.3px;
}

.career-page .career-big-copy h2,
.career-page .career-section-head h2,
.career-page .career-workflow-head h2,
.career-page .career-culture-copy h2,
.career-page .career-apply-copy h2 {
  font-size: clamp(30px, 3.25vw, 48px);
  line-height: 1.07;
  letter-spacing: -2.25px;
}

.career-page .career-department-panel h3 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.career-page .career-department-panel>p:not(.career-department-kicker) {
  font-size: 14.5px;
  line-height: 1.68;
}

.career-page .career-job-grid h3,
.career-page .career-role-list strong {
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.12;
  letter-spacing: -.7px;
}

.career-page .career-job-grid p,
.career-page .career-role-list small,
.career-page .career-detail-stack p,
.career-page .career-note-list span,
.career-page .career-fit-list span,
.career-page .career-why-text p,
.career-page .career-apply-copy>p:not(.career-kicker) {
  font-size: 13.5px;
}

.career-page .career-detail-stack h3 {
  font-size: 19px;
  letter-spacing: -.45px;
}

.career-page .career-quote-panel h2 {
  max-width: 820px;
  font-size: clamp(28px, 3.15vw, 46px);
  line-height: 1.07;
  letter-spacing: -2.1px;
}

.career-page .career-section {
  padding-top: clamp(64px, 6vw, 92px);
  padding-bottom: clamp(64px, 6vw, 92px);
}

.career-page .career-hero-main {
  height: 500px
}

.career-page .career-hero-media {
  min-height: 500px
}

.career-page .career-page-hero-media {
  height: clamp(320px, 31vw, 480px)
}

@media(max-width:720px) {

  .career-page .career-hero h1,
  .career-page .career-page-hero-copy h1 {
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.04;
    letter-spacing: -1.8px;
  }

  .career-page .career-big-copy h2,
  .career-page .career-section-head h2,
  .career-page .career-workflow-head h2,
  .career-page .career-culture-copy h2,
  .career-page .career-apply-copy h2,
  .career-page .career-department-panel h3,
  .career-page .career-quote-panel h2 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.08;
    letter-spacing: -1.55px;
  }

  .career-page .career-hero-copy>p:not(.career-eyebrow),
  .career-page .career-page-hero-copy p:not(.career-eyebrow) {
    font-size: 14px;
  }

  .career-page .career-hero-main {
    height: 320px
  }

  .career-page .career-hero-media {
    min-height: 348px
  }

  .career-page .career-page-hero-media {
    height: 280px
  }
}

/* Career visual content sections */
.career-page .career-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(48, 37, 111, .16);
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 28, 44, .055);
}

.career-page .career-hero-label:before {
  content: "";
  width: 28px;
  border-top: 2px solid var(--career-purple);
}

.career-page .career-hero-main {
  min-height: 0;
}

.career-life-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .82fr);
  gap: clamp(34px, 5.5vw, 82px);
  align-items: center;
  margin-top: 42px;
}

.career-life-copy h2 {
  max-width: 720px;
  margin: 14px 0 20px;
  color: var(--career-navy);
  font: 900 clamp(30px, 3.2vw, 48px)/1.07 "Manrope";
  letter-spacing: -2.2px;
}

.career-life-copy>p:not(.career-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--career-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.career-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--career-purple);
  color: var(--career-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.career-life-gallery {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  grid-template-rows: 230px 230px;
  gap: 12px;
}

.career-life-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
  box-shadow: 0 14px 38px rgba(7, 28, 44, .06);
}

.career-life-gallery .career-life-feature {
  grid-row: 1 / span 2
}

.career-life-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

.career-life-gallery figure:hover img {
  transform: scale(1.045)
}

.career-life-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--career-navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.career-values {
  background: #fff
}

.career-sigap-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, .72fr);
  gap: clamp(24px, 5vw, 84px);
  margin-top: clamp(28px, 4vw, 52px);
  padding: clamp(26px, 3.6vw, 46px) 0;
  border-top: 1px solid rgba(7, 28, 44, .12);
  border-bottom: 1px solid rgba(7, 28, 44, .12);
}

.career-sigap-intro div {
  position: relative;
}

.career-sigap-intro div+div {
  padding-left: clamp(0px, 3vw, 44px);
  border-left: 1px solid rgba(7, 28, 44, .1);
}

.career-sigap-intro span,
.career-sigap-values-title span {
  display: block;
  margin-bottom: 14px;
  color: #332a7a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.career-sigap-intro p {
  max-width: 760px;
  margin: 0;
  color: #5f7383;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
  line-height: 1.72;
}

.career-sigap-values-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(28px, 4vw, 46px);
}

.career-sigap-values-title span {
  margin: 0;
}

.career-sigap-values-title p {
  max-width: 430px;
  margin: 0;
  color: #6f7f8d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  text-align: right;
}

.career-value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.career-value-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--career-line);
  background: #f8fafb;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.career-value-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(7, 28, 44, .08);
}

.career-value-grid b {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin-bottom: 36px;
}

.career-value-grid b img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain
}

.career-value-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--career-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.career-value-grid p {
  margin: 0;
  color: var(--career-muted);
  font-size: 13px;
  line-height: 1.62;
}

.career-sigap-award {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .82fr);
  align-items: stretch;
  margin-top: clamp(24px, 3.2vw, 42px);
  border: 1px solid rgba(7, 28, 44, .12);
  background: #fff;
  box-shadow: 0 18px 54px rgba(7, 28, 44, .075);
  overflow: hidden;
}

.career-sigap-award-media {
  position: relative;
  min-height: clamp(310px, 28vw, 430px);
  margin: 0;
  background: #f4f7fa;
  overflow: hidden;
}

.career-sigap-award-media:after {
  content: none;
}

.career-sigap-award-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(34px) scale(1.045);
  transition:
    opacity .88s cubic-bezier(.22, 1, .36, 1),
    transform 1.08s cubic-bezier(.16, 1, .3, 1),
    filter .88s ease;
  filter: saturate(.84) contrast(1.02);
  pointer-events: none;
  will-change: opacity, transform;
}

.career-sigap-award-panel.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: saturate(1) contrast(1.03);
  pointer-events: auto;
}

.career-sigap-award.is-reverse .career-sigap-award-panel {
  transform: translateX(-34px) scale(1.045);
}

.career-sigap-award.is-reverse .career-sigap-award-panel.is-active {
  transform: translateX(0) scale(1);
}

.career-sigap-award-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.career-sigap-award-nav {
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  background: rgba(7, 28, 44, .72);
  backdrop-filter: blur(14px);
}

.career-sigap-award-nav button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.career-sigap-award-nav button:hover {
  color: #b9acef;
}

.career-sigap-award-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.career-sigap-award-dots button {
  width: 18px;
  height: 2px;
  padding: 0;
  background: rgba(255, 255, 255, .35);
  transition: width .3s ease, background .3s ease;
}

.career-sigap-award-dots button.is-active {
  width: 34px;
  background: #b9acef;
}

.career-sigap-award-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.4vw, 48px);
  background:
    linear-gradient(135deg, rgba(51, 42, 122, .065), rgba(255, 255, 255, 0) 42%),
    #fff;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.career-sigap-award-copy.is-switching {
  opacity: 0;
  transform: translateY(12px);
}

.career-sigap-award-copy.is-revealing {
  animation: sigapCopyReveal .62s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes sigapCopyReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.career-sigap-award-kicker {
  margin: 0 0 12px;
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.career-sigap-award-copy h3 {
  max-width: 560px;
  margin: 0;
  color: var(--career-navy);
  font: 900 clamp(28px, 2.75vw, 42px)/1.02 "Manrope";
  letter-spacing: -1.6px;
}

.career-sigap-award-copy>p:not(.career-sigap-award-kicker) {
  max-width: 540px;
  margin: 16px 0 0;
  color: #607383;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.58;
}

.career-sigap-award-quote {
  position: relative;
  max-width: 540px;
  margin: 18px 0 0;
  padding: 16px 18px 16px 20px;
  border-left: 3px solid #332a7a;
  background: rgba(51, 42, 122, .055);
  color: var(--career-navy);
  font: 800 clamp(15px, 1.05vw, 18px)/1.42 "Manrope";
  letter-spacing: -.25px;
}

.career-sigap-award-winner {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 28, 44, .12);
}

.career-sigap-award-winner span,
.career-sigap-award-winner small {
  color: #738493;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.career-sigap-award-winner strong {
  color: var(--career-navy);
  font: 900 clamp(21px, 1.75vw, 30px)/1.08 "Manrope";
  letter-spacing: -.9px;
}

.career-sigap-award-winner small {
  max-width: 460px;
  color: #607383;
  letter-spacing: .4px;
  text-transform: none;
}

.career-sigap-award-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.career-sigap-award-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(51, 42, 122, .18);
  background: rgba(51, 42, 122, .07);
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.career-testimonials {
  background: #f4f6f8
}

.career-testimonial-layout {
  display: grid;
  gap: 38px;
  margin-top: 42px;
}

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

.career-testimonial-grid article {
  overflow: hidden;
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 28, 44, .055);
}

.career-testimonial-grid img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.career-testimonial-grid div {
  padding: 24px
}

.career-testimonial-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--career-purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.career-testimonial-grid p {
  margin: 0;
  color: var(--career-navy);
  font: 800 19px/1.34 "Manrope";
  letter-spacing: -.55px;
}

.career-testimonial-grid small {
  display: block;
  margin-top: 20px;
  color: var(--career-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.career-job-visual .career-job-grid article {
  padding: 0;
  overflow: hidden;
}

.career-job-visual .career-job-grid article img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.career-job-visual .career-job-grid article span,
.career-job-visual .career-job-grid article h3,
.career-job-visual .career-job-grid article p {
  margin-right: 24px;
  margin-left: 24px;
}

.career-job-visual .career-job-grid article span {
  margin-top: 24px
}

.career-job-visual .career-job-grid article p {
  margin-bottom: 26px
}

.career-internship-feature,
.career-talent-showcase {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, .9fr);
  gap: 0;
  align-items: stretch;
  margin-top: 42px;
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 18px 52px rgba(7, 28, 44, .06);
}

.career-internship-feature figure,
.career-talent-showcase figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
}

.career-internship-feature img,
.career-talent-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-internship-feature>div,
.career-talent-card {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 56px);
}

.career-internship-feature h2,
.career-talent-card h2 {
  max-width: 720px;
  margin: 14px 0 18px;
  color: var(--career-navy);
  font: 900 clamp(30px, 3.1vw, 46px)/1.08 "Manrope";
  letter-spacing: -2.1px;
}

.career-internship-feature p:not(.career-kicker),
.career-talent-card p:not(.career-kicker) {
  margin: 0;
  color: var(--career-muted);
  font-size: 14px;
  line-height: 1.68;
}

.career-mini-steps,
.career-role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.career-mini-steps span,
.career-role-pills span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--career-line);
  background: #f8fafb;
  color: #405464;
  font-size: 11px;
  font-weight: 900;
}

.career-talent-card .career-button,
.career-internship-feature .career-button {
  width: max-content;
  margin-top: 28px
}

@media(max-width:1180px) {

  .career-life-layout,
  .career-internship-feature,
  .career-talent-showcase {
    grid-template-columns: 1fr
  }

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

  .career-sigap-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .career-sigap-intro div+div {
    padding-left: 0;
    padding-top: 22px;
    border-top: 1px solid rgba(7, 28, 44, .1);
    border-left: 0;
  }

  .career-sigap-award {
    grid-template-columns: 1fr;
  }

  .career-sigap-award-media {
    min-height: clamp(300px, 46vw, 440px);
  }

  .career-testimonial-grid {
    grid-template-columns: 1fr
  }

  .career-testimonial-grid img {
    height: 300px
  }
}

@media(max-width:720px) {
  .career-life-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .career-life-gallery .career-life-feature {
    grid-row: auto
  }

  .career-life-gallery figure {
    height: 250px
  }

  .career-value-grid {
    grid-template-columns: 1fr
  }

  .career-sigap-values-title {
    display: grid;
    align-items: start;
  }

  .career-sigap-values-title p {
    max-width: none;
    text-align: left;
  }

  .career-value-grid article {
    min-height: 0
  }

  .career-sigap-award {
    margin-top: 34px;
  }

  .career-sigap-award-media {
    min-height: 260px;
  }

  .career-sigap-award-copy {
    padding: 26px 22px 30px;
  }

  .career-sigap-award-copy h3 {
    font-size: clamp(28px, 9vw, 38px);
    letter-spacing: -1.4px;
  }

  .career-sigap-award-copy>p:not(.career-sigap-award-kicker) {
    font-size: 14px;
  }

  .career-sigap-award-quote {
    font-size: 16px;
    line-height: 1.38;
  }

  .career-value-grid b {
    width: 76px;
    height: 76px;
    margin-bottom: 24px
  }

  .career-value-grid b img {
    width: 76px;
    height: 76px
  }

  .career-testimonial-grid img {
    height: 240px
  }

  .career-job-visual .career-job-grid article img {
    height: 160px
  }

  .career-internship-feature figure,
  .career-talent-showcase figure {
    min-height: 280px
  }
}

/* Career landing: brighter executive hero */
.career-page .career-hero {
  color: var(--career-navy);
  background:
    radial-gradient(circle at 88% 8%, rgba(141, 132, 195, .16), transparent 34%),
    linear-gradient(180deg, #f7f9fb 0%, #fff 100%);
}

.career-page .career-hero:before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .66) 48%, rgba(255, 255, 255, .94)),
    linear-gradient(180deg, rgba(51, 42, 122, .07), transparent 42%);
}

.career-page .career-hero h1 {
  color: var(--career-navy);
  max-width: 760px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -3.4px;
}

.career-page .career-hero-copy>p:not(.career-eyebrow) {
  max-width: 660px;
  color: var(--career-muted);
}

.career-page .career-hero-actions .career-button.primary {
  background: var(--career-purple);
  color: #fff;
  box-shadow: 0 16px 36px rgba(51, 42, 122, .18);
}

.career-page .career-hero-actions .career-button.ghost {
  border-color: rgba(7, 28, 44, .18);
  color: var(--career-navy);
  background: #fff;
}

.career-page .career-hero-main {
  height: 520px;
  background: #e7edf2;
  box-shadow: 0 26px 70px rgba(7, 28, 44, .12);
}

.career-page .career-hero-main figcaption {
  color: var(--career-navy);
  background: rgba(255, 255, 255, .9);
  border-left-color: var(--career-purple);
}

.career-page .career-hero-strip {
  border-top-color: var(--career-line);
  background: #fff;
  box-shadow: 0 14px 40px rgba(7, 28, 44, .05);
}

.career-page .career-hero-strip span {
  min-height: 66px;
  border-right-color: var(--career-line);
  color: #405464;
}

/* Career landing video hero */
.career-page .career-hero-video-stage {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 880px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding-top: clamp(144px, 12vw, 172px);
  padding-bottom: clamp(42px, 5vw, 72px);
  color: #fff;
  background: #03111b;
  overflow: hidden;
}

.career-hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06);
  transform: scale(1.01);
}

.career-page .career-hero-video-stage:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 21, .92), rgba(3, 13, 21, .72) 44%, rgba(3, 13, 21, .32) 74%, rgba(3, 13, 21, .62)),
    linear-gradient(0deg, rgba(3, 13, 21, .86), transparent 48%, rgba(3, 13, 21, .24));
  pointer-events: none;
}

.career-page .career-hero-video-stage:after {
  content: "";
  position: absolute;
  z-index: 1;
  right: var(--pad);
  bottom: clamp(92px, 12vh, 130px);
  left: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, .08));
  pointer-events: none;
}

.career-page .career-hero-video-stage>*:not(.career-hero-video) {
  position: relative;
  z-index: 2;
}

.career-page .career-hero-video-stage .career-hero-copy {
  max-width: 880px;
}

.career-page .career-hero-video-stage .career-hero-label {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.career-page .career-hero-video-stage .career-hero-label:before {
  border-top-color: var(--accent-light);
}

.career-page .career-hero-video-stage h1 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(46px, 5.8vw, 92px);
  line-height: .96;
  letter-spacing: -4.8px;
  text-shadow: 0 18px 52px rgba(0, 0, 0, .32);
}

.career-page .career-hero-video-stage .career-hero-copy>p:not(.career-eyebrow) {
  max-width: 640px;
  color: rgba(235, 243, 248, .88);
  font-size: clamp(15px, 1.25vw, 18px);
}

.career-page .career-hero-video-stage .career-button.primary {
  background: #fff;
  color: #071c2c;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .18);
}

.career-page .career-hero-video-stage .career-button.ghost {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.career-page .career-hero-video-stage .career-hero-strip {
  align-self: end;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(46px, 9vh, 96px);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.career-page .career-hero-video-stage .career-hero-strip span {
  min-height: 78px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

@media(max-width:1180px) {
  .career-page .career-hero-video-stage {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .career-page .career-hero-video-stage {
    padding-top: 120px;
  }

  .career-page .career-hero-video-stage h1 {
    font-size: clamp(38px, 11vw, 54px);
    letter-spacing: -2.5px;
  }

  .career-page .career-hero-video-stage .career-hero-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Career footer and Life at THI page polish */
.career-page .career-footer {
  display: block;
  padding: 0 var(--pad);
  border-top: 0;
  background:
    radial-gradient(circle at 86% 0%, rgba(141, 132, 195, .16), transparent 32%),
    linear-gradient(135deg, #071c2c 0%, #061722 62%, #030d15 100%);
  color: #c4d1da;
}

.career-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) .68fr .68fr minmax(260px, .82fr);
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(56px, 6vw, 84px) 0;
}

.career-page .career-footer .career-footer-brand {
  color: #fff;
}

.career-page .career-footer .career-footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.career-page .career-footer .career-footer-brand span {
  border-left-color: rgba(255, 255, 255, .24);
  color: #fff;
}

.career-footer-intro p,
.career-footer-contact p {
  max-width: 410px;
  margin: 24px 0 0;
  color: #a9bac5;
  font-size: 13.5px;
  line-height: 1.72;
}

.career-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 18px;
  background: #fff;
  color: #071c2c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.career-footer-group h3,
.career-footer-contact h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.career-footer-group nav {
  display: grid;
  justify-content: stretch;
  gap: 12px;
}

.career-page .career-footer .career-footer-group nav a {
  color: #c4d1da;
  font-size: 13px;
  font-weight: 800;
}

.career-page .career-footer .career-footer-group nav a:hover,
.career-footer-contact a:hover {
  color: #fff;
}

.career-footer-contact {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.career-footer-contact a {
  display: inline-flex;
  margin-top: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.career-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #8fa1ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.career-life-hero {
  align-items: center;
  background:
    radial-gradient(circle at 88% 16%, rgba(141, 132, 195, .16), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.career-life-intro-grid,
.career-life-values-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, .78fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  margin-top: 42px;
}

.career-life-intro-copy h2,
.career-life-values-copy h2 {
  max-width: 760px;
  margin: 14px 0 20px;
  color: var(--career-navy);
  font: 900 clamp(34px, 3.8vw, 58px)/1.04 "Manrope";
  letter-spacing: -2.6px;
}

.career-life-intro-copy>p:not(.career-kicker),
.career-life-values-copy>p:not(.career-kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--career-muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.career-life-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.career-life-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--career-line);
  background: #fff;
  color: #405464;
  font-size: 11px;
  font-weight: 900;
}

.career-life-intro-media {
  position: relative;
  display: grid;
  gap: 14px;
}

.career-life-intro-media figure,
.career-life-values-copy figure {
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
  box-shadow: 0 20px 54px rgba(7, 28, 44, .08);
}

.career-life-intro-media figure {
  height: 430px
}

.career-life-values-copy figure {
  height: 280px;
  margin-top: 30px;
}

.career-life-intro-media img,
.career-life-values-copy img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-life-intro-media aside {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 270px;
  padding: 20px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 16px 42px rgba(7, 28, 44, .1);
}

.career-life-intro-media aside strong {
  display: block;
  color: var(--career-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.career-life-intro-media aside p {
  margin: 10px 0 0;
  color: var(--career-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.career-life-values {
  background: #f4f6f8
}

.career-life-value-list {
  display: grid;
  gap: 10px;
}

.career-life-value-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--career-line);
  background: #fff;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.career-life-value-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(7, 28, 44, .07);
}

.career-life-value-list span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--career-purple);
  color: #fff;
  font: 900 26px/1 "Manrope";
}

.career-life-value-list h3 {
  margin: 0 0 8px;
  color: var(--career-navy);
  font: 900 20px/1.1 "Manrope";
  letter-spacing: -.6px;
}

.career-life-value-list p {
  margin: 0;
  color: var(--career-muted);
  font-size: 13px;
  line-height: 1.62;
}

.career-life-testimonials {
  background: #fff
}

.career-life-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.career-life-testimonial-grid article {
  padding: 26px;
  border: 1px solid var(--career-line);
  background: #f8fafb;
  box-shadow: 0 16px 42px rgba(7, 28, 44, .04);
}

.career-photo-placeholder {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(48, 37, 111, .18);
  background:
    linear-gradient(135deg, rgba(48, 37, 111, .12), rgba(7, 28, 44, .04)),
    #fff;
}

.career-photo-placeholder span {
  color: var(--career-purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.career-life-testimonial-grid p {
  margin: 0;
  color: var(--career-navy);
  font: 800 19px/1.38 "Manrope";
  letter-spacing: -.55px;
}

.career-life-testimonial-grid strong {
  display: block;
  margin-top: 24px;
  color: #6b7f8d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.career-life-activities {
  background: #f4f6f8
}

.career-activity-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}

.career-activity-grid figure {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
}

.career-activity-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

.career-activity-grid figure:hover img {
  transform: scale(1.04)
}

.career-activity-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(3, 13, 21, .88));
  color: #fff;
}

.career-activity-grid span {
  display: block;
  margin-bottom: 10px;
  color: #d8d4ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.career-activity-grid strong {
  display: block;
  max-width: 360px;
  font: 900 22px/1.2 "Manrope";
  letter-spacing: -.7px;
}

.career-article-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .88fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  margin-top: 42px;
}

.career-article-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--career-line);
}

.career-article-list a {
  display: grid;
  gap: 12px;
  padding: 26px 0;
  border-bottom: 1px solid var(--career-line);
  color: inherit;
  transition: padding-left .35s cubic-bezier(.22, 1, .36, 1);
}

.career-article-list a:hover {
  padding-left: 16px
}

.career-article-list span {
  color: var(--career-purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.career-article-list h3 {
  margin: 0;
  color: var(--career-navy);
  font: 900 clamp(23px, 2.3vw, 34px)/1.08 "Manrope";
  letter-spacing: -1.2px;
}

.career-article-list p {
  max-width: 620px;
  margin: 0;
  color: var(--career-muted);
  font-size: 13.5px;
  line-height: 1.62;
}

@media(max-width:1180px) {
  .career-footer-main {
    grid-template-columns: 1fr 1fr
  }

  .career-life-intro-grid,
  .career-life-values-grid,
  .career-article-layout {
    grid-template-columns: 1fr
  }

  .career-life-testimonial-grid,
  .career-activity-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:720px) {
  .career-footer-main {
    grid-template-columns: 1fr;
    padding: 48px 0
  }

  .career-footer-bottom {
    flex-direction: column
  }

  .career-page .career-footer .career-footer-brand img {
    width: 162px
  }

  .career-life-intro-media figure {
    height: 320px
  }

  .career-life-intro-media aside {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
  }

  .career-life-values-copy figure {
    height: 230px
  }

  .career-life-value-list article {
    grid-template-columns: 52px 1fr;
    padding: 20px
  }

  .career-life-value-list span {
    width: 46px;
    height: 46px;
    font-size: 22px
  }

  .career-activity-grid figure {
    min-height: 300px
  }
}

/* Life at THI hero should fill the first desktop viewport */
.career-page .career-life-hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, .78fr) minmax(480px, .72fr);
  align-items: center;
  padding-top: clamp(128px, 10vw, 158px);
  padding-bottom: clamp(54px, 5vw, 76px);
  background:
    linear-gradient(180deg, #fbfcff 0%, #f2f7fb 48%, #fff 100%);
  isolation: isolate;
}

.career-page .career-life-hero:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -20% -32%;
  background:
    repeating-linear-gradient(-104deg,
      transparent 0 6.5%,
      rgba(255, 255, 255, .74) 7.4% 8.8%,
      rgba(75, 120, 255, .48) 10% 12.6%,
      rgba(42, 184, 255, .82) 14.8% 17.8%,
      rgba(48, 37, 111, .32) 20.4% 22.8%,
      rgba(121, 203, 255, .86) 25.4% 27.2%,
      transparent 30% 38%),
    linear-gradient(180deg, rgba(246, 251, 255, .82), rgba(222, 241, 255, .78));
  background-size: 240% 100%, 100% 100%;
  filter: blur(12px);
  opacity: 1;
  transform: rotate(3deg);
  animation: taka-aurora-drift-flip 34s linear infinite;
  pointer-events: none;
}

.career-page .career-life-hero:after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(72, 137, 255, .28), transparent 23%),
    radial-gradient(circle at 20% 74%, rgba(26, 144, 218, .2), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, .04) 48%, rgba(255, 255, 255, .36));
  pointer-events: none;
}

.career-life-hero-logo {
  position: absolute;
  z-index: 1;
  left: var(--pad);
  top: clamp(118px, 11vw, 166px);
  width: clamp(150px, 14vw, 250px);
  height: auto;
  opacity: .12;
  filter: saturate(.9);
  pointer-events: none;
}

.career-page .career-life-hero .career-page-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.45vw, 66px);
  line-height: 1.04;
  letter-spacing: -2.9px;
}

.career-page .career-life-hero .career-page-hero-copy p:not(.career-eyebrow) {
  max-width: 680px;
}

.career-page .career-life-hero .career-page-hero-media {
  height: clamp(520px, 62svh, 690px);
  box-shadow: 0 26px 72px rgba(7, 28, 44, .13);
}

.career-page .career-life-hero .career-page-hero-media img {
  object-position: center;
}

@media(min-width:1181px) {
  .career-page .career-life-hero {
    max-height: 100svh;
  }
}

@media(max-width:1180px) {
  .career-page .career-life-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .career-page .career-life-hero .career-page-hero-media {
    height: 480px;
  }
}

@media(max-width:720px) {
  .career-page .career-life-hero {
    padding-top: 112px;
  }

  .career-page .career-life-hero .career-page-hero-media {
    height: 320px;
  }

  .career-life-hero-logo {
    top: 96px;
    width: 138px;
    opacity: .1;
  }
}

@keyframes taka-aurora-drift {
  from {
    background-position: 0 0, 0 0
  }

  to {
    background-position: 220% 0, 0 0
  }
}

@keyframes taka-aurora-drift-flip {
  from {
    background-position: 240% 0, 0 0
  }

  to {
    background-position: 0 0, 0 0
  }
}

/* Career navbar aligned with corporate header behavior */
.career-page .career-header {
  top: 0;
  right: 0;
  left: 0;
  min-height: 100px;
  padding: 30px 5vw;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: min-height .5s cubic-bezier(.22, 1, .36, 1), padding .5s cubic-bezier(.22, 1, .36, 1), background .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.career-page .career-header.scrolled,
.career-page .career-header.menu-open {
  min-height: 71px;
  padding: 15px 8vw;
  border-bottom: 1px solid rgba(7, 28, 44, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
  backdrop-filter: blur(12px);
}

.career-page .career-brand,
.career-page .career-header:not(.scrolled):not(.menu-open) .career-header-actions a:not(.career-submit),
.career-page .career-header:not(.scrolled):not(.menu-open) .career-nav a {
  color: #fff;
}

.career-page .career-header.scrolled .career-brand,
.career-page .career-header.menu-open .career-brand {
  color: var(--career-navy);
}

.career-page .career-brand img {
  width: 185px;
  filter: brightness(0) invert(1);
  transition: filter .4s ease, width .4s ease;
}

.career-page .career-header.scrolled .career-brand img,
.career-page .career-header.menu-open .career-brand img {
  width: 168px;
  filter: none;
}

.career-page .career-brand span {
  border-left-color: rgba(255, 255, 255, .26);
  color: inherit;
}

.career-page .career-header.scrolled .career-brand span,
.career-page .career-header.menu-open .career-brand span {
  border-left-color: #d7e0e6;
  color: var(--career-purple);
}

.career-page .career-nav {
  gap: clamp(26px, 3.2vw, 48px);
}

.career-page .career-nav a,
.career-page .career-header-actions a:not(.career-submit) {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: color .35s ease;
}

.career-page .career-header.scrolled .career-nav a,
.career-page .career-header.scrolled .career-header-actions a:not(.career-submit),
.career-page .career-header.menu-open .career-nav a,
.career-page .career-header.menu-open .career-header-actions a:not(.career-submit) {
  color: #0b1026;
}

.career-page .career-nav a:after,
.career-page .career-header-actions a:not(.career-submit):after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.career-page .career-nav a:hover:after,
.career-page .career-nav a.active:after,
.career-page .career-header-actions a:not(.career-submit):hover:after,
.career-page .career-header-actions a:not(.career-submit).active:after {
  transform: scaleX(1);
  transform-origin: left;
}

.career-page .career-nav a:hover,
.career-page .career-header-actions a:not(.career-submit):hover,
.career-page .career-nav a.active,
.career-page .career-header-actions a:not(.career-submit).active {
  color: #fff;
}

.career-page .career-header.scrolled .career-nav a:hover,
.career-page .career-header.scrolled .career-header-actions a:not(.career-submit):hover,
.career-page .career-header.scrolled .career-nav a.active,
.career-page .career-header.scrolled .career-header-actions a:not(.career-submit).active,
.career-page .career-header.menu-open .career-nav a:hover,
.career-page .career-header.menu-open .career-header-actions a:not(.career-submit):hover,
.career-page .career-header.menu-open .career-nav a.active,
.career-page .career-header.menu-open .career-header-actions a:not(.career-submit).active {
  color: var(--career-purple);
}

.career-page .career-submit {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1);
  color: #fff !important;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.career-page .career-header.scrolled .career-submit,
.career-page .career-header.menu-open .career-submit {
  border-color: var(--career-purple);
  background: var(--career-purple);
  color: #fff !important;
}

.career-page .career-menu-toggle span {
  background: #fff;
}

.career-page .career-header.scrolled .career-menu-toggle span,
.career-page .career-header.menu-open .career-menu-toggle span {
  background: #0b1026;
}

.career-page .career-hero-video-stage:after,
.career-page .career-hero-video-stage .career-hero-strip {
  display: none;
}

@media(max-width:1180px) {

  .career-page .career-header,
  .career-page .career-header.scrolled {
    min-height: 80px;
    padding: 20px 5vw;
  }

  .career-page .career-header.menu-open {
    background: #0b1026;
    border-bottom: 0;
    box-shadow: none;
  }

  .career-page .career-header.menu-open .career-brand,
  .career-page .career-header.menu-open .career-nav a,
  .career-page .career-header.menu-open .career-header-actions a:not(.career-submit) {
    color: #fff;
  }

  .career-page .career-header.menu-open .career-brand img {
    filter: brightness(0) invert(1);
  }

  .career-page .career-header.menu-open .career-brand span {
    border-left-color: rgba(255, 255, 255, .26);
    color: #fff;
  }

  .career-page .career-header.menu-open .career-menu-toggle span {
    background: #fff;
  }

  .career-page .career-header.menu-open .career-nav,
  .career-page .career-header.menu-open .career-header-actions {
    background: #0b1026;
  }
}

/* Career landing employee testimonial cards */
.career-story-board {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1fr);
  align-items: stretch;
  margin-top: 42px;
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .07);
}

.career-story-photo {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
}

.career-story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.02);
}

.career-story-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 13, 21, .72), transparent 42%);
  pointer-events: none;
}

.career-story-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(5, 23, 34, .72);
  border-left: 3px solid var(--career-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.career-story-panel {
  display: grid;
  align-content: center;
  padding: clamp(34px, 4vw, 62px);
}

.career-story-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--career-purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.career-story-panel blockquote {
  margin: 0;
  color: var(--career-navy);
  font: 900 clamp(32px, 3.1vw, 52px)/1.06 "Manrope";
  letter-spacing: -2.2px;
}

.career-story-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--career-line);
}

.career-story-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--career-purple);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.career-story-person strong,
.career-story-list strong {
  display: block;
  color: var(--career-navy);
  font: 900 18px/1.1 "Manrope";
  letter-spacing: -.35px;
}

.career-story-person small,
.career-story-list small {
  display: block;
  margin-top: 6px;
  color: #6d7f8c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.career-story-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}

.career-story-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--career-line);
  background: #f8fafb;
}

.career-story-list .career-story-avatar {
  width: 52px;
  height: 52px;
  background: #fff;
  color: var(--career-purple);
  border: 1px solid rgba(48, 37, 111, .16);
}

.career-story-list p {
  margin: 12px 0 0;
  color: var(--career-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.career-page .career-testimonial-grid article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 300px;
  padding: 28px;
}

.career-page .career-testimonial-grid article>div:not(.career-employee-placeholder) {
  padding: 0;
}

.career-employee-placeholder {
  display: grid;
  width: 96px;
  height: 116px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(48, 37, 111, .14), rgba(42, 184, 255, .18)),
    #fff;
  border: 1px solid rgba(48, 37, 111, .16);
  box-shadow: 0 14px 34px rgba(7, 28, 44, .06);
}

.career-employee-placeholder span {
  color: var(--career-purple);
  font: 900 22px/1 "Manrope";
  letter-spacing: 1px;
}

.career-page .career-testimonial-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--career-navy);
  font: 900 18px/1.1 "Manrope";
  letter-spacing: -.35px;
}

.career-page .career-testimonial-grid small {
  margin-top: 8px;
}

@media(max-width:720px) {
  .career-story-board {
    grid-template-columns: 1fr;
  }

  .career-story-photo {
    min-height: 380px
  }

  .career-story-panel blockquote {
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: -1.5px;
  }

  .career-story-list {
    grid-template-columns: 1fr
  }

  .career-page .career-testimonial-grid article {
    grid-template-columns: 1fr;
  }
}

/* Career job fields as people showcase */
.career-page .career-job-visual .career-job-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.career-page .career-job-visual .career-job-grid article {
  display: grid;
  grid-template-rows: minmax(420px, 52vh) auto auto 1fr;
  min-height: 620px;
  background: #fff;
  border: 1px solid var(--career-line);
  box-shadow: 0 18px 54px rgba(7, 28, 44, .055);
}

.career-page .career-job-visual .career-job-grid article img {
  height: 100%;
  min-height: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.career-page .career-job-visual .career-job-grid article:nth-child(2) img,
.career-page .career-job-visual .career-job-grid article:nth-child(5) img {
  object-position: left center;
}

.career-page .career-job-visual .career-job-grid article:nth-child(3) img {
  object-position: center 62%;
}

.career-page .career-job-visual .career-job-grid article span {
  margin-top: 28px;
  color: var(--career-purple);
}

.career-page .career-job-visual .career-job-grid article h3 {
  max-width: 310px;
}

.career-page .career-job-visual .career-job-grid article p {
  max-width: 330px;
  margin-bottom: 32px;
}

@media(max-width:1180px) {
  .career-page .career-job-visual .career-job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:720px) {
  .career-page .career-job-visual .career-job-grid {
    grid-template-columns: 1fr;
  }

  .career-page .career-job-visual .career-job-grid article {
    grid-template-rows: minmax(360px, auto) auto auto 1fr;
    min-height: 0;
  }

  .career-page .career-job-visual .career-job-grid article img {
    min-height: 360px;
  }
}

/* Life at THI fullscreen photographic hero */
.career-page .career-life-hero {
  min-height: 100svh;
  max-height: none;
  grid-template-columns: minmax(0, 820px) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: clamp(150px, 13vw, 184px) var(--pad) clamp(112px, 9vw, 140px);
  background: #061724;
  color: #fff;
}

.career-page .career-life-hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 11, 18, .88) 0%, rgba(1, 14, 24, .72) 38%, rgba(1, 15, 25, .26) 64%, rgba(1, 13, 23, .56) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 18, 31, .12) 42%, rgba(0, 14, 25, .84) 100%);
  filter: none;
  opacity: 1;
  transform: none;
  animation: none;
  mask-image: none;
  pointer-events: none;
}

.career-page .career-life-hero:after {
  display: none;
}

.career-life-hero-logo {
  display: none;
}

.career-page .career-life-hero .career-page-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #061724;
  box-shadow: none;
}

.career-page .career-life-hero .career-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(.98) contrast(1.04);
}

.career-page .career-life-hero .career-life-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: clamp(18px, 2.2vw, 34px);
  border-left: 4px solid rgba(255, 255, 255, .86);
}

.career-page .career-life-hero .career-eyebrow {
  color: #fff;
}

.career-page .career-life-hero .career-life-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(46px, 6vw, 86px);
  line-height: .96;
  letter-spacing: -4px;
  text-shadow: 0 18px 52px rgba(0, 0, 0, .34);
}

.career-page .career-life-hero .career-life-hero-copy p:not(.career-eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.72;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.career-life-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.career-button-light {
  background: #fff;
  color: var(--career-purple);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.career-button-light:hover {
  background: #f4f7fb;
}

.career-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.career-hero-link span {
  transition: transform .26s ease;
}

.career-hero-link:hover span {
  transform: translateX(5px);
}

.career-life-hero-notes {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.career-life-hero-notes span {
  padding: 20px clamp(18px, 2vw, 34px) 0 0;
  color: #fff;
  font: 900 clamp(13px, 1.05vw, 16px)/1.2 "Manrope";
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .32);
}

@media(max-width:980px) {
  .career-page .career-life-hero {
    grid-template-columns: 1fr;
    padding-top: 132px;
    padding-bottom: 188px;
  }

  .career-page .career-life-hero:before {
    background:
      linear-gradient(90deg, rgba(1, 11, 18, .86), rgba(1, 14, 24, .48)),
      linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 14, 25, .86));
  }

  .career-page .career-life-hero .career-life-hero-copy h1 {
    font-size: clamp(42px, 10vw, 68px);
    letter-spacing: -2.8px;
  }

  .career-life-hero-notes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .career-life-hero-notes span {
    padding-top: 8px;
    letter-spacing: .12em;
  }
}

/* SIGAP values redesigned for Life at THI */
.career-page .career-life-values {
  background: #f6f8fa;
}

.career-life-values-head {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 54px);
}

.career-life-values-head .career-life-values-copy p:not(.career-kicker) {
  max-width: 640px;
}

.career-life-values-head>strong {
  justify-self: end;
  color: #332a7a;
  font: 900 clamp(72px, 10vw, 152px)/.76 "Manrope";
  letter-spacing: -8px;
}

.career-sigap-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.career-sigap-showcase article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 44, .09);
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
  box-shadow: 0 18px 52px rgba(7, 28, 44, .045);
}

.career-sigap-showcase article:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #332a7a;
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.career-sigap-showcase article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(7, 28, 44, .075);
}

.career-sigap-showcase article:hover:before {
  transform: scaleX(1);
}

.career-sigap-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  justify-items: center;
  min-height: 230px;
  padding: 30px 24px 28px;
  text-align: center;
}

.career-sigap-showcase .career-sigap-copy span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  background: transparent;
  border-radius: 0;
}

.career-sigap-showcase .career-sigap-copy span img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain
}

.career-sigap-showcase .career-sigap-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain
}

.career-sigap-showcase h3 {
  margin: 0 0 10px;
  color: var(--career-navy);
  font: 900 clamp(17px, 1.25vw, 22px)/1.08 "Manrope";
  letter-spacing: -.7px;
}

.career-sigap-showcase p {
  margin: 0;
  color: #607383;
  font-size: 12.5px;
  line-height: 1.58;
}

@media(max-width:1280px) {
  .career-sigap-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .career-sigap-showcase article:nth-child(4),
  .career-sigap-showcase article:nth-child(5) {
    grid-column: span 1;
  }
}

@media(max-width:820px) {
  .career-life-values-head {
    grid-template-columns: 1fr;
  }

  .career-life-values-head>strong {
    justify-self: start;
    font-size: clamp(58px, 18vw, 96px);
    letter-spacing: -4px;
  }

  .career-sigap-showcase {
    grid-template-columns: 1fr;
  }

  .career-sigap-showcase article {
    grid-template-columns: 1fr;
  }
}

@media(max-width:560px) {
  .career-sigap-showcase article {
    grid-template-columns: 1fr;
  }
}

/* Employee voices redesigned as portrait testimonials */
.career-page .career-life-testimonials {
  background: #fff;
}

.career-page .career-voice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 42px;
}

.career-page .career-voice-list article {
  display: grid;
  grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr);
  gap: 0;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 44, .09);
  background: #f8fafb;
  box-shadow: 0 18px 56px rgba(7, 28, 44, .045);
}

.career-page .career-voice-list figure {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 32%, rgba(48, 37, 111, .1), transparent 32%),
    linear-gradient(135deg, #f7f9fb 0%, #e6edf3 100%);
  overflow: hidden;
}

.career-voice-silhouette {
  position: relative;
  width: clamp(150px, 15vw, 220px);
  height: clamp(190px, 18vw, 265px);
  opacity: .72;
}

.career-voice-silhouette:before,
.career-voice-silhouette:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, rgba(48, 37, 111, .28), rgba(7, 28, 44, .13));
}

.career-voice-silhouette:before {
  top: 18px;
  width: clamp(74px, 7vw, 102px);
  height: clamp(74px, 7vw, 102px);
  border-radius: 50%;
}

.career-voice-silhouette:after {
  bottom: 18px;
  width: 100%;
  height: clamp(92px, 9vw, 128px);
  border-radius: 999px 999px 34px 34px;
}

.career-page .career-voice-list article:hover .career-voice-silhouette {
  opacity: .86;
}

.career-voice-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.career-voice-copy span {
  color: var(--career-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.career-voice-copy blockquote {
  position: relative;
  max-width: 820px;
  margin: 18px 0 30px;
  color: var(--career-navy);
  font: 900 clamp(27px, 3.2vw, 52px)/1.04 "Manrope";
  letter-spacing: -2.2px;
}

.career-voice-copy blockquote:before {
  content: "“";
  position: absolute;
  left: -.45em;
  top: -.16em;
  color: rgba(48, 37, 111, .16);
  font-size: 1.85em;
  line-height: 1;
}

.career-voice-copy strong {
  display: block;
  margin: 0;
  color: var(--career-navy);
  font: 900 18px/1.1 "Manrope";
  letter-spacing: -.35px;
  text-transform: none;
}

.career-voice-copy small {
  display: block;
  margin-top: 7px;
  color: #6f8190;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media(min-width:1181px) {
  .career-page .career-voice-list article:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(230px, .34fr);
  }

  .career-page .career-voice-list article:nth-child(even) figure {
    grid-column: 2;
    grid-row: 1;
  }

  .career-page .career-voice-list article:nth-child(even) .career-voice-copy {
    grid-column: 1;
    grid-row: 1;
  }
}

@media(max-width:900px) {

  .career-page .career-voice-list article,
  .career-page .career-voice-list article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .career-page .career-voice-list figure {
    min-height: 520px;
  }

  .career-voice-copy {
    padding: 30px;
  }

  .career-voice-copy blockquote {
    font-size: clamp(25px, 7vw, 42px);
  }
}

/* Life at THI employee voices slideshow */
.career-page .career-employee-voice-slider {
  margin-top: clamp(28px, 4vw, 48px);
}

.career-page .career-employee-voice-stage {
  position: relative;
  min-height: clamp(390px, 35vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(7, 28, 44, .1);
  background: #071c2c;
  box-shadow: 0 26px 80px rgba(7, 28, 44, .1);
}

.career-page .career-employee-voice-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 83% 16%, rgba(141, 132, 195, .28), transparent 28%),
    linear-gradient(115deg, rgba(51, 42, 122, .22), transparent 48%);
}

.career-page .career-employee-voice-stage article {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(320px, 42%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(36px) scale(.985);
  filter: blur(10px);
  transition:
    opacity .62s ease,
    transform .82s cubic-bezier(.2, 1, .25, 1),
    filter .62s ease;
}

.career-page .career-employee-voice-stage article.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.career-page .career-employee-voice-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5.2vw, 86px);
  color: #fff;
}

.career-page .career-employee-voice-copy:before {
  content: "“";
  position: absolute;
  top: clamp(18px, 2.6vw, 38px);
  left: clamp(30px, 4.4vw, 72px);
  color: rgba(255, 255, 255, .11);
  font: 900 clamp(96px, 11vw, 176px)/.75 "Manrope";
  letter-spacing: -.08em;
}

.career-page .career-employee-voice-copy span {
  position: relative;
  z-index: 2;
  width: max-content;
  margin-bottom: clamp(18px, 2.2vw, 30px);
  color: #c7c2ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.career-page .career-employee-voice-copy blockquote {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0;
  color: #fff;
  font: 900 clamp(30px, 3.4vw, 58px)/1.02 "Manrope";
  letter-spacing: -2.2px;
  text-wrap: balance;
}

.career-page .career-employee-voice-copy div {
  position: relative;
  z-index: 2;
  margin-top: clamp(30px, 3.6vw, 48px);
  padding-left: 18px;
  border-left: 3px solid #8d84c3;
}

.career-page .career-employee-voice-copy strong {
  display: block;
  color: #fff;
  font: 900 clamp(18px, 1.35vw, 24px)/1.1 "Manrope";
  letter-spacing: -.45px;
}

.career-page .career-employee-voice-copy small {
  display: block;
  margin-top: 8px;
  color: #b8c8d1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.career-page .career-employee-voice-photo {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 100%;
  margin: 0;
  place-items: end center;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, .88), transparent 34%),
    linear-gradient(145deg, #edf3f6 0%, #dce6ec 100%);
  overflow: hidden;
}

.career-page .career-employee-voice-photo .career-voice-silhouette {
  width: clamp(220px, 20vw, 330px);
  height: clamp(280px, 25vw, 410px);
  opacity: .9;
  transform: translateY(28px) scale(.96);
  transition: transform .82s cubic-bezier(.2, 1, .25, 1), opacity .62s ease;
}

.career-page .career-employee-voice-stage article.is-active .career-voice-silhouette {
  opacity: 1;
  transform: translateY(12px) scale(1);
}

.career-page .career-employee-voice-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .82s cubic-bezier(.2, 1, .25, 1), filter .62s ease;
}

.career-page .career-employee-voice-stage article.is-active .career-employee-voice-photo img {
  transform: scale(1.018);
  filter: saturate(1.02) contrast(1.04);
}

.career-page .career-employee-voice-copy .career-employee-voice-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-left: 0;
  border-left: 0;
}

.career-page .career-employee-voice-values em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(199, 194, 255, .22);
  background: rgba(199, 194, 255, .1);
  color: #d9d6ff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.career-page .career-employee-voice-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-top: 12px;
  align-items: stretch;
}

.career-page .career-employee-voice-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.career-page .career-employee-voice-tabs button,
.career-page .career-employee-voice-arrows button {
  position: relative;
  color: #071c2c;
  background: #fff;
  border: 1px solid #d8e1e7;
  cursor: pointer;
  transition:
    transform .35s cubic-bezier(.22, 1, .36, 1),
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}

.career-page .career-employee-voice-tabs button {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  padding: 16px 18px;
  text-align: left;
  overflow: hidden;
}

.career-page .career-employee-voice-tabs button:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: #332a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.career-page .career-employee-voice-tabs button:hover,
.career-page .career-employee-voice-tabs button.is-active,
.career-page .career-employee-voice-arrows button:hover {
  transform: translateY(-3px);
  border-color: #8d84c3;
  background: #f8fafb;
  box-shadow: 0 18px 48px rgba(51, 42, 122, .1);
}

.career-page .career-employee-voice-tabs button.is-active:before {
  transform: scaleX(1);
}

.career-page .career-employee-voice-tabs span {
  grid-row: 1/3;
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.career-page .career-employee-voice-tabs strong {
  color: #071c2c;
  font: 900 15px/1.12 "Manrope";
  letter-spacing: -.35px;
}

.career-page .career-employee-voice-tabs small {
  margin-top: 4px;
  color: #6f8190;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.career-page .career-employee-voice-arrows {
  display: grid;
  grid-template-columns: repeat(2, 56px);
  gap: 10px;
}

.career-page .career-employee-voice-arrows button {
  display: grid;
  min-height: 78px;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-stage {
  min-height: clamp(500px, 39vw, 660px);
  background: #fff;
  border-color: rgba(7, 28, 44, .16);
  box-shadow: 0 24px 70px rgba(7, 28, 44, .08);
}

.career-page .career-sigap-recognition-slider .career-employee-voice-stage:before {
  content: none;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-stage article {
  grid-template-columns: minmax(0, 54%) minmax(360px, 46%);
}

.career-page .career-sigap-recognition-slider .career-employee-voice-photo {
  order: 1;
  align-items: center;
  justify-items: center;
  padding: 0;
  background: #eef3f6;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-copy {
  order: 2;
  padding: clamp(34px, 4.8vw, 72px);
  background: #fff;
  color: #071c2c;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-stage article.is-active .career-employee-voice-photo img {
  transform: scale(1);
  filter: none;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-copy:before {
  color: rgba(51, 42, 122, .08);
}

.career-page .career-sigap-recognition-slider .career-employee-voice-copy span {
  color: #332a7a;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-copy blockquote {
  max-width: 720px;
  color: #071c2c;
  font-size: clamp(26px, 2.65vw, 48px);
  line-height: 1.08;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-copy div:not(.career-employee-voice-values) {
  margin-top: clamp(24px, 3vw, 38px);
  border-left-color: #332a7a;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-copy strong {
  color: #071c2c;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-copy small {
  color: #6f8190;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-values em {
  border-color: rgba(51, 42, 122, .18);
  background: #f4f6fb;
  color: #332a7a;
}

@media(max-width:980px) {
  .career-page .career-employee-voice-stage {
    min-height: 660px;
  }

  .career-page .career-employee-voice-stage article {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) minmax(270px, 38%);
  }

  .career-page .career-employee-voice-photo {
    place-items: end center;
  }

  .career-page .career-employee-voice-copy blockquote {
    font-size: clamp(26px, 6vw, 44px);
  }

  .career-page .career-employee-voice-bottom {
    grid-template-columns: 1fr;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-stage {
    min-height: 790px;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-stage article {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(330px, 44%) minmax(0, 56%);
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-photo,
  .career-page .career-sigap-recognition-slider .career-employee-voice-copy {
    order: initial;
  }
}

@media(max-width:640px) {
  .career-page .career-employee-voice-stage {
    min-height: 680px;
  }

  .career-page .career-employee-voice-copy {
    padding: 34px 26px;
  }

  .career-page .career-employee-voice-copy blockquote {
    font-size: clamp(23px, 7vw, 34px);
    letter-spacing: -1.2px;
  }

  .career-page .career-employee-voice-tabs {
    grid-template-columns: 1fr;
  }

  .career-page .career-employee-voice-arrows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-stage {
    min-height: 780px;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-stage article {
    grid-template-rows: minmax(240px, 34%) minmax(0, 66%);
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-photo {
    padding: 12px;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-copy blockquote {
    font-size: clamp(22px, 6.5vw, 32px);
  }
}

/* Life at THI activity culture board */
.career-page .career-life-activities {
  background: #f4f6f8;
}

.career-page .career-activity-board {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .58fr);
  gap: 18px;
  margin-top: 42px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.career-page .career-life-activities .career-section-head h2 {
  max-width: 1180px;
  font-size: clamp(42px, 4.4vw, 74px);
  line-height: .98;
}

.career-activity-main {
  position: relative;
  isolation: isolate;
  min-height: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform .52s cubic-bezier(.22, 1, .36, 1);
}

.career-activity-main:before,
.career-activity-main:after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.career-activity-main:before {
  inset: -12%;
  background: linear-gradient(115deg, transparent 0 31%, rgba(51, 42, 122, .92) 31% 39%, rgba(141, 132, 195, .88) 39% 43%, transparent 43% 100%);
  transform: translateX(-118%) skewX(-8deg);
  opacity: 0;
}

.career-activity-main:after {
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #8d84c3;
  transform: scaleY(0);
  transform-origin: top;
  box-shadow: 0 0 28px rgba(141, 132, 195, .55);
}

.career-activity-main.is-switching {
  transform: scale(.992)
}

.career-activity-main.is-switching:before {
  animation: career-activity-wipe .72s cubic-bezier(.65, 0, .35, 1) both
}

.career-activity-main.is-switching:after {
  animation: career-activity-rail .72s cubic-bezier(.65, 0, .35, 1) both
}

.career-activity-main.is-switching .career-activity-current {
  animation: career-activity-image-out .28s cubic-bezier(.65, 0, .35, 1) both;
}

.career-activity-main.is-revealing .career-activity-current {
  animation: career-activity-image-in .62s cubic-bezier(.22, 1, .36, 1) both;
}

.career-activity-main.is-revealing figcaption {
  animation: career-activity-caption-in .62s cubic-bezier(.22, 1, .36, 1) both;
}

.career-activity-main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: center;
  filter: saturate(.97) contrast(1.03);
  border: 1px solid rgba(7, 28, 44, .08);
  box-shadow: 0 24px 72px rgba(7, 28, 44, .08);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

.career-activity-main:hover img {
  transform: scale(1.035);
}

.career-activity-main figcaption {
  position: static;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: clamp(16px, 1.7vw, 22px);
  border: 1px solid rgba(7, 28, 44, .1);
  border-left: 5px solid #332a7a;
  background: #fff;
  color: var(--career-navy);
  box-shadow: 0 18px 48px rgba(7, 28, 44, .055);
}

.career-activity-main span,
.career-activity-stories span {
  display: block;
  color: #d8d4ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.career-activity-main strong {
  display: block;
  max-width: 760px;
  margin-top: 0;
  font: 900 clamp(18px, 1.25vw, 23px)/1.14 "Manrope";
  letter-spacing: -1px;
}

.career-activity-main figcaption span {
  color: var(--career-purple);
}

@keyframes career-activity-wipe {
  0% {
    opacity: 0;
    transform: translateX(-118%) skewX(-8deg)
  }

  18% {
    opacity: 1
  }

  58% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: translateX(118%) skewX(-8deg)
  }
}

@keyframes career-activity-rail {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  38% {
    transform: scaleY(1);
    transform-origin: top
  }

  39% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

@keyframes career-activity-image-out {
  from {
    opacity: 1;
    transform: scale(1)
  }

  to {
    opacity: .34;
    transform: scale(1.035) translateY(-6px)
  }
}

@keyframes career-activity-image-in {
  from {
    opacity: .42;
    transform: scale(1.055) translateY(10px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

@keyframes career-activity-caption-in {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(prefers-reduced-motion:reduce) {

  .career-activity-main.is-switching:before,
  .career-activity-main.is-switching:after,
  .career-activity-main.is-switching .career-activity-current,
  .career-activity-main.is-revealing .career-activity-current,
  .career-activity-main.is-revealing figcaption {
    animation: none;
  }
}

.career-activity-stories {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  min-height: 100%;
  padding: 0;
  background: transparent;
}

.career-activity-stories article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .42fr) 1fr;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 44, .1);
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 28, 44, .055);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .3s ease, box-shadow .3s ease, background .3s ease, opacity .3s ease;
}

.career-activity-stories article:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #332a7a;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.career-activity-stories article:hover,
.career-activity-stories article:focus-visible {
  transform: translateX(-5px);
  border-color: rgba(51, 42, 122, .34);
  background: #fff;
  box-shadow: 0 24px 58px rgba(7, 28, 44, .095);
  outline: 0;
}

.career-activity-stories article.is-active {
  border-color: rgba(51, 42, 122, .55);
  background: linear-gradient(90deg, rgba(51, 42, 122, .07), #fff 48%);
  box-shadow: 0 24px 64px rgba(51, 42, 122, .13);
}

.career-activity-stories article.is-active:before {
  transform: scaleY(1)
}

.career-activity-stories img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.03);
}

.career-activity-stories div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
}

.career-activity-stories span {
  color: var(--career-purple);
}

.career-activity-stories h3 {
  margin: 10px 0 0;
  color: var(--career-navy);
  font: 900 clamp(14px, .95vw, 18px)/1.16 "Manrope";
  letter-spacing: -.8px;
}

@media(max-width:1080px) {
  .career-page .career-activity-board {
    grid-template-columns: 1fr;
  }

  .career-activity-main img {
    aspect-ratio: 16 / 9;
  }

  .career-activity-stories {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .career-activity-stories article {
    min-height: 190px;
    aspect-ratio: auto;
  }
}

@media(max-width:680px) {
  .career-activity-main img {
    aspect-ratio: 4 / 4.7;
  }

  .career-activity-main figcaption {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .career-activity-main strong {
    font-size: clamp(20px, 6vw, 28px);
    letter-spacing: -1px;
  }

  .career-activity-stories article {
    grid-template-columns: 1fr;
  }

  .career-activity-stories img {
    height: 240px;
  }
}

/* Career departments page redesign */
.career-page .career-dept-hero {
  min-height: 92svh;
  grid-template-columns: minmax(0, 820px) minmax(0, 1fr);
  align-items: end;
  gap: 0;
  padding: clamp(152px, 13vw, 190px) var(--pad) clamp(120px, 9vw, 146px);
  background: #061724;
  color: #fff;
}

.career-page .career-dept-hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 11, 18, .92) 0%, rgba(2, 16, 28, .78) 42%, rgba(3, 20, 34, .28) 66%, rgba(3, 16, 28, .62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .24), rgba(0, 15, 27, .18) 48%, rgba(0, 14, 25, .9) 100%);
  filter: none;
  opacity: 1;
  transform: none;
  animation: none;
  mask-image: none;
  pointer-events: none;
}

.career-page .career-dept-hero .career-page-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #061724;
  box-shadow: none;
}

.career-page .career-dept-hero .career-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.04);
}

.career-page .career-dept-hero .career-dept-placeholder {
  width: 100%;
  height: 100%;
}

.career-page .career-dept-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-left: clamp(18px, 2.2vw, 34px);
  border-left: 4px solid rgba(255, 255, 255, .86);
}

.career-page .career-dept-hero .career-eyebrow {
  color: #fff;
}

.career-page .career-dept-hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(50px, 6.4vw, 94px);
  line-height: .94;
  letter-spacing: -4.6px;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .34);
}

.career-page .career-dept-hero-copy p:not(.career-eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.72;
}

.career-dept-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.career-dept-hero-notes {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.career-dept-hero-notes span {
  padding: 20px clamp(18px, 2vw, 34px) 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.career-dept-hero-notes strong {
  color: #fff;
  font: 900 clamp(18px, 1.5vw, 27px)/1 "Manrope";
  letter-spacing: -.4px;
  text-transform: none;
}

.career-dept-showcase {
  padding-right: 0;
  padding-left: 0;
  background: #f4f6f8;
}

.career-dept-showcase>.career-section-label,
.career-dept-showcase .career-section-head {
  width: min(1120px, calc(100% - (var(--pad) * 2)));
  margin-right: var(--pad);
  margin-left: var(--pad);
}

.career-dept-showcase .career-section-head {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.career-dept-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(7, 28, 44, .08);
}

.career-dept-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(760px, 92svh);
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(7, 28, 44, .08);
  background: #fff;
  box-shadow: none;
  transform-origin: center bottom;
}

.career-dept-block:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.career-dept-block.reveal {
  opacity: 0;
  transform: translateY(58px) scale(.985);
  transition:
    opacity .82s ease,
    transform .95s cubic-bezier(.22, 1, .36, 1);
}

.career-dept-block.reveal.visible {
  opacity: 1;
  transform: none;
}

.career-dept-block figure {
  margin: 0;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: #dfe7ee;
}

.career-dept-block:nth-child(even) figure {
  grid-column: 2;
  grid-row: 1;
}

.career-dept-block.reveal figure {
  clip-path: inset(0 18% 0 0);
  transform: translateX(-18px);
  transition:
    clip-path 1.05s cubic-bezier(.22, 1, .36, 1),
    transform 1.05s cubic-bezier(.22, 1, .36, 1);
}

.career-dept-block:nth-child(even).reveal figure {
  clip-path: inset(0 0 0 18%);
  transform: translateX(18px);
}

.career-dept-block.reveal.visible figure,
.career-dept-block:nth-child(even).reveal.visible figure {
  clip-path: inset(0);
  transform: none;
}

.career-dept-block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.03);
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.career-dept-block:hover img {
  transform: scale(1.035);
}

.career-dept-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .56), transparent 20%),
    radial-gradient(circle at 50% 31%, rgba(141, 132, 195, .2), transparent 31%),
    linear-gradient(145deg, #eef3f7 0%, #dbe5ec 48%, #f7f9fb 100%);
  overflow: hidden;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.career-dept-placeholder:before,
.career-dept-placeholder:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, rgba(48, 37, 111, .28), rgba(7, 28, 44, .14));
}

.career-dept-placeholder:before {
  top: 24%;
  width: clamp(88px, 8vw, 132px);
  height: clamp(88px, 8vw, 132px);
  border-radius: 50%;
}

.career-dept-placeholder:after {
  bottom: 18%;
  width: clamp(170px, 16vw, 260px);
  height: clamp(112px, 10vw, 164px);
  border-radius: 999px 999px 38px 38px;
}

.career-dept-placeholder span {
  position: absolute;
  inset: clamp(22px, 2.4vw, 42px);
  border: 1px solid rgba(48, 37, 111, .1);
}

.career-dept-placeholder-hero {
  background:
    radial-gradient(circle at 72% 32%, rgba(141, 132, 195, .24), transparent 26%),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .18), transparent 21%),
    linear-gradient(135deg, #0b2435 0%, #172c46 47%, #31276e 100%);
}

.career-dept-placeholder-hero:before,
.career-dept-placeholder-hero:after {
  background: linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(199, 194, 255, .26));
}

.career-dept-placeholder-hero span {
  border-color: rgba(255, 255, 255, .12);
}

.career-dept-block:hover .career-dept-placeholder {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.career-dept-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: clamp(46px, 6vw, 96px);
  background: #fff;
}

.career-dept-block.reveal .career-dept-copy {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity .72s ease .16s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .16s;
}

.career-dept-block:nth-child(even).reveal .career-dept-copy {
  transform: translateX(-28px);
}

.career-dept-block.reveal.visible .career-dept-copy,
.career-dept-block:nth-child(even).reveal.visible .career-dept-copy {
  opacity: 1;
  transform: none;
}

.career-dept-copy>span {
  color: var(--career-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.career-dept-copy h2 {
  max-width: 720px;
  margin: 18px 0 20px;
  color: var(--career-navy);
  font: 900 clamp(42px, 4.8vw, 78px)/.96 "Manrope";
  letter-spacing: -3.8px;
}

.career-dept-copy>p {
  max-width: 680px;
  margin: 0;
  color: #607383;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
}

.career-dept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 680px;
  margin-top: 28px;
}

.career-dept-tags b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(48, 37, 111, .14);
  background: #f6f8fa;
  color: #344959;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.career-dept-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
  margin-top: 36px;
}

.career-dept-detail-grid div {
  padding: 18px 0 0;
  border-top: 1px solid rgba(7, 28, 44, .12);
}

.career-dept-detail-grid strong {
  display: block;
  color: var(--career-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.career-dept-detail-grid p {
  margin: 10px 0 0;
  color: #6b7f8d;
  font-size: 13.5px;
  line-height: 1.65;
}

@media(max-width:1180px) {
  .career-page .career-dept-hero {
    min-height: 86svh;
    grid-template-columns: 1fr;
    padding-bottom: 180px;
  }

  .career-dept-hero-notes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .career-dept-hero-notes span {
    padding-top: 8px;
  }

  .career-dept-block,
  .career-dept-block:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .career-dept-block:nth-child(even) figure {
    grid-column: auto;
    grid-row: auto;
  }

  .career-dept-block.reveal figure,
  .career-dept-block:nth-child(even).reveal figure {
    clip-path: inset(0 0 12% 0);
    transform: translateY(18px);
  }

  .career-dept-block.reveal.visible figure,
  .career-dept-block:nth-child(even).reveal.visible figure {
    clip-path: inset(0);
    transform: none;
  }

  .career-dept-block.reveal .career-dept-copy,
  .career-dept-block:nth-child(even).reveal .career-dept-copy {
    transform: translateY(24px);
  }

  .career-dept-block.reveal.visible .career-dept-copy,
  .career-dept-block:nth-child(even).reveal.visible .career-dept-copy {
    transform: none;
  }

  .career-dept-block figure {
    height: auto;
    min-height: 440px;
  }
}

@media(max-width:720px) {

  .career-dept-showcase>.career-section-label,
  .career-dept-showcase .career-section-head {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }

  .career-page .career-dept-hero {
    min-height: 92svh;
    padding-top: 122px;
  }

  .career-page .career-dept-hero-copy h1 {
    font-size: clamp(42px, 12vw, 64px);
    letter-spacing: -2.8px;
  }

  .career-dept-copy {
    padding: 28px;
    min-height: 0;
  }

  .career-dept-copy h2 {
    font-size: clamp(31px, 10vw, 46px);
    letter-spacing: -2.2px;
  }

  .career-dept-block figure {
    min-height: 300px;
  }
}

/* Unified career navigation motion */
.career-page .career-nav a,
.career-page .career-header-actions a:not(.career-submit) {
  transform: none;
  transition: color .35s ease;
}

.career-page .career-nav a:hover,
.career-page .career-header-actions a:not(.career-submit):hover {
  transform: none;
}

.career-page .career-nav a:after,
.career-page .career-header-actions a:not(.career-submit):after {
  height: 1px;
  bottom: -7px;
  background: currentColor;
}

.career-page .career-submit:hover {
  border-color: #fff;
  background: #fff;
  color: var(--career-purple) !important;
}

.career-page .career-header.scrolled .career-submit:hover,
.career-page .career-header.menu-open .career-submit:hover {
  border-color: var(--career-navy);
  background: var(--career-navy);
  color: #fff !important;
}

/* Career job portal */
.career-job-portal-page {
  background: #f4f6f8;
}

.career-page .career-jobs-hero {
  min-height: 92svh;
  grid-template-columns: minmax(0, 850px) minmax(0, 1fr);
  align-items: end;
  gap: 0;
  padding: clamp(152px, 13vw, 190px) var(--pad) clamp(120px, 9vw, 146px);
  background: #061724;
  color: #fff;
}

.career-page .career-jobs-hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 11, 18, .92) 0%, rgba(2, 16, 28, .78) 42%, rgba(3, 20, 34, .3) 68%, rgba(3, 16, 28, .68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 15, 27, .16) 48%, rgba(0, 14, 25, .88) 100%);
  filter: none;
  opacity: 1;
  transform: none;
  animation: none;
  mask-image: none;
  pointer-events: none;
}

.career-page .career-jobs-hero .career-page-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #061724;
  box-shadow: none;
}

.career-page .career-jobs-hero .career-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.96) contrast(1.04);
}

.career-page .career-jobs-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-left: clamp(18px, 2.2vw, 34px);
  border-left: 4px solid rgba(255, 255, 255, .86);
}

.career-page .career-jobs-hero .career-eyebrow {
  color: #fff;
}

.career-page .career-jobs-hero-copy h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(50px, 6.3vw, 94px);
  line-height: .94;
  letter-spacing: -4.6px;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .34);
}

.career-page .career-jobs-hero-copy p:not(.career-eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.72;
}

.career-jobs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.career-jobs-hero-notes {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: clamp(30px, 4vw, 54px);
  left: var(--pad);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.career-jobs-hero-notes span {
  padding: 20px clamp(18px, 2vw, 34px) 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.career-jobs-hero-notes strong {
  color: #fff;
  font: 900 clamp(18px, 1.5vw, 27px)/1 "Manrope";
  letter-spacing: -.4px;
  text-transform: none;
}

.career-job-portal {
  background: #f4f6f8;
}

.career-job-portal-head {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(360px, .52fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-top: 34px;
}

.career-job-portal-head h2 {
  max-width: 830px;
  margin: 14px 0 0;
  color: var(--career-navy);
  font: 900 clamp(38px, 5.2vw, 82px)/.96 "Manrope";
  letter-spacing: -4.2px;
}

.career-job-portal-head>p {
  margin: 0;
  color: #607383;
  font-size: 16px;
  line-height: 1.75;
}

.career-job-portal-shell {
  display: grid;
  grid-template-columns: minmax(270px, .31fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: clamp(34px, 5vw, 62px);
}

.career-job-filter-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(7, 28, 44, .09);
  background: #fff;
  box-shadow: 0 18px 52px rgba(7, 28, 44, .045);
}

.career-job-filter-panel>span,
.career-job-results-top span {
  color: var(--career-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.career-job-filters {
  display: grid;
  gap: 8px;
}

.career-job-filters button {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(7, 28, 44, .1);
  background: #f8fafb;
  color: #344959;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: background .32s ease, border-color .32s ease, color .32s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
}

.career-job-filters button:hover,
.career-job-filters button.active {
  border-color: var(--career-purple);
  background: var(--career-purple);
  color: #fff;
  transform: translateX(4px);
}

.career-job-filter-note {
  padding-top: 22px;
  border-top: 1px solid rgba(7, 28, 44, .12);
}

.career-job-filter-note strong {
  display: block;
  color: var(--career-navy);
  font: 900 18px/1.15 "Manrope";
  letter-spacing: -.4px;
}

.career-job-filter-note p {
  margin: 12px 0 18px;
  color: #607383;
  font-size: 13.5px;
  line-height: 1.68;
}

.career-job-filter-note a,
.career-job-results-top a,
.career-opportunity-actions a,
.career-job-apply-disabled {
  color: var(--career-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.career-job-apply-disabled {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #7b8d9a;
}

.career-job-results {
  min-width: 0;
}

.career-job-results-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.career-opportunity-list {
  display: grid;
  gap: 16px;
}

.career-job-loading,
.career-job-empty {
  padding: 32px;
  border: 1px solid rgba(7, 28, 44, .09);
  background: #fff;
  color: #607383;
}

.career-job-empty span {
  display: block;
  color: var(--career-navy);
  font: 900 24px/1.1 "Manrope";
}

.career-job-empty p {
  max-width: 560px;
  color: #607383;
}

.career-job-empty .career-job-empty-action {
  margin: 16px 0 0;
  color: #607383;
}

.career-job-empty-apply {
  color: var(--career-purple);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.career-job-empty-apply:hover {
  color: var(--career-navy);
}

.career-opportunity-card {
  display: grid;
  grid-template-columns: minmax(240px, .32fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7, 28, 44, .09);
  background: #fff;
  box-shadow: 0 18px 54px rgba(7, 28, 44, .045);
  transition: box-shadow .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.career-opportunity-card:hover,
.career-opportunity-card.is-open {
  transform: translateY(-2px);
  box-shadow: 0 24px 68px rgba(7, 28, 44, .08);
}

.career-opportunity-card figure {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #dfe7ee;
}

.career-opportunity-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.03);
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.career-opportunity-card:hover img {
  transform: scale(1.035);
}

.career-opportunity-copy {
  padding: clamp(28px, 4vw, 52px);
}

.career-opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.career-opportunity-meta span,
.career-opportunity-meta small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.career-opportunity-meta span {
  background: var(--career-purple);
  color: #fff;
}

.career-opportunity-meta small {
  border: 1px solid rgba(48, 37, 111, .16);
  color: var(--career-purple);
}

.career-opportunity-copy h3 {
  max-width: 780px;
  margin: 18px 0 14px;
  color: var(--career-navy);
  font: 900 clamp(30px, 3.8vw, 58px)/1 "Manrope";
  letter-spacing: -2.8px;
}

.career-opportunity-copy>p {
  max-width: 780px;
  margin: 0;
  color: #607383;
  font-size: 15px;
  line-height: 1.72;
}

.career-opportunity-facts,
.career-opportunity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.career-opportunity-facts span,
.career-opportunity-tags b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(7, 28, 44, .1);
  background: #f8fafb;
  color: #405464;
  font-size: 11px;
  font-weight: 900;
}

.career-opportunity-tags {
  margin-top: 9px;
}

.career-opportunity-tags b {
  color: #6b7f8d;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.career-opportunity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.career-opportunity-actions button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--career-navy);
  background: var(--career-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .32s ease, color .32s ease, border-color .32s ease;
}

.career-opportunity-actions button:hover {
  border-color: var(--career-purple);
  background: var(--career-purple);
}

.career-opportunity-detail {
  box-sizing: border-box;
  display: grid;
  gap: 18px;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  scrollbar-gutter: stable;
  transition:
    max-height .62s cubic-bezier(.22, 1, .36, 1),
    margin-top .42s cubic-bezier(.22, 1, .36, 1),
    padding-top .42s cubic-bezier(.22, 1, .36, 1),
    border-color .42s ease,
    opacity .34s ease,
    transform .42s cubic-bezier(.22, 1, .36, 1);
}

.career-opportunity-card.is-open .career-opportunity-detail {
  max-height: min(var(--job-detail-height, 900px), 78vh);
  margin-top: 30px;
  padding-top: 28px;
  padding-right: 8px;
  border-top-color: rgba(7, 28, 44, .12);
  opacity: 1;
  overflow-y: auto;
  pointer-events: auto;
  transform: translateY(0);
}

.career-opportunity-detail::-webkit-scrollbar {
  width: 7px;
}

.career-opportunity-detail::-webkit-scrollbar-track {
  background: rgba(7, 28, 44, .06);
}

.career-opportunity-detail::-webkit-scrollbar-thumb {
  background: rgba(48, 37, 111, .42);
  border-radius: 999px;
}

.career-opportunity-detail strong {
  display: block;
  color: var(--career-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.career-opportunity-detail p {
  margin: 10px 0 0;
  color: #607383;
  font-size: 14px;
  line-height: 1.7;
}

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

.career-opportunity-detail-grid section {
  padding: 18px;
  background: #f8fafb;
  border: 1px solid rgba(7, 28, 44, .08);
}

.career-opportunity-detail-grid ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.career-opportunity-detail-grid li {
  position: relative;
  padding-left: 16px;
  color: #607383;
  font-size: 13px;
  line-height: 1.55;
}

.career-opportunity-detail-grid li:before {
  content: "";
  position: absolute;
  top: .66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--career-purple);
}

@media(max-width:1180px) {
  .career-page .career-jobs-hero {
    grid-template-columns: 1fr;
    min-height: 86svh;
    padding-bottom: 180px;
  }

  .career-jobs-hero-notes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .career-jobs-hero-notes span {
    padding-top: 8px;
  }

  .career-job-portal-head,
  .career-job-portal-shell {
    grid-template-columns: 1fr;
  }

  .career-job-filter-panel {
    position: relative;
    top: auto;
  }

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

@media(max-width:820px) {
  .career-opportunity-card {
    grid-template-columns: 1fr;
  }

  .career-opportunity-card figure {
    min-height: 300px;
  }

  .career-opportunity-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:620px) {
  .career-page .career-jobs-hero {
    min-height: 92svh;
    padding-top: 122px;
  }

  .career-page .career-jobs-hero-copy h1 {
    font-size: clamp(42px, 12vw, 64px);
    letter-spacing: -2.8px;
  }

  .career-job-filters {
    grid-template-columns: 1fr;
  }

  .career-job-results-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .career-opportunity-copy {
    padding: 26px;
  }

  .career-opportunity-copy h3 {
    font-size: clamp(30px, 10vw, 44px);
    letter-spacing: -2px;
  }
}

/* Career job portal: search-first layout */
.career-job-portal-page main {
  background:
    radial-gradient(circle at 8% 0%, rgba(48, 37, 111, .08), transparent 28%),
    linear-gradient(180deg, #f7f9fb 0%, #eef3f7 48%, #f7f9fb 100%);
}

.career-job-board {
  padding-top: clamp(136px, 13vw, 176px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.career-job-board-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.career-job-board-intro h1 {
  max-width: 1040px;
  margin: 14px 0 0;
  color: var(--career-navy);
  font: 900 clamp(44px, 6vw, 96px)/.95 "Manrope";
  letter-spacing: -5px;
}

.career-job-board-intro p:not(.career-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #526878;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
}

.career-job-board-status {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(7, 28, 44, .1);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 70px rgba(7, 28, 44, .06);
  backdrop-filter: blur(18px);
}

.career-job-board-status span {
  color: var(--career-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.career-job-board-status strong {
  color: var(--career-navy);
  font: 900 26px/1.05 "Manrope";
  letter-spacing: -1px;
}

.career-job-board-status a {
  color: var(--career-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.career-job-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: clamp(34px, 5vw, 64px);
  padding: 18px;
  border: 1px solid rgba(7, 28, 44, .09);
  background: #fff;
  box-shadow: 0 24px 80px rgba(7, 28, 44, .065);
}

.career-job-search {
  display: grid;
  gap: 10px;
}

.career-job-search span,
.career-job-filter-grid span {
  color: var(--career-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.career-job-search input,
.career-job-filter-grid select {
  width: 100%;
  border: 1px solid rgba(7, 28, 44, .12);
  background: #f7f9fb;
  color: var(--career-navy);
  font-weight: 800;
  outline: none;
  transition: border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.career-job-search input {
  min-height: 68px;
  padding: 0 clamp(18px, 3vw, 30px);
  font: 800 clamp(18px, 2vw, 28px)/1.1 "Manrope";
  letter-spacing: -.8px;
}

.career-job-search input::placeholder {
  color: #8a99a5;
}

.career-job-search input:focus,
.career-job-filter-grid select:focus {
  border-color: rgba(48, 37, 111, .48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(48, 37, 111, .08);
}

.career-job-search-panel button[data-job-clear] {
  min-height: 68px;
  padding: 0 28px;
  border: 0;
  background: var(--career-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .28s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}

.career-job-search-panel button[data-job-clear]:hover {
  background: var(--career-purple);
  transform: translateY(-2px);
}

.career-job-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.career-job-filter-grid label {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(7, 28, 44, .08);
  background: rgba(255, 255, 255, .82);
}

.career-job-filter-grid select {
  min-height: 48px;
  padding: 0 12px;
  font-size: 14px;
}

.career-job-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.career-job-quick-filters button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(7, 28, 44, .12);
  background: #fff;
  color: #435869;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .28s ease, color .28s ease, border-color .28s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}

.career-job-quick-filters button:hover,
.career-job-quick-filters button.active {
  border-color: var(--career-purple);
  background: var(--career-purple);
  color: #fff;
  transform: translateY(-2px);
}

.career-job-board .career-job-results {
  margin-top: clamp(28px, 4vw, 46px);
}

.career-job-board .career-opportunity-list {
  gap: 14px;
}

.career-job-board .career-opportunity-card {
  grid-template-columns: 1fr;
  border: 1px solid rgba(7, 28, 44, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 44px rgba(7, 28, 44, .055);
}

.career-job-board .career-opportunity-card:hover,
.career-job-board .career-opportunity-card.is-open {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(7, 28, 44, .09);
}

.career-job-board .career-opportunity-copy {
  padding: 24px clamp(24px, 3.6vw, 42px);
}

.career-job-board .career-opportunity-meta span,
.career-job-board .career-opportunity-meta small {
  min-height: 28px;
}

.career-job-board .career-opportunity-copy h3 {
  max-width: 900px;
  margin: 14px 0 10px;
  font-size: clamp(25px, 2.5vw, 42px);
  line-height: 1.04;
  letter-spacing: -1.9px;
}

.career-job-board .career-opportunity-copy>p {
  max-width: 900px;
  font-size: 14.5px;
  line-height: 1.68;
}

.career-job-board .career-opportunity-facts {
  margin-top: 16px;
}

.career-job-board .career-opportunity-tags {
  margin-top: 8px;
}

.career-job-board .career-opportunity-actions {
  margin-top: 20px;
}

.career-job-board .career-job-empty,
.career-job-board .career-job-loading {
  border-radius: 20px;
  background: #fff;
}

@media(max-width:1040px) {

  .career-job-board-intro,
  .career-job-filter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:760px) {
  .career-job-board {
    padding-top: 118px;
  }

  .career-job-board-intro,
  .career-job-search-panel,
  .career-job-filter-grid {
    grid-template-columns: 1fr;
  }

  .career-job-board-intro h1 {
    font-size: clamp(38px, 11vw, 62px);
    letter-spacing: -2.9px;
  }

  .career-job-search-panel button[data-job-clear],
  .career-job-search input {
    min-height: 58px;
  }

  .career-job-board .career-opportunity-card {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
}

@media(max-width:520px) {
  .career-job-quick-filters button {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .career-job-board .career-opportunity-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Career polish: cleaner header, testimonials, horizontal application form */
.career-page .career-header-actions {
  justify-content: flex-end;
}

.career-page .career-header-actions .career-submit {
  display: none;
}

.career-page .career-hero-video-stage .career-hero-copy {
  max-width: 900px;
}

.career-page .career-hero-video-stage h1 {
  max-width: 860px;
}

.career-page .career-hero-video-stage .career-hero-copy>p {
  max-width: 640px;
  margin-top: 18px;
  font-size: clamp(19px, 2vw, 31px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -.9px;
}

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

.career-employee-grid article {
  overflow: hidden;
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 28, 44, .06);
}

.career-employee-grid figure {
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: #dfe7ee;
}

.career-employee-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.career-employee-grid article:hover img {
  transform: scale(1.04);
}

.career-employee-grid article>div {
  padding: 28px;
}

.career-employee-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--career-purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.career-employee-grid blockquote {
  margin: 0;
  color: var(--career-navy);
  font: 800 clamp(19px, 1.7vw, 27px)/1.3 "Manrope";
  letter-spacing: -.8px;
}

.career-employee-grid strong {
  display: block;
  margin-top: 26px;
  color: var(--career-navy);
  font: 900 18px/1.1 "Manrope";
}

.career-employee-grid small {
  display: block;
  margin-top: 8px;
  color: #6b7f8d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.career-page .career-apply {
  grid-template-columns: minmax(260px, .34fr) minmax(0, .66fr);
  align-items: start;
  gap: clamp(32px, 5vw, 78px);
}

.career-page .career-form-horizontal {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 3vw, 38px);
}

.career-page .career-form-horizontal label {
  grid-column: span 2;
}

.career-page .career-form-horizontal .career-form-wide {
  grid-column: span 3;
}

.career-page .career-form-horizontal .career-form-message,
.career-page .career-form-horizontal .career-form-upload-wide,
.career-page .career-form-horizontal .career-form-actions {
  grid-column: 1/-1;
}

.career-form-file {
  position: relative;
}

.career-form-file input[type="file"] {
  min-height: 58px;
  padding: 12px;
  cursor: pointer;
}

.career-form-file input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 0 14px;
  border: 0;
  background: var(--career-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.career-form-file>span {
  margin-top: -2px;
  color: #7b8d9a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.career-page .career-footer-main {
  grid-template-columns: minmax(280px, 1.15fr) .7fr .9fr;
}

@media(max-width:1040px) {

  .career-employee-grid,
  .career-page .career-apply,
  .career-page .career-footer-main {
    grid-template-columns: 1fr;
  }

  .career-page .career-form-horizontal {
    grid-template-columns: 1fr 1fr;
  }

  .career-page .career-form-horizontal label,
  .career-page .career-form-horizontal .career-form-wide {
    grid-column: auto;
  }

  .career-page .career-form-horizontal .career-form-message,
  .career-page .career-form-horizontal .career-form-upload-wide,
  .career-page .career-form-horizontal .career-form-actions {
    grid-column: 1/-1;
  }
}

@media(max-width:640px) {
  .career-page .career-form-horizontal {
    grid-template-columns: 1fr;
  }

  .career-page .career-form-horizontal label,
  .career-page .career-form-horizontal .career-form-wide,
  .career-page .career-form-horizontal .career-form-message {
    grid-column: 1/-1;
  }

  .career-employee-grid figure {
    height: 300px;
  }
}

/* Career final polish: clearer hero, lighter portal flow, and testimonial-like sections */
.career-page .career-hero-video-stage {
  min-height: 100svh;
}

.career-page .career-hero-video-stage .career-hero-copy {
  max-width: 1180px;
  padding-top: clamp(120px, 12vh, 170px);
}

.career-page .career-hero-video-stage h1 {
  max-width: 1160px;
  font-size: clamp(92px, 10vw, 172px);
  line-height: .86;
  letter-spacing: -8.4px;
}

.career-page .career-hero-video-stage .career-hero-copy>p {
  max-width: 950px;
  margin-top: 24px;
  font-size: clamp(22px, 1.65vw, 34px);
  line-height: 1.43;
  font-weight: 800;
  letter-spacing: -1.05px;
}

.career-page .career-hero-video-stage .career-hero-actions {
  margin-top: 34px;
}

.career-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.career-scroll-cue span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  animation: careerScrollBounce 1.6s cubic-bezier(.4, 0, .2, 1) infinite;
}

.career-life-scroll-cue {
  margin-top: 26px;
}

@keyframes careerScrollBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(7px)
  }
}

.career-talk-list {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.career-talk-list article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.career-talk-list figure {
  width: 170px;
  height: 170px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #dfe7ee;
  box-shadow: 0 20px 48px rgba(7, 28, 44, .12);
}

.career-talk-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-talk-bubble {
  position: relative;
  min-height: 170px;
  padding: 30px clamp(28px, 3vw, 46px);
  background: #fff;
  border: 1px solid rgba(7, 28, 44, .09);
  border-radius: 0 34px 34px 34px;
  box-shadow: 0 20px 56px rgba(7, 28, 44, .055);
}

.career-talk-bubble:before {
  content: "";
  position: absolute;
  left: -13px;
  top: 36px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-left: 1px solid rgba(7, 28, 44, .09);
  border-bottom: 1px solid rgba(7, 28, 44, .09);
  transform: rotate(45deg);
}

.career-talk-bubble span {
  display: block;
  margin-bottom: 14px;
  color: var(--career-purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.career-talk-bubble blockquote {
  margin: 0;
  color: var(--career-navy);
  font: 800 clamp(23px, 2vw, 36px)/1.27 "Manrope";
  letter-spacing: -1.25px;
}

.career-talk-bubble strong {
  display: block;
  margin-top: 24px;
  color: var(--career-navy);
  font: 900 18px/1.1 "Manrope";
}

.career-talk-bubble small {
  display: block;
  margin-top: 7px;
  color: #6b7f8d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.career-job-summary-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.career-job-summary-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  min-height: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--career-line);
  box-shadow: 0 10px 26px rgba(7, 28, 44, .035);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.career-job-summary-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(48, 39, 116, .26);
  box-shadow: 0 18px 42px rgba(7, 28, 44, .07);
}

.career-job-summary-list span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #f3f1ff;
  color: var(--career-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.career-job-summary-list h3 {
  margin: 0;
  color: var(--career-navy);
  font: 900 clamp(17px, 1.25vw, 20px)/1.08 "Manrope";
  letter-spacing: -.65px;
}

.career-job-summary-list p {
  margin: 0;
  color: #607383;
  font-size: 13px;
  line-height: 1.52;
}

.career-section-cta {
  margin-top: 28px;
}

.career-internship-feature {
  grid-template-columns: minmax(320px, .52fr) minmax(0, .72fr);
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--career-line);
  box-shadow: 0 20px 60px rgba(7, 28, 44, .055);
}

.career-internship-feature figure {
  min-height: 380px;
}

.career-internship-feature h2 {
  font-size: clamp(31px, 3vw, 50px);
  line-height: 1.02;
}

.career-internship-feature p {
  max-width: 660px;
}

.career-page .career-form-horizontal {
  position: relative;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 22px 20px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid #dbe4ea;
  border-top: 4px solid var(--career-purple);
  background:
    linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
  box-shadow: 0 26px 78px rgba(7, 28, 44, .065);
}

.career-page .career-form-horizontal label {
  grid-column: span 4;
  min-width: 0;
  align-self: start;
  gap: 11px;
  color: #566a78;
  font-size: 11px;
  letter-spacing: 2px;
}

.career-page .career-form-horizontal .career-form-wide {
  grid-column: span 6;
}

.career-page .career-form-horizontal .career-form-message,
.career-page .career-form-horizontal .career-form-upload-wide,
.career-page .career-form-horizontal .career-form-actions {
  grid-column: 1/-1;
}

.career-page .career-form-horizontal .career-form-link,
.career-page .career-form-horizontal .career-form-file {
  display: grid;
  align-self: start;
}

.career-page .career-form-horizontal input,
.career-page .career-form-horizontal select,
.career-page .career-form-horizontal textarea {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #dbe4ea;
  background: #fff;
  color: var(--career-navy);
  font: 850 16px/1.25 "DM Sans";
  letter-spacing: -.2px;
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.career-page .career-form-horizontal textarea {
  min-height: 180px;
  padding-top: 18px;
}

.career-page .career-form-horizontal input::placeholder,
.career-page .career-form-horizontal textarea::placeholder {
  color: #9aa9b3;
  font-weight: 800;
}

.career-page .career-form-horizontal input:focus,
.career-page .career-form-horizontal select:focus,
.career-page .career-form-horizontal textarea:focus {
  border-color: rgba(48, 39, 116, .45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(48, 39, 116, .08);
}

.career-page .career-form-horizontal .career-form-file {
  gap: 11px;
}

.career-page .career-form-horizontal .career-form-file input[type="file"] {
  min-height: 58px;
  padding: 10px 12px;
  border-style: dashed;
  background: #fafcff;
  color: #405464;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.career-page .career-form-horizontal .career-form-file input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 14px;
  padding: 0 18px;
  border: 0;
  background: var(--career-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
}

.career-page .career-form-horizontal .career-form-file>span {
  min-height: auto;
  display: block;
  margin: 0;
  color: #7b8d9a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.career-page .career-form-horizontal .career-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid #dbe4ea;
}

.career-page .career-form-horizontal .career-form-actions p {
  max-width: 680px;
  color: #6c7f8c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.career-page .career-form-horizontal .career-form-actions button {
  min-height: 58px;
  padding: 0 26px;
  background: var(--career-purple);
  color: #fff;
  white-space: nowrap;
}

.career-page .career-form-horizontal .career-form-actions button:hover {
  background: #211958;
}

.career-page .career-apply-hero {
  min-height: clamp(680px, 82svh, 820px);
  grid-template-columns: minmax(420px, .72fr) minmax(0, .82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(132px, 12vw, 168px) var(--pad) clamp(58px, 6vw, 88px);
  background:
    linear-gradient(135deg, #f8fafc 0%, #f4f7f9 52%, #eaf0f5 100%);
  isolation: isolate;
}

.career-page .career-apply-hero:before {
  background:
    linear-gradient(90deg, rgba(7, 28, 44, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 44, .03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .78) 48%, transparent 86%);
}

.career-page .career-apply-hero:after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: min(52vw, 880px);
  height: 72%;
  background:
    radial-gradient(circle at 76% 8%, rgba(48, 39, 116, .2), transparent 32%),
    linear-gradient(135deg, rgba(7, 28, 44, .05), rgba(48, 39, 116, .1));
  pointer-events: none;
}

.career-page .career-apply-hero .career-page-hero-copy {
  max-width: 780px;
  padding: 0;
}

.career-page .career-apply-hero .career-page-hero-copy h1 {
  max-width: 790px;
  margin: 18px 0 24px;
  font-size: clamp(54px, 5.8vw, 92px);
  line-height: .95;
  letter-spacing: -4.8px;
}

.career-page .career-apply-hero .career-page-hero-copy p:not(.career-eyebrow) {
  max-width: 700px;
  color: #536a7a;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.62;
}

.career-page .career-apply-hero .career-page-hero-media {
  position: relative;
  height: clamp(470px, 40vw, 620px);
  margin: 0;
  border: 10px solid #fff;
  background: #071c2c;
  box-shadow: 0 36px 92px rgba(7, 28, 44, .18);
}

.career-page .career-apply-hero .career-page-hero-media img {
  object-position: center center;
}

.career-page .career-apply-hero .career-page-hero-media:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 28, 44, .02), rgba(7, 28, 44, .52));
  pointer-events: none;
}

.career-page .career-apply-hero .career-page-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  background: rgba(7, 28, 44, .86);
  color: #fff;
}

.career-page .career-apply-hero .career-page-hero-media figcaption span {
  color: #b9c8d1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.career-page .career-apply-hero .career-page-hero-media figcaption strong {
  max-width: 330px;
  margin: 0;
  color: #fff;
  text-align: right;
  font: 900 18px/1.12 "Manrope";
  letter-spacing: -.45px;
}

@media(max-width:1040px) {
  .career-page .career-apply-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 128px;
  }

  .career-page .career-apply-hero:after {
    width: 100%;
    height: 42%;
  }

  .career-page .career-apply-hero .career-page-hero-media {
    height: clamp(400px, 54vw, 540px);
  }

  .career-page .career-form-horizontal {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }

  .career-page .career-form-horizontal label,
  .career-page .career-form-horizontal .career-form-wide {
    grid-column: span 3;
  }

  .career-page .career-form-horizontal .career-form-message,
  .career-page .career-form-horizontal .career-form-actions {
    grid-column: 1/-1;
  }

  .career-page .career-form-horizontal .career-form-actions {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media(max-width:680px) {
  .career-page .career-apply-hero {
    padding: 112px 20px 42px;
  }

  .career-page .career-apply-hero .career-page-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -2.5px;
  }

  .career-page .career-apply-hero .career-page-hero-media {
    height: 320px;
    border-width: 6px;
  }

  .career-page .career-apply-hero .career-page-hero-media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 14px 16px;
  }

  .career-page .career-apply-hero .career-page-hero-media figcaption strong {
    display: block;
    max-width: none;
    margin-top: 6px;
    text-align: left;
    font-size: 16px;
  }

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

  .career-page .career-form-horizontal label,
  .career-page .career-form-horizontal .career-form-wide,
  .career-page .career-form-horizontal .career-form-message {
    grid-column: 1/-1;
  }

  .career-page .career-form-horizontal input,
  .career-page .career-form-horizontal select,
  .career-page .career-form-horizontal textarea {
    min-height: 54px;
    font-size: 15px;
  }

  .career-page .career-form-horizontal .career-form-actions button {
    width: 100%;
  }
}

.career-life-hero .career-life-hero-actions {
  margin-top: 28px;
}

.career-sigap-showcase {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.career-sigap-showcase article {
  height: 100%;
}

.career-sigap-showcase .career-sigap-copy {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  gap: 20px;
  min-height: 190px;
  text-align: center;
}

.career-sigap-showcase .career-sigap-copy span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0;
  line-height: 1;
}

.career-sigap-showcase .career-sigap-copy span img {
  width: 86px;
  height: 86px;
  object-fit: contain
}

.career-job-board-intro h1 {
  max-width: 980px;
}

.career-job-board-intro p:not(.career-kicker) {
  max-width: 720px;
}

.career-job-filter-grid {
  grid-template-columns: 1.1fr .85fr .85fr .75fr;
}

.career-job-filter-grid label {
  min-width: 0;
}

.career-job-board .career-opportunity-meta span {
  text-transform: none;
}

.career-internship-learn {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.career-internship-learn div {
  min-height: 190px;
  align-items: flex-start;
  padding: 24px;
}

.career-internship-learn strong {
  max-width: 320px;
  font-size: 17px;
  line-height: 1.42;
  letter-spacing: -.35px;
}

.career-internship-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid var(--career-line);
  background: #fff;
  box-shadow: 0 20px 60px rgba(7, 28, 44, .045);
}

.career-internship-benefit-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--career-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  transition: background .35s ease, transform .35s ease;
}

.career-internship-benefit-grid article:last-child {
  border-right: 0;
}

.career-internship-benefit-grid article:hover {
  background: #f8fbfd;
  transform: translateY(-4px);
}

.career-internship-benefit-grid span,
.career-internship-process-list span {
  color: var(--career-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.career-internship-benefit-grid h3,
.career-internship-process-list h3 {
  margin: 0;
  color: var(--career-navy);
  font: 900 24px/1.05 "Manrope";
  letter-spacing: -.8px;
}

.career-internship-benefit-grid p,
.career-internship-process-list p,
.career-internship-fit-layout p {
  margin: 0;
  color: #647784;
  font-size: 14.5px;
  line-height: 1.68;
}

.career-internship-fit-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .62fr);
  gap: clamp(30px, 5vw, 88px);
  align-items: start;
  padding: clamp(34px, 4vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(249, 252, 254, .94)),
    radial-gradient(circle at 86% 16%, rgba(48, 39, 116, .13), transparent 34%);
  border: 1px solid var(--career-line);
  box-shadow: 0 22px 70px rgba(7, 28, 44, .05);
}

.career-internship-fit-layout h2 {
  max-width: 820px;
  margin: 12px 0 20px;
  color: var(--career-navy);
  font: 900 clamp(34px, 4.2vw, 64px)/.98 "Manrope";
  letter-spacing: -2.6px;
}

.career-internship-fit-list {
  display: grid;
  gap: 12px;
}

.career-internship-fit-list span {
  position: relative;
  display: block;
  padding: 18px 18px 18px 48px;
  background: #fff;
  border: 1px solid var(--career-line);
  color: #334959;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
  box-shadow: 0 12px 32px rgba(7, 28, 44, .035);
}

.career-internship-fit-list span:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 12px;
  height: 12px;
  background: var(--career-purple);
  box-shadow: 6px 6px 0 rgba(48, 39, 116, .18);
}

.career-internship-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  counter-reset: internship-process;
}

.career-internship-process-list article {
  position: relative;
  min-height: 250px;
  padding: 30px 28px;
  border-top: 1px solid var(--career-line);
  border-bottom: 1px solid var(--career-line);
  border-left: 1px solid var(--career-line);
  background: #fff;
}

.career-internship-process-list article:last-child {
  border-right: 1px solid var(--career-line);
}

.career-internship-process-list article:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 40px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background: #fff;
  border-top: 1px solid var(--career-line);
  border-right: 1px solid var(--career-line);
  transform: rotate(45deg);
}

.career-internship-process-list article:last-child:after {
  display: none;
}

.career-internship-process-list h3 {
  margin: 64px 0 14px;
  font-size: 23px;
}

.career-internship-alumni-layout {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, .78fr);
  align-items: stretch;
  background: #071c2c;
  color: #fff;
  box-shadow: 0 28px 80px rgba(7, 28, 44, .12);
}

.career-internship-alumni-layout figure {
  display: grid;
  place-items: center;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(141, 132, 195, .18), transparent 34%),
    linear-gradient(145deg, #102d43, #071c2c 68%);
}

.career-internship-alumni-placeholder .career-voice-silhouette {
  opacity: .9;
}

.career-internship-alumni-placeholder .career-voice-silhouette:before,
.career-internship-alumni-placeholder .career-voice-silhouette:after {
  background: linear-gradient(145deg, rgba(255, 255, 255, .46), rgba(141, 132, 195, .26));
}

.career-internship-alumni-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: clamp(36px, 5vw, 76px);
  background:
    radial-gradient(circle at 92% 18%, rgba(141, 132, 195, .22), transparent 34%),
    linear-gradient(135deg, #071c2c, #041520 72%);
}

.career-internship-alumni-main blockquote {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font: 900 clamp(30px, 3.3vw, 54px)/1.04 "Manrope";
  letter-spacing: -2px;
}

.career-internship-alumni-main strong,
.career-internship-alumni-mini strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.career-internship-alumni-main span,
.career-internship-alumni-mini span {
  display: block;
  margin-top: 6px;
  color: #a9bac5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.career-internship-alumni-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.career-internship-alumni-mini article {
  padding: 30px;
  background: #0a2334;
  color: #fff;
}

.career-internship-alumni-mini p {
  margin: 0 0 24px;
  color: #d7e1e7;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

/* Internship voices */
.career-internship-voices {
  background: #f4f7f8;
}

.career-internship-voice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 48px);
}

.career-internship-voice-grid article {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 18px 54px rgba(7, 28, 44, .055);
  overflow: hidden;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}

.career-internship-voice-grid article:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #332a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.career-internship-voice-grid article:hover {
  transform: translateY(-5px);
  border-color: #c3d0d8;
  box-shadow: 0 28px 76px rgba(7, 28, 44, .09);
}

.career-internship-voice-grid article:hover:before {
  transform: scaleX(1);
}

.career-internship-voice-photo {
  display: grid;
  min-height: 210px;
  margin: 0;
  place-items: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(141, 132, 195, .2), transparent 32%),
    linear-gradient(145deg, #eef4f7, #dfe8ee);
  border-bottom: 1px solid #d8e1e7;
}

.career-internship-voice-photo .career-voice-silhouette {
  width: 118px;
  height: 150px;
  opacity: .94;
  filter: drop-shadow(0 22px 36px rgba(7, 28, 44, .12));
}

.career-internship-voice-photo .career-voice-silhouette:before,
.career-internship-voice-photo .career-voice-silhouette:after {
  background: linear-gradient(145deg, #233f55, #332a7a);
}

.career-internship-voice-grid article>div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.career-internship-voice-grid blockquote {
  margin: 0 0 28px;
  color: #071c2c;
  font: 900 clamp(19px, 1.45vw, 24px)/1.22 "Manrope";
  letter-spacing: -.7px;
}

.career-internship-voice-grid strong {
  display: block;
  margin-top: auto;
  color: #071c2c;
  font-size: 16px;
  font-weight: 900;
}

.career-internship-voice-grid span {
  display: block;
  margin-top: 7px;
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media(max-width:1100px) {
  .career-internship-voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:700px) {
  .career-internship-voice-grid {
    grid-template-columns: 1fr;
  }

  .career-internship-voice-grid article {
    min-height: 0;
  }

  .career-internship-voice-photo {
    min-height: 190px;
  }
}

.career-internship-voice-slider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .42fr);
  min-height: 560px;
  margin-top: clamp(30px, 4vw, 52px);
  background: #071c2c;
  color: #fff;
  box-shadow: 0 30px 86px rgba(7, 28, 44, .14);
  overflow: hidden;
}

.career-internship-voice-stage {
  position: relative;
  min-height: 560px;
  background:
    radial-gradient(circle at 16% 20%, rgba(141, 132, 195, .2), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(135deg, #071c2c, #061724 68%);
  overflow: hidden;
}

.career-internship-voice-stage:before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}

.career-internship-voice-stage article {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: clamp(44px, 6vw, 86px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(36px) scale(.985);
  filter: blur(10px);
  transition: opacity .62s ease, transform .7s cubic-bezier(.22, 1, .36, 1), filter .62s ease;
}

.career-internship-voice-stage article.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.career-internship-voice-stage article>span {
  width: max-content;
  color: #b9b2e9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.career-internship-voice-stage blockquote {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font: 900 clamp(34px, 4.6vw, 72px)/1.02 "Manrope";
  letter-spacing: -3px;
  text-wrap: balance;
}

.career-internship-voice-stage blockquote:before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  color: #8d84c3;
  font-size: 64px;
  line-height: .7;
}

.career-internship-voice-stage strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.career-internship-voice-stage small {
  display: block;
  margin-top: 8px;
  color: #aebdc7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.career-internship-voice-people {
  display: grid;
  align-content: stretch;
  gap: 0;
  background: #fff;
}

.career-internship-voice-people button {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  column-gap: 18px;
  align-items: center;
  min-height: 140px;
  padding: 18px 22px;
  color: #071c2c;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #d8e1e7;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: background .35s ease, color .35s ease;
}

.career-internship-voice-people button:last-child {
  border-bottom: 0;
}

.career-internship-voice-people button:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: #332a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.career-internship-voice-people button:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 42, 122, .08), transparent 70%);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.career-internship-voice-people button:hover,
.career-internship-voice-people button.is-active {
  background: #f4f7f8;
}

.career-internship-voice-people button.is-active:before {
  transform: scaleX(1);
}

.career-internship-voice-people button.is-active:after {
  opacity: 1;
  transform: translateX(0);
}

.career-internship-voice-people figure {
  position: relative;
  z-index: 1;
  grid-row: 1/3;
  width: 86px;
  height: 104px;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(141, 132, 195, .18), transparent 32%),
    linear-gradient(145deg, #eef4f7, #dfe8ee);
  overflow: hidden;
}

.career-internship-voice-people .career-voice-silhouette {
  width: 54px;
  height: 72px;
  opacity: .95;
}

.career-internship-voice-people .career-voice-silhouette:before,
.career-internship-voice-people .career-voice-silhouette:after {
  background: linear-gradient(145deg, #233f55, #332a7a);
}

.career-internship-voice-people span,
.career-internship-voice-people small {
  position: relative;
  z-index: 1;
}

.career-internship-voice-people span {
  align-self: end;
  color: #071c2c;
  font: 900 18px/1.05 "Manrope";
  letter-spacing: -.6px;
}

.career-internship-voice-people small {
  align-self: start;
  margin-top: 8px;
  color: #667884;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

@media(max-width:1050px) {
  .career-internship-voice-slider {
    grid-template-columns: 1fr;
  }

  .career-internship-voice-people {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .career-internship-voice-people button {
    grid-template-columns: 1fr;
    min-height: 190px;
    justify-items: start;
  }

  .career-internship-voice-people figure {
    grid-row: auto;
  }
}

@media(max-width:700px) {
  .career-internship-voice-slider {
    min-height: 0;
  }

  .career-internship-voice-stage {
    min-height: 500px;
  }

  .career-internship-voice-stage article {
    padding: 36px 26px;
  }

  .career-internship-voice-stage blockquote {
    font-size: clamp(30px, 9.5vw, 48px);
    letter-spacing: -2px;
  }

  .career-internship-voice-people {
    grid-template-columns: 1fr 1fr;
  }

  .career-internship-voice-people button {
    min-height: 164px;
    padding: 16px;
  }
}

/* Internship voices portrait spotlight */
.career-internship-voice-slider {
  grid-template-columns: minmax(0, 1fr);
  background: #fff;
}

.career-internship-voice-stage {
  min-height: clamp(560px, 62vw, 760px);
  background: #f4f7f8;
}

.career-internship-voice-stage:before {
  inset: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 44, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 44, .04) 1px, transparent 1px);
  background-size: 118px 118px;
}

.career-internship-voice-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 20%, rgba(141, 132, 195, .16), transparent 28%);
  pointer-events: none;
}

.career-internship-voice-stage article {
  display: grid;
  grid-template-columns: minmax(300px, .42fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 4vw, 58px);
  transform: translateY(34px) scale(.985);
  z-index: 1;
}

.career-internship-voice-stage article.is-active {
  transform: translateY(0) scale(1);
}

.career-internship-stage-photo {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(360px, 34vw);
  min-width: 280px;
  aspect-ratio: 3/4.35;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(141, 132, 195, .18), transparent 30%),
    linear-gradient(145deg, #fff, #dfe8ee);
  border: 1px solid #d8e1e7;
  box-shadow: 0 28px 76px rgba(7, 28, 44, .1);
  overflow: hidden;
  transform: translateX(-22px) scale(.96);
  transition: transform .74s cubic-bezier(.22, 1, .36, 1), opacity .58s ease;
}

.career-internship-voice-stage article.is-active .career-internship-stage-photo {
  transform: translateX(0) scale(1);
}

.career-internship-stage-photo .career-voice-silhouette {
  width: 56%;
  height: 62%;
  opacity: .95;
  filter: drop-shadow(0 28px 46px rgba(7, 28, 44, .14));
}

.career-internship-stage-photo .career-voice-silhouette:before,
.career-internship-stage-photo .career-voice-silhouette:after {
  background: linear-gradient(145deg, #233f55, #332a7a);
}

.career-internship-stage-copy {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(620px, 100%);
  margin: 0 0 clamp(18px, 4vw, 54px);
  padding: clamp(26px, 3vw, 42px);
  background: #071c2c;
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 28, 44, .16);
  transform: translateX(28px);
  transition: transform .74s cubic-bezier(.22, 1, .36, 1), opacity .58s ease;
}

.career-internship-voice-stage article.is-active .career-internship-stage-copy {
  transform: translateX(0);
}

.career-internship-stage-copy:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #8d84c3;
}

.career-internship-voice-stage article>span {
  display: none;
}

.career-internship-stage-copy span {
  display: block;
  width: max-content;
  margin-bottom: 18px;
  color: #b9b2e9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.career-internship-voice-stage blockquote {
  max-width: 520px;
  font: 900 clamp(24px, 2.25vw, 38px)/1.08 "Manrope";
  letter-spacing: -1.5px;
}

.career-internship-voice-stage blockquote:before {
  display: none;
}

.career-internship-voice-stage strong {
  margin-top: 26px;
}

.career-internship-voice-people {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d8e1e7;
  border-top: 0;
}

.career-internship-voice-people button {
  grid-template-columns: 62px minmax(0, 1fr);
  min-height: 112px;
}

.career-internship-voice-people figure {
  width: 62px;
  height: 76px;
}

.career-internship-voice-people .career-voice-silhouette {
  width: 40px;
  height: 54px;
}

@media(max-width:1050px) {
  .career-internship-voice-stage article {
    grid-template-columns: minmax(220px, .4fr) minmax(0, 1fr);
  }

  .career-internship-stage-photo {
    width: 100%;
    min-width: 0;
  }
}

@media(max-width:760px) {
  .career-internship-voice-stage {
    min-height: 720px;
  }

  .career-internship-voice-stage article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .career-internship-stage-photo {
    width: min(270px, 74vw);
    justify-self: center;
  }

  .career-internship-stage-copy {
    justify-self: stretch;
    margin: 0;
  }

  .career-internship-voice-stage blockquote {
    font-size: clamp(24px, 7vw, 34px);
  }

  .career-internship-voice-people {
    grid-template-columns: 1fr 1fr;
  }

  .career-internship-voice-people button {
    grid-template-columns: 1fr;
  }
}

/* Internship voices full visual adjustment */
.career-internship-voice-slider {
  min-height: 0;
}

.career-internship-voice-stage {
  min-height: clamp(620px, 68vw, 820px);
}

.career-internship-voice-stage article {
  grid-template-columns: minmax(360px, .48fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  align-items: stretch;
}

.career-internship-stage-photo {
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  box-shadow: none;
  background:
    radial-gradient(circle at 54% 18%, rgba(255, 255, 255, .4), transparent 27%),
    linear-gradient(145deg, #eaf0f4, #d4dde4);
}

.career-internship-stage-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 28, 44, 0), rgba(7, 28, 44, .12));
  pointer-events: none;
}

.career-internship-stage-photo .career-voice-silhouette {
  width: min(66%, 360px);
  height: min(78%, 540px);
}

.career-internship-stage-copy {
  align-self: end;
  justify-self: end;
  width: min(520px, calc(100% - 56px));
  margin: 0 clamp(28px, 4vw, 58px) clamp(28px, 4vw, 58px) 0;
  padding: clamp(22px, 2.5vw, 34px);
  background: rgba(7, 28, 44, .94);
}

.career-internship-voice-stage blockquote {
  max-width: 440px;
  font-size: clamp(22px, 1.85vw, 31px);
  line-height: 1.13;
  letter-spacing: -1.1px;
}

.career-internship-stage-copy span {
  margin-bottom: 14px;
  font-size: 9px;
}

.career-internship-voice-stage strong {
  margin-top: 22px;
  font-size: 16px;
}

@media(max-width:900px) {
  .career-internship-voice-stage article {
    grid-template-columns: 1fr;
  }

  .career-internship-stage-photo {
    min-height: 470px;
  }

  .career-internship-stage-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(520px, calc(100% - 36px));
    margin: 0 18px 18px 0;
  }
}

@media(max-width:600px) {
  .career-internship-voice-stage {
    min-height: 680px;
  }

  .career-internship-stage-copy {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }

  .career-internship-voice-stage blockquote {
    font-size: 24px;
  }
}

.career-page .career-internship-hero {
  min-height: clamp(720px, 88svh, 900px);
  grid-template-columns: minmax(420px, .72fr) minmax(0, .9fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 0;
  padding: clamp(132px, 12vw, 170px) var(--pad) clamp(44px, 4.8vw, 70px);
  background:
    linear-gradient(135deg, #f8fafc 0%, #f3f6f8 54%, #e8eef3 100%);
  isolation: isolate;
}

.career-page .career-internship-hero:before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 44, .04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 44, .035) 1px, transparent 1px);
  background-size: 94px 94px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .72) 48%, transparent 82%);
}

.career-page .career-internship-hero:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(48vw, 900px);
  background:
    radial-gradient(circle at 72% 24%, rgba(141, 132, 195, .22), transparent 28%),
    linear-gradient(135deg, rgba(7, 28, 44, .08), rgba(48, 39, 116, .11));
  pointer-events: none;
}

.career-page .career-internship-hero .career-page-hero-copy {
  align-self: center;
  max-width: 760px;
  padding: clamp(34px, 4.2vw, 62px);
  border: 1px solid #dce5eb;
  border-left: 5px solid var(--career-purple);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 80px rgba(7, 28, 44, .09);
  backdrop-filter: blur(10px);
}

.career-page .career-internship-hero .career-page-hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  font-size: clamp(48px, 5.4vw, 86px);
  line-height: .96;
  letter-spacing: -4.4px;
}

.career-page .career-internship-hero .career-page-hero-copy p:not(.career-eyebrow) {
  max-width: 650px;
  color: #526877;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.72;
}

.career-internship-hero-apply {
  width: max-content;
  gap: 14px;
  margin-top: 30px;
  padding-inline: 24px;
  background: var(--career-purple);
  color: #fff;
  box-shadow: 0 18px 46px rgba(48, 39, 116, .22);
}

.career-internship-hero-apply span {
  font-size: 16px;
  line-height: 1;
}

.career-page .career-internship-hero .career-page-hero-media {
  position: relative;
  align-self: center;
  height: clamp(520px, 44vw, 680px);
  margin: 0 0 0 clamp(-34px, -2.2vw, -18px);
  border: 10px solid #fff;
  background: #071c2c;
  box-shadow: 0 34px 90px rgba(7, 28, 44, .18);
}

.career-page .career-internship-hero .career-page-hero-media img {
  object-position: center center;
}

.career-page .career-internship-hero .career-page-hero-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  background: rgba(7, 28, 44, .82);
  color: #fff;
}

.career-page .career-internship-hero .career-page-hero-media figcaption span {
  color: #c6d2d9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.career-page .career-internship-hero .career-page-hero-media figcaption strong {
  max-width: 280px;
  color: #fff;
  text-align: right;
  font: 900 18px/1.1 "Manrope";
  letter-spacing: -.45px;
}

.career-internship-hero-note {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 18px 0 0;
  border-top: 1px solid #d8e1e7;
  color: #657887;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media(max-width:1100px) {
  .career-page .career-hero-video-stage h1 {
    font-size: clamp(70px, 13vw, 118px);
    letter-spacing: -5.4px;
  }

  .career-job-summary-list,
  .career-job-filter-grid,
  .career-internship-benefit-grid,
  .career-internship-process-list {
    grid-template-columns: 1fr 1fr;
  }

  .career-internship-benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .career-internship-benefit-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--career-line);
  }

  .career-internship-process-list article:nth-child(2) {
    border-right: 1px solid var(--career-line);
  }

  .career-internship-process-list article:nth-child(2):after {
    display: none;
  }

  .career-internship-process-list article:nth-child(n+3) {
    border-top: 0;
  }

  .career-internship-fit-layout,
  .career-internship-alumni-layout {
    grid-template-columns: 1fr;
  }

  .career-page .career-internship-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 130px;
  }

  .career-page .career-internship-hero:after {
    width: 100%;
    height: 45%;
    top: auto;
  }

  .career-page .career-internship-hero .career-page-hero-copy {
    max-width: none;
  }

  .career-page .career-internship-hero .career-page-hero-media {
    height: clamp(400px, 56vw, 560px);
    margin: -18px 24px 0;
  }

  .career-internship-alumni-layout figure {
    min-height: 420px;
  }
}

@media(max-width:760px) {
  .career-page .career-hero-video-stage .career-hero-copy {
    padding-top: 128px;
  }

  .career-page .career-hero-video-stage h1 {
    font-size: clamp(56px, 15vw, 86px);
    letter-spacing: -3.8px;
  }

  .career-page .career-hero-video-stage .career-hero-copy>p {
    font-size: 18px;
    line-height: 1.5;
  }

  .career-talk-list article,
  .career-internship-feature,
  .career-internship-learn,
  .career-internship-benefit-grid,
  .career-internship-process-list,
  .career-internship-alumni-mini,
  .career-job-summary-list,
  .career-job-filter-grid {
    grid-template-columns: 1fr;
  }

  .career-internship-benefit-grid article,
  .career-internship-benefit-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--career-line);
  }

  .career-internship-benefit-grid article:last-child {
    border-bottom: 0;
  }

  .career-internship-fit-layout {
    padding: 28px;
  }

  .career-internship-fit-layout h2 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -1.8px;
  }

  .career-internship-process-list article {
    min-height: 0;
    border-right: 1px solid var(--career-line);
    border-bottom: 0;
  }

  .career-internship-process-list article:last-child {
    border-bottom: 1px solid var(--career-line);
  }

  .career-internship-process-list article:after {
    display: none;
  }

  .career-internship-process-list h3 {
    margin-top: 34px;
  }

  .career-internship-alumni-layout figure {
    min-height: 320px;
  }

  .career-internship-alumni-main {
    padding: 30px;
  }

  .career-internship-alumni-main blockquote {
    font-size: clamp(27px, 8vw, 38px);
    letter-spacing: -1.4px;
  }

  .career-page .career-internship-hero {
    padding: 112px 20px 34px;
  }

  .career-page .career-internship-hero .career-page-hero-copy {
    padding: 28px;
  }

  .career-page .career-internship-hero .career-page-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -2.6px;
  }

  .career-page .career-internship-hero .career-page-hero-media {
    height: 330px;
    margin: -10px 10px 0;
    border-width: 6px;
  }

  .career-page .career-internship-hero .career-page-hero-media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 14px 16px;
  }

  .career-page .career-internship-hero .career-page-hero-media figcaption strong {
    display: block;
    margin-top: 6px;
    text-align: left;
    font-size: 16px;
  }

  .career-internship-hero-note {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .career-talk-list figure {
    width: 132px;
    height: 132px;
  }

  .career-talk-bubble {
    border-radius: 28px;
  }

  .career-talk-bubble:before {
    display: none;
  }

  .career-talk-bubble blockquote {
    font-size: 22px;
  }

  .career-internship-feature figure {
    min-height: 280px;
  }

  .career-sigap-showcase .career-sigap-copy {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    min-height: 0;
  }

  .career-sigap-showcase .career-sigap-copy span {
    width: 68px;
    height: 68px;
  }

  .career-sigap-showcase .career-sigap-copy span img {
    width: 68px;
    height: 68px;
  }
}

/* Career hero correction: keep the headline bold without overpowering the vessel image */
.career-page .career-hero-video-stage .career-hero-copy {
  max-width: 900px;
  padding-top: clamp(100px, 11vh, 142px);
}

.career-page .career-hero-video-stage h1 {
  max-width: 900px;
  font-size: clamp(66px, 6.7vw, 118px);
  line-height: .94;
  letter-spacing: -5.2px;
}

.career-page .career-hero-video-stage .career-hero-copy>p {
  max-width: 790px;
  margin-top: 22px;
  font-size: clamp(18px, 1.22vw, 24px);
  line-height: 1.5;
  letter-spacing: -.45px;
}

.career-page .career-hero-video-stage .career-hero-actions {
  margin-top: 28px;
}

.career-page .career-hero-video-stage .career-button {
  min-height: 56px;
  padding-inline: 26px;
}

@media(max-width:1100px) {
  .career-page .career-hero-video-stage h1 {
    font-size: clamp(56px, 9vw, 86px);
    letter-spacing: -3.7px;
  }
}

@media(max-width:760px) {
  .career-page .career-hero-video-stage h1 {
    font-size: clamp(44px, 12vw, 64px);
    letter-spacing: -2.5px;
  }

  .career-page .career-hero-video-stage .career-hero-copy>p {
    font-size: 16px;
  }
}

/* Career team stories: simple card layout */
.career-testimonials .career-employee-grid {
  gap: 20px;
  margin-top: 34px;
}

.career-testimonials .career-employee-grid article {
  border-radius: 0;
  box-shadow: 0 14px 42px rgba(7, 28, 44, .055);
}

.career-testimonials .career-employee-grid figure {
  height: 260px;
}

.career-testimonials .career-employee-grid article>div {
  padding: 24px;
}

.career-testimonials .career-employee-grid span {
  margin-bottom: 14px;
}

.career-testimonials .career-employee-grid blockquote {
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.45;
  letter-spacing: -.45px;
}

.career-testimonials .career-employee-grid strong {
  margin-top: 20px;
}

@media(max-width:760px) {
  .career-testimonials .career-employee-grid figure {
    height: 240px;
  }
}

/* Career hero alignment: left copy, visually centered in the opening screen */
.career-page .career-hero-video-stage {
  align-items: center;
  padding-top: clamp(112px, 9vw, 140px);
  padding-bottom: clamp(104px, 8vw, 136px);
}

.career-page .career-hero-video-stage .career-hero-copy {
  align-self: center;
  max-width: 980px;
  padding-top: 0;
  transform: translateY(clamp(12px, 2vh, 26px));
}

.career-page .career-hero-video-stage h1 {
  max-width: 980px;
  font-size: clamp(72px, 6.15vw, 112px);
  line-height: .92;
  letter-spacing: -5px;
}

.career-page .career-hero-video-stage .career-hero-copy>p {
  max-width: 680px;
  margin-top: 20px;
  font-size: clamp(17px, 1.05vw, 21px);
  line-height: 1.48;
  letter-spacing: -.25px;
}

.career-page .career-hero-video-stage .career-hero-actions {
  margin-top: 30px;
}

.career-page .career-hero-video-stage .career-scroll-cue {
  margin-top: 28px;
}

@media(max-width:1100px) {
  .career-page .career-hero-video-stage h1 {
    font-size: clamp(58px, 8.8vw, 86px);
    letter-spacing: -3.8px;
  }
}

/* Career scroll indicator: transparent label with a vertical guide */
.career-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 32px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .58em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .28);
}

.career-scroll-cue span {
  display: block;
  width: 2px;
  height: 78px;
  margin-left: calc(50% - 1px);
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .78), rgba(255, 255, 255, .16));
  font-size: 0;
  opacity: .78;
  animation: careerScrollLine 1.8s ease-in-out infinite;
}

@keyframes careerScrollLine {

  0%,
  100% {
    transform: scaleY(.78);
    opacity: .5
  }

  50% {
    transform: scaleY(1);
    opacity: .85
  }
}

.career-life-scroll-cue {
  margin-top: 32px;
}

@media(max-width:760px) {
  .career-scroll-cue {
    gap: 14px;
    font-size: 11px;
    letter-spacing: .44em;
  }

  .career-scroll-cue span {
    height: 58px;
  }
}

/* Career landing hero: homepage-style slideshow treatment */
.career-index-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  overflow: hidden;
  background: #061925;
}

.career-index-hero-slides,
.career-index-slide {
  position: absolute;
  inset: 0;
}

.career-index-slide {
  background-image: var(--career-hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.075);
  transition: opacity 1.8s cubic-bezier(.4, 0, .2, 1), transform 8s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.career-index-slide.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.career-index-video-slide {
  overflow: hidden;
  background: #071c2c;
}

.career-index-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(.92) contrast(1.05);
}

@media (max-width: 760px), (hover: none) and (pointer: coarse) {
  .hero-video,
  .career-index-video {
    display: none;
  }
}

.career-index-hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 21, 33, .92), rgba(4, 26, 39, .66) 44%, rgba(4, 24, 36, .22) 78%),
    linear-gradient(0deg, rgba(2, 17, 27, .8), transparent 42%);
}

.career-index-hero-content {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  top: 40%;
  width: min(850px, 58vw);
  max-width: 850px;
  transform: translateY(-50%);
}

.career-index-hero-content .eyebrow span {
  border-top-color: #8d84c3;
}

.career-index-hero h1 {
  margin: 22px 0;
  color: #fff;
  font: 800 clamp(52px, min(7vw, 10.5vh), 96px)/.97 "Manrope";
  letter-spacing: -5px;
  text-shadow: 0 18px 52px rgba(0, 0, 0, .32);
}

.career-index-hero h1 em {
  color: rgba(255, 255, 255, .48);
  font-style: normal;
}

.career-index-hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(15px, min(1.3vw, 2.3vh), 18px);
  line-height: 1.6;
}

.career-index-hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: clamp(22px, 3.5vh, 34px);
}

.career-index-hero .button.primary {
  background: #302774;
  color: #fff;
}

.career-index-hero .text-link {
  color: #fff;
}

.career-index-hero-controls {
  position: absolute;
  z-index: 4;
  bottom: 42px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 13px;
}

.career-index-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 24, 36, .12);
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.career-index-arrow:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .16);
  transform: scale(1.06);
}

.career-index-pagination {
  display: flex;
  align-items: center;
  gap: 7px;
}

.career-index-pagination button {
  position: relative;
  width: 30px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.career-index-pagination button:before {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .36);
}

.career-index-pagination button span {
  position: absolute;
  top: 16px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
}

.career-index-pagination button.active span {
  animation: hero-progress 7s linear forwards;
}

.career-index-slide-count {
  margin-left: 5px;
  color: rgba(255, 255, 255, .52);
  font: 500 9px "Manrope";
  letter-spacing: 1px;
}

.career-index-slide-count strong {
  color: #fff;
  font-weight: 700;
}

.career-index-hero-status {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 42px;
  display: flex;
  width: min(490px, 40vw);
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.career-index-hero-status>div {
  flex: 1;
  display: flex;
  gap: 12px;
  padding: 16px 10px 0;
}

.career-index-hero-status span {
  color: #8d84c3;
  font-size: 9px;
}

.career-index-hero-status p {
  margin: 0;
  font: 600 11px/1.4 "Manrope";
  letter-spacing: 1px;
  text-transform: uppercase;
}

.career-index-scroll {
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: 50%;
  display: block;
  width: 1px;
  height: 82px;
  transform: translateX(-50%);
  opacity: .72;
}

.career-index-scroll span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .78), rgba(255, 255, 255, .18));
  transform-origin: top;
  animation: careerThinScroll 1.9s ease-in-out infinite;
}

@keyframes careerThinScroll {

  0%,
  100% {
    transform: scaleY(.56);
    opacity: .46
  }

  50% {
    transform: scaleY(1);
    opacity: .9
  }
}

@media(max-height:800px) and (min-width:901px) {
  .career-index-hero-content {
    top: 38.5%;
    width: min(760px, 58vw);
  }

  .career-index-hero h1 {
    margin: 18px 0;
    font-size: clamp(48px, min(6.5vw, 9.5vh), 76px);
  }

  .career-index-hero-copy {
    max-width: 570px;
    line-height: 1.5;
  }

  .career-index-hero-actions {
    margin-top: 20px;
  }

  .career-index-hero .button {
    padding: 14px 18px;
  }

  .career-index-hero-status,
  .career-index-hero-controls {
    bottom: 24px;
  }
}

@media(max-width:900px) {
  .career-index-hero-content {
    top: auto;
    right: 5vw;
    bottom: clamp(130px, 18vh, 180px);
    left: 5vw;
    width: auto;
    transform: none;
  }

  .career-index-hero h1 {
    font-size: clamp(46px, 12vw, 76px);
    letter-spacing: -3.5px;
  }

  .career-index-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .career-index-hero-controls {
    bottom: 34px;
    left: 5vw;
  }

  .career-index-hero-status {
    display: none;
  }

  .career-index-scroll {
    bottom: 24px;
    height: 62px;
  }
}

@media(max-width:520px) {
  .career-index-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
    letter-spacing: -2.7px;
  }

  .career-index-hero-copy {
    font-size: 15px;
  }
}

/* Career index hero placement: left aligned, vertically centered */
@media(min-width:901px) {
  .career-index-hero-content {
    left: var(--pad);
    top: 50%;
    width: min(850px, 56vw);
    transform: translateY(-46%);
  }
}

@media(max-width:760px) {
  .career-page .career-hero-video-stage {
    padding-top: 118px;
    padding-bottom: 84px;
  }

  .career-page .career-hero-video-stage .career-hero-copy {
    transform: none;
  }

  .career-page .career-hero-video-stage h1 {
    font-size: clamp(46px, 12vw, 64px);
    letter-spacing: -2.6px;
  }

  .career-page .career-hero-video-stage .career-hero-copy>p {
    max-width: 520px;
    font-size: 16px;
  }
}

/* Homepage QHSE: scoped final design */
.home-qhse.qhse-dossier {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #071c2c;
  background: linear-gradient(180deg, #fff 0%, #f4f7f8 100%);
  padding-top: clamp(86px, 8vw, 126px);
  padding-bottom: clamp(82px, 8vw, 118px);
}

.home-qhse.qhse-dossier:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 10%, rgba(51, 42, 122, .12), transparent 30%), linear-gradient(90deg, rgba(7, 28, 44, .035) 1px, transparent 1px), linear-gradient(180deg, rgba(7, 28, 44, .026) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
  pointer-events: none;
}

.home-qhse.qhse-dossier:after {
  display: none
}

.home-qhse.qhse-dossier>* {
  position: relative;
  z-index: 1
}

.home-qhse .section-label {
  color: #6d7e89
}

.home-qhse .section-label span,
.home-qhse .kicker {
  color: #332a7a
}

.home-qhse .section-label:after {
  border-color: #aebbc4
}

.home-qhse .qhse-dossier-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .56fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
  margin-top: clamp(38px, 4.5vw, 58px);
  padding-bottom: 30px;
  border-bottom: 1px solid #d4dee5;
}

.home-qhse .qhse-dossier-head h2 {
  max-width: 920px;
  margin: 14px 0 0;
  color: #071c2c;
  font: 900 clamp(42px, 4.8vw, 76px)/.98 "Manrope";
  letter-spacing: -3.9px;
}

.home-qhse .qhse-dossier-head>p {
  max-width: 620px;
  margin: 0;
  color: #526878;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.72;
}

.home-qhse .qhse-dossier-board {
  display: grid;
  grid-template-columns: minmax(0, .64fr) minmax(360px, .36fr);
  gap: 0;
  align-items: stretch;
  height: auto;
  min-height: clamp(640px, 64vh, 760px);
  margin-top: 34px;
  border: 1px solid #d6e0e6;
  background: #fff;
  box-shadow: 0 24px 76px rgba(7, 28, 44, .09);
  overflow: visible;
}

.home-qhse .qhse-visual {
  grid-column: 1;
  height: auto;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  background: #071c2c;
  box-shadow: none;
}

.home-qhse .qhse-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-qhse.qhse-dossier .qhse-visual .qhse-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.92) contrast(1.03);
  transform: scale(1.025);
  transition: opacity .9s ease, transform 1.25s cubic-bezier(.22, 1, .36, 1);
}

.home-qhse.qhse-dossier .qhse-visual .qhse-slide.active {
  opacity: 1;
  transform: scale(1);
}

.home-qhse .qhse-visual:before {
  display: none
}

.home-qhse .qhse-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 16, 25, .78), rgba(3, 16, 25, .05) 56%), linear-gradient(90deg, rgba(3, 16, 25, .18), transparent 62%);
}

.home-qhse .qhse-visual figcaption {
  position: absolute;
  z-index: 2;
  top: auto;
  right: auto;
  bottom: 28px;
  left: 28px;
  width: min(430px, calc(100% - 56px));
  padding: 20px 22px;
  color: #fff;
  background: rgba(5, 23, 34, .88);
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 0;
  border-left: 4px solid #8d84c3;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.home-qhse .qhse-visual figcaption span {
  display: block;
  margin: 0 0 12px;
  color: #c9c3ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.home-qhse .qhse-visual figcaption strong {
  display: block;
  max-width: 380px;
  color: #fff;
  font: 900 clamp(21px, 1.8vw, 30px)/1.08 "Manrope";
  letter-spacing: -1px;
}

.home-qhse .qhse-slide-controls {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(5, 23, 34, .62);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
}

.home-qhse .qhse-slide-controls button {
  display: block;
  width: 32px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: width .35s ease, background .35s ease;
}

.home-qhse .qhse-slide-controls button.active {
  width: 54px;
  background: #8d84c3;
}

.home-qhse .qhse-register {
  grid-column: 2;
  display: flex;
  height: auto;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(28px, 3vw, 44px);
  color: #fff;
  background: radial-gradient(circle at 8% 10%, rgba(141, 132, 195, .2), transparent 32%), linear-gradient(155deg, #071c2c 0%, #061925 58%, #332a7a 145%);
  border: 0;
  box-shadow: none;
}

.home-qhse .qhse-register-title {
  display: block;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.home-qhse .qhse-register-title span {
  color: #c9c3ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.home-qhse .qhse-register-title strong {
  display: block;
  max-width: 360px;
  margin-top: 14px;
  color: #fff;
  text-align: left;
  font: 900 clamp(28px, 2.45vw, 42px)/1.02 "Manrope";
  letter-spacing: -1.8px;
}

.home-qhse .qhse-checklist {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.home-qhse .qhse-checklist article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.home-qhse .qhse-checklist article:last-child {
  border-bottom: 0
}

.home-qhse .qhse-checklist article>span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #c9c3ff;
  background: rgba(255, 255, 255, .055);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .8px;
}

.home-qhse .qhse-checklist strong {
  display: block;
  color: #fff;
  font: 900 17px/1.12 "Manrope";
  letter-spacing: -.35px;
}

.home-qhse .qhse-checklist p {
  margin: 7px 0 0;
  color: #c3d0d8;
  font-size: 12.5px;
  line-height: 1.52;
}

.home-qhse-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.home-qhse-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: color .28s ease, padding-left .35s cubic-bezier(.22, 1, .36, 1), border-color .28s ease;
}

.home-qhse-links a:hover {
  padding-left: 8px;
  color: #c9c3ff;
  border-color: #c9c3ff;
}

.home-qhse .qhse-control-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border: 1px solid #d6e0e6;
  border-top: 0;
  background: #fff;
  box-shadow: 0 18px 54px rgba(7, 28, 44, .055);
}

.home-qhse .qhse-control-points>div {
  position: relative;
  min-height: 174px;
  padding: 26px;
  border-right: 1px solid #d6e0e6;
  background: #fff;
  overflow: hidden;
}

.home-qhse .qhse-control-points>div:last-child {
  border-right: 0
}

.home-qhse .qhse-control-points>div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #332a7a;
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.home-qhse .qhse-control-points>div:hover:before {
  transform: scaleX(1)
}

.home-qhse .qhse-control-points span {
  display: block;
  margin-bottom: 32px;
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.home-qhse .qhse-control-points strong {
  display: block;
  color: #071c2c;
  font: 900 clamp(19px, 1.55vw, 25px)/1.07 "Manrope";
  letter-spacing: -.75px;
}

.home-qhse .qhse-control-points p {
  max-width: 300px;
  margin: 12px 0 0;
  color: #5f7280;
  font-size: 12.5px;
  line-height: 1.58;
}

@media(max-width:1100px) {

  .home-qhse .qhse-dossier-head,
  .home-qhse .qhse-dossier-board {
    grid-template-columns: 1fr
  }

  .home-qhse .qhse-visual,
  .home-qhse .qhse-register {
    grid-column: auto;
    min-height: 430px;
  }

  .home-qhse .qhse-register {
    min-height: 0;
    justify-content: flex-start;
  }

  .home-qhse .qhse-control-points {
    grid-template-columns: 1fr 1fr
  }

  .home-qhse .qhse-control-points>div:nth-child(2) {
    border-right: 0
  }

  .home-qhse .qhse-control-points>div:nth-child(-n+2) {
    border-bottom: 1px solid #d6e0e6
  }
}

@media(max-width:700px) {
  .home-qhse.qhse-dossier {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .home-qhse .qhse-dossier-head {
    display: block;
    margin-top: 34px;
    padding-bottom: 24px;
  }

  .home-qhse .qhse-dossier-head h2 {
    font-size: clamp(34px, 10vw, 50px);
    letter-spacing: -2.4px;
  }

  .home-qhse .qhse-dossier-head>p {
    margin-top: 18px;
    font-size: 14.5px;
  }

  .home-qhse .qhse-dossier-board {
    min-height: 0;
    margin-top: 26px;
  }

  .home-qhse .qhse-visual {
    min-height: 340px
  }

  .home-qhse .qhse-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 16px 18px;
  }

  .home-qhse .qhse-slide-controls {
    right: 14px;
    bottom: auto;
    top: 14px;
    padding: 8px 10px;
  }

  .home-qhse .qhse-slide-controls button {
    width: 24px
  }

  .home-qhse .qhse-slide-controls button.active {
    width: 38px
  }

  .home-qhse .qhse-register {
    padding: 22px
  }

  .home-qhse .qhse-register-title strong {
    font-size: 28px
  }

  .home-qhse .qhse-checklist article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-qhse .qhse-control-points {
    grid-template-columns: 1fr
  }

  .home-qhse .qhse-control-points>div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #d6e0e6;
  }

  .home-qhse .qhse-control-points>div:last-child {
    border-bottom: 0
  }

  .home-qhse .qhse-control-points span {
    margin-bottom: 20px
  }
}

@media(min-width:1101px) {
  .home-qhse.qhse-dossier {
    padding-top: clamp(42px, 5vh, 58px);
    padding-bottom: clamp(38px, 4.8vh, 56px);
  }

  .home-qhse .section-label {
    font-size: 10px;
  }

  .home-qhse .qhse-dossier-head {
    gap: clamp(28px, 4vw, 58px);
    margin-top: clamp(22px, 2.8vh, 32px);
    padding-bottom: 18px;
  }

  .home-qhse .qhse-dossier-head .kicker {
    margin: 0;
    font-size: 10px;
  }

  .home-qhse .qhse-dossier-head h2 {
    max-width: 760px;
    margin-top: 10px;
    font-size: clamp(38px, 3.5vw, 54px);
    letter-spacing: -2.7px;
  }

  .home-qhse .qhse-dossier-head>p {
    max-width: 560px;
    font-size: 13px;
    line-height: 1.56;
  }

  .home-qhse .qhse-dossier-board {
    min-height: clamp(470px, 50vh, 540px);
    margin-top: 22px;
  }

  .home-qhse .qhse-visual figcaption {
    bottom: 20px;
    left: 20px;
    width: min(360px, calc(100% - 40px));
    padding: 16px 18px;
  }

  .home-qhse .qhse-visual figcaption span {
    margin-bottom: 9px;
    font-size: 8px;
  }

  .home-qhse .qhse-visual figcaption strong {
    max-width: 310px;
    font-size: clamp(18px, 1.45vw, 24px);
    letter-spacing: -.75px;
  }

  .home-qhse .qhse-slide-controls {
    right: 18px;
    bottom: 18px;
    padding: 8px 10px;
  }

  .home-qhse .qhse-slide-controls button {
    width: 26px;
  }

  .home-qhse .qhse-slide-controls button.active {
    width: 42px;
  }

  .home-qhse .qhse-register {
    padding: 24px 30px;
  }

  .home-qhse .qhse-register-title {
    padding-bottom: 16px;
  }

  .home-qhse .qhse-register-title strong {
    max-width: 300px;
    margin-top: 10px;
    font-size: clamp(24px, 2vw, 32px);
    letter-spacing: -1.35px;
  }

  .home-qhse .qhse-checklist {
    margin-top: 8px;
  }

  .home-qhse .qhse-checklist article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 10px 0;
  }

  .home-qhse .qhse-checklist article>span {
    width: 29px;
    height: 29px;
    font-size: 8px;
  }

  .home-qhse .qhse-checklist strong {
    font-size: 14.5px;
  }

  .home-qhse .qhse-checklist p {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.42;
  }

  .home-qhse-links {
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
  }

  .home-qhse-links a {
    padding-bottom: 8px;
    font-size: 9px;
    letter-spacing: .9px;
  }

  .home-qhse .qhse-control-points>div {
    min-height: 104px;
    padding: 16px 18px;
  }

  .home-qhse .qhse-control-points span {
    margin-bottom: 10px;
    font-size: 8.5px;
  }

  .home-qhse .qhse-control-points strong {
    font-size: clamp(15px, 1.1vw, 18px);
    letter-spacing: -.5px;
  }

  .home-qhse .qhse-control-points p {
    margin-top: 7px;
    font-size: 10.5px;
    line-height: 1.4;
  }
}

@media(prefers-reduced-motion:reduce) {
  .home-qhse.qhse-dossier .qhse-visual .qhse-slide {
    transition: none;
    transform: none;
  }
}

/* Services page: marine geophysical section polish */
.services-page #marine-seismic {
  grid-template-columns: minmax(0, 1fr) minmax(0, .98fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: stretch;
  padding-top: clamp(58px, 6vw, 86px);
  padding-bottom: clamp(58px, 6vw, 86px);
}

.services-page #marine-seismic .service-detail-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  height: 100%;
  min-height: clamp(650px, 50vw, 820px);
  background: transparent;
}

.services-page #marine-seismic .service-gallery-feature {
  min-height: clamp(460px, 36vw, 640px);
  background: #071c2c;
  border: 0;
  box-shadow: 0 30px 90px rgba(7, 28, 44, .12);
}

.services-page #marine-seismic .service-gallery-feature img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.03);
}

.services-page #marine-seismic .service-gallery-feature.is-contain img {
  object-fit: contain;
  padding: clamp(18px, 2vw, 30px);
  background: #f4f7f8;
}

.services-page #marine-seismic .service-gallery-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 20, 31, .44), rgba(4, 20, 31, 0) 52%);
  pointer-events: none;
}

.services-page #marine-seismic .service-gallery-feature figcaption {
  right: auto;
  bottom: 18px;
  left: 18px;
  width: auto;
  max-width: min(440px, calc(100% - 36px));
  padding: 12px 16px;
  background: rgba(4, 20, 31, .78);
  border: 1px solid rgba(255, 255, 255, .13);
  border-left: 3px solid #8d84c3;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.services-page #marine-seismic .service-gallery-grid-six {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  background: transparent;
}

.services-page #marine-seismic .service-gallery-grid-six figure {
  aspect-ratio: 16/7.4;
  background: #071c2c;
  border: 0;
  box-shadow: none;
}

.services-page #marine-seismic .service-gallery-grid-six figure:before {
  inset: 0;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.services-page #marine-seismic .service-gallery-grid-six figure:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: #8d84c3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.services-page #marine-seismic .service-gallery-grid-six figure:hover,
.services-page #marine-seismic .service-gallery-grid-six figure:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.services-page #marine-seismic .service-gallery-grid-six figure.is-selected {
  box-shadow: 0 0 0 2px #8d84c3, 0 16px 42px rgba(51, 42, 122, .16);
}

.services-page #marine-seismic .service-gallery-grid-six figure.is-selected:before,
.services-page #marine-seismic .service-gallery-grid-six figure:focus-visible:before {
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(141, 132, 195, .42);
}

.services-page #marine-seismic .service-gallery-grid-six figure.is-selected:after,
.services-page #marine-seismic .service-gallery-grid-six figure:hover:after,
.services-page #marine-seismic .service-gallery-grid-six figure:focus-visible:after {
  transform: scaleX(1);
}

.services-page #marine-seismic .service-gallery-grid-six img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #071c2c;
  filter: saturate(.92) contrast(1.02);
}

.services-page #marine-seismic .service-gallery-grid-six .service-gallery-contain {
  object-fit: contain !important;
  padding: 8px;
  background: #f4f7f8;
}

.services-page #marine-seismic .service-gallery-grid-six figcaption {
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding: 7px 8px;
  background: rgba(4, 20, 31, .78);
  border: 0;
  color: #fff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.25;
}

.services-page #marine-seismic .service-detail-copy {
  max-width: 720px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.services-page #marine-seismic .service-detail-copy .kicker {
  margin-bottom: 12px;
}

.services-page #marine-seismic .service-detail-index {
  margin-bottom: 18px;
  color: #6e7f8b;
  font-size: 9px;
  letter-spacing: 1.55px;
}

.services-page #marine-seismic .service-detail-copy h2 {
  max-width: 620px;
  font-size: clamp(40px, 3.9vw, 62px);
  letter-spacing: -3.1px;
}

.services-page #marine-seismic .service-detail-copy>p:not(.kicker) {
  max-width: 680px;
  margin-top: 16px;
  color: #5f7280;
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.68;
}

.services-page #marine-seismic .service-detail-points {
  display: block;
  margin-top: 28px;
  border-top: 1px solid #cfd9df;
}

.services-page #marine-seismic .service-detail-points p {
  display: grid;
  grid-template-columns: minmax(112px, .32fr) minmax(0, 1fr);
  gap: 22px;
  min-height: 0;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #cfd9df;
  background: transparent;
}

.services-page #marine-seismic .service-detail-points strong {
  display: block;
  margin-bottom: 0;
  color: #332a7a;
  font-size: 9px;
  letter-spacing: 1.35px;
}

.services-page #marine-seismic .service-detail-points span {
  display: block;
  color: #526878;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.48;
}

@media(max-width:1200px) {
  .services-page #marine-seismic {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-page #marine-seismic .service-detail-copy {
    max-width: 860px;
  }
}

@media(max-width:700px) {
  .services-page #marine-seismic {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .services-page #marine-seismic .service-gallery-feature {
    aspect-ratio: 4/3;
  }

  .services-page #marine-seismic .service-gallery-grid-six {
    grid-template-columns: 1fr 1fr;
  }

  .services-page #marine-seismic .service-gallery-grid-six figure {
    aspect-ratio: 16/9;
  }

  .services-page #marine-seismic .service-detail-copy {
    padding: 0;
  }

  .services-page #marine-seismic .service-detail-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -2.1px;
  }

  .services-page #marine-seismic .service-detail-points {
    display: block;
  }

  .services-page #marine-seismic .service-detail-points p {
    display: block;
    min-height: 0;
  }

  .services-page #marine-seismic .service-detail-points strong {
    margin-bottom: 8px;
  }
}

/* Internship voices final redesign */
.career-page .career-internship-voices {
  background:
    linear-gradient(90deg, rgba(7, 28, 44, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 44, .03) 1px, transparent 1px),
    #f4f7f8;
  background-size: 120px 120px;
}

.career-page .career-internship-voices .career-section-head {
  max-width: 900px;
}

.career-page .career-internship-voice-slider {
  display: block;
  min-height: 0;
  margin-top: clamp(30px, 4vw, 50px);
  background: transparent;
  color: #071c2c;
  box-shadow: none;
  overflow: visible;
}

.career-page .career-internship-voice-stage {
  position: relative;
  min-height: clamp(520px, 46vw, 660px);
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 26px 84px rgba(7, 28, 44, .09);
  overflow: hidden;
}

.career-page .career-internship-voice-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(90deg, #edf3f6 0%, #edf3f6 52%, #071c2c 52%, #071c2c 100%);
  pointer-events: none;
}

.career-page .career-internship-voice-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(51, 42, 122, .12), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(7, 28, 44, .14) 48%, rgba(7, 28, 44, .08));
  pointer-events: none;
}

.career-page .career-internship-voice-stage article {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 52%) minmax(0, 48%);
  gap: 0;
  align-items: stretch;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  filter: none;
  transform: none;
  transition: opacity .52s ease;
}

.career-page .career-internship-voice-stage article.is-active {
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: none;
}

.career-page .career-internship-stage-photo {
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  display: grid;
  width: 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  place-items: end center;
  aspect-ratio: auto;
  border: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .08) 42%, rgba(51, 42, 122, .12)),
    repeating-linear-gradient(90deg, rgba(7, 28, 44, .035) 0 1px, transparent 1px 48px),
    linear-gradient(145deg, #f8fafb, #dce7ee);
  box-shadow: none;
  overflow: hidden;
}

.career-page .career-internship-stage-photo:before {
  content: "INTERN PROFILE";
  position: absolute;
  top: clamp(24px, 3vw, 42px);
  left: clamp(24px, 3vw, 42px);
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.career-page .career-internship-stage-photo:after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -25%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(51, 42, 122, .07);
  pointer-events: none;
}

.career-page .career-internship-stage-photo .career-voice-silhouette {
  position: relative;
  z-index: 1;
  width: min(54%, 330px);
  height: min(82%, 500px);
  margin-bottom: 0;
  opacity: 1;
  filter: drop-shadow(0 36px 46px rgba(7, 28, 44, .16));
  transform: translateY(42px) scale(.96);
}

.career-page .career-internship-stage-photo .career-voice-silhouette:before,
.career-page .career-internship-stage-photo .career-voice-silhouette:after {
  background: linear-gradient(145deg, #233f55, #332a7a);
}

.career-page .career-internship-stage-photo .career-voice-silhouette:before {
  top: 6%;
  width: 34%;
  height: auto;
  aspect-ratio: 1;
}

.career-page .career-internship-stage-photo .career-voice-silhouette:after {
  bottom: 0;
  width: 92%;
  height: 56%;
  border-radius: 999px 999px 42px 42px;
}

.career-page .career-internship-stage-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(620px, calc(100% - clamp(42px, 5vw, 88px)));
  margin: 0 clamp(26px, 4vw, 56px) clamp(30px, 4.6vw, 62px) 0;
  padding: clamp(24px, 3vw, 42px);
  color: #fff;
  background: rgba(7, 28, 44, .94);
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 5px solid #8d84c3;
  box-shadow: 0 28px 76px rgba(0, 0, 0, .22);
  transform: translateY(18px);
}

.career-page .career-internship-voice-stage article.is-active .career-internship-stage-copy {
  animation: internVoiceCopyIn .68s cubic-bezier(.2, 1, .25, 1) both;
}

.career-page .career-internship-voice-stage article.is-active .career-internship-stage-photo .career-voice-silhouette {
  animation: internVoicePortraitIn .78s cubic-bezier(.2, 1, .25, 1) both;
}

.career-page .career-internship-stage-copy:before {
  display: none;
}

.career-page .career-internship-stage-copy span {
  display: block;
  width: max-content;
  margin-bottom: 16px;
  color: #b9b2e9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.career-page .career-internship-voice-stage article>span {
  display: none;
}

.career-page .career-internship-voice-stage blockquote {
  max-width: 540px;
  margin: 0;
  color: #fff;
  font: 900 clamp(25px, 2.15vw, 38px)/1.1 "Manrope";
  letter-spacing: -1.5px;
  text-wrap: balance;
}

.career-page .career-internship-voice-stage blockquote:before {
  display: none;
}

.career-page .career-internship-voice-stage strong {
  display: block;
  margin-top: 28px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.career-page .career-internship-voice-stage small {
  display: block;
  margin-top: 7px;
  color: #aebdc7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.career-page .career-internship-voice-people {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  background: transparent;
  border: 0;
}

.career-page .career-internship-voice-people button {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  color: #071c2c;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 16px 46px rgba(7, 28, 44, .055);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.career-page .career-internship-voice-people button:hover,
.career-page .career-internship-voice-people button.is-active {
  background: #f8fafb;
  border-color: #8d84c3;
  box-shadow: 0 18px 52px rgba(51, 42, 122, .12);
  transform: translateY(-3px);
}

.career-page .career-internship-voice-people button:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #332a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.career-page .career-internship-voice-people button:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 42, 122, .08), transparent 64%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.career-page .career-internship-voice-people button.is-active:before {
  transform: scaleX(1);
}

.career-page .career-internship-voice-people button.is-active:after {
  opacity: 1;
}

.career-page .career-internship-voice-people figure {
  position: relative;
  z-index: 1;
  grid-row: 1/3;
  display: grid;
  width: 48px;
  height: 58px;
  margin: 0;
  place-items: end center;
  background: linear-gradient(145deg, #eef4f7, #dce5eb);
  overflow: hidden;
}

.career-page .career-internship-voice-people .career-voice-silhouette {
  width: 28px;
  height: 42px;
  opacity: .95;
}

.career-page .career-internship-voice-people .career-voice-silhouette:before,
.career-page .career-internship-voice-people .career-voice-silhouette:after {
  background: linear-gradient(145deg, #233f55, #332a7a);
}

.career-page .career-internship-voice-people .career-voice-silhouette:before {
  top: 4px;
  width: 16px;
  height: 16px;
}

.career-page .career-internship-voice-people .career-voice-silhouette:after {
  bottom: 2px;
  width: 28px;
  height: 22px;
  border-radius: 999px 999px 8px 8px;
}

.career-page .career-internship-voice-people span,
.career-page .career-internship-voice-people small {
  position: relative;
  z-index: 1;
}

.career-page .career-internship-voice-people span {
  align-self: end;
  color: #071c2c;
  font: 900 15px/1.08 "Manrope";
  letter-spacing: -.45px;
}

.career-page .career-internship-voice-people small {
  align-self: start;
  margin-top: 5px;
  color: #667884;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes internVoiceCopyIn {
  0% {
    opacity: 0;
    transform: translate(24px, 28px) scale(.97)
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1)
  }
}

@keyframes internVoicePortraitIn {
  0% {
    opacity: 0;
    transform: translate(-18px, 60px) scale(.92)
  }

  100% {
    opacity: 1;
    transform: translate(0, 42px) scale(.96)
  }
}

@media(max-width:1050px) {
  .career-page .career-internship-voice-stage {
    min-height: 620px;
  }

  .career-page .career-internship-voice-stage article {
    grid-template-columns: minmax(280px, 46%) minmax(0, 54%);
  }

  .career-page .career-internship-voice-stage:before {
    background: linear-gradient(90deg, #edf3f6 0%, #edf3f6 46%, #071c2c 46%, #071c2c 100%);
  }

  .career-page .career-internship-stage-copy {
    width: calc(100% - 42px);
    margin: 0 22px 22px 0;
  }

  .career-page .career-internship-voice-people {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:760px) {
  .career-page .career-internship-voice-stage {
    min-height: 760px;
  }

  .career-page .career-internship-voice-stage:before {
    background: linear-gradient(180deg, #edf3f6 0%, #edf3f6 52%, #071c2c 52%, #071c2c 100%);
  }

  .career-page .career-internship-voice-stage article {
    grid-template-columns: 1fr;
    grid-template-rows: 54% 46%;
  }

  .career-page .career-internship-stage-photo .career-voice-silhouette {
    width: min(42%, 230px);
    height: min(82%, 420px);
  }

  .career-page .career-internship-stage-copy {
    align-self: end;
    justify-self: stretch;
    width: auto;
    margin: 0 18px 18px;
  }

  .career-page .career-internship-voice-stage blockquote {
    font-size: clamp(24px, 7vw, 34px);
    letter-spacing: -1.2px;
  }
}

@media(max-width:540px) {
  .career-page .career-internship-voice-stage {
    min-height: 720px;
  }

  .career-page .career-internship-stage-copy {
    padding: 22px;
  }

  .career-page .career-internship-voice-people {
    grid-template-columns: 1fr;
  }
}

/* Internship voices card layout */
.career-page .career-internship-testimonial-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 4vw, 48px);
}

.career-page .career-internship-testimonial-cards article {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 18px 54px rgba(7, 28, 44, .055);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .48s cubic-bezier(.22, 1, .36, 1),
    border-color .35s ease,
    box-shadow .45s ease,
    background .35s ease;
}

.career-page .career-internship-testimonial-cards article:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #332a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .52s cubic-bezier(.22, 1, .36, 1);
}

.career-page .career-internship-testimonial-cards article:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(51, 42, 122, .08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(244, 247, 248, .9));
  opacity: 0;
  transition: opacity .42s ease;
}

.career-page .career-internship-testimonial-cards article:hover {
  transform: translateY(-8px);
  border-color: #b9b2e9;
  box-shadow: 0 30px 82px rgba(7, 28, 44, .1);
}

.career-page .career-internship-testimonial-cards article:hover:before {
  transform: scaleX(1);
}

.career-page .career-internship-testimonial-cards article:hover:after {
  opacity: 1;
}

.career-page .career-internship-testimonial-cards figure {
  position: relative;
  display: grid;
  min-height: 220px;
  margin: 0;
  place-items: end center;
  background:
    linear-gradient(90deg, rgba(7, 28, 44, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 28, 44, .032) 1px, transparent 1px),
    linear-gradient(145deg, #f8fafb, #e4ecf2);
  background-size: 46px 46px, 46px 46px, auto;
  border-bottom: 1px solid #d8e1e7;
  overflow: hidden;
}

.career-page .career-internship-testimonial-cards figure:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -84px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(51, 42, 122, .08);
  transform: translateX(-50%);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}

.career-page .career-internship-testimonial-cards article:hover figure:before {
  opacity: .85;
  transform: translateX(-50%) scale(1.08);
}

.career-page .career-internship-testimonial-cards .career-voice-silhouette {
  z-index: 1;
  width: 132px;
  height: 166px;
  opacity: .9;
  filter: drop-shadow(0 22px 36px rgba(7, 28, 44, .13));
  transform: translateY(22px);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}

.career-page .career-internship-testimonial-cards article:hover .career-voice-silhouette {
  opacity: 1;
  transform: translateY(12px) scale(1.04);
}

.career-page .career-internship-testimonial-cards .career-voice-silhouette:before,
.career-page .career-internship-testimonial-cards .career-voice-silhouette:after {
  background: linear-gradient(145deg, #233f55, #332a7a);
}

.career-page .career-internship-testimonial-cards .career-voice-silhouette:before {
  top: 10px;
  width: 62px;
  height: 62px;
}

.career-page .career-internship-testimonial-cards .career-voice-silhouette:after {
  bottom: 10px;
  width: 132px;
  height: 82px;
  border-radius: 999px 999px 26px 26px;
}

.career-page .career-internship-testimonial-cards article>span {
  width: max-content;
  margin: 24px 24px 0;
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.career-page .career-internship-testimonial-cards blockquote {
  margin: 18px 24px 28px;
  color: #071c2c;
  font: 900 clamp(20px, 1.45vw, 25px)/1.18 "Manrope";
  letter-spacing: -.9px;
}

.career-page .career-internship-testimonial-cards article>div {
  margin: auto 24px 26px;
  padding-top: 18px;
  border-top: 1px solid #d8e1e7;
}

.career-page .career-internship-testimonial-cards strong {
  display: block;
  color: #071c2c;
  font-size: 17px;
  font-weight: 900;
}

.career-page .career-internship-testimonial-cards small {
  display: block;
  margin-top: 7px;
  color: #667884;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}

@media(max-width:1120px) {
  .career-page .career-internship-testimonial-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:640px) {
  .career-page .career-internship-testimonial-cards {
    grid-template-columns: 1fr;
  }

  .career-page .career-internship-testimonial-cards article {
    min-height: 0;
  }

  .career-page .career-internship-testimonial-cards figure {
    min-height: 200px;
  }
}

/* Internship voices quote slider */
.career-page .career-internship-quote-slider {
  position: relative;
  margin-top: clamp(22px, 3vw, 36px);
}

.career-page .career-internship-quote-stage {
  position: relative;
  min-height: clamp(410px, 34vw, 520px);
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 28px 84px rgba(7, 28, 44, .09);
  overflow: hidden;
}

.career-page .career-internship-quote-stage:before,
.career-page .career-internship-quote-stage:after {
  position: absolute;
  z-index: 3;
  color: #332a7a;
  font: 900 clamp(72px, 8vw, 128px)/.8 "Manrope";
  letter-spacing: -.08em;
  opacity: .14;
  pointer-events: none;
}

.career-page .career-internship-quote-stage:before {
  content: "“";
  top: 12px;
  left: clamp(16px, 2.4vw, 34px);
}

.career-page .career-internship-quote-stage:after {
  content: "”";
  right: clamp(16px, 2.4vw, 34px);
  bottom: -24px;
}

.career-page .career-internship-quote-stage article {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(300px, 34%) minmax(0, 66%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  filter: blur(8px);
  transition:
    opacity .62s ease,
    transform .76s cubic-bezier(.22, 1, .36, 1),
    filter .62s ease;
}

.career-page .career-internship-quote-stage article.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  filter: blur(0);
}

.career-page .career-internship-quote-stage figure {
  position: relative;
  height: 100%;
  min-height: inherit;
  margin: 0;
  background: #071c2c;
  overflow: hidden;
}

.career-page .career-internship-quote-stage figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 28, 44, .08), rgba(7, 28, 44, 0) 48%, rgba(7, 28, 44, .2));
  pointer-events: none;
}

.career-page .career-internship-quote-stage img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.03);
  transform: scale(1.06);
  transition: transform 5.2s ease;
}

.career-page .career-internship-quote-stage article.is-active img {
  transform: scale(1);
}

.career-page .career-internship-quote-stage .portrait-focus {
  background: #071c2c;
}

.career-page .career-internship-quote-stage .portrait-focus img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  transform: none;
  filter: saturate(.98) contrast(1.02);
}

.career-page .career-internship-quote-stage article.is-active .portrait-focus img {
  transform: none;
}

.career-page .career-internship-quote-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.2vw, 58px);
  color: #071c2c;
  background:
    radial-gradient(circle at 96% 92%, rgba(51, 42, 122, .08), transparent 30%),
    linear-gradient(90deg, #fff, #f8fafb);
}

.career-page .career-internship-quote-copy:before {
  content: "";
  position: absolute;
  top: clamp(30px, 4vw, 54px);
  bottom: clamp(30px, 4vw, 54px);
  left: 0;
  width: 4px;
  background: #332a7a;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .72s cubic-bezier(.22, 1, .36, 1) .1s;
}

.career-page .career-internship-quote-stage article.is-active .career-internship-quote-copy:before {
  transform: scaleY(1);
}

.career-page .career-internship-quote-copy span {
  display: block;
  margin-bottom: clamp(16px, 2.2vw, 26px);
  color: #332a7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.career-page .career-internship-quote-copy blockquote {
  max-width: 720px;
  margin: 0;
  color: #071c2c;
  font: 800 clamp(16px, 1.25vw, 22px)/1.42 "Manrope";
  letter-spacing: -.55px;
  text-wrap: balance;
}

.career-page .career-internship-quote-copy strong {
  display: block;
  margin-top: clamp(24px, 3vw, 36px);
  color: #071c2c;
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 800;
  letter-spacing: -.8px;
}

.career-page .career-internship-quote-copy small {
  display: block;
  margin-top: 8px;
  color: #596d7b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.career-page .career-internship-quote-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.career-page .career-internship-quote-controls button {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  color: #071c2c;
  background: #fff;
  border: 1px solid #d8e1e7;
  box-shadow: 0 14px 38px rgba(7, 28, 44, .05);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform .35s cubic-bezier(.22, 1, .36, 1),
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.career-page .career-internship-quote-controls button:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #332a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.career-page .career-internship-quote-controls button:hover,
.career-page .career-internship-quote-controls button.is-active {
  transform: translateY(-3px);
  border-color: #8d84c3;
  background: #f8fafb;
  box-shadow: 0 18px 50px rgba(51, 42, 122, .11);
}

.career-page .career-internship-quote-controls button.is-active:before {
  transform: scaleX(1);
}

.career-page .career-internship-quote-controls span {
  color: #332a7a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.career-page .career-internship-quote-controls strong {
  color: #071c2c;
  font: 900 13px/1.22 "Manrope";
  letter-spacing: -.28px;
}

@media(max-width:980px) {
  .career-page .career-internship-quote-stage {
    min-height: 640px;
  }

  .career-page .career-internship-quote-stage article {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(270px, 43%) minmax(0, 57%);
  }

  .career-page .career-internship-quote-stage figure {
    min-height: 270px;
  }

  .career-page .career-internship-quote-copy {
    padding: 28px 24px 34px;
  }

  .career-page .career-internship-quote-copy:before {
    top: 28px;
    bottom: 34px;
  }

  .career-page .career-internship-quote-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:580px) {
  .career-page .career-internship-quote-stage {
    min-height: 620px;
  }

  .career-page .career-internship-quote-stage:before,
  .career-page .career-internship-quote-stage:after {
    font-size: 76px;
  }

  .career-page .career-internship-quote-copy blockquote {
    font-size: clamp(16px, 4.8vw, 20px);
    letter-spacing: -.45px;
  }

  .career-page .career-internship-quote-controls {
    grid-template-columns: 1fr;
  }
}

/* Responsive stability fixes */
@media(max-width:900px) {
  .site-header,
  .site-header.scrolled {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .header-tools {
    flex: 0 0 auto;
    gap: 10px;
    min-width: 0;
  }

  .language-toggle {
    flex: 0 0 auto;
  }

  .menu-toggle {
    flex: 0 0 28px;
  }

  .nav-links {
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    contain: layout paint;
    overflow-x: hidden;
    overflow-y: auto;
    transition:
      transform .6s cubic-bezier(.22, 1, .36, 1),
      visibility .6s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links:not(.open) > a,
  .nav-links:not(.open) .nav-item,
  .nav-links:not(.open) .language-toggle,
  .nav-links:not(.open) .nav-dropdown-menu {
    visibility: hidden;
  }

  .nav-links.open > a,
  .nav-links.open .nav-item,
  .nav-links.open .language-toggle,
  .nav-links.open .nav-dropdown-menu {
    visibility: visible;
  }

  .nav-links:not(.open) .nav-dropdown-menu {
    display: none;
  }

  .nav-links.open .nav-dropdown-menu {
    display: block;
  }
}

@media(max-width:700px) {
  .service-detail-gallery {
    min-height: 0;
  }

  .service-gallery-feature {
    width: 100%;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-gallery-feature img {
    width: 100%;
    height: 100%;
  }

  .services-page #marine-seismic .service-gallery-feature {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .trusted-strip,
  .trusted-row,
  .trusted-window {
    max-width: 100%;
    overflow: hidden;
    contain: layout paint;
  }

  .trusted-window {
    position: relative;
    height: auto;
    contain: layout paint;
  }

  .trusted-track {
    position: static;
    display: flex;
    width: max-content;
    max-width: none;
    gap: 8px;
    animation: trusted-scroll 38s linear infinite;
    transform: none;
    will-change: transform;
  }

  .trusted-track .client-logo-card {
    width: 118px;
    flex: 0 0 auto;
  }

  .trusted-track .client-logo-card:nth-child(n+7) {
    display: grid;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-detail-section,
  .service-detail-media,
  .service-detail-gallery,
  .service-gallery-feature,
  .service-gallery-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .service-gallery-feature figcaption,
  #nearshore-onshore-geotechnical .service-gallery-feature figcaption {
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
  }

  #nearshore-onshore-geotechnical .service-detail-gallery {
    overflow: hidden;
  }

  #nearshore-onshore-geotechnical .service-gallery-grid-mixed {
    width: 100%;
    max-width: 100%;
  }

  .hse-kpi-table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hse-kpi-row {
    min-width: 760px;
  }
}

/* Career mobile navigation visibility fix */
@media (max-width: 1180px) {
  .career-page .career-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    z-index: 5000;
  }

  .career-page .career-menu-toggle {
    position: relative;
    z-index: 5002;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    background: rgba(7, 28, 44, .28);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .career-page .career-menu-toggle span {
    position: absolute;
    left: 13px;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #fff !important;
    opacity: 1;
    transform: none;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .25s ease, background .25s ease;
  }

  .career-page .career-menu-toggle span:first-child {
    top: 16px;
  }

  .career-page .career-menu-toggle span:nth-child(2) {
    top: 23px;
  }

  .career-page .career-menu-toggle span:last-child {
    top: 30px;
  }

  .career-page .career-header.scrolled:not(.menu-open) .career-menu-toggle,
  .career-subpage .career-header:not(.menu-open) .career-menu-toggle {
    border-color: rgba(7, 28, 44, .15);
    background: #fff;
  }

  .career-page .career-header.scrolled:not(.menu-open) .career-menu-toggle span,
  .career-subpage .career-header:not(.menu-open) .career-menu-toggle span {
    background: #071c2c !important;
  }

  .career-page .career-header.menu-open .career-menu-toggle {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
  }

  .career-page .career-header.menu-open .career-menu-toggle span {
    background: #fff !important;
  }

  .career-page .career-header.menu-open .career-menu-toggle span:first-child {
    top: 23px;
    transform: rotate(45deg);
  }

  .career-page .career-header.menu-open .career-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .career-page .career-header.menu-open .career-menu-toggle span:last-child {
    top: 23px;
    transform: rotate(-45deg);
  }

  .career-page .career-header .career-nav,
  .career-page .career-header .career-header-actions {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Career responsive hardening */
.career-page main {
  overflow-x: clip;
}

.career-page img,
.career-page video {
  max-width: 100%;
}

@media (max-width: 900px) {
  .career-page .career-section,
  .career-page .career-quote-panel,
  .career-page .career-apply-band,
  .career-page .career-job-board {
    padding-right: clamp(20px, 5vw, 40px);
    padding-left: clamp(20px, 5vw, 40px);
  }

  .career-page .career-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-page .career-section-head h2 {
    max-width: 100%;
    font-size: clamp(38px, 9vw, 64px);
    letter-spacing: -2.8px;
  }

  .career-page-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 128px;
  }

  .career-page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(42px, 10vw, 70px);
    letter-spacing: -3.1px;
  }

  .career-page-hero-copy p:not(.career-eyebrow) {
    max-width: 680px;
    font-size: 16px;
  }

  .career-page-hero-media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .career-split-layout,
  .career-detail-stack article,
  .career-note-list p {
    grid-template-columns: 1fr;
  }

  .career-detail-stack p {
    grid-column: auto;
  }

  .career-dept-block,
  .career-dept-block:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .career-dept-block:nth-child(even) figure {
    grid-column: auto;
    grid-row: auto;
  }

  .career-dept-block figure {
    min-height: clamp(320px, 58vw, 480px);
  }

  .career-dept-copy {
    padding: clamp(32px, 7vw, 56px);
  }

  .career-dept-copy h2 {
    font-size: clamp(34px, 8vw, 56px);
    letter-spacing: -2.5px;
  }

  .career-job-board {
    padding-top: 118px;
  }

  .career-job-board-intro,
  .career-job-search-panel,
  .career-job-filter-grid {
    grid-template-columns: 1fr;
  }

  .career-job-board-intro h1 {
    font-size: clamp(40px, 10vw, 68px);
    letter-spacing: -3.2px;
  }

  .career-job-search-panel {
    padding: 16px;
  }

  .career-job-search-panel button[data-job-clear],
  .career-job-search input {
    min-height: 56px;
  }

  .career-job-board .career-opportunity-copy {
    padding: 22px;
  }

  .career-job-board .career-opportunity-copy h3 {
    font-size: clamp(27px, 7vw, 40px);
  }

  .career-job-board .career-opportunity-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .career-page .career-header {
    top: 0;
    right: 0;
    left: 0;
    min-height: 74px;
    padding: 13px 18px;
    border-radius: 0;
  }

  .career-page .career-brand {
    min-width: 0;
    gap: 10px;
  }

  .career-page .career-brand img,
  .career-page .career-footer-brand img {
    width: clamp(128px, 42vw, 164px);
  }

  .career-page .career-brand span {
    padding-left: 10px;
    font-size: 10px;
    letter-spacing: 1.1px;
  }

  .career-page .career-header.menu-open {
    padding-bottom: 18px;
  }

  .career-page .career-header.menu-open .career-nav,
  .career-page .career-header.menu-open .career-header-actions {
    gap: 0;
    padding: 14px 0 0;
    background: transparent;
  }

  .career-page .career-header.menu-open .career-nav a,
  .career-page .career-header.menu-open .career-header-actions a {
    width: 100%;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #fff !important;
    font-size: 15px;
  }

  .career-index-hero-content {
    right: 24px;
    bottom: clamp(92px, 16vh, 132px);
    left: 24px;
  }

  .career-index-hero h1 {
    margin: 18px 0;
    font-size: clamp(44px, 13vw, 68px);
    letter-spacing: -2.8px;
  }

  .career-index-hero-copy {
    max-width: 92vw;
    font-size: 15px;
    line-height: 1.55;
  }

  .career-index-hero-actions {
    display: none;
  }

  .career-index-hero-controls {
    display: none;
  }

  .career-index-scroll {
    bottom: 20px;
    height: 54px;
  }

  .career-page-hero {
    padding-top: 112px;
    padding-bottom: 50px;
  }

  .career-page-hero-media {
    aspect-ratio: 4 / 3;
  }

  .career-page .career-section,
  .career-page .career-quote-panel,
  .career-page .career-apply-band,
  .career-page .career-job-board {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .career-page .career-section-label {
    margin-bottom: 26px;
  }

  .career-page .career-section-head h2,
  .career-page-hero-copy h1 {
    font-size: clamp(36px, 10.5vw, 54px);
    letter-spacing: -2.25px;
  }

  .career-page .career-internship-quote-stage {
    min-height: 0;
  }

  .career-page .career-internship-quote-stage article {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    transform: none;
    filter: none;
  }

  .career-page .career-internship-quote-stage article.is-active {
    display: grid;
  }

  .career-page .career-internship-quote-stage figure {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .career-page .career-internship-quote-stage img {
    min-height: 0;
    object-fit: contain;
    background: #071c2c;
  }

  .career-page .career-internship-quote-copy {
    padding: 26px 22px 30px;
  }

  .career-page .career-internship-quote-copy blockquote {
    font-size: clamp(16px, 4.7vw, 20px);
    line-height: 1.45;
    letter-spacing: -.35px;
  }

  .career-page .career-internship-quote-controls {
    grid-template-columns: 1fr;
  }

  .career-page .career-internship-testimonial-cards,
  .career-page .career-employee-grid,
  .career-page .career-job-grid {
    grid-template-columns: 1fr;
  }

  .career-page .career-internship-testimonial-cards article,
  .career-page .career-employee-grid article {
    min-height: 0;
  }

  .career-page .career-internship-testimonial-cards figure,
  .career-page .career-employee-grid figure {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .career-page .career-section,
  .career-page .career-quote-panel,
  .career-page .career-apply-band,
  .career-page .career-job-board {
    padding-right: 18px;
    padding-left: 18px;
  }

  .career-page .career-brand span {
    display: none;
  }

  .career-page .career-menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .career-page .career-menu-toggle span {
    left: 11px;
  }

  .career-page .career-page-hero-copy h1,
  .career-page .career-section-head h2,
  .career-job-board-intro h1 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .career-index-hero-content {
    right: 18px;
    left: 18px;
  }

  .career-index-hero h1 {
    font-size: clamp(40px, 14vw, 58px);
    letter-spacing: -2px;
  }

  .career-page .career-page-hero-media {
    aspect-ratio: 1 / 1;
  }

  .career-job-quick-filters button {
    flex: 1 1 100%;
  }
}

/* Footer legal/social row responsive finish */
@media (max-width: 900px) {
  .site-footer .footer-bottom,
  .career-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-legal {
    gap: 10px 16px;
  }

  .footer-socials {
    justify-content: flex-start;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-social {
    width: 21px;
    height: 21px;
  }
}

/* Final responsive QA pass */
@media (max-width: 700px) {
  .quality-value-chain {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 1px solid #d8e1e7;
    border-left: 1px solid #d8e1e7;
    contain: layout paint;
  }

  .quality-value-chain img {
    width: max(720px, 100%);
    min-width: 0;
    max-width: none;
  }
}

/* Services gallery: fixed-ratio click gallery */
.services-page .service-detail-section {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .9fr);
  gap: clamp(34px, 4.5vw, 72px);
  align-items: center
}

.services-page .service-detail-reverse {
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.02fr)
}

.services-page .service-detail-gallery {
  display: grid;
  grid-template-rows: auto max-content;
  gap: 12px;
  min-height: 0;
  height: auto;
  overflow: visible;
  background: transparent;
  box-shadow: none
}

.services-page .service-gallery-feature,
.services-page #nearshore-onshore-geotechnical .service-gallery-feature,
.services-page .service-seabed-detail .service-gallery-feature {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #071c2a;
  border: 0;
  box-shadow: 0 26px 72px rgba(7, 28, 44, .14)
}

.services-page .service-gallery-feature img,
.services-page #marine-seismic .service-gallery-feature img,
.services-page #nearshore-onshore-geotechnical .service-gallery-feature img {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: cover;
  object-position: center;
  transition: opacity .32s ease, transform .68s cubic-bezier(.22, 1, .36, 1)
}

.services-page .service-gallery-feature.is-contain img {
  object-fit: contain;
  background: #071c2a
}

.services-page .service-gallery-feature.is-switching img {
  opacity: .38;
  transform: scale(1.025)
}

.services-page .service-gallery-grid,
.services-page .service-gallery-grid-six,
.services-page .service-gallery-grid-three,
.services-page .service-gallery-grid-four,
.services-page .service-gallery-grid-mixed,
.services-page #nearshore-onshore-geotechnical .service-gallery-grid-mixed,
.services-page .service-seabed-detail .service-gallery-grid-four {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 !important;
  background: transparent !important;
  align-content: start
}

.services-page .service-gallery-grid figure,
.services-page #nearshore-onshore-geotechnical .service-gallery-grid-mixed figure,
.services-page .service-seabed-detail .service-gallery-grid-four figure {
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto !important;
  background: #071c2a;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent
}

.services-page .service-gallery-grid img,
.services-page #nearshore-onshore-geotechnical .service-gallery-grid-mixed img {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: cover;
  object-position: center
}

.services-page .service-gallery-contain {
  padding: 0 !important
}

.services-page #nearshore-onshore-geotechnical .service-detail-gallery,
.services-page .service-seabed-detail .service-detail-gallery {
  display: grid !important;
  grid-template-rows: auto max-content !important;
  align-self: start !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
  overflow: visible !important
}

.services-page .service-detail-gallery:after {
  content: none !important;
  display: none !important
}

.services-page #nearshore-onshore-geotechnical .service-gallery-grid-mixed {
  min-height: 0 !important;
  height: auto !important
}

.services-page .service-gallery-grid figure:before {
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2)
}

.services-page .service-gallery-grid figure.is-selected:before,
.services-page .service-gallery-grid figure:focus-visible:before,
.services-page #nearshore-onshore-geotechnical .service-gallery-grid figure.is-selected:before,
.services-page #nearshore-onshore-geotechnical .service-gallery-grid figure:focus-visible:before {
  border-width: 0;
  box-shadow: none
}

.services-page .service-gallery-grid figure.is-selected,
.services-page .service-gallery-grid figure:focus,
.services-page .service-gallery-grid figure:focus-visible {
  outline: 0;
  box-shadow: none
}

.services-page .service-gallery-feature figcaption,
.services-page #nearshore-onshore-geotechnical .service-gallery-feature figcaption {
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  left: clamp(16px, 2vw, 28px);
  width: auto;
  max-width: 560px;
  padding: 15px 18px;
  color: #fff;
  background: rgba(5, 23, 34, .82);
  border-left: 4px solid var(--accent);
  backdrop-filter: blur(12px)
}

.services-page #marine-seismic .service-gallery-grid-six figure.is-selected,
.services-page #marine-seismic .service-gallery-grid-six figure:focus,
.services-page #marine-seismic .service-gallery-grid-six figure:focus-visible {
  outline: 0;
  box-shadow: none
}

.services-page #marine-seismic .service-gallery-grid-six figure.is-selected:before,
.services-page #marine-seismic .service-gallery-grid-six figure:focus-visible:before {
  border: 0;
  box-shadow: none
}

.services-page #marine-seismic .service-gallery-grid-six figure.is-selected:after,
.services-page #marine-seismic .service-gallery-grid-six figure:focus-visible:after {
  transform: scaleX(0)
}

.services-page .service-gallery-grid figure.is-selected figcaption,
.services-page #marine-seismic .service-gallery-grid-six figure.is-selected figcaption {
  background: rgba(4, 20, 31, .78);
  border-color: transparent
}

.equipment-seismic-page .seismic-equipment-hero {
  min-height: 100svh;
  height: 100svh;
  align-items: center;
  padding-top: clamp(96px, 9vh, 132px);
  padding-bottom: clamp(72px, 8vh, 108px);
  background-image:
    linear-gradient(90deg, rgba(3, 16, 25, .86) 0%, rgba(3, 16, 25, .68) 42%, rgba(3, 16, 25, .22) 100%),
    url("assets/serv/2D:3D HIGH RESOLUTION MARINE SEISMIC/DJI_0165-1536x1152.jpg");
  background-position: center;
  background-size: cover
}

.equipment-seismic-page .seismic-equipment-hero .equipment-hero-copy {
  max-width: 790px;
  transform: translateY(-2vh)
}

.equipment-seismic-page .seismic-equipment-hero h1 {
  font-size: clamp(42px, 5.2vw, 84px);
  letter-spacing: -.058em
}

.equipment-seismic-page .seismic-equipment-hero .equipment-hero-copy>p:not(.kicker) {
  max-width: 690px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.64
}

.seismic-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: end
}

.seismic-equipment-intro-copy h2,
.seismic-directory-head h2 {
  margin: 0;
  max-width: 980px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.1vw, 46px);
  line-height: 1.04;
  letter-spacing: -.05em
}

.seismic-equipment-intro-copy p:not(.kicker) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  line-height: 1.68
}

.seismic-intro-media {
  position: relative;
  min-height: clamp(320px, 34vw, 560px);
  margin: 0;
  overflow: hidden;
  background: #061927;
  box-shadow: 0 30px 90px rgba(7, 28, 44, .16)
}

.seismic-intro-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center
}

.seismic-intro-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 13px 16px;
  color: #fff;
  background: rgba(4, 20, 31, .82);
  border-left: 4px solid var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.25;
  text-transform: uppercase
}

.seismic-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 58px);
  border-top: 1px solid rgba(7, 28, 44, .14);
  border-bottom: 1px solid rgba(7, 28, 44, .14);
  background: rgba(255, 255, 255, .62)
}

.seismic-metric-strip span {
  min-height: 128px;
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid rgba(7, 28, 44, .1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase
}

.seismic-metric-strip span:last-child {
  border-right: 0
}

.seismic-metric-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--taka-purple);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: none
}

.seismic-directory-head {
  margin-bottom: clamp(26px, 4vw, 54px)
}

.seismic-equipment-list {
  display: grid;
  gap: 16px
}

.seismic-equipment-item {
  display: grid;
  grid-template-columns: 76px minmax(0, .95fr) minmax(300px, .76fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(7, 28, 44, .12);
  background: #fff;
  box-shadow: 0 18px 54px rgba(7, 28, 44, .06)
}

.seismic-equipment-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--taka-purple);
  border: 1px solid rgba(51, 42, 122, .24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em
}

.seismic-equipment-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.045em
}

.seismic-equipment-copy p:not(.kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7
}

.seismic-equipment-item ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none
}

.seismic-equipment-item li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5
}

.seismic-equipment-item li:before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--taka-purple)
}

.seismic-system-list {
  display: grid;
  gap: clamp(30px, 4vw, 58px)
}

.seismic-system-panel {
  border: 1px solid rgba(7, 28, 44, .12);
  background: #fff;
  box-shadow: 0 24px 80px rgba(7, 28, 44, .07)
}

.seismic-system-panel-head {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(28px, 4.2vw, 62px);
  border-bottom: 1px solid rgba(7, 28, 44, .1);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .98), rgba(244, 248, 251, .92)),
    radial-gradient(circle at 90% 0, rgba(51, 42, 122, .1), transparent 32%)
}

.seismic-system-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--taka-purple);
  border: 1px solid rgba(51, 42, 122, .24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em
}

.seismic-system-panel-head h3 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 62px);
  line-height: .95;
  letter-spacing: -.055em
}

.seismic-system-panel-head p:not(.kicker) {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 750;
  line-height: 1.75
}

.seismic-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 28, 44, .1)
}

.seismic-module-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.seismic-module-card {
  display: grid;
  grid-template-rows: clamp(190px, 18vw, 300px) 1fr;
  min-width: 0;
  background: #fff
}

.seismic-module-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #071c2c
}

.seismic-module-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.seismic-module-media:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(4, 20, 31, .72), transparent)
}

.seismic-module-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  color: #fff;
  background: rgba(4, 20, 31, .84);
  border-left: 4px solid var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase
}

.seismic-module-copy {
  padding: clamp(22px, 2.4vw, 36px)
}

.seismic-module-copy h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  letter-spacing: -.04em
}

.seismic-module-copy>p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65
}

.seismic-component-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(7, 28, 44, .12)
}

.seismic-component-list li {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(7, 28, 44, .1)
}

.seismic-component-list strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase
}

.seismic-component-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55
}

.seismic-component-list li:last-child {
  border-bottom: 0
}

.seismic-equipment-flow {
  display: grid;
  gap: clamp(42px, 6vw, 92px)
}

.seismic-family-block {
  display: grid;
  gap: clamp(20px, 3vw, 34px)
}

.seismic-family-head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
  padding: clamp(26px, 3.4vw, 48px);
  border: 1px solid rgba(7, 28, 44, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 249, 251, .94)),
    radial-gradient(circle at 92% 0, rgba(51, 42, 122, .09), transparent 34%)
}

.seismic-family-head h3 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -.052em
}

.seismic-family-head p:not(.kicker) {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(14px, .95vw, 16px);
  font-weight: 760;
  line-height: 1.72
}

.seismic-detail {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  min-height: clamp(460px, 42vw, 680px);
  background: #fff;
  box-shadow: none
}

.seismic-detail-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr)
}

.seismic-detail-reverse .seismic-detail-media {
  grid-column: 2
}

.seismic-detail-reverse .seismic-detail-copy {
  grid-column: 1;
  grid-row: 1
}

.seismic-detail-media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #071c2c
}

.seismic-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform .9s cubic-bezier(.19, 1, .22, 1)
}

.seismic-detail:hover .seismic-detail-media img {
  transform: scale(1.035)
}

.seismic-detail-media.seismic-detail-fit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
}

.seismic-detail-media.seismic-detail-fit img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  min-height: 0;
}

.seismic-detail:hover .seismic-detail-media.seismic-detail-fit img {
  transform: none;
}

.seismic-detail-text-only {
  grid-template-columns: 1fr;
  min-height: 0;
  background: #ffffff;
}

.seismic-detail-text-only .seismic-detail-copy {
  max-width: 1180px;
  padding: clamp(28px, 3.8vw, 56px);
  background: #ffffff;
}

.seismic-detail-text-only .seismic-detail-copy h4 {
  font-size: clamp(30px, 3.8vw, 56px);
}

.seismic-detail-text-only .seismic-component-stack p {
  grid-template-columns: minmax(210px, .28fr) minmax(0, 1fr);
}

.seismic-inline-media {
  width: min(100%, 720px);
  margin: clamp(18px, 2.6vw, 30px) 0;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.seismic-inline-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
}

.seismic-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.5vw, 72px)
}

.seismic-detail-copy h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: .95;
  letter-spacing: -.058em
}

.seismic-detail-copy>p:not(.kicker) {
  max-width: 760px;
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 760;
  line-height: 1.72
}

.seismic-component-stack {
  display: grid
}

.seismic-component-stack p {
  display: grid;
  grid-template-columns: minmax(170px, .42fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin: 0;
  padding: 18px 0
}

.seismic-component-stack p:last-child {
  border-bottom: 0
}

.seismic-component-stack strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase
}

.seismic-component-stack span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 730;
  line-height: 1.62
}

.hse-zero-card {
  border-color: rgba(141, 132, 195, .55);
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 246, 250, .96));
  box-shadow: 0 24px 60px rgba(6, 23, 34, .08)
}

.hse-zero-card strong {
  color: var(--taka-purple)
}

@media (max-width: 920px) {
  .equipment-seismic-page .seismic-family-head,
  .equipment-seismic-page .seismic-detail,
  .equipment-seismic-page .seismic-detail-reverse,
  .equipment-seismic-page .seismic-component-stack p {
    grid-template-columns: 1fr !important;
  }

  .equipment-seismic-page .seismic-detail,
  .equipment-seismic-page .seismic-detail-reverse {
    min-height: 0;
  }

  .equipment-seismic-page .seismic-detail-reverse .seismic-detail-media,
  .equipment-seismic-page .seismic-detail-reverse .seismic-detail-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .equipment-seismic-page .seismic-detail-text-only .seismic-detail-copy,
  .equipment-seismic-page .seismic-detail-copy {
    padding: clamp(24px, 5vw, 42px);
  }

  .equipment-seismic-page .seismic-component-stack p {
    gap: 8px !important;
  }

  .equipment-seismic-page .seismic-component-stack span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 760px) {
  .services-page .service-detail-section,
  .services-page .service-detail-reverse {
    grid-template-columns: 1fr
  }

  .services-page .service-gallery-feature {
    aspect-ratio: 4 / 3
  }

  .services-page .service-gallery-grid,
  .services-page .service-gallery-grid-six,
  .services-page .service-gallery-grid-three,
  .services-page .service-gallery-grid-four,
  .services-page .service-gallery-grid-mixed,
  .services-page #nearshore-onshore-geotechnical .service-gallery-grid-mixed,
  .services-page .service-seabed-detail .service-gallery-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .seismic-intro-grid,
  .seismic-equipment-item {
    grid-template-columns: 1fr
  }

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

  .seismic-metric-strip span:nth-child(2n) {
    border-right: 0
  }

  .seismic-system-panel-head {
    grid-template-columns: 1fr
  }

  .seismic-family-head,
  .seismic-detail,
  .seismic-detail-reverse,
  .seismic-component-stack p {
    grid-template-columns: 1fr
  }

  .equipment-seismic-page .seismic-detail-text-only .seismic-component-stack p,
  .equipment-seismic-page .seismic-component-stack p {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 16px 0 !important;
  }

  .equipment-seismic-page .seismic-component-stack strong {
    font-size: 11px !important;
    letter-spacing: .08em !important;
  }

  .equipment-seismic-page .seismic-component-stack span {
    display: block !important;
    max-width: 100% !important;
    color: #5f707d !important;
    font-size: 13px !important;
    line-height: 1.58 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
  }

  .equipment-seismic-page .seismic-detail-text-only .seismic-detail-copy {
    padding: 24px 20px !important;
  }

  .equipment-seismic-page .seismic-detail-copy h4,
  .equipment-seismic-page .seismic-detail-text-only .seismic-detail-copy h4 {
    font-size: clamp(26px, 9vw, 38px) !important;
    letter-spacing: -.045em !important;
  }

  .equipment-seismic-page .seismic-detail-copy>p:not(.kicker) {
    font-size: 13px !important;
    line-height: 1.62 !important;
    margin: 14px 0 18px !important;
  }

  .equipment-seismic-page .seismic-equipment-hero {
    height: auto;
    min-height: 100svh;
    padding-top: 132px;
    padding-bottom: 72px;
    align-items: center
  }

  .equipment-seismic-page .seismic-equipment-hero .equipment-hero-copy {
    transform: none
  }

  .seismic-inline-media {
    width: 100%;
    margin: 16px 0 18px
  }

  .seismic-inline-media img {
    max-height: 260px
  }

  .seismic-detail,
  .seismic-detail-reverse {
    min-height: 0
  }

  .seismic-detail-reverse .seismic-detail-media,
  .seismic-detail-reverse .seismic-detail-copy {
    grid-column: auto;
    grid-row: auto
  }

  .seismic-detail-media {
    min-height: min(68vw, 360px)
  }

  .seismic-module-grid,
  .seismic-module-grid-compact {
    grid-template-columns: 1fr
  }

  .seismic-module-card {
    grid-template-rows: minmax(220px, 54vw) 1fr
  }
}

/* Final responsive/performance polish */
.home-qhse .qhse-visual figcaption,
.hse-page .qhse-readiness-visual figcaption,
.hse-page .qhse-gallery figcaption {
  display: none !important;
}

.profile-services-showcase .profile-service-card:after {
  content: none !important;
}

.profile-services-showcase .profile-service-card img {
  transform: none !important;
}

.sigap-integrity .sigap-icon,
.career-value-grid article:nth-child(2) b,
.career-sigap-showcase article:nth-child(2) .career-sigap-icon {
  background: transparent !important;
  box-shadow: none !important;
}

.career-page .career-sigap-recognition-slider .career-employee-voice-tabs button,
.career-page .career-sigap-recognition-slider .career-employee-voice-arrows button {
  transform: none !important;
}

@media (max-width: 900px) {
  .header-tools {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .menu-toggle {
    position: relative !important;
    z-index: 5002 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border: 1px solid rgba(255, 255, 255, .32) !important;
    border-radius: 999px !important;
    background: rgba(7, 28, 44, .18) !important;
    backdrop-filter: blur(10px);
  }

  .menu-toggle span,
  .site-header.scrolled .menu-toggle span,
  .menu-toggle[aria-expanded="true"] span {
    position: absolute !important;
    left: 12px !important;
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .menu-toggle span:first-child {
    top: 15px !important;
  }

  .menu-toggle span:nth-child(2) {
    top: 22px !important;
  }

  .menu-toggle span:last-child {
    top: 29px !important;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 22px !important;
    transform: rotate(45deg) !important;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 22px !important;
    transform: rotate(-45deg) !important;
  }

  .nav-links {
    top: 74px !important;
    height: calc(100dvh - 74px) !important;
    max-height: calc(100dvh - 74px) !important;
    padding: 22px 28px 40px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }

  .nav-links.open {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open > a,
  .nav-links.open .nav-item,
  .nav-links.open .language-toggle {
    width: 100%;
  }

  .nav-links.open .nav-dropdown-menu {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    margin-top: 10px !important;
    padding: 10px 0 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .career-page .career-header.scrolled:not(.menu-open) .career-menu-toggle,
  .career-subpage .career-header:not(.menu-open) .career-menu-toggle,
  .career-page .career-menu-toggle {
    border-color: rgba(255, 255, 255, .38) !important;
    background: rgba(7, 28, 44, .28) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14) !important;
    backdrop-filter: blur(10px);
  }

  .career-page .career-menu-toggle span,
  .career-page .career-header.scrolled:not(.menu-open) .career-menu-toggle span,
  .career-subpage .career-header:not(.menu-open) .career-menu-toggle span,
  .career-page .career-header.menu-open .career-menu-toggle span {
    background: #fff !important;
  }
}

@media (max-width: 760px) {
  .home-qhse .qhse-visual figcaption,
  .hse-page .hse-program-visual figcaption,
  .hse-page .hse-program-media figcaption,
  .hse-page .hse-program-list figcaption,
  .hse-page .qhse-gallery figcaption,
  .hse-page .qhse-readiness-visual figcaption {
    display: none !important;
  }

  .profile-services-showcase .profile-service-card,
  .profile-services-showcase .profile-service-card figure,
  .profile-services-showcase .profile-service-card img {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
  }

  .site-footer .footer-cert-logo,
  .site-footer .footer-cert-logo img,
  .qhse-iso-list figure,
  .qhse-iso-list figure img,
  .credential-card img,
  .iso-metric-card img,
  .certificate-card img,
  .certificate-general-card img {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .qhse-certification-section {
    overflow: visible !important;
  }

  .qhse-certification-layout {
    display: block !important;
    margin-top: 28px !important;
  }

  .qhse-certification-copy {
    position: relative !important;
    top: auto !important;
    max-width: none !important;
    margin-bottom: 24px !important;
  }

  .qhse-iso-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    border: 0 !important;
  }

  .qhse-iso-list article {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: start !important;
    padding: 14px !important;
    background: #fff !important;
    border: 1px solid #d8e1e7 !important;
  }

  .qhse-iso-list figure {
    grid-row: 1 / span 3 !important;
    grid-column: 1 !important;
    display: block !important;
    width: 92px !important;
    height: 128px !important;
    min-height: 128px !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #eef3f6 !important;
  }

  .qhse-iso-list figure img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }

  .qhse-iso-list article>span,
  .qhse-iso-list article>div,
  .qhse-iso-list article>a {
    grid-column: 2 !important;
  }

  .qhse-iso-list article>span {
    margin-top: 2px !important;
  }

  .qhse-iso-list h3 {
    font-size: 20px !important;
    letter-spacing: -.6px !important;
  }

  .qhse-iso-list p {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .career-page .career-header.menu-open .career-nav,
  .career-page .career-header.menu-open .career-header-actions {
    padding-top: 18px !important;
    max-height: calc(100dvh - 78px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
  }

  .career-page .career-header.menu-open {
    background: rgba(7, 28, 44, .96) !important;
  }

  .site-footer .footer-cert-logos {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
  }

  .site-footer .footer-cert-logos a {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    opacity: 1;
    visibility: visible;
  }

  .site-footer .footer-cert-logos .footer-cert-iso {
    padding: 6px;
  }

  .site-footer .footer-cert-logos .footer-cert-iso-small img {
    width: 52px;
    height: 52px;
  }

  .site-footer .footer-cert-logos .footer-cert-smk3 img {
    max-width: 58px;
    max-height: 58px;
  }

  .site-footer {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 46px 24px 26px !important;
  }

  .site-footer:before {
    width: 90vw !important;
    height: 90vw !important;
    right: -50vw !important;
    top: -18vw !important;
  }

  .footer-brand-block p {
    max-width: none !important;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 18px !important;
    row-gap: 10px !important;
  }

  .footer-links .footer-title {
    grid-column: 1 / -1 !important;
  }

  .footer-column {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .footer-column p,
  .footer-column a {
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .vessel-profile-section {
    padding: 42px 0 54px !important;
  }

  .vessel-profile-section .vessel-detail-card {
    margin-top: 22px !important;
  }

  .vessel-detail-media {
    min-height: 0 !important;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .vessel-slide img {
    min-height: 0 !important;
    height: 100%;
    object-fit: cover;
  }

  .vessel-detail-copy,
  .vessel-profile-section.is-reversed .vessel-detail-copy {
    margin: 0 18px !important;
    padding: 22px 18px !important;
    transform: none !important;
  }

  .vessel-detail-copy h2 {
    font-size: clamp(28px, 8.5vw, 38px) !important;
    letter-spacing: -1.8px;
  }

  .vessel-spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .vessel-spec-list span {
    padding: 10px;
    font-size: 10.5px;
    min-width: 0 !important;
    word-break: keep-all;
  }

  .vessel-detail-card {
    display: block !important;
    overflow: hidden !important;
  }

  .vessel-profile-section.is-reversed .vessel-detail-card {
    display: flex !important;
    flex-direction: column !important;
  }

  .vessel-detail-copy {
    position: relative !important;
    z-index: 2 !important;
  }

  .career-life-values-head {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .career-life-values-head>strong {
    justify-self: start;
    font-size: clamp(58px, 18vw, 92px) !important;
    letter-spacing: -4px;
  }

  .career-sigap-showcase,
  .career-value-grid {
    grid-template-columns: 1fr !important;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-stage {
    min-height: 0 !important;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-stage article {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    min-height: 0 !important;
    transform: none !important;
    transition: opacity .32s ease, visibility .32s ease !important;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-photo {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    background: #fff !important;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-photo img {
    height: auto !important;
    max-height: 320px;
    object-fit: contain !important;
    transform: none !important;
    transition: none !important;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-copy {
    padding: 24px 20px !important;
  }

  .career-page .career-sigap-recognition-slider .career-employee-voice-copy blockquote {
    font-size: clamp(18px, 5.8vw, 26px) !important;
    line-height: 1.16;
  }

  .career-page .career-employee-voice-bottom,
  .career-page .career-employee-voice-tabs {
    gap: 10px;
  }

  .career-page .career-employee-voice-tabs button {
    min-height: 0;
    padding: 14px 16px;
  }

  .career-page .career-activity-board {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .career-activity-main img {
    aspect-ratio: 4 / 3 !important;
  }

  .career-activity-stories {
    grid-template-rows: none !important;
  }

  .career-activity-stories article {
    grid-template-columns: 92px 1fr !important;
    min-height: 96px !important;
  }

  .career-activity-stories img {
    height: 100% !important;
  }
}

@media (max-width: 430px) {
  .vessel-spec-list {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile hardening pass: keep navigation, heroes, and stacked cards inside the viewport. */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 16px 14px !important;
    gap: 8px !important;
  }

  .brand,
  .career-brand {
    min-width: 0 !important;
  }

  .brand img {
    width: min(158px, 42vw) !important;
    height: auto !important;
  }

  .header-tools {
    position: absolute !important;
    top: 16px !important;
    right: 14px !important;
    justify-self: end !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
    z-index: 5003 !important;
    gap: 6px !important;
  }

  .language-toggle {
    display: none !important;
  }

  .language-toggle button {
    min-width: 22px !important;
    padding-inline: 0 !important;
    font-size: 9px !important;
  }

  .menu-toggle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    flex: 0 0 40px !important;
  }

  .menu-toggle span,
  .site-header.scrolled .menu-toggle span,
  .menu-toggle[aria-expanded="true"] span {
    left: 10px !important;
    width: 20px !important;
  }

  .menu-toggle span:first-child {
    top: 13px !important;
  }

  .menu-toggle span:nth-child(2) {
    top: 19px !important;
  }

  .menu-toggle span:last-child {
    top: 25px !important;
  }

  .nav-links {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
  }
}

@media (max-width: 760px) {
  .hero,
  .vessel-hero,
  .career-page-hero,
  .career-index-hero {
    overflow: hidden !important;
  }

  .hero-content,
  .vessel-hero-copy,
  .career-page-hero-copy,
  .career-index-hero-content {
    left: 24px !important;
    right: 24px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-inline: 0 !important;
    padding-inline: 0 !important;
  }

  .hero-content h1,
  .vessel-hero h1,
  .career-page-hero h1,
  .career-index-hero h1,
  .section-heading h2,
  .split-heading h2 {
    max-width: 100% !important;
    font-size: clamp(31px, 8.9vw, 40px) !important;
    line-height: 1 !important;
    letter-spacing: -0.8px !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .hero-content p,
  .vessel-hero p,
  .career-page-hero p,
  .career-index-hero p {
    max-width: 100% !important;
    font-size: clamp(14px, 3.85vw, 17px) !important;
    line-height: 1.58 !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  .hero-title,
  .hero-title span,
  .career-page-hero-copy h1,
  .career-index-hero-content h1 {
    white-space: normal !important;
  }

  .hero-actions,
  .career-hero-actions {
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-actions a,
  .career-hero-actions a {
    width: 100% !important;
    min-width: 0 !important;
  }

  .vessel-detail-card,
  .profile-service-card,
  .career-activity-board,
  .career-sigap-recognition-slider,
  .career-life-hero,
  .home-qhse .qhse-editorial,
  .home-qhse .qhse-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

/* Final mobile guard: prevent older desktop rules from pushing controls/content off screen. */
@media (max-width: 900px) {
  .site-header,
  .site-header.scrolled {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 72px !important;
    min-height: 72px !important;
    padding: 14px 16px !important;
    overflow: visible !important;
  }

  .site-header .header-tools {
    display: flex !important;
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    width: 42px !important;
    height: 42px !important;
    z-index: 7000 !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-color: rgba(255, 255, 255, .42) !important;
    background: rgba(5, 22, 34, .34) !important;
  }

  .site-header .menu-toggle span,
  .site-header.scrolled .menu-toggle span,
  .site-header .menu-toggle[aria-expanded="true"] span {
    background: #fff !important;
  }

  .site-header .nav-links {
    top: 72px !important;
    height: calc(100dvh - 72px) !important;
    min-height: 0 !important;
    padding: 26px 24px 42px !important;
  }

  .site-header .nav-links a,
  .site-header.scrolled .nav-links a {
    font-size: clamp(18px, 5.4vw, 22px) !important;
  }

  .career-page .career-header,
  .career-page .career-header.scrolled,
  .career-subpage .career-header {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 72px !important;
    min-height: 72px !important;
    padding: 14px 16px !important;
    overflow: visible !important;
  }

  .career-page .career-brand img,
  .career-subpage .career-brand img {
    width: min(166px, 44vw) !important;
    height: auto !important;
  }

  .career-page .career-menu-toggle,
  .career-page .career-header.scrolled:not(.menu-open) .career-menu-toggle,
  .career-subpage .career-header:not(.menu-open) .career-menu-toggle {
    display: inline-flex !important;
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    border-color: rgba(255, 255, 255, .42) !important;
    background: rgba(5, 22, 34, .34) !important;
    z-index: 7000 !important;
  }

  .career-page .career-menu-toggle span,
  .career-page .career-header.scrolled:not(.menu-open) .career-menu-toggle span,
  .career-subpage .career-header:not(.menu-open) .career-menu-toggle span,
  .career-page .career-header.menu-open .career-menu-toggle span {
    background: #fff !important;
  }

  .career-page .career-header .career-nav,
  .career-page .career-header .career-header-actions,
  .career-subpage .career-header .career-nav,
  .career-subpage .career-header .career-header-actions {
    top: 72px !important;
    height: auto !important;
    max-height: calc(100dvh - 72px) !important;
    padding-top: 24px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .career-page .career-header.menu-open .career-nav,
  .career-page .career-header.menu-open .career-header-actions,
  .career-subpage .career-header.menu-open .career-nav,
  .career-subpage .career-header.menu-open .career-header-actions {
    top: 72px !important;
    max-height: calc(100dvh - 72px) !important;
  }
}

@media (max-width: 760px) {
  .hero-content,
  .career-index-hero-content {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .hero-content h1,
  .hero-title,
  .hero-title span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(28px, 8.2vw, 34px) !important;
    line-height: .98 !important;
    letter-spacing: -1px !important;
  }

  .hero-content .eyebrow,
  .hero-content p {
    max-width: 100% !important;
  }

  .hero-content p {
    font-size: 14.5px !important;
  }

  .hero-actions a {
    min-height: 54px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  .career-index-hero-content {
    left: 24px !important;
    right: 24px !important;
    width: auto !important;
    max-width: none !important;
  }

  .career-index-hero-content h1 {
    font-size: clamp(36px, 12vw, 52px) !important;
    line-height: .95 !important;
    letter-spacing: -2px !important;
  }

  .career-index-hero-copy {
    max-width: 32rem !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .career-index-hero-actions {
    display: none !important;
  }

  .career-index-scroll {
    display: none !important;
  }

  .career-page .career-activity-board {
    grid-template-columns: 1fr !important;
  }

  .career-activity-main img,
  .career-activity-stories img {
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
  }

  .career-activity-main figcaption {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    max-width: calc(100% - 28px) !important;
    padding: 14px !important;
  }

  .career-activity-main strong {
    font-size: clamp(20px, 6vw, 28px) !important;
    line-height: 1.06 !important;
  }

  .career-activity-stories {
    gap: 10px !important;
  }

  .career-activity-stories article {
    grid-template-columns: 104px 1fr !important;
    min-height: 104px !important;
  }

  .career-activity-stories h3 {
    font-size: clamp(16px, 4.8vw, 20px) !important;
    line-height: 1.08 !important;
  }
}

/* Career mobile nav final alignment with corporate header */
@media (max-width: 900px) {
  body.career-page {
    --career-mobile-header: 72px;
  }

  body.career-page .career-header,
  body.career-page .career-header.scrolled,
  body.career-page.career-subpage .career-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    height: var(--career-mobile-header) !important;
    min-height: var(--career-mobile-header) !important;
    padding: 12px 16px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 0 !important;
    background: rgba(5, 22, 34, .96) !important;
    box-shadow: 0 16px 36px rgba(4, 16, 26, .18) !important;
    backdrop-filter: blur(16px) !important;
    overflow: visible !important;
    z-index: 7000 !important;
  }

  body.career-page .career-brand {
    position: relative !important;
    z-index: 7002 !important;
    min-width: 0 !important;
    height: 48px !important;
    gap: 10px !important;
    color: #fff !important;
  }

  body.career-page .career-brand img,
  body.career-page.career-subpage .career-brand img {
    width: min(174px, 48vw) !important;
    height: auto !important;
    max-height: 42px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
  }

  body.career-page .career-brand span {
    display: none !important;
  }

  body.career-page .career-menu-toggle,
  body.career-page .career-header.scrolled:not(.menu-open) .career-menu-toggle,
  body.career-page.career-subpage .career-header:not(.menu-open) .career-menu-toggle,
  body.career-page .career-header.menu-open .career-menu-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 7003 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .36) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .04) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.career-page .career-menu-toggle span,
  body.career-page .career-header.scrolled:not(.menu-open) .career-menu-toggle span,
  body.career-page.career-subpage .career-header:not(.menu-open) .career-menu-toggle span,
  body.career-page .career-header.menu-open .career-menu-toggle span {
    position: absolute !important;
    left: 11px !important;
    width: 20px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #fff !important;
    transform-origin: center !important;
  }

  body.career-page .career-menu-toggle span:first-child {
    top: 14px !important;
  }

  body.career-page .career-menu-toggle span:nth-child(2) {
    top: 20px !important;
  }

  body.career-page .career-menu-toggle span:last-child {
    top: 26px !important;
  }

  body.career-page .career-header.menu-open .career-menu-toggle span:first-child {
    top: 20px !important;
    transform: rotate(45deg) !important;
  }

  body.career-page .career-header.menu-open .career-menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  body.career-page .career-header.menu-open .career-menu-toggle span:last-child {
    top: 20px !important;
    transform: rotate(-45deg) !important;
  }

  body.career-page .career-header .career-nav,
  body.career-page .career-header .career-header-actions,
  body.career-page.career-subpage .career-header .career-nav,
  body.career-page.career-subpage .career-header .career-header-actions {
    position: static !important;
    grid-column: 1 / -1 !important;
    display: none !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
  }

  body.career-page .career-header.menu-open {
    grid-template-rows: var(--career-mobile-header) auto auto !important;
    align-items: start !important;
    height: auto !important;
    min-height: var(--career-mobile-header) !important;
    max-height: 100dvh !important;
    padding-bottom: 18px !important;
    overflow-y: auto !important;
  }

  body.career-page .career-header.menu-open .career-nav,
  body.career-page .career-header.menu-open .career-header-actions,
  body.career-page.career-subpage .career-header.menu-open .career-nav,
  body.career-page.career-subpage .career-header.menu-open .career-header-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  body.career-page .career-header.menu-open .career-nav {
    padding-top: 10px !important;
  }

  body.career-page .career-header.menu-open .career-nav a,
  body.career-page .career-header.menu-open .career-header-actions a:not(.career-submit),
  body.career-page.career-subpage .career-header.menu-open .career-nav a,
  body.career-page.career-subpage .career-header.menu-open .career-header-actions a:not(.career-submit) {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 13px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .13) !important;
    color: #fff !important;
    font-size: clamp(18px, 5.2vw, 22px) !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    transform: none !important;
  }

  body.career-page .career-header.menu-open .career-nav a:after,
  body.career-page .career-header.menu-open .career-header-actions a:not(.career-submit):after {
    display: none !important;
  }

  body.career-page .career-header.menu-open .career-header-actions {
    padding-bottom: 4px !important;
  }
}

/* Mobile SIGAP recognition: keep slides stable and photos visible. */
@media (max-width: 760px) {
  body.career-page .career-sigap-recognition-slider {
    overflow: visible !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-stage {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
    background: #fff !important;
    border-color: rgba(7, 28, 44, .12) !important;
    box-shadow: 0 18px 44px rgba(7, 28, 44, .08) !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-stage article {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(0, auto) minmax(0, auto) !important;
    min-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    filter: none !important;
    transition: opacity .24s ease, visibility .24s ease !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-stage article.is-active {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    filter: none !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-photo {
    display: grid !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    place-items: center !important;
    aspect-ratio: 16 / 10 !important;
    background: #f5f8fa !important;
    overflow: hidden !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-photo img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-copy {
    display: flex !important;
    min-height: 330px !important;
    padding: 22px 18px 24px !important;
    background: #fff !important;
    color: #071c2c !important;
    justify-content: center !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-copy:before {
    content: none !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-copy blockquote {
    max-width: none !important;
    font-size: clamp(18px, 5vw, 24px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.7px !important;
    text-wrap: auto !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-copy div:not(.career-employee-voice-values) {
    margin-top: 18px !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-values {
    gap: 6px !important;
    margin-top: 16px !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-values em {
    min-height: 26px !important;
    padding: 0 9px !important;
    font-size: 9px !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-tabs button,
  body.career-page .career-sigap-recognition-slider .career-employee-voice-arrows button {
    transform: none !important;
    transition: border-color .2s ease, background .2s ease !important;
  }
}

@media (max-width: 420px) {
  body.career-page .career-sigap-recognition-slider .career-employee-voice-photo {
    aspect-ratio: 4 / 3 !important;
  }

  body.career-page .career-sigap-recognition-slider .career-employee-voice-copy {
    min-height: 360px !important;
  }
}
