:root {
  --blue: #1464f4;
  --blue-deep: #073f9f;
  --blue-hover: #0d55d8;
  --carbon: #202124;
  --carbon-raised: #292b2f;
  --carbon-deep: #151619;
  --ink: #101820;
  --ink-soft: #445164;
  --line: #dfe5ec;
  --paper: #ffffff;
  --mist: #f3f6fa;
  --content: clamp(1280px, calc(100vw - 160px), 1920px);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  word-break: auto-phrase;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

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

a:focus-visible {
  outline: 2px solid #73a8ff;
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

section {
  scroll-margin-top: 16px;
}

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 24px;
  z-index: 100;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease;
}

.site-header--hidden {
  transform: translateY(-100%);
}

.site-header:focus-within {
  transform: translateY(0);
}

.nav-shell {
  display: flex;
  align-items: center;
  width: min(calc(100% - 64px), var(--content));
  height: 100%;
  margin-inline: auto;
}

.brand {
  flex: 0 0 auto;
}

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

.desktop-nav {
  display: flex;
  align-self: stretch;
  gap: 36px;
  margin-left: 84px;
}

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

.nav-trigger {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #243044;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

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

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: var(--blue);
}

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

.mega-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  visibility: hidden;
  padding: 34px 0 38px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 22px 50px rgba(17, 34, 61, 0.12);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

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

.mega-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 70px;
  width: min(calc(100% - 80px), var(--content));
  margin-inline: auto;
}

.mega-intro {
  padding-right: 42px;
}

.mega-intro > span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.mega-intro strong {
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
}

.mega-intro p {
  color: #788393;
  font-size: 14px;
  line-height: 1.8;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mega-links--brands {
  grid-template-columns: repeat(4, 1fr);
}

.mega-links a {
  position: relative;
  min-height: 92px;
  padding: 20px 38px 18px 20px;
  background: #f6f8fb;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mega-links a::after {
  position: absolute;
  top: 22px;
  right: 18px;
  color: var(--blue);
  content: "→";
}

.mega-links a:hover,
.mega-links a:focus-visible {
  color: #fff;
  background: var(--blue);
  outline: none;
  transform: translateY(-2px);
}

.mega-links a:hover::after,
.mega-links a:focus-visible::after,
.mega-links a:hover small,
.mega-links a:focus-visible small {
  color: rgba(255, 255, 255, 0.74);
}

.mega-links span,
.mega-links small {
  display: block;
}

.mega-links span {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.mega-links small {
  color: #818b98;
  font-size: 13px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.language-switch button {
  appearance: none;
  position: relative;
  padding: 6px 0 9px;
  border: 0;
  color: #64676a;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  transition: color 160ms ease;
}

.language-switch button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch button[aria-pressed="true"] {
  color: var(--blue);
}

.language-switch button[aria-pressed="true"] {
  font-weight: 600;
}

.language-switch button[aria-pressed="true"]::after {
  transform: scaleX(1);
}

.header-language {
  margin-left: 22px;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  min-height: 44px;
  padding: 11px 20px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 500;
  transition: background 160ms ease, transform 160ms ease;
}

.header-link:hover,
.header-link:focus-visible {
  background: var(--blue-hover);
  outline-color: var(--blue);
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding-top: var(--header-height);
  overflow: hidden;
  color: #fff;
  background: var(--carbon);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: var(--header-height) 0 0;
  width: 100%;
  height: calc(100% - var(--header-height));
}

.hero-media {
  top: calc(var(--header-height) - 96px);
  height: calc(100% - var(--header-height) + 96px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: hero-image 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 15, 17, 0.8) 0%, rgba(14, 15, 17, 0.38) 48%, rgba(14, 15, 17, 0.08) 76%),
    linear-gradient(0deg, rgba(14, 15, 17, 0.44), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}

.hero-kicker {
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  opacity: 0;
  animation: rise-in 650ms 180ms ease forwards;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(56px, 6.2vw, 92px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.08;
  opacity: 0;
  animation: rise-in 720ms 260ms ease forwards;
}

.hero-summary {
  margin-top: 28px;
  font-size: 19px;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: rise-in 720ms 360ms ease forwards;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
  min-height: 52px;
  padding: 15px 24px;
  color: #11223b;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 12px 30px rgba(4, 16, 34, 0.16);
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  animation: rise-in 720ms 440ms ease forwards;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-action:hover,
.hero-action:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  outline-color: #fff;
  transform: translateY(-2px);
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 160px);
  background: rgba(24, 25, 28, 0.78);
  backdrop-filter: blur(14px);
}

.hero-index a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 0 20px;
  transition: background 160ms ease;
}

.hero-index a:hover,
.hero-index a:focus-visible {
  background: var(--blue);
}

.hero-index span {
  font-size: 13px;
}

.section {
  padding: 128px 0;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-heading h2,
.responsibility-content h2,
.people-copy h2 {
  font-size: clamp(40px, 4.3vw, 62px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.lead-copy {
  padding-bottom: 4px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

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

.about-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.65fr);
  min-height: 570px;
  margin-top: 80px;
  color: #fff;
  background: #000;
}

.about-feature-media {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
}

.about-feature-media::after {
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  content: "";
}

.about-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.about-feature:hover .about-feature-media img {
  transform: scale(1.025);
}

.about-feature-media figcaption {
  position: absolute;
  right: 44px;
  bottom: 42px;
  left: 44px;
  z-index: 1;
}

.about-feature-media figcaption span,
.about-principles > p {
  display: block;
  color: #86b2ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-feature-media figcaption strong {
  display: block;
  margin-top: 15px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
}

.about-principles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px;
}

.about-principles > p {
  margin-bottom: 32px;
}

.about-principles article {
  padding: 24px 0;
}

.about-principles h3 {
  font-size: 25px;
  font-weight: 500;
}

.about-principles article p {
  margin-top: 8px;
  color: #a9a9a9;
  font-size: 14px;
}

.focus {
  color: #fff;
  background: #000;
}

.focus .eyebrow {
  color: #77a9ff;
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.72fr);
  gap: 0;
  margin-top: 70px;
  background: #000;
}

.focus-feature {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.focus-feature::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(15, 16, 18, 0.92), transparent);
  content: "";
}

.focus-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.focus-feature:hover img {
  transform: scale(1.035);
}

.focus-caption {
  position: absolute;
  right: 52px;
  bottom: 48px;
  left: 52px;
  z-index: 1;
}

.focus-caption p,
.business-card > div > p {
  margin-bottom: 12px;
  color: #9dc0ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.focus-caption h3 {
  margin-bottom: 14px;
  font-size: 32px;
  font-weight: 500;
}

.focus-caption span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.focus-notes {
  display: grid;
  gap: 0;
  padding: 18px 0;
  background: #000;
}

.focus-notes article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 34px 44px;
  background: transparent;
}

