@font-face {
  font-family: "Deema Sans";
  src: url("DejaVuSans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Deema Sans";
  src: url("DejaVuSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #f23b34;
  --red-dark: #d92d28;
  --navy: #0c2838;
  --dark: #14232d;
  --steel: #5b6b75;
  --mid: #82909a;
  --line: #d8e0e4;
  --light: #eef2f4;
  --pale: #f7f9fa;
  --white: #ffffff;
  --black: #172127;
  --green: #4e7568;
  --content: 1200px;
  --header: 86px;
  --radius: 15px;
  --shadow: 0 18px 55px rgba(12, 40, 56, 0.13);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Deema Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #ffb2ae;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header);
  color: var(--white);
  background: rgba(12, 40, 56, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 40, 56, 0.97);
  box-shadow: 0 8px 28px rgba(4, 18, 26, 0.24);
}

.header-inner {
  width: min(calc(100% - 48px), 1280px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: grid;
  place-items: center;
  width: 206px;
  height: 58px;
  padding: 11px 16px;
  background: var(--white);
  border-radius: 8px;
  flex: 0 0 auto;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="true"] {
  color: var(--white);
}

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

.button {
  min-height: 50px;
  padding: 14px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 25px rgba(242, 59, 52, 0.22);
}

.button-red:hover {
  background: var(--red-dark);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 12px 17px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding: 8px 0;
  color: var(--white);
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle-lines {
  width: 25px;
  display: grid;
  gap: 7px;
}

.menu-toggle-lines i {
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 790px;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 78px) 0 95px;
}

.hero-image,
.hero-shade,
.hero-rail {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("industrial-hero.jpg") center 52% / cover no-repeat;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 28, 40, 0.96) 0%, rgba(7, 28, 40, 0.83) 45%, rgba(7, 28, 40, 0.55) 72%, rgba(7, 28, 40, 0.7) 100%),
    linear-gradient(180deg, rgba(7, 28, 40, 0.25), rgba(7, 28, 40, 0.7));
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-rail {
  right: auto;
  width: 17px;
  background: var(--red);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(50px, 7vw, 105px);
  align-items: center;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff645e;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--red);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-action-stack {
  display: grid;
  gap: 13px;
}

.hero-panel {
  padding: 34px 35px 29px;
  background: rgba(17, 48, 65, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.panel-kicker {
  margin-bottom: 8px;
  color: #ff7974;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-panel li span,
.responsibility-card > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.hero-panel li strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 29px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  width: 1px;
  height: 42px;
  background: var(--red);
}

.proof-strip {
  color: var(--white);
  background: var(--dark);
}

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

.proof-grid > div {
  min-height: 132px;
  padding: 27px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid strong {
  color: var(--red);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.proof-grid span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.section {
  padding: clamp(86px, 9vw, 135px) 0;
}

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

.section-pale {
  background: var(--pale);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 54px;
}

.heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: clamp(38px, 4.2vw, 61px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading h2::after,
.contact-copy h2::after {
  content: "";
  width: 104px;
  height: 5px;
  display: block;
  margin-top: 23px;
  background: var(--red);
}

.section-intro {
  max-width: 760px;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.75;
}

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

.value-card {
  position: relative;
  min-height: 490px;
  padding: clamp(35px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-card h3 {
  max-width: 530px;
  margin: 45px 0 38px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.value-card-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.value-card-dark h3 {
  color: var(--white);
}

.card-index {
  position: absolute;
  top: 26px;
  right: 29px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--steel);
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 25px;
  border-top: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.check-list-light {
  color: rgba(255, 255, 255, 0.72);
}

.check-list-light li {
  border-color: rgba(255, 255, 255, 0.13);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.capability-card {
  min-height: 285px;
  padding: 37px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-card-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.line-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 29px;
  color: var(--red);
  border: 2px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.capability-card-featured .line-icon {
  color: var(--white);
}

.capability-card h3,
.market-card h3,
.assurance-grid h3,
.responsibility-card h3 {
  margin-bottom: 14px;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.capability-card p,
.market-card p,
.assurance-grid p,
.responsibility-card p {
  color: var(--steel);
  font-size: 14px;
  line-height: 1.7;
}

.capability-card-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.team-band,
.outputs-band {
  margin-top: 25px;
  padding: 24px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 25px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--dark);
  border-radius: 10px;
  font-size: 13px;
}

.team-band strong,
.outputs-band strong {
  margin-right: 8px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.team-band span:not(:last-child)::after,
.outputs-band span:not(:last-child)::after {
  content: "|";
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.24);
}

.principal-story {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.principal-image,
.principal-shade {
  position: absolute;
  inset: 0;
}

.principal-image {
  opacity: 0.34;
  background: url("offshore-platform.png") center / cover no-repeat;
}

.principal-shade {
  background: linear-gradient(90deg, rgba(12, 40, 56, 0.97), rgba(12, 40, 56, 0.82));
}

.principal-content {
  position: relative;
  z-index: 1;
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.responsibility-card {
  min-height: 315px;
  padding: 31px 27px;
  background: rgba(35, 67, 84, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

.responsibility-card h3 {
  margin-top: 46px;
}

.responsibility-card p {
  color: rgba(255, 255, 255, 0.67);
}

.principal-statement {
  margin-top: 46px;
  padding: 34px 40px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
}

.principal-statement strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.3;
}

.principal-statement p {
  color: rgba(255, 255, 255, 0.82);
}

.process-grid {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: var(--line);
}

.process-grid li {
  position: relative;
  padding: 0 17px;
}

.process-grid li:first-child {
  padding-left: 0;
}

.process-grid li:last-child {
  padding-right: 0;
}

.process-grid span,
.market-card > span,
.assurance-grid article > span,
.solution-row > span {
  position: relative;
  z-index: 1;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 7px solid var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.process-grid h3 {
  margin: 30px 0 13px;
  font-size: 17px;
}

.process-grid p {
  color: var(--steel);
  font-size: 13px;
  line-height: 1.65;
}

.outputs-band {
  margin-top: 53px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.market-card {
  min-height: 255px;
  padding: 34px;
  background: var(--white);
}

.market-card > span,
.assurance-grid article > span {
  width: auto;
  height: auto;
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  background: none;
  border: 0;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.landscape {
  margin-top: 28px;
  padding: 35px;
  background: var(--navy);
  border-radius: var(--radius);
}

.landscape .eyebrow {
  margin-bottom: 26px;
}

.organization-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.organization-list span {
  padding: 10px 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.solution-list {
  border-top: 1px solid var(--line);
}

.solution-row {
  display: grid;
  grid-template-columns: 52px minmax(250px, 0.68fr) 1.32fr;
  gap: 26px;
  align-items: center;
  min-height: 128px;
  border-bottom: 1px solid var(--line);
}

.solution-row > span {
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--red);
}

.solution-row h3 {
  margin: 0;
  font-size: 19px;
}

.solution-row p {
  margin: 0;
  color: var(--steel);
}

.sourcing-note {
  margin-top: 42px;
  padding: 35px 39px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--dark);
  border-radius: var(--radius);
}

.sourcing-note .eyebrow {
  margin-bottom: 11px;
}

.principal-list-section {
  color: var(--white);
  background: var(--navy);
}

.principal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.principal-list article {
  min-height: 220px;
  padding: 31px 29px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.principal-list span {
  color: #ff746f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.principal-list h3 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.principal-list p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.portfolio-note {
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

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

.project-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(12, 40, 56, 0.08);
}

.project-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 29px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.94), rgba(22, 68, 91, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(255, 255, 255, 0.1) 50px 51px);
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--red);
}

.project-visual-utility {
  background:
    linear-gradient(135deg, rgba(22, 59, 75, 0.96), rgba(52, 93, 109, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(255, 255, 255, 0.1) 50px 51px);
}

.project-visual-sustainable {
  background:
    linear-gradient(135deg, rgba(35, 82, 68, 0.96), rgba(78, 117, 104, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(255, 255, 255, 0.1) 50px 51px);
}

.project-visual-sustainable::after {
  background: #54ae84;
}

.project-visual > span {
  color: rgba(255, 255, 255, 0.16);
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.project-visual small {
  position: relative;
  z-index: 1;
  max-width: 170px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.project-card-content {
  display: flex;
  flex-direction: column;
  padding: 30px 29px 29px;
}

.project-status,
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--mid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.project-status span {
  color: var(--red-dark);
}

.project-card h3 {
  margin: 25px 0 14px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.project-card-content > p {
  color: var(--steel);
  font-size: 14px;
}

.project-card-content > .news-link {
  margin-top: 19px;
  padding-top: 0;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: auto 0 0;
  padding-top: 25px;
}

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

.project-facts div + div {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.project-facts dt {
  color: var(--mid);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 5px 0 0;
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
}

.project-disclosure {
  max-width: 900px;
  margin: 29px 0 0;
  padding-left: 17px;
  color: var(--steel);
  border-left: 3px solid var(--red);
  font-size: 12px;
  line-height: 1.65;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 23px;
}

.partner-news-heading {
  max-width: 900px;
  margin: 12px 0 28px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.partner-news-heading h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.partner-news-heading > p:last-child { color: var(--steel); }

.partner-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 54px;
}

.partner-news-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
}

.partner-news-card h3 { margin: 24px 0 13px; color: var(--navy); font-size: clamp(22px, 2vw, 30px); line-height: 1.22; }
.partner-news-card p { color: var(--steel); font-size: 14px; }
.partner-news-card > strong { display: block; margin-top: 18px; color: var(--navy); font-size: 13px; }

@media (max-width: 760px) {
  .partner-news-grid { grid-template-columns: 1fr; }
}

.partner-news-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-bottom: 23px;
  padding: clamp(31px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(125deg, #0a2636, #154357);
  border-left: 8px solid var(--red);
  border-radius: var(--radius);
}

.partner-news-callout .news-meta,
.partner-news-callout p {
  color: rgba(255, 255, 255, 0.68);
}

.partner-news-callout h3 {
  max-width: 820px;
  margin: 18px 0 12px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 41px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.partner-news-callout p {
  max-width: 850px;
  font-size: 15px;
}

.partner-news-callout .button {
  white-space: nowrap;
}

.news-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: clamp(31px, 3.4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.news-card-featured {
  position: relative;
  grid-row: 1 / span 2;
  min-height: 585px;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(7, 28, 40, 0.96), rgba(12, 40, 56, 0.91)),
    url("industrial-hero.jpg") center / cover no-repeat;
  border-color: var(--navy);
}

.news-card-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: var(--red);
}

.news-card-featured .news-meta,
.news-card-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.news-card h3 {
  margin: 27px 0 15px;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.news-card-featured h3 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 53px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.news-card > p {
  color: var(--steel);
  font-size: 14px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
}

.news-link:hover {
  color: var(--red);
}

.news-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.news-link-light:hover {
  color: var(--white);
}

.news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  margin-top: auto;
}

.news-actions .news-link {
  margin-top: 0;
}

.market-news-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header) + 92px) 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(242, 59, 52, 0.22), transparent 28%),
    linear-gradient(135deg, #081f2d, #0c2838 62%, #143e52);
}

.market-news-hero::after {
  content: "KW";
  position: absolute;
  right: -1vw;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(180px, 32vw, 460px);
  font-weight: 700;
  line-height: 1;
}

.market-news-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}

.market-news-hero h1 {
  max-width: 830px;
  margin: 20px 0 28px;
  color: var(--white);
  font-size: clamp(49px, 7vw, 92px);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.market-news-hero h1 span { color: #ff7771; }
.market-news-hero .hero-lead { max-width: 730px; color: rgba(255,255,255,.72); }

.market-news-method {
  padding: 34px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.market-news-method h2 { margin: 8px 0 20px; color: var(--white); font-size: 27px; line-height: 1.2; }
.market-news-method ul { margin: 0 0 24px; padding-left: 20px; color: rgba(255,255,255,.8); font-size: 14px; }
.market-news-method p:last-child { padding-top: 19px; color: rgba(255,255,255,.57); border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; }

.market-news-index { background: var(--navy); border-top: 1px solid rgba(255,255,255,.12); }
.market-news-index-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.market-news-index a { min-height: 112px; display: grid; grid-template-columns: 36px 1fr; align-content: center; padding: 20px 24px; color: var(--white); border-right: 1px solid rgba(255,255,255,.12); }
.market-news-index a:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.market-news-index span { grid-row: 1 / span 2; color: #ff7771; font-size: 12px; font-weight: 700; }
.market-news-index strong { font-size: 14px; }
.market-news-index small { color: rgba(255,255,255,.56); font-size: 11px; }

.market-article-list { display: grid; gap: 32px; }
.market-article { scroll-margin-top: calc(var(--header) + 25px); display: grid; grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 42px rgba(12,40,56,.07); }

#principals {
  scroll-margin-top: calc(var(--header) + 18px);
}
.market-article-visual { position: relative; min-height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 42px; overflow: hidden; color: var(--white); background: var(--navy); }
.market-article-visual::after { content: ""; position: absolute; width: 230px; height: 230px; right: -75px; top: -75px; border: 38px solid rgba(255,255,255,.08); border-radius: 50%; }
.market-article-visual span { position: relative; z-index: 1; font-size: clamp(55px, 7vw, 92px); font-weight: 700; line-height: .9; letter-spacing: -.07em; }
.market-article-visual strong { position: relative; z-index: 1; margin-top: 14px; color: rgba(255,255,255,.85); font-size: 18px; text-transform: uppercase; letter-spacing: .08em; }
.market-article-visual small { position: absolute; z-index: 1; left: 42px; right: 28px; bottom: 34px; color: rgba(255,255,255,.56); font-size: 10px; line-height: 1.5; }
.market-visual-water { background: linear-gradient(145deg, #0b5370, #0c2838); }
.market-visual-digital { background: linear-gradient(145deg, #273f62, #0c2838); }
.market-visual-energy { background: linear-gradient(145deg, #8e2f2b, #351b22); }
.market-visual-law { background: linear-gradient(145deg, #37454d, #14232d); }
.market-visual-agency { background: linear-gradient(145deg, #0c2838, #27728b); }
.market-article-copy { padding: clamp(34px, 5vw, 62px); }
.market-article-copy h3 { max-width: 820px; margin: 22px 0 18px; color: var(--navy); font-size: clamp(30px, 4vw, 49px); line-height: 1.09; letter-spacing: -.045em; }
.market-article-copy h4 { margin: 27px 0 8px; color: var(--navy); font-size: 15px; }
.market-lead { color: var(--steel); font-size: 17px; }
.market-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 28px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.market-facts div { padding: 18px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.market-facts dt { margin-bottom: 4px; color: var(--red-dark); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.market-facts dd { margin: 0; color: var(--dark); font-size: 13px; line-height: 1.5; }
.opportunity-box { margin-top: 28px; padding: 24px 26px; background: #edf5f7; border-left: 4px solid #27728b; }
.opportunity-box h4 { margin-top: 0; }
.opportunity-box p { color: #425b68; font-size: 14px; }
.opportunity-box-law { background: #f6f1e8; border-color: #9b7842; }
.source-block { margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--line); }
.source-block > strong { color: var(--navy); font-size: 12px; }
.source-block p { margin: 7px 0 13px; color: var(--steel); font-size: 12px; }
.source-block a { display: inline-flex; margin: 5px 20px 5px 0; color: var(--red-dark); font-size: 11px; font-weight: 700; }
.agency-steps { display: grid; gap: 0; margin: 18px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.agency-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.agency-steps li > span { color: var(--red-dark); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.agency-steps strong { display: block; margin-bottom: 5px; color: var(--navy); font-size: 14px; }
.agency-steps p { margin: 0; color: var(--steel); font-size: 13px; line-height: 1.65; }
.market-watch-section { color: var(--white); background: #14232d; }
.market-news-contact { background: linear-gradient(135deg, #0c2838, #163d50); }

.partner-page {
  --venture-accent: var(--red);
}

.partner-page .market-news-hero h1 span {
  color: #ff7771;
}

.partner-market-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-market-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.partner-market-grid > div {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px clamp(24px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-market-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-market-grid strong {
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.partner-market-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

.partner-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: start;
}

.partner-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(35px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.partner-copy h3 {
  margin: 38px 0 14px;
  font-size: 23px;
}

.partner-copy p,
.partner-copy li {
  color: var(--steel);
  font-size: 15px;
  line-height: 1.75;
}

.partner-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.partner-criteria {
  position: sticky;
  top: calc(var(--header) + 28px);
  padding: clamp(29px, 3vw, 40px);
  background: #edf5f7;
  border-top: 6px solid var(--red);
  border-radius: var(--radius);
}

.partner-criteria h2 {
  margin: 8px 0 22px;
  font-size: 28px;
  line-height: 1.2;
}

.partner-criteria ul {
  margin: 0;
  padding-left: 19px;
}

.partner-criteria li {
  margin: 0 0 13px;
  color: #425b68;
  font-size: 14px;
  line-height: 1.55;
}

.partner-source {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 12px;
  line-height: 1.6;
}

.partner-source a {
  color: var(--red-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .market-news-hero-grid { grid-template-columns: 1fr; }
  .market-news-method { max-width: 620px; }
  .market-news-index-grid { grid-template-columns: repeat(2, 1fr); }
  .market-news-index a:nth-child(3) { border-left: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); }
  .market-news-index a:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .market-article { grid-template-columns: 1fr; }
  .market-article-visual { min-height: 300px; }
}

@media (max-width: 620px) {
  .market-news-hero { padding-top: calc(var(--header) + 58px); }
  .market-news-index-grid { grid-template-columns: 1fr; }
  .market-news-index a { border-left: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); }
  .market-news-index a:first-child { border-top: 0; }
  .market-facts { grid-template-columns: 1fr; }
  .market-article-visual { min-height: 250px; }
}

.assurance {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  background: var(--white);
}

.assurance-visual {
  min-height: 760px;
  background:
    linear-gradient(rgba(12, 40, 56, 0.58), rgba(12, 40, 56, 0.7)),
    url("offshore-platform.png") 46% center / cover no-repeat;
}

.assurance-content {
  padding: clamp(75px, 8vw, 120px) clamp(40px, 8vw, 120px);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.assurance-grid article {
  min-height: 205px;
  padding: 28px;
  background: var(--white);
}

.assurance-grid article > span {
  margin-bottom: 23px;
}

.contact-section {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding: 110px 0;
}

.contact-background,
.contact-shade,
.contact-rail {
  position: absolute;
  inset: 0;
}

.contact-background {
  background: url("industrial-hero.jpg") center / cover no-repeat;
}

.contact-shade {
  background: rgba(12, 40, 56, 0.85);
}

.contact-rail {
  left: auto;
  width: 17px;
  background: var(--red);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: 75px;
  align-items: center;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.contact-card {
  padding: 32px 43px;
  font-style: normal;
  background: rgba(22, 55, 72, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card > div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-card > div:last-child {
  border-bottom: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  display: inline;
  margin: 0;
  color: var(--white);
  font-size: 14px;
}

.contact-card a:hover {
  color: #ff8d88;
}

.contact-card em {
  margin: 0 9px;
  color: rgba(255, 255, 255, 0.34);
  font-style: normal;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.58);
  background: #081d29;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px 45px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-grid small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

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

/* Search landing pages and guided enquiries */
.search-page {
  --venture-accent: var(--red);
}

.search-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header) + 88px) 0 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(242, 59, 52, 0.2), transparent 29%),
    linear-gradient(125deg, #071e2b 0%, var(--navy) 62%, #173c4f 100%);
}

.search-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.search-hero h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.search-hero h1 span { color: #ff7771; }
.search-hero .hero-lead { max-width: 760px; }

.search-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.search-panel h2 { margin: 7px 0 18px; font-size: 25px; }
.search-panel ul { margin: 0; padding: 0; list-style: none; }
.search-panel li { padding: 10px 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.78); font-size: 13px; }

.search-card-grid,
.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.search-card,
.intent-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.search-card:hover,
.intent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.search-card h3,
.intent-card h3 { margin: 10px 0 12px; color: var(--navy); font-size: 23px; line-height: 1.18; }
.search-card p,
.intent-card p { color: var(--steel); font-size: 14px; }
.search-card .news-link,
.intent-card .news-link { margin-top: auto; padding-top: 18px; }

.intent-card-dark { color: var(--white); background: var(--navy); border-color: var(--navy); }
.intent-card-dark h3 { color: var(--white); }
.intent-card-dark p { color: rgba(255,255,255,.7); }
.intent-card-dark .news-link { color: #ff8d88; }

.search-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.search-detail-grid h2 { color: var(--navy); font-size: clamp(34px, 4vw, 57px); line-height: 1.05; letter-spacing: -.045em; }
.search-detail-copy > p { color: var(--steel); }
.search-checks { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 30px; margin: 28px 0; padding: 0; list-style: none; }
.search-checks li { padding: 13px 0 13px 24px; position: relative; border-top: 1px solid var(--line); font-size: 14px; }
.search-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.lead-section { background: var(--pale); }
.lead-grid { display: grid; grid-template-columns: minmax(260px,.65fr) minmax(0,1.35fr); gap: 65px; align-items: start; }
.lead-grid h2 { color: var(--navy); font-size: clamp(34px,4vw,56px); line-height: 1.04; letter-spacing: -.045em; }
.lead-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(12,40,56,.08); }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { color: var(--navy); font-size: 12px; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; min-height: 48px; padding: 12px 14px; color: var(--black); background: var(--white); border: 1px solid #bdc9cf; border-radius: 5px; font: inherit; font-size: 14px; }
.form-field textarea { min-height: 130px; resize: vertical; }
.lead-form .button { justify-self: start; cursor: pointer; }
.form-note,
.form-status { grid-column: 1 / -1; margin: 0; color: var(--steel); font-size: 12px; }
.form-status { color: var(--green); font-weight: 700; }

.solution-row-link { color: inherit; }
.solution-row-link article { height: 100%; }
.solution-row-link:hover h3 { color: var(--red-dark); }

.linkedin-band { padding: 29px 0; color: var(--white); background: #0a66c2; }
.linkedin-band-inner { display: flex; gap: 32px; align-items: center; justify-content: space-between; }
.linkedin-band h2 { margin: 0 0 4px; font-size: 25px; }
.linkedin-band p { margin: 0; color: rgba(255,255,255,.8); font-size: 14px; }

.brand-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.brand-visual-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(12, 40, 56, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.brand-visual-images { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); min-height: 235px; background: linear-gradient(135deg, #f4f7f8, #dce5e9); }
.brand-visual-images img { width: 100%; height: 235px; padding: 18px; object-fit: contain; mix-blend-mode: multiply; }
.brand-visual-copy { padding: 28px 30px 32px; }
.brand-visual-copy h3 { margin: 7px 0 10px; color: var(--navy); font-size: 32px; letter-spacing: -.035em; }
.brand-visual-copy > p:not(.eyebrow) { color: var(--steel); font-size: 14px; }
.brand-visual-copy .news-link { display: inline-flex; margin-top: 15px; }

@media (max-width: 900px) {
  .search-hero-grid,
  .search-detail-grid,
  .lead-grid { grid-template-columns: 1fr; gap: 38px; }
  .search-card-grid,
  .intent-grid,
  .brand-visual-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 620px) {
  .search-card-grid,
  .intent-grid,
  .brand-visual-grid,
  .lead-form,
  .search-checks { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .linkedin-band-inner { align-items: flex-start; flex-direction: column; }
}

/* Featured portfolio tabs */
.primary-nav .nav-tab {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
}

.primary-nav .nav-tab::after {
  display: none;
}

.primary-nav .nav-tab-recycle {
  border-color: rgba(92, 190, 145, 0.55);
}

.primary-nav .nav-tab-stucco {
  border-color: rgba(255, 111, 104, 0.6);
}

.primary-nav .nav-tab:hover,
.primary-nav .nav-tab[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.primary-nav .nav-tab-recycle[aria-current="page"] {
  background: rgba(72, 153, 112, 0.3);
}

.primary-nav .nav-tab-stucco[aria-current="page"] {
  background: rgba(242, 59, 52, 0.28);
}

.nav-products {
  position: relative;
}

.primary-nav .nav-tab-products {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border-color: rgba(255, 111, 104, 0.6);
  cursor: pointer;
}

.primary-nav .nav-tab-products > span {
  margin-left: 5px;
  font-size: 14px;
}

.nav-products-menu {
  position: absolute;
  z-index: 5;
  top: calc(100% + 8px);
  right: 0;
  min-width: 205px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  background: rgba(12, 40, 56, 0.99);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(4, 18, 26, 0.28);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-products:hover .nav-products-menu,
.nav-products:focus-within .nav-products-menu,
.nav-products.is-open .nav-products-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-nav .nav-products-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 5px;
}

.primary-nav .nav-products-menu a:hover,
.primary-nav .nav-products-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.09);
}

.primary-nav .nav-products-menu a::after {
  display: none;
}

/* Recycle Kuwait and U-STUCCO pages */
.venture-page {
  --venture-accent: var(--red);
  --venture-accent-dark: var(--red-dark);
}

.recycle-page {
  --venture-accent: #54ae84;
  --venture-accent-dark: #367c61;
}

.radiodetection-page {
  --venture-accent: #f4c145;
  --venture-accent-dark: #b77a00;
}

.radiodetection-hero {
  background:
    radial-gradient(circle at 77% 22%, rgba(244, 193, 69, 0.2), transparent 30%),
    linear-gradient(125deg, #071e2b 0%, var(--navy) 57%, #173c4f 100%);
}

.radiodetection-monogram {
  right: -0.06em;
  bottom: -0.2em;
  font-size: clamp(270px, 34vw, 560px);
  letter-spacing: -0.11em;
}

.gpr-feature-section {
  background: linear-gradient(180deg, #eef3f5 0%, #f7f9fa 100%);
  border-left: 17px solid #f4c145;
}

.gpr-feature-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  margin-bottom: 24px;
  padding: clamp(31px, 4vw, 52px);
  color: var(--white);
  background: radial-gradient(circle at 82% 18%, rgba(244, 193, 69, 0.2), transparent 28%), linear-gradient(125deg, #071e2b, #0c2838 60%, #173c4f);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gpr-feature-tag {
  display: inline-flex;
  padding: 7px 10px;
  color: #ffe39a;
  background: rgba(244, 193, 69, 0.12);
  border: 1px solid rgba(244, 193, 69, 0.35);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gpr-feature-copy h3 {
  max-width: 520px;
  margin: 18px 0 15px;
  color: var(--white);
  font-size: clamp(30px, 3.4vw, 47px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.gpr-feature-copy > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.gpr-feature-copy .rd-brand-link {
  margin-top: 27px;
  color: #ffe39a;
}

.gpr-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 23px;
}

.gpr-use-grid span {
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  font-size: 12px;
}

.gpr-family-image {
  min-width: 0;
  padding: 22px;
  background: var(--white);
  border-radius: 12px;
}

.gpr-family-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.gpr-model-card {
  display: grid;
  grid-template-columns: minmax(112px, 0.42fr) minmax(0, 0.58fr);
  min-height: 390px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--navy);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gpr-model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gpr-model-card-featured {
  border-top-color: #f4c145;
}

.gpr-model-image {
  display: grid;
  place-items: center;
  padding: 24px 10px;
  background: linear-gradient(160deg, #f9fbfc, #e6edf0);
}

.gpr-model-image img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gpr-model-card > div:last-child {
  display: flex;
  flex-direction: column;
  padding: 29px 25px 30px;
}

.gpr-model-card h3 {
  margin: 10px 0 13px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.gpr-model-card p:not(.eyebrow) {
  color: var(--steel);
  font-size: 14px;
}

.gpr-model-card a {
  display: inline-flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
}

.gpr-insight-links {
  display: grid;
  grid-template-columns: auto repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 19px 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 9px;
}

.gpr-insight-links strong {
  padding-right: 15px;
  color: #ffe39a;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gpr-insight-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}

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

.rd-product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.rd-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.rd-product-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--white);
}

.rd-product-card > div {
  padding: 29px 29px 32px;
}

.rd-product-card h3 {
  margin: 9px 0 13px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.rd-product-card p:not(.eyebrow) {
  min-height: 70px;
  color: var(--steel);
  font-size: 14px;
}

.rd-product-card a {
  display: inline-flex;
  gap: 7px;
  margin-top: 22px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
}

.rd-product-card-list {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #163f54);
  border-color: transparent;
}

.rd-product-card-list > div {
  padding: 35px 32px;
}

.rd-product-card-list h3,
.rd-product-card-list a {
  color: var(--white);
}

.rd-product-card-list ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.rd-product-card-list li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.rd-brand-portfolio {
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.rd-brand-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.rd-brand-heading h3 {
  margin: 7px 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.rd-brand-heading > p:last-child,
.rd-brand-summary {
  color: var(--steel);
}

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

.rd-brand-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid #f4c145;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(12, 40, 56, 0.08);
}

.rd-brand-card-pearpoint {
  border-top-color: var(--red);
}

.rd-brand-card-head {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 20px;
}

.rd-brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #f4c145;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 700;
}

.rd-brand-card-pearpoint .rd-brand-mark {
  color: var(--white);
  background: var(--red);
}

.rd-brand-card-head .eyebrow {
  margin-bottom: 2px;
}

.rd-brand-card h4 {
  margin: 0;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.rd-brand-summary {
  min-height: 78px;
  margin-bottom: 24px;
  font-size: 14px;
}

.rd-brand-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 27px;
}

.rd-brand-gallery figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #f9fbfc, #e7edf0);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.rd-brand-gallery img {
  width: 100%;
  height: 210px;
  padding: 14px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.rd-brand-gallery figcaption {
  position: absolute;
  inset: auto 9px 9px;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(12, 40, 56, 0.84);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.rd-brand-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.rd-brand-products > div:last-child {
  grid-column: 1 / -1;
}

.rd-brand-products-pearpoint {
  grid-template-columns: 1fr;
}

.rd-brand-products-pearpoint > div:last-child {
  grid-column: auto;
}

.rd-brand-products strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
}

.rd-brand-products ul {
  margin: 0;
  padding-left: 19px;
  color: var(--steel);
  font-size: 13px;
}

.rd-brand-products li + li {
  margin-top: 4px;
}

.rd-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
}

.source-note {
  max-width: 900px;
  margin: 27px 0 0;
  color: var(--mid);
  font-size: 11px;
}

.radiodetection-videos {
  border-left-color: #f4c145;
}

.video-grid-label {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-grid-label:first-child {
  margin-top: 0;
}

.rd-video-schonstedt-family {
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.5), rgba(12, 40, 56, 0.18)),
    url("schonstedt-rex.jpg") center / cover no-repeat;
}

.rd-video-schonstedt-maggie {
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.52), rgba(12, 40, 56, 0.16)),
    url("schonstedt-maggie.jpg") center 28% / cover no-repeat;
}

.rd-video-pearpoint-p540 {
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.7), rgba(12, 40, 56, 0.18)),
    url("pearpoint-p540c.png") center / contain no-repeat,
    #dbe5ea;
}

.rd-video-pearpoint-c550 {
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.67), rgba(12, 40, 56, 0.12)),
    url("pearpoint-c550c.png") center / contain no-repeat,
    #dbe5ea;
}

.rd-video-schonstedt-family strong,
.rd-video-schonstedt-maggie strong,
.rd-video-pearpoint-p540 strong,
.rd-video-pearpoint-c550 strong {
  color: rgba(255, 255, 255, 0.18);
}

.video-channel-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.video-channel-links a {
  padding: 17px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.rd-download-card-schonstedt {
  border-top: 4px solid #f4c145;
}

.rd-download-card-pearpoint {
  border-top: 4px solid var(--red);
}

.rd-video-rd8200 {
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.84), rgba(18, 67, 88, 0.87)),
    url("radiodetection-rd8200.jpg") center / cover;
}

.rd-video-mapping {
  background:
    linear-gradient(135deg, rgba(78, 55, 9, 0.78), rgba(12, 40, 56, 0.88)),
    url("radiodetection-rd8200sg.jpg") center / cover;
}

.rd-video-lmx-family {
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.43), rgba(12, 40, 56, 0.1)),
    url("lmx-family.png") center / cover no-repeat,
    var(--white);
}

.rd-video-lmx200 {
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.5), rgba(12, 40, 56, 0.12)),
    url("lmx200-gpr.jpg") center / cover no-repeat,
    var(--white);
}

.rd-video-lmx-family strong,
.rd-video-lmx200 strong {
  color: rgba(255, 255, 255, 0.32);
}

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

.rd-download-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 98px;
  padding: 21px 24px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.rd-download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(12, 40, 56, 0.11);
}

.rd-download-card > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.rd-download-card strong,
.rd-download-card small {
  display: block;
}

.rd-download-card small {
  margin-top: 3px;
  color: var(--steel);
}

.rd-download-card > b {
  color: var(--red-dark);
}

.rd-download-card-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.rd-download-card-gpr {
  border-top: 4px solid #f4c145;
}

.rd-download-card-dark small {
  color: rgba(255, 255, 255, 0.63);
}

.radiodetection-contact {
  --venture-accent: #f4c145;
}

.nuovafima-page {
  --venture-accent: #77b6d5;
  --venture-accent-dark: #2f7194;
}

.nuovafima-hero {
  background:
    radial-gradient(circle at 77% 22%, rgba(119, 182, 213, 0.22), transparent 30%),
    linear-gradient(125deg, #071e2b 0%, var(--navy) 57%, #173c4f 100%);
}

.nuovafima-monogram {
  right: -0.05em;
  bottom: -0.2em;
  font-size: clamp(270px, 34vw, 560px);
  letter-spacing: -0.11em;
}

.nuovafima-page .rd-product-card img {
  object-fit: contain;
  padding: 17px;
}

.nuovafima-videos {
  border-left-color: #77b6d5;
}

.nf-video-gauge {
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.84), rgba(18, 67, 88, 0.88)),
    url("nuovafima-pressure-gauge.png") center / contain no-repeat;
}

.nf-video-transmitter {
  background:
    linear-gradient(135deg, rgba(28, 82, 108, 0.82), rgba(12, 40, 56, 0.9)),
    url("nuovafima-transmitter.png") center / contain no-repeat;
}

.nuovafima-contact {
  --venture-accent: #77b6d5;
}

.satlab-page {
  --venture-accent: #f0b323;
  --venture-accent-dark: #b77900;
}

.satlab-hero {
  background:
    radial-gradient(circle at 74% 22%, rgba(240, 179, 35, 0.2), transparent 32%),
    linear-gradient(132deg, #071e31 0%, #0b3348 58%, #0a2839 100%);
}

.satlab-monogram {
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: -0.07em;
}

.satlab-product-showcase {
  overflow: hidden;
  padding-bottom: 0;
}

.satlab-product-showcase img {
  display: block;
  width: min(100%, 520px);
  height: 285px;
  margin: 1.1rem auto 0;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.26));
}

.satlab-card-link {
  color: inherit;
  display: block;
  height: 100%;
}

.satlab-card-link .capability-card {
  height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.satlab-card-link:hover .capability-card,
.satlab-card-link:focus-visible .capability-card {
  transform: translateY(-4px);
  border-color: var(--venture-accent);
  box-shadow: 0 18px 45px rgba(7, 30, 49, 0.12);
}

.satlab-card-link:focus-visible {
  outline: 3px solid var(--venture-accent);
  outline-offset: 4px;
}

.satlab-contact {
  --venture-accent: #f0b323;
}

.satlab-product-gallery .rd-product-card img {
  padding: 22px;
  object-fit: contain;
  background: linear-gradient(145deg, #f8fafb, #e8eef1);
}

.satlab-product-gallery .rd-product-card:first-child img {
  padding: 0;
  object-fit: cover;
}

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

.satlab-video-grid .video-resource-card,
.satlab-video-grid .video-channel-card {
  min-width: 0;
}

.satlab-video-gnss,
.satlab-video-total,
.satlab-video-slam,
.satlab-video-hydro,
.satlab-video-software {
  background-color: #0b3145;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.satlab-video-gnss {
  background-image: linear-gradient(rgba(7, 30, 49, 0.54), rgba(7, 30, 49, 0.78)), url("satlab-sl9.webp");
}

.satlab-video-total {
  background-image: linear-gradient(rgba(7, 30, 49, 0.46), rgba(7, 30, 49, 0.74)), url("satlab-slt12.png");
}

.satlab-video-slam {
  background-image: linear-gradient(rgba(7, 30, 49, 0.46), rgba(7, 30, 49, 0.74)), url("satlab-cygnus3.webp");
}

.satlab-video-hydro {
  background-image: linear-gradient(rgba(7, 30, 49, 0.42), rgba(7, 30, 49, 0.72)), url("satlab-hydroboat.webp");
}

.satlab-video-software {
  background-image: linear-gradient(135deg, rgba(7, 30, 49, 0.92), rgba(240, 179, 35, 0.44));
}

.insight-satlab-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(240, 179, 35, 0.24), transparent 28%),
    linear-gradient(125deg, #071e2b 0%, #0b3348 58%, #173c4f 100%);
}

.insight-satlab-page .insight-aside > div {
  border-top-color: #f0b323;
}

.winjoin-page {
  --venture-accent: #d8ad57;
  --venture-accent-dark: #9a6d20;
}

.winjoin-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(216, 173, 87, 0.22), transparent 31%),
    linear-gradient(132deg, #071e31 0%, #183444 54%, #352a1b 100%);
}

.winjoin-monogram {
  color: rgba(216, 173, 87, 0.08);
  font-size: clamp(11rem, 26vw, 28rem);
}

.winjoin-product-showcase {
  overflow: hidden;
  padding-bottom: 0;
}

.winjoin-product-showcase img {
  display: block;
  width: 100%;
  height: 285px;
  margin: 1rem auto 0;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.3));
}

.winjoin-product-gallery .rd-product-card img {
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(145deg, #f8fafb, #e9eef0);
}

.winjoin-product-gallery .rd-product-card:last-child img {
  padding: 0;
  object-fit: cover;
}

.winjoin-contact {
  --venture-accent: #d8ad57;
}

.insight-winjoin-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 173, 87, 0.25), transparent 30%),
    linear-gradient(125deg, #071e2b 0%, #173744 58%, #3c2e1b 100%);
}

.insight-winjoin-page .insight-aside > div {
  border-top-color: #d8ad57;
}

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

.insight-media-grid figure {
  margin: 0;
  overflow: hidden;
  background: #eef3f5;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.insight-media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 18px;
  object-fit: contain;
}

.insight-media-grid figcaption {
  padding: 15px 18px 18px;
  color: var(--steel);
  background: var(--white);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .satlab-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .satlab-video-grid,
  .insight-media-grid {
    grid-template-columns: 1fr;
  }
}

.venture-hero {
  position: relative;
  min-height: 760px;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 80px) 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, color-mix(in srgb, var(--venture-accent) 22%, transparent), transparent 29%),
    linear-gradient(125deg, #071e2b 0%, var(--navy) 56%, #173c4f 100%);
}

.venture-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 17px;
  background: var(--venture-accent);
}

.venture-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.venture-monogram {
  position: absolute;
  right: -0.045em;
  bottom: -0.27em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(300px, 40vw, 650px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.12em;
  user-select: none;
}

.venture-monogram-stucco {
  right: 0.01em;
  bottom: -0.32em;
  font-size: clamp(360px, 47vw, 720px);
}

.venture-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.75fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.venture-copy {
  max-width: 760px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--white);
}

.venture-copy h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.venture-copy h1 span {
  color: var(--venture-accent);
}

.venture-panel {
  padding: 35px 35px 29px;
  background: rgba(18, 52, 69, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.venture-panel h2 {
  margin-bottom: 23px;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.venture-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.venture-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.venture-panel li > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--venture-accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.venture-panel li strong,
.venture-panel li small {
  display: block;
}

.venture-panel li strong {
  font-size: 15px;
}

.venture-panel li small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.venture-page .panel-kicker,
.venture-page .eyebrow-light {
  color: color-mix(in srgb, var(--venture-accent) 80%, white);
}

.venture-page .proof-grid strong,
.venture-page .card-index {
  color: var(--venture-accent);
}

.button-recycle {
  color: var(--white);
  background: var(--venture-accent-dark);
  box-shadow: 0 10px 25px rgba(54, 124, 97, 0.25);
}

.button-recycle:hover {
  background: #296c51;
}

.value-card-recycle,
.capability-card-recycle {
  color: var(--white);
  background: #173f38;
  border-color: #173f38;
}

.value-card-recycle h3,
.capability-card-recycle h3 {
  color: var(--white);
}

.capability-card-recycle p {
  color: rgba(255, 255, 255, 0.7);
}

.capability-card-recycle .line-icon {
  color: var(--white);
}

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

.giveaway-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

#give-away,
#corporate-esg,
#application-videos {
  scroll-margin-top: calc(var(--header) + 18px);
}

.giveaway-feature,
.giveaway-request,
.esg-programme {
  border-radius: var(--radius);
}

.giveaway-feature {
  padding: clamp(38px, 4.6vw, 62px);
  background: linear-gradient(145deg, #f2f8f5, #e8f3ed);
  border: 1px solid #cfe2d8;
}

.feature-label {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 8px 11px;
  color: #286048;
  background: rgba(84, 174, 132, 0.13);
  border: 1px solid rgba(54, 124, 97, 0.25);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.giveaway-feature h3,
.giveaway-request h3,
.esg-programme h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.giveaway-feature > p:not(.service-note) {
  max-width: 680px;
  margin-top: 17px;
  color: var(--steel);
  font-size: 16px;
}

.giveaway-chips {
  margin: 30px 0 27px;
}

.giveaway-chips span {
  background: var(--white);
  border-color: #c9ddd3;
}

.service-note {
  margin: 0 0 29px;
  padding-left: 16px;
  color: var(--steel);
  border-left: 3px solid var(--venture-accent);
  font-size: 12px;
  line-height: 1.65;
}

.giveaway-request {
  padding: clamp(36px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(145deg, #0c2838, #173f38);
}

.giveaway-request h3 {
  max-width: 430px;
  margin: 15px 0 30px;
  color: var(--white);
}

.request-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.request-list li > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--venture-accent-dark);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.request-list strong,
.request-list small {
  display: block;
}

.request-list strong {
  color: var(--white);
  font-size: 15px;
}

.request-list small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

.corporate-esg-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(84, 174, 132, 0.17), transparent 27%),
    linear-gradient(125deg, #071e2b, #0c2838 58%, #173f38);
  border-left: 17px solid var(--venture-accent);
}

.corporate-esg-section .section-heading-light {
  margin-bottom: 52px;
}

.esg-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.esg-pillars {
  display: grid;
  gap: 14px;
}

.esg-pillars article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 21px;
  align-items: center;
  padding: 26px 27px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.esg-pillars article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--venture-accent-dark);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
}

.esg-pillars h3 {
  color: var(--white);
  font-size: 18px;
}

.esg-pillars p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.58;
}

.esg-programme {
  padding: clamp(38px, 4.5vw, 58px);
  color: var(--dark);
  background: var(--white);
}

.esg-programme h3 {
  margin: 16px 0 31px;
}

.esg-programme .check-list {
  margin-bottom: 26px;
}

.esg-programme .check-list li::before {
  background: var(--venture-accent-dark);
}

.esg-programme .service-note {
  margin-bottom: 29px;
}

.material-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.material-column {
  min-height: 360px;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.material-column > p:last-child {
  color: var(--steel);
}

.material-column h3 {
  margin: 35px 0 23px;
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.material-column-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.material-column-dark > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.material-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 39px 0 34px;
}

.material-chips span {
  padding: 10px 14px;
  color: var(--dark);
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}

.responsible-section,
.technical-note {
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(8, 31, 43, 0.98), rgba(12, 40, 56, 0.93)),
    var(--navy);
}

.responsible-section {
  border-left: 17px solid var(--venture-accent);
}

.technical-note {
  border-left: 17px solid var(--red);
}

.responsible-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.responsible-grid .section-heading {
  margin: 0;
}

.responsible-copy {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.responsible-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.responsible-copy p + p {
  margin-top: 24px;
}

.product-family {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.product-card {
  position: relative;
  min-height: 470px;
  padding: 39px 34px 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  border-radius: var(--radius);
}

.product-card-hpx {
  border-top-color: var(--navy);
}

.product-card-sfx {
  border-top-color: #7f919c;
}

.product-code {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(12, 40, 56, 0.08);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.product-card h3 {
  margin: 44px 0 20px;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.product-card > p:not(.eyebrow) {
  color: var(--steel);
}

.product-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  padding: 9px 0;
  color: var(--steel);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.venture-process {
  grid-template-columns: repeat(5, 1fr);
}

.substrate-band {
  margin-top: 53px;
  padding: 31px 34px;
  color: var(--white);
  background: var(--dark);
  border-radius: var(--radius);
}

.substrate-band > strong {
  display: block;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.material-chips-light {
  margin: 22px 0 0;
}

.material-chips-light span {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.application-videos-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(242, 59, 52, 0.19), transparent 29%),
    linear-gradient(125deg, #071e2b, #0c2838 60%, #173c4f);
  border-left: 17px solid var(--red);
}

.application-videos-section .section-heading-light {
  margin-bottom: 52px;
}

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

.video-resource-card {
  display: grid;
  grid-template-rows: 205px 1fr;
  overflow: hidden;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-resource-card:hover,
.video-channel-card:hover {
  transform: translateY(-4px);
}

.video-resource-card:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.video-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(12, 40, 56, 0.82), rgba(18, 67, 88, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(255, 255, 255, 0.08) 50px 51px);
}

.video-card-visual::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.video-card-visual-alt {
  background:
    linear-gradient(135deg, rgba(86, 25, 27, 0.87), rgba(12, 40, 56, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(255, 255, 255, 0.08) 50px 51px);
}

.video-card-visual strong {
  font-size: clamp(55px, 8vw, 94px);
  line-height: 0.83;
  letter-spacing: -0.07em;
  text-align: center;
}

.video-card-visual-alt strong {
  font-size: clamp(37px, 5vw, 63px);
}

.video-play {
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 13px 35px rgba(0, 0, 0, 0.25);
  font-size: 18px;
}

.video-card-copy {
  padding: 33px 34px 35px;
}

.video-card-copy h3,
.video-channel-card h3 {
  margin: 14px 0 15px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.video-card-copy > p:not(.eyebrow) {
  color: var(--steel);
  font-size: 14px;
}

.video-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 25px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.video-link b {
  font-size: 14px;
}

.video-channel-card {
  position: relative;
  grid-column: 1 / -1;
  min-height: 235px;
  padding: clamp(36px, 4vw, 52px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #b6262c, #e23b39);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.video-channel-card h3 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--white);
}

.video-channel-card > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
}

.channel-mark {
  position: absolute;
  right: -0.03em;
  bottom: -0.34em;
  color: rgba(255, 255, 255, 0.09);
  font-size: 330px;
  font-weight: 700;
  line-height: 1;
}

.video-link-light {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.video-guidance {
  max-width: 940px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.65;
}

/* Join the Team */
.career-page {
  --venture-accent: var(--red);
  --venture-accent-dark: var(--red-dark);
}

.career-hero {
  background:
    radial-gradient(circle at 79% 23%, rgba(242, 59, 52, 0.2), transparent 29%),
    linear-gradient(125deg, #071e2b 0%, var(--navy) 58%, #173c4f 100%);
}

.career-monogram {
  right: -0.03em;
  bottom: -0.2em;
  font-size: clamp(250px, 32vw, 520px);
  letter-spacing: -0.13em;
}

.organization-section,
.roles-section,
.candidate-section,
.application-section {
  scroll-margin-top: calc(var(--header) + 18px);
}

.org-chart {
  max-width: 1120px;
  margin-inline: auto;
}

.org-lead {
  width: min(100%, 440px);
  margin-inline: auto;
  padding: 32px 34px;
  color: var(--white);
  background: linear-gradient(135deg, #0c2838, #173f52);
  border-top: 7px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.org-lead > span,
.opportunity-band span {
  color: #ff746f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.org-lead h3 {
  margin: 13px 0 9px;
  color: var(--white);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.org-lead p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.org-connector {
  width: 1px;
  height: 35px;
  margin-inline: auto;
  background: var(--line);
}

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

.org-teams::before {
  display: none;
}

.org-teams article {
  position: relative;
  min-height: 235px;
  padding: 31px 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.org-teams article::before {
  display: none;
}

.org-teams article:last-child {
  grid-column: 1 / -1;
  min-height: auto;
  background: var(--pale);
  border-top: 5px solid var(--navy);
  text-align: center;
}

.org-teams article > span,
.candidate-card > span,
.recruitment-process article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.org-teams h3 {
  margin: 28px 0 12px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.org-teams p {
  color: var(--steel);
  font-size: 14px;
}

.collaboration-band {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: center;
  margin: 27px auto 0;
  padding: 29px 33px;
  color: var(--white);
  background: var(--dark);
  border-radius: var(--radius);
}

.collaboration-band strong {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collaboration-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.opportunity-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 27px;
  padding: 30px 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.opportunity-band span,
.opportunity-band strong {
  display: block;
}

.opportunity-band strong {
  margin-top: 6px;
  color: var(--white);
  font-size: 20px;
}

.opportunity-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

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

.role-card {
  min-height: 560px;
  padding: clamp(34px, 4vw, 49px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  border-radius: var(--radius);
}

.role-card:nth-child(n + 5) {
  border-top-color: var(--navy);
}

.role-card:last-child {
  grid-column: 1 / -1;
  min-height: auto;
}

.role-card:last-child .role-purpose {
  max-width: 900px;
  min-height: auto;
}

.role-card:last-child .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 50px;
}

.role-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.role-card-head > span {
  color: rgba(12, 40, 56, 0.12);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.role-card-head p {
  margin: 0;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.role-card h3 {
  max-width: 520px;
  margin: 31px 0 15px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.role-purpose {
  min-height: 78px;
  color: var(--steel);
  font-size: 15px;
}

.role-card h4 {
  margin: 30px 0 12px;
  color: var(--dark);
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.role-card .check-list li {
  font-size: 14px;
}

.candidate-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(242, 59, 52, 0.16), transparent 27%),
    linear-gradient(125deg, #071e2b, #0c2838 65%, #173c4f);
  border-left: 17px solid var(--red);
}

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

.candidate-card {
  min-height: 235px;
  padding: 29px 27px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.candidate-card h3 {
  margin: 26px 0 10px;
  color: var(--white);
  font-size: 21px;
}

.candidate-card p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.candidate-baseline {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(35px, 7vw, 90px);
  align-items: start;
  margin-top: 25px;
  padding: clamp(34px, 4vw, 48px);
  color: var(--dark);
  background: var(--white);
  border-radius: var(--radius);
}

.candidate-baseline h3 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 35px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.candidate-baseline ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.candidate-baseline li {
  position: relative;
  padding: 12px 0 12px 24px;
  color: var(--steel);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.candidate-baseline li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.insight-hero {
  padding: calc(var(--header) + 88px) 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 193, 69, 0.2), transparent 27%),
    linear-gradient(125deg, #071e2b 0%, var(--navy) 58%, #173c4f 100%);
}

.insight-road-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(242, 59, 52, 0.22), transparent 28%),
    linear-gradient(125deg, #071e2b 0%, var(--navy) 58%, #173c4f 100%);
}

.insight-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: end;
}

.insight-hero h1 {
  max-width: 920px;
  margin: 22px 0 24px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.news-meta-light {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.68);
}

.news-meta-light span::before {
  background: #f4c145;
}

.insight-hero-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 5px solid #f4c145;
  border-radius: var(--radius);
  backdrop-filter: blur(9px);
}

.insight-road-card {
  border-top-color: var(--red);
}

.insight-hero-card > span {
  color: #ffe39a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.insight-road-card > span {
  color: #ffaaa7;
}

.insight-hero-card strong {
  display: block;
  margin: 18px 0 14px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.insight-hero-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
  padding-top: clamp(72px, 9vw, 116px);
  padding-bottom: clamp(80px, 10vw, 130px);
}

.insight-content {
  max-width: 850px;
}

.insight-content > p,
.insight-content > ul {
  color: #405663;
  font-size: 17px;
  line-height: 1.82;
}

.insight-content .insight-lead {
  margin-bottom: 45px;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.58;
  letter-spacing: -0.015em;
}

.insight-content h2 {
  margin: 58px 0 18px;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.insight-callout {
  margin: 38px 0 8px;
  padding: 29px 31px;
  background: #fff8e7;
  border-left: 6px solid #f4c145;
  border-radius: 0 9px 9px 0;
}

.insight-callout-road {
  background: #fff0ef;
  border-left-color: var(--red);
}

.insight-callout strong {
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.insight-callout p {
  margin-top: 8px;
  color: var(--steel);
  font-size: 16px;
}

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

.insight-benefit-grid section {
  min-height: 225px;
  padding: 27px 25px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.insight-benefit-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.insight-benefit-grid h3 {
  margin: 22px 0 9px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.3;
}

.insight-benefit-grid p {
  color: var(--steel);
  font-size: 14px;
  line-height: 1.65;
}

.insight-table-wrap {
  overflow-x: auto;
  margin-top: 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.insight-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.insight-table th,
.insight-table td {
  padding: 18px 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.insight-table th {
  color: var(--white);
  background: var(--navy);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-table td:first-child {
  width: 31%;
  color: var(--navy);
  font-weight: 700;
}

.insight-table tr:last-child td {
  border-bottom: 0;
}

.insight-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-checklist li {
  padding: 17px 0 17px 30px;
  border-top: 1px solid var(--line);
}

.insight-checklist li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  margin: 10px 0 0 -28px;
  background: var(--red);
  border-radius: 50%;
}

.article-sources {
  margin-top: 60px;
  padding-top: 5px;
  border-top: 3px solid var(--navy);
}

.article-sources h2 {
  margin-top: 30px;
}

.article-sources p {
  color: var(--steel);
  font-size: 14px;
}

.article-sources a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  color: var(--red-dark);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.insight-content .article-tags {
  margin-top: 34px;
  padding: 20px 22px;
  color: var(--steel);
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.article-tags strong {
  color: var(--navy);
}

.insight-aside {
  position: sticky;
  top: calc(var(--header) + 28px);
}

.insight-aside > div {
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-top: 6px solid #f4c145;
  border-radius: var(--radius);
}

.insight-road-page .insight-aside > div {
  border-top-color: var(--red);
}

.insight-aside h2 {
  margin: 11px 0 13px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.insight-aside p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.insight-aside .button {
  width: 100%;
  margin-top: 23px;
  text-align: center;
}

.insight-aside nav {
  margin-top: 18px;
  padding: 25px 27px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.insight-aside nav strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-aside nav a {
  display: block;
  padding: 10px 0;
  color: var(--red-dark);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.insight-contact {
  --venture-accent: #f4c145;
}

.insight-road-page .insight-contact {
  --venture-accent: var(--red);
}

.search-insight-link {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 19px 21px;
  color: var(--navy);
  background: var(--pale);
  border-left: 5px solid #f4c145;
  border-radius: 0 7px 7px 0;
}

.road-inspection-equipment-kuwait-page .search-insight-link,
.search-insight-link[href*="gpr-road"] {
  border-left-color: var(--red);
}

.search-insight-link strong {
  color: var(--red-dark);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-insight-link span {
  font-size: 14px;
  font-weight: 700;
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(450px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.application-grid .section-heading {
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--header) + 35px);
}

.application-card {
  padding: clamp(34px, 4vw, 52px);
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.application-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.application-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.application-list li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.application-list strong,
.application-list small {
  display: block;
}

.application-list strong {
  color: var(--dark);
  font-size: 15px;
}

.application-list small {
  margin-top: 3px;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.55;
}

.application-privacy {
  margin: 24px 0 0;
  padding-left: 16px;
  color: var(--steel);
  border-left: 3px solid var(--red);
  font-size: 12px;
  line-height: 1.65;
}

.recruitment-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 62px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.recruitment-process article {
  min-height: 210px;
  padding: 28px 26px;
  background: var(--white);
}

.recruitment-process h3 {
  margin: 27px 0 9px;
  font-size: 18px;
}

.recruitment-process p {
  color: var(--steel);
  font-size: 13px;
}

.career-contact {
  --venture-accent: var(--red);
}

.venture-contact {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 125px) 0;
  color: var(--white);
  background: linear-gradient(125deg, #0a2636, #154357);
}

.venture-contact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 17px;
  background: var(--venture-accent);
}

.venture-contact::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.venture-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: center;
}

.venture-contact h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.3vw, 61px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.venture-contact p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.venture-contact-actions {
  display: grid;
  justify-items: start;
  gap: 23px;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.text-link-light:hover {
  color: var(--white);
}

@media (max-width: 1120px) {
  .header-cta {
    display: none;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    gap: 45px;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 0;
  }

  .process-grid::before {
    display: none;
  }

  .assurance {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .venture-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(315px, 0.8fr);
    gap: 45px;
  }

  .venture-process {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header: 76px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 36px), var(--content));
  }

  .gpr-feature-hero,
  .gpr-model-grid {
    grid-template-columns: 1fr;
  }

  .gpr-insight-links {
    grid-template-columns: 1fr;
  }

  .gpr-family-image {
    order: -1;
  }

  .insight-hero-grid,
  .insight-layout {
    grid-template-columns: 1fr;
  }

  .insight-aside {
    position: static;
  }

  .insight-aside nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .insight-aside nav strong {
    grid-column: 1 / -1;
  }

  .insight-aside nav a {
    padding: 11px 0;
  }

  .brand {
    width: 184px;
    height: 52px;
  }

  .brand img {
    width: 154px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    max-height: 0;
    display: grid;
    gap: 0;
    margin: 0;
    overflow: hidden;
    background: rgba(12, 40, 56, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: max-height 250ms ease;
  }

  .primary-nav.is-open {
    max-height: calc(100vh - var(--header));
    max-height: calc(100svh - var(--header));
  }

  .primary-nav a {
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 15px;
  }

  .primary-nav .nav-tab {
    padding: 18px 28px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
  }

  .primary-nav .nav-tab[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-products {
    display: grid;
  }

  .primary-nav .nav-tab-products {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav-products-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    transform: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: max-height 200ms ease;
  }

  .nav-products:hover .nav-products-menu,
  .nav-products:focus-within .nav-products-menu,
  .nav-products.is-open .nav-products-menu {
    max-height: 220px;
  }

  .primary-nav .nav-products-menu a {
    padding-left: 47px;
    border-radius: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header) + 86px) 0 75px;
  }

  .hero-grid,
  .heading-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .hero-scroll {
    display: none;
  }

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

  .proof-grid > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .heading-split {
    gap: 15px;
  }

  .capability-grid,
  .market-grid,
  .principal-list,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card:last-child {
    grid-column: 1 / -1;
  }

  .news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .partner-news-callout,
  .partner-content-grid {
    grid-template-columns: 1fr;
  }

  .partner-news-callout .button {
    width: fit-content;
  }

  .partner-market-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-market-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .partner-criteria {
    position: static;
  }

  .news-card-featured {
    grid-row: auto;
    min-height: 500px;
  }

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

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

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

  .assurance-visual {
    min-height: 410px;
  }

  .contact-grid {
    gap: 48px;
  }

  .venture-hero {
    min-height: auto;
    padding: calc(var(--header) + 82px) 0 78px;
  }

  .venture-hero-grid,
  .responsible-grid,
  .venture-contact-grid,
  .giveaway-grid,
  .esg-grid,
  .application-grid,
  .candidate-baseline {
    grid-template-columns: 1fr;
  }

  .venture-hero-grid {
    gap: 48px;
  }

  .venture-panel {
    max-width: 640px;
  }

  .venture-monogram {
    right: -0.08em;
    font-size: 430px;
  }

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

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

  .product-card {
    min-height: auto;
  }

  .responsible-copy {
    padding-top: 32px;
  }

  .venture-contact-grid {
    gap: 42px;
  }

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

  .org-teams::before,
  .org-teams article::before {
    display: none;
  }

  .org-connector {
    height: 35px;
  }

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

  .application-grid .section-heading {
    position: static;
  }

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

@media (max-width: 620px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .gpr-feature-hero {
    padding: 28px 21px;
  }

  .gpr-use-grid,
  .gpr-model-card {
    grid-template-columns: 1fr;
  }

  .gpr-model-card {
    min-height: auto;
  }

  .gpr-model-image img {
    max-height: 265px;
  }

  .insight-hero {
    padding: calc(var(--header) + 58px) 0 66px;
  }

  .insight-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .insight-benefit-grid,
  .insight-aside nav {
    grid-template-columns: 1fr;
  }

  .insight-benefit-grid section {
    min-height: auto;
  }

  .insight-table th,
  .insight-table td {
    min-width: 165px;
    padding: 15px;
  }

  .brand {
    width: 164px;
    height: 48px;
    padding: 8px 12px;
  }

  .brand img {
    width: 140px;
  }

  .menu-toggle-label {
    display: none;
  }

  .hero-rail,
  .contact-rail {
    width: 8px;
  }

  .venture-hero::before,
  .venture-contact::before {
    width: 8px;
  }

  .hero {
    padding-top: calc(var(--header) + 62px);
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 63px);
  }

  .venture-copy h1 {
    font-size: clamp(42px, 13vw, 63px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    padding: 28px 24px 22px;
  }

  .proof-grid,
  .value-grid,
  .capability-grid,
  .responsibility-grid,
  .process-grid,
  .market-grid,
  .principal-list,
  .assurance-grid,
  .material-board,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card:last-child {
    grid-column: auto;
  }

  .project-card {
    grid-template-rows: 180px 1fr;
  }

  .project-card-content {
    padding: 27px 24px;
  }

  .news-card-featured {
    min-height: 430px;
  }

  .partner-news-callout {
    padding: 29px 24px;
  }

  .partner-news-callout .button {
    width: 100%;
  }

  .partner-market-grid,
  .partner-copy ul {
    grid-template-columns: 1fr;
  }

  .partner-market-grid > div:first-child {
    grid-column: auto;
  }

  .partner-market-grid > div {
    min-height: 118px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-grid > div {
    min-height: 104px;
    padding: 22px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-grid > div:first-child {
    border-top: 0;
  }

  .section {
    padding: 79px 0;
  }

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

  .section-heading h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .value-card {
    min-height: auto;
    padding: 36px 25px;
  }

  .value-card h3 {
    margin-top: 40px;
    font-size: 27px;
  }

  .capability-card,
  .responsibility-card,
  .market-card,
  .principal-list article {
    min-height: auto;
  }

  .team-band,
  .outputs-band {
    display: grid;
  }

  .team-band span::after,
  .outputs-band span::after {
    display: none;
  }

  .principal-statement {
    padding: 28px 25px;
  }

  .process-grid {
    gap: 36px;
  }

  .process-grid li,
  .process-grid li:first-child,
  .process-grid li:last-child {
    padding: 0;
  }

  .process-grid h3 {
    margin-top: 18px;
  }

  .solution-row {
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 22px 0;
  }

  .solution-row p {
    grid-column: 2;
  }

  .landscape {
    padding: 29px 23px;
  }

  .assurance-visual {
    min-height: 330px;
  }

  .assurance-content {
    padding: 74px 22px;
  }

  .contact-section {
    min-height: auto;
    padding: 85px 0;
  }

  .contact-card {
    padding: 24px;
  }

  .venture-panel {
    padding: 28px 24px 22px;
  }

  .venture-monogram {
    display: none;
  }

  .material-column {
    min-height: auto;
    padding: 34px 25px;
  }

  .responsible-section,
  .technical-note,
  .corporate-esg-section,
  .application-videos-section,
  .candidate-section,
  .gpr-feature-section {
    border-left-width: 8px;
  }

  .giveaway-feature,
  .giveaway-request,
  .esg-programme,
  .video-card-copy,
  .video-channel-card {
    padding: 34px 25px;
  }

  .esg-pillars article {
    grid-template-columns: 50px 1fr;
    gap: 17px;
    padding: 23px 20px;
  }

  .esg-pillars article > span {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .video-resource-grid {
    grid-template-columns: 1fr;
  }

  .rd-product-grid,
  .rd-brand-grid,
  .rd-download-grid {
    grid-template-columns: 1fr;
  }

  .rd-brand-card {
    padding: 29px 24px;
  }

  .rd-brand-summary {
    min-height: auto;
  }

  .rd-brand-products {
    grid-template-columns: 1fr;
  }

  .rd-brand-gallery {
    grid-template-columns: 1fr;
  }

  .rd-brand-gallery figure,
  .rd-brand-gallery img {
    min-height: 230px;
    height: 230px;
  }

  .video-channel-links {
    grid-template-columns: 1fr;
  }

  .rd-brand-products > div:last-child {
    grid-column: auto;
  }

  .video-channel-card {
    grid-column: auto;
  }

  .channel-mark {
    font-size: 240px;
  }

  .career-monogram {
    display: none;
  }

  .role-card:last-child .check-list {
    grid-template-columns: 1fr;
  }

  .org-teams,
  .role-grid,
  .candidate-grid,
  .recruitment-process {
    grid-template-columns: 1fr;
  }

  .org-lead,
  .org-teams article,
  .role-card,
  .candidate-baseline,
  .application-card {
    padding-right: 25px;
    padding-left: 25px;
  }

  .collaboration-band,
  .opportunity-band {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 27px 24px;
  }

  .role-card {
    min-height: auto;
  }

  .role-purpose {
    min-height: auto;
  }

  .recruitment-process article {
    min-height: auto;
  }

  .venture-contact-actions .button {
    width: 100%;
  }

  .contact-card a,
  .contact-card p {
    display: block;
  }

  .contact-card em {
    display: none;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-grid small {
    grid-column: auto;
  }
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  color: #fff;
  background: #0c2838;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.consent-banner strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.consent-banner p {
  max-width: 760px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
}

.consent-banner a {
  color: #fff;
  font-size: 0.84rem;
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.consent-actions .button {
  white-space: nowrap;
}

.consent-actions .button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.footer-privacy-button {
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  text-decoration: underline;
}

.privacy-content {
  max-width: 860px;
}

.privacy-content section + section {
  margin-top: 36px;
}

.privacy-content h2 {
  margin-bottom: 12px;
}

.privacy-content ul {
  padding-left: 20px;
}

.privacy-content li + li {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 20px;
  }

  .consent-actions {
    margin-top: 16px;
  }

  .consent-actions .button {
    flex: 1;
    padding-right: 12px;
    padding-left: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
