@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,700&family=Inter:wght@400;600&family=Lato:wght@400&family=Marcellus&display=swap");

:root {
  --ink: #111316;
  --muted: #7f858b;
  --line: #d8dde1;
  --paper: #ffffff;
  --soft: #f3f4f4;
  --gold: #c9a46d;
  --teal: #16394f;
  --edge: clamp(24px, 5.55vw, 80px);
  --max: 1920px;
  --body: "DM Sans", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --display: "Marcellus", "DM Sans", "HarmonyOS Sans SC", serif;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.light {
  color: #fff;
}

.site-header.dark,
.site-header:not(.light) {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

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

.desktop-nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: 110px;
  font-family: var(--display);
  font-size: 16px;
}

.desktop-nav a {
  opacity: 0.78;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  opacity: 1;
}

.lang-switch,
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch button,
.mobile-lang button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 4px 7px;
  cursor: pointer;
  opacity: 0.55;
}

.lang-switch button.active,
.mobile-lang button.active {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
}

.mobile-menu,
.menu-scrim {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.14) 55%, rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 160px));
  padding: 480px 0 14vh 80px;
}

.hero-content h1,
.page-hero h1 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
}

.home-hero .hero-content {
  display: grid;
  grid-template-columns: 300px minmax(0, 640px);
  gap: 40px;
  align-items: start;
}

.home-hero {
  min-height: min(1300px, 100vh);
}

.home-hero .hero-content h1 {
  font-size: 50px;
  text-align: right;
}

.hero-focus {
  position: absolute;
  z-index: 1;
  left: 420px;
  right: 90px;
  bottom: 92px;
  display: grid;
  grid-template-columns: 250px minmax(0, 640px);
  gap: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-focus h2 {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
}

.hero-focus p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.hero-focus p + p {
  margin-top: 22px;
}

.page-hero {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 805px;
}

.page-hero-copy,
.page-hero .coming {
  position: relative;
  z-index: 1;
}

.page-hero-copy {
  display: grid;
  grid-template-columns: 300px minmax(0, 400px);
  gap: 40px;
  align-items: start;
  width: min(860px, calc(100% - 160px));
  margin: 459px 0 0 80px;
}

.page-hero-copy h1 {
  text-align: right;
  font-size: 50px;
}

.page-hero-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.page-hero .coming {
  margin: -4px 0 0;
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 700;
  opacity: 0.94;
}

.content-band {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 96px var(--edge);
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 40px;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
}

.investment-section {
  padding-top: 96px;
}

.investment-copy {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 660px);
  gap: 210px;
  align-items: start;
}

.investment-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.22;
}

.investment-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.investment-copy h3 {
  max-width: 520px;
  margin: 68px 0 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
}

.focus-copy,
.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.focus-copy h3,
.footer-side h3,
.footer-offices h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.focus-copy p,
.about-intro p,
.article-body p,
.career-page p,
.follow-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.sector-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #111;
}

.sector-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: brightness(0.78);
  transition: transform 320ms ease, filter 320ms ease;
}

.sector-card span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
  font-family: var(--display);
  font-size: 24px;
}

.sector-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}

.section-kicker {
  margin: 0 0 32px;
  color: #137bb1;
  font-size: 14px;
}

.about-intro {
  padding-top: 98px;
  padding-bottom: 112px;
}

.about-team-layout {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 82px;
  align-items: end;
}

.about-team-copy {
  align-self: end;
}

.about-team-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.about-team-copy p + p {
  margin-top: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.figma-team-grid {
  align-items: end;
}

.figma-team-grid .team-card-0 {
  grid-column: 1 / 2;
}

.figma-team-grid .team-card:not(.team-card-0) {
  grid-row: 2;
}

.team-card {
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f2f2f2;
}

.team-card span,
.team-card small {
  display: block;
}

.team-card span {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
}

.team-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.28);
}

.team-modal.open {
  display: block;
}

.team-modal-panel {
  min-height: 100vh;
  padding: 84px var(--edge);
  background: #fff;
}

.modal-close {
  position: fixed;
  top: 34px;
  right: var(--edge);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #137bb1;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.member-detail {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.member-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.member-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.member-copy .role {
  margin: 0 0 40px;
  font-size: 24px;
}

.member-copy p,
.member-copy blockquote {
  max-width: 920px;
  font-size: 18px;
  line-height: 1.75;
}

.member-copy blockquote {
  margin: 32px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: #4c5358;
}

.member-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  gap: 36px 54px;
  padding-top: 54px;
  align-items: center;
}

.member-logo-grid div {
  min-height: 64px;
  display: grid;
  place-items: center;
}

.member-logo-grid img {
  max-height: 72px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.62;
}

.portfolio-page {
  min-height: 856px;
  padding-top: 0;
  background: #fff;
}

.portfolio-page .hero-media {
  position: relative;
  width: 100%;
  height: 305px;
  object-fit: cover;
  object-position: right top;
}

.portfolio-page h1 {
  display: none;
}

.portfolio-page .coming {
  margin: 90px 0 0;
  color: #275164;
  text-align: center;
  font-family: var(--display);
  font-size: 16px;
}

.info-news {
  padding-top: 148px;
}

.news-grid {
  display: grid;
  gap: 28px;
  max-width: 1120px;
}