.focus-notes article:last-child {
  border-bottom: 0;
}

.focus-notes span {
  color: #77a9ff;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.focus-notes h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  font-weight: 500;
}

.focus-notes p {
  color: #a8a8a8;
  font-size: 14px;
  line-height: 1.7;
}

.business {
  background: var(--mist);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading--row > p {
  max-width: 390px;
  padding-bottom: 8px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.business-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 38px 42px;
  overflow: hidden;
}

.business-card--enterprise {
  color: #fff;
  background: var(--blue);
}

.business-card--enterprise::before {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.business-card--consumer {
  color: #fff;
  background: var(--carbon-raised);
}

.business-card--innovation {
  grid-column: 1 / -1;
  min-height: 560px;
  color: #fff;
}

.business-card--innovation img,
.business-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.business-card--innovation img {
  object-fit: cover;
  transition: transform 650ms ease;
}

.business-card--innovation:hover img {
  transform: scale(1.025);
}

.business-overlay {
  background: linear-gradient(90deg, rgba(16, 17, 19, 0.86), rgba(16, 17, 19, 0.42) 60%, rgba(16, 17, 19, 0.06));
}

.card-index,
.business-card > div {
  position: relative;
  z-index: 1;
}

.card-index {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.card-index--ghost {
  visibility: hidden;
}

.business-card > div {
  max-width: 560px;
}

.business-card h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.3;
}

.business-card > div > span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.brands {
  padding-bottom: 148px;
}

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

.brand-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 36px 38px 32px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand-card::after {
  position: absolute;
  top: -120px;
  right: -110px;
  z-index: -1;
  width: 330px;
  height: 330px;
  background: currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.045;
}

.brand-card:hover,
.brand-card:focus-visible {
  outline: none;
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(17, 34, 61, 0.14);
}

.brand-card--link {
  color: #154ee8;
  background: #edf3ff;
}

.brand-card--blue {
  color: #fff;
  background: #164fe8;
}

.brand-card--taonest {
  color: #e54f00;
  background: #fff0e8;
}

.brand-card--dark {
  color: #fff;
  background: #171a20;
}

.brand-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-lockup img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-lockup--wide img {
  width: 205px;
  height: 74px;
  object-position: left center;
}

.brand-lockup strong {
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-open {
  font-size: 23px;
  transition: transform 180ms ease;
}

.brand-card:hover .brand-open,
.brand-card:focus-visible .brand-open {
  transform: translate(4px, -4px);
}

.brand-card-body {
  margin-top: auto;
}

.brand-card-body p {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.brand-card-body h3 {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 29px;
  font-weight: 550;
}

.brand-card-body span {
  color: #637084;
  line-height: 1.8;
}

.brand-card--blue .brand-card-body h3,
.brand-card--dark .brand-card-body h3 {
  color: #fff;
}

.brand-card--blue .brand-card-body span,
.brand-card--dark .brand-card-body span {
  color: rgba(255, 255, 255, 0.72);
}

.brand-card > small {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.74;
}

.responsibility {
  color: var(--ink);
  background: #eef2f6;
}

.responsibility-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) 1fr;
  gap: 0;
  align-items: stretch;
}

.responsibility-media {
  position: relative;
  min-height: 690px;
}

.responsibility-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 17, 19, 0.58), transparent 50%);
  content: "";
}

