:root {
  color-scheme: dark;
  --black: #070708;
  --ink: #0d0d0f;
  --graphite: #1a1a1d;
  --smoke: #a8a8a5;
  --silver: #d4d4cf;
  --paper: #f2f1ed;
  --white: #fbfaf6;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(10, 10, 12, 0.22);
  --display: Constantia, "Palatino Linotype", Georgia, serif;
  --interface: Bahnschrift, "Arial Narrow", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 88px;
  --controls-h: 86px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-total-h: calc(var(--header-h) + var(--safe-top));
  --controls-total-h: calc(var(--controls-h) + var(--safe-bottom));
  --ink-muted: #666662;
  --atmosphere-opacity: 0.28;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

html[data-static-world="true"] {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  color: var(--paper);
  font-family: var(--interface);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--paper);
  color: var(--black);
}

* {
  scrollbar-color: #5e5e5e var(--black);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--black);
}

*::-webkit-scrollbar-thumb {
  border: 3px solid var(--black);
  background: #666662;
}

a {
  color: inherit;
  text-underline-offset: 0.24em;
}

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

button {
  color: inherit;
  font: inherit;
}

.no-js .scroll-world {
  height: 100svh;
  min-height: min(640px, 100svh);
}

.no-js .world-stage {
  position: relative;
}

.no-js .world-controls,
.no-js .hotspot-field,
.no-js .world-drawer,
.no-js .scroll-cue,
.no-js .nav-toggle {
  display: none !important;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--black);
  text-decoration: none;
  transition: transform 180ms var(--ease-out);
}

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

.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;
}

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-total-h);
  padding: 0 clamp(20px, 4.3vw, 72px);
  padding-top: var(--safe-top);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(to bottom, rgba(7, 7, 8, 0.94), rgba(7, 7, 8, 0.42));
  transition: background-color 420ms var(--ease-out), backdrop-filter 420ms var(--ease-out);
}

