:root {
  --ink: #07151d;
  --harbor: #114f6c;
  --gold: #c99a3d;
  --paper: #f6f7f3;
  --oxide: #64766f;
  --carbon: #161a1d;
}
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }
:where(a, button, input, select, textarea):focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--carbon);
  background: var(--paper);
  font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
.text-sm { font-size: 15px; }

.form-toast-region {
  position: fixed;
  z-index: 1200;
  top: calc(94px + env(safe-area-inset-top, 0px));
  right: max(24px, env(safe-area-inset-right, 0px));
  width: min(420px, calc(100vw - 48px));
  display: grid;
  gap: 12px;
  pointer-events: none;
}
.form-toast {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 36px;
  gap: 13px;
  align-items: center;
  padding: 16px 12px 16px 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 21, 29, .22);
  opacity: 0;
  pointer-events: auto;
  transform: translate3d(0, -14px, 0) scale(.98);
  transition: opacity .2s ease, transform .34s cubic-bezier(.16, 1, .3, 1);
}
.form-toast.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.form-toast-icon { display: grid; width: 24px; height: 24px; place-items: center; }
.form-toast-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.form-toast-success .form-toast-icon { color: #16724d; }
.form-toast-error .form-toast-icon { color: #b42318; }
.form-toast-message {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}
.form-toast-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(7, 21, 29, .58);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.form-toast-close:hover { color: var(--ink); background: rgba(7, 21, 29, .06); }
.form-toast-close svg { width: 18px; height: 18px; stroke-width: 1.8; }

@media (max-width: 640px) {
  .form-toast-region {
    top: calc(70px + env(safe-area-inset-top, 0px));
    right: 16px;
    left: 16px;
    width: auto;
  }
  .form-toast { grid-template-columns: 22px minmax(0, 1fr) 36px; padding: 14px 10px 14px 16px; }
  .form-toast-message { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .form-toast { transition: none; transform: none; }
}
.font-condensed {
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", "Inter", sans-serif;
  letter-spacing: .08em;
}
.site-shell { overflow: hidden; background: var(--paper); }
.site-shell[data-page="news-detail"] { overflow: visible; overflow-x: clip; }
.site-shell[data-page="privacy-policy"],
.site-shell[data-page="user-agreement"] { overflow: visible; overflow-x: clip; }
.container-x { width: min(100% - 40px, 1240px); margin-inline: auto; }
.section-pad { padding-block: clamp(72px, 8vw, 132px); }
.hairline { height: 1px; background: rgba(7, 21, 29, .12); }
.gold-line { position: relative; }
.gold-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 52px;
  height: 2px;
  background: var(--gold);
}
.aperture-frame {
  position: relative;
  min-height: 460px;
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  background: var(--ink);
  padding: clamp(14px, 1.8vw, 24px);
}
.aperture-frame::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 0;
  width: 7px;
  height: 38%;
  background: var(--gold);
  transform: skewX(-18deg);
}
.aperture-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  clip-path: polygon(17% 7%, 96% 5%, 82% 94%, 3% 94%);
  filter: saturate(.94) contrast(1.03);
}
.slash-panel { clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%); }
.slash-panel-reverse { clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%); }
.image-cut { clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }
.image-cut-reverse { clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  color: rgba(7, 21, 29, .86);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover::after,
.nav-link.active::after,
.nav-item.open > .nav-link::after { transform: scaleX(1); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-group-trigger {
  gap: 6px;
  padding: 0;
  border: 0;
  font-family: inherit;
  background: transparent;
  cursor: pointer;
}
.nav-group-trigger svg { width: 15px; height: 15px; stroke-width: 1.7; transition: transform .25s ease; }
.nav-item.open > .nav-group-trigger svg,
.nav-item:hover > .nav-group-trigger svg { transform: rotate(180deg); }
.nav-submenu {
  position: absolute;
  z-index: 4;
  top: 100%;
  left: 0;
  min-width: 196px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(246,247,243,.98);
  border-top: 2px solid var(--gold);
  box-shadow: 0 18px 38px rgba(7,21,29,.16);
  transform: translateY(10px);
  transition: opacity .2s ease, transform .25s cubic-bezier(.16,1,.3,1), visibility 0s linear .25s;
}
.nav-item:hover > .nav-submenu,
.nav-item.open > .nav-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-submenu-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 16px;
  color: rgba(7,21,29,.72);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}
.nav-submenu-link:hover,
.nav-submenu-link.active { color: var(--ink); background: rgba(201,154,61,.1); }
.page-hero { padding-top: clamp(110px, 10vw, 150px); }
.page-hero .text-sm { font-size: 15px; }
.team-hero {
  position: relative;
  height: clamp(343px, 26.8vw, 412px);
  margin-top: 78px;
  overflow: hidden;
  color: white;
  background: #1477a8;
}
.team-hero-background {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}
.team-hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,21,29,.18) 36%, rgba(7,21,29,0) 70%, rgba(7,21,29,.12));
  pointer-events: none;
}
.team-hero-panel {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: 42.2%;
  background: var(--ink);
  clip-path: polygon(0 0, 81.5% 0, 100% 100%, 0 100%);
}
.team-hero-inner {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 160px), 1536px);
  height: 100%;
  margin-inline: auto;
}
.team-hero-copy {
  position: absolute;
  top: 60px;
  left: 0;
  width: min(370px, calc(34.4vw - max(80px, calc((100vw - 1536px) / 2)) - 24px));
  min-width: 0;
  max-width: 100%;
}
.team-hero-kicker {
  max-width: 100%;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.team-hero-copy h1 {
  max-width: 100%;
  margin: 14px 0 0;
  color: white;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.28;
}
.team-hero-rule {
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 20px;
  background: var(--gold);
}
.team-hero-desc {
  max-width: 100%;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.65;
  white-space: normal;
  overflow-wrap: break-word;
}
.team-page-hero { height: clamp(460px, 32vw, 500px); }
.team-page-hero .team-hero-copy { width: min(370px, calc(34.4vw - max(80px, calc((100vw - 1536px) / 2)) - 24px)); }
.team-page-hero .team-hero-desc {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}
@media (min-width: 768px) and (max-width: 1180px) {
  .team-page-hero {
    height: 500px;
  }
  .team-page-hero .team-hero-panel {
    width: 58%;
  }
  .team-page-hero .team-hero-copy {
    top: 52px;
    width: min(430px, calc(47.25vw - max(40px, calc((100vw - 1536px) / 2)) - 24px));
  }
}
.team-hero-portrait {
  position: absolute;
  z-index: 5;
  right: max(10.7%, calc((100% - 1536px) / 2 + 137px));
  bottom: -1px;
  display: block;
  width: min(31vw, 390px);
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
}
.team-hero-background[data-aos="team-hero-background"] {
  opacity: 1;
  transform: scale(1.055);
  transition-property: transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.team-hero-background[data-aos="team-hero-background"].aos-animate { transform: scale(1); }
.team-hero-panel[data-aos="team-hero-panel"] {
  opacity: 1;
  transform: translate3d(-14%,0,0);
  transition-property: transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.team-hero-panel[data-aos="team-hero-panel"].aos-animate { transform: translate3d(0,0,0); }

.team-chairman {
  margin-top: 5px;
  background: var(--paper);
}
.team-chairman-inner {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(340px, 26vw, 420px);
  margin-inline: auto;
  overflow: hidden;
  color: white;
  background: #061c2a;
}
.team-chairman-media {
  --team-media-clip: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  --team-seam-top-inner: 89.65%;
  --team-seam-top-outer: 90%;
  --team-seam-bottom-inner: 98.4%;
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  clip-path: var(--team-media-clip);
}
.team-chairman-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.04);
  transform: scale(1.045);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.team-chairman-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: var(--gold);
  clip-path: polygon(var(--team-seam-top-inner) 0, var(--team-seam-top-outer) 0, 100% 100%, var(--team-seam-bottom-inner) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .85s cubic-bezier(.16,1,.3,1) .28s;
}
.team-chairman-media[data-aos="team-chairman-media"] {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transition-property: clip-path;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.team-chairman-media[data-aos="team-chairman-media"].aos-animate { clip-path: var(--team-media-clip); }
.team-chairman-media[data-aos="team-chairman-media"].aos-animate img { transform: scale(1); }
.team-chairman-media[data-aos="team-chairman-media"].aos-animate::after { transform: scaleY(1); }
.team-chairman-panel {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #061c2a;
}
.team-chairman-copy {
  width: min(50%, 768px);
  height: 100%;
  margin-left: max(50%, calc((100% - 1536px) / 2 + 768px));
  padding: clamp(58px, 5vw, 76px) clamp(32px, 4vw, 64px) 40px clamp(40px, 3.6vw, 56px);
}
.team-chairman-heading h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  line-height: 1.2;
}
.team-chairman-heading strong {
  color: var(--gold);
  font-size: clamp(28px, 2.35vw, 34px);
  font-weight: 800;
}
.team-chairman-heading h2 > span {
  width: 1px;
  height: 25px;
  background: rgba(255,255,255,.5);
}
.team-chairman-heading em {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}
.team-chairman-statement {
  margin-top: 22px;
  color: white;
  font-size: clamp(22px, 1.95vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
.team-chairman-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}
.team-chairman-principle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-right: 16px;
}
.team-chairman-principle:not(:first-child) { padding-left: 20px; }
.team-chairman-principle:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: rgba(201,154,61,.42);
}
@media (min-width: 1001px) {
  .team-chairman-principles { row-gap: 48px; }
  .team-chairman-principle:nth-child(n+4) {
    padding-left: 0;
    padding-right: 20px;
    border-right: 1px solid rgba(201,154,61,.42);
  }
  .team-chairman-principle:nth-child(n+4)::before { display: none; }
  .team-chairman-principle:nth-child(3n) { border-right: 0; }
  .team-chairman-principle:nth-child(3n+1):not(:first-child)::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -24px;
    right: auto;
    bottom: auto;
    left: 0;
    display: block;
    width: 300%;
    height: 1px;
    background: rgba(201,154,61,.34);
  }
}
.team-chairman-principle-icon {
  display: grid;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(201,154,61,.92);
  border-radius: 50%;
  color: var(--gold);
}
.team-chairman-principle-icon svg { width: 25px; height: 25px; stroke-width: 1.7; }
.team-chairman-principle strong {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}
[data-aos="team-chairman-copy"] {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(32px,0,0);
  transition-property: opacity, filter, transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="team-chairman-copy"].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0);
}
[data-aos="team-chairman-item"] {
  opacity: 0;
  transform: translate3d(0,20px,0);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="team-chairman-item"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }

/* Large portrait cards keep the team structure visual and reveal detail on intent. */
.team-functions {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 7vw, 128px) 0;
  background: #f1f3f0;
}
.team-functions-inner {
  width: min(calc(100% - 128px), 1536px);
  margin-inline: auto;
}
.team-functions-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 510px);
  gap: 72px;
  align-items: end;
  margin-bottom: clamp(40px, 4vw, 58px);
}
.team-functions-heading > div {
  position: relative;
  padding-left: 22px;
}
.team-functions-heading > div::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 2px;
  left: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .72s cubic-bezier(.16,1,.3,1) .18s;
}
.team-functions-heading.aos-animate > div::before { transform: scaleY(1); }
.team-functions-heading p {
  margin: 0;
  color: rgba(7,21,29,.6);
  font-size: 15px;
  line-height: 1.8;
}
.team-functions-heading > div p {
  color: var(--gold);
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
}
.team-functions-heading h2 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 2.45vw, 38px);
  font-weight: 800;
  line-height: 1.25;
}
.team-functions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.team-function-card {
  position: relative;
  flex: 0 1 calc((100% - 48px) / 4);
  min-width: 0;
  aspect-ratio: 5 / 7;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: white;
  background: #0a1c25;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}
.team-function-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,15,22,.02) 35%, rgba(3,15,22,.22) 58%, rgba(3,15,22,.94) 100%);
  transition: background .55s ease;
}
.team-function-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.team-function-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.86) contrast(1.02);
  transform: scale(1.01);
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .5s ease;
}
.team-function-overlay {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 2vw, 30px);
  bottom: clamp(22px, 2.4vw, 34px);
  left: clamp(20px, 2vw, 30px);
  display: block;
}
.team-function-summary {
  display: flex;
  align-items: baseline;
  gap: 13px;
  padding-right: 42px;
}
.team-function-summary strong {
  color: white;
  font-size: clamp(23px, 1.8vw, 29px);
  font-weight: 800;
  line-height: 1.25;
}
.team-function-summary em {
  color: rgba(255,255,255,.76);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}
.team-function-detail {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,16px,0);
  transition: opacity .3s ease, transform .48s cubic-bezier(.16,1,.3,1), visibility 0s linear .48s;
}
.team-function-detail > span {
  padding-top: 2px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}
.team-function-detail b {
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}
.team-function-toggle {
  position: absolute;
  right: 0;
  bottom: 1px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  color: white;
  transition: color .35s ease, border-color .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
}
.team-function-toggle svg { width: 16px; height: 16px; stroke-width: 1.8; }
.team-function-card:is(:hover, :focus-visible, [aria-expanded="true"])::before {
  background: linear-gradient(180deg, rgba(3,15,22,.2) 18%, rgba(3,15,22,.5) 54%, rgba(3,15,22,.97) 100%);
}
.team-function-card:is(:hover, :focus-visible, [aria-expanded="true"])::after { transform: scaleY(1); }
.team-function-card:is(:hover, :focus-visible, [aria-expanded="true"]) img {
  filter: saturate(.72) contrast(1.04);
  transform: scale(1.065);
}
.team-function-card:is(:hover, :focus-visible, [aria-expanded="true"]) .team-function-detail {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0,0,0);
  transition-delay: 0s;
}
.team-function-card:is(:hover, :focus-visible, [aria-expanded="true"]) .team-function-toggle {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}
.team-function-card:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
[data-aos="team-functions-heading"] {
  opacity: 0;
  transform: translate3d(0,28px,0);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="team-functions-heading"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="team-function-card"] {
  opacity: 0;
  backface-visibility: hidden;
  transform: translate3d(0,44px,0) scale(.985);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
[data-aos="team-function-card"].aos-animate {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  will-change: auto;
}

body.team-member-modal-open { overflow: hidden; }
.team-member-modal-backdrop {
  position: fixed;
  z-index: 1099;
  inset: 0;
  background: rgba(2,12,18,.82);
  backdrop-filter: blur(4px);
}
.team-member-modal-backdrop[hidden] { display: none; }
.team-member-modal {
  width: min(calc(100% - 48px), 1040px);
  max-width: 1040px;
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 0;
  box-shadow: 0 32px 90px rgba(0,0,0,.42);
}
.team-member-modal::backdrop {
  background: rgba(2,12,18,.82);
  backdrop-filter: blur(4px);
  animation: team-member-backdrop-in .32s ease-out both;
}
.team-member-modal[open] { animation: team-member-modal-in .48s cubic-bezier(.16,1,.3,1) both; }
.team-member-modal.is-fallback-open {
  position: fixed;
  z-index: 1100;
  inset: 50% auto auto 50%;
  display: block;
  margin: 0;
  transform: translate(-50%,-50%);
}
.team-member-modal-shell {
  display: grid;
  grid-template-columns: minmax(360px, 44%) minmax(0, 1fr);
  height: min(78vh, 700px);
  min-height: 560px;
  overflow: hidden;
}
.team-member-modal-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #0b202a;
}
.team-member-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,12,18,.02) 45%, rgba(2,12,18,.78) 100%);
  pointer-events: none;
}
.team-member-modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.8) contrast(1.03);
}
.team-member-modal-media figcaption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.team-member-modal-media figcaption > span:first-child { color: white; }
.team-member-modal-media figcaption i { width: 36px; height: 1px; background: var(--gold); }
.team-member-modal-content {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: clamp(52px, 4.5vw, 66px) clamp(42px, 5.5vw, 78px) 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.team-member-modal-shell,
.team-member-modal-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(201,154,61,.72) rgba(255,255,255,.06);
}
.team-member-modal-shell::-webkit-scrollbar,
.team-member-modal-content::-webkit-scrollbar { width: 6px; }
.team-member-modal-shell::-webkit-scrollbar-track,
.team-member-modal-content::-webkit-scrollbar-track { background: rgba(255,255,255,.06); }
.team-member-modal-shell::-webkit-scrollbar-thumb,
.team-member-modal-content::-webkit-scrollbar-thumb { background: rgba(201,154,61,.72); }
.team-member-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  color: white;
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.team-member-modal-close:hover { color: var(--ink); background: white; border-color: white; }
.team-member-modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.team-member-modal-close svg { width: 21px; height: 21px; stroke-width: 1.7; }
.team-member-modal-kicker {
  margin: 0;
  color: var(--gold);
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.team-member-modal-content h2 {
  margin: 18px 0 0;
  overflow-wrap: anywhere;
  color: white;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
}
.team-member-modal-role {
  margin: 13px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}
.team-member-modal-rule { width: 52px; height: 2px; margin-top: 24px; background: var(--gold); }
.team-member-modal-profile { margin-top: clamp(28px, 3vh, 36px); }
.team-member-modal-profile > p:first-child,
.team-member-modal-duty > p {
  margin: 0 0 13px;
  color: rgba(255,255,255,.55);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}
.team-member-modal-profile > p:last-child {
  max-width: 42ch;
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.78;
}
.team-member-modal-duty {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.team-member-modal-duty strong {
  display: block;
  max-width: 38ch;
  overflow-wrap: anywhere;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}
.team-member-modal-content footer {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.38);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.team-member-modal-content footer span:last-child { color: rgba(255,255,255,.7); }
@keyframes team-member-modal-in {
  from { opacity: 0; transform: translate3d(0,24px,0) scale(.985); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}
@keyframes team-member-backdrop-in { from { opacity: 0; } to { opacity: 1; } }

.team-band-heading {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 0;
}
.team-band-heading h2,
.team-band-heading p { margin: 0; }
.team-band-heading h2 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}
.team-band-heading > span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
}
.team-band-heading p {
  color: rgba(7,21,29,.62);
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
[data-aos="team-band-heading"] {
  opacity: 0;
  transform: translate3d(-24px,0,0);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="team-band-heading"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }

.team-mechanism {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  color: white;
  background: #061c2a;
}
.team-mechanism-inner,
.team-principles-inner {
  width: min(calc(100% - 128px), 1536px);
  margin-inline: auto;
}
.team-band-heading-dark h2 { color: white; }
.team-band-heading-dark p { color: rgba(255,255,255,.68); }
.team-mechanism-scroll { margin-top: 46px; }
.team-mechanism-track { position: relative; min-width: 0; }
.team-mechanism-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-mechanism-list li { min-width: 0; padding: 0 clamp(16px, 2.2vw, 34px); }
.team-mechanism-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: rgba(255,255,255,.9);
}
.team-mechanism-icon svg { width: 31px; height: 31px; stroke-width: 1.45; }
.team-mechanism-list h3 {
  margin: 10px 0 0;
  color: white;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.4;
}
.team-mechanism-list p {
  max-width: 20ch;
  margin: 10px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
[data-aos="team-mechanism-item"],
[data-aos="team-principle-item"] {
  opacity: 0;
  transform: translate3d(0,24px,0);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
[data-aos="team-mechanism-item"].aos-animate,
[data-aos="team-principle-item"].aos-animate {
  opacity: 1;
  transform: translate3d(0,0,0);
  will-change: auto;
}

.team-principles {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background: #f7f8f5;
}
.team-principles-scroll { margin-top: 42px; }
.team-principles-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-principles-list li {
  position: relative;
  min-width: 0;
  padding: 0 clamp(24px, 3.1vw, 48px);
  text-align: center;
}
.team-principles-list li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: rgba(7,21,29,.12);
}
.team-principle-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-inline: auto;
  place-items: center;
  color: var(--gold);
}
.team-principle-icon svg { width: 34px; height: 34px; stroke-width: 1.45; }
.team-principles-list h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.4;
}
.team-principles-list p {
  max-width: 22ch;
  margin: 9px auto 0;
  color: rgba(7,21,29,.62);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .team-functions { padding: 78px 0 92px; }
  .team-functions-inner { width: min(calc(100% - 64px), 1536px); }
  .team-functions-heading { grid-template-columns: minmax(0,1fr) minmax(280px,390px); gap: 42px; }
  .team-function-card { flex-basis: calc((100% - 16px) / 2); }
}

@media (max-width: 700px) {
  .team-functions { padding: 64px 0 72px; }
  .team-functions-inner { width: min(calc(100% - 48px), 1536px); }
  .team-functions-heading { display: block; margin-bottom: 34px; padding-inline: 0; }
  .team-functions-heading > div { padding-left: 18px; }
  .team-functions-heading h2 { font-size: 28px; }
  .team-functions-heading > p { margin-top: 22px; }
  .team-functions-heading > p br { display: none; }
  .team-functions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
  }
  .team-function-card {
    width: 100%;
    flex: none;
  }
  .team-function-overlay { right: 12px; bottom: 14px; left: 12px; }
  .team-function-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
    padding-right: 28px;
  }
  .team-function-summary strong { font-size: 20px; }
  .team-function-summary em { font-size: 13px; }
  .team-function-toggle { width: 28px; height: 28px; }
  .team-function-detail { display: none; }
  .team-function-card:is(:hover, :focus-visible, [aria-expanded="true"])::before {
    background: linear-gradient(180deg, rgba(3,15,22,.02) 35%, rgba(3,15,22,.22) 58%, rgba(3,15,22,.94) 100%);
  }
  .team-function-card:is(:hover, :focus-visible, [aria-expanded="true"])::after { transform: scaleY(0); }
  .team-function-card:is(:hover, :focus-visible, [aria-expanded="true"]) img {
    filter: saturate(.86) contrast(1.02);
    transform: scale(1.01);
  }
  .team-function-card:is(:hover, :focus-visible, [aria-expanded="true"]) .team-function-toggle {
    border-color: rgba(255,255,255,.48);
    color: white;
    transform: none;
  }
  .team-member-modal { width: calc(100% - 24px); max-height: 94vh; max-height: 94svh; }
  .team-member-modal-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 38vh) auto;
    height: auto;
    min-height: 0;
    max-height: 94vh;
    max-height: 94svh;
    overflow-y: auto;
  }
  .team-member-modal-media { min-height: 220px; }
  .team-member-modal-media figcaption { right: 22px; bottom: 18px; left: 22px; }
  .team-member-modal-content { min-height: 390px; padding: 44px 23px 28px; overflow: visible; }
  .team-member-modal-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    background: rgba(7,21,29,.78);
  }
  .team-member-modal-content h2 { margin-top: 14px; font-size: 36px; }
  .team-member-modal-role { margin-top: 9px; font-size: 15px; padding-right: 42px; }
  .team-member-modal-rule { margin-top: 22px; }
  .team-member-modal-profile { margin-top: 26px; }
  .team-member-modal-profile > p:last-child { font-size: 15px; line-height: 1.8; }
  .team-member-modal-duty { margin-top: 24px; padding-top: 22px; }
  .team-member-modal-duty strong { font-size: 16px; line-height: 1.8; }
  .team-member-modal-content footer { padding-top: 34px; }
}

@media (max-width: 900px) {
  .team-mechanism-inner,
  .team-principles-inner { width: min(calc(100% - 64px), 1536px); }
  .team-mechanism .team-band-heading,
  .team-principles .team-band-heading { margin-inline: 0; }
  .team-mechanism-scroll,
  .team-principles-scroll {
    overflow: visible;
  }
  .team-mechanism-track { width: auto; margin-inline: 0; }
  .team-mechanism-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }
  .team-mechanism-list li { text-align: center; }
  .team-mechanism-icon { margin-inline: auto; }
  .team-mechanism-list p { margin-inline: auto; }
  .team-principles-list {
    display: grid;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 0;
    margin-inline: 0;
  }
  .team-principles-list li {
    padding-inline: 24px;
  }
  .team-principles-list li::before { display: none; }
  .team-principles-list li:nth-child(even) { border-left: 1px solid rgba(7,21,29,.12); }
  .team-principles-list li:nth-child(n+3) { border-top: 1px solid rgba(7,21,29,.12); padding-top: 19px; }
  .team-principles-list li:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .team-mechanism { padding: 64px 0 76px; }
  .team-principles { padding: 56px 0 62px; }
  .team-mechanism-scroll { margin-top: 46px; }
  .team-principles-scroll { margin-top: 38px; }
  .team-band-heading { gap: 8px; }
  .team-band-heading h2 { font-size: 19px; }
  .team-band-heading p { font-size: 15px; }
  .team-mechanism-inner,
  .team-principles-inner { width: min(calc(100% - 48px), 1536px); }
  .team-mechanism-list,
  .team-principles-list { grid-template-columns: 1fr; }
  .team-mechanism-list li,
  .team-principles-list li { padding-inline: 0; }
  .team-principles-list li:nth-child(even) { border-left: 0; }
  .team-principles-list li:nth-child(n+3) { border-top: 0; padding-top: 0; }
  .team-principles-list li:last-child:nth-child(odd) { grid-column: auto; }
  .team-principles-list li:not(:first-child)::before {
    display: block;
    top: -19px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }
}

/* English team copy needs more horizontal measure than the Chinese labels. */
html[lang="en"] .team-function-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
}
html[lang="en"] .team-function-summary strong,
html[lang="en"] .team-function-summary em {
  min-width: 0;
  overflow-wrap: anywhere;
}
html[lang="en"] .team-function-detail {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
html[lang="en"] .team-function-detail > span { display: none; }
html[lang="en"] .team-function-detail b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

@media (min-width: 768px) {
  html[lang="en"] .team-chairman-copy {
    padding-top: clamp(38px, 3.2vw, 52px);
    padding-bottom: 30px;
  }
  html[lang="en"] .team-chairman-heading h2 {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  html[lang="en"] .team-chairman-heading strong { white-space: nowrap; }
  html[lang="en"] .team-chairman-statement {
    max-width: 34ch;
    margin-top: 16px;
    font-size: clamp(20px, 1.65vw, 25px);
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
  }
  html[lang="en"] .team-chairman-principles { margin-top: 24px; }
  html[lang="en"] .team-chairman-principle { gap: 10px; padding-right: 10px; }
  html[lang="en"] .team-chairman-principle:not(:first-child) { padding-left: 12px; }
  html[lang="en"] .team-chairman-principle-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }
  html[lang="en"] .team-chairman-principle strong {
    font-size: 14px;
    white-space: normal;
  }
}

@media (max-width: 700px) {
  html[lang="en"] .team-function-summary { padding-right: 28px; }
  html[lang="en"] .team-function-summary strong { font-size: 18px; }
  html[lang="en"] .team-function-summary em { font-size: 12px; line-height: 1.35; }
  html[lang="en"] .team-function-detail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .team-function-card,
  .team-function-card img,
  .team-function-card::after,
  .team-function-detail,
  .team-function-toggle,
  .team-member-modal-close { transition-duration: .01ms !important; }
  .team-member-modal[open],
  .team-member-modal::backdrop { animation: none !important; }
  [data-aos="team-functions-heading"],
  [data-aos="team-function-card"],
  [data-aos="team-band-heading"],
  [data-aos="team-mechanism-item"],
  [data-aos="team-principle-item"] { opacity: 1; transform: none; }
}

/* App product page: a quieter product-launch composition with a clear visual lead. */
.app-hero {
  min-height: 780px;
  background: #0c2e3f;
}
.app-hero-grid {
  top: 78px;
  width: 45%;
  background: #edf2ee;
  border-left: 0;
}
.app-hero-grid::before,
.app-hero-grid::after { display: none; }
.app-hero-inner {
  min-height: 780px;
  grid-template-columns: minmax(430px,.88fr) minmax(560px,1.12fr);
  gap: clamp(46px,5vw,82px);
  padding-top: 78px;
}
.app-hero-copy { min-width: 0; width: 100%; max-width: 600px; padding: 54px 0 66px; }
.app-brand-lockup { gap: 16px; }
.app-brand-lockup img { width: 70px; height: 70px; }
.app-brand-lockup strong { font-size: 23px; }
.app-hero-kicker { margin-top: 52px !important; letter-spacing: .02em; }
.app-hero h1 { max-width: 100%; margin-top: 15px; font-size: clamp(52px,5vw,76px); line-height: 1.1; overflow-wrap: break-word; }
.app-hero-summary { max-width: 100%; margin-top: 25px !important; color: rgba(255,255,255,.74); overflow-wrap: break-word; }
.app-downloads { margin-top: 36px; gap: 12px; }
.app-download { min-width: 204px; min-height: 64px; padding: 0 17px; }
.app-download-primary { box-shadow: 0 12px 24px rgba(201,154,61,.16); }
.app-download-secondary { border-color: rgba(255,255,255,.34); }
.app-download-secondary:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.app-download-note { margin-top: 15px !important; }
.app-hero-screens { height: 620px; }
.app-hero-screen {
  box-shadow: 16px 24px 46px rgba(7,21,29,.28), 0 0 0 1px rgba(7,21,29,.08);
}
.app-hero-screen-one {
  top: 1%;
  right: 12%;
  left: auto;
  width: min(66%, 520px);
  transform: none;
}
.app-hero-screen-two {
  top: auto;
  right: 0;
  bottom: 3%;
  left: auto;
  z-index: 3;
  width: min(28%, 220px);
  transform: rotate(2.5deg);
}

.app-purpose {
  padding: 136px 0 148px;
  background: #f6f8f4;
}
.app-purpose-inner { gap: 66px 9vw; }
.app-purpose-inner > header {
  padding-left: 26px;
  border-left: 3px solid var(--gold);
}
.app-purpose h2,
.app-showcase h2,
.app-trust h2 { font-size: clamp(36px,3.1vw,50px); }
.app-purpose-copy { align-self: center; }
.app-purpose-copy p { color: rgba(22,26,29,.7); }
.app-feature-list {
  margin-top: 12px;
  border-top-color: rgba(7,21,29,.2);
}
.app-feature-list li { padding: 28px 26px 4px 0; }
.app-feature-list li + li { padding-left: 26px; border-left-color: rgba(7,21,29,.2); }
.app-feature-list li > span.app-feature-mark {
  display: flex;
  width: auto;
  height: 28px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--gold);
}
.app-feature-mark b { font-size: 15px; font-weight: 750; letter-spacing: .04em; }
.app-feature-mark svg { width: 19px; height: 19px; stroke-width: 1.65; }
.app-feature-list h3 { margin-top: 22px; font-size: 19px; }
.app-feature-list p { margin-top: 9px; line-height: 1.78; }

.app-showcase {
  padding: 132px 0 146px;
  background: #e9eeeb;
}
.app-showcase-header { align-items: flex-end; }
.app-showcase-viewport { margin-top: 70px; }
.app-showcase-track { gap: 40px; padding-bottom: 30px; }
.app-showcase-slide {
  min-width: min(880px, 74vw);
  grid-template-columns: minmax(0,1.15fr) minmax(250px,.85fr);
  background: #0c2e3f;
  color: white;
}
.app-showcase-slide figure {
  min-height: 0;
  aspect-ratio: 3 / 4;
  background: #f8f8f5;
}
.app-showcase-slide > div {
  justify-content: flex-end;
  padding: 42px 38px;
  border-top: 0;
}
.app-showcase-slide > div > span { color: var(--gold); }
.app-showcase-slide h3 { color: white; font-size: 30px; }
.app-showcase-slide p { color: rgba(255,255,255,.66); }
.app-showcase-controls button { border-color: rgba(7,21,29,.25); }

@media (max-width: 1180px) {
  .app-hero-inner { grid-template-columns: minmax(370px,.9fr) minmax(470px,1.1fr); gap: 46px; }
  .app-hero-screen-one { right: 8%; width: min(68%, 480px); }
  .app-purpose { padding-block: 118px 132px; }
  .app-showcase { padding-block: 116px 128px; }
}

@media (max-width: 900px) {
  .app-hero-grid {
    top: 452px;
    width: 100%;
    height: calc(100% - 452px);
  }
  .app-hero-inner { min-height: 0; grid-template-columns: 1fr; gap: 18px; padding-top: 106px; }
  .app-hero-copy { max-width: 680px; padding: 46px 0 18px; }
  .app-hero-screens { width: min(100%, 720px); height: 590px; margin-inline: auto; }
  .app-hero-screen-one { top: 2%; right: 10%; width: min(67%, 480px); }
  .app-hero-screen-two { right: 1%; bottom: 2%; width: min(28%, 205px); }
  .app-purpose { padding-block: 106px 118px; }
  .app-showcase { padding-block: 108px 120px; }
  .app-showcase-slide { min-width: min(820px, 82vw); }
}

@media (max-width: 700px) {
  .app-hero-grid { top: 720px; height: calc(100% - 720px); }
  .app-hero-inner { padding-top: 90px; }
  .app-hero-copy { padding-top: 42px; }
  .app-brand-lockup img { width: 62px; height: 62px; }
  .app-hero-kicker { margin-top: 38px !important; }
  .app-hero h1 { max-width: 100%; font-size: 44px; }
  .app-hero-screens { height: 468px; margin-top: 24px; }
  .app-hero-screen-one { top: 2%; right: 8%; width: 75%; }
  .app-hero-screen-two { right: -1%; bottom: 2%; width: 31%; }
  .app-purpose { padding-block: 88px 96px; }
  .app-purpose-inner > header { padding-left: 20px; }
  .app-feature-list li > span.app-feature-mark { height: 26px; }
  .app-showcase { padding-block: 90px 100px; }
  .app-showcase-viewport { margin-top: 42px; }
  .app-showcase-slide { min-width: calc(100vw - 48px); grid-template-columns: 1fr; }
  .app-showcase-slide figure { aspect-ratio: 3 / 4; }
  .app-showcase-slide > div { min-height: 190px; padding: 28px 24px 32px; }
  .app-showcase-slide h3 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .app-hero-screen,
  .app-showcase-slide img { transition: none !important; transform: none !important; }
  [data-aos="app-hero-screens"],
  [data-aos="app-showcase-reveal"] { opacity: 1 !important; clip-path: none !important; transform: none !important; transition: none !important; }
}

/* Liko App and official company profile: extensions of the incumbent LIKO visual system. */
.home-app,
.app-page,
.company-profile-page { font-size: 15px; }

.home-app {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 104px 0 110px;
  background: #0b2938;
  color: white;
}
.home-app-inner {
  display: grid;
  width: min(calc(100% - 128px), 1536px);
  min-height: 500px;
  margin-inline: auto;
  grid-template-columns: minmax(360px,.82fr) minmax(500px,1.18fr);
  gap: clamp(70px,8vw,140px);
  align-items: center;
}
.home-app-copy { position: relative; z-index: 2; max-width: 590px; }
.home-app-brand { display: flex; align-items: center; gap: 19px; }
.home-v7 .home-app-brand img { width: 70px; height: 70px; flex: 0 0 auto; border-radius: 8px; }
.home-app-brand p { display: grid; gap: 3px; margin: 0; }
.home-app-brand span { color: white; font-size: 20px; font-weight: 720; line-height: 1.3; }
.home-app-brand small { color: rgba(255,255,255,.54); font-size: 15px; line-height: 1.4; }
.home-app-copy h2 { margin: 44px 0 0; color: white; font-size: clamp(40px,4vw,64px); font-weight: 720; line-height: 1.17; letter-spacing: 0; }
html[lang="en"] .home-app-copy h2 { font-size: clamp(36px,3.5vw,56px); }
.home-app-copy > p { max-width: 38ch; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 16px; font-weight: 400; line-height: 1.85; }
.home-app-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 38px; }
.home-app-actions a { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; padding: 0 22px; font-size: 15px; font-weight: 700; transition: background-color .25s ease,color .25s ease; }
.home-app-actions svg { width: 18px; height: 18px; stroke-width: 1.7; }
.home-app-primary { background: var(--gold); color: #081923; }
.home-app-primary:hover { background: #ddb157; }
.home-app-secondary { border: 1px solid rgba(255,255,255,.26); color: white; }
.home-app-secondary:hover { background: rgba(255,255,255,.08); }
.home-app-visual { position: relative; height: 560px; }
.home-app-visual::before { position: absolute; inset: 11% 4% 0 13%; border: 1px solid rgba(255,255,255,.12); content: ""; }
.home-app-carousel-stage { position: absolute; inset: 0; }
.home-v7 .home-app-screen { position: absolute; display: block; width: min(43%, 330px); height: auto; aspect-ratio: 9 / 16; object-fit: cover; opacity: 0; visibility: hidden; box-shadow: 20px 32px 60px rgba(0,0,0,.25); pointer-events: none; }
.home-app-screen.is-back { top: 0; right: 3%; bottom: auto; left: auto; z-index: 1; opacity: 1; visibility: visible; transform: translateY(20px) rotate(2deg); }
.home-app-screen.is-front { top: auto; right: auto; bottom: -8%; left: 7%; z-index: 2; opacity: 1; visibility: visible; transform: rotate(-2deg); }
.home-app-screen.is-queued { top: auto; right: auto; bottom: -8%; left: 7%; }
.home-app-screen.is-leaving { visibility: visible; }
.home-app-carousel-dots { position: absolute; z-index: 3; right: 4%; bottom: 0; display: flex; align-items: center; gap: 10px; }
.home-app-carousel-dots button { width: 44px; height: 32px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.home-app-carousel-dots button::before { display: block; width: 28px; height: 2px; margin-inline: auto; background: rgba(255,255,255,.3); content: ""; transition: background-color .25s ease,transform .25s ease; }
.home-app-carousel-dots button:hover::before,
.home-app-carousel-dots button:focus-visible::before { background: rgba(255,255,255,.68); }
.home-app-carousel-dots button.is-active::before { background: var(--gold); transform: scaleY(1.5); }
.home-app-carousel-dots button:focus-visible { outline: 2px solid rgba(255,255,255,.8); outline-offset: 2px; }
[data-aos="home-app-visual"] { opacity: 0; clip-path: inset(0 0 100% 0); transition-property: opacity,clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="home-app-visual"].aos-animate { opacity: 1; clip-path: inset(0); }

.app-page {
  --app-max: 1536px;
  --app-gutter: 64px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}
.app-page h1,
.app-page h2,
.app-page h3,
.app-page p { margin: 0; }
.app-page p { font-weight: 400; }
.app-container { width: min(calc(100% - (var(--app-gutter) * 2)), var(--app-max)); margin-inline: auto; }
.app-hero { position: relative; min-height: 840px; overflow: hidden; background: #0b2938; color: white; }
.app-hero-grid { position: absolute; top: 78px; right: 0; bottom: 0; width: 46%; border-left: 1px solid rgba(255,255,255,.1); }
.app-hero-grid::before,
.app-hero-grid::after { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.08); content: ""; }
.app-hero-grid::before { left: 33.333%; }
.app-hero-grid::after { left: 66.666%; }
.app-hero-inner { display: grid; min-height: 840px; grid-template-columns: minmax(410px,.84fr) minmax(560px,1.16fr); gap: clamp(60px,7vw,120px); align-items: center; padding-top: 78px; }
.app-hero-copy { position: relative; z-index: 3; min-width: 0; width: 100%; max-width: 640px; padding: 72px 0; }
.app-brand-lockup { display: flex; align-items: center; gap: 18px; }
.app-brand-lockup img { width: 76px; height: 76px; border-radius: 8px; }
.app-brand-lockup p { display: grid; gap: 2px; }
.app-brand-lockup strong { color: white; font-size: 24px; line-height: 1.35; }
.app-brand-lockup span { color: rgba(255,255,255,.52); font-size: 15px; line-height: 1.4; }
.app-hero-kicker { margin-top: 44px !important; color: var(--gold); font-size: 15px; font-weight: 700 !important; line-height: 1.5; }
.app-hero h1 { max-width: 100%; margin-top: 17px; color: white; font-size: clamp(50px,5.2vw,78px); font-weight: 720; line-height: 1.12; letter-spacing: 0; overflow-wrap: break-word; }
.app-hero-summary { max-width: 100%; margin-top: 28px !important; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.85; overflow-wrap: break-word; }
.app-downloads { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.app-download { display: flex; min-width: 218px; min-height: 68px; align-items: center; gap: 14px; padding: 0 19px; border: 1px solid transparent; transition: background-color .25s ease,border-color .25s ease; }
.app-download > svg { width: 24px; height: 24px; flex: 0 0 auto; stroke-width: 1.6; }
.app-download span { display: grid; gap: 1px; }
.app-download small { font-size: 15px; font-weight: 600; line-height: 1.2; }
.app-download strong { font-size: 15px; line-height: 1.4; }
.app-download-primary { background: var(--gold); color: #081923; }
.app-download-primary:hover { background: #ddb157; }
.app-download-secondary { border-color: rgba(255,255,255,.24); color: white; }
.app-download-secondary:hover { background: rgba(255,255,255,.08); }
.app-download-note { margin-top: 17px !important; color: rgba(255,255,255,.5); font-size: 15px; line-height: 1.6; }
.app-hero-screens { position: relative; z-index: 2; height: 660px; min-width: 0; }
.app-hero-screen { position: absolute; display: block; width: min(34%, 290px); height: auto; box-shadow: 16px 26px 52px rgba(0,0,0,.3); }
.app-hero-screen-one { top: 15%; left: 0; transform: translateY(-18px) rotate(-2deg); }
.app-hero-screen-two { top: 2%; left: 33%; z-index: 2; }
.app-hero-screen-three { right: 0; bottom: 4%; transform: translateY(18px) rotate(2deg); }
[data-aos="app-hero-screens"] { opacity: 0; clip-path: inset(0 0 100% 0); transition-property: opacity,clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="app-hero-screens"].aos-animate { opacity: 1; clip-path: inset(0); }

.app-purpose { padding: 120px 0 126px; background: #f7f8f5; }
.app-purpose-inner { display: grid; grid-template-columns: minmax(320px,.78fr) minmax(420px,1.22fr); gap: 70px 9vw; }
.app-purpose header > p,
.app-showcase-header > div > p,
.app-trust-copy > p { color: var(--gold); font-size: 15px; font-weight: 700; line-height: 1.5; }
.app-purpose h2,
.app-showcase h2,
.app-trust h2 { margin-top: 15px; font-size: clamp(36px,3.2vw,52px); font-weight: 720; line-height: 1.22; letter-spacing: 0; }
.app-purpose-copy { display: grid; max-width: 67ch; gap: 20px; align-self: end; }
.app-purpose-copy p { color: rgba(22,26,29,.68); font-size: 16px; line-height: 1.85; }
.app-feature-list { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 20px 0 0; padding: 0; border-top: 1px solid rgba(7,21,29,.15); list-style: none; }
.app-feature-list li { min-width: 0; padding: 34px 28px 4px 0; }
.app-feature-list li + li { padding-left: 28px; border-left: 1px solid rgba(7,21,29,.15); }
.app-feature-list li > span { display: grid; width: 48px; height: 48px; place-items: center; background: var(--harbor); color: white; }
.app-feature-list svg { width: 22px; height: 22px; stroke-width: 1.6; }
.app-feature-list h3 { margin-top: 24px; font-size: 20px; font-weight: 720; line-height: 1.4; }
.app-feature-list p { margin-top: 10px; color: rgba(22,26,29,.62); font-size: 15px; line-height: 1.75; }

.app-showcase { padding: 116px 0 126px; background: #edf0ec; }
.app-showcase-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.app-showcase-controls { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.app-showcase-controls > p { display: flex; min-width: 112px; align-items: center; gap: 10px; margin-right: 10px; color: rgba(7,21,29,.5); font-size: 15px; font-weight: 700; }
.app-showcase-controls > p span:first-child { color: var(--harbor); }
.app-showcase-controls > p i { width: 34px; height: 1px; background: rgba(7,21,29,.25); }
.app-showcase-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(7,21,29,.18); color: var(--ink); transition: background-color .25s ease,color .25s ease; }
.app-showcase-controls button:hover:not(:disabled) { background: var(--harbor); color: white; }
.app-showcase-controls button[aria-pressed="true"] { background: var(--harbor); color: white; }
.app-showcase-controls button:disabled { opacity: .35; cursor: not-allowed; }
.app-showcase-controls svg { width: 20px; height: 20px; stroke-width: 1.6; }
.app-showcase-play-icon { display: none; }
.app-showcase-controls button[aria-pressed="true"] .app-showcase-pause-icon { display: none; }
.app-showcase-controls button[aria-pressed="true"] .app-showcase-play-icon { display: inline-flex; }
.app-showcase-viewport { margin-top: 58px; }
.app-showcase-track { display: flex; gap: 32px; overflow-x: auto; margin: 0; padding: 0 0 24px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; list-style: none; }
.app-showcase-slide { display: grid; min-width: min(680px,56vw); grid-template-columns: minmax(280px,.63fr) minmax(210px,.37fr); scroll-snap-align: start; background: white; }
.app-showcase-slide figure { min-width: 0; min-height: 600px; margin: 0; overflow: hidden; background: #f5f2eb; }
.app-showcase-slide picture,
.app-showcase-slide img { display: block; width: 100%; height: 100%; }
.app-showcase-slide img { object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.app-showcase-slide.is-active img { transform: scale(1.012); }
.app-showcase-slide > div { display: flex; min-width: 0; flex-direction: column; justify-content: flex-end; padding: 44px 34px; border-top: 4px solid var(--gold); }
.app-showcase-slide > div > span { color: var(--gold); font-size: 15px; font-weight: 750; }
.app-showcase-slide h3 { margin-top: 12px; font-size: 28px; font-weight: 720; line-height: 1.35; }
.app-showcase-slide p { margin-top: 12px; color: rgba(22,26,29,.64); font-size: 15px; line-height: 1.75; }
[data-aos="app-showcase-reveal"] { opacity: 0; clip-path: inset(0 100% 0 0); transition-property: opacity,clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="app-showcase-reveal"].aos-animate { opacity: 1; clip-path: inset(0); }

.app-trust { padding: 112px 0 118px; background: #0b2938; color: white; }
.app-trust-inner { display: grid; grid-template-columns: minmax(330px,.78fr) minmax(480px,1.22fr); gap: 10vw; align-items: center; }
.app-trust h2 { color: white; }
.app-trust-copy > span { display: block; max-width: 43ch; margin-top: 27px; color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.85; }
.app-trust-links { border-top: 1px solid rgba(255,255,255,.17); }
.app-trust-links a { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.17); color: white; font-size: 17px; font-weight: 650; transition: color .25s ease; }
.app-trust-links a:hover { color: #e0b35b; }
.app-trust-links svg { width: 20px; height: 20px; stroke-width: 1.6; }
.app-final { padding: 94px 0 100px; background: var(--gold); color: #081923; }
.app-final-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.app-final-inner > div:first-child { display: grid; grid-template-columns: 68px 1fr; gap: 5px 20px; align-items: center; }
.app-final img { width: 68px; height: 68px; grid-row: 1 / span 2; border-radius: 8px; }
.app-final p { font-size: 17px; font-weight: 720; }
.app-final h2 { font-size: clamp(34px,3vw,48px); font-weight: 720; line-height: 1.25; }
.app-final-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.app-final-actions a { display: inline-flex; min-height: 54px; align-items: center; gap: 16px; padding: 0 22px; background: #0b2938; color: white; font-size: 15px; font-weight: 700; }
.app-final-actions svg { width: 18px; height: 18px; stroke-width: 1.7; }

.company-profile-page {
  --profile-max: 1536px;
  --profile-gutter: 64px;
  overflow-x: clip;
  overflow-y: visible;
  background: #f7f8f5;
  color: var(--ink);
}
.company-profile-page h1,
.company-profile-page h2,
.company-profile-page h3,
.company-profile-page p,
.company-profile-page blockquote { margin: 0; }
.company-profile-page p { font-weight: 400; }
.profile-container { width: min(calc(100% - (var(--profile-gutter) * 2)), var(--profile-max)); margin-inline: auto; }
.profile-hero { position: relative; height: 760px; overflow: hidden; background: #183d4d; color: white; }
.profile-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 58% center; }
.profile-hero-shade { position: absolute; inset: 0; background: rgba(5,20,28,.22); }
.profile-hero-panel { position: absolute; inset: 0 auto 0 0; width: min(58%, 980px); background: rgba(8,35,48,.9); clip-path: polygon(0 0,84% 0,100% 100%,0 100%); }
.profile-hero-inner { position: relative; z-index: 2; display: flex; height: 100%; align-items: flex-end; padding: 0 0 88px; }
.profile-hero-copy { min-width: 0; width: min(660px, calc(min(48.7vw, 823px) - max(var(--profile-gutter), calc((100vw - var(--profile-max)) / 2)) - 24px)); max-width: 100%; }
.profile-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.5; }
.profile-breadcrumb a:hover { color: white; }
.profile-kicker { margin-top: 35px !important; color: var(--gold); font-size: 15px; font-weight: 720 !important; line-height: 1.5; }
.profile-hero h1 { max-width: 100%; margin-top: 16px; color: white; font-size: clamp(44px,4.5vw,68px); font-weight: 720; line-height: 1.17; letter-spacing: 0; overflow-wrap: break-word; }
.profile-hero-en { max-width: 100%; margin-top: 18px !important; color: rgba(255,255,255,.56); font-size: 15px; line-height: 1.5; overflow-wrap: break-word; }
.profile-hero-lead { max-width: 100%; margin-top: 25px !important; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; overflow-wrap: break-word; }
[data-aos="profile-hero-image"] { transform: scale(1.07); transition-property: transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="profile-hero-image"].aos-animate { transform: scale(1); }
[data-aos="profile-hero-panel"] { clip-path: polygon(0 0,0 0,0 100%,0 100%); transition-property: clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="profile-hero-panel"].aos-animate { clip-path: polygon(0 0,84% 0,100% 100%,0 100%); }

.profile-document { display: grid; width: min(calc(100% - (var(--profile-gutter) * 2)), var(--profile-max)); margin-inline: auto; grid-template-columns: 250px minmax(0,1fr); gap: clamp(50px,6vw,100px); padding: 110px 0 128px; }
.profile-index { min-width: 0; }
.profile-index > div { position: sticky; top: 112px; }
.profile-index > div > p:first-child { color: var(--gold); font-size: 15px; font-weight: 720; line-height: 1.5; }
.profile-index nav { display: grid; margin-top: 24px; border-top: 1px solid rgba(7,21,29,.15); }
.profile-index nav a { display: flex; min-height: 55px; align-items: center; border-bottom: 1px solid rgba(7,21,29,.15); color: rgba(7,21,29,.65); font-size: 15px; font-weight: 650; transition: color .2s ease,transform .2s ease; }
.profile-index nav a:hover { color: var(--harbor); transform: translateX(8px); }
.profile-index-update { margin-top: 30px !important; color: rgba(7,21,29,.48); font-size: 15px; line-height: 1.7; }
.profile-index-update time { color: var(--ink); font-weight: 650; }
.profile-content { min-width: 0; }
.profile-content > section + section { margin-top: 128px; }
.profile-section-heading > p,
.profile-culture-heading > p { color: var(--gold); font-size: 15px; font-weight: 720; line-height: 1.5; }
.profile-section-heading h2,
.profile-culture-heading h2 { margin-top: 15px; font-size: clamp(36px,3.2vw,52px); font-weight: 720; line-height: 1.25; letter-spacing: 0; }
.profile-section-heading-light h2 { color: white; }
.profile-prose { display: grid; gap: 21px; }
.profile-prose p { color: rgba(22,26,29,.7); font-size: 16px; line-height: 1.95; }
.profile-overview-grid { display: grid; margin-top: 48px; grid-template-columns: minmax(340px,.88fr) minmax(440px,1.12fr); gap: 64px; align-items: center; }
.profile-overview-media,
.profile-structure-media,
.profile-industries-media,
.profile-evidence-grid figure { position: relative; margin: 0; overflow: hidden; }
.profile-overview-media { height: 480px; }
.profile-overview-media img,
.profile-structure-media img,
.profile-industries-media img,
.profile-evidence-grid img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.profile-overview-media figcaption,
.profile-evidence-grid figcaption { position: absolute; right: 0; bottom: 0; padding: 12px 17px; background: rgba(7,21,29,.88); color: white; font-size: 15px; line-height: 1.4; }
[data-aos="profile-image-reveal"] { opacity: 0; clip-path: inset(0 100% 0 0); transition-property: opacity,clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="profile-image-reveal"].aos-animate { opacity: 1; clip-path: inset(0); }
[data-aos="profile-image-reveal"].aos-animate img { transform: scale(1.015); }

.profile-structure { margin-right: calc(var(--profile-gutter) * -1); margin-left: calc(var(--profile-gutter) * -1); padding: 90px var(--profile-gutter) 0; overflow: hidden; background: #0b2938; color: white; }
.profile-structure-axis { display: grid; margin-top: 58px; grid-template-columns: minmax(0,1fr) 180px minmax(0,1fr); align-items: center; }
.profile-structure-axis article { min-height: 230px; padding: 30px 28px; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.16); }
.profile-structure-axis article > span { color: var(--gold); font-size: 15px; font-weight: 720; }
.profile-structure-axis h3 { margin-top: 16px; color: white; font-size: 23px; font-weight: 700; line-height: 1.45; }
.profile-structure-axis article p { margin-top: 14px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.8; }
.profile-structure-link { display: grid; gap: 12px; place-items: center; color: rgba(255,255,255,.56); font-size: 15px; text-align: center; }
.profile-structure-link i { width: 100%; height: 1px; background: rgba(255,255,255,.2); }
.profile-structure-link b { font-weight: 650; }
[data-aos="profile-axis"] { opacity: 0; clip-path: inset(0 100% 0 0); transition-property: opacity,clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="profile-axis"].aos-animate { opacity: 1; clip-path: inset(0); }
.profile-structure-media { height: 420px; margin-top: 64px; }

.profile-founder { display: grid; min-height: 660px; grid-template-columns: minmax(420px,.9fr) minmax(470px,1.1fr); background: #e8ebe6; }
.profile-founder-media { display: flex; min-width: 0; margin: 0; align-items: flex-end; justify-content: center; overflow: hidden; background: #d9ded9; }
.profile-founder-media img { display: block; width: min(95%,650px); max-height: 650px; object-fit: contain; object-position: center bottom; }
[data-aos="profile-founder-media"] { opacity: 0; clip-path: inset(100% 0 0 0); transition-property: opacity,clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="profile-founder-media"].aos-animate { opacity: 1; clip-path: inset(0); }
.profile-founder-copy { padding: clamp(65px,7vw,105px); align-self: center; }
.profile-founder-label { color: var(--gold); font-size: 15px; font-weight: 720 !important; }
.profile-founder h2 { margin-top: 14px; font-size: clamp(44px,4.2vw,64px); font-weight: 720; line-height: 1.2; }
.profile-founder-role { margin-top: 6px !important; color: var(--harbor); font-size: 17px; font-weight: 700 !important; }
.profile-founder-copy .profile-prose { margin-top: 31px; }
.profile-founder blockquote { margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(7,21,29,.18); color: var(--ink); font-size: 18px; font-weight: 650; line-height: 1.7; }

.profile-team-list { display: grid; margin: 50px 0 0; padding: 0; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(7,21,29,.16); list-style: none; }
.profile-team-list li { display: grid; min-height: 145px; grid-template-columns: minmax(100px,.34fr) minmax(170px,.66fr); gap: 5px 28px; padding: 27px 0; border-bottom: 1px solid rgba(7,21,29,.16); }
.profile-team-list li:nth-child(odd) { padding-right: 32px; }
.profile-team-list li:nth-child(even) { padding-left: 32px; border-left: 1px solid rgba(7,21,29,.16); }
.profile-team-list strong { grid-row: 1 / span 2; color: var(--ink); font-size: 20px; line-height: 1.45; }
.profile-team-list span { color: var(--harbor); font-size: 15px; font-weight: 700; line-height: 1.5; }
.profile-team-list p { color: rgba(22,26,29,.62); font-size: 15px; line-height: 1.7; }

.profile-industries { margin-right: calc(var(--profile-gutter) * -1); margin-left: calc(var(--profile-gutter) * -1); padding: 92px var(--profile-gutter) 0; overflow: hidden; background: #103a4d; color: white; }
.profile-industry-list { display: grid; margin: 52px 0 0; padding: 0; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.profile-industry-list li { display: grid; min-height: 84px; grid-template-columns: 52px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.18); }
.profile-industry-list li:nth-child(even) { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.18); }
.profile-industry-list span { color: var(--gold); font-size: 15px; font-weight: 700; }
.profile-industry-list strong { color: white; font-size: 17px; line-height: 1.55; }
.profile-industries-media { height: 440px; margin-top: 64px; }

.profile-culture { display: grid; grid-template-columns: minmax(300px,.68fr) minmax(520px,1.32fr); gap: 70px; }
.profile-culture-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(7,21,29,.16); list-style: none; }
.profile-culture-list li { min-height: 142px; padding: 25px 0; border-bottom: 1px solid rgba(7,21,29,.16); }
.profile-culture-list li:nth-child(odd) { padding-right: 28px; }
.profile-culture-list li:nth-child(even) { padding-left: 28px; border-left: 1px solid rgba(7,21,29,.16); }
.profile-culture-list strong { display: block; font-size: 20px; line-height: 1.45; }
.profile-culture-list span { display: block; margin-top: 9px; color: rgba(22,26,29,.62); font-size: 15px; line-height: 1.75; }
[data-aos="profile-culture-item"] { opacity: 0; transform: translate3d(0,24px,0); transition-property: opacity,transform; }
[data-aos="profile-culture-item"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
.profile-evidence-grid { display: grid; grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 12px; }
.profile-evidence-grid figure { height: 360px; }
.profile-document-footer { display: flex; margin-top: 128px; align-items: flex-end; justify-content: space-between; gap: 60px; padding: 58px 0 0; border-top: 1px solid rgba(7,21,29,.18); }
.profile-document-footer > div > p { color: var(--gold); font-size: 15px; font-weight: 720; }
.profile-document-footer h2 { margin-top: 12px; font-size: 32px; line-height: 1.35; }
.profile-document-footer > div > span { display: block; max-width: 60ch; margin-top: 13px; color: rgba(22,26,29,.58); font-size: 15px; line-height: 1.7; }
.profile-document-footer nav { display: flex; flex: 0 0 auto; gap: 12px; }
.profile-document-footer a { display: inline-flex; min-height: 50px; align-items: center; gap: 15px; padding: 0 19px; background: var(--harbor); color: white; font-size: 15px; font-weight: 700; }
.profile-document-footer svg { width: 18px; height: 18px; stroke-width: 1.7; }

@media (max-width: 1180px) {
  .home-app-inner { width: calc(100% - 96px); grid-template-columns: minmax(340px,.9fr) minmax(420px,1.1fr); gap: 58px; }
  .home-app-visual { height: 500px; }
  .app-page { --app-gutter: 48px; }
  .app-hero-inner { grid-template-columns: minmax(370px,.9fr) minmax(470px,1.1fr); gap: 50px; }
  .app-hero-screens { height: 590px; }
  .app-purpose-inner { gap: 60px; }
  .company-profile-page { --profile-gutter: 48px; }
  .profile-document { grid-template-columns: 210px minmax(0,1fr); gap: 55px; }
  .profile-overview-grid { grid-template-columns: 1fr; }
  .profile-overview-media { height: 440px; }
  .profile-founder { grid-template-columns: minmax(360px,.85fr) minmax(430px,1.15fr); }
  .profile-founder-copy { padding: 60px; }
  .profile-culture { grid-template-columns: 1fr; }
  .profile-culture-heading { max-width: 650px; }
}

@media (max-width: 900px) {
  .home-app { min-height: 0; padding: 86px 0 94px; }
  .home-app-inner { width: calc(100% - 64px); grid-template-columns: 1fr; gap: 62px; }
  .home-app-copy { max-width: 650px; }
  .home-app-visual { width: min(100%,680px); height: 520px; margin-inline: auto; }
  .app-page { --app-gutter: 32px; }
  .app-hero { min-height: 0; }
  .app-hero-grid { top: 70px; width: 100%; }
  .app-hero-inner { min-height: 0; grid-template-columns: 1fr; gap: 20px; padding-top: 110px; }
  .app-hero-copy { max-width: 700px; padding: 50px 0 20px; }
  .app-hero-screens { width: min(100%,760px); height: 610px; margin-inline: auto; }
  .app-purpose-inner { grid-template-columns: 1fr; gap: 34px; }
  .app-feature-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .app-feature-list li:nth-child(3) { border-left: 0; }
  .app-feature-list li:nth-child(n+3) { border-top: 1px solid rgba(7,21,29,.15); }
  .app-trust-inner { grid-template-columns: 1fr; gap: 52px; }
  .app-final-inner { align-items: flex-start; flex-direction: column; }
  .company-profile-page { --profile-gutter: 32px; }
  .profile-hero { display: flex; height: 690px; flex-direction: column; padding-top: 70px; background: #0b2938; }
  .profile-hero-image { position: relative; height: 58%; object-position: center; }
  .profile-hero-shade { display: none; }
  .profile-hero-panel { inset: auto 0 0; width: 100%; height: 48%; clip-path: polygon(0 14%,100% 0,100% 100%,0 100%); }
  .profile-hero-inner { position: absolute; inset: 0; align-items: flex-end; padding-bottom: 42px; }
  .profile-hero-copy { width: 100%; max-width: none; }
  .profile-kicker { margin-top: 21px !important; }
  .profile-hero h1 { font-size: 42px; }
  .profile-hero-lead { margin-top: 17px !important; }
  [data-aos="profile-hero-panel"].aos-animate { clip-path: polygon(0 14%,100% 0,100% 100%,0 100%); }
  .profile-document { display: block; padding-top: 0; }
  .profile-index { position: sticky; z-index: 12; top: 70px; margin-inline: calc(var(--profile-gutter) * -1); padding: 0 var(--profile-gutter); overflow-x: auto; background: #f7f8f5; box-shadow: 0 8px 18px rgba(7,21,29,.07); }
  .profile-index > div { position: static; display: flex; min-width: max-content; align-items: center; }
  .profile-index > div > p:first-child,
  .profile-index-update { display: none; }
  .profile-index nav { display: flex; margin: 0; border: 0; }
  .profile-index nav a { min-height: 56px; padding: 0 18px; border: 0; font-size: 15px; }
  .profile-index nav a:hover { transform: none; }
  .profile-content { padding-top: 82px; }
  .profile-content > section + section { margin-top: 100px; }
  .profile-founder { grid-template-columns: 1fr; }
  .profile-founder-media { min-height: 520px; }
  .profile-founder-copy { padding: 68px 52px 76px; }
  .profile-structure-axis { grid-template-columns: 1fr; gap: 0; }
  .profile-structure-link { grid-template-columns: 1fr auto 1fr; padding: 20px 0; }
  .profile-team-list { grid-template-columns: 1fr; }
  .profile-team-list li,
  .profile-team-list li:nth-child(odd),
  .profile-team-list li:nth-child(even) { padding: 26px 0; border-left: 0; }
  .profile-document-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .home-app { padding: 74px 0 80px; }
  .home-app-inner { width: calc(100% - 48px); gap: 46px; }
  .home-v7 .home-app-brand img { width: 62px; height: 62px; }
  .home-app-copy h2 { margin-top: 34px; font-size: 38px; line-height: 1.22; }
  html[lang="en"] .home-app-copy h2 { font-size: 34px; }
  .home-app-copy > p { font-size: 15px; }
  .home-app-actions { align-items: stretch; flex-direction: column; }
  .home-app-actions a { width: 100%; }
  .home-app-visual { height: 430px; }
  .home-v7 .home-app-screen { width: 54%; }
  .home-app-screen.is-back { right: 0; }
  .home-app-screen.is-front,
  .home-app-screen.is-queued { bottom: -4%; left: 0; }
  .home-app-carousel-dots { right: 0; }
  .app-page { --app-gutter: 24px; }
  .app-hero-inner { padding-top: 90px; }
  .app-hero-copy { padding-top: 42px; }
  .app-brand-lockup img { width: 64px; height: 64px; }
  .app-hero-kicker { margin-top: 34px !important; }
  .app-hero h1 { font-size: 44px; line-height: 1.16; }
  .app-hero-summary { font-size: 15px; }
  .app-downloads { align-items: stretch; flex-direction: column; }
  .app-download { width: 100%; }
  .app-hero-screens { height: 475px; margin-top: 24px; }
  .app-hero-screen { width: 46%; }
  .app-hero-screen-one { top: 12%; left: -7%; }
  .app-hero-screen-two { top: 0; left: 28%; }
  .app-hero-screen-three { right: -8%; bottom: 3%; }
  .app-purpose { padding: 78px 0 84px; }
  .app-purpose h2,
  .app-showcase h2,
  .app-trust h2 { font-size: 34px; }
  .app-purpose-copy p { font-size: 15px; }
  .app-feature-list { grid-template-columns: 1fr; margin-top: 10px; }
  .app-feature-list li,
  .app-feature-list li + li { padding: 27px 0; border-top: 1px solid rgba(7,21,29,.15); border-left: 0; }
  .app-feature-list li:first-child { border-top: 0; }
  .app-feature-list li > span { width: 44px; height: 44px; }
  .app-showcase { padding: 78px 0 84px; }
  .app-showcase-header { align-items: flex-start; flex-direction: column; gap: 28px; }
  .app-showcase-controls { width: 100%; }
  .app-showcase-controls > p { margin-right: auto; }
  .app-showcase-viewport { margin-top: 38px; }
  .app-showcase-track { gap: 18px; }
  .app-showcase-slide { min-width: calc(100vw - 62px); grid-template-columns: 1fr; }
  .app-showcase-slide figure { min-height: 0; aspect-ratio: 9 / 16; }
  .app-showcase-slide > div { padding: 28px 24px 31px; }
  .app-showcase-slide h3 { font-size: 24px; }
  .app-trust { padding: 78px 0 84px; }
  .app-trust-copy > span { font-size: 15px; }
  .app-trust-links a { min-height: 74px; font-size: 16px; }
  .app-final { padding: 72px 0 78px; }
  .app-final-inner > div:first-child { grid-template-columns: 58px 1fr; }
  .app-final img { width: 58px; height: 58px; }
  .app-final h2 { font-size: 32px; }
  .app-final-actions { width: 100%; flex-direction: column; }
  .app-final-actions a { width: 100%; justify-content: space-between; }
  .company-profile-page { --profile-gutter: 24px; }
  .profile-hero { height: 650px; }
  .profile-hero-image { height: 48%; }
  .profile-hero-panel { height: 57%; clip-path: polygon(0 10%,100% 0,100% 100%,0 100%); }
  .profile-hero-inner { padding-bottom: 35px; }
  .profile-breadcrumb { gap: 7px; }
  .profile-kicker { margin-top: 17px !important; }
  .profile-hero h1 { margin-top: 11px; font-size: 35px; }
  .profile-hero-en { margin-top: 12px !important; }
  .profile-hero-lead { font-size: 15px; }
  [data-aos="profile-hero-panel"].aos-animate { clip-path: polygon(0 10%,100% 0,100% 100%,0 100%); }
  .profile-content { padding-top: 70px; }
  .profile-content > section + section { margin-top: 78px; }
  .profile-section-heading h2,
  .profile-culture-heading h2 { font-size: 34px; }
  .profile-prose p { font-size: 15px; line-height: 1.88; }
  .profile-overview-grid { margin-top: 35px; gap: 38px; }
  .profile-overview-media { height: 300px; }
  .profile-structure,
  .profile-industries { margin-right: calc(var(--profile-gutter) * -1); margin-left: calc(var(--profile-gutter) * -1); padding: 72px var(--profile-gutter) 0; }
  .profile-structure-axis { margin-top: 40px; }
  .profile-structure-axis article { min-height: 0; padding: 25px 0; }
  .profile-structure-axis h3 { font-size: 21px; }
  .profile-structure-media { height: 280px; margin-top: 44px; }
  .profile-founder-media { min-height: 390px; }
  .profile-founder-media img { max-height: 410px; }
  .profile-founder-copy { padding: 50px 24px 58px; }
  .profile-founder h2 { font-size: 44px; }
  .profile-founder blockquote { font-size: 17px; }
  .profile-team-list { margin-top: 36px; }
  .profile-team-list li,
  .profile-team-list li:nth-child(odd),
  .profile-team-list li:nth-child(even) { min-height: 0; grid-template-columns: 95px 1fr; gap: 5px 15px; }
  .profile-team-list strong { font-size: 18px; }
  .profile-industry-list { grid-template-columns: 1fr; margin-top: 40px; }
  .profile-industry-list li,
  .profile-industry-list li:nth-child(even) { min-height: 76px; padding-left: 0; border-left: 0; }
  .profile-industry-list strong { font-size: 16px; }
  .profile-industries-media { height: 290px; margin-top: 44px; }
  .profile-culture { gap: 40px; }
  .profile-culture-list { grid-template-columns: 1fr; }
  .profile-culture-list li,
  .profile-culture-list li:nth-child(odd),
  .profile-culture-list li:nth-child(even) { min-height: 0; padding: 22px 0; border-left: 0; }
  .profile-evidence-grid { grid-template-columns: 1fr; gap: 18px; }
  .profile-evidence-grid figure { height: 260px; }
  .profile-document { padding-bottom: 88px; }
  .profile-document-footer { margin-top: 80px; padding-top: 42px; }
  .profile-document-footer h2 { font-size: 28px; }
  .profile-document-footer nav { width: 100%; flex-direction: column; }
  .profile-document-footer a { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .home-app-carousel-dots button::before,
  .home-app-screen { transition: none !important; }
  .app-showcase-slide img,
  .profile-overview-media img,
  .profile-structure-media img,
  .profile-industries-media img,
  .profile-evidence-grid img { transition: none !important; transform: none !important; }
  [data-aos="home-app-visual"],
  [data-aos="app-hero-screens"],
  [data-aos="app-showcase-reveal"],
  [data-aos="profile-hero-image"],
  [data-aos="profile-hero-panel"],
  [data-aos="profile-image-reveal"],
  [data-aos="profile-axis"],
  [data-aos="profile-founder-media"],
  [data-aos="profile-culture-item"] { opacity: 1 !important; clip-path: none !important; transform: none !important; transition: none !important; }
}

/* The team page closes with an editorial release and partnership CTA. */
.team-publication-cta {
  position: relative;
  overflow: hidden;
  background: #eef1ef;
}
.team-publication-inner {
  position: relative;
  min-height: 320px;
}
.team-publication-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 62px calc(52% + 54px) 62px max(64px, calc((100vw - 1536px) / 2 + 64px));
}
.team-publication-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.35vw, 36px);
  font-weight: 800;
  line-height: 1.3;
}
.team-publication-copy > p {
  max-width: 45ch;
  margin: 16px 0 0;
  color: rgba(7,21,29,.66);
  font-size: 15px;
  line-height: 1.75;
}
.team-publication-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 38px;
  margin-top: 25px;
}
.team-publication-primary,
.team-publication-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.team-publication-primary {
  padding: 0 24px;
  color: white;
  background: var(--gold);
  transition: background .25s ease, transform .25s ease;
}
.team-publication-primary:hover { background: #b8892f; transform: translateY(-1px); }
.team-publication-secondary {
  color: var(--harbor);
  border-bottom: 1px solid rgba(17,79,108,.48);
  transition: color .25s ease, border-color .25s ease;
}
.team-publication-secondary:hover { color: var(--ink); border-color: var(--ink); }
.team-publication-primary svg,
.team-publication-secondary svg { width: 17px; height: 17px; stroke-width: 1.8; transition: transform .25s ease; }
.team-publication-primary:hover svg,
.team-publication-secondary:hover svg { transform: translateX(4px); }
.team-publication-primary:focus-visible,
.team-publication-secondary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.team-publication-media {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 52%;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}
.team-publication-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.02);
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.team-publication-media.aos-animate img { transform: scale(1); }
[data-aos="team-publication-copy"],
[data-aos="team-publication-media"] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="team-publication-copy"] { transform: translate3d(-28px,0,0); }
[data-aos="team-publication-media"] { transform: translate3d(42px,0,0); }
[data-aos="team-publication-copy"].aos-animate,
[data-aos="team-publication-media"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }

@media (max-width: 1100px) {
  .team-publication-copy { padding-left: 48px; }
}

@media (max-width: 700px) {
  .team-publication-inner { display: flex; min-height: 0; flex-direction: column; }
  .team-publication-copy { padding: 56px 24px 48px; }
  .team-publication-copy h2 { font-size: 28px; }
  .team-publication-copy > p br { display: none; }
  .team-publication-actions { gap: 20px 27px; margin-top: 24px; }
  .team-publication-primary { padding-inline: 20px; }
  .team-publication-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 238px;
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
  }
  .team-publication-media img { object-position: center; }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos="team-publication-copy"],
  [data-aos="team-publication-media"] { opacity: 1; transform: none; }
  .team-publication-media img { transform: none; }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .team-chairman-inner { height: 520px; }
  .team-chairman-media {
    --team-media-clip: polygon(0 0, 84% 0, 100% 100%, 0 100%);
    --team-seam-top-inner: 83.55%;
    --team-seam-top-outer: 84%;
    --team-seam-bottom-inner: 98.2%;
    width: 47%;
  }
  .team-chairman-media img { object-position: 56% center; }
  .team-chairman-copy { width: 53%; margin-left: 47%; padding: 44px 30px 34px 26px; }
  .team-chairman-heading strong { font-size: 28px; }
  .team-chairman-statement { max-width: 19ch; font-size: 22px; white-space: normal; }
  .team-chairman-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin-top: 28px; }
  .team-chairman-principle { min-height: 58px; padding: 8px 0; }
  .team-chairman-principle:nth-child(even) { padding-left: 16px; }
  .team-chairman-principle:nth-child(odd)::before { display: none; }
  .team-chairman-principle:nth-child(n+3) { border-top: 1px solid rgba(201,154,61,.42); }
  .team-chairman-principle strong { white-space: normal; }
  .team-chairman-principle-icon { flex-basis: 44px; width: 44px; height: 44px; }
  .team-chairman-principle-icon svg { width: 21px; height: 21px; }
}

@media (max-width: 767px) {
  .team-chairman-inner { display: flex; height: auto; min-height: 720px; flex-direction: column; }
  .team-chairman-media {
    --team-media-clip: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    position: relative;
    inset: auto;
    flex: 0 0 320px;
    width: 100%;
  }
  .team-chairman-media img { object-position: 56% center; }
  .team-chairman-media::after {
    inset: 0;
    clip-path: polygon(0 87.4%, 100% 85.8%, 100% 88%, 0 88%);
    transform: scaleX(0);
    transform-origin: left;
  }
  .team-chairman-media[data-aos="team-chairman-media"].aos-animate::after { transform: scaleX(1); }
  .team-chairman-panel { position: relative; inset: auto; flex: 1 1 auto; }
  .team-chairman-copy { width: 100%; height: auto; margin-left: 0; padding: 20px 24px 48px; }
  .team-chairman-heading h2 { gap: 14px; }
  .team-chairman-heading strong { font-size: 28px; }
  .team-chairman-statement { margin-top: 20px; font-size: 23px; line-height: 1.5; white-space: normal; }
  .team-chairman-principles { grid-template-columns: 1fr; gap: 0; margin-top: 30px; }
  .team-chairman-principle { min-height: 66px; padding: 10px 0; }
  .team-chairman-principle:not(:first-child) { padding-left: 0; }
  .team-chairman-principle:not(:first-child)::before { top: 0; right: 0; bottom: auto; width: auto; height: 1px; }
  .team-chairman-principle strong { white-space: normal; }
  .team-chairman-principle-icon { flex-basis: 48px; width: 48px; height: 48px; }
  .team-chairman-principle-icon svg { width: 22px; height: 22px; }
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(17, 79, 108, .34), transparent 44%),
    var(--ink);
  color: white;
}
.method-path { position: relative; }
.method-path::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(201, 154, 61, .16));
}
.method-node { position: relative; padding-left: 68px; }
.method-node::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201, 154, 61, .13);
}
.field {
  width: 100%;
  border: 1px solid rgba(7, 21, 29, .16);
  background: rgba(255, 255, 255, .72);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 154, 61, .14); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  background: var(--gold);
  color: white;
  font-size: 15px;
  font-weight: 700;
  transition: transform .22s ease, background .22s ease;
}
.btn-gold:hover { transform: translateY(-1px); background: #b8892f; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 15px; font-weight: 700; }
.text-link::after { content: "→"; color: var(--gold); }
.mobile-panel { visibility: hidden; pointer-events: none; transform: translateX(100%); transition: transform .3s ease, visibility 0s linear .3s; }
.mobile-panel.open { visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
@media (max-width: 767px) {
  .container-x { width: min(100% - 28px, 1240px); }
  .section-pad { padding-block: 64px; }
  .page-hero { padding-top: 68px; }
  .page-hero > .container-x { min-height: 0; padding-block: 0 64px; gap: 36px; }
  .page-hero .aperture-frame { order: -1; }
  .aperture-frame { min-height: 300px; clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%); }
  .aperture-frame img { min-height: 270px; clip-path: polygon(8% 6%, 97% 6%, 90% 94%, 3% 94%); }
  .slash-panel, .slash-panel-reverse, .image-cut, .image-cut-reverse { clip-path: none; }
  .team-hero { height: 720px; margin-top: 68px; }
  .team-hero-background { object-position: 52% center; }
  .team-hero-shade { background: linear-gradient(0deg, rgba(7,21,29,.18), rgba(7,21,29,0) 58%); }
  .team-hero-panel { inset: auto 0 0; width: 100%; height: 56%; clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 100%); }
  .team-hero-inner { width: calc(100% - 48px); }
  .team-hero-copy { top: auto; bottom: 42px; width: 100%; max-width: none; }
  .team-page-hero .team-hero-copy { width: 100%; }
  .team-hero-copy h1 { margin-top: 16px; font-size: 34px; }
  .team-hero-rule { margin-top: 22px; }
  .team-hero-desc { max-width: 34ch; margin-top: 20px; line-height: 1.75; white-space: normal; }
  .team-hero-desc br { display: none; }
  .team-hero-portrait { right: -22px; width: min(92vw, 360px); height: 48%; }
  .team-page-hero { height: 780px; }
  .team-page-hero .team-hero-panel { height: 64%; }
  .team-page-hero .team-hero-copy { bottom: 36px; }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .team-hero-panel { width: 53%; }
  .team-hero-inner { width: calc(100% - 80px); }
  .team-hero-copy { width: min(330px, calc(43.25vw - 64px)); }
  .team-page-hero .team-hero-copy { width: min(430px, calc(47.25vw - 64px)); }
  .team-hero-copy h1 { font-size: 34px; }
  .team-hero-desc { max-width: 310px; white-space: normal; }
  .team-hero-desc br { display: none; }
  .team-hero-portrait { right: 0; width: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  .team-hero-background[data-aos="team-hero-background"],
  .team-hero-panel[data-aos="team-hero-panel"] { transform: none !important; }
}

/* Shared chrome follows the generated site-page references. */
site-header { position: fixed; inset: 0 0 auto; z-index: 50; display: block; height: 78px; }
.site-header {
  width: 100%;
  height: 78px;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(7, 21, 29, 0);
  line-height: 1.6;
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.site-header.is-scrolled {
  background: rgba(246, 247, 243, .92);
  border-bottom-color: rgba(7, 21, 29, .09);
  box-shadow: 0 8px 24px rgba(7, 21, 29, .08);
  backdrop-filter: saturate(135%) blur(14px);
  -webkit-backdrop-filter: saturate(135%) blur(14px);
}
site-header[theme="solid"] .site-header {
  background: rgba(246, 247, 243, .98);
  border-bottom-color: rgba(7, 21, 29, .09);
  box-shadow: 0 8px 24px rgba(7, 21, 29, .08);
  backdrop-filter: saturate(135%) blur(14px);
  -webkit-backdrop-filter: saturate(135%) blur(14px);
}
.header-inner {
  width: min(calc(100% - 128px), 1312px);
  height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 210px 1fr 90px;
  align-items: center;
  gap: 18px;
}
.header-logo { display: inline-flex; width: 178px; }
.header-logo img { display: block; width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 1.8vw, 32px); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 27px; }
.language-link { color: var(--ink); font-size: 16px; font-weight: 400; white-space: nowrap; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(7, 21, 29, .18); background: transparent; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: var(--ink); }
.mobile-panel {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  width: min(84vw, 380px);
  height: 100vh;
  padding: 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: white;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 38px; }
.mobile-panel-head img { width: 160px; height: auto; }
.mobile-panel-head button { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); color: white; background: transparent; font-size: 25px; }
.mobile-nav { display: grid; }
.mobile-nav-link,
.mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,.13); }
.mobile-nav-link,
.mobile-nav-group-trigger {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  color: white;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}
.mobile-nav-group-trigger { border: 0; background: transparent; cursor: pointer; }
.mobile-nav-group-trigger svg { width: 18px; height: 18px; stroke-width: 1.7; transition: transform .25s ease; }
.mobile-nav-group.open .mobile-nav-group-trigger svg { transform: rotate(180deg); }
.mobile-nav-link.active,
.mobile-nav-group.active > .mobile-nav-group-trigger { color: var(--gold); }
.mobile-submenu { display: grid; padding: 2px 0 12px; }
.mobile-submenu[hidden] { display: none; }
.mobile-submenu-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 16px;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  font-weight: 400;
}
.mobile-submenu-link:hover,
.mobile-submenu-link.active { color: white; }
.mobile-language { width: fit-content; margin-top: 24px; color: rgba(255,255,255,.68); font-size: 15px; font-weight: 400; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

site-footer { display: block; }
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.76);
  background: var(--ink);
  line-height: 1.6;
}
.footer-accent {
  position: relative;
  height: 5px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}
.footer-accent::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 29%;
  background: var(--gold);
}
.footer-accent span {
  position: absolute;
  top: -24px;
  left: calc(29% - 16px);
  width: 46px;
  height: 52px;
  background: var(--gold);
  transform: skewX(-24deg);
}
.footer-main {
  width: min(calc(100% - 128px), 1312px);
  margin-inline: auto;
  padding-block: 72px 66px;
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) minmax(300px, .92fr) minmax(340px, 1fr);
  gap: clamp(44px, 5vw, 82px);
}
.footer-main a, .footer-bottom a { color: inherit; }
.footer-brand { align-self: start; }
.footer-logo { display: inline-block; width: 162px; }
.footer-logo img { display: block; width: 100%; height: auto; }
.footer-position {
  margin: 34px 0 0;
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}
.footer-position strong { color: white; font-size: 26px; font-weight: 650; }
.footer-summary { max-width: 390px; margin: 22px 0 0; color: rgba(255,255,255,.64); font-size: 15px; font-weight: 400; line-height: 1.9; }
.footer-reach { margin: 30px 0 0; color: var(--gold); font-size: 15px; font-weight: 400; line-height: 1.55; }
.footer-sitemap { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 36px; align-content: start; }
.footer-link-group { display: grid; align-content: start; gap: 13px; }
.footer-link-group p {
  margin: 0 0 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.58);
  font-size: 15px;
  font-weight: 400;
}
.footer-link-group a {
  width: fit-content;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 400;
  transition: color .2s ease, transform .2s ease;
}
.footer-link-group a:hover { color: white; transform: translateX(4px); }
.footer-contact { padding-left: clamp(34px, 3.5vw, 54px); border-left: 1px solid rgba(255,255,255,.14); }
.footer-contact-label { margin: 0; color: var(--gold); font-size: 15px; font-weight: 400; }
.footer-contact h2 {
  max-width: 360px;
  margin: 19px 0 0;
  color: white;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.36;
}
.footer-contact-list { display: grid; gap: 8px; margin-top: 30px; }
.footer-contact-list a { display: grid; width: fit-content; min-height: 44px; grid-template-columns: 48px minmax(0, 1fr); align-items: center; gap: 10px; }
.footer-contact-list span { color: rgba(255,255,255,.64); font-size: 15px; font-weight: 400; }
.footer-contact-list strong { color: rgba(255,255,255,.86); font-size: 15px; font-weight: 400; overflow-wrap: anywhere; }
.footer-contact-list a:hover strong { color: white; }
.footer-cta {
  width: min(100%, 280px);
  min-height: 48px;
  margin-top: 34px;
  padding-inline: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white !important;
  background: var(--gold);
  font-size: 15px;
  font-weight: 400;
  transition: background-color .2s ease, transform .2s ease;
}
.footer-cta span:last-child { font-size: 18px; font-weight: 400; }
.footer-cta:hover { background: #d9ad54; transform: translateY(-2px); }
.footer-bottom {
  width: min(calc(100% - 128px), 1312px);
  min-height: 72px;
  margin-inline: auto;
  padding-block: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 44px;
  color: rgba(255,255,255,.64);
  font-size: 15px;
  font-weight: 400;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.footer-legal a { transition: color .2s ease; }
.footer-legal a:hover { color: white; }
.footer-copyright { white-space: nowrap; }

/* Join page: a port-side boardroom with a diagonal talent profile. */
.join-page {
  --join-max: 1536px;
  --join-gutter: 64px;
  color: var(--carbon);
  background: var(--paper);
  font-size: 15px;
}
.join-page .container-x { width: min(calc(100% - (var(--join-gutter) * 2)), var(--join-max)); }
.join-page .text-sm { font-size: 15px; }
.join-hero { padding-top: 78px; background: var(--paper); }
.join-hero-media { position: relative; isolation: isolate; height: 500px; overflow: hidden; color: white; background: var(--ink); }
.join-hero-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 58% 53%; filter: saturate(.82) contrast(1.03) brightness(.95); }
.join-hero-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,rgba(5,20,30,.12),transparent 68%,rgba(5,20,30,.12)); }
.join-hero-panel {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 55%;
  background: linear-gradient(120deg,#061722 0%,#082b3d 100%);
  clip-path: polygon(0 0,62% 0,100% 100%,0 100%);
}
.join-hero-inner { position: relative; z-index: 3; width: min(calc(100% - (var(--join-gutter) * 2)), var(--join-max)); height: 100%; margin-inline: auto; }
.join-hero-copy { position: absolute; top: 72px; left: 0; width: min(500px, calc(34.1vw - max(64px, calc((100vw - 1536px) / 2)) - 24px)); min-width: 0; max-width: 100%; }
.join-hero-copy h1 { max-width: 100%; margin: 0; font-size: 44px; font-weight: 750; line-height: 1.2; letter-spacing: 0; overflow-wrap: break-word; }
.join-hero-en { max-width: 100%; margin: 7px 0 0; color: rgba(255,255,255,.82); font-size: 17px; font-weight: 600; line-height: 1.4; overflow-wrap: break-word; }
.join-hero-rule { display: block; width: 34px; height: 3px; margin-top: 24px; background: var(--gold); }
.join-hero-lead { max-width: 100%; margin: 25px 0 0; font-size: 25px; font-weight: 700; line-height: 1.45; overflow-wrap: break-word; }
.join-hero-note { max-width: 100%; margin: 11px 0 0; color: rgba(255,255,255,.74); font-size: 15px; font-weight: 400; line-height: 1.75; overflow-wrap: break-word; }
.join-criteria {
  position: relative;
  z-index: 4;
  margin-top: -104px;
  padding: 158px 0 84px;
  overflow: hidden;
  background: #f8faf8;
  clip-path: polygon(0 0,100% 104px,100% 100%,0 100%);
}
.join-criteria::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 104%;
  height: 1px;
  background: rgba(201,154,61,.82);
  transform: rotate(4deg);
  transform-origin: left top;
}
.join-criteria-inner {
  width: min(calc(100% - (var(--join-gutter) * 2)), var(--join-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 300px minmax(0,1fr);
  gap: 90px;
  align-items: start;
}
.join-criteria-heading h2 { margin: 0; color: var(--ink); font-size: 30px; font-weight: 750; line-height: 1.35; letter-spacing: 0; }
.join-criteria-heading > span { display: block; width: 40px; height: 2px; margin-top: 19px; background: var(--gold); }
.join-criteria-heading p { margin: 21px 0 0; color: rgba(22,26,29,.66); font-size: 15px; font-weight: 400; line-height: 1.8; }
.join-criteria-list { position: relative; margin: 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.join-criteria-list::before { content: ""; position: absolute; top: 10px; bottom: 10px; left: 0; width: 1px; background: rgba(201,154,61,.6); }
.join-criteria-item {
  position: relative;
  min-width: 0;
  min-height: 42px;
  padding: 0 0 15px 30px;
  display: grid;
  grid-template-columns: 190px minmax(0,1fr);
  gap: 28px;
  align-items: baseline;
}
.join-criteria-dot { position: absolute; top: 8px; left: -3px; width: 7px; height: 7px; border: 1px solid var(--gold); background: #f8faf8; transform: rotate(45deg); }
.join-criteria-item h3 { margin: 0; color: var(--ink); font-size: 15px; font-weight: 750; line-height: 1.55; }
.join-criteria-item p { margin: 0; color: rgba(22,26,29,.66); font-size: 15px; font-weight: 400; line-height: 1.65; }
[data-aos="join-hero-image"] { opacity: .72; transform: scale(1.045); transition-property: opacity,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="join-hero-image"].aos-animate { opacity: 1; transform: scale(1); }
[data-aos="join-hero-panel"] { opacity: 1; transform: translate3d(-100%,0,0); transition-property: transform; transition-timing-function: cubic-bezier(.16,1,.3,1); will-change: transform; }
[data-aos="join-hero-panel"].aos-animate { transform: translate3d(0,0,0); }
[data-aos="join-hero-copy"] { opacity: 0; filter: blur(5px); transform: translate3d(-50px,0,0); transition-property: opacity,filter,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="join-hero-copy"].aos-animate { opacity: 1; filter: blur(0); transform: translate3d(0,0,0); }
[data-aos="join-criteria-heading"] { opacity: 0; transform: translate3d(-64px,0,0); transition-property: opacity,transform; transition-delay: 1.65s; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="join-criteria-heading"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="join-criteria-line"]::before { transform: scaleY(0); transform-origin: top; transition: transform .9s cubic-bezier(.16,1,.3,1) 1.75s; }
[data-aos="join-criteria-line"].aos-animate::before { transform: scaleY(1); }
[data-aos="join-criteria-item"] { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(72px,0,0); transition-property: opacity,clip-path,transform; transition-delay: var(--join-desktop-delay,1.85s); transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="join-criteria-item"].aos-animate { opacity: 1; clip-path: inset(0 0 0 0); transform: translate3d(0,0,0); }

@media (max-width: 1100px) {
  .join-hero-panel { width: 64%; }
  .join-hero-copy { width: min(470px, calc(39.7vw - 82px)); }
  .join-criteria-inner { grid-template-columns: 250px minmax(0,1fr); gap: 58px; }
  .join-criteria-item { grid-template-columns: 165px minmax(0,1fr); gap: 22px; }
}

@media (max-width: 900px) {
  .join-hero-panel { width: 72%; }
  .join-hero-copy { width: min(430px, calc(44.6vw - 82px)); }
  .join-criteria-inner { display: block; }
  .join-criteria-heading { max-width: 440px; }
  .join-criteria-list { margin-top: 44px; }
  [data-aos="join-criteria-line"]::before { transition-delay: .12s; }
  [data-aos="join-criteria-item"] { transition-delay: var(--join-mobile-delay,.12s); }
}

@media (max-width: 700px) {
  .join-page { --join-gutter: 24px; }
  .join-hero { padding-top: 70px; }
  .join-hero-media { height: 540px; }
  .join-hero-image { object-position: 68% center; }
  .join-hero-shade { background: linear-gradient(0deg,rgba(3,15,23,.28),transparent 64%); }
  .join-hero-panel { top: auto; width: 100%; height: 62%; clip-path: polygon(0 11%,100% 0,100% 100%,0 100%); }
  .join-hero-copy { top: auto; bottom: 66px; width: 100%; max-width: none; }
  .join-hero-copy h1 { font-size: 33px; }
  .join-hero-en { font-size: 15px; }
  .join-hero-rule { margin-top: 16px; }
  .join-hero-lead { margin-top: 18px; font-size: 21px; line-height: 1.42; }
  .join-hero-lead span { display: block; }
  .join-hero-note { margin-top: 8px; font-size: 15px; line-height: 1.65; }
  .join-criteria { margin-top: -58px; padding: 112px 0 64px; clip-path: polygon(0 0,100% 58px,100% 100%,0 100%); }
  .join-criteria::before { transform: rotate(8.8deg); }
  .join-criteria-heading h2 { font-size: 27px; }
  .join-criteria-heading p br { display: none; }
  .join-criteria-list { margin-top: 38px; gap: 0; }
  .join-criteria-item { min-height: 0; padding: 18px 0 20px 25px; grid-template-columns: 1fr; gap: 5px; border-bottom: 1px solid rgba(7,21,29,.1); }
  .join-criteria-item:first-child { padding-top: 0; }
  .join-criteria-item:last-child { padding-bottom: 0; border-bottom: 0; }
  .join-criteria-dot { top: 25px; }
  .join-criteria-item:first-child .join-criteria-dot { top: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos="join-hero-image"],
  [data-aos="join-hero-panel"],
  [data-aos="join-hero-copy"],
  [data-aos="join-criteria-heading"],
  [data-aos="join-criteria-item"] { opacity: 1; filter: none; clip-path: inset(0); transform: none; }
  [data-aos="join-criteria-line"]::before { transform: none; }
}

.join-directions {
  position: relative;
  padding: 92px 0 102px;
  overflow: hidden;
  background: #eef2f0;
}
.join-directions::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(28vw,420px);
  height: 6px;
  /* background: var(--ink); */
  clip-path: polygon(8% 0,100% 0,100% 100%,0 100%);
}
.join-directions-inner { width: min(calc(100% - (var(--join-gutter) * 2)), var(--join-max)); margin-inline: auto; }
.join-directions-heading {
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(360px,.8fr);
  gap: 72px;
  align-items: end;
  border-bottom: 1px solid rgba(7,21,29,.18);
}
.join-directions-heading > div > p { margin: 0 0 13px; color: #8c651f; font-size: 15px; font-weight: 700; line-height: 1.4; }
.join-directions-heading h2 { margin: 0; color: var(--ink); font-size: 38px; font-weight: 750; line-height: 1.25; letter-spacing: 0; }
.join-directions-heading > div > span { display: block; width: 52px; height: 2px; margin-top: 22px; background: var(--gold); }
.join-directions-heading > p { max-width: 52ch; margin: 0; color: rgba(22,26,29,.68); font-size: 16px; line-height: 1.8; }
.join-direction-lanes { margin: 0; padding: 0; list-style: none; }
.join-direction-lane {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0,1fr);
}
.join-direction-lane::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(7,21,29,.16);
  transform-origin: left;
}
.join-direction-lane:first-child::before { display: none; }
.join-direction-lane-header { min-width: 0; padding: 32px 34px 34px 0; border-right: 1px solid rgba(7,21,29,.16); }
.join-direction-lane-header > span { color: #8c651f; font-size: 15px; font-weight: 700; line-height: 1.4; }
.join-direction-lane-header h3 { margin: 8px 0 0; color: var(--ink); font-size: 24px; font-weight: 750; line-height: 1.35; }
.join-direction-lane-header p { max-width: 24ch; margin: 13px 0 0; color: rgba(22,26,29,.6); font-size: 15px; line-height: 1.7; }
.join-direction-items { min-width: 0; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); list-style: none; }
.join-direction-item {
  min-width: 0;
  min-height: 178px;
  padding: 34px 30px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 16px;
  align-content: start;
  border-right: 1px solid rgba(7,21,29,.12);
}
.join-direction-item:last-child { border-right: 0; }
.join-direction-number { color: #9b7128; font-size: 20px; font-weight: 700; line-height: 1.35; }
.join-direction-item h4 { margin: 1px 0 0; color: var(--ink); font-size: 17px; font-weight: 750; line-height: 1.5; }
.join-direction-item p { margin: 11px 0 0; color: rgba(22,26,29,.62); font-size: 15px; line-height: 1.7; }
body[data-aos-easing] [data-aos="join-directions-heading"] { opacity: 0; filter: blur(4px); transform: translate3d(-58px,0,0); transition-property: opacity,filter,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
body[data-aos-easing] [data-aos="join-directions-heading"].aos-animate { opacity: 1; filter: blur(0); transform: translate3d(0,0,0); }
body[data-aos-easing] [data-aos="join-direction-lane"]::before { transform: scaleX(0); transition: transform .85s cubic-bezier(.16,1,.3,1) .12s; }
body[data-aos-easing] [data-aos="join-direction-lane"].aos-animate::before { transform: scaleX(1); }
body[data-aos-easing] [data-aos="join-direction-lane"] > .join-direction-lane-header { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(-34px,0,0); transition: opacity .72s cubic-bezier(.16,1,.3,1),clip-path .82s cubic-bezier(.16,1,.3,1),transform .82s cubic-bezier(.16,1,.3,1); }
body[data-aos-easing] [data-aos="join-direction-lane"].aos-animate > .join-direction-lane-header { opacity: 1; clip-path: inset(0); transform: translate3d(0,0,0); }
body[data-aos-easing] [data-aos="join-direction-item"] { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(48px,0,0); transition-property: opacity,clip-path,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
body[data-aos-easing] [data-aos="join-direction-item"].aos-animate { opacity: 1; clip-path: inset(0); transform: translate3d(0,0,0); }

.join-offer {
  position: relative;
  padding: 64px 0 62px;
  overflow: hidden;
  color: white;
  background: #06283a;
  border-top: 1px solid rgba(201,154,61,.52);
}
.join-offer::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 390px;
  height: 270px;
  border-top: 1px solid rgba(201,154,61,.34);
  transform: rotate(-24deg);
}
.join-offer-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--join-gutter) * 2)), var(--join-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 270px minmax(0,1fr);
  gap: 68px;
  align-items: start;
}
.join-offer-heading h2,
.join-apply-intro h2 { margin: 0; font-size: 30px; font-weight: 750; line-height: 1.3; letter-spacing: 0; }
.join-offer-heading > span,
.join-apply-intro > span { display: block; width: 40px; height: 2px; margin-top: 18px; background: var(--gold); }
.join-offer-heading p { max-width: 30ch; margin: 20px 0 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.75; }
.join-offer-list {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 28px;
  list-style: none;
}
.join-offer-list::before { content: ""; position: absolute; top: 24px; left: 0; right: 9%; height: 1px; background: rgba(255,255,255,.22); transform-origin: left; }
.join-offer-list::after { content: ""; position: absolute; top: 21px; left: 0; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.join-offer-item { position: relative; z-index: 1; min-width: 0; padding-left: 10px; }
.join-offer-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #d8ae5d;
  background: #06283a;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}
.join-offer-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.join-offer-item h3 { margin: 21px 0 0; color: white; font-size: 16px; font-weight: 700; line-height: 1.55; }
.join-offer-item p { margin: 9px 0 0; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.7; }
body[data-aos-easing] [data-aos="join-offer-heading"] { opacity: 0; filter: blur(4px); clip-path: inset(0 100% 0 0); transform: translate3d(-54px,0,0); transition-property: opacity,filter,clip-path,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
body[data-aos-easing] [data-aos="join-offer-heading"].aos-animate { opacity: 1; filter: blur(0); clip-path: inset(0); transform: translate3d(0,0,0); }
body[data-aos-easing] [data-aos="join-offer-track"]::before { transform: scaleX(0); transition: transform .95s cubic-bezier(.16,1,.3,1) .1s; }
body[data-aos-easing] [data-aos="join-offer-track"].aos-animate::before { transform: scaleX(1); }
body[data-aos-easing] [data-aos="join-offer-track"]::after { opacity: 0; transform: rotate(45deg) scale(0); transition: opacity .35s ease .08s,transform .55s cubic-bezier(.16,1,.3,1) .08s; }
body[data-aos-easing] [data-aos="join-offer-track"].aos-animate::after { opacity: 1; transform: rotate(45deg) scale(1); }
body[data-aos-easing] [data-aos="join-offer-item"] { opacity: 0; filter: blur(4px); clip-path: inset(0 0 100% 0); transform: translate3d(0,52px,0); transition-property: opacity,filter,clip-path,transform; transition-delay: var(--join-offer-delay); transition-timing-function: cubic-bezier(.16,1,.3,1); }
body[data-aos-easing] [data-aos="join-offer-item"].aos-animate { opacity: 1; filter: blur(0); clip-path: inset(0); transform: translate3d(0,0,0); }
body[data-aos-easing] [data-aos="join-offer-item"] .join-offer-icon { transform: rotate(-42deg) scale(.42); transition: transform .78s cubic-bezier(.16,1,.3,1) var(--join-offer-delay),border-color .3s ease,background .3s ease; }
body[data-aos-easing] [data-aos="join-offer-item"].aos-animate .join-offer-icon { transform: rotate(0) scale(1); }

.join-apply { position: relative; padding: 68px 0 76px; overflow: hidden; background: #fafbf9; }
.join-apply::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -64px;
  width: 300px;
  height: 120px;
  border-top: 1px solid rgba(201,154,61,.72);
  transform: rotate(-24deg);
}
.join-apply-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--join-gutter) * 2)), var(--join-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 270px minmax(0,1fr);
  gap: 68px;
  align-items: start;
}
.join-apply-intro h2 { color: var(--ink); }
.join-apply-intro p { max-width: 28ch; margin: 22px 0 0; color: rgba(22,26,29,.68); font-size: 15px; line-height: 1.78; }
.join-apply-intro address { margin-top: 38px; display: grid; gap: 6px; font-style: normal; }
.join-apply-intro address strong { color: rgba(7,21,29,.62); font-size: 15px; font-weight: 650; }
.join-apply-intro address a { width: fit-content; color: var(--ink); font-size: 15px; font-weight: 700; transition: color .2s ease; }
.join-apply-intro address a:hover { color: #8b641e; }
.join-apply-form { min-width: 0; }
.join-apply-fields { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px 26px; }
.join-apply-fields label { min-width: 0; display: grid; align-content: start; gap: 9px; color: var(--ink); font-size: 15px; font-weight: 650; line-height: 1.5; }
.join-apply-fields label > span:first-child b { color: #aa3428; font-weight: 700; }
.join-apply-fields input:not([type="file"]),
.join-apply-fields select,
.join-apply-fields textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--carbon);
  font-size: 15px;
  line-height: 1.5;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(7,21,29,.18);
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.join-apply-fields textarea { min-height: 116px; resize: vertical; }
.join-apply-fields input::placeholder,
.join-apply-fields textarea::placeholder { color: rgba(22,26,29,.48); }
.join-apply-fields input:not([type="file"]):focus,
.join-apply-fields select:focus,
.join-apply-fields textarea:focus { background: white; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,154,61,.12); }
.join-file-control {
  position: relative;
  min-height: 116px;
  padding: 17px 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: rgba(7,21,29,.7);
  text-align: center;
  background: rgba(255,255,255,.48);
  border: 1px dashed rgba(7,21,29,.26);
  cursor: pointer;
  transition: color .2s ease,border-color .2s ease,background .2s ease;
}
.join-file-control:hover,
.join-file-control.is-selected { color: var(--ink); background: white; border-color: var(--gold); }
.join-file-control:focus-within { outline: 2px solid var(--gold); outline-offset: 3px; }
.join-file-control input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.join-file-control svg { width: 22px; height: 22px; color: #9b7128; stroke-width: 1.8; }
.join-file-control strong { max-width: 100%; overflow: hidden; color: inherit; font-size: 15px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.join-file-control small { color: rgba(22,26,29,.5); font-size: 15px; font-weight: 400; line-height: 1.45; }
.join-apply-footer { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.join-apply-consent { min-width: 0; display: flex; align-items: flex-start; gap: 10px; color: rgba(22,26,29,.62); font-size: 15px; line-height: 1.55; }
.join-apply-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); }
.join-apply-submit {
  min-height: 46px;
  padding: 12px 20px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  background: var(--gold);
  border: 0;
  cursor: pointer;
  transition: background .2s ease,transform .2s ease;
}
.join-apply-submit:hover { background: #b8892f; transform: translateY(-1px); }
.join-apply-submit svg { width: 18px; height: 18px; }
.join-apply-status { min-height: 24px; margin: 12px 0 0; color: #67501f; font-size: 15px; line-height: 1.5; }

@media (max-width: 1200px) {
  .join-directions-heading { grid-template-columns: minmax(0,1fr) minmax(320px,.8fr); gap: 48px; }
  .join-direction-lane { grid-template-columns: 210px minmax(0,1fr); }
  .join-direction-item { padding-inline: 22px; grid-template-columns: 36px minmax(0,1fr); gap: 12px; }
  .join-offer-inner,
  .join-apply-inner { grid-template-columns: 230px minmax(0,1fr); gap: 44px; }
  .join-offer-list { gap: 18px; }
}

@media (max-width: 1000px) {
  .join-directions-heading { grid-template-columns: 1fr; gap: 24px; }
  .join-direction-lane { grid-template-columns: 190px minmax(0,1fr); }
  .join-direction-item { padding-inline: 18px; grid-template-columns: 1fr; gap: 8px; }
  .join-offer-inner,
  .join-apply-inner { grid-template-columns: 1fr; gap: 42px; }
  .join-offer-heading p,
  .join-apply-intro p { max-width: 52ch; }
  .join-offer-list { gap: 24px; }
  .join-apply-intro address { margin-top: 26px; }
}

@media (max-width: 760px) {
  .join-directions { padding: 64px 0 72px; }
  .join-directions::before { width: 42%; height: 4px; }
  .join-directions-heading { padding-bottom: 34px; }
  .join-directions-heading h2 { font-size: 30px; }
  .join-directions-heading > p { font-size: 15px; }
  .join-direction-lane { display: block; }
  .join-direction-lane:first-child::before { display: block; }
  .join-direction-lane-header { padding: 27px 0 24px; border-right: 0; border-bottom: 1px solid rgba(7,21,29,.12); }
  .join-direction-lane-header h3 { font-size: 22px; }
  .join-direction-lane-header p { max-width: 34ch; }
  .join-direction-items { grid-template-columns: 1fr; }
  .join-direction-item { min-height: 0; padding: 22px 0 24px; grid-template-columns: 42px minmax(0,1fr); gap: 14px; border-right: 0; border-bottom: 1px solid rgba(7,21,29,.1); }
  .join-direction-item:last-child { border-bottom: 0; }
  .join-offer { padding: 56px 0 60px; }
  .join-offer-inner,
  .join-apply-inner { gap: 38px; }
  .join-offer-heading h2,
  .join-apply-intro h2 { font-size: 27px; }
  .join-offer-list { grid-template-columns: 1fr; gap: 0; }
  .join-offer-list::before { top: 0; bottom: 0; left: 23px; right: auto; width: 1px; height: auto; transform-origin: top; }
  .join-offer-list::after { top: 0; left: 20px; }
  .join-offer-item { min-height: 0; padding: 0 0 28px; display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 18px; }
  .join-offer-item:last-child { padding-bottom: 0; }
  .join-offer-item h3 { margin-top: 0; }
  .join-offer-item p { margin-top: 6px; }
  .join-apply { padding: 58px 0 64px; }
  .join-apply-fields { grid-template-columns: 1fr; gap: 20px; }
  .join-apply-footer { align-items: stretch; flex-direction: column; gap: 20px; }
  .join-apply-submit { width: 100%; }
  body[data-aos-easing] [data-aos="join-offer-track"]::before { transform: scaleY(0); }
  body[data-aos-easing] [data-aos="join-offer-track"].aos-animate::before { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  body[data-aos-easing] [data-aos="join-directions-heading"],
  body[data-aos-easing] [data-aos="join-direction-item"],
  body[data-aos-easing] [data-aos="join-offer-heading"],
  body[data-aos-easing] [data-aos="join-offer-item"],
  body[data-aos-easing] [data-aos="join-direction-lane"] > .join-direction-lane-header { opacity: 1 !important; filter: none !important; clip-path: inset(0) !important; transform: none !important; transition: none !important; }
  body[data-aos-easing] [data-aos="join-direction-lane"]::before,
  body[data-aos-easing] [data-aos="join-offer-track"]::before { transform: none !important; transition: none !important; }
  body[data-aos-easing] [data-aos="join-offer-track"]::after { opacity: 1 !important; transform: rotate(45deg) scale(1) !important; transition: none !important; }
  body[data-aos-easing] [data-aos="join-offer-item"] .join-offer-icon { transform: none !important; transition: none !important; }
}

/* Contact hero: a full-width harbor view with a staged engineering panel. */
.contact-page {
  --contact-max: 1536px;
  --contact-gutter: 64px;
  color: var(--carbon);
  background: var(--paper);
  font-size: 15px;
}
.contact-page .container-x { width: min(calc(100% - (var(--contact-gutter) * 2)), var(--contact-max)); }
.contact-page .text-sm { font-size: 15px; }
.contact-hero { padding-top: 78px; background: var(--paper); }
.contact-hero-media { position: relative; isolation: isolate; height: 430px; overflow: hidden; background: var(--ink); }
.contact-hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.82) contrast(1.03) brightness(1.04);
}
.contact-hero-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(4,20,29,.12), transparent 52%); }
.contact-hero-panel {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 50%;
  color: white;
  background: var(--gold);
  clip-path: polygon(0 0,45% 0,100% 100%,0 100%);
}
.contact-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #061722 0%, #08293a 100%);
  clip-path: polygon(0 0,43.7% 0,98.6% 100%,0 100%);
}
.contact-hero-copy {
  position: relative;
  z-index: 1;
  left: max(var(--contact-gutter), calc((100vw - var(--contact-max)) / 2));
  width: min(410px, calc(28.9vw - max(var(--contact-gutter), calc((100vw - var(--contact-max)) / 2)) - 24px));
  min-width: 0;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-hero-copy h1 { max-width: 100%; font-size: 46px; font-weight: 750; line-height: 1.18; overflow-wrap: break-word; }
.contact-hero-en { max-width: 100%; margin-top: 8px !important; color: rgba(255,255,255,.88); font-size: 18px; font-weight: 500; line-height: 1.4; letter-spacing: 0; overflow-wrap: break-word; }
.contact-hero-rule { display: block; width: 52px; height: 2px; margin-top: 22px; background: var(--gold); }
.contact-hero-desc { max-width: 100%; margin-top: 24px !important; color: rgba(255,255,255,.82); font-size: 17px; font-weight: 400; line-height: 1.75; overflow-wrap: break-word; }
.contact-submit { padding: 48px 0 52px; background: #fbfcfa; scroll-margin-top: 78px; }
.contact-submit-inner {
  width: min(calc(100% - (var(--contact-gutter) * 2)), var(--contact-max));
  margin-inline: auto;
}
.contact-submit-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 40px;
  align-items: stretch;
}
.submit-form { min-width: 0; display: grid; gap: 20px; }
.submit-form-heading { padding-bottom: 14px; border-bottom: 1px solid rgba(7,21,29,.12); }
.submit-form-heading h2 { margin: 0; color: var(--ink); font-size: 27px; font-weight: 750; line-height: 1.35; }
.submit-form-heading p { margin: 6px 0 0; color: rgba(7,21,29,.6); font-size: 15px; font-weight: 600; line-height: 1.4; }
.submit-form-detail-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 20px; align-items: start; }
.submit-review {
  align-self: stretch;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  color: var(--carbon);
  background: #f3f7f2;
  border: 1px solid rgba(17,79,108,.18);
}
.submit-review > h2 { margin: 0; color: var(--ink); font-size: 17px; font-weight: 750; line-height: 1.4; }
.submit-review > ul { margin: 31px 0 0; padding: 0; display: grid; gap: 25px; list-style: none; }
.submit-review > ul > li { min-width: 0; display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 14px; align-items: start; }
.submit-review-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #8b641e;
  background: #f3ead8;
  border: 1px solid rgba(170,121,32,.82);
}
.submit-review-icon svg { width: 23px; height: 23px; stroke-width: 1.7; }
.submit-review li h3 { margin: 1px 0 0; color: var(--ink); font-size: 15px; font-weight: 750; line-height: 1.45; }
.submit-review li p { margin: 6px 0 0; color: rgba(22,26,29,.68); font-size: 15px; line-height: 1.75; }
.submit-review-contact {
  margin-top: auto;
  padding: 22px;
  background: #d8e9ed;
}
.submit-review-contact > h3 { margin: 0; color: var(--ink); font-size: 15px; font-weight: 750; line-height: 1.55; }
.submit-review-contact address { margin-top: 18px; display: grid; gap: 11px; font-style: normal; }
.submit-review-contact a,
.submit-review-contact address p { margin: 0; display: grid; grid-template-columns: 28px minmax(0,1fr); gap: 10px; align-items: center; color: rgba(22,26,29,.78); font-size: 15px; line-height: 1.5; }
.submit-review-contact a { width: fit-content; transition: color .2s ease; }
.submit-review-contact a:hover { color: var(--ink); }
.submit-review-contact svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  color: #0e536a;
  background: #bcd7dd;
  stroke-width: 1.8;
}
[data-aos="contact-hero-image"] { opacity: .58; transform: scale(1.045); transition-property: opacity,transform; }
[data-aos="contact-hero-image"].aos-animate { opacity: 1; transform: scale(1); }
[data-aos="contact-panel"] { opacity: 0; transform: translate3d(-86px,0,0); transition-property: opacity,transform; }
[data-aos="contact-panel"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="contact-copy"] { opacity: 0; transform: translate3d(-34px,0,0); transition-property: opacity,transform; }
[data-aos="contact-copy"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }

@media (max-width: 1000px) {
  .contact-hero-panel { width: 63%; }
  .contact-hero-copy { width: min(410px, calc(36.8vw - 82px)); }
  .contact-hero-copy h1 { font-size: 42px; }
  .contact-submit-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  .contact-page { --contact-gutter: 24px; }
  .contact-hero-media { height: 520px; }
  .contact-hero-image { object-position: 58% center; }
  .contact-hero-shade { background: linear-gradient(0deg, rgba(3,15,23,.2), transparent 62%); }
  .contact-hero-panel { top: auto; width: 100%; height: 50%; clip-path: polygon(0 9%,100% 0,100% 100%,0 100%); }
  .contact-hero-panel::before { clip-path: polygon(0 11.5%,100% 2.5%,100% 100%,0 100%); }
  .contact-hero-copy { left: 24px; width: calc(100% - 48px); height: 100%; max-width: none; padding: 0 0 34px; justify-content: flex-end; }
  .contact-hero-copy h1 { font-size: 34px; }
  .contact-hero-en { margin-top: 6px !important; font-size: 15px; }
  .contact-hero-rule { margin-top: 14px; }
  .contact-hero-desc { margin-top: 16px !important; font-size: 15px; line-height: 1.7; }
  .submit-review { padding: 28px 24px 24px; }
  .submit-review > ul { margin-top: 27px; gap: 23px; }
  .submit-review-contact { padding: 20px; }
}

.contact-pathways { padding: 78px 0 82px; background: #f7f8f5; }
.contact-audiences { padding: 70px 0 76px; background: #eef1f0; }
.contact-process { padding: 76px 0 80px; background: #f7f8f5; }
.contact-official { padding: 70px 0 82px; background: #eef1f0; }
.contact-section-inner {
  width: min(calc(100% - (var(--contact-gutter) * 2)), var(--contact-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px minmax(0,1fr);
  gap: 48px;
  align-items: start;
}
.contact-section-heading h2 { margin: 0; color: var(--ink); font-size: 30px; font-weight: 750; line-height: 1.35; }
.contact-section-heading p { margin: 8px 0 0; color: rgba(7,21,29,.62); font-size: 15px; font-weight: 500; line-height: 1.45; }
.contact-section-heading > span { display: block; width: 52px; height: 2px; margin-top: 20px; background: var(--gold); }
.contact-pathways-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 30px;
  list-style: none;
}
.contact-pathway-item { min-width: 0; }
.contact-pathway-number { display: block; color: #234f7d; font-size: 18px; font-weight: 750; line-height: 1.3; }
.contact-pathway-number::after { content: "/"; margin-left: 7px; color: var(--gold); font-weight: 500; }
.contact-pathway-item h3 { margin: 25px 0 0; color: var(--ink); font-size: 18px; font-weight: 700; line-height: 1.45; }
.contact-pathway-item p { margin: 20px 0 0; color: rgba(22,26,29,.64); font-size: 15px; font-weight: 400; line-height: 1.75; }
.contact-audiences-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  column-gap: 64px;
  list-style: none;
}
.contact-audience-item {
  min-width: 0;
  padding: 19px 0 21px;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(7,21,29,.12);
}
.contact-audience-item:nth-last-child(-n+2) { border-bottom: 0; }
.contact-audience-icon { width: 50px; height: 50px; display: grid; place-items: center; color: #315d93; }
.contact-audience-icon svg { width: 44px; height: 44px; stroke-width: 1.55; }
.contact-audience-item h3 { margin: 0; color: var(--ink); font-size: 18px; font-weight: 700; line-height: 1.45; }
.contact-audience-item p { margin: 7px 0 0; color: rgba(22,26,29,.64); font-size: 15px; font-weight: 400; line-height: 1.7; }
.contact-process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 34px;
  list-style: none;
}
.contact-process-step { position: relative; min-width: 0; padding-right: 20px; }
.contact-process-top { position: relative; display: flex; align-items: center; min-height: 28px; }
.contact-process-number { color: #234f7d; font-size: 18px; font-weight: 750; line-height: 1.3; }
.contact-process-arrow {
  position: absolute;
  right: -24px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--gold);
  transform: translateY(-50%);
}
.contact-process-arrow svg { width: 28px; height: 28px; stroke-width: 1.35; }
.contact-process-step h3 { margin: 22px 0 0; color: var(--ink); font-size: 17px; font-weight: 700; line-height: 1.45; }
.contact-process-step p { margin: 14px 0 0; color: rgba(22,26,29,.64); font-size: 15px; font-weight: 400; line-height: 1.72; }
.contact-official-inner { align-items: start; }
.contact-official-body { min-width: 0; }
.contact-official-methods {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-bottom: 1px solid rgba(7,21,29,.12);
}
.contact-official-method {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 0 34px;
  border-left: 1px solid rgba(7,21,29,.12);
}
.contact-official-method:first-child { border-left: 0; padding-left: 0; }
.contact-official-icon { width: 42px; height: 42px; display: grid; place-items: center; color: #315d93; }
.contact-official-icon svg { width: 38px; height: 38px; stroke-width: 1.6; }
.contact-official-method strong { display: block; color: var(--ink); font-size: 16px; font-style: normal; font-weight: 700; line-height: 1.4; }
.contact-official-method em { display: block; margin-top: 4px; color: rgba(22,26,29,.68); font-size: 15px; font-style: normal; font-weight: 500; line-height: 1.45; overflow-wrap: anywhere; }
.contact-companies {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  column-gap: 74px;
  padding-top: 32px;
}
.contact-company { min-width: 0; }
.contact-company h3 { margin: 0; color: var(--ink); font-size: 17px; font-weight: 700; line-height: 1.45; }
.contact-company p { margin: 5px 0 0; color: rgba(22,26,29,.62); font-size: 15px; font-weight: 600; line-height: 1.45; text-transform: uppercase; }
.contact-company address { margin-top: 12px; color: rgba(22,26,29,.66); font-size: 15px; font-style: normal; font-weight: 400; line-height: 1.7; }
.contact-app-record {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  margin: 34px 0 0;
  border-top: 1px solid rgba(7,21,29,.12);
  border-bottom: 1px solid rgba(7,21,29,.12);
}
.contact-app-record > div { min-width: 0; padding: 22px 30px 24px 0; }
.contact-app-record > div + div { padding-left: 34px; border-left: 1px solid rgba(7,21,29,.12); }
.contact-app-record dt { color: rgba(22,26,29,.58); font-size: 15px; font-weight: 600; line-height: 1.45; }
.contact-app-record dd { margin: 7px 0 0; color: var(--ink); font-size: 16px; font-weight: 700; line-height: 1.55; overflow-wrap: anywhere; }
[data-aos="contact-section-heading"] { opacity: 0; transform: translate3d(-34px,0,0); transition-property: opacity,transform; }
[data-aos="contact-section-heading"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="contact-path-item"] { opacity: 0; transform: translate3d(0,28px,0); transition-property: opacity,transform; }
[data-aos="contact-path-item"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="contact-audience-item"] { opacity: 0; transform: translate3d(34px,0,0); transition-property: opacity,transform; }
[data-aos="contact-audience-item"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="contact-process-step"] { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(18px,0,0); transition-property: opacity,transform,clip-path; }
[data-aos="contact-process-step"].aos-animate { opacity: 1; clip-path: inset(0 0 0 0); transform: translate3d(0,0,0); }
[data-aos="contact-official-item"] { opacity: 0; transform: translate3d(0,24px,0); transition-property: opacity,transform; }
[data-aos="contact-official-item"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="contact-company-item"] { opacity: 0; transform: translate3d(0,20px,0); transition-property: opacity,transform; }
[data-aos="contact-company-item"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }

@media (max-width: 1100px) {
  .contact-pathways,
  .contact-audiences,
  .contact-process,
  .contact-official { padding: 66px 0 70px; }
  .contact-section-inner { display: block; }
  .contact-section-heading { max-width: 380px; }
  .contact-pathways-list { margin-top: 44px; grid-template-columns: repeat(3,minmax(0,1fr)); row-gap: 42px; }
  .contact-audiences-list { margin-top: 34px; }
  .contact-process-list { margin-top: 44px; grid-template-columns: repeat(3,minmax(0,1fr)); row-gap: 42px; }
  .contact-process-arrow { display: none; }
  .contact-official-body { margin-top: 34px; }
}

@media (max-width: 700px) {
  .contact-pathways,
  .contact-audiences,
  .contact-process,
  .contact-official { padding: 56px 0 60px; }
  .contact-submit { padding: 40px 0 44px; }
  .contact-section-heading h2 { font-size: 27px; }
  .contact-section-heading > span { margin-top: 17px; }
  .contact-pathways-list { margin-top: 38px; grid-template-columns: 1fr; gap: 0; }
  .contact-pathway-item { padding: 23px 0 25px; border-bottom: 1px solid rgba(7,21,29,.12); }
  .contact-pathway-item:first-child { padding-top: 0; }
  .contact-pathway-item:last-child { padding-bottom: 0; border-bottom: 0; }
  .contact-pathway-item h3 { margin-top: 14px; }
  .contact-pathway-item p { margin-top: 10px; }
  .contact-audiences-list { margin-top: 30px; grid-template-columns: 1fr; }
  .contact-audience-item { grid-template-columns: 50px minmax(0,1fr); gap: 16px; }
  .contact-audience-item:nth-last-child(2) { border-bottom: 1px solid rgba(7,21,29,.12); }
  .contact-audience-item:last-child { border-bottom: 0; }
  .contact-audience-icon { width: 44px; height: 44px; }
  .contact-audience-icon svg { width: 38px; height: 38px; }
  .contact-process-list { margin-top: 38px; grid-template-columns: 1fr; gap: 0; }
  .contact-process-step { padding: 23px 0 25px; border-bottom: 1px solid rgba(7,21,29,.12); }
  .contact-process-step:first-child { padding-top: 0; }
  .contact-process-step:last-child { padding-bottom: 0; border-bottom: 0; }
  .contact-process-step h3 { margin-top: 14px; }
  .contact-process-step p { margin-top: 10px; }
  .contact-submit-layout { gap: 28px; }
  .submit-form { gap: 18px; }
  .submit-form-heading { padding-bottom: 14px; }
  .submit-form-heading h2 { font-size: 25px; }
  .submit-form-detail-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-official-methods { grid-template-columns: 1fr; border-bottom: 0; }
  .contact-official-method {
    min-height: 0;
    grid-template-columns: 46px minmax(0,1fr);
    gap: 15px;
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(7,21,29,.12);
  }
  .contact-official-method:first-child { padding-left: 0; padding-top: 0; }
  .contact-official-method:last-child { border-bottom: 0; padding-bottom: 0; }
  .contact-official-icon { width: 40px; height: 40px; }
  .contact-official-icon svg { width: 36px; height: 36px; }
  .contact-companies { grid-template-columns: 1fr; gap: 28px; padding-top: 34px; }
  .contact-app-record { grid-template-columns: 1fr; margin-top: 30px; }
  .contact-app-record > div,
  .contact-app-record > div + div { padding: 18px 0 20px; border-left: 0; }
  .contact-app-record > div + div { border-top: 1px solid rgba(7,21,29,.12); }
  .contact-app-record dd { font-size: 15px; }
}

/* Capabilities page follows the approved engineering-method reference. */
.capabilities-page {
  --capabilities-max: 1536px;
  --capabilities-gutter: 64px;
  color: var(--carbon);
  background: var(--paper);
  font-size: 15px;
}
.capabilities-page h1,
.capabilities-page h2,
.capabilities-page h3,
.capabilities-page p { margin: 0; }
.capabilities-page p { font-weight: 400; }
.capabilities-page .text-sm { font-size: 15px; }
.capabilities-team-hero { background: #29353b; }
.capabilities-team-hero-background { overflow: hidden; }
.capabilities-team-hero .team-hero-kicker { font-weight: 700; }
@media (min-width: 768px) {
  .capabilities-team-hero .team-hero-copy { top: clamp(82px, 7.4vw, 112px); }
}
.capabilities-team-hero .team-hero-copy h1 { margin: 14px 0 0; }
.capabilities-team-hero .team-hero-desc { margin-top: 18px; }
.capabilities-team-hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.9) contrast(1.03);
}
[data-aos="cap-heading"] { opacity: 0; transform: translate3d(-32px, 0, 0); transition-property: opacity, transform; }
[data-aos="cap-heading"].aos-animate { opacity: 1; transform: translate3d(0, 0, 0); }
[data-aos="cap-row"] { opacity: 0; transform: translate3d(48px, 0, 0); transition-property: opacity, transform; }
[data-aos="cap-row"].aos-animate { opacity: 1; transform: translate3d(0, 0, 0); }
.capability-system { padding: 62px 0 72px; background: #f7f8f5; }
.capability-system-inner {
  width: min(calc(100% - (var(--capabilities-gutter) * 2)), var(--capabilities-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 100px;
  align-items: start;
}
.capability-system-heading h2 { color: var(--ink); font-size: 29px; font-weight: 750; line-height: 1.3; }
.capability-system-heading span { display: block; width: 28px; height: 2px; margin-top: 22px; background: var(--gold); }
.capability-list { position: relative; margin: 0; padding: 0; list-style: none; }
.capability-list::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: rgba(201, 154, 61, .75);
}
.capability-row {
  position: relative;
  min-height: 62px;
  padding: 14px 0 14px 35px;
  display: grid;
  grid-template-columns: minmax(210px, 265px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(7, 21, 29, .12);
}
.capability-row:last-child { border-bottom: 0; }
.capability-node {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
.capability-row h3 { color: var(--ink); font-size: 18px; font-weight: 700; line-height: 1.45; }
.capability-row p { color: rgba(22, 26, 29, .66); font-size: 15px; font-weight: 400; line-height: 1.7; }

@media (min-width: 901px) and (max-width: 1200px) {
  .capability-system-inner { grid-template-columns: 200px minmax(0, 1fr); gap: 42px; }
}

@media (max-width: 900px) {
  .capability-system-inner { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 700px) {
  .capabilities-page { --capabilities-gutter: 24px; }
  .capabilities-team-hero .team-hero-panel { height: 46%; }
  .capabilities-team-hero-photo { object-position: center; }
  .capabilities-team-hero .team-hero-copy h1 { margin-top: 16px; }
  .capabilities-team-hero .team-hero-desc { margin-top: 20px; }
  .capability-system { padding: 54px 0 60px; }
  .capability-system-inner { width: min(calc(100% - 48px), var(--capabilities-max)); gap: 32px; }
  .capability-system-heading h2 { font-size: 26px; }
  .capability-system-heading span { margin-top: 16px; }
  .capability-list::before { top: 24px; bottom: 24px; }
  .capability-row { min-height: 0; padding: 21px 0 21px 28px; grid-template-columns: 1fr; gap: 7px; }
  .capability-row h3 { font-size: 18px; }
  .capability-row p { font-size: 15px; line-height: 1.7; }
}

/* Method path: an evidence-led route across the project lifecycle. */
.method-path-section {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.method-path-background,
.method-path-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.method-path-background { display: block; object-fit: cover; object-position: center 50%; filter: saturate(.62) contrast(1.08) brightness(.64); }
.method-path-overlay { z-index: 1; background: linear-gradient(90deg, rgba(3, 17, 28, .9), rgba(4, 25, 41, .62) 40%, rgba(3, 18, 31, .76)); }
.method-path-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--capabilities-gutter) * 2)), var(--capabilities-max));
  min-height: 430px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
}
.method-path-intro { padding-top: 44px; }
.method-path-intro h2 { font-size: 27px; font-weight: 700; line-height: 1.3; }
.method-path-intro > span { display: block; width: 28px; height: 2px; margin-top: 18px; background: var(--gold); }
.method-path-intro p { margin-top: 20px; color: rgba(255,255,255,.76); font-size: 15px; font-weight: 400; line-height: 1.8; }
.method-path-map { position: relative; min-width: 0; height: 430px; }
.method-path-map svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.method-path-line { fill: none; stroke: var(--gold); stroke-width: 2; vector-effect: non-scaling-stroke; }
.method-path-nodes circle { fill: var(--gold); }
.method-path-map ol { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; }
.method-step {
  position: absolute;
  top: var(--step-y);
  left: var(--step-x);
  width: 1px;
  height: 1px;
}
.method-step-dot {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.method-step-motion { position: relative; width: 1px; height: 1px; }
.method-step h3,
.method-step p {
  position: absolute;
  left: 50%;
  width: 136px;
  transform: translateX(-50%);
}
.method-step h3 { bottom: 16px; color: white; font-size: 16px; font-weight: 700; line-height: 1.4; text-align: center; white-space: nowrap; }
.method-step p { top: 16px; color: rgba(255,255,255,.72); font-size: 15px; font-weight: 400; line-height: 1.65; text-align: center; }
.method-step.align-start h3,
.method-step.align-start p { right: auto; left: -5px; transform: none; text-align: left; }
.method-step.align-end h3,
.method-step.align-end p { right: -55px; left: auto; transform: none; text-align: right; }
[data-aos="method-route"] { opacity: 1; }
[data-aos="method-route"] .method-path-line { stroke-dasharray: 1600; stroke-dashoffset: 1600; transition: stroke-dashoffset 1.45s cubic-bezier(.22, 1, .36, 1); }
[data-aos="method-route"] .method-path-nodes { opacity: 0; transition: opacity .45s ease .82s; }
[data-aos="method-route"].aos-animate .method-path-line { stroke-dashoffset: 0; }
[data-aos="method-route"].aos-animate .method-path-nodes { opacity: 1; }

@media (max-width: 1100px) {
  .method-path-section { min-height: 0; }
  .method-path-inner { min-height: 0; padding: 58px 0 64px; display: block; }
  .method-path-intro { padding-top: 0; }
  .method-path-intro p br { display: none; }
  .method-path-map { height: auto; margin-top: 42px; padding-left: 28px; }
  .method-path-map svg { display: none; }
  .method-path-map::before { content: ""; position: absolute; top: 8px; bottom: 12px; left: 4px; width: 1px; background: rgba(201,154,61,.82); }
  .method-path-map ol { position: relative; inset: auto; }
  .method-step { position: relative; top: auto; left: auto; width: auto; height: auto; min-height: 104px; }
  .method-step-dot { top: 7px; left: -28px; }
  .method-step-motion { width: auto; height: auto; }
  .method-step h3,
  .method-step p,
  .method-step.align-start h3,
  .method-step.align-start p,
  .method-step.align-end h3,
  .method-step.align-end p { position: static; width: auto; transform: none; text-align: left; }
  .method-step h3 { margin-bottom: 8px; font-size: 17px; white-space: normal; }
  .method-step p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos="method-route"] .method-path-line { stroke-dashoffset: 0 !important; }
  [data-aos="method-route"] .method-path-nodes { opacity: 1 !important; }
}

/* Risk principles continue the method story with a controlled engineering cut. */
.risk-principles {
  position: relative;
  min-height: 430px;
  margin-top: 48px;
  overflow: hidden;
  background: #f7f8f5;
}
.risk-principles-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--capabilities-gutter) * 2)), var(--capabilities-max));
  min-height: 430px;
  margin-inline: auto;
  padding-right: 34%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
}
.risk-principles-intro { padding-top: 50px; }
.risk-principles-intro h2 { color: var(--ink); font-size: 29px; font-weight: 750; line-height: 1.3; }
.risk-principles-intro > span { display: block; width: 28px; height: 2px; margin-top: 18px; background: var(--gold); }
.risk-principles-intro p { margin-top: 20px; color: rgba(22,26,29,.66); font-size: 15px; font-weight: 400; line-height: 1.8; }
.risk-principles-list { position: relative; margin: 0; padding: 25px 0; list-style: none; }
.risk-principles-list::before {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 0;
  width: 1px;
  background: rgba(201,154,61,.82);
}
.risk-principle-row {
  position: relative;
  min-height: 54px;
  padding: 10px 0 10px 30px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(7,21,29,.12);
}
.risk-principle-row:last-child { border-bottom: 0; }
.risk-principle-node {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
.risk-principle-row h3 { color: var(--ink); font-size: 18px; font-weight: 700; line-height: 1.45; }
.risk-principle-row p { color: rgba(22,26,29,.62); font-size: 15px; font-weight: 400; line-height: 1.65; }
.risk-principles-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}
.risk-principles-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }
[data-aos="risk-list"] { opacity: 1; }
[data-aos="risk-list"]::before { transform: scaleY(0); transform-origin: top; transition: transform 1.05s cubic-bezier(.22,1,.36,1); }
[data-aos="risk-list"].aos-animate::before { transform: scaleY(1); }
[data-aos="risk-visual"] { opacity: 0; transform: translate3d(72px,0,0); transition-property: opacity, transform; }
[data-aos="risk-visual"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="risk-visual"] img { transform: scale(1.055); transition: transform 1.2s cubic-bezier(.22,1,.36,1); }
[data-aos="risk-visual"].aos-animate img { transform: scale(1); }

@media (max-width: 1100px) {
  .risk-principles { min-height: 0; margin-top: 36px; }
  .risk-principles-inner { min-height: 0; padding: 58px 0 0; display: block; }
  .risk-principles-intro { padding-top: 0; }
  .risk-principles-intro p br { display: none; }
  .risk-principles-list { margin-top: 32px; padding: 0; }
  .risk-principles-list::before { top: 27px; bottom: 27px; }
  .risk-principle-row { min-height: 54px; padding: 11px 0 11px 28px; grid-template-columns: minmax(160px,220px) minmax(0,1fr); gap: 24px; }
  .risk-principles-visual { position: relative; width: 100%; height: 320px; margin-top: 48px; clip-path: polygon(0 18%,100% 0,100% 100%,0 100%); }
}

@media (max-width: 700px) {
  .risk-principles-inner { width: min(calc(100% - 48px), var(--capabilities-max)); padding-top: 54px; }
  .risk-principles-intro h2 { font-size: 26px; }
  .risk-principles-intro > span { margin-top: 16px; }
  .risk-principles-list { margin-top: 30px; }
  .risk-principles-list::before { top: 28px; bottom: 28px; }
  .risk-principle-row { min-height: 0; padding: 19px 0 19px 28px; grid-template-columns: 1fr; gap: 6px; }
  .risk-principle-row h3 { font-size: 18px; }
  .risk-principle-row p { font-size: 15px; line-height: 1.7; }
  .risk-principles-visual { height: 260px; margin-top: 32px; }
}

/* Expert collaboration uses two large visual fields instead of small category tiles. */
.expert-collaboration { padding: 74px 0 78px; overflow: hidden; background: #f7f8f5; }
.expert-collaboration-inner {
  width: min(calc(100% - (var(--capabilities-gutter) * 2)), var(--capabilities-max));
  margin-inline: auto;
  display: block;
}
.expert-collaboration-intro { max-width: 680px; margin: 0; text-align: left; }
.expert-collaboration-intro h2 { color: var(--ink); font-size: 29px; font-weight: 750; line-height: 1.3; }
.expert-collaboration-intro > span { display: block; width: 28px; height: 2px; margin: 18px 0 0; background: var(--gold); }
.expert-collaboration-intro p { margin-top: 20px; color: rgba(22,26,29,.66); font-size: 15px; font-weight: 400; line-height: 1.8; }
.expert-carousel { min-width: 0; margin-top: 42px; }
.expert-carousel-stage { position: relative; height: 390px; overflow: hidden; background: transparent; }
.expert-carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(34px,0,0);
  transition: opacity .55s ease, transform .65s cubic-bezier(.22,1,.36,1), visibility 0s linear .65s;
}
.expert-carousel-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: translate3d(0,0,0); transition-delay: 0s; }
.expert-collab-card { position: relative; min-width: 0; height: 100%; overflow: hidden; background: transparent; }
.expert-collab-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,15,23,.04) 28%, rgba(3,15,23,.82) 100%);
}
.expert-collab-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.055);
  transition: transform 1.1s cubic-bezier(.22,1,.36,1), filter .45s ease;
}
.expert-carousel-slide.is-active .expert-collab-card img { transform: scale(1); }
.expert-collab-card:hover img { transform: scale(1.025); filter: saturate(1.08); }
.expert-collab-card-copy { position: absolute; z-index: 2; right: 28px; bottom: 27px; left: 28px; color: white; }
.expert-collab-card-copy h3 { font-size: 23px; font-weight: 700; line-height: 1.35; }
.expert-collab-card-copy p { margin-top: 8px; color: rgba(255,255,255,.78); font-size: 15px; font-weight: 400; line-height: 1.65; }
.expert-carousel-nav { min-height: 44px; margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.expert-carousel-dots { display: flex; align-items: center; gap: 10px; }
.expert-carousel-dot {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(7,21,29,.2);
  transition: width .3s ease, background .3s ease;
  cursor: pointer;
}
.expert-carousel-dot.is-active { width: 46px; background: var(--gold); }
.expert-carousel-arrows { display: flex; gap: 8px; }
.expert-carousel-arrows button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(7,21,29,.22);
  color: var(--ink);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.expert-carousel-arrows button:hover { border-color: var(--ink); color: white; background: var(--ink); }
.expert-carousel-dot:focus-visible,
.expert-carousel-arrows button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
[data-aos="expert-carousel"] { opacity: 0; transform: translate3d(42px,0,0); transition-property: opacity,transform; }
[data-aos="expert-carousel"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }

.capabilities-next-step {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(105deg, #07151d 0%, #082333 64%, #0d3447 100%);
}
.capabilities-next-step::after {
  content: "";
  position: absolute;
  top: -82px;
  right: -32px;
  width: 250px;
  height: 220px;
  border-top: 1px solid rgba(201,154,61,.58);
  border-left: 1px solid rgba(201,154,61,.58);
  transform: skewX(-34deg) rotate(-9deg);
}
.capabilities-next-step-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--capabilities-gutter) * 2)), var(--capabilities-max));
  min-height: 176px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 64px;
  align-items: center;
}
.capabilities-next-step h2 { font-size: 29px; font-weight: 700; line-height: 1.35; }
.capabilities-next-step p { margin-top: 11px; color: rgba(255,255,255,.68); font-size: 15px; font-weight: 400; line-height: 1.7; }
.capabilities-next-step-actions { display: flex; align-items: center; gap: 34px; }
.capabilities-next-step-primary,
.capabilities-next-step-link { min-height: 46px; display: inline-flex; align-items: center; gap: 18px; font-size: 15px; font-weight: 700; white-space: nowrap; }
.capabilities-next-step-primary { padding: 0 25px; color: white; background: var(--gold); }
.capabilities-next-step-link { color: white; border-bottom: 1px solid rgba(255,255,255,.5); }
.capabilities-next-step-primary span,
.capabilities-next-step-link span { font-size: 18px; font-weight: 400; transition: transform .25s ease; }
.capabilities-next-step-primary:hover span,
.capabilities-next-step-link:hover span { transform: translateX(4px); }
.capabilities-next-step-primary:focus-visible,
.capabilities-next-step-link:focus-visible { outline: 2px solid white; outline-offset: 4px; }

@media (max-width: 1100px) {
  .expert-collaboration { padding: 64px 0 70px; }
  .expert-collaboration-inner { display: block; }
  .expert-collaboration-intro p br { display: none; }
  .expert-carousel { margin-top: 40px; }
  .expert-carousel-stage { height: 330px; }
  .capabilities-next-step-inner { min-height: 0; padding: 54px 0; grid-template-columns: 1fr; gap: 34px; }
  .capabilities-next-step-actions { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .expert-collaboration { padding: 56px 0 62px; }
  .expert-collaboration-inner,
  .capabilities-next-step-inner { width: min(calc(100% - 48px), var(--capabilities-max)); }
  .expert-collaboration-intro h2 { font-size: 26px; }
  .expert-collaboration-intro > span { margin-top: 16px; }
  .expert-carousel { margin-top: 34px; }
  .expert-carousel-stage { height: 536px; background: transparent; }
  .expert-carousel-slide { grid-template-columns: 1fr; grid-template-rows: repeat(2,minmax(0,1fr)); gap: 12px; }
  .expert-collab-card-copy { right: 20px; bottom: 20px; left: 20px; }
  .expert-collab-card-copy h3 { font-size: 20px; }
  .expert-carousel-nav { margin-top: 16px; }
  .expert-carousel-arrows button { width: 40px; height: 40px; }
  .capabilities-next-step-inner { padding: 48px 0 52px; gap: 30px; }
  .capabilities-next-step h2 { font-size: 26px; }
  .capabilities-next-step-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
}

/* Capability extensions: make the network and governance layers explicit. */
.capability-label {
  color: var(--gold);
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
.capability-network {
  padding: clamp(78px, 7vw, 116px) 0 clamp(82px, 7.2vw, 122px);
  overflow: hidden;
  color: var(--ink);
  background: #e8eeeb;
}
.capability-network-inner {
  width: min(calc(100% - (var(--capabilities-gutter) * 2)), var(--capabilities-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(270px, .68fr) minmax(0, 1.32fr);
  gap: clamp(64px, 9vw, 152px);
  align-items: start;
}
.capability-network-heading { max-width: 430px; }
.capability-network-heading h2,
.capability-compliance-heading h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 770;
  line-height: 1.3;
}
.capability-network-heading > span,
.capability-compliance-heading > span {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 21px;
  background: var(--gold);
}
.capability-network-heading > p:last-child,
.capability-compliance-heading > p:last-child {
  max-width: 39ch;
  margin-top: 23px;
  color: rgba(7,21,29,.65);
  font-size: 15px;
  line-height: 1.85;
}
.capability-network-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(7,21,29,.2);
}
.capability-network-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 22px 0 23px;
  border-bottom: 1px solid rgba(7,21,29,.16);
  opacity: 0;
  transform: translate3d(34px,0,0);
  transition: opacity .72s cubic-bezier(.16,1,.3,1), transform .72s cubic-bezier(.16,1,.3,1);
}
.capability-network-list li.aos-animate { opacity: 1; transform: translate3d(0,0,0); }
.capability-network-index { color: var(--gold); font-size: 15px; font-weight: 750; line-height: 1.4; }
.capability-network-list h3 { color: var(--ink); font-size: 19px; font-weight: 720; line-height: 1.4; }
.capability-network-list p { max-width: 58ch; margin-top: 5px; color: rgba(7,21,29,.64); font-size: 15px; line-height: 1.75; }
.capability-network-list i,
.capability-network-list svg { width: 18px; height: 18px; color: var(--gold); }

.capability-compliance {
  padding: clamp(80px, 7.2vw, 122px) 0 clamp(68px, 5.6vw, 92px);
  overflow: hidden;
  background: #f7f8f5;
  border-top: 1px solid rgba(7,21,29,.08);
}
.capability-compliance-inner {
  width: min(calc(100% - (var(--capabilities-gutter) * 2)), var(--capabilities-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: start;
}
.capability-compliance-heading { max-width: 430px; }
.capability-compliance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  column-gap: 44px;
}
.capability-compliance-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 0 0 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(7,21,29,.14);
  opacity: 0;
  transform: translate3d(34px,0,0);
  transition: opacity .72s cubic-bezier(.16,1,.3,1), transform .72s cubic-bezier(.16,1,.3,1);
}
.capability-compliance-list li.aos-animate { opacity: 1; transform: translate3d(0,0,0); }
.capability-compliance-list li > span { color: var(--gold); font-size: 15px; font-weight: 750; line-height: 1.5; }
.capability-compliance-list h3 { color: var(--ink); font-size: 18px; font-weight: 720; line-height: 1.45; }
.capability-compliance-list p { margin-top: 7px; color: rgba(7,21,29,.63); font-size: 15px; line-height: 1.72; }

@media (max-width: 1000px) {
  .capability-network-inner,
  .capability-compliance-inner { grid-template-columns: 1fr; gap: 48px; }
  .capability-network-heading,
  .capability-compliance-heading { max-width: 620px; }
}

@media (max-width: 700px) {
  .capability-network,
  .capability-compliance { padding: 64px 0 72px; }
  .capability-network-inner,
  .capability-compliance-inner { width: min(calc(100% - 48px), var(--capabilities-max)); gap: 36px; }
  .capability-network-heading h2,
  .capability-compliance-heading h2 { font-size: 32px; }
  .capability-network-heading > span,
  .capability-compliance-heading > span { margin-top: 16px; }
  .capability-network-heading > p:last-child,
  .capability-compliance-heading > p:last-child { margin-top: 18px; }
  .capability-network-list li { grid-template-columns: 34px minmax(0, 1fr); gap: 14px; padding: 19px 0 20px; }
  .capability-network-list li i,
  .capability-network-list li svg { display: none; }
  .capability-network-list h3 { font-size: 18px; }
  .capability-compliance-list { display: block; }
  .capability-compliance-list li { grid-template-columns: 28px minmax(0,1fr); gap: 12px; padding-bottom: 20px; margin-bottom: 20px; }
  .capability-compliance-list h3 { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .capability-network-list li,
  .capability-compliance-list li { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Homepage V7 is calibrated directly against the 1440 x 2560 design. */
.home-v7 { width: 100%; color: var(--carbon); background: var(--paper); font-size: 15px; line-height: 1.55; }
.home-v7 section { position: relative; overflow: hidden; }
.home-v7 figure { margin: 0; }
.home-v7 img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-v7 h1, .home-v7 h2, .home-v7 h3, .home-v7 p, .home-v7 blockquote, .home-v7 dl { margin: 0; }
.home-v7 ol { margin: 0; padding: 0; list-style: none; }
.home-v7 .section-kicker {
  color: var(--ink);
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}
.home-v7 .arrow-link { display: inline-flex; align-items: center; gap: 12px; color: var(--harbor); font-size: 15px; font-weight: 700; }
.home-v7 .arrow-link::after { content: ""; width: 11px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: skewX(-35deg); }

.home-hero { height: calc(100vh - 1px); height: calc(100svh - 1px); min-height: 624px; background: #e7ebeb; }
.hero-media, .hero-slide { position: absolute; inset: 0; }
.hero-media { overflow: hidden; }
.hero-media::after { content: ""; position: absolute; z-index: 2; inset: 0 0 auto; height: 96px; background: linear-gradient(180deg, rgba(246,247,243,.78), rgba(246,247,243,.42) 68%, transparent); pointer-events: none; }
.hero-slide { z-index: 0; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility 0s linear .9s; }
.hero-slide.is-active { z-index: 1; opacity: 1; visibility: visible; transition-delay: 0s; }
.hero-slide img { transform: scale(1); }
.hero-slide:nth-child(1) img { object-position: center 52%; }
.hero-slide:nth-child(2) img { object-position: center; }
.hero-slide.is-active img { will-change: transform; animation: hero-zoom-out 7s cubic-bezier(.16,1,.3,1) both; }
.hero-slide:nth-child(even).is-active img { animation-name: hero-zoom-in; }
@keyframes hero-zoom-out { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes hero-zoom-in { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-bottom { position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.hero-paper { position: absolute; inset: 0; background: var(--paper); clip-path: polygon(0 58%, 44.5% 77%, 56% 100%, 0 100%); }
.hero-paper[data-aos="hero-paper-in"] { opacity: 0; transform: translate3d(-8%, 6%, 0); transition-property: opacity, transform; }
.hero-paper[data-aos="hero-paper-in"].aos-animate { opacity: 1; transform: translate3d(0, 0, 0); }
.hero-copy-stage { position: absolute; z-index: 4; inset: 0; pointer-events: none; }
.hero-copy {
  position: absolute;
  left: max(82px, calc((100% - 1536px) / 2));
  bottom: clamp(64px, 8vh, 80px);
  max-width: min(680px, calc(48vw - max(82px, calc((100vw - 1536px) / 2))));
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease, visibility 0s linear .55s;
}
.hero-copy.is-active { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: .22s, .22s, 0s; }
.hero-copy, .hero-copy a { pointer-events: auto; }
.hero-copy.is-active > h1,
.hero-copy.is-active > .hero-title,
.hero-copy.is-active > .hero-positioning,
.hero-copy.is-active > .hero-summary,
.hero-copy.is-active > .hero-links { animation: hero-copy-in .68s cubic-bezier(.16,1,.3,1) both; }
.hero-copy.is-active > .hero-positioning { animation-delay: .08s; }
.hero-copy.is-active > .hero-summary { animation-delay: .15s; }
.hero-copy.is-active > .hero-links { animation-delay: .22s; }
@keyframes hero-copy-in {
  from { opacity: 0; clip-path: inset(0 0 100% 0); filter: blur(4px); transform: translate3d(0,24px,0); }
  to { opacity: 1; clip-path: inset(0); filter: blur(0); transform: translate3d(0,0,0); }
}
.hero-copy h1, .hero-title { color: #050b0f; font-size: 40px; font-weight: 800; line-height: 1.08; }
.hero-positioning { margin-top: 8px !important; font-size: 20px; line-height: 1.3; }
.hero-summary { max-width: 100%; margin-top: 9px !important; font-size: 15px; line-height: 1.65; overflow-wrap: break-word; }
.hero-links { display: flex; align-items: center; gap: 28px; margin-top: 16px; }
.hero-links .btn-gold, .hero-links .arrow-link { font-size: 15px; }
.hero-links .btn-gold { min-height: 36px; padding-inline: 21px; }
.hero-indicators { position: absolute; z-index: 6; top: 50%; right: max(38px, calc((100% - 1536px) / 2)); display: grid; gap: 15px; transform: translateY(-50%); }
.hero-indicators button { display: grid; grid-template-columns: 28px 48px; align-items: center; gap: 10px; width: 86px; height: 24px; padding: 0; border: 0; color: rgba(255,255,255,.58); background: transparent; cursor: pointer; text-shadow: 0 1px 8px rgba(7,21,29,.42); transition: color .25s ease; }
.hero-indicators button span { font-family: "Arial Narrow", "DIN Condensed", Arial, sans-serif; font-size: 15px; font-weight: 700; line-height: 1; }
.hero-indicators button i { display: block; width: 26px; height: 2px; background: currentColor; box-shadow: 0 1px 6px rgba(7,21,29,.26); transition: width .3s ease; }
.hero-indicators button:is(:hover, :focus-visible, .is-active) { color: #fff; }
.hero-indicators button.is-active i { width: 48px; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active img,
  .hero-copy.is-active > h1,
  .hero-copy.is-active > .hero-title,
  .hero-copy.is-active > .hero-positioning,
  .hero-copy.is-active > .hero-summary,
  .hero-copy.is-active > .hero-links { animation: none !important; filter: none !important; clip-path: none !important; transform: none !important; }
  .industry-slide,
  .industry-slide img { transition: none !important; transform: none !important; }
}

.position-business { height: var(--business-section-height, 500px); margin-block: 64px 68px; background: var(--paper); }
.business-frame { position: absolute; z-index: 2; inset: 0; width: min(calc(100% - 164px), 1536px); margin-inline: auto; }
.position-statement { position: absolute; top: 38px; left: 0; width: 40%; }
.position-statement h2 { color: #070b0e; font-size: 30px; font-weight: 800; line-height: 1.42; }
.platform-note { position: absolute; top: 62px; left: 40.4%; display: grid; gap: 8px; padding-left: 26px; border-left: 1px solid rgba(7,21,29,.22); font-size: 15px; line-height: 1.55; }
.business-photo { position: absolute; top: 195px; bottom: 0; left: 0; width: 58.5%; min-height: 305px; clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%); }
.business-photo img { object-position: left top; }
.business-route { position: absolute; z-index: 2; top: 58px; left: 56.8%; width: 240px; height: var(--business-route-height, 380px); overflow: visible; }
.business-route path { fill: none; stroke: var(--gold); stroke-width: 1.25; }
.business-route circle { fill: var(--gold); }
.business-route[data-aos="business-route-in"] { opacity: 1; }
.business-route[data-aos="business-route-in"] path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .9s cubic-bezier(.16,1,.3,1); }
.business-route[data-aos="business-route-in"] circle { opacity: 0; transform: scale(.45); transform-box: fill-box; transform-origin: center; transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1); }
.business-route[data-aos="business-route-in"] circle { transition-delay: var(--business-node-delay, .34s); }
.business-route[data-aos="business-route-in"].aos-animate path { stroke-dashoffset: 0; }
.business-route[data-aos="business-route-in"].aos-animate circle { opacity: 1; transform: scale(1); }
.business-index { position: absolute; z-index: 3; top: 84px; right: 0; left: 63.8%; }
.position-business .section-kicker { font-size: 15px; }
.business-index ol { display: grid; gap: 19px; margin-top: 30px; }
.business-index li { display: grid; gap: 5px; min-height: 51px; }
.business-index li { margin-left: var(--business-offset, 0); }
.business-index strong { color: var(--ink); font-size: 18px; line-height: 1.3; }
.business-index span { color: rgba(22,26,29,.72); font-size: 15px; line-height: 1.55; }

.industry-scene { height: 460px; margin-block: 0 72px; background: var(--paper); }
.industry-carousel-stage { position: relative; height: 100%; }
.industry-frame { position: absolute; top: 0; right: 0; bottom: 0; left: max(82px, calc((100% - 1536px) / 2)); display: grid; grid-template-columns: min(58%, 890px) minmax(0, 1fr); grid-template-rows: minmax(0, 1fr); gap: 16px; }
.industry-slide { opacity: 0; visibility: hidden; pointer-events: none; transform: translate3d(36px,0,0); transition: opacity .48s ease, transform .65s cubic-bezier(.22,1,.36,1), visibility 0s linear .65s; }
.industry-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: translate3d(0,0,0); transition-delay: 0s; }
.industry-slide img { transform: scale(1.035); transition: transform 1s cubic-bezier(.22,1,.36,1); }
.industry-slide.is-active img { transform: scale(1); }
.industry-left { display: grid; grid-template-columns: minmax(0, 43%) minmax(0, 57%); min-width: 0; min-height: 0; }
.industry-copy { position: relative; z-index: 3; min-width: 0; padding: 48px 32px 40px 0; }
.industry-copy .section-kicker { font-size: 15px; }
.industry-copy h2 { margin-top: 8px !important; color: var(--ink); font-size: 18px; font-weight: 750; line-height: 1.38; }
.industry-copy h3 { margin-top: 45px !important; color: var(--ink); font-size: 28px; line-height: 1.25; }
.industry-copy p:not(.section-kicker) { max-width: 30ch; margin-top: 14px !important; color: rgba(22,26,29,.72); font-size: 15px; line-height: 1.75; }
.industry-copy .arrow-link { margin-top: 38px; font-size: 15px; }
.industry-main { position: relative; min-width: 0; height: 100%; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
.industry-main img { object-position: center; }
.industry-right { display: grid; grid-template-rows: 200px minmax(0, 1fr); gap: 10px; min-width: 0; }
.industry-right-top { display: grid; grid-template-columns: minmax(0, 48%) minmax(0, 52%); min-width: 0; }
.industry-manufacturing { position: relative; min-width: 0; height: 100%; }
.industry-manufacturing img { object-position: center; }
.manufacturing-copy { display: flex; min-width: 0; padding: 38px clamp(24px, 2.2vw, 42px) 24px; flex-direction: column; justify-content: flex-start; }
.manufacturing-copy h3 { color: var(--ink); font-size: 19px; line-height: 1.35; }
.manufacturing-copy p { max-width: 28ch; margin-top: 12px !important; color: rgba(22,26,29,.7); font-size: 15px; line-height: 1.7; }
.industry-digital { position: relative; min-width: 0; height: 100%; }
.industry-digital::after { content: ""; position: absolute; inset: 0; background: rgba(7,21,29,.6); }
.industry-digital img { object-position: center; }
.industry-digital figcaption { position: absolute; z-index: 2; top: 40px; right: 36px; left: 36px; max-width: 600px; color: white; }
.industry-digital h3 { font-size: 22px; line-height: 1.3; }
.industry-digital p { margin-top: 13px !important; color: rgba(255,255,255,.84); font-size: 15px; line-height: 1.7; }
.industry-carousel-nav { position: absolute; z-index: 6; bottom: 0px; left: max(82px, calc((100% - 1536px) / 2)); display: flex; align-items: center; gap: 18px; }
.industry-carousel-nav > p { display: flex; align-items: baseline; min-width: 62px; color: rgba(7,21,29,.46); font-size: 13px; line-height: 1; }
.industry-carousel-nav > p strong { color: var(--ink); font-size: 20px; font-weight: 750; }
.industry-carousel-nav > p span { margin-left: 5px; }
.industry-carousel-nav > div { display: flex; gap: 7px; }
.industry-carousel-nav button { display: grid; width: 38px; height: 38px; place-items: center; padding: 0; border: 1px solid rgba(7,21,29,.22); color: var(--ink); background: rgba(255,255,255,.56); cursor: pointer; transition: color .22s ease, background-color .22s ease, border-color .22s ease; }
.industry-carousel-nav button:hover { border-color: var(--ink); color: white; background: var(--ink); }
.industry-carousel-nav button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.industry-carousel-nav button svg { width: 18px; height: 18px; stroke-width: 1.8; }

.method-scene { height: var(--method-section-height, 500px); color: white; background: var(--ink); }
.method-scene::before { display: none; }
.method-wipe { position: absolute; z-index: 5; top: 0; right: 0; width: 16%; height: 100%; background: var(--paper); clip-path: polygon(24% 0, 100% 0, 100% 100%); pointer-events: none; }
.method-wipe[data-aos="method-wipe-in"] { opacity: 1; transform: translate3d(105%,0,0); transition-property: transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
.method-wipe[data-aos="method-wipe-in"].aos-animate { transform: translate3d(0,0,0); }
.method-frame { position: absolute; z-index: 2; inset: 0; width: min(calc(100% - 256px), 1536px); margin-inline: auto; }
.method-copy { position: absolute; z-index: 3; top: 70px; left: 0; }
.method-copy .section-kicker { color: white; font-weight: 500; }
.method-copy .section-kicker { font-size: 15px; }
.method-copy h2 { margin-top: 10px !important; color: white; font-size: 30px; line-height: 1.25; }
.method-visual { position: absolute; z-index: 1; bottom: 0; left: calc((100vw - 100%) / -2); width: min(52vw, 800px); height: 320px; overflow: hidden; background: #17323d; }
.method-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,21,29,.04) 38%,rgba(7,21,29,.46) 73%,var(--ink) 100%),linear-gradient(0deg,rgba(7,21,29,.28),transparent 54%); pointer-events: none; }
.method-visual img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 46%; filter: saturate(.68) contrast(1.04); }
.method-visual[data-aos="method-visual-reveal"] { opacity: 1; clip-path: inset(0 100% 0 0); filter: blur(4px); transform: translate3d(-34px,0,0); transition-property: clip-path,filter,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
.method-visual[data-aos="method-visual-reveal"].aos-animate { clip-path: inset(0); filter: blur(0); transform: translate3d(0,0,0); }
.method-route { position: absolute; z-index: 2; top: 115px; left: 45%; width: 70%; height: var(--method-route-height, 350px); overflow: visible; }
.method-route path { fill: none; stroke: var(--gold); stroke-width: 1.2; }
.method-route circle { fill: var(--gold); }
.method-route[data-aos="method-home-route"] { opacity: 1; }
.method-route[data-aos="method-home-route"] path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.05s cubic-bezier(.16,1,.3,1); }
.method-route[data-aos="method-home-route"] circle { opacity: 0; transform: scale(.45); transform-box: fill-box; transform-origin: center; transition: opacity .3s ease var(--method-node-delay, .22s), transform .3s cubic-bezier(.16,1,.3,1) var(--method-node-delay, .22s); }
.method-route[data-aos="method-home-route"].aos-animate path { stroke-dashoffset: 0; }
.method-route[data-aos="method-home-route"].aos-animate circle { opacity: 1; transform: scale(1); }
.method-steps { position: absolute; z-index: 3; inset: 0; }
.method-steps li { position: absolute; top: var(--method-top-wide); right: 0; left: var(--method-left); display: flex; min-width: 0; align-items: flex-start; flex-direction: column; gap: 3px; }
.method-steps strong { flex: 0 0 auto; min-width: 0; max-width: 100%; color: white; font-size: 20px; line-height: 1.25; white-space: normal; overflow-wrap: anywhere; }
.method-steps span { min-width: 0; flex: 0 0 auto; width: 95%; padding-left: 20px;color: rgba(255,255,255,.74); font-size: 15px; line-height: 1.6; white-space: normal; overflow-wrap: break-word; }

.why-scene { padding-block: 72px; background: var(--paper); }
.why-frame { position: relative; display: grid; grid-template-columns: 35.7% 31.5% minmax(0, 32.8%); width: min(100%, 1536px); min-height: 370px; height: auto; margin-inline: auto; }
.why-heading { position: relative; top: auto; left: auto; width: auto; padding-top: 54px; padding-left: max(82px, calc((100% - 1276px) / 2)); }
.why-heading, .why-list { min-width: 0; }
.why-heading .section-kicker { font-size: 15px; }
.why-heading h2 { margin-top: 8px !important; color: var(--ink); font-size: 30px; line-height: 1.25; }
.why-list { position: relative; top: auto; left: auto; width: auto; margin: 0; padding: 22px 0 0 31px !important; border-left: 1px solid rgba(7,21,29,.2); }
.why-list li { display: grid; gap: 3px; min-height: 64px; padding: 8px 0 9px; border-bottom: 1px solid rgba(7,21,29,.14); }
.why-list li:last-child { border-bottom: 0; }
.why-list strong { color: var(--ink); font-size: 16px; line-height: 1.45; }
.why-list span { color: rgba(22,26,29,.66); font-size: 15px; line-height: 1.55; }
.why-list strong, .why-list span { overflow-wrap: anywhere; }
.why-photo { position: absolute; top: -72px; right: min(0px, calc((1536px - 100vw) / 2)); width: calc(30% + max(0px, (100vw - 1536px) / 2)); height: calc(100% + 144px); clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); }
.why-photo img { object-position: center; }

.experience-team { --experience-gutter: max(0px, calc((100vw - 1536px) / 2)); background: var(--paper); }
.experience-team-frame { position: relative; display: grid; grid-template-columns: 47% 53%; grid-template-rows: minmax(315px, auto) 245px; width: 100%; min-height: 560px; overflow: hidden; }
.experience-visual { position: relative; display: grid; grid-column: 1; grid-row: 1 / 3; grid-template-rows: subgrid; width: auto; min-height: 560px; overflow: hidden; background: #b8b3af; }
.bridge-photo { position: absolute; z-index: 1; inset: 0 0 auto; display: block; width: 100% !important; height: calc(100% - 245px) !important; object-fit: cover; object-position: center; }
.portrait-backdrop { position: relative; grid-row: 2; background: #b8b3af; }
.chairman-photo { position: absolute; z-index: 3; bottom: 0; left: 13%; width: 75% !important; height: 455px !important; object-fit: contain !important; object-position: center bottom; }
.experience-copy { position: relative; grid-column: 2; grid-row: 1; width: auto; height: auto; min-width: 0; padding: 32px calc(56px + var(--experience-gutter)) 60px 56px; background: var(--paper); }
.experience-copy .section-kicker { font-size: 15px; font-weight: 500; }
.experience-copy h2 { margin-top: 8px !important; color: var(--ink); font-size: 26px; line-height: 1.2; }
.experience-note { margin-top: 8px !important; color: rgba(22,26,29,.66); font-size: 15px; line-height: 1.55; }
.experience-copy h3 { margin-top: 16px !important; color: var(--ink); font-size: 20px; line-height: 1.3; }
.experience-copy dl { display: grid; gap: 5px; margin-top: 10px; }
.experience-copy dl div { display: grid; grid-template-columns: 90px 1fr; gap: 18px; font-size: 15px; line-height: 1.55; }
.experience-copy dt { color: var(--ink); font-weight: 700; }
.experience-copy dd { margin: 0; color: rgba(22,26,29,.66); }
.experience-links { position: absolute; right: calc(56px + var(--experience-gutter)); bottom: 24px; left: 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.experience-links a { color: var(--harbor); font-size: 15px; font-weight: 700; white-space: nowrap; }
.experience-links a::after { content: ""; display: inline-block; width: 9px; height: 6px; margin-left: 10px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: skewX(-35deg); }
.team-copy { position: relative; z-index: 2; grid-column: 1 / 3; grid-row: 2; justify-self: end; width: 58%; height: 245px; min-height: 0; padding: 32px calc(56px + var(--experience-gutter)) 28px 9%; color: white; background: var(--ink); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%); }
.team-copy h2 { font-size: 24px; line-height: 1.3; }
.team-copy > p { display: flex; align-items: baseline; gap: 14px; margin-top: 10px !important; }
.team-copy > p strong { color: var(--gold); font-size: 19px; }
.team-copy > p span { color: rgba(255,255,255,.74); font-size: 15px; }
.team-copy blockquote { margin-top: 14px !important; font-size: 20px; font-weight: 500; line-height: 1.45; }
.team-copy small { display: block; margin-top: 8px; color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.5; }

.home-news { padding: 104px 0 112px; border-top: 1px solid rgba(7,21,29,.08); background: #f7f8f5; }
.home-news-inner { width: min(calc(100% - 164px), 1536px); margin-inline: auto; }
.home-news-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 64px; }
.home-news-header .section-kicker { color: var(--gold); font-size: 15px; }
.home-news-header h2 { margin-top: 10px !important; color: var(--ink); font-size: 32px; line-height: 1.25; }
.home-news-intro { margin-top: 13px !important; color: rgba(22,26,29,.68); font-size: 15px; font-weight: 400; line-height: 1.7; }
.home-news-all,
.home-news-read { display: inline-flex; min-height: 44px; align-items: center; gap: 13px; color: var(--harbor); font-size: 15px; font-weight: 700; }
.home-news-all { border-bottom: 1px solid rgba(17,79,108,.32); }
.home-news-all svg,
.home-news-read svg { width: 18px; height: 18px; stroke-width: 1.7; transition: transform .25s ease; }
.home-news-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(380px,.85fr); gap: clamp(48px,5vw,76px); align-items: start; margin-top: 48px; }
.home-news-feature { display: block; min-width: 0; color: var(--ink); }
.home-news-feature figure { height: clamp(300px,22vw,360px); overflow: hidden; background: #dbe1e1; }
.home-news-feature img { object-position: center; transition: transform .55s cubic-bezier(.16,1,.3,1); }
.home-news-feature-copy { max-width: 760px; padding-top: 25px; }
.home-news-meta { display: flex; align-items: center; gap: 22px; font-size: 15px; line-height: 1.5; }
.home-news-meta time { color: rgba(22,26,29,.62); }
.home-news-meta span { color: var(--gold); font-weight: 700; }
.home-news-feature h3 { margin-top: 13px !important; font-size: 28px; line-height: 1.35; }
.home-news-feature-copy > p:not(.home-news-meta) { max-width: 68ch; margin-top: 12px !important; color: rgba(22,26,29,.68); font-size: 15px; font-weight: 400; line-height: 1.75; }
.home-news-read { margin-top: 17px; }
.home-news-list { border-top: 1px solid rgba(7,21,29,.16); }
.home-news-list li { border-bottom: 1px solid rgba(7,21,29,.16); }
.home-news-list a { display: grid; min-height: 156px; grid-template-columns: 116px minmax(0,1fr) 20px; gap: 24px; align-items: start; padding: 25px 0; color: var(--ink); }
.home-news-item-meta { display: grid; gap: 8px; font-size: 15px; line-height: 1.45; }
.home-news-item-meta time { color: rgba(22,26,29,.6); }
.home-news-item-meta span { color: var(--gold); font-weight: 700; }
.home-news-item-copy { min-width: 0; }
.home-news-list h3 { display: -webkit-box; overflow: hidden; font-size: 19px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; transition: color .25s ease; }
.home-news-item-summary { display: -webkit-box; overflow: hidden; margin-top: 8px !important; color: rgba(22,26,29,.62); font-size: 15px; font-weight: 400; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.home-news-list a > svg { width: 19px; height: 19px; margin-top: 2px; color: var(--harbor); stroke-width: 1.6; transition: transform .25s ease; }
.home-news-feature:hover img { transform: scale(1.025); }
.home-news-feature:hover .home-news-read svg,
.home-news-all:hover svg { transform: translateX(4px); }
.home-news-list a:hover h3 { color: var(--harbor); }
.home-news-list a:hover > svg { transform: translate(3px,-3px); }
.home-news-feature:focus-visible,
.home-news-all:focus-visible,
.home-news-list a:focus-visible { outline: 2px solid var(--harbor); outline-offset: 5px; }

.cooperation-scene { min-height: 220px; border-top: 1px solid rgba(7,21,29,.08); background: #f2f3f1; }
.cooperation-media { position: absolute; z-index: 1; inset: 0 auto 0 0; width: 34%; clip-path: polygon(0 0,86% 0,100% 50%,86% 100%,0 100%); }
.cooperation-media img { object-position: center 58%; }
.cooperation-inner { position: relative; z-index: 2; display: grid; width: min(calc(100% - 164px), 1536px); min-height: 220px; grid-template-columns: 35% minmax(0,1fr); align-items: center; margin-inline: auto; }
.cooperation-content { grid-column: 2; padding: 34px 88px 34px 34px; }
.cooperation-content h2 { color: var(--ink); font-size: 30px; font-weight: 700; line-height: 1.3; }
.cooperation-actions { display: flex; align-items: center; gap: 38px; margin-top: 24px; }
.cooperation-primary,
.cooperation-secondary { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 14px; font-size: 15px; font-weight: 700; white-space: nowrap; }
.cooperation-primary { min-width: 142px; padding: 0 25px; color: white; background: var(--gold); transition: background-color .25s ease, transform .25s ease; }
.cooperation-secondary { color: var(--ink); }
.cooperation-secondary svg { width: 18px; height: 18px; stroke-width: 1.7; transition: transform .25s ease; }
.cooperation-primary:hover { background: #b7862f; transform: translateY(-2px); }
.cooperation-secondary:hover svg { transform: translateX(4px); }
.cooperation-primary:focus-visible,
.cooperation-secondary:focus-visible { outline: 2px solid var(--harbor); outline-offset: 4px; }
.cooperation-accent { position: absolute; z-index: 3; top: -18%; right: 4.7%; width: 2px; height: 136%; background: var(--gold); transform: skewX(-22deg); transform-origin: center; }
[data-aos="cooperation-media"] { opacity: 0; transform: translateX(-54px); transition-property: opacity, transform; }
[data-aos="cooperation-media"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="cooperation-accent"] { opacity: 0; transform: translateY(-58px) skewX(-22deg); transition-property: opacity, transform; }
[data-aos="cooperation-accent"].aos-animate { opacity: 1; transform: translateY(0) skewX(-22deg); }

@media (min-width: 901px) {
  html { scrollbar-width: none; }
  html::-webkit-scrollbar { width: 0; height: 0; }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .method-scene { height: var(--method-section-height-medium, 650px); }
  .method-frame { width: calc(100% - 128px); }
  .method-copy { top: 54px; }
  .method-copy h2 { max-width: 320px; font-size: 28px; }
  .method-route { top: 205px; }
  .method-steps span { max-width: 260px; white-space: normal; }
  .method-steps li { top: var(--method-top-medium); }
  .method-visual { width: min(52vw, 680px); height: 350px; }
  .why-scene { padding-block: 80px; }
  .why-frame { grid-template-columns: 36% 36% minmax(0, 28%); min-height: 410px; height: auto; }
  .why-heading { top: auto; left: auto; width: auto; padding-top: 58px; padding-left: 64px; }
  .why-heading h2 { font-size: 28px; }
  .why-list { top: auto; right: auto; left: auto; width: auto; margin: 0; padding: 32px 0 0 28px !important; }
  .why-photo { top: -80px; right: 0; width: 28%; height: calc(100% + 160px); }
}

@media (max-width: 1100px) {
  .header-inner { width: min(calc(100% - 48px), 1000px); grid-template-columns: 190px 1fr 160px; }
  .desktop-nav { gap: 22px; }
  .header-logo { width: 160px; }
  .header-actions { gap: 14px; }
  .business-frame { width: calc(100% - 96px); }
  .platform-note { left: 35%; }
  .business-index { left: 57%; }
  .business-index li:nth-child(n) { margin-left: 0; }
  .business-route { display: none; }
  .industry-frame { right: 0; left: 48px; grid-template-columns: minmax(0, 56%) minmax(0, 1fr); gap: 12px; width: auto; }
  .industry-carousel-nav { left: 48px; }
  .industry-left { grid-template-columns: minmax(0, 42%) minmax(0, 58%); }
  .industry-copy { padding-right: 24px; }
  .industry-copy h3 { font-size: 25px; }
  .industry-right-top { grid-template-columns: minmax(0, 46%) minmax(0, 54%); }
  .manufacturing-copy { padding-inline: 20px; }
  .manufacturing-copy p { font-size: 15px; }
  .experience-copy { padding-inline: 32px; }
  .experience-copy dl div { grid-template-columns: 74px 1fr; gap: 12px; }
  .experience-links { right: 32px; left: 32px; gap: 12px; }
  .team-copy { padding-right: 32px; }
  .home-news-layout { grid-template-columns: minmax(0,1.08fr) minmax(350px,.92fr); gap: 38px; }
  .home-news-list a { grid-template-columns: 104px minmax(0,1fr) 18px; gap: 18px; }
  .home-news-list h3 { font-size: 18px; }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .why-scene { padding: 72px 48px; }
  .why-frame { display: grid; grid-template-columns: 36% 36% minmax(0, 28%); width: 100%; min-height: 410px; height: auto; }
  .why-heading { position: relative; inset: auto; width: auto; padding: 58px 0 0 64px; }
  .why-list { position: relative; inset: auto; width: auto; margin: 0 !important; padding: 32px 0 0 28px !important; }
  .why-photo { position: absolute; top: -80px; right: 0; width: 28%; height: calc(100% + 160px); }
  .home-v7 .why-photo { width: 28%; height: calc(100% + 160px); margin: 0; clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); }
}

@media (min-width: 901px) and (max-width: 1200px) {
  site-header, .site-header { height: 70px; }
  .header-inner { width: calc(100% - 64px); height: 70px; display: flex; justify-content: space-between; }
  .header-logo { width: 160px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
}

/* Keep the footer on the same mobile breakpoint as the header. */
@media (max-width: 1200px) {
  .footer-accent::before { width: 42%; }
  .footer-accent span { left: calc(42% - 16px); }
  .footer-main { width: calc(100% - 40px); padding-block: 52px 44px; grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .footer-brand { padding-right: 0; }
  .footer-logo { width: 150px; }
  .footer-position { margin-top: 28px; font-size: 18px; }
  .footer-position strong { font-size: 24px; }
  .footer-summary { margin-top: 18px; }
  .footer-reach { max-width: 270px; margin-top: 24px; }
  .footer-sitemap { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .footer-link-group { gap: 10px; }
  .footer-link-group p { margin-bottom: 8px; }
  .footer-link-group a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-contact { grid-column: auto; padding: 38px 0 0; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .footer-contact h2 { max-width: 480px; margin-top: 16px; font-size: 27px; }
  .footer-contact-list { grid-template-columns: minmax(0, 1fr); gap: 4px; margin-top: 24px; }
  .footer-contact-list a { width: 100%; }
  .footer-cta { width: 100%; min-height: 52px; margin-top: 28px; }
  .footer-bottom { width: calc(100% - 40px); padding-block: 26px max(34px, env(safe-area-inset-bottom)); grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .footer-legal { display: grid; grid-template-columns: repeat(2, max-content); gap: 10px 28px; }
  .footer-legal a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-copyright { grid-column: auto; }
}

@media (max-width: 900px) {
  site-header, .site-header { height: 70px; }
  .header-inner { width: calc(100% - 32px); height: 70px; display: flex; justify-content: space-between; }
  .header-logo { width: 154px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }

  .home-v7 section { height: auto; min-height: 0; overflow: hidden; }
  .home-v7 .home-hero { min-height: max(700px, calc(100vh - 1px)) !important; min-height: max(700px, calc(100svh - 1px)) !important; }
  .hero-slide:nth-child(1) img { object-position: 58% center; }
  .hero-slide:nth-child(2) img { object-position: 62% center; }
  .hero-paper { clip-path: polygon(0 43%, 58% 53%, 100% 68%, 100% 100%, 0 100%); }
  .hero-copy { right: 24px; bottom: 84px; left: 24px; max-width: none; }
  .hero-copy h1, .hero-title { font-size: 38px; }
  .hero-positioning { font-size: 20px; }
  .hero-summary { max-width: 520px; }
  .hero-indicators { right: 16px; gap: 11px; }
  .hero-indicators button { grid-template-columns: 24px 34px; gap: 8px; width: 66px; }
  .hero-indicators button i { width: 20px; }
  .hero-indicators button.is-active i { width: 34px; }

  .position-business { height: auto; margin-block: 64px; padding: 0; }
  .business-frame { position: relative; inset: auto; width: auto; margin: 0; padding: 58px 24px 0; }
  .position-statement, .platform-note, .business-index, .business-route { position: relative; inset: auto; width: auto; }
  .position-statement h2 { font-size: 27px; }
  .platform-note { margin-top: 30px; }
  .business-index { margin-top: 48px; }
  .business-index ol { gap: 22px; }
  .business-index li:nth-child(n) { margin-left: 0; }
  .business-photo { position: relative; inset: auto; width: 100%; height: 290px; margin: 40px 0 0; clip-path: none; }
  .business-route { display: none; }

  .industry-scene { display: block; height: auto !important; margin-block: 0 64px; padding-top: 0; }
  .industry-carousel-stage { height: auto; display: flow-root; }
  .industry-frame { position: relative; inset: auto; display: block; width: auto; margin: 0; }
  .industry-slide { position: absolute; inset: 0; }
  .industry-slide.is-active { position: relative !important; inset: auto !important; display: block; height: auto; }
  .industry-left, .industry-right, .industry-right-top { display: block; }
  .industry-copy, .industry-main, .industry-manufacturing, .manufacturing-copy, .industry-digital { position: relative; inset: auto; width: auto; height: auto; }
  .industry-copy { padding: 58px 24px 28px; }
  .industry-copy h3 { margin-top: 32px !important; }
  .industry-copy .arrow-link { display: inline-flex; margin-top: 28px; }
  .industry-main { height: 360px; clip-path: none; }
  .industry-manufacturing { height: 260px; }
  .manufacturing-copy { padding: 34px 24px 52px; }
  .industry-digital { height: 300px; }
  .industry-digital figcaption { left: 24px; top: 34px; right: 24px; }
  .industry-carousel-nav { position: static !important; inset: auto !important; display: grid; width: auto; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px; margin: 20px 24px 0; }
  .industry-carousel-nav > p { min-width: 0; }
  .industry-carousel-nav > div { justify-self: end; }

  .method-scene { height: auto; min-height: 0 !important; padding: 64px 32px; background: var(--ink); }
  .method-scene::before { display: none; }
  .method-wipe { width: 40%; height: 170px; clip-path: polygon(56% 0, 100% 0, 100% 100%); }
  .method-frame { position: relative; inset: auto; display: flex; width: auto; margin: 0; flex-direction: column; }
  .method-copy { position: relative; inset: auto; order: 1; }
  .method-route { display: none; }
  .method-steps { position: relative; inset: auto; display: grid; order: 2; gap: 28px; margin-top: 50px; }
  .method-steps li { position: relative; inset: auto !important; display: grid; gap: 8px; padding-left: 26px; border-left: 1px solid var(--gold); }
  .method-steps span { white-space: normal; line-height: 1.6; }
  .method-visual { position: relative; inset: auto; order: 3; width: calc(100% + 64px); height: 250px; margin: 56px -32px -64px; }
  .method-visual::after { background: linear-gradient(0deg,rgba(7,21,29,.32),transparent 58%); }
  .method-visual img { object-position: center 46%; }

  .why-scene { padding: 64px 24px; }
  .why-frame { width: 100%; height: auto; }
  .why-heading, .why-list, .why-photo { position: relative; inset: auto; width: auto; }
  .why-frame { display: block; }
  .why-heading { padding: 0; }
  .why-list { margin: 42px 0 0 !important; padding: 0 0 0 22px !important; }
  .why-list li { min-height: 66px; }
  .home-v7 .why-photo { width: calc(100% + 48px); height: 320px; margin: 48px -24px -64px; clip-path: none; }

  .experience-team-frame { display: flex; width: 100%; height: auto; flex-direction: column; }
  .experience-visual, .experience-copy, .team-copy { position: relative; inset: auto; width: 100%; height: auto; }
  .experience-visual { height: 470px; min-height: 0; flex: 0 0 470px; grid-template-rows: 270px minmax(0, 1fr); }
  .bridge-photo { inset: 0 0 auto; height: 270px !important; }
  .portrait-backdrop { grid-row: 2; }
  .chairman-photo { left: 8%; width: 84% !important; height: 360px !important; }
  .experience-copy { padding: 52px 24px 56px; }
  .experience-copy dl { gap: 12px; }
  .experience-copy dl div { grid-template-columns: 80px 1fr; gap: 12px; }
  .experience-links { position: relative; inset: auto; display: grid; justify-content: start; gap: 18px; margin-top: 32px; }
  .team-copy { min-height: 270px; padding: 48px 24px; clip-path: none; }
  .team-copy small { margin-top: 10px; }

  .home-news { padding: 80px 0 88px; }
  .home-news-inner { width: calc(100% - 48px); }
  .home-news-layout { grid-template-columns: 1fr; gap: 48px; }
  .home-news-feature figure { height: auto; aspect-ratio: 16 / 9; }
  .home-news-list a { min-height: 144px; grid-template-columns: 116px minmax(0,1fr) 20px; gap: 22px; padding: 23px 0; }

  .cooperation-scene { min-height: 0; overflow: hidden; }
  .cooperation-media { position: relative; inset: auto; width: 100%; height: 220px; clip-path: polygon(0 0,100% 0,100% 82%,70% 100%,0 100%); }
  .cooperation-media img { object-position: center 56%; }
  .cooperation-inner { display: block; width: 100%; min-height: 0; }
  .cooperation-content { padding: 46px 24px 58px; }
  .cooperation-content h2 { font-size: 27px; }
  .cooperation-actions { flex-wrap: wrap; gap: 24px 30px; margin-top: 28px; }
  .cooperation-accent { top: auto; right: 28px; bottom: -22px; height: 112px; }

}

@media (max-width: 430px) {
  .hero-copy h1 { font-size: 34px; }
  .hero-positioning { font-size: 18px; }
  .hero-links { gap: 20px; }
  .hero-links .btn-gold { padding-inline: 16px; }
  .position-statement h2, .why-heading h2, .cooperation-content h2 { font-size: 27px; }
  .experience-visual { height: 440px; flex-basis: 440px; grid-template-rows: 250px minmax(0, 1fr); }
  .bridge-photo { height: 250px !important; }
  .chairman-photo { height: 340px !important; }
  .home-news { padding: 72px 0 80px; }
  .home-news-inner { width: calc(100% - 40px); }
  .home-news-header { display: block; }
  .home-news-header h2 { font-size: 28px; }
  .home-news-all { margin-top: 22px; }
  .home-news-layout { gap: 42px; margin-top: 36px; }
  .home-news-feature figure { aspect-ratio: 16 / 10; }
  .home-news-feature h3 { font-size: 24px; }
  .home-news-list a { min-height: 0; grid-template-columns: minmax(0,1fr) 20px; gap: 12px 18px; padding: 24px 0; }
  .home-news-item-meta { grid-column: 1; display: flex; gap: 18px; }
  .home-news-item-copy { grid-column: 1; }
  .home-news-list a > svg { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-paper[data-aos="hero-paper-in"], .hero-copy-stage[data-aos] { opacity: 1 !important; transform: none !important; }
  .hero-slide.is-active img { animation: none !important; transform: none !important; }
  .business-route[data-aos="business-route-in"] path { stroke-dashoffset: 0 !important; }
  .business-route[data-aos="business-route-in"] circle { opacity: 1 !important; transform: none !important; }
  .method-wipe[data-aos="method-wipe-in"] { transform: none !important; }
  .method-visual[data-aos="method-visual-reveal"] { clip-path: inset(0) !important; filter: none !important; transform: none !important; }
  .method-route[data-aos="method-home-route"] path { stroke-dashoffset: 0 !important; }
  .method-route[data-aos="method-home-route"] circle { opacity: 1 !important; transform: none !important; }
  .home-news-feature img,
  .home-news-all svg,
  .home-news-read svg,
  .home-news-list a > svg { transition: none !important; transform: none !important; }
}

/* News index follows the team hero language and the editorial list reference. */
.news-page { color: var(--carbon); background: var(--paper); }
.news-page-hero { position: relative; height: clamp(343px,26.8vw,412px); margin-top: 78px; overflow: hidden; color: white; background: #1477a8; }
.news-page-hero-background { position: absolute; z-index: 1; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%; }
.news-page-hero-shade { position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg,rgba(7,21,29,.2) 34%,rgba(7,21,29,0) 72%,rgba(7,21,29,.14)); pointer-events: none; }
.news-page-hero-panel { position: absolute; z-index: 3; inset: 0 auto 0 0; width: 42.2%; background: var(--ink); clip-path: polygon(0 0,81.5% 0,100% 100%,0 100%); }
.news-page-hero-inner { position: relative; z-index: 4; width: min(calc(100% - 160px),1536px); height: 100%; margin-inline: auto; }
.news-page-hero-copy { position: absolute; top: 60px; left: 0; width: min(480px, calc(34.4vw - max(80px, calc((100vw - 1536px) / 2)) - 24px)); min-width: 0; max-width: 100%; }
.news-page-hero-kicker { max-width: 100%; color: rgba(255,255,255,.74); font-size: 15px; font-weight: 700; line-height: 1.5; overflow-wrap: break-word; }
.news-page-hero-copy h1 { max-width: 100%; margin: 14px 0 0; color: white; font-size: 38px; font-weight: 700; line-height: 1.28; overflow-wrap: break-word; }
.news-page-hero-rule { display: block; width: 30px; height: 3px; margin-top: 20px; background: var(--gold); }
.news-page-hero-desc { max-width: 100%; margin-top: 18px; color: rgba(255,255,255,.74); font-size: 15px; font-weight: 400; line-height: 1.7; overflow-wrap: break-word; }
.news-page-hero-background[data-aos="news-page-hero-background"] { opacity: 1; transform: scale(1.055); transition-property: transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
.news-page-hero-background[data-aos="news-page-hero-background"].aos-animate { transform: scale(1); }
.news-page-hero-panel[data-aos="news-page-hero-panel"] { opacity: 1; transform: translate3d(-14%,0,0); transition-property: transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
.news-page-hero-panel[data-aos="news-page-hero-panel"].aos-animate { transform: translate3d(0,0,0); }
html[lang="en"] .news-page-hero { height: clamp(400px,28vw,440px); }
html[lang="en"] .news-page-hero-panel { width: 52%; clip-path: polygon(0 0,80% 0,100% 100%,0 100%); }
html[lang="en"] .news-page-hero-copy { width: min(480px, calc(41.6vw - max(80px, calc((100vw - 1536px) / 2)) - 24px)); }
html[lang="en"] .news-page-hero-copy h1 { font-size: clamp(30px, 2.6vw, 34px); line-height: 1.24; }

@media (min-width: 768px) {
  .news-page-hero-copy { top: clamp(82px, 7.4vw, 112px); }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .news-page-hero-panel { width: 53%; }
  .news-page-hero-inner { width: calc(100% - 80px); }
  .news-page-hero-copy { width: min(390px, calc(43.25vw - 64px)); }
  html[lang="en"] .news-page-hero { height: 440px; }
  html[lang="en"] .news-page-hero-panel { width: 62%; }
  html[lang="en"] .news-page-hero-copy { width: min(460px, calc(50vw - 64px)); }
}

.news-index { padding: 72px 0 112px; background: var(--paper); scroll-margin-top: 78px; }
.news-index-inner { width: min(calc(100% - 164px),1536px); margin-inline: auto; }
.news-index-filters { display: flex; min-height: 54px; align-items: stretch; gap: 40px; overflow-x: auto; border-bottom: 1px solid rgba(7,21,29,.14); scrollbar-width: none; }
.news-index-filters::-webkit-scrollbar { display: none; }
.news-index-filters button { position: relative; min-width: max-content; min-height: 52px; padding: 0 8px; border: 0; color: rgba(22,26,29,.66); background: transparent; font-size: 15px; font-weight: 700; cursor: pointer; }
.news-index-filters button::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.news-index-filters button:hover,
.news-index-filters button.is-active { color: var(--ink); }
.news-index-filters button.is-active::after { transform: scaleX(1); }
.news-index-content.is-updating { animation: news-content-enter .48s cubic-bezier(.16,1,.3,1) both; }
.news-index-empty { margin-top: 52px; padding: 56px 24px; border-top: 1px solid rgba(7,21,29,.16); border-bottom: 1px solid rgba(7,21,29,.16); color: rgba(22,26,29,.62); text-align: center; }
@keyframes news-content-enter { from { opacity: .45; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.news-index-feature { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); gap: clamp(44px,4.6vw,72px); align-items: center; margin-top: 52px; color: var(--ink); }
.news-index-feature-media { position: relative; height: 370px; margin: 0; overflow: hidden; background: var(--ink); clip-path: polygon(0 0,93% 0,100% 50%,93% 100%,0 100%); }
.news-index-feature-media::before { content: ""; position: absolute; z-index: 2; top: 30px; bottom: 30px; left: 0; width: 56px; background: var(--ink); clip-path: polygon(0 0,100% 13%,100% 87%,0 100%); pointer-events: none; }
.news-index-feature-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .55s cubic-bezier(.16,1,.3,1); }
.news-index-feature-copy { max-width: 660px; padding-right: 32px; }
.news-index-feature-label { color: var(--gold); font-size: 15px; font-weight: 700; line-height: 1.5; }
.news-index-feature h2 { margin: 13px 0 0; color: var(--ink); font-size: 30px; line-height: 1.35; }
.news-index-feature-summary { display: -webkit-box; max-width: 66ch; overflow: hidden; margin-top: 15px; color: rgba(22,26,29,.68); font-size: 15px; font-weight: 400; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; }
.news-index-feature-meta { display: flex; align-items: center; gap: 18px; margin-top: 22px; font-size: 15px; line-height: 1.5; }
.news-index-feature-meta time { color: rgba(22,26,29,.58); }
.news-index-feature-meta > span { width: 1px; height: 16px; background: rgba(7,21,29,.18); }
.news-index-feature-meta strong { color: var(--harbor); font-weight: 700; }
.news-index-read,
.news-index-row-link { display: inline-flex; min-height: 44px; align-items: center; gap: 13px; color: var(--harbor); font-size: 15px; font-weight: 700; }
.news-index-read { margin-top: 20px; }
.news-index-read svg,
.news-index-row-link svg { width: 18px; height: 18px; stroke-width: 1.7; transition: transform .25s ease; }
.news-index-feature:hover .news-index-feature-media img { transform: scale(1.025); }
.news-index-feature:hover .news-index-read svg,
.news-index-row:hover .news-index-row-link svg { transform: translateX(4px); }

.news-index-rows { margin-top: 52px; border-top: 1px solid rgba(7,21,29,.16); }
.news-index-row { display: grid; min-height: 132px; grid-template-columns: 230px minmax(0,1fr) 110px; gap: 32px; align-items: center; padding: 25px 12px; border-bottom: 1px solid rgba(7,21,29,.16); color: var(--ink); transition: background-color .25s ease; }
.news-index-row-meta { display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 16px; font-size: 15px; line-height: 1.5; }
.news-index-row-meta time { color: rgba(22,26,29,.58); }
.news-index-row-meta span { color: var(--harbor); font-weight: 700; }
.news-index-row-copy { min-width: 0; }
.news-index-row-copy h3 { display: -webkit-box; overflow: hidden; font-size: 20px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; transition: color .25s ease; }
.news-index-row-copy p { display: -webkit-box; max-width: 76ch; overflow: hidden; margin-top: 7px; color: rgba(22,26,29,.62); font-size: 15px; font-weight: 400; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.news-index-row-link { justify-self: end; white-space: nowrap; }
.news-index-row:hover { background: rgba(255,255,255,.58); }
.news-index-row:hover h3 { color: var(--harbor); }

.news-index-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 64px; }
.news-index-pagination button { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; padding: 0; border: 1px solid rgba(7,21,29,.18); color: var(--ink); background: transparent; font-size: 15px; font-weight: 700; cursor: pointer; transition: color .25s ease,background-color .25s ease,border-color .25s ease; }
.news-index-pagination button svg { width: 18px; height: 18px; stroke-width: 1.7; }
.news-index-pagination button:hover:not(:disabled),
.news-index-pagination button.is-active { border-color: var(--ink); color: white; background: var(--ink); }
.news-index-pagination button:disabled { opacity: .32; cursor: not-allowed; }
.news-index-filters button:focus-visible,
.news-index-feature:focus-visible,
.news-index-row:focus-visible,
.news-index-pagination button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1100px) {
  .news-index-inner { width: calc(100% - 96px); }
  .news-index-feature { grid-template-columns: minmax(0,1fr) minmax(330px,.9fr); gap: 38px; }
  .news-index-feature-media { height: 330px; }
  .news-index-row { grid-template-columns: 205px minmax(0,1fr) 96px; gap: 24px; }
  .news-index-row-meta { grid-template-columns: 92px minmax(0,1fr); gap: 12px; }
  .news-index-row-copy h3 { font-size: 19px; }
}

@media (max-width: 900px) {
  .news-index { padding: 64px 0 88px; scroll-margin-top: 70px; }
  .news-index-inner { width: calc(100% - 48px); }
  .news-index-filters { gap: 22px; }
  .news-index-feature { grid-template-columns: 1fr; gap: 0; margin-top: 44px; }
  .news-index-feature-media { height: auto; aspect-ratio: 16 / 9; }
  .news-index-feature-copy { max-width: 720px; padding: 34px 0 0; }
  .news-index-rows { margin-top: 48px; }
  .news-index-row { min-height: 0; grid-template-columns: minmax(0,1fr) auto; gap: 12px 24px; padding: 26px 4px; }
  .news-index-row-meta { grid-column: 1; display: flex; gap: 22px; }
  .news-index-row-copy { grid-column: 1; }
  .news-index-row-link { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .news-index-pagination { margin-top: 52px; }
}

@media (max-width: 767px) {
  .news-page-hero { height: 720px; margin-top: 68px; }
  .news-page-hero-background { object-position: 60% center; }
  .news-page-hero-shade { background: linear-gradient(0deg,rgba(7,21,29,.18),rgba(7,21,29,0) 58%); }
  .news-page-hero-panel { inset: auto 0 0; width: 100%; height: 56%; background: var(--ink); clip-path: polygon(0 11%,100% 0,100% 100%,0 100%); }
  .news-page-hero-inner { width: calc(100% - 48px); }
  .news-page-hero-copy { top: auto; bottom: 42px; width: 100%; max-width: none; }
  .news-page-hero-copy h1 { margin-top: 16px; font-size: 30px; }
  .news-page-hero-rule { margin-top: 22px; }
  .news-page-hero-desc { max-width: 34ch; margin-top: 20px; line-height: 1.75; }
  .news-page-hero-desc br { display: none; }
  html[lang="en"] .news-page-hero { height: 720px; margin-top: 68px; }
  html[lang="en"] .news-page-hero-panel { inset: auto 0 0; width: 100%; height: 56%; background: var(--ink); clip-path: polygon(0 11%,100% 0,100% 100%,0 100%); }
  html[lang="en"] .news-page-hero-copy { width: 100%; }
  html[lang="en"] .news-page-hero-copy h1 { font-size: 24px; line-height: 1.22; }
}

@media (max-width: 700px) {
  .news-page-hero { height: 640px; }
  .news-page-hero-panel { height: 46%; }
  html[lang="en"] .news-page-hero { height: 640px; }
  html[lang="en"] .news-page-hero-panel { height: 52%; }
}

@media (max-width: 430px) {
  .news-page-hero-inner { width: calc(100% - 40px); }
  .news-page-hero-copy { bottom: 36px; }
  .news-page-hero-copy h1 { font-size: 29px; }
  html[lang="en"] .news-page-hero-copy { bottom: 28px; }
  html[lang="en"] .news-page-hero-copy h1 { font-size: 22px; }
  .news-index { padding: 56px 0 76px; }
  .news-index-inner { width: calc(100% - 40px); }
  .news-index-filters button { min-height: 50px; padding-inline: 4px; }
  .news-index-feature { margin-top: 38px; }
  .news-index-feature-media { aspect-ratio: 16 / 10; }
  .news-index-feature-media::before { top: 22px; bottom: 22px; width: 42px; }
  .news-index-feature h2 { font-size: 26px; }
  .news-index-row { padding-block: 25px; }
  .news-index-row-copy h3 { font-size: 18px; }
  .news-index-row-link { grid-column: 1 / -1; grid-row: auto; justify-self: start; margin-top: 2px; }
  .news-index-pagination { gap: 6px; }
  .news-index-pagination button { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .news-page-hero-background[data-aos="news-page-hero-background"],
  .news-page-hero-panel[data-aos="news-page-hero-panel"],
  .news-index-content.is-updating,
  .news-index-feature-media img,
  .news-index-read svg,
  .news-index-row-link svg { animation: none !important; transition: none !important; transform: none !important; }
}

/* News detail uses an editorial article header with a full-width lead image. */
.news-detail-page { padding-top: 78px; color: var(--carbon); background: var(--paper); }
.news-detail-header { padding: 50px 0 0; }
.news-detail-inner { width: min(calc(100% - 164px),1536px); margin-inline: auto; }
.news-detail-breadcrumb { color: rgba(22,26,29,.5); font-size: 15px; line-height: 1.6; }
.news-detail-breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; margin: 0; padding: 0; list-style: none; }
.news-detail-breadcrumb li { display: inline-flex; min-width: 0; align-items: center; }
.news-detail-breadcrumb li:not(:last-child)::after { content: "›"; margin: 0 13px; color: rgba(22,26,29,.34); font-size: 18px; line-height: 1; }
.news-detail-breadcrumb a { color: inherit; transition: color .22s ease; }
.news-detail-breadcrumb a:hover { color: var(--harbor); }
.news-detail-breadcrumb li[aria-current="page"] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news-detail-meta { display: flex; align-items: center; gap: 20px; margin-top: 43px; color: rgba(22,26,29,.62); font-size: 15px; line-height: 1.5; }
.news-detail-meta strong { color: var(--ink); font-weight: 700; }
.news-detail-meta > span { width: 1px; height: 17px; background: rgba(7,21,29,.18); }
.news-detail-title { max-width: 1050px; margin: 20px 0 0; color: var(--ink); font-size: clamp(38px,2.6vw,48px); font-weight: 750; line-height: 1.28; letter-spacing: 0; text-wrap: balance; }
.news-detail-summary { max-width: 78ch; margin: 16px 0 0; color: rgba(22,26,29,.68); font-size: 16px; font-weight: 400; line-height: 1.8; }
.news-detail-cover { height: clamp(470px,31vw,560px); margin: 28px 0 0; overflow: hidden; background: #dbe5e8; }
.news-detail-cover img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 51%; }
.news-detail-cover[data-aos="news-detail-cover"] { opacity: 1; clip-path: inset(0 0 100% 0); transform: translate3d(0,24px,0); transition-property: clip-path,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
.news-detail-cover[data-aos="news-detail-cover"].aos-animate { clip-path: inset(0); transform: translate3d(0,0,0); }
.news-detail-body { display: grid; width: min(calc(100% - 164px),1536px); grid-template-columns: 270px minmax(0,920px); gap: clamp(64px,5.65vw,108px); align-items: start; margin-inline: auto; padding: 82px 0 128px; }
.news-detail-aside { position: sticky; top: 96px; min-width: 0; height: max-content; align-self: start; }
.news-detail-aside-inner { max-height: calc(100vh - 120px); padding-right: 10px; overflow-x: hidden; overflow-y: auto; scrollbar-color: rgba(201,154,61,.7) transparent; scrollbar-width: thin; }
.news-detail-aside-inner::-webkit-scrollbar { width: 4px; }
.news-detail-aside-inner::-webkit-scrollbar-track { background: transparent; }
.news-detail-aside-inner::-webkit-scrollbar-thumb { border-radius: 0; background: rgba(201,154,61,.7); }
.news-detail-aside-group + .news-detail-aside-group { margin-top: 58px; }
.news-detail-aside h2 { margin: 0; color: var(--ink); font-size: 17px; font-weight: 750; line-height: 1.45; }
.news-detail-aside-rule { display: block; width: 100%; height: 1px; margin-top: 16px; background: rgba(201,154,61,.72); }
.news-detail-aside ol { display: grid; gap: 4px; margin: 20px 0 0; padding: 0; list-style: none; }
.news-detail-aside nav a { display: grid; min-height: 44px; grid-template-columns: 32px minmax(0,1fr); gap: 3px; align-items: center; color: rgba(22,26,29,.66); font-size: 15px; font-weight: 400; line-height: 1.6; transition: color .22s ease; }
.news-detail-aside nav a strong { color: var(--gold); font-weight: 750; }
.news-detail-aside nav a:hover { color: var(--ink); }
.news-detail-share-actions { display: flex; gap: 18px; margin-top: 20px; }
.news-detail-share-actions button { display: inline-flex; width: 46px; height: 46px; flex: 0 0 46px; align-items: center; justify-content: center; padding: 0; border: 1px solid rgba(201,154,61,.72); border-radius: 50%; color: var(--gold); background: transparent; cursor: pointer; transition: color .22s ease,background-color .22s ease,border-color .22s ease,transform .22s ease; }
.news-detail-share-actions button svg { width: 20px; height: 20px; stroke-width: 1.8; }
.news-detail-share-actions button:hover,
.news-detail-share-actions button.is-copied { border-color: var(--gold); color: white; background: var(--gold); transform: translateY(-2px); }
.news-detail-share-status { min-height: 23px; margin: 10px 0 0; color: rgba(22,26,29,.62); font-size: 15px; font-weight: 400; line-height: 1.5; }
.news-detail-article { min-width: 0; }
.news-detail-section { scroll-margin-top: 116px; }
.news-detail-section + .news-detail-section { margin-top: 54px; }
.news-detail-section header { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 10px; align-items: baseline; }
.news-detail-section header > span { color: var(--gold); font-size: 24px; font-weight: 750; line-height: 1.35; }
.news-detail-section h2 { margin: 0; color: var(--ink); font-size: 24px; font-weight: 750; line-height: 1.45; }
.news-detail-section-copy { max-width: 75ch; margin: 12px 0 0 52px; }
.news-detail-section-copy p { margin: 0; color: rgba(22,26,29,.7); font-size: 16px; font-weight: 400; line-height: 1.95; }
.news-detail-section-copy p + p { margin-top: 12px; }
.news-detail-quote { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 16px; align-items: center; margin: 34px 0 42px 52px; padding: 23px 28px; color: white; background: var(--ink); }
.news-detail-quote svg { width: 34px; height: 34px; color: var(--gold); fill: var(--gold); stroke-width: 1.4; }
.news-detail-quote p { margin: 0; color: white; font-size: 21px; font-weight: 600; line-height: 1.6; }
.news-detail-related { margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(7,21,29,.2); }
.news-detail-related h2 { margin: 0; color: var(--ink); font-size: 17px; font-weight: 750; line-height: 1.5; }
.news-detail-related ul { display: grid; gap: 4px; margin: 10px 0 0; padding: 0; list-style: none; }
.news-detail-related a { display: inline-flex; min-height: 42px; align-items: center; gap: 14px; color: var(--harbor); font-size: 15px; font-weight: 400; line-height: 1.55; }
.news-detail-related a svg { width: 18px; height: 18px; flex: 0 0 auto; stroke-width: 1.7; transition: transform .22s ease; }
.news-detail-related a:hover svg { transform: translateX(4px); }
.news-detail-aside a:focus-visible,
.news-detail-share-actions button:focus-visible,
.news-detail-related a:focus-visible,
.news-detail-breadcrumb a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1100px) {
  .news-detail-inner { width: calc(100% - 96px); }
  .news-detail-cover { height: auto; aspect-ratio: 16 / 8.4; }
  .news-detail-body { width: calc(100% - 96px); grid-template-columns: 220px minmax(0,1fr); gap: 48px; }
  .news-detail-section-copy,
  .news-detail-quote { margin-left: 46px; }
}

@media (max-width: 900px) {
  .news-detail-body { grid-template-columns: minmax(0,1fr); gap: 56px; }
  .news-detail-aside { position: static; height: auto; }
  .news-detail-aside-inner { display: grid; max-height: none; grid-template-columns: minmax(0,1fr) 260px; gap: 48px; padding-right: 0; overflow: visible; }
  .news-detail-aside-group + .news-detail-aside-group { margin-top: 0; }
}

@media (max-width: 700px) {
  .news-detail-page { padding-top: 70px; }
  .news-detail-header { padding-top: 38px; }
  .news-detail-inner { width: calc(100% - 48px); }
  .news-detail-breadcrumb li[aria-current="page"] { max-width: 100%; }
  .news-detail-meta { gap: 15px; margin-top: 34px; }
  .news-detail-title { margin-top: 18px; font-size: 34px; line-height: 1.3; }
  .news-detail-summary { margin-top: 14px; font-size: 15px; line-height: 1.8; }
  .news-detail-cover { margin-top: 26px; aspect-ratio: 16 / 10; }
  .news-detail-body { width: calc(100% - 48px); gap: 52px; padding: 60px 0 90px; }
  .news-detail-aside-inner { grid-template-columns: minmax(0,1fr); gap: 42px; }
  .news-detail-aside nav a { grid-template-columns: 30px minmax(0,1fr); }
  .news-detail-section header { grid-template-columns: 36px minmax(0,1fr); gap: 9px; }
  .news-detail-section header > span { font-size: 21px; }
  .news-detail-section h2 { font-size: 23px; }
  .news-detail-section-copy { margin: 14px 0 0; }
  .news-detail-section-copy p { font-size: 15px; line-height: 1.9; }
  .news-detail-quote { grid-template-columns: 34px minmax(0,1fr); gap: 13px; margin: 32px 0 40px; padding: 23px 20px; }
  .news-detail-quote svg { width: 29px; height: 29px; }
  .news-detail-quote p { font-size: 18px; }
  .news-detail-related { margin-top: 48px; }
}

@media (max-width: 430px) {
  .news-detail-header { padding-top: 30px; }
  .news-detail-inner { width: calc(100% - 40px); }
  .news-detail-breadcrumb li:not(:last-child)::after { margin-inline: 9px; }
  .news-detail-breadcrumb li[aria-current="page"] { display: none; }
  .news-detail-meta { margin-top: 30px; }
  .news-detail-title { font-size: 30px; }
  .news-detail-cover { aspect-ratio: 4 / 3; }
  .news-detail-body { width: calc(100% - 40px); }
  .news-detail-share-actions { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .news-detail-cover[data-aos="news-detail-cover"] { clip-path: inset(0) !important; transition: none !important; transform: none !important; }
}

/* Industries hero mirrors the slanted industrial collage from the supplied layout. */
.industries-page {
  --industries-max: 1536px;
  color: var(--carbon);
  background: var(--paper);
  font-size: 15px;
}
.industries-page .container-x { width: min(calc(100% - 160px),var(--industries-max)); }
.industries-page .text-sm { font-size: 15px; }
.industries-hero {
  position: relative;
  z-index: 2;
  height: clamp(500px,39vw,610px);
  margin-top: 78px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  clip-path: polygon(0 0,100% 0,100% 100%,0 91.5%);
}
.industries-hero-copy {
  position: absolute;
  z-index: 4;
  top: clamp(76px,6.5vw,100px);
  left: max(80px,calc((100vw - var(--industries-max)) / 2));
  width: min(324px,25vw);
  min-width: 0;
  max-width: 100%;
}
.industries-hero-kicker {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
}
.industries-hero-kicker span {
  display: block;
  margin-top: 2px;
  color: rgba(7,21,29,.66);
  font-size: 15px;
  font-weight: 600;
}
.industries-hero-copy h1 {
  max-width: 100%;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(34px,2.45vw,43px);
  font-weight: 760;
  line-height: 1.38;
  letter-spacing: 0;
}
.industries-hero-copy h1 span { display: block; white-space: normal; overflow-wrap: break-word; }
.industries-hero-rule {
  display: block;
  width: 32px;
  height: 3px;
  margin-top: 24px;
  background: var(--gold);
  transform-origin: left center;
}
.industries-hero-desc {
  max-width: 100%;
  margin: 22px 0 0;
  color: rgba(22,26,29,.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
}
.industries-hero-collage {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  background: #fff;
}
.industries-hero-collage::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: #fff;
  clip-path: polygon(0 0,25% 0,48% 100%,0 100%);
  pointer-events: none;
}
.industries-hero-row {
  display: contents;
}
.industries-hero-tile {
  position: absolute;
  overflow: hidden;
  background: #d9e0e1;
}
.industries-hero-row-top .industries-hero-tile:nth-child(1) {
  top: 0;
  left: 25%;
  width: 44%;
  height: 54%;
  clip-path: polygon(0 0,100% 0,87.5% 100%,0 100%);
}
.industries-hero-row-top .industries-hero-tile:nth-child(2) {
  top: 0;
  left: 63.9%;
  width: 36.1%;
  height: 54%;
  clip-path: polygon(15.25% 0,100% 0,100% 100%,0 100%);
}
.industries-hero-row-bottom .industries-hero-tile:nth-child(1) {
  top: calc(54% + 5px);
  left: 37%;
  width: 37%;
  height: calc(46% - 5px);
  clip-path: polygon(0 0,100% 0,90.3% 100%,0 100%);
}
.industries-hero-row-bottom .industries-hero-tile:nth-child(2) {
  top: calc(54% + 5px);
  left: 70.8%;
  width: 29.2%;
  height: calc(46% - 5px);
  clip-path: polygon(12.35% 0,100% 0,100% 100%,0 100%);
}
.industries-hero-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.25s cubic-bezier(.16,1,.3,1);
}
.industries-hero-tile[data-aos="industries-tile"] {
  opacity: .01;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.industries-hero-tile[data-aos="industries-tile"].aos-animate {
  opacity: 1;
}
.industries-hero-tile[data-aos="industries-tile"].aos-animate img { transform: scale(1.025); }
.industries-hero-rule[data-aos="industries-rule"] {
  opacity: 1;
  transform: scaleX(0);
  transition-property: transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.industries-hero-rule[data-aos="industries-rule"].aos-animate { transform: scaleX(1); }

.industries-focus {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: -52px auto 0;
  overflow: hidden;
  background: #fff;
}
.industries-focus-row {
  position: relative;
  display: grid;
  height: clamp(250px,19vw,290px);
  overflow: hidden;
  border-top: 1px solid rgba(7,21,29,.09);
  background: #fff;
}
.industries-focus-row:nth-child(odd) { grid-template-columns: 52% 48%; }
.industries-focus-row:nth-child(even) { grid-template-columns: 40% 60%; }
.industries-focus-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 16px;
  align-content: center;
  padding: 32px clamp(40px,4vw,72px);
  background: #fff;
}
.industries-focus-row:nth-child(odd) .industries-focus-content { grid-column: 2; grid-row: 1; }
.industries-focus-row:nth-child(even) .industries-focus-content { grid-column: 1; grid-row: 1; }
.industries-focus-number {
  color: rgba(7,21,29,.23);
  font-family: Arial,sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.08;
}
.industries-focus-copy { min-width: 0; max-width: 580px; }
.industries-focus-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px,1.65vw,26px);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
}
.industries-focus-lead {
  margin: 10px 0 0;
  color: rgba(7,21,29,.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}
.industries-focus-desc {
  max-width: 58ch;
  margin: 14px 0 0;
  color: rgba(22,26,29,.64);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}
.industries-focus-media {
  position: relative;
  z-index: 3;
  grid-row: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #d7dfe1;
}
.industries-focus-row:nth-child(odd) .industries-focus-media {
  grid-column: 1;
  clip-path: polygon(0 0,84% 0,100% 100%,0 100%);
}
.industries-focus-row:nth-child(even) .industries-focus-media {
  grid-column: 2;
  clip-path: polygon(13% 0,100% 0,100% 100%,0 100%);
}
.industries-focus-media-frame { width: 100%; height: 100%; overflow: hidden; }
.industries-focus-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.25s cubic-bezier(.16,1,.3,1);
}
.industries-focus-media-frame[data-aos="industries-focus-media"] {
  opacity: 1;
  clip-path: polygon(0 0,0 0,18% 100%,0 100%);
  transition-property: clip-path;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.industries-focus-row:nth-child(even) .industries-focus-media-frame[data-aos="industries-focus-media"] { clip-path: polygon(100% 0,100% 0,100% 100%,82% 100%); }
.industries-focus-media-frame[data-aos="industries-focus-media"].aos-animate,
.industries-focus-row:nth-child(even) .industries-focus-media-frame[data-aos="industries-focus-media"].aos-animate { clip-path: polygon(0 0,100% 0,100% 100%,0 100%); }
.industries-focus-media-frame[data-aos="industries-focus-media"] img { transform: scale(1.14) translate3d(-2%,0,0); filter: saturate(.82) contrast(1.01); }
.industries-focus-row:nth-child(even) .industries-focus-media-frame[data-aos="industries-focus-media"] img { transform: scale(1.14) translate3d(2%,0,0); }
.industries-focus-media-frame[data-aos="industries-focus-media"].aos-animate img,
.industries-focus-row:nth-child(even) .industries-focus-media-frame[data-aos="industries-focus-media"].aos-animate img { transform: scale(1.02) translate3d(0,0,0); filter: saturate(1) contrast(1); }
.industries-focus-number[data-aos="industries-focus-number"] {
  opacity: .15;
  transform: translate3d(20px,0,0) scale(.88);
  transition-property: opacity,transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.industries-focus-number[data-aos="industries-focus-number"].aos-animate { opacity: 1; transform: translate3d(0,0,0) scale(1); }
.industries-focus-copy[data-aos="industries-focus-copy"] {
  opacity: .12;
  transform: translate3d(38px,0,0);
  clip-path: inset(0 12% 0 0);
  transition-property: opacity,transform,clip-path;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.industries-focus-row:nth-child(even) .industries-focus-copy[data-aos="industries-focus-copy"] { transform: translate3d(-38px,0,0); clip-path: inset(0 0 0 12%); }
.industries-focus-copy[data-aos="industries-focus-copy"].aos-animate,
.industries-focus-row:nth-child(even) .industries-focus-copy[data-aos="industries-focus-copy"].aos-animate { opacity: 1; transform: translate3d(0,0,0); clip-path: inset(0); }

.industries-scenarios {
  position: relative;
  overflow: hidden;
  color: white;
  background: #071e2c;
}
.industries-scenarios::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -28px;
  width: 300px;
  height: 230px;
  border-top: 1px solid rgba(201,154,61,.62);
  border-left: 1px solid rgba(201,154,61,.62);
  transform: skewX(-26deg) rotate(-7deg);
  pointer-events: none;
}
.industries-scenarios-inner {
  width: min(calc(100% - 160px),var(--industries-max));
  margin-inline: auto;
  padding: 58px 0 66px;
}
.industries-scenarios header { position: relative; z-index: 1; }
.industries-scenarios header > p {
  color: rgba(255,255,255,.66);
  font-family: "Arial Narrow","DIN Condensed","Roboto Condensed",Arial,sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
}
.industries-scenarios h2 {
  margin: 8px 0 0;
  color: white;
  font-size: clamp(27px,2.25vw,34px);
  font-weight: 750;
  line-height: 1.35;
}
.industries-scenarios header > span {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
}
.industries-scenarios-list {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}
.industries-scenarios-list li {
  position: relative;
  min-height: 146px;
  padding: 0 28px;
  border-left: 1px solid rgba(201,154,61,.45);
}
.industries-scenarios-list li:first-child { padding-left: 0; border-left: 0; }
@media (min-width: 761px) {
  .industries-scenarios-list { row-gap: 48px; }
  .industries-scenarios-list li:nth-child(n+6) {
    border-right: 1px solid rgba(201,154,61,.45);
    border-left: 0;
  }
  .industries-scenarios-list li:nth-child(5n+1):not(:first-child) { padding-left: 0; }
  .industries-scenarios-list li:nth-child(5n) { border-right: 0; }
  .industries-scenarios-list li:nth-child(5n+1):not(:first-child)::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 500%;
    height: 1px;
    background: rgba(201,154,61,.34);
  }
}
.industries-scenarios-list li > span {
  display: block;
  color: rgba(201,154,61,.8);
  font-family: Arial,sans-serif;
  font-size: 31px;
  font-weight: 300;
  line-height: 1.1;
}
.industries-scenarios-list h3 {
  margin: 9px 0 0;
  color: white;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.5;
}
.industries-scenarios-list p {
  max-width: 23ch;
  margin: 11px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
.industries-scenarios-list li[data-aos="industries-scenario-item"] {
  opacity: .1;
  transform: translate3d(0,28px,0);
  transition-property: opacity,transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.industries-scenarios-list li[data-aos="industries-scenario-item"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }

.industries-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--ink);
  background-color: #f6f8f5;
  background-image: linear-gradient(rgba(17,79,108,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(17,79,108,.045) 1px,transparent 1px);
  background-size: 56px 56px;
}
.industries-map::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 43%;
  background: rgba(246,248,245,.94);
  clip-path: polygon(0 0,78% 0,100% 100%,0 100%);
  pointer-events: none;
}
.industries-map-inner {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 160px),var(--industries-max));
  min-height: 500px;
  margin-inline: auto;
}
.industries-map header {
  position: absolute;
  top: 58px;
  left: 0;
  width: min(410px,34vw);
}
.industries-map header > p {
  color: var(--harbor);
  font-family: "Arial Narrow","DIN Condensed","Roboto Condensed",Arial,sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
}
.industries-map h2 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: clamp(26px,2.15vw,33px);
  font-weight: 750;
  line-height: 1.35;
}
.industries-map header > span {
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
}
.industries-map header > div {
  max-width: 39ch;
  margin-top: 18px;
  color: rgba(22,26,29,.66);
  font-size: 15px;
  line-height: 1.78;
}
.industries-map-scenes {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 1;
  clip-path: inset(0);
  transition-property: clip-path;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.industries-map-scenes[data-aos="industries-map-scenes"].aos-init { clip-path: inset(0 0 0 100%); }
.industries-map-scenes[data-aos="industries-map-scenes"].aos-animate { clip-path: inset(0); }
.industries-map-graphic {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.industries-cooperation { position: relative; overflow: hidden; }
.industries-cooperation figure,
.industries-cooperation h2 { margin: 0; }
.industries-cooperation .cooperation-media img { display: block; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1180px) {
  .industries-page .container-x { width: calc(100% - 96px); }
  .industries-hero-copy { left: 48px; width: min(324px,32vw); }
  .industries-hero-copy h1 { font-size: clamp(28px,3vw,35px); }
  .industries-scenarios-inner,
  .industries-map-inner { width: calc(100% - 96px); }
  .industries-map header { width: min(410px,38vw); }
}

@media (max-width: 820px) {
  .industries-page .container-x { width: calc(100% - 48px); }
  .industries-hero-collage::before { display: none; }
  .industries-hero {
    height: 720px;
    margin-top: 70px;
    clip-path: polygon(0 0,100% 0,100% 100%,0 96%);
  }
  .industries-hero-copy {
    top: auto;
    bottom: 58px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: none;
  }
  .industries-hero-kicker { font-size: 16px; }
  .industries-hero-copy h1 { margin-top: 17px; font-size: 34px; line-height: 1.35; }
  .industries-hero-rule { margin-top: 18px; }
  .industries-hero-desc { max-width: 42ch; margin-top: 16px; line-height: 1.75; }
  .industries-hero-collage { inset: 0 0 auto; height: 330px; }
  .industries-hero-row-top .industries-hero-tile:nth-child(1) {
    left: -4%;
    width: 58%;
    height: 50%;
    clip-path: polygon(0 0,100% 0,88% 100%,10% 100%);
  }
  .industries-hero-row-top .industries-hero-tile:nth-child(2) {
    left: 49.4%;
    width: 50.6%;
    height: 50%;
    clip-path: polygon(12% 0,100% 0,100% 100%,0 100%);
  }
  .industries-hero-row-bottom .industries-hero-tile:nth-child(1) {
    top: calc(50% + 5px);
    left: 0;
    width: 60%;
    height: calc(50% - 5px);
    clip-path: polygon(9% 0,100% 0,88% 100%,0 100%);
  }
  .industries-hero-row-bottom .industries-hero-tile:nth-child(2) {
    top: calc(50% + 5px);
    left: 55.4%;
    width: 44.6%;
    height: calc(50% - 5px);
    clip-path: polygon(12% 0,100% 0,100% 100%,0 100%);
  }
}

@media (max-width: 760px) {
  .industries-focus { margin-top: -30px; }
  .industries-focus-row,
  .industries-focus-row:nth-child(odd),
  .industries-focus-row:nth-child(even) {
    height: auto;
    grid-template-columns: minmax(0,1fr);
  }
  .industries-focus-content,
  .industries-focus-row:nth-child(odd) .industries-focus-content,
  .industries-focus-row:nth-child(even) .industries-focus-content {
    grid-column: 1;
    grid-row: 2;
    min-height: 245px;
    grid-template-columns: 44px minmax(0,1fr);
    gap: 12px;
    padding: 34px 24px 42px;
  }
  .industries-focus-media,
  .industries-focus-row:nth-child(odd) .industries-focus-media,
  .industries-focus-row:nth-child(even) .industries-focus-media {
    grid-column: 1;
    grid-row: 1;
    height: 220px;
    clip-path: polygon(0 0,100% 0,100% 92%,0 100%);
  }
  .industries-focus-number { font-size: 28px; }
  .industries-focus-copy h2 { font-size: 23px; }
}

@media (max-width: 430px) {
  .industries-page .container-x { width: calc(100% - 40px); }
  .industries-hero { height: 665px; }
  .industries-hero-copy { top: auto; bottom: 66px; left: 20px; width: calc(100% - 40px); max-width: none; }
  .industries-hero-copy h1 { font-size: 31px; }
  .industries-hero-desc { max-width: 100%; }
  .industries-hero-collage { top: 0; height: 300px; }
  .industries-focus-content,
  .industries-focus-row:nth-child(odd) .industries-focus-content,
  .industries-focus-row:nth-child(even) .industries-focus-content { min-height: 260px; padding: 30px 20px 38px; }
  .industries-focus-media,
  .industries-focus-row:nth-child(odd) .industries-focus-media,
  .industries-focus-row:nth-child(even) .industries-focus-media { height: 205px; }
  .industries-focus-copy h2 { font-size: 22px; }
}

@media (max-width: 760px) {
  .industries-scenarios-inner { width: calc(100% - 40px); padding: 54px 0 60px; }
  .industries-scenarios h2 { font-size: 27px; }
  .industries-scenarios-list { grid-template-columns: 1fr; margin-top: 36px; }
  .industries-scenarios-list li,
  .industries-scenarios-list li:first-child { min-height: 0; padding: 20px 0 22px; border-top: 1px solid rgba(201,154,61,.4); border-left: 0; }
  .industries-scenarios-list li:first-child { padding-top: 0; border-top: 0; }
  .industries-scenarios-list p { max-width: none; }
  .industries-map { min-height: 680px; }
  .industries-map::before { width: 100%; height: 54%; clip-path: polygon(0 0,100% 0,100% 82%,0 100%); }
  .industries-map-inner { width: calc(100% - 40px); min-height: 680px; }
  .industries-map header { position: relative; top: auto; left: auto; width: 100%; padding-top: 50px; }
  .industries-map header > div { max-width: 43ch; }
  .industries-map-scenes { inset: auto 0 0; height: 50%; }
  .industries-map-graphic { object-position: 62% center; }
}

@media (prefers-reduced-motion: reduce) {
  .industries-hero-tile[data-aos="industries-tile"] { opacity: 1 !important; transition: none !important; }
  .industries-hero-rule[data-aos="industries-rule"] { opacity: 1 !important; transition: none !important; transform: scaleX(1) !important; }
  .industries-hero-tile img { transition: none !important; }
  .industries-hero-tile img { transform: scale(1.025) !important; }
  .industries-focus-media-frame[data-aos="industries-focus-media"] { clip-path: inset(0) !important; transition: none !important; }
  .industries-focus-media img { transition: none !important; transform: scale(1.02) !important; }
  .industries-focus-number[data-aos="industries-focus-number"],
  .industries-focus-copy[data-aos="industries-focus-copy"],
  .industries-scenarios-list li[data-aos="industries-scenario-item"] { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .industries-map-scenes[data-aos="industries-map-scenes"] { clip-path: inset(0) !important; transition: none !important; }
}

/* About page: corporate identity, two-city collaboration and long-term direction. */
.about-page {
  --about-max: 1536px;
  --about-gutter: 80px;
  min-width: 0;
  color: var(--carbon);
  background: var(--paper);
  font-size: 15px;
}
.about-page h1,
.about-page h2,
.about-page h3,
.about-page p,
.about-page blockquote { margin: 0; }
.about-page p { font-weight: 400; }
.about-container {
  width: min(calc(100% - (var(--about-gutter) * 2)), var(--about-max));
  margin-inline: auto;
}
.about-label {
  color: var(--gold);
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.about-team-hero { background: #315d70; }
.about-team-hero .team-hero-background {
  object-position: center 55%;
  filter: saturate(.9) contrast(1.02);
}
.about-team-hero .team-hero-shade {
  background: linear-gradient(90deg, rgba(7,21,29,.12) 36%, rgba(7,21,29,0) 72%, rgba(7,21,29,.08));
}
.about-team-hero .team-hero-copy {
  width: min(480px, calc(34.4vw - max(80px, calc((100vw - 1536px) / 2)) - 24px));
}
@media (min-width: 768px) {
  .about-team-hero .team-hero-copy { top: clamp(82px, 7.4vw, 112px); }
}
.about-team-hero .team-hero-desc {
  max-width: 100%;
  line-height: 1.72;
  white-space: normal;
  overflow-wrap: break-word;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .about-team-hero .team-hero-copy { width: min(390px, calc(43.25vw - 64px)); }
}

.about-positioning {
  position: relative;
  padding: clamp(108px, 8.2vw, 142px) 0;
  overflow: hidden;
  background: #f7f8f5;
}
.about-positioning-inner {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: center;
}
.about-positioning-copy { max-width: 600px; }
.about-positioning-copy h2 {
  max-width: 13ch;
  margin-top: 17px;
  color: var(--ink);
  font-size: clamp(40px, 3.45vw, 54px);
  font-weight: 780;
  line-height: 1.25;
}
.about-positioning-body {
  display: grid;
  max-width: 55ch;
  gap: 18px;
  margin-top: 32px;
}
.about-positioning-body p {
  color: rgba(7,21,29,.66);
  font-size: 15px;
  line-height: 1.9;
}
.about-positioning-media {
  min-width: 0;
  height: clamp(500px, 41vw, 640px);
  margin: 0;
  overflow: hidden;
  background: #7c949e;
}
.about-positioning-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.84) contrast(1.04);
  transform: scale(1.045);
  transition: transform 1.25s cubic-bezier(.16,1,.3,1);
}
.about-positioning-media.aos-animate img { transform: scale(1); }

.about-platform {
  position: relative;
  padding: clamp(104px, 8vw, 138px) 0 clamp(96px, 7.3vw, 126px);
  overflow: hidden;
  color: white;
  background: #061c2a;
}
.about-platform-heading {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(300px, .72fr);
  gap: clamp(70px, 10vw, 180px);
  align-items: end;
}
.about-platform-heading h2 {
  margin-top: 14px;
  color: white;
  font-size: clamp(36px, 3.2vw, 50px);
  font-weight: 770;
  line-height: 1.28;
}
.about-platform-heading > p {
  max-width: 38ch;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.85;
}
.about-platform-axis {
  position: relative;
  height: clamp(300px, 22vw, 360px);
  margin: clamp(62px, 5.5vw, 86px) 0 0;
  overflow: hidden;
  background: #315d70;
}
.about-platform-axis > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.78) contrast(1.06);
  transform: scale(1.035);
  transition: transform 1.3s cubic-bezier(.16,1,.3,1);
}
.about-platform-axis.aos-animate > img { transform: scale(1); }
.about-platform-axis-shade {
  position: absolute;
  inset: 0;
  background: rgba(3,17,25,.58);
}
.about-platform-axis-inner {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  width: min(calc(100% - (var(--about-gutter) * 2)), var(--about-max));
  grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
  align-items: center;
  margin-inline: auto;
}
.about-platform-axis-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(224,179,91,.72);
}
.about-platform-axis-city,
.about-platform-axis-hub {
  position: relative;
  z-index: 2;
  background: rgba(6,28,42,.9);
}
.about-platform-axis-city {
  display: grid;
  width: fit-content;
  min-width: 320px;
  gap: 6px;
  padding: 23px 28px 25px;
}
.about-platform-axis-gz { justify-self: end; text-align: right; }
.about-platform-axis-city i {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border: 3px solid rgba(6,28,42,.92);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  transform: translateY(-50%);
}
.about-platform-axis-hk i { right: -6px; }
.about-platform-axis-gz i { left: -6px; }
.about-platform-axis-city span,
.about-platform-detail-role span {
  color: var(--gold);
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.about-platform-axis-city strong { color: white; font-size: clamp(20px, 1.7vw, 26px); line-height: 1.4; }
.about-platform-axis-hub {
  display: grid;
  justify-self: center;
  gap: 6px;
  padding: 18px 22px;
  text-align: center;
}
.about-platform-axis-hub span { color: var(--gold); font-size: 19px; font-weight: 750; line-height: 1.4; }
.about-platform-axis-hub em { color: rgba(255,255,255,.58); font-size: 15px; font-style: normal; line-height: 1.5; }
.about-platform-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 9vw, 150px);
  margin-top: clamp(62px, 5.5vw, 88px);
}
.about-platform-details article { min-width: 0; }
.about-platform-details article + article { position: relative; }
.about-platform-details article + article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(clamp(70px, 9vw, 150px) / -2);
  width: 1px;
  background: rgba(255,255,255,.13);
}
.about-platform-detail-role { display: flex; align-items: baseline; gap: 17px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.5; }
.about-platform-details h3 {
  margin-top: 18px;
  color: white;
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 750;
  line-height: 1.35;
}
.about-platform-desc {
  max-width: 52ch;
  margin-top: 16px !important;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.8;
}
.about-platform-details ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.about-platform-details li {
  min-width: 0;
  padding: 17px 15px 17px 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.65;
}
.about-platform-details li:not(:first-child) { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.14); }
.about-platform-note {
  margin-top: 31px !important;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  line-height: 1.6;
  text-align: right;
}

.about-vision {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  min-height: 670px;
  overflow: hidden;
  background: #edf0ed;
}
.about-vision-media { min-width: 0; margin: 0; overflow: hidden; }
.about-vision-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.03);
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.about-vision-media.aos-animate img { transform: scale(1); }
.about-vision-panel {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: clamp(86px, 7vw, 122px) max(var(--about-gutter), calc((100vw - var(--about-max)) / 2 + var(--about-gutter))) clamp(86px, 7vw, 122px) clamp(62px, 6vw, 112px);
}
.about-vision-copy { width: min(100%, 650px); }
.about-vision-copy h2 {
  margin-top: 15px;
  color: var(--ink);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 770;
  line-height: 1.32;
}
.about-vision-copy > p:not(.about-label) {
  max-width: 53ch;
  margin-top: 26px;
  color: rgba(7,21,29,.66);
  font-size: 15px;
  line-height: 1.85;
}
.about-vision-copy blockquote {
  position: relative;
  margin-top: 31px;
  padding: 3px 0 3px 25px;
  color: var(--harbor);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}
.about-vision-copy blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--gold);
}
.about-vision-directions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(7,21,29,.15);
  border-bottom: 1px solid rgba(7,21,29,.15);
}
.about-vision-directions li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 17px 10px 17px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.about-vision-directions li:nth-child(even) { padding-left: 20px; border-left: 1px solid rgba(7,21,29,.15); }
.about-vision-directions li:nth-child(n+3) { border-top: 1px solid rgba(7,21,29,.15); }
.about-vision-directions li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  padding-left: 0;
  border-left: 0;
}
.about-vision-directions span { color: var(--gold); font-weight: 700; }

.about-development {
  padding: clamp(94px, 7.4vw, 128px) 0 clamp(100px, 7.8vw, 136px);
  overflow: hidden;
  color: white;
  background: #071d2a;
}
.about-development-inner { min-width: 0; }
.about-development-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(70px, 10vw, 180px);
  align-items: end;
}
.about-development-heading h2 {
  margin-top: 15px;
  color: white;
  font-size: clamp(36px, 3.1vw, 50px);
  font-weight: 770;
  line-height: 1.28;
}
.about-development-heading > p {
  max-width: 40ch;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.85;
}
.about-development-route {
  margin-top: clamp(58px, 5vw, 82px);
  border-top: 1px solid rgba(224,179,91,.5);
  border-bottom: 1px solid rgba(255,255,255,.14);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), clip-path 1.05s cubic-bezier(.16,1,.3,1);
}
.about-development-route.aos-animate { opacity: 1; clip-path: inset(0); }
.about-development-route-row {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 20px 0 21px;
}
.about-development-route-row + .about-development-route-row { border-top: 1px solid rgba(255,255,255,.14); }
.about-development-route span {
  flex: 1 1 0;
  min-width: 0;
  color: white;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 720;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.about-development-route-row span:not(:first-of-type):not(:last-of-type) { text-align: center; }
.about-development-route-row span:last-of-type { text-align: right; }
.about-development-route-row span:only-of-type { text-align: left; }
.about-development-route i {
  flex: 0 0 80px;
  color: var(--gold);
  font-size: 24px;
  font-style: normal;
  line-height: 1;
  text-align: center;
}
.about-development-horizons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(52px, 5vw, 80px) 0 0;
  padding: 0;
  list-style: none;
  gap: 0;
}
.about-development-horizons li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  padding: 0 30px 0 0;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.about-development-horizons li + li { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.15); }
.about-development-horizons li.aos-animate { opacity: 1; transform: translate3d(0,0,0); }
.about-development-year { color: var(--gold); font-size: 17px; font-weight: 750; line-height: 1.5; }
.about-development-horizons h3 { color: white; font-size: 21px; font-weight: 720; line-height: 1.45; }
.about-development-horizons p { margin-top: 10px; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.8; }
.about-development-horizons.is-expanded {
  grid-template-columns: repeat(var(--about-development-columns), minmax(0, 1fr));
}
.about-development-horizons.is-expanded li { padding-right: 24px; }
.about-development-horizons.is-expanded li + li { padding-left: 24px; }
.about-development-horizons.is-expanded li.is-row-start { padding-left: 0; border-left: 0; }
.about-development-horizons.is-expanded li.is-next-row {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.about-development-horizons.is-expanded li:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  padding-left: 0;
  border-left: 0;
}

.about-culture {
  padding: clamp(108px, 8.3vw, 144px) 0 clamp(102px, 7.8vw, 136px);
  overflow: hidden;
  background: #f7f8f5;
}
.about-culture-layout {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: stretch;
}
.about-culture-copy { padding: clamp(10px, 1.5vw, 24px) 0; }
.about-culture-heading h2 {
  margin-top: 13px;
  color: var(--ink);
  font-size: clamp(36px, 3vw, 46px);
  font-weight: 770;
  line-height: 1.3;
}
.about-culture-list {
  position: relative;
  margin: clamp(44px, 4.2vw, 62px) 0 0;
  padding: 0 0 0 31px;
  list-style: none;
}
.about-culture-list::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 9px;
  left: 4px;
  width: 1px;
  background: rgba(197,145,43,.58);
}
.about-culture-list li {
  position: relative;
  min-width: 0;
  padding: 0 0 clamp(21px, 2vw, 28px);
}
.about-culture-list li:last-child { padding-bottom: 0; }
.about-culture-list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -31px;
  width: 9px;
  height: 9px;
  border: 2px solid #f7f8f5;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.about-culture-list h3 {
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 750;
  line-height: 1.35;
}
.about-culture-list p {
  max-width: 35ch;
  margin-top: 5px;
  color: rgba(7,21,29,.64);
  font-size: 15px;
  line-height: 1.68;
}
.about-culture-media {
  min-width: 0;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  background: #23333a;
}
.about-culture-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.about-culture-media.aos-animate img { transform: scale(1); }

.about-next {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.about-next-media {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 44%;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.about-next-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,21,29,.22), rgba(7,21,29,0) 36%);
}
.about-next-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.05);
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}
.about-next-media.aos-animate img { transform: scale(1); }
.about-next-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--about-gutter) * 2)), var(--about-max));
  min-height: 480px;
  margin-inline: auto;
}
.about-next-copy {
  width: 54%;
  padding: clamp(82px, 6.8vw, 112px) clamp(50px, 5vw, 92px) clamp(78px, 6vw, 102px) 0;
}
.about-next-copy h2 {
  margin-top: 14px;
  color: white;
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 760;
  line-height: 1.32;
}
.about-next-copy > p:not(.about-label) {
  max-width: 48ch;
  margin-top: 17px;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.8;
}
.about-next-links { margin-top: 33px; border-top: 1px solid rgba(255,255,255,.16); }
.about-next-links a {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: color .25s ease;
}
.about-next-links a:hover { color: #e0b35b; }
.about-next-links a > span {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 18px;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.about-next-links a:hover > span { transform: translateX(10px); }
.about-next-links strong { color: inherit; font-size: 17px; font-weight: 700; line-height: 1.5; }
.about-next-links em { color: rgba(255,255,255,.54); font-size: 15px; font-style: normal; line-height: 1.5; }
.about-next-links svg { flex: 0 0 auto; width: 18px; height: 18px; stroke-width: 1.7; transition: transform .25s ease; }
.about-next-links a:hover svg { transform: translateX(5px); }

[data-aos="about-heading"],
[data-aos="about-positioning-declaration"],
[data-aos="about-platform-detail"],
[data-aos="about-vision-copy"],
[data-aos="about-vision-item"],
[data-aos="about-culture-row"],
[data-aos="about-next-copy"],
[data-aos="about-next-link"] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="about-positioning-declaration"] { transform: translate3d(42px, 0, 0); }
[data-aos="about-positioning-media"],
[data-aos="about-platform-axis"],
[data-aos="about-culture-media"] { opacity: 1; transition-property: clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="about-positioning-media"] { clip-path: inset(0 100% 0 0); }
[data-aos="about-platform-axis"] { clip-path: inset(0 100% 0 0); }
[data-aos="about-culture-media"] { clip-path: inset(0 100% 0 0); }
[data-aos="about-vision-media"],
[data-aos="about-next-media"] {
  opacity: 1;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="about-vision-media"] {
  clip-path: inset(0 100% 0 0);
  transition-property: clip-path;
}
[data-aos="about-next-media"] {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition-property: clip-path;
}
[data-aos="about-heading"].aos-animate,
[data-aos="about-positioning-declaration"].aos-animate,
[data-aos="about-platform-detail"].aos-animate,
[data-aos="about-vision-copy"].aos-animate,
[data-aos="about-vision-item"].aos-animate,
[data-aos="about-culture-row"].aos-animate,
[data-aos="about-next-copy"].aos-animate,
[data-aos="about-next-link"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
[data-aos="about-positioning-media"].aos-animate { clip-path: inset(0); }
[data-aos="about-platform-axis"].aos-animate { clip-path: inset(0); }
[data-aos="about-culture-media"].aos-animate { clip-path: inset(0); }
[data-aos="about-vision-media"].aos-animate { clip-path: inset(0); }
[data-aos="about-next-media"].aos-animate { clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); }

@media (max-width: 1180px) {
  .about-page { --about-gutter: 48px; }
  .about-positioning-inner { grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); gap: 64px; }
  .about-platform-axis-inner { grid-template-columns: minmax(0,1fr) 170px minmax(0,1fr); }
  .about-platform-axis-city { min-width: 280px; padding-inline: 22px; }
  .about-platform-details { gap: 72px; }
  .about-platform-details article + article::before { left: -36px; }
  .about-platform-details ul { grid-template-columns: 1fr; }
  .about-platform-details li { padding: 12px 0; }
  .about-platform-details li:not(:first-child) { padding-left: 0; border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .about-vision-panel { padding-left: 52px; }
  .about-development-route i { flex-basis: 48px; }
  .about-development-horizons.is-expanded { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-development-horizons.is-expanded li { padding-right: 24px; }
  .about-development-horizons.is-expanded li + li { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.15); }
  .about-development-horizons.is-expanded li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .about-development-horizons.is-expanded li:nth-child(n+3) { margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.15); }
  .about-development-horizons.is-expanded li:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .about-culture-layout { grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr); gap: 58px; }
}

@media (max-width: 900px) {
  .about-page { --about-gutter: 32px; }
  .about-positioning-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-positioning-copy { max-width: 700px; }
  .about-positioning-media { height: 460px; }
  .about-platform-heading { grid-template-columns: 1fr 1fr; gap: 50px; }
  .about-platform-axis-inner { grid-template-columns: minmax(0,1fr) 130px minmax(0,1fr); }
  .about-platform-axis-city { min-width: 0; padding: 20px; }
  .about-platform-axis-hub { padding-inline: 13px; }
  .about-platform-axis-hub em { display: none; }
  .about-platform-details { gap: 48px; }
  .about-platform-details article + article::before { left: -24px; }
  .about-platform-note { text-align: left; }
  .about-vision { grid-template-columns: 1fr; min-height: 0; }
  .about-vision-media { min-height: 400px; aspect-ratio: 16 / 9; }
  .about-vision-panel { padding: 86px var(--about-gutter) 96px; }
  .about-vision-copy { width: min(100%, 720px); margin-inline: auto; }
  .about-development-heading { grid-template-columns: 1fr 1fr; gap: 50px; }
  .about-development-horizons { grid-template-columns: 1fr; gap: 0; }
  .about-development-horizons.is-expanded { grid-template-columns: 1fr; }
  .about-development-horizons li,
  .about-development-horizons li + li,
  .about-development-horizons.is-expanded li,
  .about-development-horizons.is-expanded li + li,
  .about-development-horizons.is-expanded li:nth-child(odd),
  .about-development-horizons.is-expanded li:nth-child(n+3),
  .about-development-horizons.is-expanded li:last-child:nth-child(odd) {
    grid-column: auto;
    margin-top: 0;
    padding: 22px 0 24px;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .about-development-horizons li:last-child { padding-bottom: 0; border-bottom: 0; }
  .about-culture-layout { grid-template-columns: 1fr; gap: 58px; }
  .about-culture-copy { width: min(100%, 700px); padding: 0; }
  .about-culture-media { min-height: 520px; }
  .about-next { display: flex; flex-direction: column; }
  .about-next-inner { order: 1; width: min(calc(100% - (var(--about-gutter) * 2)), var(--about-max)); min-height: 0; }
  .about-next-copy { width: 100%; padding: 84px 0 78px; }
  .about-next-media { position: relative; order: 2; width: 100%; height: 360px; clip-path: none; }
  .about-next-media::after { display: none; }
  [data-aos="about-next-media"],
  [data-aos="about-next-media"].aos-animate { clip-path: none; }
}

@media (max-width: 700px) {
  .about-page { --about-gutter: 24px; }
  .about-team-hero { height: 640px; }
  .about-team-hero .team-hero-background { object-position: 60% center; }
  .about-team-hero .team-hero-panel { height: 46%; }
  .about-team-hero .team-hero-copy { width: 100%; }
  .about-team-hero .team-hero-copy h1 { font-size: 34px; }
  .about-positioning { padding: 78px 0 88px; }
  .about-positioning-inner { gap: 44px; }
  .about-positioning-copy h2 { font-size: 34px; line-height: 1.3; }
  .about-positioning-body { gap: 15px; margin-top: 25px; }
  .about-positioning-media { height: 300px; }
  .about-platform { padding: 78px 0 76px; }
  .about-platform-heading { display: block; }
  .about-platform-heading h2 { font-size: 34px; }
  .about-platform-heading > p { margin-top: 28px; }
  .about-platform-axis { height: 480px; margin-top: 54px; }
  .about-platform-axis > img { object-position: 58% center; }
  .about-platform-axis-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    padding: 38px 0;
  }
  .about-platform-axis-inner::before { top: 62px; right: auto; bottom: 62px; left: 31px; width: 1px; height: auto; }
  .about-platform-axis-city,
  .about-platform-axis-gz { width: 100%; min-width: 0; justify-self: stretch; padding: 21px 18px 22px 53px; text-align: left; }
  .about-platform-axis-city i,
  .about-platform-axis-hk i,
  .about-platform-axis-gz i { right: auto; left: 26px; }
  .about-platform-axis-hub { justify-self: start; margin-left: 48px; padding: 11px 15px; }
  .about-platform-details { grid-template-columns: 1fr; gap: 44px; margin-top: 56px; }
  .about-platform-details article + article { padding-top: 42px; border-top: 1px solid rgba(255,255,255,.14); }
  .about-platform-details article + article::before { display: none; }
  .about-platform-details h3 { font-size: 25px; }
  .about-platform-note { margin-top: 26px !important; }
  .about-vision-media { min-height: 280px; }
  .about-vision-media { width: 100%; aspect-ratio: auto; }
  .about-vision-panel { padding: 72px var(--about-gutter) 78px; }
  .about-vision-copy h2 { font-size: 34px; }
  .about-vision-copy blockquote { font-size: 17px; }
  .about-vision-directions { grid-template-columns: 1fr; }
  .about-vision-directions li:nth-child(even) { padding-left: 0; border-left: 0; }
  .about-vision-directions li:nth-child(n+2) { border-top: 1px solid rgba(7,21,29,.15); }
  .about-development { padding: 76px 0 82px; }
  .about-development-heading { display: block; }
  .about-development-heading h2 { font-size: 34px; }
  .about-development-heading > p { margin-top: 25px; }
  .about-development-route,
  .about-development-route.is-expanded {
    margin-top: 48px;
  }
  .about-development-route-row { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 18px 0 20px; }
  .about-development-route span,
  .about-development-route-row span:not(:first-of-type):not(:last-of-type),
  .about-development-route-row span:last-of-type,
  .about-development-route-row span:only-of-type,
  .about-development-route.is-expanded span {
    min-width: 0;
    font-size: 22px;
    text-align: left;
  }
  .about-development-route i { display: block; width: fit-content; transform: rotate(90deg); }
  .about-development-horizons { margin-top: 38px; }
  .about-development-horizons li,
  .about-development-horizons li + li { grid-template-columns: 40px minmax(0,1fr); gap: 14px; padding: 22px 0 24px; }
  .about-development-horizons h3 { font-size: 20px; }
  .about-culture { padding: 78px 0 82px; }
  .about-culture-heading h2 { font-size: 34px; }
  .about-culture-layout { gap: 46px; }
  .about-culture-list { margin-top: 40px; }
  .about-culture-list li { padding-bottom: 23px; }
  .about-culture-list h3 { font-size: 20px; }
  .about-culture-media { min-height: 320px; height: 320px; }
  .about-next-copy { padding: 72px 0 68px; }
  .about-next-copy h2 { font-size: 32px; }
  .about-next-links a { min-height: 74px; }
  .about-next-links a > span { display: grid; gap: 2px; }
  .about-next-media { height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-positioning-media img,
  .about-platform-axis > img,
  .about-vision-media img,
  .about-next-media img,
  .about-next-links a,
  .about-next-links a > span,
  .about-next-links svg { transition: none !important; transform: none !important; }
  [data-aos="about-heading"],
  [data-aos="about-positioning-media"],
  [data-aos="about-positioning-declaration"],
  [data-aos="about-platform-axis"],
  [data-aos="about-platform-detail"],
  [data-aos="about-vision-media"],
  [data-aos="about-vision-copy"],
  [data-aos="about-vision-item"],
  [data-aos="about-culture-media"],
  [data-aos="about-culture-row"],
  [data-aos="about-next-media"],
  [data-aos="about-next-copy"],
  [data-aos="about-next-link"] {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
    transition: none !important;
  }
  [data-aos="about-positioning-media"] { clip-path: inset(0) !important; }
  [data-aos="about-culture-media"] { clip-path: inset(0) !important; }
  .about-development-route,
  .about-development-horizons li { opacity: 1 !important; clip-path: none !important; transform: none !important; transition: none !important; }
}

/* Projects page: a horizontally browsable institutional experience archive. */
.projects-page {
  --projects-max: 1536px;
  --projects-gutter: 64px;
  color: var(--carbon);
  background: var(--paper);
  font-size: 15px;
}
.projects-page h1,
.projects-page h2,
.projects-page h3,
.projects-page p,
.projects-page figure,
.projects-page ol,
.projects-page dl,
.projects-page dd { margin: 0; }
.projects-container { width: min(calc(100% - (var(--projects-gutter) * 2)), var(--projects-max)); margin-inline: auto; }
.projects-label { color: #8b641e; font-size: 15px; font-weight: 700; line-height: 1.4; letter-spacing: 0; }

.projects-hero {
  position: relative;
  height: 470px;
  margin-top: 78px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.projects-hero-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 64% center; filter: saturate(.82) contrast(1.04) brightness(.9); }
.projects-hero-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,rgba(4,17,25,.08),transparent 66%,rgba(4,17,25,.18)); }
.projects-hero-panel { position: absolute; z-index: 2; inset: 0 auto 0 0; width: 58%; background: #061f2e; clip-path: polygon(0 0,67% 0,100% 100%,0 100%); }
.projects-hero-panel::after { content: ""; position: absolute; top: 0; right: 28.5%; width: 1px; height: 115%; background: rgba(201,154,61,.76); transform: rotate(-25deg); transform-origin: top; }
.projects-hero-inner { position: relative; z-index: 3; height: 100%; }
.projects-hero-copy { position: absolute; top: 64px; left: 0; width: min(540px, calc(38.9vw - max(64px, calc((100vw - 1536px) / 2)) - 24px)); min-width: 0; max-width: 100%; }
.projects-hero-copy > p:first-child { max-width: 100%; color: rgba(255,255,255,.72); font-size: 15px; font-weight: 700; line-height: 1.45; overflow-wrap: break-word; }
.projects-hero-copy h1 { max-width: 100%; margin-top: 13px; font-size: 46px; font-weight: 750; line-height: 1.18; letter-spacing: 0; overflow-wrap: break-word; }
.projects-hero-copy > span { display: block; width: 44px; height: 2px; margin-top: 22px; background: var(--gold); }
.projects-hero-copy h2 { max-width: 100%; margin-top: 24px; font-size: 26px; font-weight: 700; line-height: 1.5; letter-spacing: 0; overflow-wrap: break-word; }
.projects-hero-note { max-width: 100%; margin-top: 12px !important; color: rgba(255,255,255,.7); font-size: 15px; font-weight: 400; line-height: 1.75; overflow-wrap: break-word; }

.projects-context { padding: 82px 0 84px; background: #fafbf9; }
.projects-context-inner { display: grid; grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr); gap: clamp(72px,8vw,138px); align-items: start; }
.projects-context h2 { margin-top: 14px; color: var(--ink); font-size: 36px; font-weight: 750; line-height: 1.36; letter-spacing: 0; }
.projects-context-copy { padding-top: 33px; border-top: 1px solid rgba(7,21,29,.18); }
.projects-context-copy > p { max-width: 66ch; color: rgba(22,26,29,.7); font-size: 16px; line-height: 1.85; }
.projects-context-copy aside { margin-top: 28px; padding-top: 24px; display: flex; align-items: center; gap: 13px; color: var(--ink); border-top: 1px solid rgba(7,21,29,.12); }
.projects-context-copy aside svg { flex: 0 0 auto; width: 20px; height: 20px; color: #9a6f23; stroke-width: 1.8; }
.projects-context-copy aside strong { font-size: 15px; font-weight: 700; line-height: 1.65; }

.projects-archive { padding: 88px 0 102px; overflow: hidden; background: #edf1ef; }
.projects-archive-heading { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 64px; align-items: end; }
.projects-archive-heading h2 { margin-top: 13px; color: var(--ink); font-size: 38px; font-weight: 750; line-height: 1.3; letter-spacing: 0; }
.projects-archive-heading > div > p:last-child { margin-top: 15px; color: rgba(22,26,29,.64); font-size: 15px; line-height: 1.7; }
.projects-carousel-status { display: flex; align-items: center; gap: 30px; }
.projects-carousel-status > p { display: flex; align-items: baseline; color: rgba(7,21,29,.48); font-size: 15px; line-height: 1; }
.projects-carousel-status > p strong { color: var(--ink); font-size: 25px; font-weight: 700; }
.projects-carousel-status > p span { margin-left: 6px; }
.projects-carousel-status > div { display: flex; gap: 8px; }
.projects-carousel-status button { width: 46px; height: 46px; padding: 0; display: grid; place-items: center; color: var(--ink); background: transparent; border: 1px solid rgba(7,21,29,.25); border-radius: 2px; cursor: pointer; transition: color .25s ease,background .25s ease,border-color .25s ease; }
.projects-carousel-status button:hover:not(:disabled) { color: white; background: var(--ink); border-color: var(--ink); }
.projects-carousel-status button:disabled { opacity: .3; cursor: default; }
.projects-carousel-status svg { width: 20px; height: 20px; stroke-width: 1.7; }
.projects-carousel { width: calc(100vw - max(var(--projects-gutter), (100vw - var(--projects-max)) / 2)); margin-top: 44px; }
.projects-carousel-viewport { width: 100%; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.projects-carousel-viewport::-webkit-scrollbar { display: none; }
.projects-carousel-track { width: max-content; padding: 0 min(40vw,540px) 8px 0; display: flex; gap: 24px; list-style: none; }
.projects-carousel-item { width: clamp(348px,29vw,440px); flex: 0 0 clamp(348px,29vw,440px); scroll-snap-align: start; }
.project-card { position: relative; width: 100%; height: 518px; display: grid; grid-template-rows: 228px minmax(0,1fr); overflow: hidden; color: var(--carbon); background: #fafbf9; border: 1px solid rgba(7,21,29,.14); border-radius: 3px; transition: transform .4s cubic-bezier(.16,1,.3,1),border-color .3s ease,background .3s ease; }
.project-card::before { content: ""; position: absolute; z-index: 3; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.project-card:hover { transform: translateY(-7px); background: white; border-color: rgba(139,100,30,.5); }
.project-card:hover::before { transform: scaleX(1); }
.project-card-media { position: relative; display: block; overflow: hidden; background: var(--ink); }
.project-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(4,17,25,.04),rgba(4,17,25,.4)); pointer-events: none; }
.project-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.74) contrast(1.05); transition: transform .8s cubic-bezier(.16,1,.3,1),filter .35s ease; }
.project-card:hover .project-card-media img { transform: scale(1.045); filter: saturate(.92) contrast(1.04); }
.project-card-media-note { position: absolute; z-index: 2; left: 18px; bottom: 15px; color: rgba(255,255,255,.76); font-size: 15px; font-weight: 500; line-height: 1.4; }
.project-card-number { position: absolute; z-index: 2; top: 16px; right: 17px; color: white; font-size: 22px; font-weight: 700; line-height: 1; }
.project-card-content { min-width: 0; padding: 27px 27px 25px; display: flex; flex-direction: column; }
.project-card-meta { display: flex; min-height: 22px; align-items: center; gap: 10px; color: #8b641e; font-size: 15px; font-weight: 650; line-height: 1.45; }
.project-card-meta em { font-style: normal; }
.project-card-meta i { width: 3px; height: 3px; background: var(--gold); transform: rotate(45deg); }
.project-card-content > strong { margin-top: 15px; color: var(--ink); font-size: 23px; font-weight: 750; line-height: 1.38; letter-spacing: 0; }
.project-card-summary { margin-top: 12px; color: rgba(22,26,29,.66); font-size: 15px; font-weight: 400; line-height: 1.7; }
.project-card-action { width: 100%; min-height: 48px; margin-top: auto; padding: 0; display: flex; align-items: center; justify-content: space-between; color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.4; text-align: left; background: transparent; border: 0; border-top: 1px solid rgba(7,21,29,.12); cursor: pointer; transition: color .25s ease,background .25s ease; }
.project-card-action:hover { color: #8b641e; }
.project-card-action svg { width: 18px; height: 18px; stroke-width: 1.7; transition: transform .3s ease; }
.project-card:hover .project-card-action svg { transform: translate(4px,-4px); }
.projects-carousel-progress { width: min(440px,42vw); height: 2px; margin-top: 28px; overflow: hidden; background: rgba(7,21,29,.15); }
.projects-carousel-progress span { display: block; width: 100%; height: 100%; background: var(--gold); transform: scaleX(.142857); transform-origin: left; transition: transform .5s cubic-bezier(.16,1,.3,1); }

.projects-method { padding: 78px 0 84px; color: white; background: #06283a; }
.projects-method-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.75fr); gap: 88px; align-items: end; }
.projects-method-heading > div > p { color: #dfb45f; font-size: 15px; font-weight: 700; line-height: 1.4; }
.projects-method-heading h2 { margin-top: 12px; font-size: 34px; font-weight: 750; line-height: 1.35; letter-spacing: 0; }
.projects-method-heading > p { max-width: 51ch; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.8; }
.projects-method-list { position: relative; margin-top: 32px !important; padding-top: 31px; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); list-style: none; border-top: 1px solid rgba(255,255,255,.24); }
.projects-method-list::before { content: ""; position: absolute; top: -3px; left: 0; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.projects-method-list li { position: relative; min-width: 0; min-height: 190px; padding: 0 26px 0 27px; border-left: 1px solid rgba(255,255,255,.15); }
.projects-method-list li:first-child { padding-left: 0; border-left: 0; }
.projects-method-list li:last-child { padding-right: 0; }
@media (min-width: 901px) {
  .projects-method-list { row-gap: 48px; }
  .projects-method-list li:nth-child(n+6) {
    border-right: 1px solid rgba(255,255,255,.15);
    border-left: 0;
  }
  .projects-method-list li:nth-child(5n+1):not(:first-child) {
    padding-left: 0;
    clip-path: none;
  }
  .projects-method-list li:nth-child(5n) { border-right: 0; }
  .projects-method-list li:nth-child(5n+1):not(:first-child)::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -24px;
    left: 0;
    width: 500%;
    height: 1px;
    background: rgba(255,255,255,.18);
  }
}
.projects-method-list li > span { color: #d8ad59; font-size: 15px; font-weight: 700; line-height: 1.4; }
.projects-method-list h3 { margin-top: 14px; color: white; font-size: 18px; font-weight: 700; line-height: 1.55; letter-spacing: 0; }
.projects-method-list h3 em { display: block; color: rgba(255,255,255,.52); font-size: 15px; font-style: normal; font-weight: 500; }
.projects-method-list p { margin-top: 16px; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; }

.projects-disclosure { padding: 56px 0 60px; background: #f8faf8; }
.projects-disclosure-inner { padding: 28px 0; display: grid; grid-template-columns: 56px 230px minmax(0,1fr); gap: 28px; align-items: center; border-top: 1px solid rgba(7,21,29,.2); border-bottom: 1px solid rgba(7,21,29,.2); }
.projects-disclosure-mark { width: 48px; height: 48px; display: grid; place-items: center; color: #91681f; background: #edf1ef; border-radius: 2px; }
.projects-disclosure-mark svg { width: 23px; height: 23px; stroke-width: 1.7; }
.projects-disclosure h2 { margin-top: 6px; color: var(--ink); font-size: 21px; font-weight: 750; line-height: 1.4; letter-spacing: 0; }
.projects-disclosure-inner > p { max-width: 76ch; color: rgba(22,26,29,.68); font-size: 15px; line-height: 1.75; }

.projects-cta { position: relative; min-height: 376px; overflow: hidden; color: white; background: var(--ink); }
.projects-cta > img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 50%; filter: saturate(.72) contrast(1.04); }
.projects-cta-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,17,25,.95) 0%,rgba(3,17,25,.82) 42%,rgba(3,17,25,.18) 76%); }
.projects-cta-inner { position: relative; z-index: 1; min-height: 376px; display: flex; align-items: center; }
.projects-cta-inner > div { width: min(620px,52%); }
.projects-cta-inner > div > p { color: rgba(255,255,255,.66); font-size: 15px; font-weight: 700; line-height: 1.4; }
.projects-cta h2 { margin-top: 14px; font-size: 34px; font-weight: 750; line-height: 1.38; letter-spacing: 0; }
.projects-cta-inner > div > span { display: block; width: 46px; height: 2px; margin-top: 23px; background: var(--gold); }
.projects-cta-actions { margin-top: 31px; display: flex; align-items: center; gap: 34px; }
.projects-cta-actions a { min-height: 48px; display: inline-flex; align-items: center; gap: 17px; color: white; font-size: 15px; font-weight: 700; }
.projects-cta-actions a:first-child { padding: 0 24px; background: var(--gold); }
.projects-cta-actions a:last-child { border-bottom: 1px solid rgba(255,255,255,.56); }
.projects-cta-actions svg { width: 18px; height: 18px; stroke-width: 1.7; transition: transform .25s ease; }
.projects-cta-actions a:hover svg { transform: translateX(4px); }

body.project-modal-open { overflow: hidden; }
.project-modal-backdrop { position: fixed; z-index: 999; inset: 0; background: rgba(2,12,18,.78); backdrop-filter: blur(3px); }
.project-modal-backdrop[hidden] { display: none; }
.project-modal { width: min(calc(100% - 48px),920px); max-width: 920px; max-height: 90vh; padding: 0; overflow: hidden; color: var(--carbon); background: var(--paper); border: 0; border-radius: 4px; box-shadow: 0 28px 80px rgba(0,0,0,.34); }
.project-modal::backdrop { background: rgba(2,12,18,.78); backdrop-filter: blur(3px); }
.project-modal.is-fallback-open { position: fixed; z-index: 1000; inset: 50% auto auto 50%; display: block; margin: 0; transform: translate(-50%,-50%); }
.project-modal-shell { max-height: 90vh; overflow-y: auto; overscroll-behavior: contain; }
.project-modal-media { position: relative; height: 250px; overflow: hidden; background: var(--ink); }
.project-modal-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(2,12,18,.02),rgba(2,12,18,.4)); pointer-events: none; }
.project-modal-media img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.74) contrast(1.04); }
.project-modal-media figcaption { position: absolute; z-index: 2; left: 28px; bottom: 20px; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.4; }
.project-modal-media button { position: absolute; z-index: 3; top: 18px; right: 18px; width: 46px; height: 46px; padding: 0; display: grid; place-items: center; color: white; background: rgba(7,21,29,.88); border: 1px solid rgba(255,255,255,.25); border-radius: 2px; cursor: pointer; transition: color .2s ease,background .2s ease; }
.project-modal-media button:hover { color: var(--ink); background: white; }
.project-modal-media button svg { width: 21px; height: 21px; stroke-width: 1.7; }
.project-modal-content { padding: 35px 40px 42px; }
.project-modal-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; color: #8b641e; font-size: 15px; font-weight: 700; line-height: 1.45; }
.project-modal-meta i { width: 3px; height: 3px; background: var(--gold); transform: rotate(45deg); }
.project-modal-content h2 { margin-top: 13px; color: var(--ink); font-size: 32px; font-weight: 750; line-height: 1.32; letter-spacing: 0; }
.project-modal-summary { max-width: 70ch; margin-top: 13px !important; color: rgba(22,26,29,.68); font-size: 16px; line-height: 1.75; }
.project-modal-ownership { margin-top: 24px !important; padding: 15px 17px; display: flex; align-items: center; gap: 11px; color: rgba(7,21,29,.78); font-size: 15px; font-weight: 650; line-height: 1.6; background: #e9efec; }
.project-modal-ownership svg { flex: 0 0 auto; width: 19px; height: 19px; color: #8b641e; stroke-width: 1.8; }
.project-modal-details { margin-top: 30px !important; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(7,21,29,.16); }
.project-modal-details > div { min-width: 0; padding: 25px 27px 26px 0; border-bottom: 1px solid rgba(7,21,29,.14); }
.project-modal-details > div:nth-child(even) { padding-left: 27px; padding-right: 0; border-left: 1px solid rgba(7,21,29,.14); }
.project-modal-details dt { color: var(--ink); font-size: 16px; font-weight: 750; line-height: 1.5; }
.project-modal-details dd { margin-top: 9px; color: rgba(22,26,29,.68); font-size: 15px; line-height: 1.72; }

[data-aos="projects-hero-image"] { opacity: .68; transform: scale(1.055); transition-property: opacity,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="projects-hero-image"].aos-animate { opacity: 1; transform: scale(1); }
[data-aos="projects-hero-panel"] { opacity: 1; transform: translate3d(-100%,0,0); transition-property: transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="projects-hero-panel"].aos-animate { transform: translate3d(0,0,0); }
[data-aos="projects-hero-copy"] { opacity: 0; clip-path: inset(0 100% 0 0); filter: blur(5px); transform: translate3d(-46px,0,0); transition-property: opacity,clip-path,filter,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="projects-hero-copy"].aos-animate { opacity: 1; clip-path: inset(0); filter: blur(0); transform: translate3d(0,0,0); }
[data-aos="projects-heading"],
[data-aos="projects-copy"],
[data-aos="projects-disclosure"],
[data-aos="projects-cta-copy"] { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(-44px,0,0); transition-property: opacity,clip-path,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="projects-copy"] { transform: translate3d(44px,0,0); }
[data-aos="projects-disclosure"] { transform: translate3d(0,30px,0); }
[data-aos="project-rail"] { opacity: 1; clip-path: inset(0 100% 0 0); transition-property: clip-path; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="project-card"] { opacity: 0; transform: translate3d(48px,0,0); transition-property: opacity,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="project-method-heading"] { opacity: 0; transform: translate3d(-48px,0,0); transition-property: opacity,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="project-method-line"] { opacity: 1; border-top-color: transparent; transition-property: border-color; }
[data-aos="project-method-line"]::after { content: ""; position: absolute; top: -1px; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,.24); transform: scaleX(0); transform-origin: left; transition: transform .95s cubic-bezier(.16,1,.3,1); }
[data-aos="project-method-item"] { opacity: 0; clip-path: inset(0 0 100% 0); transform: translate3d(0,42px,0); transition-property: opacity,clip-path,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="projects-cta-image"] { opacity: .72; transform: scale(1.055); transition-property: opacity,transform; transition-timing-function: cubic-bezier(.16,1,.3,1); }
[data-aos="projects-heading"].aos-animate,
[data-aos="projects-copy"].aos-animate,
[data-aos="projects-disclosure"].aos-animate,
[data-aos="projects-cta-copy"].aos-animate,
[data-aos="project-card"].aos-animate,
[data-aos="project-method-heading"].aos-animate,
[data-aos="project-method-item"].aos-animate { opacity: 1; clip-path: inset(0); transform: translate3d(0,0,0); }
[data-aos="project-rail"].aos-animate { clip-path: inset(0); }
[data-aos="project-method-line"].aos-animate::after { transform: scaleX(1); }
[data-aos="projects-cta-image"].aos-animate { opacity: 1; transform: scale(1); }

@media (max-width: 1180px) {
  .projects-page { --projects-gutter: 48px; }
  .projects-hero-panel { width: 66%; }
  .projects-hero-copy { width: min(500px, calc(44.2vw - 66px)); }
  .projects-context-inner { grid-template-columns: 330px minmax(0,1fr); gap: 72px; }
  .projects-method-heading { gap: 60px; }
  .projects-method-list li { padding-inline: 20px; }
}

@media (max-width: 900px) {
  .projects-page { --projects-gutter: 32px; }
  .projects-hero-panel { width: 76%; }
  .projects-hero-copy { width: min(500px, calc(50.9vw - 50px)); }
  .projects-context-inner { grid-template-columns: 1fr; gap: 38px; }
  .projects-context-copy { padding-top: 26px; }
  .projects-archive-heading { grid-template-columns: 1fr; gap: 30px; }
  .projects-carousel-status { justify-content: space-between; }
  .projects-method-heading { grid-template-columns: 1fr; gap: 25px; }
  .projects-method-list { grid-template-columns: repeat(2,minmax(0,1fr)); row-gap: 34px; }
  .projects-method-list li { min-height: 0; padding: 0 24px 30px; }
  .projects-method-list li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .projects-method-list li:nth-child(even) { padding-right: 0; }
  .projects-method-list li:nth-child(n+3) { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); }
  .projects-disclosure-inner { grid-template-columns: 56px minmax(0,1fr); }
  .projects-disclosure-inner > p { grid-column: 2; }
  .projects-cta-inner > div { width: min(620px,72%); }
}

@media (max-width: 700px) {
  .projects-page { --projects-gutter: 24px; }
  .projects-hero { height: 600px; margin-top: 70px; }
  .projects-hero-image { object-position: 62% top; }
  .projects-hero-shade { background: linear-gradient(0deg,rgba(3,15,23,.22),transparent 66%); }
  .projects-hero-panel { top: auto; width: 100%; height: 62%; clip-path: polygon(0 11%,100% 0,100% 100%,0 100%); }
  .projects-hero-panel::after { top: 7%; right: 0; width: 100%; height: 1px; transform: rotate(-6deg); }
  .projects-hero-copy { top: auto; bottom: 40px; width: 100%; max-width: none; }
  .projects-hero-copy h1 { font-size: 33px; }
  .projects-hero-copy > span { margin-top: 16px; }
  .projects-hero-copy h2 { margin-top: 18px; font-size: 22px; line-height: 1.45; }
  .projects-hero-note { max-width: 34ch; margin-top: 8px !important; line-height: 1.62; }
  .projects-context { padding: 70px 0 72px; }
  .projects-context h2 { font-size: 31px; }
  .projects-context-copy > p { font-size: 15px; line-height: 1.8; }
  .projects-context-copy aside { align-items: flex-start; }
  .projects-archive { padding: 72px 0 80px; }
  .projects-archive-heading h2 { font-size: 31px; }
  .projects-carousel-status > p strong { font-size: 23px; }
  .projects-carousel-status button { width: 44px; height: 44px; }
  .projects-carousel { width: calc(100vw - var(--projects-gutter)); margin-top: 36px; }
  .projects-carousel-track { gap: 16px; padding-right: 56px; }
  .projects-carousel-item { width: clamp(260px,calc(100vw - 80px),310px); flex-basis: clamp(260px,calc(100vw - 80px),310px); }
  .project-card { height: 500px; grid-template-rows: 205px minmax(0,1fr); }
  .project-card-content { padding: 24px 22px 22px; }
  .project-card-content > strong { font-size: 21px; }
  .project-card:hover { transform: none; }
  .projects-carousel-progress { width: calc(100vw - 48px); margin-top: 24px; }
  .projects-method { padding: 70px 0 72px; }
  .projects-method-heading h2 { font-size: 30px; }
  .projects-method-list { margin-top: 28px !important; padding: 8px 0 0 24px; grid-template-columns: 1fr; row-gap: 0; border-top: 0; }
  .projects-method-list::before { top: 14px; left: 0; }
  .projects-method-list::after { content: ""; position: absolute; top: 14px; bottom: 10px; left: 3px; width: 1px; background: rgba(255,255,255,.24); }
  .projects-method-list li,
  .projects-method-list li:first-child,
  .projects-method-list li:nth-child(odd),
  .projects-method-list li:nth-child(even),
  .projects-method-list li:nth-child(n+3) { min-height: 0; padding: 0 0 31px 17px; border: 0; }
  .projects-method-list li:last-child { padding-bottom: 0; }
  .projects-method-list p { max-width: 31ch; margin-top: 11px; }
  .projects-disclosure { padding: 50px 0 52px; }
  .projects-disclosure-inner { padding: 25px 0 27px; grid-template-columns: 48px minmax(0,1fr); gap: 18px; }
  .projects-disclosure-mark { width: 44px; height: 44px; }
  .projects-disclosure-inner > p { grid-column: 1 / -1; }
  .projects-cta { min-height: 430px; }
  .projects-cta-shade { background: linear-gradient(0deg,rgba(3,17,25,.96) 0%,rgba(3,17,25,.78) 62%,rgba(3,17,25,.24) 100%); }
  .projects-cta-inner { min-height: 430px; align-items: flex-end; padding-bottom: 64px; }
  .projects-cta-inner > div { width: 100%; }
  .projects-cta h2 { font-size: 30px; }
  .projects-cta-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .project-modal { width: calc(100% - 24px); max-height: 92vh; }
  .project-modal-shell { max-height: 92vh; }
  .project-modal-media { height: 190px; }
  .project-modal-media figcaption { left: 20px; bottom: 16px; }
  .project-modal-media button { top: 14px; right: 14px; width: 44px; height: 44px; }
  .project-modal-content { padding: 27px 23px 32px; }
  .project-modal-content h2 { font-size: 27px; }
  .project-modal-summary { font-size: 15px; }
  .project-modal-ownership { align-items: flex-start; padding: 14px; }
  .project-modal-details { grid-template-columns: 1fr; }
  .project-modal-details > div,
  .project-modal-details > div:nth-child(even) { padding: 22px 0 23px; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .projects-carousel-viewport { scroll-behavior: auto; }
  .project-card,
  .project-card::before,
  .project-card-media img,
  .project-card-action svg,
  .projects-carousel-progress span,
  .projects-cta-actions svg { transition: none !important; transform: none !important; }
  [data-aos="projects-hero-image"],
  [data-aos="projects-hero-panel"],
  [data-aos="projects-hero-copy"],
  [data-aos="projects-heading"],
  [data-aos="projects-copy"],
  [data-aos="projects-disclosure"],
  [data-aos="projects-cta-copy"],
  [data-aos="project-rail"],
  [data-aos="project-card"],
  [data-aos="project-method-heading"],
  [data-aos="project-method-item"],
  [data-aos="projects-cta-image"] { opacity: 1 !important; clip-path: none !important; filter: none !important; transform: none !important; transition: none !important; }
  [data-aos="project-method-line"]::after { transform: scaleX(1) !important; transition: none !important; }
}

/* Legal documents: long-form reading pages sourced from the published app policies. */
.legal-page {
  --legal-max: 1536px;
  --legal-gutter: 64px;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
}
.legal-document-body .site-header {
  background: rgba(246,247,243,.96);
  border-bottom-color: rgba(7,21,29,.09);
  box-shadow: 0 8px 24px rgba(7,21,29,.05);
  backdrop-filter: saturate(135%) blur(14px);
  -webkit-backdrop-filter: saturate(135%) blur(14px);
}
.legal-page h1,
.legal-page h2,
.legal-page h3,
.legal-page h4,
.legal-page p,
.legal-page dl,
.legal-page dd,
.legal-page figure { margin: 0; }
.legal-container {
  width: min(calc(100% - (var(--legal-gutter) * 2)), var(--legal-max));
  margin-inline: auto;
}
.legal-hero {
  position: relative;
  min-height: 390px;
  padding: 142px 0 72px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.legal-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(201,154,61,.2);
}
.legal-hero::before { content: ""; position: absolute; z-index: 1; bottom: 0; left: 0; width: 28%; height: 3px; background: var(--gold); }
.legal-breadcrumb { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.5; }
.legal-breadcrumb a { color: rgba(255,255,255,.76); }
.legal-breadcrumb a:hover { color: white; }
.legal-kicker {
  margin-top: 42px !important;
  color: var(--gold);
  font-family: "Arial Narrow", "DIN Condensed", "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
.legal-hero h1 {
  max-width: 100%;
  margin-top: 12px;
  color: white;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 780;
  line-height: 1.24;
  overflow-wrap: break-word;
}
.legal-hero-meta { display: flex; flex-wrap: wrap; gap: 12px 30px; max-width: 100%; margin-top: 27px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.6; overflow-wrap: break-word; }
.legal-hero-meta span + span { position: relative; }
.legal-hero-meta span + span::before { content: ""; position: absolute; top: 50%; left: -16px; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.legal-body { padding: clamp(76px, 6.2vw, 106px) 0 clamp(100px, 8vw, 138px); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(48px, 4.2vw, 64px); align-items: start; }
.legal-sidebar {
  position: sticky;
  z-index: 12;
  top: 96px;
  align-self: start;
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.legal-sidebar::-webkit-scrollbar { display: none; width: 0; height: 0; }
.legal-sidebar > div {
  position: static;
}
.legal-sidebar > div > p { color: var(--gold); font-size: 15px; font-weight: 700; line-height: 1.5; }
.legal-sidebar h2 { margin-top: 8px; color: var(--ink); font-size: 27px; font-weight: 760; line-height: 1.35; }
.legal-sidebar nav { margin-top: 28px; border-top: 1px solid rgba(7,21,29,.17); }
.legal-sidebar nav a {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr);
  gap: 12px;
  align-items: baseline;
  min-height: 53px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(7,21,29,.13);
  color: rgba(7,21,29,.68);
  transition: color .2s ease, transform .2s cubic-bezier(.16,1,.3,1);
}
.legal-sidebar nav a:hover { color: var(--harbor); transform: translateX(6px); }
.legal-sidebar nav span { color: var(--gold); font-size: 15px; font-weight: 700; }
.legal-sidebar nav strong { font-size: 15px; font-weight: 650; line-height: 1.7; }
.legal-sidebar nav a.is-active {
  color: var(--ink);
  transform: translateX(6px);
}
.legal-sidebar nav a.is-active span,
.legal-sidebar nav a.is-active strong { font-weight: 800; }
.legal-sidebar nav a.is-active strong { color: var(--ink); }
.legal-switch {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 25px;
  padding: 0 17px;
  color: white;
  background: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.legal-switch:hover { background: var(--harbor); }
.legal-switch svg { flex: 0 0 auto; width: 17px; height: 17px; transition: transform .25s ease; }
.legal-switch:hover svg { transform: translate(3px,-3px); }
.legal-switch:focus-visible,
.legal-sidebar nav a:focus-visible,
.legal-document a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.legal-document { width: 100%; min-width: 0; }
.legal-document-content { width: 100%; min-width: 0; padding-top: 40px; color: rgba(7,21,29,.72); }
.legal-document-content h1,
.legal-document-content h2,
.legal-document-content h3,
.legal-document-content h4,
.legal-document-content h5,
.legal-document-content h6 { scroll-margin-top: 96px; color: var(--ink); font-weight: 770; line-height: 1.45; }
.legal-document-content h1 { margin: 28px 0 16px; padding-bottom: 18px; border-bottom: 1px solid rgba(7,21,29,.2); font-size: clamp(30px, 2.5vw, 38px); }
.legal-document-content h2 { margin: 54px 0 16px; padding-bottom: 18px; border-bottom: 1px solid rgba(7,21,29,.2); font-size: clamp(27px, 2.3vw, 34px); }
.legal-document-content h3,
.legal-document-content h4,
.legal-document-content h5,
.legal-document-content h6 { margin: 31px 0 10px; font-size: 19px; }
.legal-document-content p { margin: 9px 0; color: rgba(7,21,29,.72); font-size: 15px; line-height: 1.95; }
.legal-document-content ul,
.legal-document-content ol { margin: 13px 0; padding-left: 24px; color: rgba(7,21,29,.72); }
.legal-document-content li { margin: 7px 0; padding-left: 3px; font-size: 15px; line-height: 1.85; }
.legal-document-content strong,
.legal-document-content b { color: var(--ink); font-weight: 750; }
.legal-document-content a { color: var(--harbor); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-document-content a:hover { color: var(--ink); }
.legal-document-content .table-wrap { max-width: 100%; margin: 22px 0 28px; overflow-x: auto; border: 1px solid rgba(7,21,29,.16); background: var(--paper); -webkit-overflow-scrolling: touch; }
.legal-document-content table { width: 100%; min-width: 860px; border-collapse: collapse; color: rgba(7,21,29,.72); font-size: 15px; line-height: 1.65; }
.legal-document-content > section { min-width: 0; }
.legal-document-content > div { max-width: 100%; overflow-x: auto; }
.legal-document-content th,
.legal-document-content td { padding: 14px 15px; border-right: 1px solid rgba(7,21,29,.11); border-bottom: 1px solid rgba(7,21,29,.11); text-align: left; vertical-align: top; }
.legal-document-content th { color: var(--ink); background: rgba(17,79,108,.1); font-weight: 720; }
.legal-document-content tr:last-child td { border-bottom: 0; }
.legal-document-content th:last-child,
.legal-document-content td:last-child { border-right: 0; }
.legal-notices { display: grid; gap: 14px; margin-bottom: 42px; }
.legal-notices > section {
  padding: 22px 25px;
  border: 1px solid rgba(201,154,61,.28);
  color: rgba(7,21,29,.76);
  background: rgba(201,154,61,.08);
  font-size: 15px;
  line-height: 1.85;
}
.legal-notices p { color: inherit; line-height: inherit; }
.legal-notices .intro-welcome { color: var(--ink); font-weight: 750; }
.legal-notices-after { margin: 52px 0 0; }
.legal-operator {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  gap: 42px;
  padding: 31px 0 34px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid rgba(7,21,29,.16);
}
.legal-operator header p { color: var(--gold); font-size: 15px; font-weight: 700; line-height: 1.5; }
.legal-operator header h2 { margin-top: 7px; color: var(--ink); font-size: 22px; font-weight: 740; line-height: 1.45; }
.legal-operator dl > div { display: grid; grid-template-columns: 145px minmax(0,1fr); gap: 20px; padding: 8px 0; }
.legal-operator dt { color: rgba(7,21,29,.52); font-size: 15px; line-height: 1.7; }
.legal-operator dd { min-width: 0; color: var(--ink); font-size: 15px; line-height: 1.7; }
.legal-operator dd > div { min-width: 0; }
.legal-operator a,
.legal-chapter-content a { color: var(--harbor); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-operator a:hover,
.legal-chapter-content a:hover { color: var(--ink); }

.legal-chapter { scroll-margin-top: 78px; padding-top: 68px; }
.legal-chapter > h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7,21,29,.2);
  color: var(--ink);
  font-size: clamp(27px, 2.3vw, 34px);
  font-weight: 770;
  line-height: 1.35;
}
.legal-chapter-content { width: 100%; max-width: none; padding-top: 6px; color: rgba(7,21,29,.72); }
.legal-chapter-content > section { min-width: 0; }
.legal-chapter-content > section > h2,
.legal-chapter-content > section > h3,
.legal-chapter-content > section > p,
.legal-chapter-content > section > ul,
.legal-chapter-content > section > ol,
.legal-chapter-content > section > .legal-inline-notice { max-width: 1440px; }
.legal-chapter-content h3,
.legal-chapter-content .legal-subsection-title {
  margin: 31px 0 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.55;
}
.legal-chapter-content .legal-subsection-title { padding: 13px 16px; background: rgba(17,79,108,.08); }
.legal-chapter-content p { margin: 9px 0; color: rgba(7,21,29,.72); font-size: 15px; line-height: 1.95; }
.legal-chapter-content ul,
.legal-chapter-content ol { margin: 13px 0; padding-left: 24px; color: rgba(7,21,29,.72); }
.legal-chapter-content li { margin: 7px 0; padding-left: 3px; font-size: 15px; line-height: 1.85; }
.legal-chapter-content strong,
.legal-chapter-content b { color: var(--ink); font-weight: 750; }
.legal-inline-notice { margin: 22px 0; padding: 18px 20px; color: rgba(7,21,29,.76); background: rgba(201,154,61,.08); border: 1px solid rgba(201,154,61,.28); font-size: 15px; line-height: 1.85; }
.legal-chapter-content .table-wrap {
  max-width: 100%;
  margin: 22px 0 28px;
  overflow-x: auto;
  border: 1px solid rgba(7,21,29,.16);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
}
.legal-chapter-content table { width: 100%; min-width: 860px; border-collapse: collapse; color: rgba(7,21,29,.72); font-size: 15px; line-height: 1.65; }
.legal-chapter-content th,
.legal-chapter-content td { padding: 14px 15px; border-right: 1px solid rgba(7,21,29,.11); border-bottom: 1px solid rgba(7,21,29,.11); text-align: left; vertical-align: top; }
.legal-chapter-content th { color: var(--ink); background: rgba(17,79,108,.1); font-weight: 720; }
.legal-chapter-content tr:last-child td { border-bottom: 0; }
.legal-chapter-content th:last-child,
.legal-chapter-content td:last-child { border-right: 0; }
.legal-document-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 68px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}
.legal-document-footer p { color: rgba(7,21,29,.55); font-size: 15px; line-height: 1.7; }
.legal-document-footer a { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 15px; font-weight: 700; white-space: nowrap; }
.legal-document-footer svg { width: 17px; height: 17px; }
.legal-missing { min-height: 70vh; padding: 180px 7vw 100px; color: var(--ink); background: var(--paper); }
.legal-missing h1 { font-size: 36px; }
.legal-missing p { margin-top: 18px; font-size: 15px; }

@media (max-width: 1280px) {
  .legal-page { --legal-gutter: 40px; }
  .legal-layout { grid-template-columns: 1fr; gap: 62px; }
  .legal-sidebar > div {
    position: static;
    display: grid;
    grid-template-columns: minmax(0,1fr) 260px;
    grid-template-areas:
      "kicker switch"
      "title switch"
      "nav nav";
    column-gap: 34px;
  }
  .legal-sidebar > div > p { grid-area: kicker; align-self: end; }
  .legal-sidebar h2 { grid-area: title; }
  .legal-sidebar nav { grid-area: nav; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 30px; margin-top: 24px; }
  .legal-switch { grid-area: switch; width: min(100%, 320px); margin-top: 0; }
  .legal-document { max-width: none; }
}

@media (max-width: 700px) {
  .legal-page { --legal-gutter: 24px; }
  .legal-hero { min-height: 360px; padding: 122px 0 62px; }
  .legal-kicker { margin-top: 34px !important; }
  .legal-hero h1 { font-size: 34px; line-height: 1.3; }
  .legal-hero-meta { display: grid; gap: 5px; margin-top: 22px; }
  .legal-hero-meta span + span::before { display: none; }
  .legal-body { padding: 64px 0 82px; }
  .legal-layout { gap: 0; }
  .legal-sidebar { display: none; }
  .legal-sidebar > div {
    grid-template-columns: minmax(0,1fr);
    grid-template-areas:
      "kicker"
      "title"
      "nav"
      "switch";
    padding-top: 25px;
  }
  .legal-sidebar h2 { font-size: 25px; }
  .legal-sidebar nav { grid-template-columns: 1fr; margin-top: 23px; }
  .legal-sidebar nav a { min-height: 51px; }
  .legal-switch { width: 100%; margin-top: 22px; }
  .legal-notices { margin-bottom: 34px; }
  .legal-notices > section { padding: 19px 20px; }
  .legal-operator { grid-template-columns: 1fr; gap: 24px; padding: 26px 0 29px; }
  .legal-operator dl > div { grid-template-columns: 1fr; gap: 2px; padding: 8px 0; }
  .legal-operator dt { font-size: 15px; }
  .legal-chapter { padding-top: 54px; scroll-margin-top: 70px; }
  .legal-chapter > h2 { font-size: 26px; }
  .legal-chapter-content h3,
  .legal-chapter-content .legal-subsection-title { margin-top: 27px; font-size: 18px; }
  .legal-chapter-content .legal-subsection-title { padding: 12px 14px; }
  .legal-chapter-content .table-wrap { margin-right: calc(var(--legal-gutter) * -1); border-right: 0; }
  .legal-chapter-content table { min-width: 760px; }
  .legal-document-footer { align-items: flex-start; flex-direction: column; margin-top: 56px; }
  .legal-sidebar > div { position: static; }
  .legal-document-content { padding-top: 28px; }
  .legal-document-content h1 { font-size: 28px; }
  .legal-document-content h2 { margin-top: 42px; font-size: 26px; }
  .legal-document-content h3,
  .legal-document-content h4,
  .legal-document-content h5,
  .legal-document-content h6 { margin-top: 27px; font-size: 18px; }
  .legal-document-content .table-wrap { margin-right: calc(var(--legal-gutter) * -1); border-right: 0; }
  .legal-document-content table { min-width: 760px; }
}

@media (prefers-reduced-motion: reduce) {
  .legal-sidebar nav a,
  .legal-switch svg { transition: none !important; transform: none !important; }
}

/* App product page final tuning. */
.app-hero {
  min-height: 720px;
  background: #0b2938;
}
.app-hero::before {
  position: absolute;
  inset: 78px auto 0 0;
  left: 42%;
  width: 1px;
  background: rgba(255,255,255,.08);
  content: "";
  pointer-events: none;
}
.app-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 1px;
  background: rgba(201,154,61,.72);
  content: "";
  pointer-events: none;
}
.app-hero-grid {
  display: none;
}
.app-hero-inner {
  min-height: 720px;
  grid-template-columns: minmax(390px,.82fr) minmax(560px,1.18fr);
  gap: clamp(48px,5.5vw,92px);
  padding-top: 78px;
}
.app-hero-copy { min-width: 0; width: 100%; max-width: 540px; padding: 42px 0 54px; }
.app-brand-lockup { gap: 16px; }
.app-brand-lockup img { width: 64px; height: 64px; }
.app-brand-lockup strong { font-size: 22px; }
.app-hero-kicker { margin-top: 38px !important; letter-spacing: 0; }
.app-hero h1 {
  max-width: 100%;
  margin-top: 14px;
  font-size: clamp(46px,3.9vw,58px);
  line-height: 1.16;
  white-space: normal;
  overflow-wrap: break-word;
}
.app-hero-summary { max-width: 100%; margin-top: 22px !important; color: rgba(255,255,255,.72); overflow-wrap: break-word; }
.app-downloads { margin-top: 31px; gap: 11px; }
.app-download { min-width: 198px; min-height: 62px; padding: 0 16px; }
.app-download-primary { box-shadow: 0 12px 24px rgba(201,154,61,.16); }
.app-download-secondary { border-color: rgba(255,255,255,.34); }
.app-download-secondary:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.app-download-note { margin-top: 14px !important; }
.app-hero-screens {
  z-index: 2;
  height: 560px;
}
.app-hero-screens::before {
  position: absolute;
  top: 8%;
  right: 1%;
  bottom: 8%;
  left: 5%;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  content: "";
  pointer-events: none;
}
.app-hero-screens::after {
  position: absolute;
  top: 8%;
  right: 1%;
  z-index: 1;
  width: 118px;
  height: 4px;
  background: var(--gold);
  content: "";
  pointer-events: none;
}
.app-hero-screen {
  border: 7px solid rgba(255,255,255,.82);
  box-shadow: 18px 28px 52px rgba(0,0,0,.32),0 0 0 1px rgba(255,255,255,.12);
  top: 50%;
  right: auto;
  bottom: auto;
  left: 4%;
  width: auto;
  height: min(96%,540px);
  max-width: 56%;
  object-fit: contain;
  transform-origin: center center;
  transition: opacity .58s ease, transform .78s cubic-bezier(.16,1,.3,1), filter .58s ease, box-shadow .58s ease;
}
.app-hero-screen.is-primary {
  z-index: 3;
  opacity: 1;
  filter: saturate(1);
  transform: translate3d(0,-50%,0) scale(1);
}
.app-hero-screen.is-secondary {
  z-index: 2;
  opacity: .86;
  filter: saturate(.92);
  transform: translate3d(0,-48%,0) scale(.7) rotate(1.8deg);
}
.app-hero-screen.is-hidden {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  filter: saturate(.7);
  transform: translate3d(72px,-43%,0) scale(.52) rotate(3deg);
}
.app-hero-screen.is-secondary,
.app-hero-screen.is-hidden {
  left: 52%;
}
.app-hero-screen-two {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 52%;
  z-index: 3;
  width: min(56%,374px);
  transform: translate3d(0,-48%,0) scale(.62) rotate(1.8deg);
}
[data-aos="app-hero-screens"] {
  opacity: 1;
  clip-path: none;
  transform: translate3d(46px,0,0);
  transition-property: transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="app-hero-screens"].aos-animate { transform: translate3d(0,0,0); }
.app-purpose { padding: 136px 0 148px; background: #f6f8f4; }
.app-purpose-inner { gap: 66px 9vw; }
.app-purpose-inner > header { padding-left: 26px; border-left: 3px solid var(--gold); }
.app-purpose h2,
.app-showcase h2,
.app-trust h2 { font-size: clamp(36px,3.1vw,50px); }
.app-purpose-copy { align-self: center; }
.app-purpose-copy p { color: rgba(22,26,29,.7); }
.app-feature-list {
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 20px;
  border-top-color: rgba(7,21,29,.2);
}
.app-feature-list li { padding: 30px 30px 34px 0; }
.app-feature-list li + li { padding-left: 26px; border-left-color: rgba(7,21,29,.2); }
.app-feature-list li:nth-child(3n+1) { padding-left: 0; border-left: 0; }
.app-feature-list li:nth-child(n+4) { border-top: 1px solid rgba(7,21,29,.2); }
.app-feature-list li > span.app-feature-mark { display: flex; width: auto; height: 28px; align-items: center; justify-content: space-between; background: transparent; color: var(--gold); }
.app-feature-mark b { font-size: 15px; font-weight: 750; letter-spacing: .04em; }
.app-feature-mark svg { width: 19px; height: 19px; stroke-width: 1.65; }
.app-feature-list h3 { margin-top: 22px; font-size: 19px; }
.app-feature-list p { margin-top: 9px; line-height: 1.78; }
.app-showcase { padding: 88px 0 94px; background: #e9eeeb; }
.app-showcase-header { align-items: flex-end; }
.app-showcase-viewport { margin-top: 44px; }
.app-showcase-track { gap: 28px; padding-bottom: 20px; }
.app-showcase-slide {
  min-width: min(620px,56vw);
  grid-template-columns: minmax(350px,1.4fr) minmax(210px,.6fr);
  background: #0c2e3f;
  color: white;
  transform: translateY(0);
  transition: transform .55s cubic-bezier(.16,1,.3,1),box-shadow .55s cubic-bezier(.16,1,.3,1);
}
.app-showcase-slide figure { min-height: 0; aspect-ratio: 9 / 16; background: #f8f8f5; }
.app-showcase-slide img { object-fit: contain; transform: scale(1); transition: transform .55s cubic-bezier(.16,1,.3,1),filter .55s ease; }
.app-showcase-slide.is-active img { transform: scale(1); }
.app-showcase-slide > div { justify-content: flex-end; padding: 30px 26px; border-top: 0; }
.app-showcase-slide > div > span { color: var(--gold); }
.app-showcase-slide h3 { color: white; font-size: 26px; }
.app-showcase-slide p { color: rgba(255,255,255,.66); }
.app-showcase-controls button { border-color: rgba(7,21,29,.25); }
.app-download-cta { position: relative; overflow: hidden; }
.app-download-cta .cooperation-media { margin: 0; overflow: hidden; }
.app-download-cta .cooperation-media img { display: block; width: 100%; height: 100%; object-fit: cover; }

@media (hover: hover) and (pointer: fine) {
  .app-hero-screen.is-primary:hover {
    box-shadow: 22px 34px 62px rgba(0,0,0,.38),0 0 0 1px rgba(255,255,255,.18);
    transform: translate3d(0,-50%,0) scale(.985);
  }
  .app-hero-screen.is-secondary:hover {
    box-shadow: 22px 34px 62px rgba(0,0,0,.38),0 0 0 1px rgba(255,255,255,.18);
    filter: saturate(1);
    transform: translate3d(0,-49%,0) scale(.72) rotate(0deg);
  }
  .app-showcase-slide:hover {
    box-shadow: 0 22px 42px rgba(7,21,29,.18);
    transform: translateY(-8px);
  }
  .app-showcase-slide:hover img { filter: saturate(1.04); transform: scale(.982); }
}

@media (max-width: 1180px) {
  .app-hero-inner { grid-template-columns: minmax(360px,.88fr) minmax(470px,1.12fr); gap: 42px; }
  .app-hero-screen { width: auto; height: min(94%,520px); max-width: 58%; }
  .app-hero-screen.is-secondary,
  .app-hero-screen.is-hidden { left: 50%; }
  .app-purpose { padding-block: 118px 132px; }
  .app-showcase { padding-block: 86px 92px; }
}
@media (max-width: 900px) {
  .app-hero { min-height: 1050px; }
  .app-hero::before { left: 50%; }
  .app-hero-inner { min-height: 1050px; grid-template-columns: 1fr; gap: 0; padding-top: 78px; }
  .app-hero-copy { width: 100%; max-width: 650px; padding: 46px 0 28px; }
  .app-hero-screens { width: min(100%,720px); height: 500px; margin-inline: auto; }
  .app-hero-screen { left: 5%; width: auto; height: min(94%,470px); max-width: 54%; }
  .app-hero-screen.is-secondary,
  .app-hero-screen.is-hidden { left: 48%; }
  .app-purpose { padding-block: 106px 118px; }
  .app-showcase { padding-block: 82px 88px; }
  .app-showcase-slide { min-width: min(620px,76vw); }
  .app-feature-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .app-feature-list li:nth-child(2n+1) { padding-left: 0; border-left: 0; }
  .app-feature-list li:nth-child(2n) { padding-left: 26px; border-left: 1px solid rgba(7,21,29,.2); }
  .app-feature-list li:nth-child(n+3) { border-top: 1px solid rgba(7,21,29,.2); }
}
@media (max-width: 700px) {
  .app-page { --app-gutter: 24px; }
  .app-hero { min-height: 1160px; }
  .app-hero::before { display: none; }
  .app-hero-inner { min-height: 1160px; padding-top: 70px; }
  .app-hero-copy { width: 100%; padding: 38px 0 24px; }
  .app-brand-lockup img { width: 58px; height: 58px; }
  .app-brand-lockup strong { font-size: 20px; }
  .app-hero-kicker { margin-top: 32px !important; }
  .app-hero h1 { max-width: 100%; font-size: clamp(36px,10.2vw,40px); line-height: 1.18; }
  .app-hero-summary { margin-top: 20px !important; font-size: 15px; line-height: 1.8; }
  .app-downloads { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .app-download { width: 100%; min-width: 0; min-height: 58px; }
  .app-download-note { max-width: 31ch; }
  .app-hero-screens { height: 410px; margin-top: 0; }
  .app-hero-screens::before { right: 0; left: 0; border-color: rgba(255,255,255,.13); }
  .app-hero-screens::after { right: 0; width: 78px; }
  .app-hero-screen { left: 3%; width: auto; height: min(94%,385px); max-width: 61%; border-width: 5px; }
  .app-hero-screen.is-secondary,
  .app-hero-screen.is-hidden { left: 46%; }
  .app-purpose { padding-block: 88px 96px; }
  .app-purpose-inner > header { padding-left: 20px; }
  .app-feature-list { grid-template-columns: 1fr; }
  .app-feature-list li,
  .app-feature-list li:nth-child(2n),
  .app-feature-list li:nth-child(2n+1) { padding: 27px 0; border-left: 0; }
  .app-feature-list li:not(:first-child) { border-top: 1px solid rgba(7,21,29,.2); }
  .app-feature-list li > span.app-feature-mark { height: 26px; }
  .app-showcase { padding-block: 70px 74px; }
  .app-showcase-viewport { margin-top: 32px; }
  .app-showcase-slide { min-width: calc(100vw - 104px); grid-template-columns: 1fr; }
  .app-showcase-slide figure { aspect-ratio: 9 / 16; }
  .app-showcase-slide > div { min-height: 150px; padding: 20px 19px 23px; }
  .app-showcase-slide h3 { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .app-hero-screen { transition: none !important; }
  .app-showcase-slide,
  .app-showcase-slide img { transition: none !important; transform: none !important; }
  [data-aos="app-hero-screens"],
  [data-aos="app-showcase-reveal"] { opacity: 1 !important; clip-path: none !important; transform: none !important; transition: none !important; }
}

/* Founder profile page. */
.team-chairman-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  padding: 0 13px;
  border: 1px solid rgba(201,154,61,.48);
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
  transition: border-color .25s ease,color .25s ease,background-color .25s ease;
}
.team-chairman-link:hover {
  border-color: var(--gold);
  background: rgba(201,154,61,.1);
  color: white;
}
.team-chairman-link svg { width: 17px; height: 17px; stroke-width: 1.7; }

.founder-page {
  --founder-max: 1536px;
  --founder-gutter: 64px;
  min-width: 0;
  overflow: hidden;
  background: #f6f7f3;
  color: var(--ink);
}
.founder-page h1,
.founder-page h2,
.founder-page h3,
.founder-page p,
.founder-page blockquote,
.founder-page figure,
.founder-page dl,
.founder-page dd { margin: 0; }
.founder-page p { font-weight: 400; }
.founder-container {
  width: min(calc(100% - (var(--founder-gutter) * 2)),var(--founder-max));
  margin-inline: auto;
}
.founder-hero {
  position: relative;
  height: clamp(640px,48vw,740px);
  margin-top: 78px;
  overflow: hidden;
  background: #07151d;
  color: white;
}
.founder-hero-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.founder-hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(5,17,23,.18);
  pointer-events: none;
}
.founder-hero-panel {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: min(48%,820px);
  background: rgba(6,28,42,.95);
  clip-path: polygon(0 0,84% 0,100% 100%,0 100%);
}
.founder-hero-inner {
  position: relative;
  z-index: 4;
  height: 100%;
}
.founder-hero-copy {
  display: flex;
  min-width: 0;
  width: min(520px, calc(min(40.3vw, 689px) - max(var(--founder-gutter), calc((100vw - var(--founder-max)) / 2)) - 24px));
  max-width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0 34px;
}
.founder-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.5;
}
.founder-breadcrumb a:hover { color: white; }
.founder-hero-kicker {
  max-width: 100%;
  margin-top: 42px !important;
  color: var(--gold);
  font-size: 15px;
  font-weight: 720 !important;
  line-height: 1.5;
}
.founder-hero h1 {
  max-width: 100%;
  margin-top: 12px;
  color: white;
  font-size: clamp(58px,5.7vw,82px);
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
.founder-hero-role {
  max-width: 100%;
  margin-top: 19px !important;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 1.72;
  overflow-wrap: break-word;
}
.founder-hero blockquote {
  max-width: 100%;
  margin-top: 34px;
  color: white;
  font-size: clamp(24px,2.2vw,32px);
  font-weight: 680;
  line-height: 1.45;
  overflow-wrap: break-word;
}
.founder-hero-link {
  display: inline-flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding: 0 18px;
  background: var(--gold);
  color: #07151d;
  font-size: 15px;
  font-weight: 720;
  transition: background-color .25s ease,color .25s ease;
}
.founder-hero-link:hover { background: #e0b35b; }
.founder-hero-link svg { width: 18px; height: 18px; stroke-width: 1.8; }
[data-aos="founder-hero-image"] {
  opacity: 1;
  transform: scale(1.055);
  transition-property: transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="founder-hero-image"].aos-animate { transform: scale(1); }
[data-aos="founder-hero-panel"] {
  opacity: 1;
  clip-path: polygon(0 0,0 0,0 100%,0 100%);
  transition-property: clip-path;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="founder-hero-panel"].aos-animate { clip-path: polygon(0 0,84% 0,100% 100%,0 100%); }

.founder-profile { padding: 138px 0 148px; background: #f6f7f3; }
.founder-profile-inner {
  display: grid;
  grid-template-columns: minmax(320px,.78fr) minmax(520px,1.22fr);
  gap: clamp(70px,8vw,132px);
}
.founder-profile header > p,
.founder-method-copy header > p,
.founder-global-copy header > p,
.founder-public-heading > p,
.founder-close-inner > div > p {
  color: var(--gold);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.5;
}
.founder-profile h2,
.founder-method h2,
.founder-global h2,
.founder-public h2,
.founder-close h2 {
  margin-top: 16px;
  font-size: clamp(36px,3.4vw,54px);
  font-weight: 740;
  line-height: 1.24;
  letter-spacing: 0;
}
.founder-profile header h2 { max-width: 13ch; }
.founder-profile-body { min-width: 0; }

/* The English profile title is longer, so keep its display scale measured. */
html[lang="en"] .founder-profile header h2 {
  max-width: 15ch;
  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.2;
  overflow-wrap: break-word;
}
.founder-prose { display: grid; max-width: 70ch; gap: 20px; }
.founder-prose p {
  color: rgba(22,26,29,.7);
  font-size: 16px;
  line-height: 1.95;
}
.founder-responsibilities { margin-top: 50px; border-top: 1px solid rgba(7,21,29,.17); }
.founder-responsibilities > div {
  display: grid;
  min-height: 78px;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(7,21,29,.17);
}
.founder-responsibilities dt {
  color: var(--gold);
  font-size: 15px;
  font-weight: 720;
}
.founder-responsibilities dd {
  color: rgba(7,21,29,.82);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.founder-method {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0,1.08fr) minmax(440px,.92fr);
  overflow: hidden;
  background: #061c2a;
  color: white;
}
.founder-method::after {
  position: absolute;
  z-index: 4;
  top: -5%;
  bottom: -5%;
  left: 53.5%;
  width: 1px;
  background: rgba(201,154,61,.88);
  content: "";
  transform: rotate(-1.55deg);
  pointer-events: none;
}
.founder-method-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  clip-path: polygon(0 0,96% 0,100% 100%,0 100%);
}
.founder-method-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.founder-method-copy {
  min-width: 0;
  padding: clamp(86px,7vw,118px) max(64px,calc((100vw - var(--founder-max)) / 2)) 96px clamp(58px,5vw,86px);
}
.founder-method h2 { color: white; }
.founder-method-copy header > span {
  display: block;
  max-width: 42ch;
  margin-top: 24px;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.85;
}
.founder-method ol { margin: 48px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.founder-method li {
  display: grid;
  min-height: 90px;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.founder-method li > span { color: var(--gold); font-size: 15px; font-weight: 760; }
.founder-method h3 { color: white; font-size: 18px; font-weight: 700; line-height: 1.45; }
.founder-method li p { margin-top: 6px; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.65; }
[data-aos="founder-method-row"] {
  opacity: 0;
  transform: translate3d(24px,0,0);
  transition-property: opacity,transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="founder-method-row"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }
[data-aos="founder-image-reveal"] {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transition-property: clip-path;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="founder-image-reveal"].aos-animate { clip-path: inset(0); }

.founder-global { padding: 142px 0 152px; background: #edf0ec; }
.founder-global-inner {
  display: grid;
  grid-template-columns: minmax(380px,.83fr) minmax(520px,1.17fr);
  gap: clamp(70px,8vw,132px);
  align-items: center;
}
.founder-global h2 { max-width: 13ch; }
.founder-global .founder-prose { margin-top: 36px; }
.founder-global-media { position: relative; min-width: 0; overflow: hidden; aspect-ratio: 16 / 11; }
.founder-global-media::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 104px;
  height: 4px;
  background: var(--gold);
  content: "";
}
.founder-global-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.founder-global-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 13px 18px;
  background: #061c2a;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}
.founder-global-facts { margin-top: 42px; border-top: 1px solid rgba(7,21,29,.17); }
.founder-global-facts > div { padding: 17px 0; border-bottom: 1px solid rgba(7,21,29,.17); }
.founder-global-facts dt { color: var(--gold); font-size: 15px; font-weight: 720; }
.founder-global-facts dd { margin-top: 7px; color: rgba(7,21,29,.75); font-size: 15px; line-height: 1.7; }

.founder-public { padding-block: 96px; overflow: hidden; background: var(--paper); }
.founder-public-frame { position: relative; width: min(100%,var(--founder-max)); height: 430px; margin-inline: auto; }
.founder-public-heading { position: absolute; z-index: 2; top: 64px; left: 64px; width: 430px; }
.founder-public-heading > p { font-size: 15px; }
.founder-public h2 {
  max-width: none;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(30px,2.3vw,36px);
  line-height: 1.34;
}
.founder-public-summary {
  position: absolute;
  z-index: 2;
  top: 254px;
  left: 64px;
  width: 420px;
  padding-top: 24px;
  border-top: 1px solid rgba(7,21,29,.2);
}
.founder-public-summary p {
  color: rgba(7,21,29,.68);
  font-size: 15px;
  line-height: 1.9;
}
.founder-public-photo {
  position: absolute;
  top: -96px;
  right: min(0px,calc((var(--founder-max) - 100vw) / 2));
  width: calc(58% + max(0px,(100vw - var(--founder-max)) / 2));
  height: calc(100% + 192px);
  overflow: hidden;
  clip-path: polygon(18% 0,100% 0,100% 100%,0 100%);
}
.founder-public-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.045);
  transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}
.founder-public-photo[data-aos="founder-public-photo"] {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(64px,0,0);
  transition-property: opacity,filter,transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.founder-public-photo[data-aos="founder-public-photo"].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0);
}
.founder-public-photo[data-aos="founder-public-photo"].aos-animate img { transform: scale(1); }

.founder-close {
  position: relative;
  padding: 114px 0 120px;
  overflow: hidden;
  background: #071c28;
  color: white;
}
.founder-close::before {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(18px,3.2vw,56px);
  height: 100%;
  background: #a98849;
  content: "";
}
.founder-close::after {
  position: absolute;
  top: 0;
  right: clamp(18px,3.2vw,56px);
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.16);
  content: "";
}
.founder-close-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px,1.15fr) minmax(380px,.85fr);
  gap: 90px;
  align-items: end;
}
.founder-close-inner > div > p { color: #c1a76f; }
.founder-close h2 { color: white; }
.founder-close-inner > div > span {
  display: block;
  max-width: 60ch;
  margin-top: 24px;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.85;
}
.founder-close nav { border-top: 1px solid rgba(255,255,255,.22); }
.founder-close nav a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: white;
  font-size: 16px;
  font-weight: 700;
  transition: padding-left .25s ease,color .25s ease,background-color .25s ease;
}
.founder-close nav a:hover { padding-left: 12px; background: rgba(255,255,255,.055); color: #d5bd87; }
.founder-close nav svg { width: 19px; height: 19px; stroke-width: 1.8; }
[data-aos="founder-close-copy"] {
  opacity: 0;
  transform: translate3d(-44px,0,0);
  transition-property: opacity,transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="founder-close-links"] {
  opacity: 0;
  transform: translate3d(44px,0,0);
  transition-property: opacity,transform;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
[data-aos="founder-close-copy"].aos-animate,
[data-aos="founder-close-links"].aos-animate { opacity: 1; transform: translate3d(0,0,0); }

@media (max-width: 1100px) {
  .founder-hero-panel { width: 54%; }
  .founder-hero-copy { width: min(500px, calc(45.4vw - 66px)); }
  .founder-profile-inner { grid-template-columns: minmax(300px,.78fr) minmax(440px,1.22fr); gap: 64px; }
  .founder-method { grid-template-columns: minmax(0,1fr) minmax(420px,1fr); }
  .founder-method-copy { padding-left: 52px; }
  .founder-global-inner { grid-template-columns: minmax(350px,.9fr) minmax(450px,1.1fr); gap: 60px; }
  .founder-public-heading { left: 48px; width: 380px; }
  .founder-public-summary { top: 240px; left: 48px; width: 380px; }
  .founder-close-inner { gap: 60px; }
}

@media (max-width: 900px) {
  .founder-page { --founder-gutter: 40px; }
  .founder-hero { height: 720px; margin-top: 70px; }
  .founder-hero-panel { width: 63%; }
  .founder-hero-copy { width: min(480px, calc(52.9vw - 58px)); }
  .founder-profile { padding: 110px 0 120px; }
  .founder-profile-inner { grid-template-columns: 1fr; gap: 52px; }
  .founder-profile header h2 { max-width: 17ch; }
  html[lang="en"] .founder-profile header h2 {
    max-width: 18ch;
    font-size: clamp(30px, 5.8vw, 40px);
  }
  .founder-method { grid-template-columns: 1fr; }
  .founder-method::after { display: none; }
  .founder-method-media { height: 460px; clip-path: polygon(0 0,100% 0,100% 91%,0 100%); }
  .founder-method-copy { padding: 84px var(--founder-gutter) 100px; }
  .founder-global { padding: 112px 0 122px; }
  .founder-global-inner { grid-template-columns: 1fr; gap: 58px; }
  .founder-global h2 { max-width: 16ch; }
  .founder-global-media { order: -1; }
  .founder-public { padding: 72px 40px; }
  .founder-public-frame { width: 100%; height: auto; }
  .founder-public-heading,
  .founder-public-summary,
  .founder-public-photo { position: relative; inset: auto; width: auto; }
  .founder-public-heading { width: min(100%,520px); }
  .founder-public-summary { width: min(100%,620px); margin-top: 32px; padding: 24px 0 0; border-top: 1px solid rgba(7,21,29,.18); border-left: 0; }
  .founder-public .founder-public-photo { width: calc(100% + 80px); height: 420px; margin: 52px -40px -72px; clip-path: none; }
  .founder-close-inner { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 700px) {
  .team-chairman-heading h2 { flex-wrap: wrap; }
  .team-chairman-link { min-height: 34px; margin-left: 0; padding-inline: 10px; }
  .founder-page { --founder-gutter: 24px; }
  .founder-hero { height: 780px; }
  .founder-hero-image { object-position: 56% top; }
  .founder-hero-shade { background: rgba(5,17,23,.1); }
  .founder-hero-panel {
    inset: auto 0 0;
    width: 100%;
    height: 65%;
    clip-path: polygon(0 10%,100% 0,100% 100%,0 100%);
  }
  .founder-hero-copy { width: 100%; max-width: none; justify-content: flex-end; padding-bottom: 38px; }
  .founder-breadcrumb { margin-bottom: auto; padding-top: 28px; }
  .founder-hero-kicker { margin-top: 0 !important; }
  .founder-hero h1 { font-size: 54px; }
  .founder-hero-role { font-size: 15px; }
  .founder-hero blockquote { margin-top: 26px; font-size: 24px; }
  .founder-hero-link { margin-top: 28px; }
  [data-aos="founder-hero-panel"].aos-animate { clip-path: polygon(0 10%,100% 0,100% 100%,0 100%); }
  .founder-profile { padding: 82px 0 90px; }
  .founder-profile-inner { gap: 40px; }
  .founder-profile h2,
  .founder-method h2,
  .founder-global h2,
  .founder-public h2,
  .founder-close h2 { font-size: 34px; }
  .founder-profile header h2,
  .founder-global h2 { max-width: none; }
  html[lang="en"] .founder-profile header h2 {
    max-width: 20ch;
    font-size: 30px;
    line-height: 1.22;
  }
  .founder-prose p { font-size: 15px; line-height: 1.9; }
  .founder-responsibilities { margin-top: 38px; }
  .founder-responsibilities > div { grid-template-columns: 1fr; gap: 5px; padding: 17px 0; }
  .founder-method-media { height: 300px; }
  .founder-method-copy { padding: 70px var(--founder-gutter) 82px; }
  .founder-method ol { margin-top: 40px; }
  .founder-method li { min-height: 0; padding: 19px 0; align-items: start; }
  .founder-method h3 { font-size: 17px; }
  .founder-global { padding: 82px 0 90px; }
  .founder-global-inner { gap: 44px; }
  .founder-global-media { aspect-ratio: 4 / 3; }
  .founder-global .founder-prose { margin-top: 28px; }
  .founder-global-facts { margin-top: 34px; }
  .founder-public { padding: 64px 24px; }
  .founder-public-heading { width: 100%; }
  .founder-public h2 { max-width: none; }
  .founder-public-summary { margin-top: 30px; }
  .founder-public .founder-public-photo { width: calc(100% + 48px); height: 360px; margin: 46px -24px -64px; }
  .founder-close { padding: 76px 0 82px; }
  .founder-close::before { width: 7px; }
  .founder-close::after { right: 7px; }
  .founder-close-inner { gap: 42px; }
  .founder-close nav a { min-height: 58px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos="founder-hero-image"],
  .founder-public-photo img { transform: none !important; }
  [data-aos="founder-hero-panel"] { clip-path: none !important; }
  [data-aos="founder-image-reveal"] { clip-path: none !important; }
  [data-aos="founder-public-photo"],
  [data-aos="founder-close-copy"],
  [data-aos="founder-close-links"] { opacity: 1 !important; clip-path: none !important; filter: none !important; transform: none !important; }
  [data-aos="founder-method-row"] { opacity: 1 !important; transform: none !important; }
}

/* Download hero platform buttons. */
.app-downloads {
  max-width: 530px;
  flex-wrap: nowrap;
  gap: 12px;
}
.app-download {
  position: relative;
  width: 238px;
  min-width: 0;
  min-height: 82px;
  flex: 1 1 0;
  gap: 14px;
  padding: 11px 16px 11px 12px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(3,20,31,.72);
  box-shadow: inset 0 0 24px rgba(255,255,255,.025),0 14px 30px rgba(0,0,0,.14);
  color: #fff;
  transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease,transform .25s ease;
}
.app-download:hover { background: rgba(5,29,43,.9); color: #fff; transform: translateY(-2px); }
.app-download-primary,
.app-download-android { border-color: rgba(218,174,74,.72); background: rgba(20,31,32,.8); }
.app-download-primary:hover,
.app-download-android:hover { border-color: #deb353; background: rgba(27,37,35,.94); box-shadow: inset 0 0 24px rgba(218,174,74,.07),0 16px 34px rgba(0,0,0,.18); }
.app-download-secondary,
.app-download-ios { border-color: rgba(72,166,235,.72); }
.app-download-secondary:hover,
.app-download-ios:hover { border-color: #62b9f4; background: rgba(4,31,53,.94); box-shadow: inset 0 0 24px rgba(72,166,235,.08),0 16px 34px rgba(0,0,0,.18); }
.app-download-brand { display: grid; width: 54px; height: 54px; flex: 0 0 54px; place-items: center; border: 1px solid currentColor; border-radius: 50%; box-shadow: inset 0 0 14px currentColor,0 0 10px currentColor; }
.app-download-brand img { display: block; width: 30px; height: 30px; }
.app-download-android .app-download-brand { color: rgba(222,179,83,.7); }
.app-download-ios .app-download-brand { color: rgba(76,177,244,.72); }
.app-download-copy { display: grid; min-width: 0; flex: 1 1 auto; align-content: center; gap: 4px; text-align: left; }
.app-download-copy small { color: #fff; font-size: 20px; font-weight: 700; line-height: 1.12; }
.app-download-copy strong { color: rgba(255,255,255,.9); font-size: 15px; font-weight: 500; line-height: 1.35; overflow-wrap: anywhere; }
.app-download > .app-download-arrow { width: 20px; height: 20px; flex: 0 0 20px; color: #d8aa49; stroke-width: 2.4; }

@media (max-width: 1180px) and (min-width: 901px) {
  .app-download { padding-inline: 10px 12px; gap: 10px; }
  .app-download-brand { width: 50px; height: 50px; flex-basis: 50px; }
  .app-download-brand img { width: 28px; height: 28px; }
  .app-download-copy small { font-size: 20px; }
  .app-download-copy strong { font-size: 14px; }
}

@media (max-width: 700px) {
  .app-downloads { max-width: 420px; grid-template-columns: 1fr; gap: 12px; }
  .app-download { width: 100%; min-height: 78px; padding: 9px 14px 9px 11px; }
  .app-download-brand { width: 50px; height: 50px; flex-basis: 50px; }
  .app-download-brand img { width: 28px; height: 28px; }
  .app-download-copy small { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .app-download { transition: none !important; }
  .app-download:hover { transform: none; }
}