.responsibility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.responsibility-media > span {
  position: absolute;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.responsibility-content .eyebrow {
  color: var(--blue);
}

.responsibility-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(48px, 6vw, 92px);
  background: #fff;
}

.responsibility-content h2 em {
  color: var(--blue);
  font-style: normal;
}

.responsibility-lead {
  max-width: 590px;
  margin-top: 34px;
  color: #657185;
  font-size: 17px;
  line-height: 1.9;
}

.principles {
  display: grid;
  gap: 4px;
  margin-top: 54px;
}

.principles article {
  position: relative;
  padding: 22px 0 22px 34px;
  background: transparent;
}

.principles article::before {
  position: absolute;
  top: 31px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
}

.principles article:nth-child(2)::before {
  opacity: 0.7;
}

.principles article:nth-child(3)::before {
  opacity: 0.4;
}

.principles h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 500;
}

.principles p {
  color: #758195;
  font-size: 14px;
  line-height: 1.7;
}

.people {
  padding: 0;
  background: #eef3f8;
}

.people-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: none;
}

.people-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  min-height: 680px;
  padding-block: 90px;
  padding-left: max(60px, calc((100vw - var(--content)) / 2));
  padding-right: clamp(60px, 7vw, 120px);
}

.people-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin-top: 34px;
  color: #5c697b;
  font-size: 17px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  align-self: flex-start;
  margin-top: 42px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  transition: color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-deep);
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.people-media {
  min-height: 680px;
}

.people-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 15%, rgba(104, 174, 255, 0.65), transparent 27%),
    linear-gradient(115deg, #063e9e, #1464f4 62%, #1888ff);
}

.vision-mark {
  position: absolute;
  top: -170px;
  right: -30px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 720px;
  line-height: 1;
}

.vision-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
}

.vision-content > p {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.72;
}