.news-card {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 28px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 500 / 236;
  object-fit: cover;
}

.news-card time,
.article-head time,
.related-card time {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.news-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 400;
}

.news-card p {
  margin: 0;
  color: #9aa0a6;
  line-height: 1.55;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 52px 0 36px;
  color: #575f66;
  font-family: "Inter", var(--body);
}

.pager b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2398c9;
  color: #fff;
}

.join-follow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding-top: 28px;
}

.join-card,
.follow-card {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.join-card h2,
.follow-card h2,
.related h2,
.career-page h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
}

.position-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.position-card + .position-card {
  background: #f7f7f7;
}

.position-card i {
  grid-column: 2;
  grid-row: 1 / 3;
  font-style: normal;
  font-size: 28px;
}

.position-card span,
.position-card small {
  display: block;
}

.position-card span {
  font-size: 22px;
  font-weight: 700;
}

.position-card small {
  margin-top: 8px;
  color: var(--muted);
}

.follow-card {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 72px;
  align-items: stretch;
}

.follow-card figure {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 36px 48px;
  background: #eaf2f6;
}

.follow-card img {
  width: 320px;
}

.follow-card figcaption {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.follow-card figcaption span {
  display: block;
  color: var(--muted);
}

.article-page,
.career-page {
  padding-top: 150px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--muted);
}

.article-head {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: start;
  gap: 32px;
  margin-bottom: 34px;
}

.article-head h1,
.career-page h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.04;
}

.article-hero {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-body {
  max-width: 900px;
  margin: 52px auto 0;
}

.article-body p + p {
  margin-top: 22px;
}

.article-body figure {
  margin: 42px 0;
}

.article-body figure img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.related {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 14px;
}

.related-card span {
  font-weight: 700;
}

.career-page {
  max-width: 980px;
}

.career-page section {
  margin-top: 48px;
}

.apply-note {
  margin-top: 48px !important;
  font-weight: 700;
}

.static-cta {
  margin-top: 28px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 13px 28px;
  cursor: default;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 72px var(--edge);
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-brand img {
  width: 124px;
}

.footer-main {
  display: grid;
  gap: 80px;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-side {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px 64px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.25;
}

.footer-side h3 {
  color: #2398c9;
  font-weight: 400;
}

.footer-qr {
  width: 70px;
  height: 70px;
}

@media (max-width: 1023px) {
  :root {
    --edge: 24px;
  }

  .site-header {
    height: 72px;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .brand img {
    width: 102px;
  }

  .desktop-nav,
  .site-header > .lang-switch {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    display: block;
    width: min(86vw, 390px);
    height: 100vh;
    padding: 24px;
    background: #fff;
    transform: translateX(105%);
    transition: transform 260ms ease;
  }

  .menu-open .mobile-menu {
    transform: translateX(0);
  }

  .menu-scrim {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    pointer-events: none;
    opacity: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: opacity 260ms ease;
  }

  .menu-open .menu-scrim {
    pointer-events: auto;
    opacity: 1;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-head img {
    width: 150px;
  }

  .menu-close {
    border: 0;
    background: transparent;
    font-size: 32px;
  }

  .mobile-menu nav {
    display: grid;
    gap: 28px;
    margin-top: 80px;
    font-family: var(--display);
    font-size: 28px;
  }

  .mobile-lang {
    margin-top: 48px;
  }

  .hero-content {
    width: calc(100% - var(--edge) * 2);
    padding: 24vh 0 12vh var(--edge);
  }

  .home-hero .hero-content,
  .page-hero-copy,
  .hero-focus,
  .investment-copy,
  .about-team-layout {
    display: block;
    width: calc(100% - var(--edge) * 2);
    margin: 0;
  }

  .home-hero .hero-content h1,
  .page-hero-copy h1 {
    text-align: left;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-focus {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 34px var(--edge) 0;
    padding-top: 18px;
  }

  .hero-focus h2 {
    margin-bottom: 16px;
  }

  .hero-focus p {
    font-size: 15px;
  }

  .page-hero {
    min-height: 72vh;
  }

  .content-band {
    padding: 72px var(--edge);
  }

  .focus-copy,
  .about-columns,
  .join-follow,
  .follow-card,
  .article-head,
  .site-footer,
  .footer-side,
  .footer-offices,
  .member-detail {
    grid-template-columns: 1fr;
  }

  .sector-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .investment-copy h3 {
    margin-top: 40px;
  }

  .about-team-copy {
    margin-bottom: 40px;
  }

  .news-card {
    display: block;
  }

  .news-card img {
    margin-bottom: 18px;
  }

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

  .team-modal-panel {
    padding: 76px var(--edge);
  }

  .modal-close {
    top: 22px;
    right: 20px;
  }

  .member-detail {
    gap: 28px;
  }

  .member-photo {
    max-width: 260px;
  }

  .member-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .article-page,
  .career-page,
  .info-news {
    padding-top: 112px;
  }

  .article-head {
    gap: 12px;
  }

  .follow-card {
    gap: 28px;
  }

  .follow-card figure {
    width: min(240px, 100%);
  }

  .site-footer {
    gap: 48px;
    padding: 54px var(--edge);
  }
}

@media (max-width: 540px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .page-hero .coming {
    font-size: 48px;
  }
}
