:root {
  --ink: #101417;
  --paper: #f1f4f2;
  --white: #ffffff;
  --teal: #11b4bf;
  --teal-dark: #087c84;
  --contact: #dfe9e6;
  --line: #c9d0ce;
  --muted: #65706e;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:where(section, article, div, details, span)[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable", "Pretendard", "SUIT", "Noto Sans KR",
    "Malgun Gothic", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
input,
summary {
  cursor: default;
}

a,
button,
summary {
  cursor: pointer;
}

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

button,
input {
  font: inherit;
}

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 520;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.section-shell {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.4;
  letter-spacing: 0;
}

.eyebrow.accent {
  color: var(--teal-dark);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(8, 13, 16, 0.58);
  backdrop-filter: blur(22px) saturate(0.82);
}

.home-page .site-header.is-scrolled {
  border-color: rgba(16, 20, 23, 0.1);
  color: var(--ink);
  background: rgba(241, 244, 242, 0.76);
  backdrop-filter: blur(22px) saturate(0.88);
}

.site-header:has(.nav-item:hover),
.site-header:has(.nav-item:focus-within) {
  border-color: transparent;
  color: var(--white);
  background: rgba(8, 13, 16, 0.72);
  backdrop-filter: blur(22px) saturate(0.82);
}

.site-header:has(.mobile-nav[open]) {
  border-color: rgba(16, 20, 23, 0.1);
  color: var(--ink);
  background: rgba(241, 244, 242, 0.88);
  backdrop-filter: blur(22px);
}

.brand {
  position: relative;
  width: 132px;
  height: 27px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 0;
}

.home-page .site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.home-page .site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.site-header:has(.nav-item:hover) .brand-logo-light,
.site-header:has(.nav-item:focus-within) .brand-logo-light {
  opacity: 1;
}

.site-header:has(.nav-item:hover) .brand-logo-dark,
.site-header:has(.nav-item:focus-within) .brand-logo-dark {
  opacity: 0;
}

.site-header:has(.mobile-nav[open]) .brand-logo-light {
  opacity: 0;
}

.site-header:has(.mobile-nav[open]) .brand-logo-dark {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 480;
}

.nav-item {
  display: flex;
  height: 100%;
  align-items: center;
}

.nav-trigger {
  position: relative;
  padding: 12px 0;
}

.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mega-menu {
  position: fixed;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  left: 0;
  width: auto;
  padding: 10px 0 12px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: rgba(9, 15, 18, 0.72);
  box-shadow: 0 24px 60px rgba(5, 10, 12, 0.2);
  backdrop-filter: blur(22px) saturate(0.82);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  gap: 40px;
}

.mega-menu-heading {
  padding-top: 3px;
}

.mega-menu-heading p {
  color: var(--teal);
  font-size: 11px;
  font-weight: 560;
  text-transform: uppercase;
}

.mega-menu-heading span {
  display: block;
  max-width: 280px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 380;
  line-height: 1.5;
  word-break: keep-all;
}

.mega-menu-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.mega-menu-links a {
  position: relative;
  display: grid;
  min-height: 62px;
  align-content: space-between;
  padding: 8px 12px;
  border-right: 0;
  transition: background-color 160ms ease;
}

.mega-menu-links a:hover,
.mega-menu-links a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: 0;
}

.mega-menu-links span {
  color: var(--teal);
  font-size: 10px;
}

.mega-menu-links strong {
  padding-right: 0;
  font-size: 15px;
  font-weight: 500;
}

.mega-menu-links i {
  display: none;
}

.header-contact {
  justify-self: end;
  min-width: 92px;
  padding: 11px 16px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 560;
  text-align: center;
}

