:root {
  --navy-deep: #0d182d;
  --navy: #192d54;
  --blue: #25427b;
  --accent: #3057a3;
  --brand-orange: #c94f1d;
  --gray: #e8eaee;
  --white: #ffffff;
  --ink-soft: rgba(13, 24, 45, 0.72);
  --white-soft: rgba(255, 255, 255, 0.74);
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(13, 24, 45, 0.14);
  --shadow: 0 24px 70px rgba(13, 24, 45, 0.16);
  --header-h: 88px;
  --page-max: 1240px;
  --page-pad: clamp(20px, 6vw, 86px);
  --metal-blue-a:
    radial-gradient(circle at 70% 20%, rgba(40, 75, 170, 0.25), transparent 45%),
    linear-gradient(90deg, #02102d 0%, #07205a 45%, #12306f 100%);
  --metal-blue-b:
    radial-gradient(circle at 68% 18%, rgba(75, 125, 220, 0.28), transparent 46%),
    linear-gradient(90deg, #071c4d 0%, #10337d 48%, #1b4fae 100%);
  --metal-blue-shadow: inset 0 0 120px rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  color: var(--navy-deep);
  background: var(--white);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.42;
  overflow: hidden;
}

#scroller {
  height: 100vh;
  height: 100svh;
  overflow-x: clip;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-padding-top: var(--header-h);
  scroll-snap-type: none;
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(13, 24, 45, 0.1);
  backdrop-filter: blur(14px);
}

body.hero-intro-running .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cf-intro-frame {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0d182d;
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(154px, 16.5vw, 213px);
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-header.is-scrolled .main-nav {
  color: var(--navy-deep);
}

.main-nav a {
  opacity: 0.84;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  color: currentColor;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 210ms ease-out;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-header.is-scrolled .nav-toggle {
  color: var(--navy-deep);
}

.page {
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: var(--header-h) var(--page-pad) clamp(40px, 7vh, 76px);
  scroll-margin-top: calc(var(--header-h) * -1);
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.page-long {
  height: auto;
}

.page-inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

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

.page-navy {
  color: var(--white);
  background: var(--metal-blue-a);
  background-blend-mode: screen;
  box-shadow: var(--metal-blue-shadow);
}

[data-section-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 560ms ease-out,
    transform 560ms ease-out;
  transition-delay: calc(var(--reveal-index, 0) * 80ms);
}

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

.why {
  background: #f4f5f7;
}

.why-inner {
  display: grid;
  min-height: calc(100svh - var(--header-h) - clamp(40px, 7vh, 76px));
  grid-template-rows: auto auto auto;
  align-content: space-between;
  gap: clamp(24px, 3.5vh, 40px);
}

.why-heading {
  display: block;
}

.why-heading .mono-label {
  margin-bottom: 0;
  font-size: clamp(0.92rem, 1.25vw, 1.18rem);
  letter-spacing: 0.15em;
}

.why-grid {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  border-top: 1px solid rgba(13, 24, 45, 0.28);
  border-bottom: 1px solid rgba(13, 24, 45, 0.28);
}

.why-grid[data-section-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.why-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 2vw, 28px);
  padding: 2.625rem clamp(24px, 3vw, 42px);
  background: transparent;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 560ms ease-out calc(var(--why-index, 0) * 80ms),
    transform 560ms ease-out calc(var(--why-index, 0) * 80ms),
    background-color 180ms ease;
}

.why-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 260ms ease;
}

.why-card:nth-child(2n) {
  border-left: 1px solid rgba(13, 24, 45, 0.28);
}

.why-card:nth-child(n + 3) {
  border-top: 1px solid rgba(13, 24, 45, 0.28);
}

.why.is-visible .why-card {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover,
.why-card:focus-visible {
  background: rgba(255, 255, 255, 0.52);
}

.why-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.why-card:hover::before,
.why-card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.why-number {
  display: inline-block;
  align-self: flex-start;
  color: var(--accent);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform-origin: left center;
  transition: transform 220ms ease;
}

.why-copy {
  max-width: 36ch;
  margin-bottom: 0;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2.05rem, 3vw, 3.35rem);
  line-height: 1.02;
  transition: color 180ms ease;
}

.why-line {
  display: block;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.35;
}

.why-detail {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: grid-template-rows 260ms ease, margin-top 260ms ease, opacity 180ms ease, transform 260ms ease;
}

.why-detail p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.why-card:hover .why-number,
.why-card:focus-visible .why-number {
  transform: scale(1.14);
}

.why-card:hover h3,
.why-card:focus-visible h3 {
  color: var(--accent);
}

.why-card:hover .why-detail,
.why-card:focus-visible .why-detail {
  grid-template-rows: 1fr;
  margin-top: 16px;
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .why-detail {
    grid-template-rows: 1fr;
    margin-top: 14px;
    opacity: 1;
    transform: none;
  }
}

.why-closing {
  max-width: 65ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

.hero.page {
  justify-content: flex-end;
  padding: 0;
}

.hero.is-intro-active [data-hero-content] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
}

.hero [data-hero-content] {
  opacity: 1;
  visibility: visible;
}

.hero.hero-copy-pending [data-hero-content] .mono-label,
.hero.hero-copy-pending .hero-title-motion,
.hero.hero-copy-pending .hero-copy,
.hero.hero-copy-pending .hero-actions .button {
  opacity: 0;
}

.hero.hero-copy-pending [data-hero-content] .mono-label {
  letter-spacing: 0.28em;
}

.hero.hero-copy-pending .hero-title-motion {
  transform: translateY(105%);
}

.hero.hero-copy-pending .hero-copy {
  transform: translateY(12px);
}

.hero.hero-copy-pending .hero-actions .button {
  transform: translateY(12px);
}

.hero.is-copy-visible [data-hero-content] .mono-label {
  animation: heroEyebrowIn 500ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero.is-copy-visible .hero-title-motion {
  animation: heroTitleLineIn 700ms cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: calc(120ms + (var(--line-index) * 90ms));
}

.hero.is-copy-visible .hero-copy {
  animation: heroCopyIn 560ms cubic-bezier(.16, 1, .3, 1) 400ms both;
}

.hero.is-copy-visible .hero-actions .button {
  animation: heroButtonIn 520ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero.is-copy-visible .hero-actions .button:nth-child(1) {
  animation-delay: 660ms;
}

.hero.is-copy-visible .hero-actions .button:nth-child(2) {
  animation-delay: 740ms;
}

.hero.hero-copy-pending .hero-copy-block::before {
  opacity: 0;
  transform: scaleY(0);
}

.hero.is-copy-visible .hero-copy-block::before {
  animation: heroAccentBarIn 960ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  object-fit: cover;
  object-position: 58% center;
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 920px;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  padding: 118px clamp(20px, 6vw, 86px) clamp(48px, 8vh, 86px);
}

.hero-copy-block {
  position: relative;
  max-width: 900px;
  padding-left: 20px;
}

.hero-copy-block::before {
  position: absolute;
  top: 2px;
  bottom: 1rem;
  left: 0;
  width: 4px;
  background: var(--brand-orange);
  content: "";
  transform-origin: top center;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(22px, 5vh, 54px);
  display: grid;
  width: 20px;
  height: 42px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.scroll-cue span {
  width: 4px;
  height: 4px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(16px); opacity: 1; }
}

.mono-label {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mono-label.navy {
  color: var(--accent);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.1vw, 3.8rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(2.2rem, 4.67vw, 5.6rem);
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-motion {
  display: block;
}

.hero [data-hero-content] .mono-label .hero-text-band {
  display: inline-block;
  color: var(--white);
  padding: 5px 9px;
  white-space: nowrap;
}

.hero .mono-label {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(0.56rem, 2.1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.hero [data-hero-content] .mono-label,
.hero-title,
.hero-copy {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 4px 32px rgba(0, 0, 0, 0.7);
}

@keyframes heroEyebrowIn {
  from {
    opacity: 0;
    letter-spacing: 0.28em;
  }

  to {
    opacity: 1;
    letter-spacing: 0.14em;
  }
}

@keyframes heroTitleLineIn {
  from {
    opacity: 0;
    transform: translateY(105%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroAccentBarIn {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.55vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-copy,
.lead-copy,
.contact-note,
.section-close,
.section-heading > p {
  max-width: 65ch;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.lead-copy,
.page-light .section-close,
.page-light .section-heading > p,
.contact-note {
  color: var(--ink-soft);
}

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

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--accent);
}

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

.sectors,
.backing {
  background: var(--gray);
}

.backing {
  --backing-primary: var(--navy-deep);
  --backing-secondary: rgba(13, 24, 45, 0.68);
  --backing-card-title-size: 1.08rem;
  --backing-body-size: 0.84rem;
  --backing-figure-size: clamp(2rem, 4vw, 3.6rem);
  --backing-label-size: 0.7rem;
}

.backing h2 {
  color: var(--backing-primary);
  font-weight: 700;
}

.backing-grid h3 {
  color: var(--backing-primary);
  font-size: var(--backing-card-title-size);
  font-weight: 600;
}

.backing-grid ul,
.feature-strip p {
  color: var(--backing-secondary);
  font-size: var(--backing-body-size);
  font-weight: 400;
}

.backing-grid ul {
  list-style-type: disc;
}

.backing-grid li::marker {
  color: var(--backing-secondary);
}

.backing-grid,
.step-grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(22px, 4vh, 44px);
  background: transparent;
  border: 0;
}

.backing-grid article,
.step-grid > li {
  background: var(--white);
}

.backing-grid p,
.step-grid p {
  color: var(--ink-soft);
}

.sector-hierarchy {
  margin-top: clamp(30px, 5vh, 58px);
}

.sector-featured,
.sector-support-grid article {
  min-width: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 560ms ease-out calc(var(--sector-reveal-index, 0) * 80ms),
    transform 560ms ease-out calc(var(--sector-reveal-index, 0) * 80ms);
}

.sector-featured.is-revealed,
.sector-support-grid article.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.sector-featured {
  margin-bottom: clamp(52px, 8vh, 92px);
}

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

.sector-featured .sector-media {
  aspect-ratio: 21 / 9;
  margin-bottom: clamp(24px, 3.5vh, 38px);
}

.sector-featured-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
}

.sector-featured-intro p {
  max-width: 65ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.sector-proof {
  grid-column: 1 / -1;
  max-width: 65ch;
  margin: clamp(12px, 2vh, 22px) 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.sector-proof span {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-weight: 700;
}

.sector-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.sector-support-grid .sector-media {
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
}

.sector-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
}

.sector-list li {
  position: relative;
  padding-left: 14px;
}

.sector-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "·";
}

.sector-list-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px clamp(18px, 3vw, 36px);
  margin-top: 2px;
}

.split-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
}

ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--navy);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: clamp(22px, 4vh, 42px);
  align-items: end;
}

.bim {
  background: var(--metal-blue-a);
}

.page.bim-embed-page {
  min-height: 100vh;
  min-height: 100svh;
  justify-content: flex-start;
  padding: 0;
  background: var(--navy-deep);
  overflow: hidden;
}

.bim-embed-frame {
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  flex: 1 0 auto;
  border: 0;
  background: var(--navy-deep);
}

.bim-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.bim-visual {
  position: relative;
  min-height: clamp(260px, 34vw, 420px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  overflow: hidden;
}

.bim-plane {
  position: absolute;
  right: 12%;
  left: 14%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transform: skewX(-18deg);
}

.plane-1 { bottom: 18%; }
.plane-2 { bottom: 28%; }
.plane-3 { bottom: 38%; }
.plane-4 { bottom: 48%; }
.plane-5 { bottom: 58%; }
.plane-6 { bottom: 68%; }

.bim-layers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.bim-layers li {
  min-height: 116px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.bim-layers span,
.step-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--white-soft);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.78rem;
}

.bim-layers strong,
.step-grid strong {
  display: block;
  margin-bottom: 6px;
}

.bim-layers p,
.section-close {
  margin-bottom: 0;
  color: var(--white-soft);
}

.delivery .lead-copy {
  margin-top: 18px;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  list-style: none;
  background: transparent;
}

.step-grid > li {
  min-height: 280px;
  border-left: 1px solid var(--line-light);
  padding: 0 20px;
}

.step-grid > li:first-child {
  border-left: 0;
}

.step-grid span {
  color: var(--accent);
}

.backing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.backing-grid article {
  min-height: 168px;
  background: transparent;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 18px;
}

.backing-grid article:last-child {
  border-bottom: 0;
}

.feature-strip {
  display: grid;
  grid-template-columns: 0.22fr 0.22fr 1fr;
  gap: 24px;
  margin-top: 20px;
  border: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 22px;
  background: transparent;
  align-items: center;
}

.feature-strip p,
.feature-strip small {
  margin: 0;
  color: var(--backing-secondary);
}

.feature-strip span,
.metric-strip strong {
  display: block;
  color: var(--backing-primary);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: var(--backing-figure-size);
  font-weight: 700;
  line-height: 0.95;
}

.backing h2 {
  margin-bottom: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 48px);
  margin-top: 14px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.metric-strip span {
  padding: 0;
  color: var(--backing-primary);
}

.metric-strip small,
.feature-strip small {
  display: block;
  margin-top: 6px;
  color: var(--backing-secondary);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--backing-label-size);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.experience {
  background: var(--metal-blue-b);
}

.career-teaser {
  background: var(--gray);
}

.career-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.career-teaser-media,
.career-teaser-card {
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
}

.career-teaser-media {
  margin: 0;
}

.career-teaser-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.career-teaser-card {
  display: grid;
  place-items: center;
  padding: clamp(32px, 5vw, 72px);
  background: var(--white);
}

.career-teaser-copy {
  display: flex;
  max-width: 48ch;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.career-teaser-copy .draft-marker {
  margin-bottom: 18px;
}

.career-teaser-copy h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.career-teaser-copy p {
  max-width: 48ch;
  margin: clamp(22px, 3vw, 34px) 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.career-teaser-button {
  color: var(--navy-deep);
  border-color: var(--navy-deep);
  background: var(--white);
}

.career-teaser-button:hover,
.career-teaser-button:focus-visible {
  color: var(--white);
  background: var(--navy-deep);
}

.project-carousel {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

.project-showcase {
  height: auto;
}

.project-heading h2 {
  max-width: none;
}

.project-carousel-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
}

.project-tabs {
  display: grid;
  grid-template-columns: repeat(9, minmax(42px, 1fr));
  border-bottom: 1px solid var(--line-dark);
}

.project-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 6px 9px;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.project-tabs button:hover,
.project-tabs button:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.project-tabs button.is-active,
.project-tabs button[aria-selected="true"] {
  border-bottom-color: var(--white);
  color: var(--white);
}

.project-view-toggle {
  justify-self: end;
  min-height: 42px;
  border: 1px solid var(--line-dark);
  padding: 0 16px;
  color: var(--white);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.project-view-toggle:hover,
.project-view-toggle:focus-visible,
.project-view-toggle[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--navy-deep);
  background: var(--white);
}

.project-stage {
  position: relative;
  display: grid;
  min-height: 0;
  padding-bottom: 64px;
}

.project-slide {
  position: relative;
  inset: auto;
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    visibility 0s linear 320ms;
}

.project-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    visibility 0s linear 0s;
}

.project-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0;
  align-self: start;
  object-fit: cover;
}

.project-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.project-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--white-soft);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.78rem;
}

.project-copy p {
  max-width: 56ch;
  color: var(--white-soft);
}

.project-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.1vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 5vh, 52px);
}

.stat-bar strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.stat-bar small {
  display: block;
  margin-top: 4px;
  color: var(--white-soft);
  font-size: 0.72rem;
}

.project-stage-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-stage-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  color: var(--white);
  background: transparent;
  font-size: 1.15rem;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.project-stage-controls button:hover,
.project-stage-controls button:focus-visible {
  border-color: var(--white);
  color: var(--navy-deep);
  background: var(--white);
}

.project-stage-controls p {
  min-width: 64px;
  margin: 0;
  color: var(--white-soft);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.74rem;
  text-align: center;
}

.project-tabs[hidden],
.project-stage[hidden],
.project-grid[hidden] {
  display: none;
}

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

.project-grid-item {
  min-width: 0;
}

.project-grid-card {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: auto 1fr;
  border: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 0 0 22px;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.project-grid-card:hover,
.project-grid-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-4px);
}

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

