@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600&display=swap");
:root {
  --ink: #17191a;
  --coral: #ff5a4f;
  --grey: #62676b;
  --silver: #b9bec1;
  --bone: #f3f0e9;
  --white: #fff;
  --line: rgba(185, 190, 193, 0.23);
  --display: "Archivo Black", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  background: var(--ink);
  color: var(--bone);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.shell {
  width: min(1480px, calc(100% - 48px));
  margin: auto;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}
.num {
  color: var(--coral);
  font-weight: 600;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 25, 26, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}
.logo i {
  color: var(--coral);
  font-style: normal;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--coral);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.25s;
}
.pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.pill.ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--silver);
}
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 49.8%,
      var(--line) 50%,
      transparent 50.2%
    ),
    linear-gradient(0deg, transparent 49.8%, var(--line) 50%, transparent 50.2%);
  background-size: 180px 180px;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-main {
  position: relative;
  padding: clamp(70px, 10vw, 150px) 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  margin: 26px 0 36px;
  max-width: 1250px;
}
.hero h1 span {
  display: block;
  color: var(--coral);
}
.hero-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero-copy p {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 650px;
  color: var(--silver);
  margin: 0;
}
.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}
.ticker div {
  display: inline-block;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  animation: ticker 24s linear infinite;
}
.ticker b {
  color: var(--coral);
  padding: 0 22px;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 70px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 0;
}
.section-head p {
  color: var(--silver);
  font-size: 1.12rem;
  max-width: 620px;
  margin: 12px 0 0;
}
.ecosystem {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.eco {
  min-height: 170px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.eco:hover {
  background: var(--coral);
  color: var(--ink);
}
.eco small {
  color: var(--silver);
}
.eco:hover small {
  color: var(--ink);
}
.eco strong {
  font-size: 1.13rem;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
}
.statement {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
}
.statement em {
  font-style: normal;
  color: var(--coral);
}
.challenge-list {
  border-top: 1px solid var(--line);
}
.challenge-list div {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--silver);
}
.challenge-list span {
  color: var(--bone);
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  padding: 32px;
  min-height: 265px;
  background: #202325;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.service:hover {
  background: #282b2d;
  transform: translateY(-4px);
}
.service h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.05;
  margin: 0;
}
.service p {
  color: var(--silver);
  margin: 14px 0;
}
.service .arrow {
  color: var(--coral);
  font-size: 1.4rem;
}
.light {
  background: var(--bone);
  color: var(--ink);
}
.light .section-head p,
.light .eyebrow {
  color: var(--grey);
}
.insights {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
}
.insight {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(23, 25, 26, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.insight:first-child {
  background: var(--coral);
  border: 0;
}
.insight h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.05;
  margin: 0;
}
.insight:first-child h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}
.region {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.region:after {
  content: "EUROPE";
  position: absolute;
  right: -3vw;
  bottom: -5vw;
  font-family: var(--display);
  font-size: 20vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(185, 190, 193, 0.16);
  letter-spacing: -0.08em;
}
.region .copy {
  max-width: 780px;
  position: relative;
  z-index: 2;
}
.region h2 {
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.83;
  letter-spacing: -0.07em;
  margin: 22px 0;
}
.region p {
  font-size: 1.2rem;
  color: var(--silver);
  max-width: 600px;
}
.marketplace-card {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(36px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
}
.marketplace-card h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
  margin: 20px 0;
}
.marketplace-card h2 span {
  color: var(--coral);
}
.marketplace-card p {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 560px;
}
.footer {
  padding: 70px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0;
}
.footer-bottom {
  margin-top: 90px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--silver);
  font-size: 0.82rem;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font-size: 1.5rem;
}
.careers {
  background: var(--bone);
  color: var(--ink);
}
.careers .nav {
  background: rgba(243, 240, 233, 0.92);
  border-color: rgba(23, 25, 26, 0.15);
}
.careers .hero:before {
  background:
    linear-gradient(
      90deg,
      transparent 49.8%,
      rgba(23, 25, 26, 0.12) 50%,
      transparent 50.2%
    ),
    linear-gradient(
      0deg,
      transparent 49.8%,
      rgba(23, 25, 26, 0.12) 50%,
      transparent 50.2%
    );
  background-size: 180px 180px;
}
.careers .hero h1 span {
  color: var(--coral);
}
.careers .hero-copy p {
  color: var(--grey);
}
.careers .pill.ghost {
  color: var(--ink);
  border-color: var(--ink);
}
.careers .ticker {
  background: var(--coral);
  border: 0;
}
.search-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 10px;
  background: var(--white);
  padding: 12px;
  box-shadow: 0 15px 50px rgba(23, 25, 26, 0.1);
  max-width: 1050px;
  margin-top: 45px;
}
.search-panel input {
  border: 0;
  background: #f1f1ed;
  padding: 18px;
  min-width: 0;
}
.jobs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.job {
  background: var(--white);
  padding: 27px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border: 1px solid transparent;
  transition: 0.2s;
}
.job:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
}
.job h3 {
  font-size: 1.2rem;
  margin: 8px 0;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  padding: 5px 9px;
  background: #ecebe6;
  color: var(--grey);
  font-size: 0.75rem;
}
.salary {
  color: var(--coral);
  font-weight: 600;
}
.dark-card {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(38px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.dark-card h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 15px 0;
}
.dark-card p {
  color: var(--silver);
}
.careers .footer {
  background: var(--coral);
}
.careers .footer-bottom {
  border-color: rgba(23, 25, 26, 0.25);
  color: var(--ink);
}
@media (max-width: 900px) {
  .shell {
    width: min(100% - 28px, 1480px);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .careers .nav-links {
    background: var(--bone);
  }
  .nav-links.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .hero-copy,
  .section-head,
  .split,
  .marketplace-card {
    grid-template-columns: 1fr;
  }
  .actions {
    justify-content: flex-start;
  }
  .ecosystem {
    grid-template-columns: 1fr 1fr;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .insights {
    grid-template-columns: 1fr;
  }
  .region {
    min-height: 500px;
  }
  .jobs {
    grid-template-columns: 1fr;
  }
  .search-panel {
    grid-template-columns: 1fr;
  }
  .dark-card {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 3.7rem;
  }
  .ecosystem {
    grid-template-columns: 1fr;
  }
  section {
    padding: 85px 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

img { display: block; max-width: 100%; }
.logo-image { width: 178px; height: 48px; background: #fff; padding: 7px 12px; display: flex; align-items: center; }
.logo-image img { width: 100%; height: auto; }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(23,25,26,.96) 30%, rgba(23,25,26,.42) 67%, rgba(23,25,26,.12) 100%); z-index: 0; }
.hero-visual { position: absolute; inset: 0; background: url('assets/avant-grey-leadership.webp') center / cover no-repeat; filter: saturate(.75) contrast(1.04); }
.hero-main { z-index: 2; }
.hero-content { max-width: 1080px; }
.hero-photo h1 { font-size: clamp(4rem, 9vw, 8.4rem); max-width: 1040px; text-shadow: 0 4px 30px rgba(0,0,0,.24); }
.hero-photo .hero-copy { grid-template-columns: 1.1fr .9fr; max-width: 980px; }
.hero-photo .hero-copy p { color: #d2d4d4; }
.actions { flex-wrap: wrap; }
.people-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px,7vw,110px); align-items: center; }
.people-photo { position: relative; min-height: 660px; overflow: hidden; }
.people-photo::after { content: '02'; position: absolute; right: -12px; bottom: -55px; font-family: var(--display); font-size: 12rem; color: var(--coral); line-height: 1; mix-blend-mode: screen; opacity: .9; }
.people-photo img { width: 100%; height: 660px; object-fit: cover; filter: saturate(.72) contrast(1.06); }
.people-copy .statement { margin: 22px 0 30px; }
.people-copy > p:not(.statement) { color: var(--silver); font-size: 1.08rem; max-width: 650px; }
.intelligence-feature { display: grid; grid-template-columns: 1.35fr .65fr; background: var(--ink); color: var(--bone); margin-bottom: 18px; min-height: 430px; }
.intelligence-feature img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.intelligence-feature > div { padding: clamp(34px,5vw,72px); display: flex; flex-direction: column; justify-content: center; }
.intelligence-feature h3 { font-family: var(--display); font-size: clamp(2rem,4vw,4.5rem); line-height: .94; margin: 18px 0; }
.intelligence-feature p { color: var(--silver); font-size: 1.05rem; }
.brand-lockup { background: #fff; padding: clamp(28px,5vw,60px); display: flex; justify-content: center; border-bottom: 1px solid rgba(23,25,26,.12); }
.brand-lockup img { width: min(980px,100%); }

@media (max-width: 900px) {
  .hero-photo::after { background: linear-gradient(90deg, rgba(23,25,26,.94), rgba(23,25,26,.58)); }
  .hero-visual { background-position: 62% center; }
  .hero-photo .hero-copy, .people-grid, .intelligence-feature { grid-template-columns: 1fr; }
  .people-photo, .people-photo img { min-height: 480px; height: 480px; }
  .intelligence-feature img { min-height: 320px; }
}

@media (max-width: 520px) {
  .logo-image { width: 150px; height: 42px; }
  .hero-photo h1 { font-size: 3.2rem; }
  .hero-visual { background-position: 69% center; }
  .people-photo, .people-photo img { min-height: 400px; height: 400px; }
}

/* The supplied wordmark is designed for a light field, so the full navigation
   becomes one clean editorial strip instead of placing the logo in a white box. */
.nav, .careers .nav { background: rgba(255,255,255,.96); color: var(--ink); border-bottom-color: rgba(23,25,26,.16); }
.logo-image { width: 190px; height: auto; background: transparent; padding: 0; }
.nav .menu { color: var(--ink); }

.industry-visuals .eco { position: relative; isolation: isolate; min-height: 220px; background-image: linear-gradient(180deg,rgba(23,25,26,.28),rgba(23,25,26,.94)),var(--eco-bg); background-size: cover; background-position: var(--eco-pos,center); color: var(--bone); }
.industry-visuals .eco::after { content: ''; position: absolute; inset: 0; z-index: -1; border: 1px solid transparent; transition: .25s; }
.industry-visuals .eco small { color: var(--coral); font-weight: 600; letter-spacing: .14em; }
.industry-visuals .eco strong { max-width: 12rem; font-size: 1.22rem; line-height: 1.2; text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.industry-visuals .eco:hover { background-image: linear-gradient(180deg,rgba(255,90,79,.58),rgba(23,25,26,.88)),var(--eco-bg); color: var(--bone); transform: translateY(-3px); }
.industry-visuals .eco:hover small { color: var(--bone); }
.industry-visuals .eco:hover::after { border-color: var(--coral); }

@media (max-width: 900px) {
  .nav-links, .careers .nav-links { background: var(--white); color: var(--ink); }
  .industry-visuals .eco { min-height: 190px; }
}