.language-toggle {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.header-language-toggle {
  position: absolute;
  right: 164px;
  min-width: 42px;
  padding: 11px 0;
  font-size: 12px;
  font-weight: 560;
  text-align: center;
}

.header-language-toggle::after {
  position: absolute;
  right: 7px;
  bottom: 6px;
  left: 7px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.header-language-toggle:hover::after,
.header-language-toggle:focus-visible::after {
  transform: scaleX(1);
}

.mobile-language-toggle {
  width: 100%;
  margin-top: 15px;
  padding: 18px 0 5px;
  border-top: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 520;
  text-align: left;
}

.mobile-nav {
  display: none;
  justify-self: end;
}

.mobile-nav > summary {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  border: 1px solid currentColor;
  list-style: none;
}

.mobile-nav > summary::-webkit-details-marker {
  display: none;
}

.mobile-nav > summary span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.mobile-nav-panel {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  max-height: calc(100svh - var(--header-height));
  overflow-y: auto;
  padding: 10px 22px 24px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
}

.mobile-nav:not([open]) > .mobile-nav-panel {
  display: none;
}

.mobile-nav-group {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-group > summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav-group > summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group > summary::after {
  color: var(--teal-dark);
  content: "＋";
  font-size: 16px;
  font-weight: 400;
}

.mobile-nav-group[open] > summary::after {
  content: "−";
}

.mobile-nav-sublinks {
  display: grid;
  padding: 0 0 12px 16px;
}

.mobile-nav-sublinks a {
  padding: 9px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.mobile-contact-link {
  padding: 17px 0 4px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 520;
}

.hero {
  position: relative;
  height: min(840px, 88svh);
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  background-image: url("/visual-home-liquid.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background: rgba(5, 9, 12, 0.48);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 112px;
}

.hero h1 {
  max-width: 900px;
  margin-top: 24px;
  font-size: 68px;
  font-weight: 500;
  line-height: 1.16;
  word-break: keep-all;
}

.hero-description {
  max-width: 640px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 380;
  line-height: 1.75;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 560;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  transition: color 180ms ease, background-color 180ms ease;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(8, 16, 20, 0.12);
  backdrop-filter: blur(10px);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

/* Brand story */
.brand-story-page {
  color: #11181b;
  background: #f2f5f4;
}

.brand-story-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #10181c;
}

.brand-story-hero > img,
.brand-story-observation > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-hero > img {
  object-position: center 48%;
}

.brand-story-hero-shade,
.brand-story-observation-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 16, 0.84) 0%, rgba(4, 12, 16, 0.46) 47%, rgba(4, 12, 16, 0.08) 82%);
}

.brand-story-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 110px;
}

.brand-story-hero .detail-category-nav {
  position: absolute;
  top: 104px;
  right: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}

.brand-story-hero .detail-category-nav a {
  color: inherit;
}

.brand-story-hero .detail-category-nav a[aria-current="page"] {
  color: var(--white);
}

.brand-story-hero-copy > .eyebrow {
  margin-top: auto;
  color: #93e2e2;
}

.brand-story-hero-copy h1 {
  max-width: 820px;
  margin-top: 24px;
  font-size: 72px;
  font-weight: 420;
  line-height: 1.13;
  word-break: keep-all;
}

.brand-story-hero-copy > p:last-of-type {
  max-width: 560px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.brand-story-scroll-cue {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.brand-story-scroll-cue i {
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.brand-story-beat {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.brand-story-beat-reverse .brand-story-visual {
  order: 2;
}

.brand-story-visual {
  min-height: 780px;
  overflow: hidden;
}

.brand-story-visual img,
.brand-story-origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-beat-dark {
  color: var(--white);
  background: #0d1417;
}

.brand-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(56px, 7vw, 132px);
}

.brand-story-index {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 560;
  text-transform: uppercase;
}

.brand-story-beat-dark .brand-story-index {
  color: #66d2d2;
}

.brand-story-copy h2,
.brand-story-observation-copy h2,
.brand-story-origin-copy h2 {
  margin-top: 30px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.24;
  word-break: keep-all;
}

.brand-story-copy > p:not(.brand-story-index),
.brand-story-origin-copy > p:not(.brand-story-index) {
  max-width: 610px;
  margin-top: 26px;
  color: #667170;
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.brand-story-copy > p + p {
  margin-top: 14px;
}

.brand-story-beat-dark .brand-story-copy > p:not(.brand-story-index) {
  color: #aeb9b7;
}

.brand-story-observation {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: #10171a;
}

.brand-story-observation > img {
  object-position: center 45%;
}

.brand-story-observation-shade {
  background: linear-gradient(90deg, rgba(4, 12, 16, 0.16) 0%, rgba(4, 12, 16, 0.58) 52%, rgba(4, 12, 16, 0.9) 100%);
}

.brand-story-observation-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92svh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.brand-story-observation-copy > * {
  width: min(600px, 48%);
}

.brand-story-observation-copy .brand-story-index {
  color: #66d2d2;
}

.brand-story-observation-copy > p:last-child {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.brand-story-question {
  padding: 150px 0 160px;
  color: var(--white);
  background: #091013;
}

.brand-story-question p {
  color: #66d2d2;
  font-size: 11px;
}

.brand-story-question blockquote {
  max-width: 1180px;
  margin: 42px 0 0;
  font-size: 58px;
  font-weight: 380;
  line-height: 1.35;
  word-break: keep-all;
}

.brand-story-origin {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  background: #edf2f1;
}

.brand-story-origin-image {
  min-height: 900px;
  overflow: hidden;
}

.brand-story-origin-image img {
  object-position: center center;
}

.brand-story-origin-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(56px, 7vw, 132px);
}

.brand-story-origin-link {
  align-self: flex-start;
  margin-top: 42px;
  padding: 15px 0 10px;
  color: #10181b;
  border-bottom: 1px solid #10181b;
  font-size: 13px;
  font-weight: 560;
}

@media (max-width: 900px) {
  .hero-actions {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .brand-story-hero-copy {
    padding-top: 132px;
    padding-bottom: 88px;
  }

  .brand-story-hero .detail-category-nav {
    top: 86px;
  }

  .brand-story-hero-copy h1 {
    font-size: 52px;
  }

  .brand-story-beat,
  .brand-story-origin {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .brand-story-beat-reverse .brand-story-visual {
    order: 0;
  }

  .brand-story-visual,
  .brand-story-origin-image {
    min-height: 58svh;
  }

  .brand-story-copy,
  .brand-story-origin-copy {
    padding: 80px 32px 92px;
  }

  .brand-story-observation-copy > * {
    width: min(560px, 72%);
  }

  .brand-story-question blockquote {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    min-width: 142px;
  }

  .brand-story-hero {
    min-height: 92svh;
  }

  .brand-story-hero > img {
    object-position: 64% center;
  }

  .brand-story-hero-copy {
    min-height: 92svh;
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .brand-story-hero .detail-category-nav {
    top: 74px;
  }

  .brand-story-hero-copy h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .brand-story-hero-copy > p:last-of-type {
    max-width: 88%;
    font-size: 14px;
  }

  .brand-story-scroll-cue {
    display: none;
  }

  .brand-story-visual,
  .brand-story-origin-image {
    min-height: 46svh;
  }

  .brand-story-copy,
  .brand-story-origin-copy {
    padding: 64px 22px 76px;
  }

  .brand-story-copy h2,
  .brand-story-observation-copy h2,
  .brand-story-origin-copy h2 {
    margin-top: 22px;
    font-size: 34px;
    line-height: 1.3;
  }

  .brand-story-copy > p:not(.brand-story-index),
  .brand-story-origin-copy > p:not(.brand-story-index),
  .brand-story-observation-copy > p:last-child {
    font-size: 14px;
    line-height: 1.85;
  }

  .brand-story-observation,
  .brand-story-observation-copy {
    min-height: 78svh;
  }

  .brand-story-observation > img {
    object-position: 43% center;
  }

  .brand-story-observation-shade {
    background: linear-gradient(180deg, rgba(4, 12, 16, 0.08) 0%, rgba(4, 12, 16, 0.42) 44%, rgba(4, 12, 16, 0.93) 100%);
  }

  .brand-story-observation-copy {
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 62px;
  }

  .brand-story-observation-copy > * {
    width: 100%;
  }

  .brand-story-question {
    padding: 100px 0 108px;
  }

  .brand-story-question blockquote {
    margin-top: 30px;
    font-size: 34px;
    line-height: 1.45;
  }
}

.quiet-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 480;
}

.quiet-link span {
  margin-left: 8px;
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 30px;
  left: 40px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.perspectives {
  overflow: hidden;
  padding: 138px 0 78px;
  color: var(--white);
  background: #0b0f12;
}

.perspectives-heading > .eyebrow {
  color: var(--teal);
}

.heading-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-top: 26px;
}

.heading-pair h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
}

.heading-pair > p {
  padding-bottom: 4px;
  color: #a7b0ae;
  font-size: 15px;
  font-weight: 380;
  line-height: 1.8;
  word-break: keep-all;
}

.sector-carousel {
  margin-top: 70px;
}

.sector-viewport {
  overflow: hidden;
}

.sector-track {
  display: flex;
  gap: 18px;
  padding: 0 15vw;
  will-change: transform;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-card {
  position: relative;
  display: block;
  flex: 0 0 70vw;
  max-width: 1040px;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  color: var(--white);
  background: #171c20;
  opacity: 0.52;
  transform: scale(0.975);
  transition: opacity 460ms ease, transform 460ms ease;
}

.sector-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.sector-image,
.sector-overlay {
  position: absolute;
  inset: 0;
}

.sector-image {
  background-image: url("/visual-home-liquid.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 900ms ease;
}

.sector-card:hover .sector-image,
.sector-card:focus-visible .sector-image {
  transform: scale(1.035);
}

.sector-image-airport {
  background-image: url("/visual-home-liquid.png");
  background-position: center;
}

.sector-image-baggage {
  background-image: url("/brand-story-device.jpg");
  background-position: center 58%;
}

.sector-image-manufacturing {
  background-image: url("/visual-responsibility-liquid.png");
  background-position: center;
}

.sector-image-process {
  background-image: url("/visual-recruit-engineering.png");
  background-position: center;
}

.sector-overlay {
  background: rgba(5, 8, 10, 0.3);
}

.sector-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  pointer-events: none;
}

.sector-card-copy {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 46px;
  left: 48px;
}

.sector-card-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 430;
}

.sector-card-copy h3 {
  margin-top: 15px;
  font-size: 42px;
  font-weight: 480;
  line-height: 1.22;
  word-break: keep-all;
}

.card-arrow {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 32px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--white);
  font-size: 19px;
  font-style: normal;
}

.carousel-toolbar {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

.carousel-status {
  display: flex;
  align-items: baseline;
  gap: 7px;
  width: 70px;
  color: #727c7a;
  font-size: 10px;
}

.carousel-status strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 480;
}

.carousel-progress {
  height: 1px;
  overflow: hidden;
  background: #343a3d;
}

.carousel-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--teal);
  transform-origin: left;
  transition: transform 520ms ease;
}

.carousel-buttons {
  display: flex;
  gap: 7px;
}

.carousel-buttons button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid #424a4e;
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.carousel-buttons button:hover,
.carousel-buttons button:focus-visible {
  border-color: var(--teal);
  background: rgba(17, 180, 191, 0.12);
}

.platform {
  padding: 160px 0;
  background: var(--paper);
}

.platform-intro {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 120px;
  margin-top: 0;
  padding-left: 18%;
}

.platform-intro .lead {
  font-size: 32px;
  font-weight: 420;
  line-height: 1.55;
  word-break: keep-all;
}

.body-copy {
  color: var(--muted);
  font-size: 16px;
  font-weight: 380;
  line-height: 1.9;
  word-break: keep-all;
}

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

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

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

.principles article:last-child {
  padding-right: 0;
  border-right: 0;
}

.principles article > p {
  color: var(--teal-dark);
  font-size: 11px;
}

.principles h3 {
  margin-top: 76px;
  font-size: 21px;
  font-weight: 580;
}

.principles span {
  display: block;
  max-width: 310px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.responsibility-heading h2,
.company-heading h2 {
  margin-top: 28px;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.14;
}

.experience {
  padding: 140px 0;
  color: var(--white);
  background: #111719;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.experience-heading h2 {
  margin-top: 27px;
  font-size: 50px;
  font-weight: 420;
  line-height: 1.22;
  word-break: keep-all;
  white-space: nowrap;
}

.experience-flow {
  margin: 0;
  padding: 0;
  border-top: 1px solid #465054;
  list-style: none;
}

.experience-flow li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0 30px;
  border-bottom: 1px solid #465054;
}

.experience-flow > li > span {
  padding-top: 4px;
  color: var(--teal);
  font-size: 11px;
}

.experience-flow h3 {
  font-size: 21px;
  font-weight: 480;
}

.experience-flow p {
  margin-top: 9px;
  color: #9ca5a3;
  font-size: 14px;
  font-weight: 370;
  line-height: 1.65;
}

.technology {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.08fr 0.92fr;
  color: var(--white);
  background: #171d20;
}

.technology-image {
  min-height: 760px;
  background-color: rgba(8, 28, 31, 0.3);
  background-blend-mode: multiply;
  background-image: url("/fillin-sectors-v1.webp");
  background-repeat: no-repeat;
  background-position: 15% bottom;
  background-size: auto 205%;
}

.technology-content {
  width: auto;
  margin: 0;
  padding: 136px 80px;
}

.technology-content .eyebrow {
  color: var(--teal);
}

.technology-content h2 {
  margin-top: 28px;
  font-size: 50px;
  font-weight: 420;
  line-height: 1.28;
  word-break: keep-all;
}

.technology-copy {
  max-width: 560px;
  margin-top: 34px;
  color: #a8b2b0;
  font-size: 16px;
  font-weight: 380;
  line-height: 1.9;
  word-break: keep-all;
}

.technology-terms {
  display: grid;
  gap: 0;
  margin-top: 68px;
  border-top: 1px solid #4a5356;
}

.technology-terms span {
  display: grid;
  grid-template-columns: minmax(145px, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid #3c4447;
}

.technology-terms strong {
  font-size: 13px;
  font-weight: 500;
}

.technology-terms small {
  color: #8f9a98;
  font-size: 12px;
  font-weight: 370;
  line-height: 1.55;
  word-break: keep-all;
}

.responsibility {
  padding: 158px 0;
  background: #edf1ef;
}

.responsibility-heading {
  max-width: 980px;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 110px;
  border-top: 1px solid var(--ink);
}

.responsibility-grid article {
  min-height: 240px;
  padding: 30px 42px 30px 0;
  border-right: 1px solid var(--line);
}

.responsibility-grid article + article {
  padding-left: 42px;
}

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

.responsibility-grid h3 {
  font-size: 18px;
  font-weight: 560;
}

.responsibility-grid p {
  max-width: 340px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 380;
  line-height: 1.8;
  word-break: keep-all;
}

.company {
  padding: 160px 0;
  background: var(--paper);
}

.company-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 120px;
}

.company-copy {
  align-self: start;
  padding-top: 48px;
}

.company-copy dl {
  margin-top: 0;
  border-top: 1px solid var(--ink);
}

.company-copy dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid #bbc5c1;
}

.company-copy dt {
  color: var(--muted);
  font-size: 12px;
}

.company-copy dd {
  font-size: 13px;
  font-weight: 470;
}

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

.company-topics article {
  min-height: 238px;
  padding: 27px 38px 34px;
  border-right: 1px solid var(--line);
}

.company-topics article:first-child {
  padding-left: 0;
}

.company-topics article:last-child {
  padding-right: 0;
  border-right: 0;
}

.company-topics article > p {
  color: var(--teal-dark);
  font-size: 10px;
}

.company-topics h3 {
  margin-top: 58px;
  font-size: 20px;
  font-weight: 520;
}

.company-topics span {
  display: block;
  max-width: 320px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 380;
  line-height: 1.75;
  word-break: keep-all;
}

.content-hub {
  padding: 150px 0 160px;
}

.media-center {
  color: var(--white);
  background: #0f1518;
}

.recruit {
  background: #e4ebe8;
}

.content-hub-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  align-items: start;
  gap: 60px;
}

.content-hub-heading h2 {
  max-width: 920px;
  font-size: 54px;
  font-weight: 410;
  line-height: 1.22;
  word-break: keep-all;
}

.media-center .content-hub-heading .eyebrow {
  color: var(--teal);
}

.content-banner-list {
  margin-top: 84px;
  border-top: 1px solid currentColor;
}

.content-banner {
  border-bottom: 1px solid var(--line);
}

.media-center .content-banner {
  border-color: #3b4447;
}

.content-banner summary {
  display: grid;
  min-height: 112px;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  list-style: none;
  transition: background-color 160ms ease;
}

.content-banner summary::-webkit-details-marker {
  display: none;
}

.content-banner summary:hover,
.content-banner summary:focus-visible {
  background: rgba(17, 180, 191, 0.07);
  outline: 0;
}

.content-banner summary > span {
  color: var(--teal-dark);
  font-size: 10px;
  text-transform: uppercase;
}

.media-center .content-banner summary > span {
  color: var(--teal);
}

.content-banner summary strong {
  font-size: 28px;
  font-weight: 430;
}

.content-banner summary i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
  transition: transform 160ms ease;
}

.content-banner[open] summary i {
  transform: rotate(45deg);
}

.content-banner-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 0 62px 34px 0;
}

.content-banner-body p {
  grid-column: 2;
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 380;
  line-height: 1.75;
  word-break: keep-all;
}

.media-center .content-banner-body p {
  color: #a5afad;
}

.content-banner-body > span,
.content-banner-body > a {
  grid-column: 2;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 500;
}

.media-center .content-banner-body > span,
.media-center .content-banner-body > a {
  color: var(--teal);
}

.contact {
  padding: 150px 0 170px;
  background: var(--contact);
}

.contact-inner .eyebrow {
  color: var(--teal-dark);
}

.contact h2 {
  max-width: 900px;
  margin-top: 28px;
  font-size: 62px;
  font-weight: 430;
  line-height: 1.2;
  word-break: keep-all;
}

.contact-copy {
  max-width: 620px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 380;
  line-height: 1.8;
  word-break: keep-all;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 62px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 24px;
  font-weight: 470;
}

.contact-email {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.floating-search {
  position: fixed;
  z-index: 150;
  right: 50%;
  bottom: 20px;
  width: min(548px, calc(100% - 34px));
  transform: translateX(50%);
}

.floating-search-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  align-items: center;
  gap: 10px;
}