.project-grid-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px 14px 0;
}

.project-grid-card-number {
  margin-bottom: 12px;
  color: var(--white-soft);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
}

.project-grid-card-title {
  color: var(--white);
  font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  font-weight: 700;
  line-height: 1.16;
}

.project-grid-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.project-grid-card-stats strong,
.project-grid-card-stats small {
  display: block;
}

.project-grid-card-stats strong {
  color: var(--white);
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1;
}

.project-grid-card-stats small {
  margin-top: 4px;
  color: var(--white-soft);
  font-size: 0.64rem;
}

.page.contact {
  justify-content: space-between;
  padding-bottom: 0;
  background: radial-gradient(138% 135% at 100% 110%, #21386b 0%, #17284c 33%, #0d182d 64%);
  background-blend-mode: normal;
  box-shadow: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.contact-note {
  margin-top: 14px;
  color: var(--white-soft);
}

.contact-data {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--white-soft);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.88rem;
}

.dossier-link {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  background: rgba(13, 24, 45, 0.22);
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 12px 11px;
  color: var(--white);
  background: rgba(2, 16, 48, 0.45);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

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

.site-footer {
  position: relative;
  width: calc(100% + (var(--page-pad) * 2));
  min-height: 96px;
  margin-inline: calc(var(--page-pad) * -1);
  margin-top: auto;
  padding: 20px var(--page-pad) 26px;
  color: var(--white-soft);
  background: transparent;
}

.footer-inner {
  display: flex;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer-base {
  display: flex;
  width: 100%;
  padding-right: clamp(120px, 10vw, 156px);
  align-items: center;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45em;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-meta a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 0.28em;
}

.footer-meta a[aria-disabled="true"] {
  pointer-events: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
}

.footer-symbol {
  position: absolute;
  right: clamp(44px, 6vw, 86px);
  bottom: clamp(34px, 6vh, 64px);
  width: clamp(76px, 6vw, 96px);
  height: auto;
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .backing-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bim-shell,
  .section-heading,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .career-teaser-grid {
    max-width: 860px;
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 74px;
    --page-pad: 20px;
  }

  body {
    overflow: hidden;
  }

  #scroller {
    height: 100dvh;
    scroll-snap-type: none;
    scroll-behavior: smooth;
  }

  .page {
    min-height: auto;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 28px) var(--page-pad) 56px;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .page.bim-embed-page {
    min-height: 100dvh;
    padding: 0;
  }

  .bim-embed-frame {
    height: 100dvh;
    min-height: 100dvh;
  }

  .hero.page {
    min-height: 100dvh;
    padding: 0;
  }

  .career-teaser-media,
  .career-teaser-card {
    aspect-ratio: 1 / 1;
  }

  .career-teaser-card {
    padding: 16px;
  }

  .career-teaser-copy .draft-marker {
    margin-bottom: 10px;
  }

  .career-teaser-copy h2 {
    font-size: clamp(1.9rem, 8.5vw, 3.35rem);
  }

  .career-teaser-copy p {
    margin: 14px 0 18px;
    font-size: clamp(0.88rem, 3.6vw, 1rem);
    line-height: 1.45;
  }

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

  .brand-logo {
    width: 163px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-light);
    padding: 8px;
    color: var(--navy-deep);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      max-height 250ms ease-out,
      opacity 180ms ease-out,
      transform 250ms ease-out,
      visibility 0s linear 250ms;
  }

  .main-nav.is-open {
    max-height: calc(100dvh - var(--header-h) - 18px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      max-height 250ms ease-out,
      opacity 180ms ease-out,
      transform 250ms ease-out,
      visibility 0s linear 0s;
  }

  .main-nav a {
    border-left: 3px solid transparent;
    padding: 14px 12px;
    opacity: 0;
    transform: translateY(-2px);
    transition:
      opacity 120ms ease-in,
      transform 160ms ease-in,
      color 150ms ease-out,
      background-color 150ms ease-out,
      border-color 150ms ease-out;
  }

  .main-nav.is-open a {
    opacity: 0.84;
    transform: translateY(0);
    transition:
      opacity 170ms ease-out calc(35ms + (var(--nav-index, 0) * 18ms)),
      transform 180ms ease-out calc(35ms + (var(--nav-index, 0) * 18ms)),
      color 150ms ease-out,
      background-color 150ms ease-out,
      border-color 150ms ease-out;
  }

  .main-nav.is-open a:hover,
  .main-nav.is-open a:focus-visible {
    border-left-color: var(--accent);
    background: rgba(48, 87, 163, 0.08);
    opacity: 1;
    transform: translateX(5px);
  }

  .main-nav.is-open .nav-page-link:hover,
  .main-nav.is-open .nav-page-link:focus-visible {
    border-left-color: var(--brand-orange);
    background: rgba(201, 79, 29, 0.08);
  }

  .main-nav.is-open a.is-current-page {
    border-left-color: var(--accent);
    background: rgba(48, 87, 163, 0.1);
    opacity: 1;
  }

  .main-nav.is-open .nav-page-link.is-current-page {
    border-left-color: var(--brand-orange);
    color: var(--brand-orange);
    background: rgba(201, 79, 29, 0.1);
  }

  .hero-inner {
    min-height: 100dvh;
    padding: 98px 20px 48px;
  }

  .hero-video {
    object-position: 64% center;
  }

  .scroll-cue {
    display: none;
  }

  h1 {
    max-width: 520px;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    line-height: 1.1;
  }

  h3 {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .why-inner {
    min-height: 0;
    align-content: start;
    gap: 20px;
  }

  .why-heading {
    min-height: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .why-card {
    min-height: 0;
    gap: 22px;
    padding: 2.25rem 22px;
  }

  .why-card:nth-child(2n) {
    border-left: 0;
  }

  .why-card + .why-card {
    border-top: 1px solid rgba(13, 24, 45, 0.28);
  }

  .why-copy {
    margin-bottom: 0;
  }

  .why-card h3 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-copy,
  .lead-copy,
  .contact-note,
  .section-close,
  .section-heading > p {
    font-size: 0.98rem;
  }

  .backing-grid,
  .step-grid,
  .bim-layers {
    grid-template-columns: 1fr;
  }

  .backing-grid article,
  .step-grid > li {
    min-height: auto;
  }

  .sector-featured-body,
  .sector-support-grid,
  .sector-list-featured {
    grid-template-columns: 1fr;
  }

  .sector-hierarchy {
    margin-top: 30px;
  }

  .sector-featured {
    margin-bottom: 52px;
  }

  .split-list {
    grid-template-columns: 1fr;
  }

  .step-grid > li,
  .backing-grid article {
    border-left: 0;
    border-right: 0;
  }

  .bim-shell {
    gap: 22px;
  }

  .bim-visual {
    min-height: 240px;
  }

  .bim-layers {
    max-height: none;
  }

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

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

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

  .project-tabs {
    display: flex;
    overflow-x: auto;
  }

  .project-tabs button {
    flex: 0 0 auto;
    width: 42px;
  }

  .project-stage {
    min-height: 760px;
  }

  .project-slide {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .project-progress {
    grid-column: 1;
  }

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

  .page.contact {
    min-height: 100dvh;
  }

  .contact-inner {
    gap: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .full {
    grid-column: auto;
  }

  .site-footer {
    min-height: 0;
    padding: 24px var(--page-pad) 26px;
    background: transparent;
  }

  .page.contact {
    background: radial-gradient(145% 130% at 108% 110%, #21386b 0%, #17284c 33%, #0d182d 64%);
  }

  .footer-base {
    padding-right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .footer-meta {
    width: 100%;
    max-width: none;
    gap: 0.32em;
    font-size: 0.61rem;
    letter-spacing: 0.075em;
  }

  .footer-symbol {
    position: static;
    display: block;
    width: 56px;
    margin: 28px 28px 0 auto;
  }
}

@media (max-height: 680px) and (min-width: 761px) {
  .page {
    min-height: 100vh;
    min-height: 100svh;
  }

  .project-stage {
    min-height: 390px;
  }
}

@media (max-height: 960px) and (min-width: 761px) {
  .page {
    padding-top: var(--header-h);
    padding-bottom: 40px;
  }

  .why-inner {
    min-height: calc(100svh - var(--header-h) - 40px);
  }

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

  h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  }

  h3 {
    font-size: clamp(0.98rem, 1.25vw, 1.18rem);
  }

  .lead-copy {
    font-size: 0.94rem;
  }

  .backing-grid,
  .step-grid {
    margin-top: 16px;
  }

  .sector-hierarchy {
    margin-top: 24px;
  }

  .sector-featured {
    margin-bottom: 48px;
  }

  .sector-featured .sector-media {
    margin-bottom: 18px;
  }

  .sector-featured-body,
  .sector-support-grid {
    gap: 24px;
  }

  .split-list,
  .sector-list,
  .backing-grid ul,
  .step-grid ul {
    gap: 4px 14px;
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .bim-shell {
    gap: 28px;
  }

  .bim-visual {
    min-height: 300px;
  }

  .bim-layers li {
    min-height: 76px;
    padding: 12px;
  }

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

  .bim-layers p,
  .project-copy p {
    font-size: 0.88rem;
  }

  .section-close {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .backing-grid article {
    min-height: 132px;
    padding: 13px 16px;
  }

  .feature-strip {
    grid-template-columns: 0.18fr 0.18fr 1fr;
    gap: 18px;
    margin-top: 14px;
    padding: 14px 18px;
  }

  .feature-strip span,
  .metric-strip strong {
    font-size: clamp(1.55rem, 3vw, 2.45rem);
  }

  .metric-strip {
    margin-top: 12px;
  }
}

@media (min-width: 761px) {
  .delivery .lead-copy {
    width: 50%;
    max-width: none;
    padding-right: 20px;
    font-size: clamp(1.1rem, 1.42vw, 1.28rem);
  }

  .step-grid {
    grid-template-rows: auto auto auto 1fr;
    align-items: stretch;
  }

  .step-grid > li {
    display: grid;
    min-height: 300px;
    grid-row: 1 / -1;
    grid-template-rows: subgrid;
    align-content: start;
  }

  .step-grid > li:last-child {
    border-right: 1px solid var(--line-light);
  }

  .step-grid ul {
    align-self: start;
    margin-top: 0;
    padding-top: clamp(24px, 3vh, 32px);
  }

  .backing .page-inner {
    --backing-block-gap: clamp(16px, 2.3vh, 22px);

    display: grid;
    min-height: calc(100svh - var(--header-h) - clamp(28px, 5vh, 56px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-content: center;
  }

  .backing .page-inner > .mono-label,
  .backing .page-inner > h2,
  .backing-grid,
  .feature-strip,
  .metric-strip {
    grid-column: 1 / -1;
  }

  .backing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
    margin-top: clamp(20px, 3vh, 32px);
    align-items: stretch;
  }

  .backing-grid article {
    display: grid;
    height: 100%;
    min-height: 172px;
    grid-row: 1 / -1;
    grid-template-rows: subgrid;
    align-content: start;
    border-bottom: 0;
    padding: 20px 18px;
  }

  .backing-grid article:last-child {
    border-right: 0;
  }

  .backing-grid h3 {
    margin-bottom: 10px;
  }

  .backing-grid ul {
    align-self: start;
    margin-top: 0;
    font-size: var(--backing-body-size);
    line-height: 1.35;
  }

  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: var(--backing-block-gap);
    padding: 0;
    align-items: stretch;
  }

  .feature-strip > div,
  .feature-strip > p {
    display: flex;
    min-width: 0;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 20px 18px;
  }

  .feature-strip > div + div,
  .feature-strip > p {
    border-left: 1px solid var(--line-light);
  }

  .feature-strip > p {
    grid-column: auto;
    align-items: flex-start;
    text-align: left;
    white-space: nowrap;
  }

  .feature-strip span {
    white-space: nowrap;
  }

  .metric-strip {
    gap: 0;
    margin-top: var(--backing-block-gap);
    border-top: 1px solid var(--line-light);
    padding-block: 20px;
  }

  .metric-strip > span {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 18px;
    text-align: center;
  }

  .metric-strip > span:first-child {
    padding-left: 18px;
  }

  .metric-strip > span + span {
    border-left: 1px solid var(--line-light);
  }
}

@media (min-width: 1181px) {
  .backing-grid article:first-child li:nth-child(2),
  .backing-grid article:nth-child(2) li:last-child {
    white-space: nowrap;
  }
}

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

  [data-section-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sector-featured,
  .sector-support-grid article {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-card::before,
  .why-number,
  .why-card h3,
  .why-detail {
    transition: none;
  }

  .why.is-visible .why-card {
    opacity: 1;
  }

  .scroll-cue span {
    animation: none;
  }

  .hero.hero-copy-pending [data-hero-content] .mono-label,
  .hero.hero-copy-pending .hero-title-motion,
  .hero.hero-copy-pending .hero-copy,
  .hero.hero-copy-pending .hero-actions .button {
    transform: none;
  }

  .hero.is-copy-visible [data-hero-content] .mono-label,
  .hero.is-copy-visible .hero-title-motion,
  .hero.is-copy-visible .hero-copy,
  .hero.is-copy-visible .hero-actions .button {
    animation: heroFadeIn 200ms ease both;
    letter-spacing: inherit;
    transform: none;
  }

  .hero.is-copy-visible .hero-copy-block::before {
    animation: heroFadeIn 200ms ease both;
    transform: none;
  }
}

/* Proveedores: recorrido informativo y alta independiente */
.supplier-page {
  min-height: auto;
  justify-content: flex-start;
  padding: var(--header-h) 0 0;
}

.supplier-hero,
.supplier-hero-media {
  width: 100%;
}

.supplier-hero-media {
  height: clamp(430px, 62svh, 680px);
  margin: 0;
  overflow: hidden;
  background: #e5e7eb;
}

.supplier-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.supplier-hero-copy,
.supplier-readiness {
  width: calc(100% - (var(--page-pad) * 2));
}

.supplier-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: end;
  gap: clamp(42px, 7vw, 108px);
  border-bottom: 1px solid var(--line-light);
  padding: clamp(64px, 8vw, 112px) 0;
}

.supplier-hero-copy h1 {
  max-width: none;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(3.8rem, 7.4vw, 8rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.supplier-hero-welcome {
  align-self: end;
}

.supplier-hero-welcome p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.62;
}

.supplier-readiness {
  padding: clamp(82px, 10vw, 144px) 0 clamp(92px, 12vw, 168px);
}

.supplier-readiness-heading {
  max-width: 900px;
}

.supplier-readiness-heading h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.7rem, 5.2vw, 5.6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.supplier-accordions {
  margin-top: clamp(54px, 7vw, 96px);
  border-bottom: 1px solid var(--line-light);
}

.supplier-accordion {
  border-top: 1px solid var(--line-light);
}

.supplier-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 3.4vw, 48px) 0;
  color: var(--navy-deep);
  cursor: pointer;
  font-size: clamp(1.55rem, 2.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  list-style: none;
}

.supplier-accordion summary::-webkit-details-marker {
  display: none;
}

.supplier-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brand-orange);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1;
}

.supplier-accordion[open] summary::after {
  content: "−";
}

.supplier-accordion-label {
  display: block;
}

.supplier-accordion-label .draft-marker {
  margin-bottom: 6px;
}

.supplier-accordion-content {
  width: min(100%, 760px);
  margin-left: auto;
  padding: 0 0 clamp(34px, 4vw, 56px);
}

.supplier-accordion-content ul {
  display: grid;
  gap: 10px;
  max-width: 65ch;
  margin: 0;
  padding-left: 1.25em;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.55;
}

.supplier-cta {
  display: grid;
  justify-items: end;
  gap: 6px;
  padding-top: clamp(44px, 6vw, 80px);
}

.supplier-cta .draft-marker {
  margin-bottom: 0;
}

.supplier-cta-button {
  min-height: 64px;
  padding-inline: clamp(24px, 3vw, 40px);
}

.supplier-apply-page .career-file-input {
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}

@media (max-width: 900px) {
  .supplier-hero-media {
    height: clamp(380px, 56svh, 540px);
  }

  .supplier-hero-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .supplier-hero-welcome p {
    max-width: 62ch;
  }

  .supplier-accordion-content {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .supplier-hero-media {
    height: clamp(330px, 50svh, 450px);
  }

  .supplier-hero-media img {
    object-position: center;
  }

  .supplier-hero-copy {
    gap: 24px;
    padding: 48px 0 56px;
  }

  .supplier-hero-copy h1 {
    font-size: clamp(3.15rem, 16vw, 4.8rem);
  }

  .supplier-readiness {
    padding: 68px 0 88px;
  }

  .supplier-readiness-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .supplier-accordions {
    margin-top: 46px;
  }

  .supplier-accordion summary {
    align-items: flex-start;
    padding: 27px 0;
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .supplier-accordion-content {
    padding-bottom: 36px;
  }

  .supplier-cta {
    justify-items: stretch;
    padding-top: 48px;
  }

  .supplier-cta-button {
    width: 100%;
    text-align: center;
  }
}

/* Home section names promoted from decorative labels to semantic headings. */
#scroller .home-section-title {
  display: block;
  max-width: 100%;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(3.25rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

#scroller .page-navy .home-section-title {
  color: var(--white);
}

#scroller .home-section-support-title {
  display: block;
  max-width: 65ch;
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

#scroller .page-navy .home-section-support-title {
  color: var(--white-soft);
}

@media (min-width: 761px) {
  .backing .page-inner > .home-section-support-title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  #scroller .home-section-title {
    font-size: clamp(1.6rem, 6.5vw, 3rem);
    line-height: 0.98;
  }

  #scroller .home-section-support-title {
    font-size: 1.05rem;
    line-height: 1.4;
  }
}

/* Construcción Digital: teaser espejado y página dedicada */
.digital-teaser-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--navy-deep);
}

.career-teaser-copy .digital-teaser-eyebrow {
  max-width: none;
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: var(--accent);
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.14em;
}

@media (min-width: 1181px) {
  .digital-teaser-card {
    grid-column: 1;
    grid-row: 1;
  }

  .digital-teaser-media {
    grid-column: 2;
    grid-row: 1;
  }
}

.digital-construction-content {
  min-height: auto;
  justify-content: flex-start;
  padding-top: calc(var(--header-h) + clamp(44px, 7vh, 84px));
  padding-bottom: 0;
  background: var(--white);
}

.digital-construction-hero-media {
  width: 100%;
  height: clamp(320px, 48svh, 560px);
  margin: 0 0 clamp(32px, 4vw, 56px);
  overflow: hidden;
  background: #e5e7eb;
}

.digital-construction-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.digital-construction-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(44px, 8vw, 124px);
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  padding: 0 0 clamp(84px, 10vw, 132px);
}

.digital-construction-hero .draft-marker,
.digital-process-heading .draft-marker,
.digital-construction-closing .draft-marker {
  margin-bottom: 14px;
}

.digital-construction-hero .mono-label,
.digital-process-heading .mono-label {
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.digital-construction-hero h1 {
  max-width: 9ch;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(4rem, 7.2vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.digital-hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.digital-hero-slide {
  animation:
    digitalHeroSlideIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both,
    digitalHeroFadeIn 350ms ease-out both;
  animation-delay: var(--digital-slide-delay, 0ms);
}

.digital-hero-lead-in {
  animation: digitalHeroFadeIn 350ms ease-out 420ms both;
}

@keyframes digitalHeroSlideIn {
  from {
    transform: translateX(var(--digital-slide-origin, -70%));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes digitalHeroFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.digital-construction-lead {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.62;
}

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

.digital-process-step {
  display: grid;
  grid-template-columns: minmax(110px, 0.22fr) minmax(300px, 0.78fr) minmax(340px, 1fr);
  gap: clamp(34px, 5.5vw, 82px);
  align-items: start;
  border-bottom: 1px solid var(--line-light);
  padding: clamp(78px, 10vw, 148px) 0;
}

.digital-process-number {
  color: rgba(48, 87, 163, 0.22);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: clamp(4.6rem, 8vw, 8.3rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.digital-process-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.4rem, 4.2vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.digital-process-step > p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.62;
}

.digital-construction-closing {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: end;
  padding: clamp(104px, 14vw, 190px) 0;
}

.digital-construction-closing h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(3rem, 5.7vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.digital-construction-closing > p {
  max-width: 34ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

@media (max-width: 900px) {
  .digital-construction-hero-media {
    height: clamp(300px, 44svh, 460px);
    margin-bottom: clamp(32px, 4vw, 48px);
  }

  .digital-construction-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: end;
  }

  .digital-construction-hero h1 {
    max-width: 11ch;
  }

  .digital-process-step {
    grid-template-columns: minmax(88px, 0.22fr) minmax(0, 1fr);
  }

  .digital-process-step > p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .career-teaser-copy .digital-teaser-eyebrow {
    margin-bottom: 12px;
    font-size: 0.64rem;
  }

  .digital-construction-content {
    padding-top: calc(var(--header-h) + 34px);
  }

  .digital-construction-hero-media {
    height: clamp(260px, 40svh, 360px);
    margin-bottom: 32px;
  }

  .digital-construction-hero {
    min-height: auto;
    gap: 30px;
    padding: 0 0 72px;
  }

  .digital-construction-hero h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .digital-construction-lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .digital-process-step {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 72px 0;
  }

  .digital-process-number {
    font-size: clamp(4rem, 23vw, 6rem);
  }

  .digital-process-heading h2 {
    font-size: clamp(2.35rem, 11.2vw, 3.7rem);
  }

  .digital-process-step > p {
    grid-column: 1;
    font-size: 1rem;
  }

  .digital-construction-closing {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 96px 0 112px;
  }

  .digital-construction-closing h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .digital-construction-closing > p {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }
}

@media (min-width: 901px) and (max-height: 880px) {
  .digital-construction-hero-media {
    height: clamp(300px, 44svh, 440px);
    margin-bottom: clamp(28px, 3.5vw, 48px);
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .digital-construction-hero-media {
    height: clamp(280px, 40svh, 400px);
    margin-bottom: clamp(24px, 3vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .digital-hero-slide,
  .digital-hero-lead-in {
    transform: none;
    animation: digitalHeroFadeIn 200ms linear both;
    animation-delay: 0ms;
  }
}

@media (max-width: 900px) {
  .project-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-media {
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 760px) {
  .project-carousel-toolbar {
    grid-template-columns: 1fr;
  }

  .project-tabs {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .project-tabs button {
    width: 42px;
    flex: 0 0 42px;
  }

  .project-tabs[hidden],
  .project-stage[hidden] {
    display: none;
  }

  .project-view-toggle {
    width: 100%;
  }

  .project-stage {
    min-height: 0;
    padding-bottom: 58px;
  }

  .project-slide {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
  }

  .project-media {
    aspect-ratio: 4 / 3;
  }

  .project-copy h3 {
    font-size: clamp(1.75rem, 8.5vw, 2.65rem);
  }

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

  .project-grid-card-title {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-slide,
  .project-slide.is-active,
  .project-tabs button,
  .project-view-toggle,
  .project-stage-controls button,
  .project-grid-card {
    transform: none;
    transition: none;
  }
}

/* Home: secuencias editoriales reutilizan el motor probado de Carrera. */
.hero-title-emphasis {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.22em;
}

.hero-emphasis-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.58em);
}

.hero.is-copy-visible .hero-emphasis-word {
  animation: heroEmphasisWordIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(930ms + (var(--word-index) * 90ms));
}

@media (min-width: 761px) {
  .hero-title-emphasis-line {
    overflow: visible;
  }

  .hero-title-emphasis {
    width: max-content;
    flex-wrap: nowrap;
  }
}

@keyframes heroEmphasisWordIn {
  from {
    opacity: 0;
    transform: translateY(0.58em);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-editorial-page {
  display: block;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: clip;
  scroll-margin-top: 0;
}

.home-editorial-page > .page-inner {
  max-width: none;
}

.editorial-shell {
  display: grid;
  width: 100%;
  max-width: var(--page-max);
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.editorial-steps {
  min-width: 0;
}

.editorial-index {
  --editorial-index-progress: 0;

  position: sticky;
  z-index: 3;
  top: calc(var(--header-h) + clamp(28px, 5vh, 58px));
  display: flex;
  height: min(62svh, 540px);
  align-self: start;
  flex-direction: column;
  justify-content: space-between;
  padding: 7px 18px 7px 0;
  color: rgba(13, 24, 45, 0.34);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.editorial-index::before,
.editorial-index::after {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 36px;
  width: 1px;
  content: "";
  background: var(--line-light);
}

.editorial-index::after {
  background: var(--accent);
  transform: scaleY(var(--editorial-index-progress));
  transform-origin: top center;
  transition: transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-index span {
  position: relative;
  z-index: 1;
  transition: color 260ms ease-out;
}

.editorial-index .is-current {
  color: var(--accent);
}

.editorial-step {
  display: grid;
  min-height: calc(100svh - var(--header-h));
  align-content: center;
  padding: clamp(72px, 10vh, 128px) 0;
  border-top: 1px solid var(--line-light);
}

.editorial-steps > .editorial-step:last-child {
  border-bottom: 1px solid var(--line-light);
}

.editorial-opening {
  display: grid;
  width: calc(100% - (var(--page-pad) * 2));
  min-height: calc(100svh - var(--header-h));
  max-width: var(--page-max);
  align-content: center;
  margin: 0 auto;
  padding: clamp(72px, 10vh, 128px) 0;
}

.editorial-closing {
  width: calc(100% - (var(--page-pad) * 2));
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(54px, 8vh, 92px) 0;
}

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

.editorial-sequence.is-motion-ready [data-editorial-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 460ms ease-out,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-sequence.is-motion-ready [data-editorial-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.why-compact {
  display: block;
  min-height: 0;
  padding: clamp(92px, 13vw, 180px) var(--page-pad);
  overflow: visible;
  scroll-margin-top: calc(var(--header-h) * -1);
}

.why-compact-inner {
  max-width: none;
}

.why-compact-shell {
  position: relative;
}

.why-compact .why-compact-index {
  position: sticky;
  top: calc(var(--header-h) + clamp(28px, 5vh, 58px));
  height: min(58svh, 480px);
  align-self: start;
  justify-content: space-between;
}

.why-compact-content {
  min-width: 0;
  grid-column: 2;
}

.why-compact-heading {
  grid-column: auto;
}

.why-compact-heading h2 {
  font-size: clamp(3.25rem, 6vw, 5.5rem);
}

.why-compact-list {
  grid-column: auto;
}

.why-compact-lead {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-deep);
  font-weight: 600;
}

.why-compact-closing {
  max-width: 65ch;
  margin-top: clamp(46px, 6vw, 82px);
  padding-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid var(--line-light);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.6;
}

.why-compact [data-editorial-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.why-compact.is-motion-ready [data-editorial-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 460ms ease-out,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-compact.is-motion-ready [data-editorial-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.why-compact.is-motion-ready .career-reveal-row::after {
  transform: scaleX(0);
  transition: transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-compact.is-motion-ready .career-reveal-row.is-revealed::after {
  transform: scaleX(1);
}

.why-compact.is-motion-reduced [data-editorial-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.why-compact.is-motion-reduced .career-reveal-row::after,
.why-compact.is-motion-reduced .career-editorial-index::after,
.why-compact.is-motion-reduced .career-editorial-index span,
.why-compact.is-motion-reduced .career-community-topic::before {
  transition: none;
}

.sectors-compact {
  display: block;
  min-height: 0;
  padding: clamp(92px, 13vw, 180px) var(--page-pad);
  overflow: visible;
  scroll-margin-top: calc(var(--header-h) * -1);
}

.sectors-compact-inner {
  max-width: none;
}

.sectors-compact-shell {
  position: relative;
}

.sectors-compact .sectors-compact-index {
  position: sticky;
  top: calc(var(--header-h) + clamp(28px, 5vh, 58px));
  height: min(58svh, 480px);
  align-self: start;
  justify-content: space-between;
}

.sectors-compact-content {
  min-width: 0;
  grid-column: 2;
}

.sectors-compact-heading {
  grid-column: auto;
}

.sectors-compact .sectors-compact-heading h2 {
  max-width: 13ch;
  font-size: clamp(3.25rem, 6vw, 5.5rem);
}

.sectors-compact-heading .lead-copy {
  max-width: 58ch;
  margin-top: clamp(24px, 3.5vw, 46px);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
}

.sectors-compact-list {
  grid-column: auto;
}

.sectors-compact-detail {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.sectors-compact-detail > p:not(.sector-proof) {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.sectors-compact-row .sector-list {
  margin: 0;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.5;
}

.sectors-compact-row .sector-proof {
  max-width: 62ch;
  margin: 4px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.sectors-compact [data-editorial-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.sectors-compact.is-motion-ready [data-editorial-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 460ms ease-out,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sectors-compact.is-motion-ready [data-editorial-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.sectors-compact.is-motion-ready .career-reveal-row::after {
  transform: scaleX(0);
  transition: transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sectors-compact.is-motion-ready .career-reveal-row.is-revealed::after {
  transform: scaleX(1);
}

.sectors-compact.is-motion-reduced [data-editorial-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.sectors-compact.is-motion-reduced .career-reveal-row::after,
.sectors-compact.is-motion-reduced .career-editorial-index::after,
.sectors-compact.is-motion-reduced .career-editorial-index span,
.sectors-compact.is-motion-reduced .career-community-topic::before {
  transition: none;
}

.backing-compact {
  display: block;
  min-height: 0;
  padding: clamp(92px, 13vw, 180px) var(--page-pad);
  overflow: visible;
  scroll-margin-top: calc(var(--header-h) * -1);
}

.backing-compact .backing-compact-shell {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(20px, 3vh, 32px);
}

.backing-compact .backing-compact-index {
  position: sticky;
  top: calc(var(--header-h) + clamp(28px, 5vh, 58px));
  height: min(58svh, 480px);
  align-self: start;
  justify-content: space-between;
}

.backing-compact-content {
  min-width: 0;
  grid-column: 2;
}

.backing-compact-list {
  grid-column: auto;
}

.delivery-compact {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
  scroll-margin-top: calc(var(--header-h) * -1);
}

.delivery-compact-inner {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.delivery-compact .delivery-compact-shell {
  position: relative;
  width: calc(100% - (var(--page-pad) * 2));
  max-width: var(--page-max);
  margin: 0 auto;
  padding-bottom: clamp(92px, 13vw, 180px);
}

.delivery-compact .delivery-compact-index {
  position: sticky;
  top: calc(var(--header-h) + clamp(28px, 5vh, 58px));
  height: min(58svh, 480px);
  align-self: start;
  justify-content: space-between;
}

.delivery-compact-content {
  min-width: 0;
  grid-column: 2;
}

.delivery-compact-list {
  grid-column: auto;
}

.delivery-compact-detail {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.delivery-compact-detail > p {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.delivery-compact-detail > ul {
  max-width: 62ch;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.5;
}

.delivery-compact [data-editorial-reveal],
.backing-compact [data-editorial-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.delivery-compact.is-motion-ready [data-editorial-reveal],
.backing-compact.is-motion-ready [data-editorial-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 460ms ease-out,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.delivery-compact.is-motion-ready [data-editorial-reveal].is-revealed,
.backing-compact.is-motion-ready [data-editorial-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delivery-compact.is-motion-ready .career-reveal-row::after,
.backing-compact.is-motion-ready .career-reveal-row::after {
  transform: scaleX(0);
  transition: transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.delivery-compact.is-motion-ready .career-reveal-row.is-revealed::after,
.backing-compact.is-motion-ready .career-reveal-row.is-revealed::after {
  transform: scaleX(1);
}

.delivery-compact.is-motion-reduced [data-editorial-reveal],
.backing-compact.is-motion-reduced [data-editorial-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.delivery-compact.is-motion-reduced .career-reveal-row::after,
.delivery-compact.is-motion-reduced .career-editorial-index::after,
.delivery-compact.is-motion-reduced .career-editorial-index span,
.delivery-compact.is-motion-reduced .career-community-topic::before,
.backing-compact.is-motion-reduced .career-reveal-row::after,
.backing-compact.is-motion-reduced .career-editorial-index::after,
.backing-compact.is-motion-reduced .career-editorial-index span,
.backing-compact.is-motion-reduced .career-community-topic::before {
  transition: none;
}

@media (min-width: 761px) {
  .backing-compact .page-inner {
    min-height: 0;
    align-content: start;
  }
}

.sector-declaration-step {
  max-width: 1080px;
  align-content: center;
}

.sector-declaration-step h2 {
  max-width: 13ch;
  color: var(--navy-deep);
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.sector-declaration-step .lead-copy {
  max-width: 58ch;
  margin-top: clamp(30px, 5vh, 58px);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
}

.sector-editorial-step {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}

.sector-editorial-step .sector-media {
  width: 100%;
  max-height: 62svh;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sector-editorial-body {
  min-width: 0;
}

.sector-editorial-body h3 {
  margin-bottom: 22px;
  color: var(--navy-deep);
  font-size: clamp(2.35rem, 4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.sector-editorial-body > p:not(.sector-proof) {
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.58;
}

.sector-editorial-featured {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
}

.sector-editorial-featured .sector-editorial-body h3 {
  font-size: clamp(3rem, 5.35vw, 6.2rem);
}

.sector-editorial-step .sector-list {
  margin-top: 28px;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.45;
}

.sector-editorial-step .sector-list-featured {
  grid-template-columns: 1fr;
}

.sector-editorial-step .sector-proof {
  margin-top: 30px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.editorial-sequence-dark .editorial-index {
  color: rgba(255, 255, 255, 0.34);
}

.editorial-sequence-dark .editorial-index::before {
  background: var(--line-dark);
}

.editorial-sequence-dark .editorial-index::after {
  background: var(--white);
}

.editorial-sequence-dark .editorial-index .is-current {
  color: var(--white);
}

.project-editorial-opening .section-heading {
  margin: 0;
}

.project-editorial-opening .section-heading h2 {
  max-width: 12ch;
  font-size: clamp(3.35rem, 6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.project-editorial-opening .section-heading p {
  max-width: 54ch;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.58;
}

.project-editorial-step.project-slide {
  position: relative;
  inset: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.project-editorial-step.project-slide .project-media {
  max-height: 64svh;
  aspect-ratio: 4 / 3;
}

.project-editorial-step .project-copy {
  align-self: stretch;
  justify-content: center;
}

.project-editorial-step .project-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.project-editorial-step .project-copy > p {
  max-width: 56ch;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.55;
}

.project-editorial-step .stat-bar {
  margin-top: clamp(34px, 6vh, 64px);
}

.project-editorial-step .stat-bar strong {
  min-height: 1em;
}

.delivery-editorial-opening h2 {
  max-width: 15ch;
  color: var(--navy-deep);
  font-size: clamp(3.35rem, 6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.delivery .delivery-editorial-opening .lead-copy {
  width: auto;
  max-width: 62ch;
  margin-top: clamp(28px, 5vh, 52px);
  padding-right: 0;
  font-size: clamp(1.05rem, 1.34vw, 1.25rem);
}

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

.delivery-editorial-step {
  grid-template-columns: minmax(140px, 0.28fr) minmax(280px, 0.76fr) minmax(280px, 0.66fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.delivery-editorial-number {
  color: rgba(48, 87, 163, 0.2);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: clamp(4.8rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.delivery-editorial-copy strong {
  display: block;
  margin-bottom: 24px;
  color: var(--navy-deep);
  font-size: clamp(2.25rem, 4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.delivery-editorial-copy p,
.delivery-editorial-step ul {
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.14vw, 1.08rem);
  line-height: 1.58;
}

.delivery-editorial-step ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .why-compact,
  .backing-compact {
    padding-block: clamp(76px, 11vw, 112px);
  }

  .sectors-compact {
    padding-block: clamp(76px, 11vw, 112px);
  }

  .why-compact .why-compact-index {
    position: relative;
    top: auto;
    height: auto;
    justify-content: flex-start;
  }

  .sectors-compact .sectors-compact-index {
    position: relative;
    top: auto;
    height: auto;
    justify-content: flex-start;
  }

  .delivery-compact .delivery-compact-index {
    position: relative;
    top: auto;
    height: auto;
    justify-content: flex-start;
  }

  .backing-compact .backing-compact-index {
    position: relative;
    top: auto;
    height: auto;
    justify-content: flex-start;
  }

  .delivery-compact-shell {
    padding-bottom: clamp(76px, 11vw, 112px);
  }

  .why-compact-content {
    grid-column: auto;
  }

  .sectors-compact-content {
    grid-column: auto;
  }

  .delivery-compact-content {
    grid-column: auto;
  }

  .backing-compact-content {
    grid-column: auto;
  }

  .editorial-shell {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: clamp(16px, 4vw, 30px);
    padding-inline: clamp(16px, 4vw, 28px);
  }

  .editorial-index {
    top: calc(var(--header-h) + 20px);
    height: min(54svh, 420px);
    padding-right: 8px;
    font-size: 0.61rem;
  }

  .editorial-index::before,
  .editorial-index::after {
    left: 27px;
  }

  .editorial-step {
    min-height: calc(100svh - var(--header-h));
    padding-block: clamp(58px, 9svh, 92px);
  }

  .why-editorial-step,
  .sector-editorial-step,
  .sector-editorial-featured,
  .project-editorial-step.project-slide,
  .delivery-editorial-step {
    grid-template-columns: 1fr;
  }

  .why-editorial-step {
    gap: 34px;
  }

  .sector-editorial-step,
  .project-editorial-step.project-slide {
    gap: 30px;
  }

  .sector-editorial-step .sector-media,
  .project-editorial-step.project-slide .project-media {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .delivery-editorial-step {
    gap: 26px;
  }

  .delivery-editorial-number {
    margin-bottom: 4px;
  }
}

@media (max-width: 760px) {
  .why-compact,
  .backing-compact {
    padding-block: 76px;
  }

  .sectors-compact {
    padding-block: 76px;
  }

  .sectors-compact-heading .lead-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .sectors-compact-detail {
    gap: 16px;
  }

  .delivery-compact-detail {
    gap: 16px;
  }

  .delivery-compact-detail > ul {
    font-size: 1rem;
  }

  .backing-compact .backing-compact-shell {
    margin-top: 16px;
  }

  .delivery-compact-shell {
    padding-bottom: 76px;
  }

  .sectors-compact-row .sector-list {
    grid-template-columns: 1fr;
    font-size: 1rem;
  }

  .why-compact-closing {
    margin-top: 42px;
  }

  .editorial-opening {
    width: calc(100% - (var(--page-pad) * 2));
    min-height: auto;
    padding-block: clamp(72px, 12svh, 108px);
  }

  .editorial-closing {
    width: calc(100% - (var(--page-pad) * 2));
  }

  .why-editorial-number,
  .delivery-editorial-number {
    font-size: clamp(4rem, 24vw, 6.2rem);
  }

  .why-editorial-heading h2,
  .sector-declaration-step h2,
  .sector-editorial-featured .sector-editorial-body h3,
  .project-editorial-opening .section-heading h2,
  .delivery-editorial-opening h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .sector-editorial-body h3,
  .project-editorial-step .project-copy h3,
  .delivery-editorial-copy strong {
    font-size: clamp(2rem, 9.5vw, 3.3rem);
  }

  .sector-editorial-step .sector-media,
  .project-editorial-step.project-slide .project-media {
    aspect-ratio: 4 / 3;
  }

  .project-editorial-opening .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-editorial-step .stat-bar {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-emphasis-word,
  .hero.is-copy-visible .hero-emphasis-word {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .editorial-sequence [data-editorial-reveal],
  .editorial-sequence.is-motion-ready [data-editorial-reveal],
  .editorial-sequence.is-motion-ready [data-editorial-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .editorial-index::after,
  .editorial-index span {
    transition: none;
  }
}

/* Navegación multipágina y plantillas interiores. */
.nav-divider {
  width: 1px;
  height: 18px;
  flex: 0 0 1px;
  background: currentColor;
  opacity: 0.28;
}

.main-nav .nav-page-link {
  font-weight: 600;
}

.main-nav a.is-current-page {
  color: var(--accent);
  box-shadow: inset 0 -2px currentColor;
  opacity: 1;
}

.standalone-page .site-header {
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.97);
}

.standalone-page .brand-logo-light {
  display: none;
}

.standalone-page .brand-logo-dark {
  display: block;
}

.standalone-content-page {
  min-height: calc(100svh - 150px);
  justify-content: flex-start;
  padding-top: calc(var(--header-h) + clamp(42px, 7vh, 82px));
  padding-bottom: clamp(64px, 10vh, 112px);
}

.standalone-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 88px);
  border-bottom: 1px solid var(--line-light);
  padding-bottom: clamp(38px, 7vh, 76px);
}

.standalone-heading > .mono-label,
.standalone-heading > h1 {
  grid-column: 1;
}

.standalone-heading > h1 {
  margin-bottom: 0;
}

.standalone-belief,
.standalone-intro {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.18vw, 1.14rem);
}

.standalone-belief p:last-child,
.standalone-intro {
  margin-bottom: 0;
}

.standalone-heading-compact > .mono-label {
  grid-row: 1;
}

.standalone-heading-compact > h1 {
  grid-row: 2;
}

.standalone-heading-compact .standalone-intro {
  grid-column: 2;
  grid-row: 2;
}

.draft-marker {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.standalone-statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-light);
}

.standalone-statement-grid article {
  min-width: 0;
  padding: clamp(38px, 6vw, 72px) clamp(24px, 4vw, 54px);
}

.standalone-statement-grid article:first-child {
  border-right: 1px solid var(--line-light);
  padding-left: 0;
}

.standalone-statement-grid article:last-child {
  padding-right: 0;
}

.standalone-statement-grid h2 {
  max-width: 65ch;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1.18;
}

.standalone-values {
  padding-top: clamp(48px, 8vh, 88px);
}

.standalone-values > h2 {
  margin-bottom: clamp(28px, 5vh, 48px);
}

.standalone-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 0;
  list-style: none;
}

.standalone-card-grid > li {
  min-width: 0;
  border-left: 1px solid var(--line-light);
  padding: clamp(26px, 3.4vw, 44px) clamp(18px, 2.5vw, 32px);
}

.standalone-card-grid > li:first-child {
  border-left: 0;
}

.standalone-card-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.standalone-card-grid p,
.standalone-provider-copy p {
  max-width: 65ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.standalone-draft-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(46px, 9vh, 92px);
}

.standalone-draft-grid h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.9rem);
}

.standalone-provider-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(480px, 1.3fr);
  gap: clamp(36px, 7vw, 92px);
  margin-top: clamp(46px, 8vh, 86px);
  align-items: start;
}

.standalone-provider-copy article {
  border-top: 1px solid var(--line-light);
  padding: 28px 0 40px;
}

.contact-form.standalone-form {
  border: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 28px 0;
  background: transparent;
}

.contact-form.standalone-form label {
  color: var(--navy-deep);
}

.contact-form.standalone-form input,
.contact-form.standalone-form select,
.contact-form.standalone-form textarea {
  border-color: rgba(13, 24, 45, 0.22);
  color: var(--navy-deep);
  background: var(--white);
}

.contact-form.standalone-form input[type="file"] {
  padding: 10px;
}

/* Carrera: narrativa editorial sobre los componentes existentes. */
.career-page {
  --backing-primary: var(--white);
  --backing-secondary: var(--white-soft);
  --backing-figure-size: clamp(2rem, 3.4vw, 3.25rem);
  --backing-label-size: 0.72rem;

  min-height: auto;
  justify-content: flex-start;
  padding-top: var(--header-h);
  padding-bottom: 0;
  color: var(--white);
  background: var(--metal-blue-a);
  background-blend-mode: screen;
  box-shadow: var(--metal-blue-shadow);
}

.career-inner {
  display: grid;
  gap: 0;
}

.career-page [data-section-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.career-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-h));
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line-dark);
  padding: 0;
}

.career-hero > .mono-label {
  position: absolute;
  top: clamp(26px, 4svh, 44px);
  left: 0;
}

.career-page .draft-marker {
  color: var(--white-soft);
}

.career-draft-marker {
  position: absolute;
  top: clamp(72px, 10svh, 104px);
  left: 0;
  margin: 0;
}

.career-statement {
  --career-hero-font-size: clamp(1.8rem, 9.6vw, 10rem);
  --career-line-step: 1.08em;
  align-self: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  font-size: var(--career-hero-font-size);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}

.career-choreo-stage {
  position: relative;
  display: block;
  width: 100%;
  height: calc(var(--career-line-step) * 2);
  overflow: hidden;
  transition: height 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.career-statement.has-three-lines .career-choreo-stage {
  height: calc(var(--career-line-step) * 3);
}

.career-line-text {
  font-size: var(--career-hero-font-size);
}

.career-choreo-item,
.career-choreo-row {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  line-height: 1;
  white-space: nowrap;
}

.career-choreo-item {
  visibility: hidden;
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 350ms ease-out,
    visibility 0s linear 420ms;
}

.career-choreo-item.is-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.career-choreo-item.is-visible.is-entry-seed {
  visibility: visible;
  opacity: 0.08;
  transition: none;
}

.career-choreo-intro-top.is-visible.is-entry-seed {
  transform: translateY(0.08em);
}

.career-choreo-exigen.is-visible.is-entry-seed {
  transform: translateY(calc(var(--career-line-step) + 0.08em));
}

.career-choreo-item.is-visible.is-scrambling {
  visibility: visible;
  opacity: 1;
  transition: none;
}

.career-choreo-intro-top {
  transform: translateY(0);
}

.career-choreo-exigen {
  transform: translateY(var(--career-line-step));
}

.career-choreo-exigen.is-top {
  transform: translateY(0);
}

.career-choreo-row {
  height: var(--career-line-step);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 350ms ease-out,
    visibility 0s linear 420ms;
}

.career-choreo-row-top {
  top: 0;
}

.career-choreo-row-bottom {
  top: var(--career-line-step);
}

.career-choreo-row-third {
  top: calc(var(--career-line-step) * 2);
}

.career-choreo-row.is-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.career-choreo-row.is-handoff-out {
  visibility: visible;
  opacity: 0.04;
  transition:
    opacity 350ms ease-out,
    visibility 0s linear 350ms;
}

.career-choreo-local {
  display: block;
  opacity: 0;
  line-height: 1;
  transform: translateY(100%);
  will-change: transform, opacity;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 350ms ease-out;
}

.career-choreo-row.is-fade-mode .career-choreo-local {
  transform: translateY(0);
}

.career-choreo-local.is-local-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-career-top-base],
[data-career-bottom-base] {
  display: inline-block;
  opacity: 1;
  transition: opacity 350ms ease-out;
}

[data-career-top-base].is-base-exiting,
[data-career-bottom-base].is-base-exiting {
  opacity: 0;
}

.career-choreo-suffix {
  display: inline-block;
  margin-left: 0.24em;
  opacity: 0;
  transform: translateX(70%);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 350ms ease-out;
  will-change: transform, opacity;
}

.career-choreo-suffix.is-suffix-visible {
  opacity: 1;
  transform: translateX(0);
}

.career-choreo-suffix.is-suffix-exiting {
  opacity: 0;
  transform: translateX(0);
}

.career-choreo-third-text {
  display: inline-block;
  opacity: 0;
  transform: translateX(70%);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 350ms ease-out;
  will-change: transform, opacity;
}

.career-choreo-third-text.is-third-visible {
  opacity: 1;
  transform: translateX(0);
}

.career-choreo-third-text.is-third-exiting {
  opacity: 0;
  transform: translateX(0);
}

.career-statement.is-resetting .career-choreo-item,
.career-statement.is-resetting .career-choreo-row,
.career-statement.is-resetting .career-choreo-local,
.career-statement.is-resetting [data-career-bottom-base],
.career-statement.is-resetting .career-choreo-suffix,
.career-statement.is-resetting .career-choreo-third-text,
.career-statement.is-resetting .career-choreo-stage {
  transition: none;
}

.career-scramble-char {
  position: relative;
  display: inline-block;
  opacity: 0;
}

.career-scramble-char::before {
  content: attr(data-final);
  visibility: hidden;
}

.career-scramble-glyph {
  position: absolute;
  inset: 0;
}

.career-scramble-char.is-active {
  opacity: 1;
}

.career-application {
  padding-top: clamp(64px, 10vh, 112px);
}

.career-section-heading {
  margin-bottom: clamp(30px, 5vh, 52px);
}

.career-section-heading h2 {
  max-width: 65ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 3.7vw, 4.2rem);
  line-height: 1.05;
}

.career-join-button {
  min-height: 64px;
  padding-inline: clamp(26px, 4vw, 52px);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.career-application {
  display: block;
}

.career-application-panel {
  width: min(100%, 980px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(44px, 6vw, 76px);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.career-application-heading {
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vh, 52px);
  text-align: center;
}

.career-application-note {
  max-width: 58ch;
  margin: 18px auto 0;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.5;
}

.career-form {
  display: grid;
  gap: clamp(26px, 4vh, 40px);
  width: min(100%, 760px);
  margin: 0;
  margin-inline: auto;
}

.career-dropzone {
  position: relative;
  display: flex;
  min-height: clamp(210px, 26vh, 270px);
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.38);
  padding: 32px;
  color: var(--white);
  background: rgba(13, 24, 45, 0.58);
  cursor: pointer;
  text-align: center;
  transition: border-color 240ms ease-out, background-color 240ms ease-out;
}

.career-dropzone:hover,
.career-dropzone:focus-within {
  border-color: var(--white);
  background: var(--blue);
}

.career-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.career-dropzone-icon {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.career-dropzone strong {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.career-dropzone > span {
  color: var(--white-soft);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.career-form-fields label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.career-form-fields input,
.career-form-fields select,
.career-form-fields textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  padding: 13px 12px;
  color: var(--white);
  background: rgba(2, 16, 48, 0.56);
}

.career-form-fields textarea {
  resize: vertical;
}

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

.career-submit-row {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.career-submit-row .button {
  width: min(100%, 420px);
}

/* Carrera: secuencia editorial clara posterior al perfil. */
.career-editorial {
  width: calc(100% + (var(--page-pad) * 2));
  margin-top: 0;
  margin-left: calc(var(--page-pad) * -1);
  color: var(--navy-deep);
  background: var(--gray);
}

.career-page:not(.career-apply-page) {
  padding-bottom: 0;
}

.career-page:not(.career-apply-page) .career-inner {
  max-width: none;
}

.career-page:not(.career-apply-page) .career-inner > :not(.career-editorial) {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}

@media (min-width: 761px) {
  .career-page:not(.career-apply-page) .career-inner > .career-hero {
    width: calc(100vw - clamp(40px, 4vw, 76px));
    max-width: none;
    margin-left: calc(50% - 50vw + clamp(20px, 2vw, 38px));
  }
}

.career-editorial .draft-marker {
  color: var(--accent);
}

.career-editorial-section,
.career-join {
  padding: clamp(92px, 13vw, 180px) var(--page-pad);
}

.career-editorial-section + .career-editorial-section,
.career-join {
  border-top: 1px solid var(--line-light);
}

.career-editorial-shell,
.career-join-layout {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.career-editorial-shell {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
}

.career-editorial-index {
  --career-index-progress: 0;

  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding: 8px 18px 4px 0;
  color: rgba(13, 24, 45, 0.34);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.career-editorial-index::before,
.career-editorial-index::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 4px;
  left: 34px;
  width: 1px;
  background: var(--line-light);
}

.career-editorial-index::after {
  background: var(--accent);
  transform: scaleY(var(--career-index-progress));
  transform-origin: top center;
  transition: transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.career-editorial-index span {
  position: relative;
  z-index: 1;
  transition: color 260ms ease-out;
}

.career-editorial-index .is-current {
  color: var(--accent);
}

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

.career-editorial.is-motion-ready [data-career-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 460ms ease-out,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.career-editorial.is-motion-ready [data-career-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.career-reveal-row {
  position: relative;
}

.career-reveal-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-light);
  transform: scaleX(1);
  transform-origin: left center;
}

.career-editorial.is-motion-ready .career-reveal-row::after {
  transform: scaleX(0);
  transition: transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.career-editorial.is-motion-ready .career-reveal-row.is-revealed::after {
  transform: scaleX(1);
}

.career-editorial.is-motion-reduced [data-career-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.career-editorial.is-motion-reduced .career-reveal-row::after {
  transform: scaleX(1);
  transition: none;
}

.career-editorial.is-motion-reduced .career-editorial-index::after,
.career-editorial.is-motion-reduced .career-editorial-index span,
.career-editorial.is-motion-reduced .career-community-topic::before {
  transition: none;
}

.career-life-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(56px, 10vw, 148px);
  align-items: start;
}

.career-life-layout h2,
.career-principles-heading h2,
.career-editorial-heading h2,
.career-join h2 {
  max-width: 100%;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(3.25rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.career-life-layout > p,
.career-join-layout > p {
  max-width: 42ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.42vw, 1.3rem);
  line-height: 1.58;
}

.career-interviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: start;
}

.career-editorial-heading {
  grid-column: 1 / -1;
  margin-bottom: clamp(30px, 5vh, 58px);
}

.career-editorial-heading h2 {
  max-width: 1080px;
}

.career-interview-copy {
  display: grid;
  gap: 0;
}

.career-interviews-layout-text .career-interview-copy {
  grid-column: 2;
}

.career-interview-copy p {
  max-width: 56ch;
  margin: 0;
  padding: clamp(20px, 2.2vw, 30px) 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.68;
}

.career-interview-copy p:first-child {
  padding-top: 0;
}

.career-community .career-editorial-heading {
  margin-bottom: clamp(56px, 8vw, 108px);
}

.career-community-list {
  border-bottom: 0;
}

.career-principles-list {
  grid-column: 2;
}

.career-principles-heading {
  grid-column: 2;
  margin-bottom: clamp(42px, 6vw, 86px);
}

.career-principles-heading h2 {
  margin: 0;
}

.career-community-row {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: start;
  padding: clamp(44px, 5vw, 64px) 0;
}

.career-community-topic {
  position: relative;
  margin: 0;
  padding-left: 26px;
  color: var(--navy-deep);
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  line-height: 1.08;
}

.career-community-topic::before {
  content: "";
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.4;
  transition: opacity 260ms ease-out;
}

.career-community-row.is-row-active .career-community-topic::before,
.career-community-row:focus-within .career-community-topic::before {
  opacity: 1;
}

.career-community-row p {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.career-life-layout > p.career-reveal-row {
  padding-bottom: clamp(24px, 3vw, 36px);
}

.career-join {
  padding-block: clamp(96px, 14vw, 190px);
}

.career-join-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.85fr) minmax(260px, auto);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.career-join-button {
  min-height: 64px;
  padding-inline: clamp(26px, 4vw, 52px);
  text-align: center;
}

.career-application-heading h1 {
  max-width: 100%;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 3.7vw, 4.2rem);
  line-height: 1.05;
}

.career-apply-page .career-application {
  padding-top: clamp(30px, 5vh, 58px);
}

.standalone-page #scroller > .site-footer {
  width: 100%;
  min-height: 150px;
  margin: 0;
  padding: 34px var(--page-pad) 40px;
  color: var(--white-soft);
  background: radial-gradient(138% 135% at 100% 110%, #21386b 0%, #17284c 33%, #0d182d 64%);
}

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

  .has-multipage-nav .main-nav {
    position: absolute;
    top: calc(100% - 2px);
    right: clamp(18px, 5vw, 72px);
    left: clamp(18px, 5vw, 72px);
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-light);
    padding: 8px;
    color: var(--navy-deep);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      max-height 250ms ease-out,
      opacity 180ms ease-out,
      transform 250ms ease-out,
      visibility 0s linear 250ms;
  }

  .has-multipage-nav .main-nav.is-open {
    max-height: calc(100dvh - var(--header-h) - 18px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      max-height 250ms ease-out,
      opacity 180ms ease-out,
      transform 250ms ease-out,
      visibility 0s linear 0s;
  }

  .has-multipage-nav .main-nav a {
    border-left: 3px solid transparent;
    padding: 12px;
    opacity: 0;
    transform: translateY(-2px);
    transition:
      opacity 120ms ease-in,
      transform 160ms ease-in,
      color 150ms ease-out,
      background-color 150ms ease-out,
      border-color 150ms ease-out;
  }

  .has-multipage-nav .main-nav.is-open a {
    opacity: 0.84;
    transform: translateY(0);
    transition:
      opacity 170ms ease-out calc(35ms + (var(--nav-index, 0) * 18ms)),
      transform 180ms ease-out calc(35ms + (var(--nav-index, 0) * 18ms)),
      color 150ms ease-out,
      background-color 150ms ease-out,
      border-color 150ms ease-out;
  }

  .has-multipage-nav .main-nav.is-open a:hover,
  .has-multipage-nav .main-nav.is-open a:focus-visible {
    border-left-color: var(--accent);
    background: rgba(48, 87, 163, 0.08);
    opacity: 1;
    transform: translateX(5px);
  }

  .has-multipage-nav .main-nav.is-open .nav-page-link:hover,
  .has-multipage-nav .main-nav.is-open .nav-page-link:focus-visible {
    border-left-color: var(--brand-orange);
    background: rgba(201, 79, 29, 0.08);
  }

  .has-multipage-nav .main-nav a.is-current-page {
    box-shadow: none;
    border-left-color: var(--accent);
    background: rgba(48, 87, 163, 0.1);
    opacity: 1;
  }

  .has-multipage-nav .main-nav .nav-page-link.is-current-page {
    border-left-color: var(--brand-orange);
    color: var(--brand-orange);
    background: rgba(201, 79, 29, 0.1);
  }

  .has-multipage-nav .nav-divider {
    width: 100%;
    height: 1px;
    margin: 6px 0;
    flex-basis: 1px;
  }
}

@media (max-width: 1100px) {
  .career-join-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .career-join-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .standalone-heading,
  .standalone-statement-grid,
  .standalone-provider-layout,
  .career-application {
    grid-template-columns: 1fr;
  }

  .standalone-heading > .mono-label,
  .standalone-heading > h1,
  .standalone-belief,
  .standalone-intro {
    grid-column: 1;
    grid-row: auto;
  }

  .standalone-heading-compact > .mono-label,
  .standalone-heading-compact > h1,
  .standalone-heading-compact .standalone-intro {
    grid-column: 1;
    grid-row: auto;
  }

  .standalone-belief,
  .standalone-intro {
    margin-top: 12px;
  }

  .standalone-statement-grid article:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    padding-right: 0;
  }

  .standalone-statement-grid article:last-child {
    padding-left: 0;
  }

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

  .standalone-card-grid > li:nth-child(odd) {
    border-left: 0;
  }

  .standalone-card-grid > li:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .standalone-draft-grid > li:nth-child(3) {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .career-editorial-shell,
  .career-life-layout,
  .career-interviews-layout,
  .career-join-layout {
    grid-template-columns: 1fr;
  }

  .career-editorial-index {
    flex-direction: row;
    gap: 18px;
    padding: 0 0 14px;
  }

  .career-editorial-index::before,
  .career-editorial-index::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 1px;
  }

  .career-editorial-index::after {
    transform: scaleX(var(--career-index-progress));
    transform-origin: left center;
  }

  .career-principles-list {
    grid-column: auto;
  }

  .career-principles-heading {
    grid-column: auto;
  }

  .career-life-layout,
  .career-interviews-layout,
  .career-join-layout {
    gap: 38px;
  }

  .career-editorial-heading {
    grid-column: auto;
    margin-bottom: 8px;
  }

  .career-interviews-layout-text .career-interview-copy {
    grid-column: auto;
  }

  .career-join-button {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .career-page {
    padding-top: var(--header-h);
    padding-bottom: 0;
  }

  .career-hero {
    min-height: calc(100dvh - var(--header-h));
    padding: 0;
  }

  .career-hero > .mono-label {
    top: 24px;
  }

  .career-draft-marker {
    top: 72px;
  }

  .career-statement {
    --career-line-step: 1.1em;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    margin-left: calc((var(--page-pad) * -1) + 4px);
    padding: 0;
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .career-section-heading h2 {
    font-size: clamp(2.1rem, 9.5vw, 3rem);
    line-height: 1.06;
  }

  .career-application {
    padding-top: 64px;
  }

  .career-application {
    display: block;
  }

  .career-application-panel {
    padding: 38px 18px;
  }

  .career-application-heading {
    margin-bottom: 30px;
  }

  .career-form-fields {
    grid-template-columns: 1fr;
  }

  .career-form-full {
    grid-column: auto;
  }

  .career-dropzone {
    min-height: 210px;
    padding: 26px 18px;
  }

  .career-editorial {
    margin-top: 0;
  }

  .career-editorial-section,
  .career-join {
    padding-block: 76px;
  }

  .career-editorial-shell {
    gap: 28px;
  }

  .career-life-layout h2,
  .career-principles-heading h2,
  .career-editorial-heading h2,
  .career-join h2 {
    font-size: clamp(1.6rem, 6.5vw, 3rem);
    line-height: 0.98;
  }

  .career-life-layout > p,
  .career-join-layout > p {
    font-size: 1.05rem;
    line-height: 1.58;
  }

  .career-interview-copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .career-community .career-editorial-heading {
    margin-bottom: 38px;
  }

  .career-principles-heading {
    margin-bottom: 30px;
  }

  .career-community-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 36px;
  }

  .career-community-topic {
    font-size: clamp(1.3rem, 5.2vw, 2rem);
  }

  .career-community-row p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .career-join-button {
    width: 100%;
    min-height: 60px;
  }

  .standalone-content-page {
    padding-top: calc(var(--header-h) + 34px);
    padding-bottom: 64px;
  }

  .standalone-heading {
    gap: 10px;
    padding-bottom: 40px;
  }

  .standalone-heading h1 {
    overflow-wrap: anywhere;
  }

  .standalone-statement-grid article {
    padding-block: 38px;
  }

  .standalone-card-grid,
  .standalone-draft-grid {
    grid-template-columns: 1fr;
  }

  .standalone-card-grid > li,
  .standalone-card-grid > li:nth-child(odd) {
    border-left: 0;
  }

  .standalone-card-grid > li + li {
    border-top: 1px solid var(--line-light);
  }

  .standalone-draft-grid > li:nth-child(3) {
    grid-column: auto;
  }

  .standalone-provider-layout {
    gap: 24px;
  }

  .contact-form.standalone-form {
    padding: 24px 0;
  }

  .standalone-page #scroller > .site-footer {
    min-height: 170px;
    padding: 28px var(--page-pad) 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .career-editorial [data-career-reveal],
  .career-editorial.is-motion-ready [data-career-reveal],
  .career-editorial.is-motion-ready [data-career-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .career-reveal-row::after,
  .career-editorial.is-motion-ready .career-reveal-row::after,
  .career-editorial.is-motion-ready .career-reveal-row.is-revealed::after {
    transform: scaleX(1);
    transition: none;
  }

  .career-editorial-index::after,
  .career-editorial-index span,
  .career-community-topic::before {
    transition: none;
  }

  .career-statement .career-choreo-stage,
  .career-statement .career-choreo-item,
  .career-statement .career-choreo-row,
  .career-statement .career-choreo-local,
  .career-statement [data-career-bottom-base],
  .career-statement .career-choreo-suffix,
  .career-statement .career-choreo-third-text {
    transition: none;
    will-change: auto;
  }

  .nav-toggle span {
    transition: none;
  }

  .main-nav,
  .main-nav.is-open,
  .has-multipage-nav .main-nav,
  .has-multipage-nav .main-nav.is-open {
    transform: none;
    transition:
      opacity 120ms linear,
      visibility 0s linear;
  }

  .main-nav a,
  .main-nav.is-open a,
  .main-nav.is-open a:hover,
  .main-nav.is-open a:focus-visible,
  .has-multipage-nav .main-nav a,
  .has-multipage-nav .main-nav.is-open a,
  .has-multipage-nav .main-nav.is-open a:hover,
  .has-multipage-nav .main-nav.is-open a:focus-visible {
    transform: none;
    transition:
      opacity 120ms linear,
      color 120ms linear,
      background-color 120ms linear,
      border-color 120ms linear;
  }
}