.vision-content h2 {
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.vision-content > span {
  margin-top: 24px;
  font-size: 18px;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.site-footer {
  color: #ccd3dd;
  background: var(--carbon-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 110px;
  padding-top: 80px;
  padding-bottom: 70px;
}

.footer-brand img {
  width: auto;
  height: 30px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 28px;
  color: #7e8998;
  font-size: 14px;
  line-height: 1.9;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
}

.footer-links a {
  color: #7e8998;
  font-size: 14px;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  color: #98a3b2;
  font-size: 13px;
}

.footer-language {
  margin-top: 34px;
}

.site-footer .language-switch button {
  color: #7e8998;
}

.site-footer .language-switch button:hover,
.site-footer .language-switch button:focus-visible,
.site-footer .language-switch button[aria-pressed="true"] {
  color: #fff;
}

html[lang="en"] body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3 {
  letter-spacing: -0.018em;
}

html[lang="en"] .hero-summary,
html[lang="en"] .vision-content > span {
  letter-spacing: 0;
}

html[lang="en"] .desktop-nav {
  gap: 28px;
  margin-left: 58px;
}

html[lang="en"] .nav-trigger {
  font-size: 14px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image {
  from {
    opacity: 0.68;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 24px;
    margin-left: 50px;
  }

  .header-link {
    display: none;
  }

  .mega-inner {
    grid-template-columns: 250px 1fr;
    gap: 40px;
  }

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

  .people-copy {
    padding-inline: 50px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 64px;
  }

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

  .nav-shell {
    width: calc(100% - 44px);
  }

  .brand img {
    height: 26px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    gap: 5px;
    width: 30px;
    padding: 6px 0;
    list-style: none;
    cursor: pointer;
  }

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

  .mobile-nav summary span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-nav[open] summary span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav[open] summary span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 34px;
    overflow-y: auto;
    padding: 38px 22px 60px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(17, 34, 61, 0.08);
  }

  .mobile-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .mobile-group strong {
    grid-column: 1 / -1;
    padding-bottom: 12px;
    color: var(--blue);
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .mobile-group a {
    padding: 10px 0;
    font-size: 14px;
  }

  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: clamp(50px, 10vw, 72px);
  }

  .hero-index {
    right: 22px;
    left: 22px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-index a {
    min-height: 68px;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-feature {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    margin-top: 58px;
  }

  .about-principles {
    padding: 42px 34px;
  }

  .focus-layout,
  .responsibility-layout {
    grid-template-columns: 1fr;
  }

  .focus-feature {
    min-height: 560px;
  }

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

  .focus-notes article {
    min-height: 220px;
  }

  .focus-notes article + article {
    border-left: 0;
  }

  .responsibility-media {
    height: 520px;
    min-height: 0;
  }

  .responsibility-content {
    padding: 72px 50px;
  }

  .people-layout {
    grid-template-columns: 1fr;
  }

  .people-copy {
    max-width: none;
    min-height: 0;
    padding: 96px 50px;
  }

  .people-media {
    min-height: 560px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 680px) {
  h1 br,
  h2 br,
  h3 br {
    display: none;
  }

  .container {
    width: calc(100% - 40px);
  }

  .nav-shell {
    width: calc(100% - 36px);
  }

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

  .hero {
    min-height: 650px;
  }

  .hero-media,
  .hero-shade {
    inset-top: var(--header-height);
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(14, 15, 17, 0.8), rgba(14, 15, 17, 0.26));
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 320px;
    font-size: 50px;
    line-height: 1.2;
  }

  .hero-summary {
    max-width: 280px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-action {
    margin-top: 30px;
  }

  .hero-index {
    right: 0;
    left: 0;
  }

  .hero-index a {
    justify-content: center;
    min-height: 60px;
    padding: 0 8px;
  }

  .hero-index small {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .responsibility-content h2,
  .people-copy h2 {
    font-size: 36px;
  }

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

  .about-feature {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 46px;
  }

  .about-feature-media {
    min-height: 430px;
  }

  .about-feature-media figcaption {
    right: 26px;
    bottom: 28px;
    left: 26px;
  }

  .about-principles {
    padding: 40px 28px;
  }

  .about-principles article {
    padding: 18px 0;
  }

  .focus-layout {
    margin-top: 46px;
  }

  .focus-feature {
    min-height: 500px;
  }

  .focus-caption {
    right: 26px;
    bottom: 28px;
    left: 26px;
  }

  .focus-caption h3 {
    font-size: 27px;
  }

  .focus-notes {
    grid-template-columns: 1fr;
  }

  .focus-notes article {
    min-height: 170px;
    padding-inline: 4px;
  }

  .focus-notes article + article {
    border-left: 0;
  }

  .section-heading--row {
    display: block;
  }

  .section-heading--row > p {
    margin-top: 24px;
    font-size: 15px;
  }

  .business-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .business-card {
    min-height: 390px;
    padding: 30px 26px;
  }

  .business-card--innovation {
    grid-column: auto;
    min-height: 500px;
  }

  .business-card h3 {
    font-size: 30px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .brand-card {
    min-height: 330px;
    padding: 28px 26px;
  }

  .brand-lockup--wide img {
    width: 170px;
    height: 64px;
  }

  .responsibility-layout {
    gap: 0;
  }

  .responsibility-media {
    height: 440px;
  }

  .responsibility-content {
    padding: 64px 28px;
  }

  .people-copy {
    padding: 76px 20px;
  }

  .people-media {
    min-height: 460px;
  }

  .vision,
  .vision-content {
    min-height: 410px;
  }

  .vision-content h2 {
    font-size: 50px;
    line-height: 1.2;
  }

  .vision-content > span {
    max-width: 290px;
    font-size: 15px;
    line-height: 1.8;
  }

  .vision-mark {
    top: 10px;
    right: -70px;
    font-size: 430px;
  }

  .footer-main {
    padding-top: 64px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 46px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 90px;
  }
}

@media (max-width: 1180px) {
  html[lang="en"] .desktop-nav {
    gap: 18px;
    margin-left: 34px;
  }
}

@media (max-width: 960px) {
  .header-language {
    margin-left: auto;
  }

  .mobile-nav {
    margin-left: 18px;
  }

  .footer-language {
    margin-top: 28px;
  }
}

@media (min-width: 1600px) {
  .people-copy {
    max-width: none;
    padding-right: 64px;
  }

  .people-copy h2 {
    font-size: clamp(40px, 2.55vw, 56px);
    white-space: nowrap;
  }

  .section-heading h2 br,
  .responsibility-content h2 br,
  .people-copy h2 br {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