.search-form {
  display: grid;
  min-height: 58px;
  grid-template-columns: 1fr 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: rgba(24, 28, 31, 0.94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.search-form:focus-within {
  border-color: var(--teal);
}

.search-form input {
  min-width: 0;
  padding: 0 8px 0 25px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  font-weight: 390;
}

.search-form input::placeholder {
  color: #9da6a4;
}

.search-form input::-webkit-search-cancel-button {
  display: none;
}

.search-form button {
  position: relative;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  transform: translate(-65%, -65%);
}

.search-icon::after {
  position: absolute;
  right: -7px;
  bottom: -4px;
  width: 8px;
  height: 1.5px;
  background: var(--white);
  content: "";
  transform: rotate(45deg);
}

.ai-pick-trigger {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-content: center;
  border: 1px solid rgba(17, 180, 191, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 24, 27, 0.96);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.ai-pick-trigger::before {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 4px;
  height: 4px;
  background: var(--teal);
  content: "";
  transform: rotate(45deg);
}

.ai-pick-trigger strong,
.ai-pick-trigger small {
  display: block;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.ai-pick-trigger strong {
  color: var(--teal);
  font-size: 20px;
  font-weight: 560;
}

.ai-pick-trigger small {
  margin-top: 3px;
  font-size: 8px;
  font-weight: 560;
}

.ai-pick-trigger:hover,
.ai-pick-trigger:focus-visible,
.ai-pick-trigger[aria-expanded="true"] {
  border-color: var(--teal);
  color: var(--ink);
  background: var(--teal);
  outline: 0;
}

.ai-pick-trigger:hover strong,
.ai-pick-trigger:focus-visible strong,
.ai-pick-trigger[aria-expanded="true"] strong {
  color: var(--ink);
}

.ai-pick-panel {
  position: absolute;
  right: auto;
  bottom: 76px;
  left: 50%;
  width: min(1000px, calc(100vw - 48px));
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(96, 126, 121, 0.5);
  border-radius: 8px;
  color: var(--white);
  background: rgba(10, 16, 18, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px) saturate(0.82);
  transform: translateX(-50%);
  animation: ai-pick-enter 220ms ease both;
}

.ai-pick-panel[hidden] {
  display: none;
}

@keyframes ai-pick-enter {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.ai-pick-head {
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: start;
  gap: 30px;
}

.ai-pick-head p {
  color: var(--teal);
  font-size: 10px;
  font-weight: 560;
}

.ai-pick-head h2 {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 390;
  line-height: 1.25;
  word-break: keep-all;
}

.ai-pick-head span {
  display: block;
  margin-top: 10px;
  color: #929d9a;
  font-size: 13px;
}

.ai-pick-head button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #3a4848;
  border-radius: 50%;
  color: #b6c0bd;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.ai-pick-head button:hover,
.ai-pick-head button:focus-visible {
  border-color: var(--teal);
  color: var(--white);
  outline: 0;
}

.ai-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.ai-pick-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #283336;
  border-radius: 6px;
  color: var(--white);
  background: #11191c;
  transition: border-color 180ms ease, transform 180ms ease;
}

.ai-pick-card:hover,
.ai-pick-card:focus-visible {
  border-color: var(--teal);
  outline: 0;
  transform: translateY(-3px);
}

.ai-pick-visual {
  display: block;
  height: 150px;
  background-image: linear-gradient(rgba(4, 10, 12, 0.12), rgba(4, 10, 12, 0.48)), url("/fillin-sectors-v1.webp");
  background-repeat: no-repeat;
  background-size: 205% auto;
  transition: transform 500ms ease;
}

.ai-pick-card:hover .ai-pick-visual,
.ai-pick-card:focus-visible .ai-pick-visual {
  transform: scale(1.025);
}

.ai-pick-visual-technology {
  background-position: right top;
}

.ai-pick-visual-company {
  background-position: left top;
}

.ai-pick-visual-responsibility {
  background-position: right bottom;
}

.ai-pick-visual-media {
  background-position: left bottom;
}

.ai-pick-visual-recruit {
  background-position: right bottom;
}

.ai-pick-copy {
  display: block;
  min-height: 128px;
  padding: 18px 18px 20px;
}

.ai-pick-copy small,
.ai-pick-copy strong,
.ai-pick-copy > span {
  display: block;
}

.ai-pick-copy small {
  color: var(--teal);
  font-size: 9px;
  font-weight: 560;
}

.ai-pick-copy strong {
  margin-top: 13px;
  font-size: 17px;
  font-weight: 430;
  line-height: 1.45;
  word-break: keep-all;
}

.ai-pick-copy > span {
  margin-top: 12px;
  color: #87928f;
  font-size: 11px;
}

.search-results {
  position: absolute;
  right: 68px;
  bottom: 70px;
  left: 0;
  overflow: hidden;
  border: 1px solid #41494d;
  border-radius: 6px;
  background: rgba(17, 20, 23, 0.98);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.search-results[hidden] {
  display: none;
}

.search-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 16px 0 20px;
  border-bottom: 1px solid #343a3e;
}

.search-results-head p {
  color: #98a19f;
  font-size: 11px;
  font-weight: 460;
}

.search-results-head button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: #b5bcbb;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.search-result-list {
  display: grid;
  max-height: min(380px, 55vh);
  overflow-y: auto;
}

.search-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 17px 20px;
  border: 0;
  border-bottom: 1px solid #30363a;
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result:hover,
.search-result:focus-visible {
  background: #242a2e;
  outline: 0;
}

.search-result strong {
  display: block;
  font-size: 14px;
  font-weight: 520;
}

.search-result small {
  display: block;
  margin-top: 6px;
  color: #8f9997;
  font-size: 12px;
  font-weight: 370;
  line-height: 1.5;
  word-break: keep-all;
}

.search-result > span {
  align-self: center;
  color: var(--teal);
  font-size: 17px;
}

.search-empty {
  padding: 24px 20px 27px;
  color: #a0a9a7;
  font-size: 13px;
  line-height: 1.6;
}

footer {
  padding: 68px 48px 32px;
  border-top: 1px solid #cbd2cf;
  color: var(--ink);
  background: #eef1ef;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 68px;
}

.footer-main img {
  width: 152px;
}

.footer-main > div {
  display: flex;
  gap: 30px;
  color: #53615e;
  font-size: 12px;
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--ink);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid #c8d0cd;
  color: #6f7b78;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.nav-item.is-current .nav-trigger::after,
.nav-trigger[aria-current="page"]::after {
  transform: scaleX(1);
}

.home-media {
  padding: 144px 0 160px;
  background: #f7f8f7;
}

.home-media-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.home-media-heading h2 {
  margin-top: 26px;
  font-size: 54px;
  font-weight: 410;
  line-height: 1.18;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(330px, 0.66fr);
  gap: 18px;
  margin-top: 68px;
}

.media-feature,
.media-story {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.media-feature {
  min-height: 610px;
  color: var(--white);
  background: #111719;
}

.media-secondary {
  display: grid;
  min-width: 0;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.media-story {
  min-height: 0;
  color: var(--white);
  background: #171d20;
}

.media-story-light {
  color: var(--ink);
  background: #d5e1dd;
}

.media-visual,
.media-scrim {
  position: absolute;
  inset: 0;
}

.media-visual {
  background-image: url("/brand-story-device.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 800ms ease;
}

.media-feature:hover .media-visual,
.media-feature:focus-visible .media-visual,
.media-story:hover .media-visual,
.media-story:focus-visible .media-visual {
  transform: scale(1.035);
}

.media-visual-news {
  background-position: center 55%;
}

.media-visual-journal {
  background-image: url("/visual-home-liquid.png");
  background-position: center;
}

.media-scrim {
  background: rgba(5, 9, 12, 0.44);
}

.media-feature-copy {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 48px;
  left: 48px;
}

.media-feature-copy p,
.media-story p {
  color: var(--teal);
  font-size: 10px;
  font-weight: 520;
}

.media-feature-copy h3 {
  margin-top: 16px;
  font-size: 40px;
  font-weight: 430;
  line-height: 1.22;
  word-break: keep-all;
}

.media-feature-copy span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.media-feature > i,
.media-story > i {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: 26px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
}

.media-story > div:last-of-type {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.media-story h3 {
  max-width: 360px;
  margin-top: 13px;
  font-size: 24px;
  font-weight: 450;
  line-height: 1.35;
  word-break: keep-all;
}

.media-story-light > div {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.media-story-light p {
  color: var(--teal-dark);
}

.media-story-light > i {
  border-color: rgba(16, 20, 23, 0.45);
}

.detail-hero {
  position: relative;
  height: min(760px, 82svh);
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: #0b0f12;
}

.detail-hero-media,
.detail-hero-shade {
  position: absolute;
  inset: 0;
}

.detail-hero-media {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.detail-hero-media.visual-airport {
  background-position: left top;
}

.detail-hero-media.visual-baggage {
  background-position: right top;
}

.detail-hero-media.visual-manufacturing {
  background-position: left bottom;
}

.detail-hero-media.visual-process {
  background-position: right bottom;
}

.detail-hero-shade {
  background: rgba(5, 9, 12, 0.56);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 106px;
}

.detail-hero h1 {
  max-width: 900px;
  margin-top: 22px;
  font-size: 68px;
  font-weight: 430;
  line-height: 1.12;
  word-break: keep-all;
}

.detail-hero-inner > p:last-child {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 370;
  line-height: 1.75;
  word-break: keep-all;
}

.detail-hero-meta {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 28px;
  left: 40px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.detail-statement {
  padding: 150px 0 158px;
  background: #f7f8f7;
}

.detail-statement-grid,
.detail-band-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1.58fr);
  gap: 80px;
}

.detail-statement-grid h2 {
  max-width: 900px;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.25;
  word-break: keep-all;
}

.detail-statement-grid > div > p {
  max-width: 720px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 380;
  line-height: 1.9;
  word-break: keep-all;
}

.detail-band {
  padding: 92px 0 98px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.detail-band:nth-child(2) {
  background: #e4ece9;
}

.detail-band-grid > p {
  padding-top: 8px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 520;
}

.detail-band-grid h2 {
  max-width: 820px;
  font-size: 39px;
  font-weight: 420;
  line-height: 1.28;
  word-break: keep-all;
}

.detail-band-grid > div > p {
  max-width: 740px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 380;
  line-height: 1.85;
  word-break: keep-all;
}

.detail-band-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid #9da8a5;
  list-style: none;
}

.detail-band-grid li {
  min-width: 190px;
  padding: 16px 26px 16px 0;
  border-bottom: 1px solid #b6c0bd;
  color: #3f4b49;
  font-size: 12px;
  font-weight: 450;
}

.detail-related {
  padding: 130px 0 140px;
  color: var(--white);
  background: #0b0f12;
}

.detail-related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.detail-related-heading .eyebrow {
  color: var(--teal);
}

.detail-related-heading h2 {
  font-size: 42px;
  font-weight: 400;
}

.detail-related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid #697270;
  border-bottom: 1px solid #343b3e;
}

.detail-related-links a {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: space-between;
  padding: 26px 50px 30px 28px;
  border-right: 1px solid #343b3e;
  transition: background-color 180ms ease;
}

.detail-related-links a:last-child {
  border-right: 0;
}

.detail-related-links a:hover,
.detail-related-links a:focus-visible {
  background: #182125;
  outline: 0;
}

.detail-related-links span {
  color: var(--teal);
  font-size: 10px;
}

.detail-related-links strong {
  font-size: 22px;
  font-weight: 430;
}

.detail-related-links i {
  position: absolute;
  right: 24px;
  bottom: 28px;
  color: var(--teal);
  font-size: 16px;
  font-style: normal;
}

.detail-cta {
  padding: 118px 0 128px;
  background: #d5e1dd;
}

.detail-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  align-items: end;
  gap: 70px;
}

.detail-cta h2 {
  max-width: 850px;
  margin-top: 25px;
  font-size: 47px;
  font-weight: 410;
  line-height: 1.25;
  word-break: keep-all;
}

.detail-cta-body {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(12, 20, 22, 0.68);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.detail-cta-link {
  display: inline-flex;
  min-width: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.not-found {
  display: grid;
  min-height: 80svh;
  place-items: center;
  padding-top: var(--header-height);
  background: var(--paper);
}

.not-found h1 {
  margin-top: 24px;
  font-size: 52px;
  font-weight: 420;
}

.not-found p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.button-dark {
  margin-top: 36px;
  color: var(--white);
  background: var(--ink);
}

.detail-category-nav {
  display: flex;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16, 20, 23, 0.2);
  font-size: 12px;
  font-weight: 450;
}

.detail-category-nav a {
  position: relative;
  color: var(--muted);
}

.detail-category-nav a::after {
  position: absolute;
  right: 0;
  bottom: -23px;
  left: 0;
  height: 2px;
  background: var(--teal-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.detail-category-nav a:hover,
.detail-category-nav a:focus-visible,
.detail-category-nav a[aria-current="page"] {
  color: var(--ink);
}

.detail-category-nav a:hover::after,
.detail-category-nav a:focus-visible::after,
.detail-category-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.company-profile {
  padding: 80px 0 142px;
  background: #f7f8f7;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.38fr) minmax(0, 1.62fr);
  gap: 82px;
  margin-top: 98px;
}

.company-profile-grid h2 {
  max-width: 920px;
  font-size: 56px;
  font-weight: 390;
  line-height: 1.23;
  word-break: keep-all;
}

.company-profile-grid > div > p {
  max-width: 720px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.ceo-greeting {
  padding: 134px 0 146px;
  color: var(--white);
  background: #101719;
}

.ceo-greeting-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: 96px;
}

.ceo-greeting-label {
  padding-top: 10px;
  border-top: 1px solid #697573;
}

.ceo-greeting-label p {
  margin-top: 18px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 520;
}

.ceo-greeting-label span {
  display: block;
  margin-top: 12px;
  color: #8e9997;
  font-size: 12px;
}

.ceo-greeting-message {
  max-width: 780px;
}

.ceo-greeting-message blockquote {
  margin: 0 0 56px;
  font-size: 42px;
  font-weight: 370;
  line-height: 1.38;
  word-break: keep-all;
}

.ceo-greeting-message > p {
  max-width: 700px;
  margin-top: 24px;
  color: #adb7b5;
  font-size: 15px;
  font-weight: 370;
  line-height: 1.9;
  word-break: keep-all;
}

.ceo-greeting-message strong {
  display: block;
  margin-top: 52px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.company-narrative {
  background: var(--paper);
}

.company-narrative article {
  padding: 78px 0 84px;
  border-top: 1px solid var(--line);
}

.company-narrative article:nth-child(2) {
  background: #e5ece9;
}

.company-narrative-grid {
  display: grid;
  grid-template-columns: 80px minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
}

.company-narrative-grid > span {
  color: var(--teal-dark);
  font-size: 11px;
}

.company-narrative-grid > div:nth-child(2) > p {
  color: var(--teal-dark);
  font-size: 10px;
}

.company-narrative-grid h2 {
  max-width: 430px;
  margin-top: 24px;
  font-size: 36px;
  font-weight: 410;
  line-height: 1.28;
  word-break: keep-all;
}

.company-narrative-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}

.company-narrative-copy ul,
.responsibility-framework-copy ul,
.technology-module-grid ul,
.newsroom-feed ul,
.recruit-path ul,
.contact-request ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.company-narrative-copy li,
.responsibility-framework-copy li,
.technology-module-grid li,
.newsroom-feed li,
.recruit-path li,
.contact-request ul li {
  padding: 10px 0;
  border-top: 1px solid rgba(101, 112, 110, 0.32);
  color: #53605e;
  font-size: 12px;
}

.responsibility-overview {
  padding: 78px 0 110px;
  background: #dbe7e2;
}

.responsibility-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: end;
  gap: 100px;
  margin-top: 96px;
}

.responsibility-overview-grid h2 {
  max-width: 780px;
  font-size: 54px;
  font-weight: 390;
  line-height: 1.25;
  word-break: keep-all;
}

.responsibility-overview-grid > p {
  color: #53615e;
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.responsibility-status {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 78px;
  padding: 22px 0;
  border-top: 1px solid #7f918c;
  border-bottom: 1px solid #aebdb8;
}

.responsibility-status span {
  color: var(--teal-dark);
  font-size: 10px;
}

.responsibility-status strong {
  font-size: 14px;
  font-weight: 480;
}

.responsibility-framework {
  padding: 128px 0 142px;
  background: #f7f8f7;
}

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

.responsibility-framework article {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  padding: 30px 40px 40px;
  border-right: 1px solid var(--line);
}

.responsibility-framework article:first-child {
  padding-left: 0;
}

.responsibility-framework article:last-child {
  padding-right: 0;
  border-right: 0;
}

.responsibility-framework article > span {
  color: #9ba7a4;
  font-size: 58px;
  font-weight: 300;
}

.responsibility-framework article > p {
  margin-top: 52px;
  color: var(--teal-dark);
  font-size: 10px;
}

.responsibility-framework h2 {
  margin-top: 20px;
  font-size: 27px;
  font-weight: 430;
  line-height: 1.4;
  word-break: keep-all;
}

.responsibility-framework-copy {
  margin-top: auto;
}

.responsibility-framework-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.technology-overview {
  padding: 78px 0 118px;
  color: var(--white);
  background: #0b0f12;
}

.technology-overview .detail-category-nav {
  border-color: #394246;
}

.technology-overview .detail-category-nav a {
  color: #87918f;
}

.technology-overview .detail-category-nav a:hover,
.technology-overview .detail-category-nav a:focus-visible,
.technology-overview .detail-category-nav a[aria-current="page"] {
  color: var(--white);
}

.technology-overview .detail-category-nav a::after {
  background: var(--teal);
}

.technology-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 100px;
  margin-top: 92px;
}

.technology-overview-grid .eyebrow {
  color: var(--teal);
}

.technology-overview-grid h2 {
  max-width: 840px;
  margin-top: 24px;
  font-size: 53px;
  font-weight: 380;
  line-height: 1.24;
  word-break: keep-all;
}

.technology-overview-grid > p {
  color: #a7b1af;
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.technology-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border-top: 1px solid #4a5457;
  border-bottom: 1px solid #2f383b;
}

.technology-index span {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 24px;
  border-right: 1px solid #30393c;
  color: #dce1df;
  font-size: 13px;
}

.technology-index span + span {
  padding-left: 28px;
}

.technology-index span:last-child {
  border-right: 0;
}

.technology-index i {
  color: var(--teal);
  font-size: 10px;
  font-style: normal;
}

.technology-modules {
  background: #f4f6f5;
}

.technology-module {
  padding: 82px 0 90px;
  border-top: 1px solid var(--line);
}

.technology-module:nth-child(2) {
  background: #e1e9e6;
}

.technology-module-grid {
  display: grid;
  grid-template-columns: 150px minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 62px;
}

.technology-module-index > span {
  color: #8c9996;
  font-size: 62px;
  font-weight: 300;
}

.technology-module-index > p {
  margin-top: 24px;
  color: var(--teal-dark);
  font-size: 10px;
}

.technology-module-grid h2 {
  padding-top: 12px;
  font-size: 37px;
  font-weight: 410;
  line-height: 1.3;
  word-break: keep-all;
}

.technology-module-grid > div:last-child > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}

.newsroom {
  padding: 78px 0 150px;
  background: #f7f8f7;
}

.newsroom-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 100px;
  margin-top: 96px;
}

.newsroom-heading h2 {
  max-width: 800px;
  margin-top: 24px;
  font-size: 52px;
  font-weight: 390;
  line-height: 1.24;
  word-break: keep-all;
}

.newsroom-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.newsroom-feed {
  margin-top: 90px;
  border-top: 1px solid var(--ink);
}

.newsroom-feed article {
  position: relative;
  display: grid;
  min-height: 240px;
  grid-template-columns: 180px 1fr;
  gap: 50px;
  padding: 34px 80px 38px 0;
  border-bottom: 1px solid var(--line);
}

.newsroom-feed-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newsroom-feed-meta span {
  color: #9aa5a2;
  font-size: 10px;
}

.newsroom-feed-meta p {
  color: var(--teal-dark);
  font-size: 10px;
}

.newsroom-feed h2 {
  max-width: 760px;
  font-size: 30px;
  font-weight: 420;
  line-height: 1.35;
  word-break: keep-all;
}

.newsroom-feed article > div:nth-child(2) > p {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.newsroom-feed ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.newsroom-feed li {
  padding: 0;
  border-top: 0;
  color: var(--teal-dark);
  font-size: 10px;
}

.newsroom-feed article > i {
  position: absolute;
  top: 36px;
  right: 8px;
  color: var(--teal-dark);
  font-size: 17px;
  font-style: normal;
}

.recruit-story {
  padding: 78px 0 132px;
  background: #dfe9e6;
}

.recruit-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: 100px;
  margin-top: 96px;
}

.recruit-story-grid h2 {
  max-width: 800px;
  margin-top: 24px;
  font-size: 54px;
  font-weight: 390;
  line-height: 1.24;
  word-break: keep-all;
}

.recruit-story-grid > p {
  color: #53605e;
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.recruit-path {
  padding: 132px 0 146px;
  background: #f7f8f7;
}

.recruit-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.recruit-path article {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 28px 38px 38px;
  border-right: 1px solid var(--line);
}

.recruit-path article:first-child {
  padding-left: 0;
}

.recruit-path article:last-child {
  padding-right: 0;
  border-right: 0;
}

.recruit-path article > span {
  color: var(--teal-dark);
  font-size: 11px;
}

.recruit-path article > p {
  margin-top: 48px;
  color: #8d9996;
  font-size: 10px;
}

.recruit-path h2 {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 420;
  line-height: 1.38;
  word-break: keep-all;
}

.recruit-path article > div {
  margin-top: auto;
}

.recruit-path article > div > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.contact-request {
  padding: 142px 0 150px;
  background: #f7f8f7;
}

.contact-request-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 120px;
}

.contact-request-grid > div > h2 {
  max-width: 570px;
  margin-top: 26px;
  font-size: 51px;
  font-weight: 390;
  line-height: 1.26;
  word-break: keep-all;
}

.contact-request-grid > div > p:last-child {
  max-width: 560px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.contact-request ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.contact-request ol > li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
}

.contact-request ol > li > span {
  padding-top: 4px;
  color: var(--teal-dark);
  font-size: 10px;
}

.contact-request ol > li > div > p:first-child {
  color: #85918e;
  font-size: 10px;
}

.contact-request h3 {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 450;
}

.contact-request ol > li > div > p:nth-of-type(2) {
  max-width: 600px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

.contact-request ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.contact-request ul li {
  padding: 0;
  border-top: 0;
  color: var(--teal-dark);
  font-size: 10px;
}

.contact-direct {
  padding: 92px 0 102px;
  color: var(--white);
  background: #101719;
}

.contact-direct p {
  color: var(--teal);
  font-size: 10px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 28px;
  padding: 18px 0 24px;
  border-top: 1px solid #6e7977;
  border-bottom: 1px solid #384144;
  font-size: 42px;
  font-weight: 370;
}

[data-category="company"] .detail-cta {
  background: #eef1ef;
}

[data-category="responsibility"] .detail-cta {
  background: #eef1ef;
}

[data-category="technology"] .detail-cta {
  background: #eef1ef;
}

[data-category="media"] .detail-cta {
  background: #eef1ef;
}

[data-category="recruit"] .detail-cta {
  background: #eef1ef;
}

[data-category="contact"] .detail-cta {
  display: none;
}

[data-category="media"] .detail-hero {
  height: min(660px, 74svh);
}

[data-category="responsibility"] .detail-hero,
[data-category="recruit"] .detail-hero {
  height: min(700px, 78svh);
}

.strategy-page {
  padding: 78px 0 142px;
  background: #f7f8f7;
}

.strategy-brief {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px 70px;
  margin-top: 92px;
}

.strategy-brief h2 {
  max-width: 900px;
  font-size: 55px;
  font-weight: 390;
  line-height: 1.24;
  word-break: keep-all;
}

.strategy-brief > p:last-child {
  grid-column: 2;
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.strategy-focus {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 128px;
  color: var(--white);
  background: #101719;
}

.strategy-focus-visual {
  min-height: 650px;
  background-color: rgba(5, 16, 18, 0.3);
  background-blend-mode: multiply;
  background-image: url("/brand-story-device.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.strategy-focus-copy {
  align-self: center;
  padding: 80px;
}

.strategy-focus-copy > p:first-child {
  color: var(--teal);
  font-size: 10px;
}

.strategy-focus-copy h3 {
  margin-top: 24px;
  font-size: 38px;
  font-weight: 410;
  line-height: 1.3;
}

.strategy-focus-copy > p:nth-of-type(2) {
  margin-top: 28px;
  color: #aeb8b6;
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}

.strategy-focus-copy ul,
.strategy-sequence ul,
.leadership-map ul,
.vision-audiences ul,
.social-axes ul,
.report-roadmap ul,
.tech-system-map ul,
.autonomous-track ul,
.journal-issues ul,
.culture-principles ul,
.jobs-areas ul,
.apply-steps ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.strategy-focus-copy li {
  padding: 12px 0;
  border-top: 1px solid #3f4a4d;
  color: #d8dedc;
  font-size: 12px;
}

.strategy-sequence {
  padding-top: 118px;
}

.strategy-sequence-label {
  color: var(--teal-dark);
  font-size: 10px;
}

.strategy-sequence ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.strategy-sequence ol > li {
  display: grid;
  min-height: 410px;
  grid-template-columns: 64px 1fr;
  gap: 30px;
  padding: 30px 44px 40px 0;
  border-right: 1px solid var(--line);
}

.strategy-sequence ol > li:nth-child(even) {
  padding-left: 44px;
  border-right: 0;
}

.strategy-sequence ol > li > span {
  color: #909b98;
  font-size: 12px;
}

.strategy-sequence li div > p:first-child {
  color: var(--teal-dark);
  font-size: 10px;
}

.strategy-sequence h3 {
  margin-top: 46px;
  font-size: 29px;
  font-weight: 420;
  line-height: 1.35;
}

.strategy-sequence li div > p:nth-of-type(2) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.strategy-sequence li li,
.leadership-map li,
.social-axes li,
.report-roadmap li li,
.tech-system-map li,
.autonomous-track li li,
.journal-issues li,
.culture-principles li,
.jobs-areas li li,
.apply-steps li li {
  padding: 9px 0;
  border-top: 1px solid rgba(101, 112, 110, 0.3);
  color: #596562;
  font-size: 11px;
}

.leadership-page-intro {
  padding: 78px 0 130px;
  background: #f7f8f7;
}

.leadership-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 100px;
  margin-top: 92px;
}

.leadership-page-heading h2 {
  max-width: 780px;
  margin-top: 24px;
  font-size: 52px;
  font-weight: 390;
  line-height: 1.25;
  word-break: keep-all;
}

.leadership-page-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.leadership-map {
  padding: 132px 0 146px;
  background: #e5ece9;
}

.leadership-map-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 60px;
}

.leadership-map-heading > p {
  color: var(--teal-dark);
  font-size: 10px;
}

.leadership-map-heading h2 {
  font-size: 43px;
  font-weight: 390;
  line-height: 1.3;
}

.leadership-map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--ink);
}

.leadership-map article {
  min-height: 500px;
  padding: 28px 38px 36px;
  border-right: 1px solid #b9c5c1;
}

.leadership-map article:first-child {
  padding-left: 0;
}

.leadership-map article:last-child {
  padding-right: 0;
  border-right: 0;
}

.leadership-map article > span {
  color: #889693;
  font-size: 11px;
}

.leadership-map article > p:nth-of-type(1) {
  margin-top: 62px;
  color: var(--teal-dark);
  font-size: 10px;
}

.leadership-map h3 {
  margin-top: 18px;
  font-size: 27px;
  font-weight: 420;
  line-height: 1.38;
}

.leadership-map article > p:nth-of-type(2) {
  margin-top: 40px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.vision-declaration {
  padding: 78px 0 150px;
  background: #f7f8f7;
}

.vision-declaration-copy {
  max-width: 980px;
  margin: 118px auto 0;
  text-align: center;
}

.vision-declaration-copy h2 {
  margin-top: 28px;
  font-size: 66px;
  font-weight: 370;
  line-height: 1.18;
  word-break: keep-all;
}

.vision-declaration-copy > p:last-child {
  max-width: 720px;
  margin: 42px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
}

.vision-audiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0b0f12;
}

.vision-audience {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
}

.vision-audience + .vision-audience {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

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

.vision-audience-image {
  background-image: url("/visual-home-liquid.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.7;
  transition: transform 800ms ease;
}

.vision-audience:hover .vision-audience-image {
  transform: scale(1.035);
}

.vision-audience-1 .vision-audience-image {
  background-image: url("/visual-home-liquid.png");
  background-position: center;
}

.vision-audience-2 .vision-audience-image {
  background-image: url("/brand-story-device.jpg");
  background-position: center;
}

.vision-audience-3 .vision-audience-image {
  background-image: url("/visual-responsibility-liquid.png");
  background-position: center;
}

.vision-audience-4 .vision-audience-image {
  background-image: url("/visual-recruit-engineering.png");
  background-position: center;
}

.vision-audience-shade {
  background: rgba(5, 9, 12, 0.5);
}

.vision-audience > div:last-child {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 42px;
  left: 36px;
}

.vision-audience span {
  color: var(--teal);
  font-size: 11px;
}

.vision-audience > div > p:nth-of-type(1) {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.vision-audience h2 {
  margin-top: 16px;
  font-size: 31px;
  font-weight: 420;
  line-height: 1.35;
}

.vision-audience > div > p:nth-of-type(2) {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

.social-promise {
  padding: 78px 0 132px;
  background: #dbe7e2;
}

.social-promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: end;
  gap: 100px;
  margin-top: 96px;
}

.social-promise-grid h2 {
  max-width: 760px;
  margin-top: 24px;
  font-size: 54px;
  font-weight: 390;
  line-height: 1.25;
  word-break: keep-all;
}

.social-promise-grid > p {
  color: #53615e;
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.social-axes {
  padding: 120px 0 142px;
  background: #f7f8f7;
}

.social-axes-orbit {
  position: relative;
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
}

.social-axis {
  position: relative;
  display: grid;
  width: 250px;
  height: 250px;
  place-content: center;
  border: 1px solid #8ca8a0;
  border-radius: 50%;
  color: var(--teal-dark);
  background: rgba(229, 236, 233, 0.76);
  text-align: center;
}

.social-axis + .social-axis {
  margin-left: -52px;
}

.social-axis-airport {
  z-index: 2;
  background: rgba(211, 226, 220, 0.9);
  transform: translateY(42px);
}

.social-axis em {
  color: #80918d;
  font-size: 10px;
  font-style: normal;
}

.social-axis strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 430;
}

.social-axes-grid {
  margin-top: 90px;
}

.social-axes-grid article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 50px;
  padding: 44px 0 54px;
  border-top: 1px solid var(--line);
}

.social-axes-grid article > span {
  color: #91a09c;
  font-size: 58px;
  font-weight: 300;
}

.social-axes-grid article div > p:first-child {
  color: var(--teal-dark);
  font-size: 10px;
}

.social-axes-grid h2 {
  margin-top: 18px;
  font-size: 35px;
  font-weight: 410;
}

.social-axes-grid article div > p:nth-of-type(2) {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.report-page {
  padding: 78px 0 150px;
  background: #e5ece9;
}

.report-cover {
  display: grid;
  min-height: 530px;
  grid-template-columns: 0.55fr 0.8fr 1.15fr;
  gap: 58px;
  margin-top: 90px;
  padding: 46px;
  border: 1px solid #8f9d99;
  background: #f7f8f7;
}

.report-cover-index,
.report-cover-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.report-cover-index p,
.report-cover-title p {
  color: var(--teal-dark);
  font-size: 10px;
}

.report-cover-index span {
  color: #879592;
  font-size: 12px;
}

.report-cover-title h2 {
  margin-top: auto;
  font-size: 52px;
  font-weight: 370;
}

.report-cover-title strong {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 480;
}

.report-cover > p {
  align-self: end;
  max-width: 500px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.report-principle {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 44px;
  margin-top: 84px;
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid #aebbb7;
}

.report-principle span {
  color: var(--teal-dark);
  font-size: 10px;
}

.report-principle h3 {
  font-size: 25px;
  font-weight: 410;
}

.report-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 88px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.report-roadmap > li {
  min-height: 510px;
  padding: 28px 34px 38px;
  border-right: 1px solid #b6c1bd;
}

.report-roadmap > li:first-child {
  padding-left: 0;
}

.report-roadmap > li:last-child {
  padding-right: 0;
  border-right: 0;
}

.report-roadmap > li > span {
  color: #879592;
  font-size: 42px;
  font-weight: 300;
}

.report-roadmap > li > p:nth-of-type(1) {
  margin-top: 48px;
  color: var(--teal-dark);
  font-size: 10px;
}

.report-roadmap h3 {
  margin-top: 18px;
  font-size: 25px;
  font-weight: 420;
  line-height: 1.4;
}

.report-roadmap > li > p:nth-of-type(2) {
  margin-top: 38px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
}

.tech-vision-page,
.feedback-page,
.robotics-page,
.tv-page {
  padding: 78px 0 146px;
  color: var(--white);
  background: #0b0f12;
}

.tech-vision-page .detail-category-nav,
.feedback-page .detail-category-nav,
.robotics-page .detail-category-nav,
.tv-page .detail-category-nav {
  border-color: #394246;
}

.tech-vision-page .detail-category-nav a,
.feedback-page .detail-category-nav a,
.robotics-page .detail-category-nav a,
.tv-page .detail-category-nav a {
  color: #87918f;
}

.tech-vision-page .detail-category-nav a[aria-current="page"],
.feedback-page .detail-category-nav a[aria-current="page"],
.robotics-page .detail-category-nav a[aria-current="page"],
.tv-page .detail-category-nav a[aria-current="page"] {
  color: var(--white);
}

.tech-vision-page .detail-category-nav a::after,
.feedback-page .detail-category-nav a::after,
.robotics-page .detail-category-nav a::after,
.tv-page .detail-category-nav a::after {
  background: var(--teal);
}

.tech-vision-statement,
.feedback-heading,
.robotics-heading,
.tv-heading {
  max-width: 980px;
  margin-top: 94px;
}

.tech-vision-statement > p:first-child,
.feedback-heading > p:first-child,
.robotics-heading > p:first-child,
.tv-heading > p:first-child {
  color: var(--teal);
  font-size: 10px;
}

.tech-vision-statement h2,
.feedback-heading h2,
.robotics-heading h2,
.tv-heading h2 {
  margin-top: 24px;
  font-size: 55px;
  font-weight: 370;
  line-height: 1.24;
  word-break: keep-all;
}

.tech-vision-statement > p:last-child,
.feedback-heading > p:last-child,
.robotics-heading > p:last-child,
.tv-heading > p:last-child {
  max-width: 720px;
  margin-top: 32px;
  color: #a4afad;
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.tech-system-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 94px;
  border-top: 1px solid #697472;
  border-bottom: 1px solid #30393c;
}

.tech-system-map article {
  min-height: 500px;
  padding: 28px 38px 38px;
  border-right: 1px solid #30393c;
}

.tech-system-map article:first-child {
  padding-left: 0;
}

.tech-system-map article:last-child {
  padding-right: 0;
  border-right: 0;
}

.tech-system-map article > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tech-system-map span,
.tech-system-map article > div p {
  color: var(--teal);
  font-size: 10px;
}

.tech-system-map h3 {
  margin-top: 92px;
  font-size: 28px;
  font-weight: 410;
  line-height: 1.38;
}

.tech-system-map article > p {
  margin-top: 28px;
  color: #99a4a2;
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
}

.tech-system-map li {
  border-color: #354043;
  color: #c4ccca;
}

.feedback-heading {
  text-align: center;
  margin-inline: auto;
}

.feedback-heading > p:last-child {
  margin-inline: auto;
}

.feedback-loop {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 74px;
  margin-top: 110px;
}

.feedback-loop::before {
  position: absolute;
  top: 68px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: #536063;
  content: "";
}

.feedback-node {
  position: relative;
  z-index: 2;
  min-height: 390px;
  padding: 34px;
  border: 1px solid #526064;
  background: #11181b;
}

.feedback-node > span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 12px;
  background: #11181b;
}

.feedback-node > p:nth-of-type(1) {
  margin-top: 54px;
  color: var(--teal);
  font-size: 10px;
}

.feedback-node h3 {
  margin-top: 16px;
  font-size: 27px;
  font-weight: 410;
}

.feedback-node > p:nth-of-type(2) {
  margin-top: 28px;
  color: #a2adaa;
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
}

.feedback-boundary {
  margin-top: 52px;
  padding: 20px 0;
  border-top: 1px solid #354043;
  border-bottom: 1px solid #2c3639;
  color: #788482;
  font-size: 10px;
  text-align: center;
}

.autonomous-page {
  padding: 78px 0 146px;
  background: #f7f8f7;
}

.autonomous-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 100px;
  margin-top: 92px;
}

.autonomous-heading h2 {
  max-width: 780px;
  margin-top: 24px;
  font-size: 52px;
  font-weight: 390;
  line-height: 1.25;
  word-break: keep-all;
}

.autonomous-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}

.autonomous-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 100px 0 0;
  padding: 0;
  list-style: none;
}

.autonomous-track::before {
  display: none;
}

.autonomous-track > li {
  position: relative;
  z-index: 2;
  min-height: 520px;
  padding: 0 38px;
  border-right: 1px solid var(--line);
}

.autonomous-track > li:first-child {
  padding-left: 0;
}

.autonomous-track > li:last-child {
  padding-right: 0;
  border-right: 0;
}

.autonomous-track > li > span {
  color: var(--teal-dark);
  font-size: 12px;
}

.autonomous-track-dot {
  width: 14px;
  height: 14px;
  margin-top: 50px;
  border: 2px solid var(--teal-dark);
  background: #f7f8f7;
}

.autonomous-track > li > div:last-child {
  margin-top: 58px;
}

.autonomous-track > li p:first-child {
  color: var(--teal-dark);
  font-size: 10px;
}

.autonomous-track h3 {
  min-height: 4.35em;
  margin-top: 18px;
  font-size: 28px;
  font-weight: 420;
  line-height: 1.45;
  word-break: keep-all;
}

.autonomous-track > li div > p:nth-of-type(2) {
  min-height: 5.4em;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
}

.robotics-stack {
  margin-top: 100px;
}

.robotics-layer {
  display: grid;
  min-height: 190px;
  grid-template-columns: 180px minmax(250px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 54px;
  margin-inline: auto;
  padding: 30px 40px;
  border: 1px solid #455154;
  background: #11181b;
}

.robotics-layer + .robotics-layer {
  margin-top: 18px;
}

.robotics-layer-2 {
  width: 88%;
}

.robotics-layer-3 {
  width: 76%;
}

.robotics-layer-4 {
  width: 64%;
}

.robotics-layer-5 {
  width: 52%;
}

.robotics-layer span {
  color: var(--teal);
  font-size: 10px;
}

.robotics-layer div p {
  margin-top: 12px;
  color: #7f8b89;
  font-size: 10px;
}

.robotics-layer h3 {
  font-size: 27px;
  font-weight: 410;
  line-height: 1.35;
}

.robotics-layer > p {
  color: #a1acaa;
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
}

.journal-page {
  padding: 78px 0 150px;
  background: #f7f8f7;
}

.journal-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 100px;
  margin-top: 94px;
}

.journal-heading > div > p {
  color: var(--teal-dark);
  font-size: 10px;
}

.journal-heading h2 {
  margin-top: 24px;
  font-size: 51px;
  font-weight: 390;
  line-height: 1.25;
}

.journal-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.journal-issues {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 88px;
}

.journal-issues article {
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #edf1ef;
}

.journal-issues article.is-featured {
  grid-row: span 2;
  min-height: 878px;
  color: var(--white);
  background: #11181b;
}

.journal-issue-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journal-issue-index span {
  color: var(--teal-dark);
  font-size: 10px;
}

.journal-issues .is-featured .journal-issue-index span {
  color: var(--teal);
}

.journal-issue-index i {
  font-style: normal;
}

.journal-issues article > p:nth-of-type(1) {
  margin-top: 92px;
  color: var(--teal-dark);
  font-size: 10px;
}

.journal-issues .is-featured > p:nth-of-type(1) {
  margin-top: 260px;
  color: var(--teal);
}

.journal-issues h3 {
  margin-top: 18px;
  font-size: 29px;
  font-weight: 420;
  line-height: 1.38;
}

.journal-issues article > p:nth-of-type(2) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
}

.journal-issues .is-featured > p:nth-of-type(2) {
  color: #a8b2b0;
}

.tv-feature {
  position: relative;
  min-height: 620px;
  margin-top: 90px;
  overflow: hidden;
  border: 1px solid #3f4a4d;
}

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

.tv-feature-image {
  background-image: url("/visual-recruit-engineering.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tv-feature-shade {
  background: rgba(5, 9, 12, 0.42);
}

.tv-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tv-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
}

.tv-feature-copy {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 40px;
  left: 42px;
}

.tv-feature-copy p {
  color: var(--teal);
  font-size: 10px;
}

.tv-feature-copy h3 {
  margin-top: 14px;
  font-size: 35px;
  font-weight: 410;
}

.tv-feature-copy span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.tv-formats {
  margin-top: 54px;
  border-top: 1px solid #536063;
}

.tv-formats article {
  display: grid;
  min-height: 210px;
  grid-template-columns: 100px 1fr;
  gap: 42px;
  padding: 30px 0 34px;
  border-bottom: 1px solid #30393c;
}

.tv-formats article > span {
  color: var(--teal);
  font-size: 11px;
}

.tv-formats article p:first-child {
  color: #7f8b89;
  font-size: 10px;
}

.tv-formats h3 {
  margin-top: 15px;
  font-size: 26px;
  font-weight: 410;
}

.tv-formats article div > p:nth-of-type(2) {
  max-width: 680px;
  margin-top: 22px;
  color: #9ca7a5;
  font-size: 13px;
  line-height: 1.8;
}

.culture-page,
.jobs-page,
.apply-page {
  padding: 78px 0 150px;
  background: #f7f8f7;
}

.culture-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 88px;
  margin-top: 112px;
}

.culture-process-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: #11191c;
  box-shadow: 0 24px 64px rgba(14, 25, 28, 0.18), inset 0 0 0 1px rgba(123, 146, 141, 0.24);
}

.culture-process-visual::before,
.culture-process-visual::after {
  position: absolute;
  background: #273235;
  content: "";
}

.culture-process-visual::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.culture-process-visual::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.culture-process-ring {
  position: absolute;
  z-index: 1;
  top: 14%;
  right: 18%;
  bottom: 14%;
  left: 18%;
  border: 1px solid #71807d;
  border-radius: 50%;
}

.culture-process-ring::before,
.culture-process-ring::after {
  position: absolute;
  border: 1px solid #263235;
  border-radius: 50%;
  content: "";
}

.culture-process-ring::before {
  inset: 9%;
}

.culture-process-ring::after {
  inset: 22%;
}

.culture-process-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  aspect-ratio: 1;
  place-content: center;
  padding: 24px 16px;
  border: 1px solid #2d4c50;
  border-radius: 50%;
  background: #0d1417;
  text-align: center;
  transform: translate(-50%, -50%);
}

.culture-process-center span {
  color: var(--teal);
  font-size: 9px;
}

.culture-process-center strong {
  display: block;
  margin-top: 12px;
  font-size: 23px;
  font-weight: 390;
  line-height: 1.2;
  white-space: nowrap;
}

.culture-process-step {
  position: absolute;
  z-index: 4;
  width: 178px;
  padding: 26px 14px 14px;
  background: #11191c;
  text-align: center;
}

.culture-process-step::before {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--teal);
  background: #11191c;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.culture-process-step span {
  color: var(--teal);
  font-size: 9px;
}