.site-header.is-solid {
  background: rgba(7, 7, 8, 0.93);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 48px;
  flex: 0 0 auto;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark-bars path {
  transform-box: fill-box;
  transform-origin: center;
  animation: brand-resolve 900ms var(--ease-out) both;
  animation-delay: calc(var(--i, 0) * 35ms);
}

.brand-mark-bars path:nth-child(1) { --i: 0; }
.brand-mark-bars path:nth-child(2) { --i: 1; }
.brand-mark-bars path:nth-child(3) { --i: 2; }
.brand-mark-bars path:nth-child(4) { --i: 3; }
.brand-mark-bars path:nth-child(5) { --i: 4; }
.brand-mark-bars path:nth-child(6) { --i: 5; }
.brand-mark-bars path:nth-child(7) { --i: 6; }
.brand-mark-bars path:nth-child(8) { --i: 7; }
.brand-mark-bars path:nth-child(9) { --i: 8; }
.brand-mark-bars path:nth-child(10) { --i: 9; }
.brand-mark-bars path:nth-child(11) { --i: 10; }
.brand-mark-bars path:nth-child(12) { --i: 11; }
.brand-mark-bars path:nth-child(13) { --i: 12; }
.brand-mark-bars path:nth-child(14) { --i: 13; }

@keyframes brand-resolve {
  from { transform: translateX(var(--dx)); opacity: 0.45; }
  to { transform: translateX(0); opacity: 1; }
}

.brand-name {
  display: grid;
  gap: 3px;
  line-height: 1;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.brand-name strong {
  font-size: 14px;
  font-weight: 560;
}

.brand-name small {
  font-size: 8px;
  letter-spacing: 0.42em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #d5d5d1;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--paper);
  transition: transform 240ms var(--ease-out);
}

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

.site-nav a[aria-current="location"] {
  color: var(--white);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-toggle i,
.nav-toggle i::before {
  display: block;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 240ms var(--ease-out);
}

.nav-toggle i::before {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i::before {
  transform: rotate(90deg);
}

.scroll-world {
  position: relative;
  height: 360svh;
  min-height: 2160px;
  background: var(--black);
  overflow-anchor: none;
}

.world-stage {
  position: sticky;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: min(640px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.world-media,
.world-film,
.world-poster,
.world-poster img,
.world-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-media {
  z-index: 0;
  overflow: hidden;
  background: var(--black);
}

.world-film {
  z-index: 1;
  transform: scale(1.008);
  transform-origin: center;
}

.world-poster,
.world-video {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  backface-visibility: hidden;
}

.world-poster {
  display: block;
  z-index: 1;
  margin: 0;
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.world-poster.is-active {
  opacity: 1;
}

.world-poster img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.world-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

body[data-static-world="false"] .world-media.is-video-ready .world-video {
  opacity: 1;
}

body[data-static-world="false"] .world-media.is-video-ready .world-poster {
  opacity: 0;
}

.world-media.is-media-error .world-video {
  display: none;
}

body[data-static-world="true"] .world-poster.is-active {
  opacity: 1;
}

.world-media::before {
  position: absolute;
  z-index: 7;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 2, 3, 0.34), transparent 24%, transparent 76%, rgba(2, 2, 3, 0.34)),
    linear-gradient(to bottom, rgba(4, 4, 5, 0.25), transparent 25%, transparent 72%, rgba(4, 4, 5, 0.36));
}

.world-media::after {
  position: absolute;
  z-index: 8;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background: linear-gradient(108deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 49%, transparent 56% 100%);
  mix-blend-mode: screen;
}

.world-atmosphere {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
  opacity: var(--atmosphere-opacity, 0.28);
  background:
    radial-gradient(ellipse at 50% 58%, transparent 0 42%, rgba(0, 0, 0, 0.28) 78%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent 34%, rgba(0, 0, 0, 0.16));
}

.world-copy {
  position: absolute;
  z-index: 20;
  inset: 0;
  pointer-events: none;
}

.state-copy {
  position: absolute;
  top: clamp(112px, 15vh, 160px);
  width: min(36vw, 590px);
  min-height: 360px;
  padding: clamp(30px, 3.3vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 7, 8, 0.92);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  visibility: hidden;
  transition: opacity 260ms var(--ease-out), transform 340ms var(--ease-out), visibility 0s linear 340ms;
  pointer-events: none;
}

.state-copy.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 0s;
  pointer-events: auto;
}

.world-copy.has-open-drawer .state-copy-structure {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
  visibility: hidden;
  pointer-events: none;
}

.world-copy.has-hotspots .state-copy-structure {
  opacity: 0;
  transform: translate3d(0, -12px, 0);
  visibility: hidden;
  pointer-events: none;
}

.state-copy-clarify,
.state-copy-advance {
  left: clamp(20px, 4.3vw, 72px);
}

.state-copy-structure {
  right: clamp(20px, 5vw, 82px);
}

.state-copy h1,
.state-copy h2 {
  max-width: 11ch;
  margin: 0 0 clamp(24px, 4vh, 44px);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(46px, 4.7vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.state-copy h2 {
  font-size: clamp(42px, 4.2vw, 68px);
}

.state-copy > p:not(.copy-status) {
  max-width: 58ch;
  margin: 0;
  color: #d0d0cc;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

.copy-status {
  margin: 30px 0 0;
  color: #a8a8a5;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.state-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.state-terms li {
  padding: 13px 18px 0 0;
  margin-right: 18px;
  color: #efefeb;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hotspot-field {
  position: absolute;
  z-index: 28;
  inset: var(--header-total-h) 0 var(--controls-total-h);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out), visibility 0s linear 260ms;
}

.hotspot-field.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.hotspot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(7, 7, 8, 0.88);
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.32);
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.hotspot-field.has-open-drawer .hotspot:not([aria-expanded="true"]) {
  opacity: 0.28;
}

.hotspot span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 42px;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.hotspot b {
  position: absolute;
  top: -1px;
  left: 100%;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-left: 0;
  background: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 180ms ease-out, transform 260ms var(--ease-out), visibility 0s linear 260ms;
  pointer-events: none;
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot[aria-expanded="true"] {
  transform: translate(-50%, -50%) translateY(-3px);
  background: var(--paper);
  color: var(--black);
}

.hotspot:hover b,
.hotspot:focus-visible b,
.hotspot[aria-expanded="true"] b {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.world-drawer {
  position: absolute;
  z-index: 34;
  top: 15%;
  right: clamp(20px, 5vw, 82px);
  width: min(36vw, 520px);
  min-height: 420px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 7, 8, 0.96);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity 260ms var(--ease-out), transform 360ms var(--ease-out), visibility 0s linear 360ms;
}

.world-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.world-drawer.is-refreshing .drawer-index,
.world-drawer.is-refreshing h3,
.world-drawer.is-refreshing > p:not(.drawer-index):not(.drawer-status),
.world-drawer.is-refreshing .drawer-status {
  animation: drawer-content-in 420ms var(--ease-out) both;
}

.world-drawer.is-refreshing h3 { animation-delay: 35ms; }
.world-drawer.is-refreshing > p:not(.drawer-index):not(.drawer-status) { animation-delay: 70ms; }
.world-drawer.is-refreshing .drawer-status { animation-delay: 105ms; }

@keyframes drawer-content-in {
  from {
    opacity: 0.18;
    transform: translate3d(0, 9px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.drawer-close {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
}

.drawer-close svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.drawer-index,
.drawer-status {
  color: #aaa9a5;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.world-drawer h3 {
  max-width: 11ch;
  margin: 45px 0 28px;
  font-family: var(--display);
  font-size: clamp(38px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.world-drawer > p:not(.drawer-index):not(.drawer-status) {
  max-width: 54ch;
  color: #d1d1cc;
}

.drawer-status {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.world-controls {
  position: absolute;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: var(--controls-total-h);
  padding-bottom: var(--safe-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 7, 8, 0.9);
  backdrop-filter: blur(10px);
}

body[data-static-world="true"] .scroll-world {
  height: 100svh;
  min-height: min(640px, 100svh);
}

body[data-static-world="true"] .world-stage {
  position: relative;
}

body[data-static-world="true"] .scroll-cue {
  display: none;
}

body[data-static-world="true"] .world-film,
body[data-static-world="true"] .world-video,
body[data-static-world="true"] .world-poster {
  transition: none;
}

.world-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.world-steps li {
  min-width: 0;
  border-right: 1px solid var(--line-dark);
}

.world-steps button {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: var(--controls-h);
  padding: 16px clamp(16px, 2.4vw, 40px);
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #888885;
  cursor: pointer;
  text-align: left;
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.world-steps button:hover,
.world-steps button:focus-visible,
.world-steps button[aria-current="step"] {
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
}

.world-steps span {
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.world-steps b {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.world-steps i {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  transform: scaleX(var(--step-progress, 0));
  transform-origin: left;
  background: var(--paper);
}

.motion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 170px;
  padding: 0 26px;
  border: 0;
  border-left: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-toggle:hover,
.motion-toggle:focus-visible,
.motion-toggle[aria-pressed="true"] {
  background: var(--paper);
  color: var(--black);
}

.motion-toggle svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.motion-icon-play,
.motion-icon-static {
  display: none;
}

.motion-icon-play {
  fill: currentColor;
  stroke: none;
}

.motion-toggle[aria-pressed="true"]:not(:disabled) .motion-icon-pause,
.motion-toggle:disabled .motion-icon-pause {
  display: none;
}

.motion-toggle[aria-pressed="true"]:not(:disabled) .motion-icon-play,
.motion-toggle:disabled .motion-icon-static {
  display: block;
}

.motion-toggle:disabled .motion-icon-play {
  display: none;
}

.scroll-cue {
  position: absolute;
  z-index: 24;
  bottom: calc(var(--controls-total-h) + 24px);
  left: clamp(20px, 4.3vw, 72px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #c5c5c1;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 68px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  background: var(--paper);
  animation: cue-line 1.8s var(--ease-out) infinite;
}

@keyframes cue-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.company-purpose {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: clamp(104px, 11vw, 176px) clamp(24px, 5vw, 82px) clamp(80px, 8vw, 126px);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  isolation: isolate;
}

.purpose-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.purpose-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0 32%, rgba(7, 7, 8, 0.82) 48%, rgba(7, 7, 8, 0.12) 76%, rgba(7, 7, 8, 0.06) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.18), transparent 52%, rgba(7, 7, 8, 0.92) 92%);
}

.purpose-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.purpose-intro,
.purpose-points {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.purpose-intro h2,
.benefits-intro h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.2vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.purpose-intro > p:last-child {
  max-width: 58ch;
  margin: 38px 0 0;
  color: #c7c7c2;
  font-size: clamp(17px, 1.35vw, 22px);
}

.purpose-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(820px, 68vw);
  margin-top: clamp(120px, 15vw, 230px);
  margin-left: max(0px, calc((100% - 1600px) / 2));
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: rgba(7, 7, 8, 0.78);
  list-style: none;
  backdrop-filter: blur(8px);
}

.purpose-points li {
  min-height: 154px;
  padding: 24px 28px 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.purpose-points span,
.benefits-grid span {
  color: #9d9d98;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.purpose-points h3,
.benefits-grid h3 {
  margin: 22px 0 12px;
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.purpose-points p,
.benefits-grid p {
  max-width: 38ch;
  margin: 0;
  color: #bdbdb8;
  font-size: 13px;
  line-height: 1.52;
}

.core-functions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(560px, 1.14fr);
  align-items: start;
  min-height: 100svh;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
  color: var(--black);
}

.functions-visual {
  position: sticky;
  top: var(--header-total-h);
  height: calc(100svh - var(--header-total-h));
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
  color: var(--paper);
}

.functions-visual picture,
.functions-visual picture::after {
  position: absolute;
  inset: 0;
  display: block;
}

.functions-visual picture::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.08), transparent 42%, rgba(7, 7, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.16), transparent 40%, rgba(7, 7, 8, 0.18));
}

.functions-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.functions-visual-copy {
  position: absolute;
  right: clamp(28px, 4vw, 66px);
  bottom: clamp(30px, 5vw, 72px);
  left: clamp(28px, 4vw, 66px);
  z-index: 1;
  max-width: 590px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.functions-visual-copy span {
  color: #b8b8b3;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.functions-visual-copy p {
  max-width: 23ch;
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.functions-content {
  padding: clamp(104px, 10vw, 168px) clamp(28px, 5vw, 86px) clamp(88px, 9vw, 150px);
}

.functions-intro {
  max-width: 900px;
}

.functions-intro h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 5.4vw, 86px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.functions-intro > p {
  max-width: 62ch;
  margin: 38px 0 0;
  font-size: clamp(17px, 1.25vw, 21px);
}

.functions-register {
  max-width: 980px;
  padding: 0;
  margin: clamp(92px, 9vw, 148px) 0 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.function-phase {
  display: grid;
  grid-template-columns: minmax(190px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 4vw, 66px);
  padding: clamp(40px, 4.2vw, 68px) 0;
  border-bottom: 1px solid var(--line-light);
}

.function-phase-heading span,
.function-pair article > span {
  display: block;
  color: var(--ink-muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.function-phase-heading h3 {
  max-width: 10ch;
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(29px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.function-pair {
  display: grid;
  gap: 34px;
}

.function-pair article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px 18px;
  align-items: start;
}

.function-pair article + article {
  padding-top: 34px;
  border-top: 1px solid rgba(10, 10, 12, 0.12);
}

.function-pair article > span {
  padding-top: 7px;
  font-variant-numeric: tabular-nums;
}

.function-pair h4 {
  max-width: 27ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.function-pair p {
  grid-column: 2;
  max-width: 62ch;
  margin: 8px 0 0;
  color: #424240;
  font-size: 14px;
  line-height: 1.58;
}

.market-focus {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(96px, 11vw, 180px) clamp(24px, 5vw, 82px) clamp(84px, 9vw, 150px);
  background: var(--paper);
  color: var(--black);
}

.company-purpose,
.core-functions,
.market-focus,
.mandate-conditions,
.company-benefits,
.commercial-profile,
.leadership {
  scroll-margin-top: var(--header-total-h);
}

.market-focus::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(24px, 5vw, 82px);
  width: 1px;
  content: "";
  background: rgba(8, 8, 9, 0.08);
  pointer-events: none;
}

.focus-visual-lead {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: clamp(820px, 65vw, 1020px);
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.focus-visual-lead::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 1px;
  content: "";
  background: var(--line-light);
}

.section-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(42px, 8vw, 140px);
  align-items: end;
  max-width: 1600px;
  margin: 0 auto clamp(76px, 9vw, 144px);
}

.market-focus .section-intro {
  z-index: 2;
  display: block;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: clamp(20px, 3vw, 52px) 0;
  pointer-events: none;
}

.market-focus .section-intro h2 {
  max-width: 8.6ch;
}

.market-focus .section-intro p {
  max-width: 35ch;
  margin: 34px 0 0;
}

.section-art {
  display: block;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-art-market {
  position: absolute;
  inset: 0;
}

.section-art-market img {
  object-position: center center;
}

.section-art-market::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--paper) 0 23%, rgba(242, 241, 237, 0.96) 31%, rgba(242, 241, 237, 0.55) 43%, transparent 60%),
    linear-gradient(180deg, rgba(242, 241, 237, 0.05) 54%, var(--paper) 100%);
}

.section-intro h2,
.profile-intro h2,
.closing h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.2vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-intro p {
  max-width: 65ch;
  margin: 0 0 8px;
  font-size: clamp(17px, 1.35vw, 22px);
}

.focus-register {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(8, 8, 9, 0.18);
  border-bottom: 1px solid var(--line-light);
  border-left: 1px solid rgba(8, 8, 9, 0.12);
  background: rgba(242, 241, 237, 0.9);
  backdrop-filter: blur(8px);
}

.focus-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(150px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: start;
  min-height: 184px;
  padding: 28px clamp(24px, 2.4vw, 40px);
  border-right: 1px solid rgba(8, 8, 9, 0.14);
  border-bottom: 1px solid rgba(8, 8, 9, 0.14);
}

.focus-row::after {
  display: none;
}

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

.focus-index {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.focus-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.focus-row p {
  max-width: 66ch;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.focus-row svg {
  display: none;
}

.focus-row-lens {
  background: rgba(7, 7, 8, 0.92);
  color: var(--paper);
}

.section-qualifier {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 18px auto 0;
  color: #5f5f5b;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.035em;
}

.section-qualifier-dark {
  color: #aaa9a5;
}

.mandate-conditions {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: clamp(88px, 9vw, 140px) clamp(24px, 5vw, 82px) clamp(76px, 7vw, 112px);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.conditions-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.conditions-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0 30%, rgba(7, 7, 8, 0.84) 47%, rgba(7, 7, 8, 0.18) 76%, rgba(7, 7, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.18), transparent 48%, rgba(7, 7, 8, 0.9) 86%);
}

.conditions-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.conditions-intro,
.conditions-register {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.conditions-intro h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.conditions-intro > p {
  max-width: 58ch;
  margin: 38px 0 0;
  color: #c7c7c2;
  font-size: clamp(17px, 1.35vw, 22px);
}

.conditions-register {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(96px, 11vw, 170px);
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 7, 8, 0.84);
  list-style: none;
  backdrop-filter: blur(8px);
}

.conditions-register li {
  min-height: 250px;
  padding: 28px clamp(20px, 2.2vw, 36px) 32px;
  border-right: 1px solid var(--line-dark);
}

.conditions-register li:last-child {
  border-right: 0;
}

.conditions-register span {
  color: #9f9f9a;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conditions-register h3 {
  max-width: 12ch;
  margin: 38px 0 20px;
  font-family: var(--display);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.conditions-register p {
  max-width: 32ch;
  margin: 0;
  color: #c2c2bd;
  font-size: 14px;
}

.conditions-note {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 18px auto 0;
  color: #93938e;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.company-benefits {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: clamp(88px, 9vw, 140px) clamp(24px, 5vw, 82px) clamp(76px, 7vw, 112px);
  overflow: hidden;
  background: var(--paper);
  color: var(--black);
  isolation: isolate;
}

.benefits-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.benefits-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(242, 241, 237, 0.99) 0 33%, rgba(242, 241, 237, 0.88) 47%, rgba(242, 241, 237, 0.18) 68%, rgba(242, 241, 237, 0.06) 100%),
    linear-gradient(180deg, rgba(242, 241, 237, 0.1), transparent 55%, rgba(242, 241, 237, 0.94) 92%);
}

.benefits-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefits-intro,
.benefits-grid {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.benefits-intro > p:last-child {
  max-width: 57ch;
  margin: 38px 0 0;
  color: #464643;
  font-size: clamp(17px, 1.35vw, 22px);
}

.benefits-intro h2 {
  font-size: clamp(44px, 4.8vw, 72px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(100px, 12vw, 190px);
  border-top: 1px solid rgba(8, 8, 9, 0.18);
  border-left: 1px solid rgba(8, 8, 9, 0.18);
  background: rgba(242, 241, 237, 0.88);
  backdrop-filter: blur(8px);
}

.benefits-grid article {
  min-height: 214px;
  padding: 28px clamp(20px, 2vw, 34px) 32px;
  border-right: 1px solid rgba(8, 8, 9, 0.18);
  border-bottom: 1px solid rgba(8, 8, 9, 0.18);
}

.benefits-grid span { color: #686864; }
.benefits-grid p { color: #444441; }
.commercial-profile {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  column-gap: clamp(56px, 8vw, 144px);
  row-gap: clamp(34px, 4vw, 64px);
  min-height: 92svh;
  padding: clamp(100px, 10vw, 170px) clamp(24px, 5vw, 82px);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  isolation: isolate;
}

.profile-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.profile-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0 24%, rgba(7, 7, 8, 0.88) 39%, rgba(7, 7, 8, 0.42) 60%, rgba(7, 7, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.78) 0, rgba(7, 7, 8, 0.06) 38%, rgba(7, 7, 8, 0.18) 72%, rgba(7, 7, 8, 0.9) 100%);
}

.profile-background img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.86;
  filter: grayscale(1) contrast(1.06) brightness(0.78);
  object-fit: cover;
  object-position: center 56%;
}

.profile-intro {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.profile-intro h2 {
  font-size: clamp(48px, 5.3vw, 82px);
}

.profile-intro > p {
  max-width: 62ch;
  margin: 42px 0 0;
  color: #bebeba;
}

.profile-accordion {
  position: relative;
  z-index: 1;
  align-self: start;
  padding: 0 clamp(12px, 1.8vw, 28px);
  background: linear-gradient(90deg, rgba(7, 7, 8, 0.76), rgba(7, 7, 8, 0.54));
  backdrop-filter: blur(4px);
}

.profile-accordion details {
  border-top: 1px solid var(--line-dark);
}

.profile-accordion details:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.profile-accordion summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto 28px;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  cursor: pointer;
  list-style: none;
}

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

.profile-accordion summary span,
.profile-accordion summary em {
  color: #969692;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-accordion summary strong {
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.profile-accordion summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.profile-accordion summary i::before,
.profile-accordion summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  transform: translate(-50%, -50%);
  background: currentColor;
  transition: transform 240ms var(--ease-out);
}

.profile-accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.profile-accordion details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.profile-accordion details > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease-out);
}

.profile-accordion details[open] > div {
  grid-template-rows: 1fr;
}

.profile-accordion details > div > p {
  max-width: 68ch;
  min-height: 0;
  margin: 0;
  padding: 0 46px 0 64px;
  overflow: hidden;
  color: #c8c8c4;
}

.profile-accordion details[open] > div > p {
  padding-bottom: 36px;
}

.leadership {
  position: relative;
  z-index: 2;
  padding: clamp(88px, 9vw, 140px) clamp(24px, 5vw, 82px);
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  background: var(--paper);
  color: var(--black);
}

.leadership-intro,
.leadership-grid {
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.leadership-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 88px);
}

.chairman-details > p:first-child,
.appointment-card div > p:first-child {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.leadership-intro h2 {
  grid-column: 2;
  max-width: 15ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: stretch;
}

.chairman-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid #c8c7c3;
  background: var(--black);
  color: var(--paper);
}

.chairman-portrait {
  position: absolute;
  inset: 0;
  margin: 0;
}

.chairman-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(7, 7, 8, 0.12) 58%, rgba(7, 7, 8, 0.98) 100%);
}

.chairman-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.chairman-details {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 3vw, 48px);
}

.chairman-details > p:first-child,
.appointment-card div > p:first-child {
  margin: 0;
  color: #a7a7a2;
}

.chairman-details h3,
.appointment-card h3 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.chairman-details h3 {
  font-size: clamp(34px, 3.5vw, 54px);
}

.chairman-details > p:last-child {
  max-width: 48ch;
  margin: 18px 0 0;
  color: #d0d0cb;
  font-size: 15px;
}

.company-appointments {
  align-self: stretch;
  border-top: 1px solid var(--line-light);
}

.appointment-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  min-height: 216px;
  padding: clamp(28px, 3vw, 48px) 0;
  border-bottom: 1px solid var(--line-light);
}

.appointment-card > span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid #9e9e9a;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.appointment-card h3 {
  font-size: clamp(31px, 3vw, 46px);
}

.appointment-card div > p:last-child {
  max-width: 56ch;
  margin: 17px 0 0;
  color: #555552;
  font-size: 14px;
}

.closing {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  min-height: 72svh;
  padding: clamp(100px, 12vw, 190px) clamp(24px, 5vw, 82px);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.closing-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.closing-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0 24%, rgba(7, 7, 8, 0.86) 42%, rgba(7, 7, 8, 0.18) 72%, rgba(7, 7, 8, 0.05) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.2), transparent 45%, rgba(7, 7, 8, 0.56));
}

.closing-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.closing > div {
  position: relative;
  z-index: 2;
}

.closing h2 {
  max-width: 13ch;
}

.closing p {
  max-width: 63ch;
  margin: 42px 0 0;
  color: #bdbdb9;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: start;
  padding: 34px clamp(24px, 5vw, 82px) calc(34px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  color: #aaa9a5;
}

.site-footer p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p:last-child {
  text-align: right;
}

@media (min-width: 821px) {
  body[data-static-world="true"] .hotspot-field.is-visible {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding: 0 24px 28px;
  }

  body[data-static-world="true"] .hotspot {
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: 32px auto;
    min-width: 96px;
    transform: none;
  }

  body[data-static-world="true"] .hotspot span {
    width: 32px;
  }

  body[data-static-world="true"] .hotspot b {
    position: static;
    min-height: 42px;
    padding: 0 10px 0 2px;
    border: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  body[data-static-world="true"] .hotspot:hover,
  body[data-static-world="true"] .hotspot:focus-visible,
  body[data-static-world="true"] .hotspot[aria-expanded="true"] {
    transform: translateY(-3px);
  }
}

@media (max-width: 1080px) {
  :root { --header-h: 88px; }

  .site-nav { gap: 20px; }
  .site-nav a { font-size: 10px; }

  .state-copy {
    width: min(50vw, 610px);
    padding: 38px;
  }

  .state-copy h1,
  .state-copy h2 { font-size: clamp(44px, 5.5vw, 64px); }

  .focus-row {
    grid-template-columns: 62px minmax(140px, 0.68fr) minmax(0, 1.32fr);
  }

  .core-functions {
    grid-template-columns: minmax(320px, 0.78fr) minmax(500px, 1.22fr);
  }

  .function-phase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .function-phase-heading h3 { max-width: 16ch; }

  .commercial-profile {
    grid-template-columns: 1fr 1.35fr;
  }
}

@media (max-width: 960px) {
  .commercial-profile {
    grid-template-columns: 1fr;
    gap: clamp(56px, 7vw, 68px);
    min-height: 0;
  }

  .profile-intro {
    max-width: 720px;
  }

  .profile-background img {
    position: absolute;
    top: clamp(200px, 25vw, 250px);
    left: -7.5%;
    width: 115%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 72%, transparent 100%);
  }

  .profile-background::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.97) 0 28%, rgba(7, 7, 8, 0.46) 44%, rgba(7, 7, 8, 0.64) 64%, rgba(7, 7, 8, 0.98) 100%),
      linear-gradient(90deg, rgba(7, 7, 8, 0.78), rgba(7, 7, 8, 0.34) 52%, rgba(7, 7, 8, 0.72));
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
    --controls-h: 76px;
  }

  .site-header {
    height: var(--header-total-h);
    padding: 0 20px;
    padding-top: var(--safe-top);
    background: rgba(7, 7, 8, 0.92);
  }

  .brand-mark { width: 28px; height: 40px; }
  .brand-name strong { font-size: 11px; }
  .brand-name small { font-size: 7px; }

  .nav-toggle { display: inline-flex; font-size: 10px; }

  .site-nav {
    position: fixed;
    top: var(--header-total-h);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 26px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    background: rgba(7, 7, 8, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms var(--ease-out), transform 280ms var(--ease-out), visibility 0s linear 280ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    min-height: 48px;
    padding: 17px 4px;
    border-bottom: 1px solid var(--line-dark);
  }

  .scroll-world {
    height: 360svh;
    min-height: 2020px;
  }

  .world-stage {
    min-height: 0;
  }

  .world-film { transform: none; }

  .world-media::before {
    background: linear-gradient(to bottom, rgba(2, 2, 3, 0.12), transparent 30%, rgba(2, 2, 3, 0.36) 70%, rgba(2, 2, 3, 0.72));
  }

  .state-copy {
    top: auto;
    right: 18px;
    bottom: calc(var(--controls-total-h) + 52px);
    left: 18px;
    width: auto;
    min-height: 0;
    max-height: min(49svh, 464px);
    padding: 22px 20px 20px;
    overflow-y: auto;
    background: rgba(7, 7, 8, 0.93);
  }

  .state-copy h1,
  .state-copy h2 {
    max-width: 13ch;
    margin-bottom: 17px;
    font-size: clamp(34px, 9.2vw, 50px);
    line-height: 0.98;
  }

  .state-copy > p:not(.copy-status) {
    font-size: 14px;
    line-height: 1.42;
  }

  .copy-status { margin-top: 14px; font-size: 10px; }
  .state-terms { margin-top: 17px; }

  .world-controls {
    min-height: var(--controls-total-h);
    grid-template-columns: 1fr 54px;
  }

  .world-steps button {
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: var(--controls-h);
    padding: 13px 10px;
    text-align: center;
  }

  .world-steps span { font-size: 8px; }
  .world-steps b { font-size: 10px; letter-spacing: 0.09em; }

  .motion-toggle {
    min-width: 54px;
    padding: 0;
    justify-content: center;
  }

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

  .scroll-cue { display: none; }

  .hotspot-field {
    inset: var(--header-total-h) 0 var(--controls-total-h);
  }

  .hotspot {
    grid-template-columns: 32px auto;
    min-width: 92px;
  }

  .hotspot span {
    width: 32px;
    height: 42px;
  }

  .hotspot b {
    position: static;
    display: flex;
    min-height: 42px;
    padding: 0 9px 0 2px;
    border: 0;
    background: transparent;
    font-size: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hotspot:nth-child(1) { --x:26% !important; --y:17% !important; }
  .hotspot:nth-child(2) { --x:74% !important; --y:17% !important; }
  .hotspot:nth-child(3) { --x:26% !important; --y:29% !important; }
  .hotspot:nth-child(4) { --x:74% !important; --y:29% !important; }
  .hotspot:nth-child(5) { --x:50% !important; --y:41% !important; }

  .world-drawer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    column-gap: 16px;
    align-content: start;
    top: auto;
    right: 0;
    bottom: var(--controls-total-h);
    left: 0;
    width: auto;
    min-height: 0;
    max-height: calc(100svh - var(--header-total-h) - var(--controls-total-h));
    padding: 24px 24px 30px;
    overflow-y: auto;
    transform: translateY(32px);
  }

  .world-drawer .drawer-close {
    position: sticky;
    top: 0;
    right: auto;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .world-drawer .drawer-index {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .world-drawer h3 {
    grid-column: 1 / -1;
    margin: 24px 0 18px;
    font-size: clamp(34px, 9vw, 42px);
  }

  .world-drawer > p:not(.drawer-index) {
    grid-column: 1 / -1;
  }

  .company-purpose {
    min-height: 0;
    padding: 88px 20px 76px;
  }

  .company-benefits {
    min-height: 0;
    padding: 72px 20px 68px;
  }

  .core-functions {
    display: block;
    min-height: 0;
  }

  .functions-visual {
    position: relative;
    top: auto;
    height: clamp(430px, 118vw, 710px);
    min-height: 0;
  }

  .functions-visual img { object-position: center 46%; }

  .functions-visual-copy {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .functions-visual-copy p {
    max-width: 18ch;
    font-size: clamp(31px, 8.6vw, 44px);
  }

  .functions-content {
    padding: 88px 20px 76px;
  }

  .functions-intro h2 {
    font-size: clamp(48px, 11vw, 72px);
  }

  .functions-intro > p {
    margin-top: 30px;
    font-size: 16px;
  }

  .functions-register { margin-top: 72px; }

  .function-phase {
    gap: 36px;
    padding: 44px 0;
  }

  .function-phase-heading h3 {
    margin-top: 18px;
    font-size: 34px;
  }

  .function-pair h4 { font-size: 29px; }

  .function-pair p {
    max-width: 58ch;
    font-size: 14px;
  }

  .purpose-art img,
  .benefits-art img {
    object-fit: contain;
    object-position: top center;
  }

  .purpose-art::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.96), rgba(7, 7, 8, 0.56) 72%, rgba(7, 7, 8, 0.18)),
      linear-gradient(180deg, rgba(7, 7, 8, 0.1), rgba(7, 7, 8, 0.78) 30%, var(--black) 46%);
  }

  .benefits-art::after {
    background:
      linear-gradient(90deg, rgba(242, 241, 237, 0.96), rgba(242, 241, 237, 0.54) 76%, rgba(242, 241, 237, 0.14)),
      linear-gradient(180deg, rgba(242, 241, 237, 0.06), rgba(242, 241, 237, 0.84) 30%, var(--paper) 46%);
  }

  .purpose-intro h2,
  .benefits-intro h2 {
    font-size: clamp(48px, 11vw, 72px);
  }

  .benefits-intro h2 {
    font-size: clamp(40px, 9.5vw, 56px);
  }

  .purpose-intro > p:last-child,
  .benefits-intro > p:last-child {
    margin-top: 30px;
    font-size: 16px;
  }

  .purpose-points,
  .benefits-grid {
    grid-template-columns: 1fr;
    width: auto;
    margin-top: 72px;
    margin-left: 0;
  }

  .purpose-points {
    background: rgba(7, 7, 8, 0.9);
  }

  .benefits-grid {
    margin-top: 56px;
  }

  .purpose-points li,
  .benefits-grid article {
    min-height: 0;
    padding: 26px 22px 30px;
  }

  .purpose-points h3,
  .benefits-grid h3 {
    margin: 20px 0 12px;
    font-size: 32px;
  }

  .purpose-points p,
  .benefits-grid p {
    max-width: 58ch;
    font-size: 14px;
  }

  .section-intro,
  .commercial-profile,
  .leadership-intro,
  .leadership-grid,
  .closing {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 36px;
    margin-bottom: 72px;
  }

  .focus-visual-lead {
    display: flex;
    min-height: 0;
    margin-bottom: 0;
    overflow: visible;
    flex-direction: column;
  }

  .market-focus .section-intro {
    min-height: 0;
    margin-bottom: 38px;
    padding: 0;
  }

  .market-focus .section-intro p {
    max-width: 55ch;
    margin-top: 28px;
  }

  .section-art-market {
    position: relative;
    height: clamp(250px, 64vw, 370px);
  }

  .section-art-market img {
    object-position: 68% center;
  }

  .section-art-market::after {
    background:
      linear-gradient(180deg, var(--paper) 0, transparent 17%, transparent 80%, var(--paper) 100%),
      linear-gradient(90deg, rgba(242, 241, 237, 0.32), transparent 32%);
  }

  .focus-register {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
    grid-template-columns: 1fr;
    margin-top: -28px;
    border-right: 1px solid rgba(8, 8, 9, 0.12);
    background: rgba(242, 241, 237, 0.96);
  }

  .section-intro h2,
  .purpose-intro h2,
  .profile-intro h2,
  .closing h2 {
    font-size: clamp(48px, 11vw, 72px);
  }

  .benefits-intro h2,
  .conditions-intro h2,
  .leadership-intro h2 {
    font-size: clamp(40px, 9.5vw, 56px);
  }

  .focus-row {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px 18px;
    min-height: 0;
    padding: 28px 22px 30px;
    border-right: 0;
  }

  .focus-row h3 { font-size: 38px; }

  .focus-row p {
    grid-column: 2;
    font-size: 14px;
  }

  .focus-row svg { display: none; }

  .mandate-conditions {
    min-height: 0;
    padding: 72px 20px 68px;
  }

  .conditions-art img { object-position: 67% center; }

  .conditions-art::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0 45%, rgba(7, 7, 8, 0.78) 72%, rgba(7, 7, 8, 0.28) 100%),
      linear-gradient(180deg, rgba(7, 7, 8, 0.28), transparent 34%, rgba(7, 7, 8, 0.94) 66%);
  }

  .conditions-intro > p {
    margin-top: 30px;
    font-size: 16px;
  }

  .conditions-register {
    grid-template-columns: 1fr;
    margin-top: 56px;
    background: rgba(7, 7, 8, 0.9);
  }

  .conditions-register li {
    min-height: 0;
    padding: 26px 22px 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .conditions-register li:last-child { border-bottom: 0; }
  .conditions-register h3 { margin: 22px 0 14px; }
  .conditions-register p { max-width: 58ch; }
  .conditions-note { text-align: left; }
  .commercial-profile {
    min-height: 0;
    gap: 64px;
  }

  .profile-background img {
    top: clamp(190px, 56vw, 250px);
    left: -22%;
    width: 144%;
  }

  .profile-background::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.97) 0 29%, rgba(7, 7, 8, 0.44) 45%, rgba(7, 7, 8, 0.68) 65%, rgba(7, 7, 8, 0.98) 100%),
      linear-gradient(90deg, rgba(7, 7, 8, 0.78), rgba(7, 7, 8, 0.32) 52%, rgba(7, 7, 8, 0.72));
  }

  .leadership-intro {
    gap: 24px;
    margin-bottom: 62px;
  }

  .leadership-intro h2 {
    grid-column: 1;
    font-size: clamp(40px, 9.5vw, 56px);
  }

  .leadership {
    padding-top: 80px;
    padding-bottom: 76px;
  }

  .chairman-card {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .appointment-card {
    min-height: 190px;
  }

  .profile-accordion summary {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    min-height: 82px;
  }

  .profile-accordion summary em { display: none; }
  .profile-accordion details > div > p { padding-right: 0; padding-left: 52px; }

  .closing {
    min-height: 78svh;
    align-items: start;
  }
  .closing-art img { object-position: 67% center; }
  .closing-art::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0 36%, rgba(7, 7, 8, 0.82) 63%, rgba(7, 7, 8, 0.22) 100%),
      linear-gradient(180deg, rgba(7, 7, 8, 0.2), transparent 42%, rgba(7, 7, 8, 0.72));
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer p:last-child { text-align: left; }

  .no-js .site-header {
    position: relative;
    height: auto;
    min-height: var(--header-total-h);
    flex-wrap: wrap;
  }

  .no-js .site-nav {
    position: static;
    flex: 1 0 100%;
    padding: 10px 0 18px;
    border-bottom: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (max-width: 520px) {
  .brand-name strong { font-size: 10px; letter-spacing: 0.14em; }
  .brand-name small { letter-spacing: 0.32em; }

  .state-copy h1,
  .state-copy h2 { font-size: clamp(33px, 8.8vw, 42px); }

  .state-copy-clarify { max-height: min(47svh, 442px); }

  .market-focus,
  .commercial-profile,
  .leadership { padding-right: 20px; padding-left: 20px; }

  .profile-accordion details > div > p {
    padding-left: 34px;
  }

  .section-intro h2,
  .functions-intro h2,
  .purpose-intro h2,
  .profile-intro h2,
  .closing h2 { font-size: clamp(43px, 13vw, 62px); }

  .benefits-intro h2,
  .conditions-intro h2,
  .leadership-intro h2 { font-size: clamp(38px, 11vw, 52px); }

  .appointment-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 20px;
  }

  .appointment-card > span {
    width: 68px;
    height: 68px;
    font-size: 21px;
  }

}

@media (max-width: 820px) and (max-height: 680px) {
  .state-copy {
    right: 14px;
    bottom: calc(var(--controls-total-h) + 66px);
    left: 14px;
    max-height: 40svh;
    padding: 15px 16px;
  }

  .state-copy h1,
  .state-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(28px, 9vw, 36px);
  }

  .state-copy > p:not(.copy-status) {
    font-size: 14px;
    line-height: 1.42;
  }

  .copy-status { margin-top: 9px; font-size: 10px; }
  .state-terms { display: none; }

  .world-drawer {
    padding: 16px 18px 18px;
  }

  .world-drawer h3 {
    margin: 14px 0 12px;
    font-size: clamp(31px, 8.5vw, 36px);
  }

  .world-drawer > p:not(.drawer-index):not(.drawer-status) {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.42;
  }

  .world-drawer .drawer-status {
    margin-top: 14px;
    padding-top: 12px;
    font-size: 9px;
  }

  .hotspot:nth-child(1),
  .hotspot:nth-child(2) { --y:8% !important; }

  .hotspot:nth-child(3),
  .hotspot:nth-child(4) { --y:19% !important; }

  .hotspot:nth-child(5) { --y:30% !important; }

  body[data-static-world="true"] .scroll-world,
  body[data-static-world="true"] .world-stage {
    min-height: 100svh;
  }
}

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

  .brand-mark-bars path,
  .scroll-cue i::after,
  .world-drawer.is-refreshing .drawer-index,
  .world-drawer.is-refreshing h3,
  .world-drawer.is-refreshing > p:not(.drawer-index):not(.drawer-status),
  .world-drawer.is-refreshing .drawer-status {
    animation: none;
  }

  .site-header,
  .site-nav,
  .site-nav a::after,
  .nav-toggle i,
  .nav-toggle i::before,
  .world-poster,
  .world-video,
  .state-copy,
  .hotspot-field,
  .hotspot,
  .hotspot b,
  .world-drawer,
  .profile-accordion details > div,
  .profile-accordion summary i::after {
    transition: none;
  }

  .scroll-cue i::after { display: none; }
  .world-film { transform: none; }
}

@media print {
  .site-header,
  .world-controls,
  .scroll-cue,
  .hotspot-field,
  .world-drawer { display: none !important; }

  .scroll-world { height: auto; min-height: 0; }
  .world-stage { position: relative; height: 720px; min-height: 0; }
  .world-video { display: none !important; }
  .world-poster { opacity: 1 !important; }
  .state-copy { position: absolute; opacity: 1; visibility: visible; filter: none; }
  .market-focus,
  .leadership { break-inside: avoid; }
}