.culture-process-step strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
  font-weight: 480;
}

.culture-process-step small {
  display: block;
  margin-top: 7px;
  color: #899593;
  font-size: 10px;
  line-height: 1.55;
  word-break: keep-all;
}

.culture-process-step-1 {
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.culture-process-step-2 {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.culture-process-step-3 {
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.culture-process-step-4 {
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.culture-manifesto {
  max-width: 560px;
}

.culture-manifesto > p:first-child,
.jobs-board p:first-child,
.apply-heading > div > p {
  color: var(--teal-dark);
  font-size: 10px;
}

.culture-manifesto h2 {
  margin-top: 26px;
  font-size: 52px;
  font-weight: 370;
  line-height: 1.2;
  word-break: keep-all;
}

.culture-manifesto > p:last-child {
  max-width: 720px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.culture-manifesto-index {
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.culture-manifesto-index li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.culture-manifesto-index span {
  color: var(--teal-dark);
  font-size: 10px;
}

.culture-manifesto-index strong {
  font-size: 14px;
  font-weight: 450;
}

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

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

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

.culture-principles article:last-child {
  padding-right: 0;
  border-right: 0;
}

.culture-principles article > span {
  color: var(--teal-dark);
  font-size: 11px;
}

.culture-principles article > p:nth-of-type(1) {
  margin-top: 62px;
  color: #8d9996;
  font-size: 10px;
}

.culture-principles h3 {
  min-height: 76px;
  margin-top: 18px;
  font-size: 27px;
  font-weight: 420;
  line-height: 1.38;
}

.culture-principles article > p:nth-of-type(2) {
  margin-top: 42px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.jobs-board {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 90px;
  margin-top: 98px;
  padding: 50px 0 62px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.jobs-board strong {
  display: block;
  margin-top: 34px;
  font-size: 136px;
  font-weight: 260;
  line-height: 0.9;
}

.jobs-board h2 {
  font-size: 50px;
  font-weight: 390;
  line-height: 1.25;
}

.jobs-board > div:last-child > p {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.jobs-status {
  display: grid;
  grid-template-columns: 180px 0.8fr 1.2fr;
  gap: 40px;
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.jobs-status span {
  color: var(--teal-dark);
  font-size: 10px;
}

.jobs-status strong {
  font-size: 18px;
  font-weight: 470;
}

.jobs-status p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.jobs-areas {
  margin-top: 72px;
}

.jobs-areas article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
}

.jobs-areas article > span {
  color: #8c9996;
  font-size: 11px;
}

.jobs-areas article p:first-child {
  color: var(--teal-dark);
  font-size: 10px;
}

.jobs-areas h3 {
  margin-top: 15px;
  font-size: 29px;
  font-weight: 420;
}

.jobs-areas article div > p:nth-of-type(2) {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.apply-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 100px;
  margin-top: 96px;
}

.apply-heading h2 {
  max-width: 860px;
  margin-top: 24px;
  font-size: 52px;
  font-weight: 390;
  line-height: 1.25;
  word-break: keep-all;
}

.apply-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.apply-steps {
  margin: 92px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.apply-steps > li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 38px 0 46px;
  border-bottom: 1px solid var(--line);
}

.apply-steps > li > span {
  color: var(--teal-dark);
  font-size: 12px;
}

.apply-steps li div > p:first-child {
  color: #8b9794;
  font-size: 10px;
}

.apply-steps h3 {
  margin-top: 15px;
  font-size: 29px;
  font-weight: 420;
}

.apply-steps li div > p:nth-of-type(2) {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.apply-mail {
  margin-top: 96px;
  padding: 38px 42px 44px;
  border: 1px solid #c5d1cd;
  border-radius: 8px;
  color: var(--ink);
  background: #e8efec;
}

.apply-mail p {
  color: var(--teal-dark);
  font-size: 10px;
}

.apply-mail a {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #b9c7c2;
  font-size: 38px;
  font-weight: 370;
}

.talent-diagram {
  margin-top: 118px;
  padding: 72px 0 82px;
  color: var(--white);
  background: #101719;
  box-shadow: 0 0 0 100vmax #101719;
  clip-path: inset(0 -100vmax);
}

.talent-diagram-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  gap: 70px;
}

.talent-diagram-heading > p {
  color: var(--teal);
  font-size: 10px;
}

.talent-diagram-heading h3 {
  max-width: 850px;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.35;
  word-break: keep-all;
}

.talent-diagram-heading span {
  display: block;
  margin-top: 18px;
  color: #85928f;
  font-size: 12px;
}

.talent-value-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 82px;
}

.talent-value-grid::before {
  display: none;
}

.talent-value {
  position: relative;
  min-height: 430px;
  padding: 46px 0 0;
  color: var(--teal);
}

.talent-value:first-child {
  padding-left: 0;
}

.talent-value:last-child {
  padding-right: 0;
}

.talent-value::after {
  position: absolute;
  top: 0;
  right: 0;
  color: #2a383a;
  font-size: 52px;
  font-weight: 280;
  line-height: 1;
}

.talent-value:nth-child(1)::after {
  content: "01";
}

.talent-value:nth-child(2)::after {
  content: "02";
}

.talent-value:nth-child(3)::after {
  content: "03";
}

.talent-value:nth-child(4)::after {
  content: "04";
}

.talent-node {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 1px;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.talent-value-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.talent-value-title p {
  color: currentColor;
  font-size: 10px;
}

.talent-value-title h3 {
  order: -1;
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
}

.talent-value > p {
  min-height: 48px;
  margin-top: 18px;
  color: #8d9996;
  font-size: 12px;
  line-height: 1.7;
  word-break: keep-all;
}

.talent-value ul {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.talent-value li {
  position: relative;
  min-height: 0;
  padding: 10px 0 10px 18px;
  border-top: 0;
  color: #c1cac8;
  font-size: 13px;
  line-height: 1.65;
  word-break: keep-all;
}

.talent-value li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--teal);
  content: "";
}

.talent-value-love {
  color: var(--teal);
}

.talent-value-innovation {
  color: var(--teal);
}

.talent-value-challenge {
  color: var(--teal);
}

.talent-value-agility {
  color: var(--teal);
}

[data-page="company-vision"] .detail-hero h1 {
  font-size: 76px;
}

[data-page="responsibility-report"] .detail-hero,
[data-page="media-journal"] .detail-hero,
[data-page="media-tv"] .detail-hero,
[data-page="recruit-jobs"] .detail-hero,
[data-page="recruit-apply"] .detail-hero {
  height: min(620px, 70svh);
}

@media (max-aspect-ratio: 8 / 5) {
  .hero-media {
    background-position: 16% top;
    background-size: auto 205%;
  }

  .detail-hero-media {
    background-size: auto 205%;
  }
}

@media (min-width: 2500px) {
  .technology-image {
    background-position: left bottom;
    background-size: 205% auto;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-contact,
  .header-language-toggle {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .mobile-nav {
    display: block;
  }

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

  .heading-pair {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .heading-pair > p {
    max-width: 560px;
  }

  .sector-track {
    padding-inline: 12vw;
  }

  .sector-card {
    flex-basis: 76vw;
  }

  .platform-intro {
    gap: 70px;
    padding-left: 8%;
  }

  .experience-layout {
    gap: 70px;
  }

  .technology {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .technology-content {
    padding: 110px 55px;
  }

  .technology-content h2 {
    font-size: 42px;
  }

  .company-layout {
    gap: 70px;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .company-layout {
    grid-template-columns: 1fr;
  }

  .company-heading h2 {
    font-size: 52px;
  }

  .company-copy {
    padding-top: 0;
  }

  .content-hub-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .content-hub-heading h2 {
    font-size: 48px;
  }

  .content-banner summary,
  .content-banner-body {
    grid-template-columns: 140px 1fr auto;
  }

  .content-banner-body {
    grid-template-columns: 140px 1fr;
  }
}

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

  .section-shell {
    width: calc(100% - 40px);
  }

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

  .brand {
    width: 116px;
    height: 24px;
  }

  .hero {
    height: min(760px, 88svh);
    min-height: 620px;
  }

  .hero-media {
    background-position: 16% 0;
    background-size: auto 205%;
  }

  .hero-inner {
    padding-bottom: 78px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 43px;
    line-height: 1.2;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 18px;
    margin-top: 28px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
  }

  .quiet-link {
    font-size: 12px;
  }

  .hero-meta {
    right: 20px;
    bottom: 17px;
    left: 20px;
  }

  .hero-meta span:last-child {
    display: none;
  }

  .perspectives {
    padding: 96px 0 60px;
  }

  .heading-pair h2 {
    font-size: 42px;
  }

  .sector-carousel {
    margin-top: 50px;
  }

  .sector-track {
    gap: 12px;
    padding-inline: 7vw;
  }

  .sector-card {
    flex-basis: 86vw;
    aspect-ratio: 4 / 5;
  }

  .sector-image {
    background-size: auto 205%;
  }

  .sector-image-airport {
    background-position: 15% top;
  }

  .sector-image-baggage {
    background-position: 85% top;
  }

  .sector-image-manufacturing {
    background-position: 15% bottom;
  }

  .sector-image-process {
    background-position: 85% bottom;
  }

  .sector-card-copy {
    right: 24px;
    bottom: 30px;
    left: 24px;
  }

  .sector-card-copy h3 {
    font-size: 32px;
  }

  .card-arrow {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  .carousel-toolbar {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }

  .carousel-progress {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .carousel-buttons {
    justify-self: end;
  }

  .platform,
  .responsibility,
  .company {
    padding: 100px 0;
  }

  .responsibility-heading h2,
  .company-heading h2 {
    margin-top: 22px;
    font-size: 40px;
  }

  .platform-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 0;
    padding-left: 0;
  }

  .platform-intro .lead {
    font-size: 26px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .principles article,
  .principles article:first-child,
  .principles article:last-child {
    min-height: 220px;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .principles h3 {
    margin-top: 58px;
  }

  .experience {
    padding: 95px 0;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .experience-heading h2 {
    font-size: 38px;
  }

  .experience-flow li {
    grid-template-columns: 40px 1fr;
  }

  .technology {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .technology-image {
    min-height: 340px;
    background-position: left bottom;
    background-size: 205% auto;
  }

  .technology-content {
    padding: 90px 20px;
  }

  .technology-content h2 {
    font-size: 38px;
  }

  .technology-copy {
    font-size: 15px;
  }

  .technology-terms span {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
  }

  .responsibility-grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .responsibility-grid article,
  .responsibility-grid article + article {
    min-height: 210px;
    padding: 27px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .responsibility-grid p {
    margin-top: 34px;
  }

  .company-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .company-copy {
    padding-top: 0;
  }

  .company-copy dl > div {
    grid-template-columns: 80px 1fr;
  }

  .company-topics {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .company-topics article,
  .company-topics article:first-child,
  .company-topics article:last-child {
    min-height: 205px;
    padding: 25px 0 29px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-topics article:last-child {
    border-bottom: 0;
  }

  .company-topics h3 {
    margin-top: 46px;
  }

  .content-hub {
    padding: 100px 0 110px;
  }

  .content-hub-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .content-hub-heading h2 {
    font-size: 40px;
  }

  .content-banner-list {
    margin-top: 58px;
  }

  .content-banner summary {
    min-height: 106px;
    grid-template-columns: 1fr auto;
    gap: 7px 18px;
    padding: 15px 0;
  }

  .content-banner summary > span {
    grid-column: 1;
    grid-row: 1;
  }

  .content-banner summary strong {
    grid-column: 1;
    grid-row: 2;
    font-size: 24px;
  }

  .content-banner summary i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .content-banner-body {
    display: block;
    padding: 0 0 28px;
  }

  .content-banner-body > span,
  .content-banner-body > a {
    display: block;
  }

  .contact {
    padding: 100px 0 120px;
  }

  .contact h2 {
    font-size: 42px;
  }

  .contact-mail {
    max-width: 100%;
    margin-top: 46px;
    font-size: 17px;
    word-break: break-all;
  }

  .contact-copy {
    font-size: 14px;
  }

  .floating-search {
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .floating-search-controls {
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 8px;
  }

  .ai-pick-trigger {
    width: 54px;
    height: 54px;
  }

  .ai-pick-trigger strong {
    font-size: 18px;
  }

  .ai-pick-panel {
    bottom: 68px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 92px);
    padding: 22px 18px 20px;
  }

  .ai-pick-head {
    grid-template-columns: 1fr 36px;
    gap: 18px;
  }

  .ai-pick-head h2 {
    font-size: 25px;
  }

  .ai-pick-head span {
    line-height: 1.6;
  }

  .ai-pick-grid {
    grid-template-columns: repeat(3, minmax(242px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .ai-pick-card {
    scroll-snap-align: start;
  }

  .ai-pick-visual {
    height: 132px;
  }

  .search-form {
    min-height: 56px;
    grid-template-columns: 1fr 54px;
  }

  .search-form input {
    padding-left: 20px;
    font-size: 13px;
  }

  .search-results {
    right: 62px;
    bottom: 66px;
  }

  footer {
    padding: 60px 20px 30px;
  }

  .footer-main,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .footer-main {
    padding-bottom: 50px;
  }

  .footer-main > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
  }
}

@media (max-width: 1100px) {
  .media-showcase {
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  }

  .detail-statement-grid,
  .detail-band-grid {
    grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1.66fr);
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .home-media {
    padding: 96px 0 106px;
  }

  .home-media-heading {
    align-items: start;
    flex-direction: column;
    gap: 34px;
  }

  .home-media-heading h2 {
    margin-top: 21px;
    font-size: 40px;
  }

  .media-showcase {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .media-feature {
    min-height: 510px;
  }

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

  .media-story {
    min-height: 300px;
  }

  .media-visual {
    background-size: auto 205%;
  }

  .media-visual-news {
    background-position: 15% bottom;
  }

  .media-visual-journal {
    background-position: 85% top;
  }

  .media-feature-copy {
    right: 26px;
    bottom: 32px;
    left: 26px;
  }

  .media-feature-copy h3 {
    font-size: 31px;
  }

  .media-story > div:last-of-type,
  .media-story-light > div {
    right: 24px;
    bottom: 26px;
    left: 24px;
  }

  .detail-hero {
    height: min(720px, 84svh);
    min-height: 600px;
  }

  .detail-hero-media {
    background-size: auto 205%;
  }

  .detail-hero-media.visual-airport,
  .detail-hero-media.visual-manufacturing {
    background-position-x: 15%;
  }

  .detail-hero-media.visual-baggage,
  .detail-hero-media.visual-process {
    background-position-x: 85%;
  }

  .detail-hero-inner {
    padding-bottom: 80px;
  }

  .detail-hero h1 {
    margin-top: 18px;
    font-size: 48px;
  }

  .detail-hero-inner > p:last-child {
    margin-top: 22px;
    font-size: 15px;
  }

  .detail-hero-meta {
    right: 20px;
    bottom: 17px;
    left: 20px;
  }

  .detail-hero-meta span:last-child {
    display: none;
  }

  .detail-statement {
    padding: 96px 0 104px;
  }

  .detail-statement-grid,
  .detail-band-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-statement-grid h2 {
    font-size: 38px;
  }

  .detail-statement-grid > div > p {
    margin-top: 28px;
    font-size: 15px;
  }

  .detail-band {
    padding: 74px 0 80px;
  }

  .detail-band-grid h2 {
    font-size: 31px;
  }

  .detail-band-grid ul {
    display: grid;
    margin-top: 36px;
  }

  .detail-band-grid li {
    min-width: 0;
  }

  .detail-related {
    padding: 92px 0 100px;
  }

  .detail-related-heading {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .detail-related-heading h2 {
    font-size: 35px;
  }

  .detail-related-links {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .detail-related-links a {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid #343b3e;
  }

  .detail-related-links a:last-child {
    border-bottom: 0;
  }

  .detail-cta {
    padding: 90px 0 102px;
  }

  .detail-cta-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
  }

  .detail-cta h2 {
    font-size: 36px;
  }

  .detail-cta-link {
    width: 100%;
  }

  .not-found h1 {
    font-size: 38px;
  }
}

@media (max-width: 1100px) {
  .company-narrative-grid,
  .technology-module-grid {
    grid-template-columns: 62px minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
  }

  .responsibility-framework article,
  .recruit-path article {
    padding-inline: 28px;
  }

  .contact-request-grid {
    gap: 70px;
  }
}

@media (max-width: 760px) {
  .detail-category-nav {
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 18px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .detail-category-nav::-webkit-scrollbar {
    display: none;
  }

  .detail-category-nav a::after {
    bottom: -19px;
  }

  .company-profile,
  .responsibility-overview,
  .technology-overview,
  .newsroom,
  .recruit-story {
    padding-top: 56px;
  }

  .company-profile {
    padding-bottom: 92px;
  }

  .company-profile-grid,
  .responsibility-overview-grid,
  .technology-overview-grid,
  .newsroom-heading,
  .recruit-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 66px;
  }

  .company-profile-grid h2,
  .responsibility-overview-grid h2,
  .technology-overview-grid h2,
  .newsroom-heading h2,
  .recruit-story-grid h2 {
    font-size: 37px;
  }

  .company-profile-grid > div > p,
  .newsroom-heading > p {
    margin-top: 28px;
    font-size: 14px;
  }

  .ceo-greeting {
    padding: 90px 0 98px;
  }

  .ceo-greeting-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ceo-greeting-message blockquote {
    margin-bottom: 44px;
    font-size: 31px;
  }

  .ceo-greeting-message > p {
    font-size: 14px;
  }

  .company-narrative article {
    padding: 66px 0 72px;
  }

  .company-narrative-grid,
  .technology-module-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company-narrative-grid h2,
  .technology-module-grid h2 {
    font-size: 30px;
  }

  .company-narrative-copy ul {
    margin-top: 28px;
  }

  .responsibility-overview {
    padding-bottom: 82px;
  }

  .responsibility-status {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 52px;
  }

  .responsibility-framework,
  .recruit-path {
    padding: 88px 0 96px;
  }

  .responsibility-framework-grid,
  .recruit-path-grid {
    grid-template-columns: 1fr;
  }

  .responsibility-framework article,
  .responsibility-framework article:first-child,
  .responsibility-framework article:last-child,
  .recruit-path article,
  .recruit-path article:first-child,
  .recruit-path article:last-child {
    min-height: 0;
    padding: 32px 0 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .responsibility-framework article:last-child,
  .recruit-path article:last-child {
    border-bottom: 0;
  }

  .responsibility-framework article > span {
    font-size: 48px;
  }

  .responsibility-framework article > p,
  .recruit-path article > p {
    margin-top: 38px;
  }

  .responsibility-framework-copy,
  .recruit-path article > div {
    margin-top: 46px;
  }

  .technology-overview {
    padding-bottom: 88px;
  }

  .technology-index {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .technology-index span,
  .technology-index span + span {
    min-height: 58px;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid #30393c;
  }

  .technology-index span:last-child {
    border-bottom: 0;
  }

  .technology-module {
    padding: 68px 0 74px;
  }

  .technology-module-index > span {
    font-size: 49px;
  }

  .newsroom {
    padding-bottom: 98px;
  }

  .newsroom-feed {
    margin-top: 62px;
  }

  .newsroom-feed article {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 36px 34px 0;
  }

  .newsroom-feed-meta {
    gap: 20px;
  }

  .newsroom-feed h2 {
    font-size: 25px;
  }

  .recruit-story {
    padding-bottom: 92px;
  }

  .contact-request {
    padding: 94px 0 104px;
  }

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

  .contact-request-grid > div > h2 {
    font-size: 38px;
  }

  .contact-request ol > li {
    grid-template-columns: 42px 1fr;
  }

  .contact-request h3 {
    font-size: 20px;
  }

  .contact-direct {
    padding: 70px 0 78px;
  }

  .contact-direct a {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    font-size: 23px;
    word-break: break-all;
  }
}

@media (max-width: 1100px) {
  .strategy-focus-copy {
    padding: 58px;
  }

  .culture-intro-grid {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .culture-manifesto {
    max-width: 760px;
  }

  .leadership-map article,
  .tech-system-map article,
  .culture-principles article {
    padding-inline: 26px;
  }

  .robotics-layer {
    grid-template-columns: 140px minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 36px;
  }
}

@media (min-width: 761px) {
  .leadership-map article {
    display: grid;
    grid-template-rows: 24px 98px 106px 134px auto;
    align-content: start;
  }

  .leadership-map article > p:nth-of-type(1),
  .leadership-map h3,
  .leadership-map article > p:nth-of-type(2),
  .leadership-map article ul {
    margin-top: 0;
  }

  .leadership-map article > p:nth-of-type(1) {
    align-self: end;
  }

  .leadership-map h3 {
    padding-top: 18px;
  }

  .leadership-map article > p:nth-of-type(2) {
    padding-top: 28px;
  }

  .vision-audience > div:last-child {
    display: grid;
    min-height: 320px;
    grid-template-rows: 24px 52px 112px 132px;
    align-content: end;
  }

  .vision-audience > div > p:nth-of-type(1),
  .vision-audience h2,
  .vision-audience > div > p:nth-of-type(2) {
    margin-top: 0;
  }

  .vision-audience > div > p:nth-of-type(1) {
    padding-top: 26px;
  }

  .vision-audience h2 {
    padding-top: 16px;
  }

  .vision-audience > div > p:nth-of-type(2) {
    padding-top: 26px;
  }

  .report-roadmap > li {
    display: grid;
    grid-template-rows: 100px 42px 104px 130px auto;
    align-content: start;
  }

  .report-roadmap > li > p:nth-of-type(1),
  .report-roadmap h3,
  .report-roadmap > li > p:nth-of-type(2),
  .report-roadmap > li > ul {
    margin-top: 0;
  }

  .report-roadmap h3 {
    padding-top: 18px;
  }

  .report-roadmap > li > p:nth-of-type(2) {
    padding-top: 30px;
  }

  .tech-system-map article {
    display: grid;
    grid-template-rows: 114px 104px 132px auto;
    align-content: start;
  }

  .tech-system-map h3,
  .tech-system-map article > p,
  .tech-system-map article > ul {
    margin-top: 0;
  }

  .tech-system-map article > p {
    padding-top: 28px;
  }

  .autonomous-track::before {
    top: 99px;
    right: calc(33.333333% - 45px);
    left: 7px;
  }
}

@media (max-width: 760px) {
  .strategy-page,
  .leadership-page-intro,
  .vision-declaration,
  .social-promise,
  .report-page,
  .tech-vision-page,
  .feedback-page,
  .autonomous-page,
  .robotics-page,
  .journal-page,
  .tv-page,
  .culture-page,
  .jobs-page,
  .apply-page {
    padding-top: 56px;
    padding-bottom: 96px;
  }

  .strategy-brief {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 66px;
  }

  .strategy-brief h2,
  .leadership-page-heading h2,
  .social-promise-grid h2,
  .autonomous-heading h2,
  .journal-heading h2,
  .apply-heading h2 {
    font-size: 37px;
  }

  .strategy-brief > p:last-child {
    grid-column: 1;
  }

  .strategy-focus {
    grid-template-columns: 1fr;
    margin-top: 76px;
  }

  .strategy-focus-visual {
    min-height: 340px;
    background-position: 15% top;
    background-size: auto 205%;
  }

  .strategy-focus-copy {
    padding: 64px 20px 72px;
  }

  .strategy-focus-copy h3 {
    font-size: 31px;
  }

  .strategy-sequence {
    padding-top: 82px;
  }

  .strategy-sequence ol {
    grid-template-columns: 1fr;
  }

  .strategy-sequence ol > li,
  .strategy-sequence ol > li + li {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    padding: 28px 0 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .leadership-page-intro {
    padding-bottom: 90px;
  }

  .leadership-page-heading,
  .social-promise-grid,
  .autonomous-heading,
  .journal-heading,
  .apply-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 66px;
  }

  .leadership-map {
    padding: 90px 0 98px;
  }

  .leadership-map-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .leadership-map-heading h2 {
    font-size: 34px;
  }

  .leadership-map-grid,
  .tech-system-map,
  .culture-principles {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .leadership-map article,
  .leadership-map article:first-child,
  .leadership-map article:last-child,
  .tech-system-map article,
  .tech-system-map article:first-child,
  .tech-system-map article:last-child,
  .culture-principles article,
  .culture-principles article:first-child,
  .culture-principles article:last-child {
    min-height: 0;
    padding: 30px 0 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .leadership-map article:last-child,
  .tech-system-map article:last-child,
  .culture-principles article:last-child {
    border-bottom: 0;
  }

  .leadership-map article > p:nth-of-type(1),
  .tech-system-map h3,
  .culture-principles article > p:nth-of-type(1) {
    margin-top: 38px;
  }

  .vision-declaration-copy {
    margin-top: 76px;
    text-align: left;
  }

  .vision-declaration-copy h2 {
    font-size: 43px;
  }

  .vision-declaration-copy > p:last-child {
    margin-inline: 0;
  }

  .vision-audiences {
    grid-template-columns: 1fr;
  }

  .vision-audience {
    min-height: 560px;
  }

  .vision-audience + .vision-audience {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .social-promise {
    padding-bottom: 90px;
  }

  .social-axes {
    padding: 84px 0 96px;
  }

  .social-axes-orbit {
    min-height: 580px;
    align-items: center;
    flex-direction: column;
    padding: 18px 0;
  }

  .social-axis {
    width: 190px;
    height: 190px;
  }

  .social-axis + .social-axis {
    margin-top: -34px;
    margin-left: 0;
  }

  .social-axis-airport {
    transform: translateX(46px);
  }

  .social-axis-environment {
    transform: translateX(-28px);
  }

  .social-axes-grid {
    margin-top: 58px;
  }

  .social-axes-grid article {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .social-axes-grid article > span {
    font-size: 45px;
  }

  .report-cover {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 64px;
    padding: 28px;
  }

  .report-cover-index,
  .report-cover-title {
    min-height: 150px;
  }

  .report-cover-title h2 {
    font-size: 42px;
  }

  .report-principle {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 58px;
  }

  .report-roadmap {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .report-roadmap > li,
  .report-roadmap > li:first-child,
  .report-roadmap > li:last-child {
    min-height: 0;
    padding: 30px 0 54px;
    border-right: 0;
    border-bottom: 1px solid #b6c1bd;
  }

  .tech-vision-statement,
  .feedback-heading,
  .robotics-heading,
  .tv-heading {
    margin-top: 66px;
  }

  .tech-vision-statement h2,
  .feedback-heading h2,
  .robotics-heading h2,
  .tv-heading h2 {
    font-size: 38px;
  }

  .feedback-heading {
    text-align: left;
  }

  .feedback-heading > p:last-child {
    margin-inline: 0;
  }

  .feedback-loop {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 72px;
  }

  .feedback-loop::before {
    display: none;
  }

  .feedback-node {
    min-height: 340px;
    padding: 28px;
  }

  .autonomous-track {
    grid-template-columns: 1fr;
    margin-top: 68px;
  }

  .autonomous-track::before {
    display: none;
  }

  .autonomous-track > li,
  .autonomous-track > li:first-child,
  .autonomous-track > li:last-child {
    min-height: 0;
    padding: 26px 0 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .autonomous-track-dot {
    margin-top: 28px;
  }

  .autonomous-track > li > div:last-child {
    margin-top: 36px;
  }

  .autonomous-track h3,
  .autonomous-track > li div > p:nth-of-type(2) {
    min-height: 0;
  }

  .robotics-stack {
    margin-top: 70px;
  }

  .robotics-layer,
  .robotics-layer-2,
  .robotics-layer-3 {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }

  .journal-issues {
    grid-template-columns: 1fr;
    margin-top: 66px;
  }

  .journal-issues article,
  .journal-issues article.is-featured {
    min-height: 480px;
    grid-row: auto;
  }

  .journal-issues .is-featured > p:nth-of-type(1) {
    margin-top: 120px;
  }

  .tv-feature {
    min-height: 470px;
    margin-top: 66px;
  }

  .tv-feature-image {
    background-position: 15% bottom;
    background-size: auto 205%;
  }

  .tv-feature-copy {
    right: 24px;
    bottom: 26px;
    left: 24px;
  }

  .tv-feature-copy h3 {
    font-size: 28px;
  }

  .tv-formats article {
    grid-template-columns: 44px 1fr;
    gap: 22px;
  }

  .culture-intro-grid {
    gap: 54px;
    margin-top: 74px;
  }

  .culture-process-visual {
    min-height: 500px;
  }

  .culture-process-ring {
    top: 17%;
    right: 16%;
    bottom: 17%;
    left: 16%;
  }

  .culture-process-center {
    width: 108px;
  }

  .culture-process-center strong {
    font-size: 16px;
  }

  .culture-process-step {
    width: 92px;
    padding: 24px 9px 10px;
  }

  .culture-process-step strong {
    font-size: 15px;
  }

  .culture-process-step small {
    display: none;
  }

  .culture-process-step-1 {
    top: 32px;
    width: 126px;
  }

  .culture-process-step-2 {
    right: 10px;
  }

  .culture-process-step-3 {
    bottom: 32px;
    width: 126px;
  }

  .culture-process-step-4 {
    left: 10px;
  }

  .culture-manifesto h2 {
    font-size: 42px;
  }

  .talent-diagram {
    margin-top: 82px;
    padding: 54px 0 62px;
  }

  .talent-diagram-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .talent-diagram-heading h3 {
    font-size: 31px;
  }

  .talent-value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 64px;
  }

  .talent-value-grid::before {
    display: none;
  }

  .talent-value,
  .talent-value:first-child,
  .talent-value:last-child {
    min-height: 0;
    padding: 46px 0 34px;
    border-right: 0;
    border-bottom: 0;
  }

  .talent-node {
    top: 8px;
    left: 1px;
  }

  .talent-value > p {
    min-height: 0;
  }

  .talent-value ul {
    margin-top: 34px;
  }

  .talent-value li {
    min-height: 0;
  }

  .culture-principles h3 {
    min-height: 0;
  }

  .jobs-board {
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 68px;
  }

  .jobs-board strong {
    font-size: 104px;
  }

  .jobs-board h2 {
    font-size: 37px;
  }

  .jobs-status {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 58px;
  }

  .jobs-areas {
    margin-top: 54px;
  }

  .jobs-areas article {
    grid-template-columns: 42px 1fr;
    gap: 24px;
  }

  .apply-steps {
    margin-top: 66px;
  }

  .apply-steps > li {
    grid-template-columns: 42px 1fr;
    gap: 24px;
  }

  .apply-mail {
    margin-top: 70px;
    padding: 30px 24px 36px;
  }

  .apply-mail a {
    align-items: flex-start;
    flex-direction: column;
    font-size: 23px;
    word-break: break-all;
  }

  [data-page="company-vision"] .detail-hero h1 {
    font-size: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .sector-track {
    transition: none;
  }
}
