@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --navy: #072847;
  --deep: #061e35;
  --orange: #f58035;
  --paper: #f4f6f7;
  --ink: #142e44;
  --muted: #5b6b79;
  --line: #dce3e8;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.65 "DM Sans",
    Arial,
    sans-serif;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
p {
  margin: 0 0 1.3rem;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.13;
  letter-spacing: -0.045em;
  margin: 0;
  font-weight: 500;
}
h1 {
  font-size: clamp(3rem, 5.9vw, 5.5rem);
}
h2 {
  font-size: clamp(2rem, 3.7vw, 3.45rem);
}
h3 {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}
.wrap {
  max-width: 1320px;
  padding: 0 56px;
  margin: auto;
}
.skip {
  position: absolute;
  top: -80px;
  background: white;
  padding: 15px;
  z-index: 100;
}
.skip:focus {
  top: 0;
}
.topline {
  background: var(--deep);
  color: #b9cbd9;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.topline .wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topline a {
  color: white;
}
.header {
  background: var(--navy);
  color: white;
  border-bottom: 1px solid #ffffff1a;
  position: relative;
  z-index: 20;
}
.navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 101px;
  gap: 25px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 58px;
  width: 58px;
  object-fit: cover;
}
.brandtext {
  font:
    600 27px/1 Manrope,
    sans-serif;
  letter-spacing: -1px;
}
.brandtext span {
  color: var(--orange);
}
.brandtext small {
  display: block;
  font:
    500 10px/1.3 "DM Sans",
    sans-serif;
  letter-spacing: 3.8px;
  margin-top: 9px;
}
.accreditation {
  margin-top: 28px;
  width: 350px;
  max-width: 100%;
}
.accreditation img {
  display: block;
  width: 100%;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 14px;
}
.nav > a {
  padding: 12px 0;
  position: relative;
}
.nav > a:not(.btn):after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width 0.2s;
}
.nav > a:hover:after,
.nav > a.active:after {
  width: 100%;
}
.nav .btn {
  padding: 12px 21px;
  font-size: 14px;
}
.menu {
  display: none;
  background: none;
  color: white;
  border: 1px solid #ffffff66;
  padding: 8px 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--orange);
  color: #072847;
  padding: 16px 24px;
  font-weight: 650;
  font-size: 15px;
  line-height: 1.4;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn:hover {
  background: #ff9b57;
  transform: translateY(-2px);
}
.btn.secondary {
  background: transparent;
  border-color: #ffffff70;
  color: white;
}
.btn.secondary:hover {
  background: #ffffff0b;
}
.btn.outline {
  background: none;
  border-color: var(--line);
  color: var(--ink);
}
.btn.outline:hover {
  background: var(--paper);
}
.arrow {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.eyebrow:before {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--orange);
}
.hero {
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.27fr 1fr;
  gap: 60px;
  padding-top: 68px;
  padding-bottom: 60px;
  align-items: center;
}
.hero h1 {
  max-width: 750px;
  line-height: 1.075;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero .intro {
  font-size: 18px;
  line-height: 1.7;
  color: #c7d3df;
  max-width: 520px;
  margin: 27px 0 30px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 12px;
  color: #a9bdcc;
  letter-spacing: 0.04em;
  margin: 33px 0 0;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  background: #e8edf0;
  overflow: hidden;
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 23px 28px;
  background: #061e35ec;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  gap: 25px;
}
.visual-caption small {
  display: block;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: #aabecd;
  margin-bottom: 4px;
}
.sectorband {
  background: var(--navy);
  color: #bccbd7;
  border-top: 1px solid #ffffff20;
}
.sectorband .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  padding-bottom: 23px;
  font-size: 13px;
}
.sectorband b {
  color: white;
  font-weight: 500;
}
.section {
  padding: 91px 0;
}
.section.paper {
  background: var(--paper);
}
.section.dark {
  background: var(--navy);
  color: white;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 42px;
}
.section-head h2 {
  max-width: 650px;
}
.section-head p {
  max-width: 430px;
  color: var(--muted);
  margin: 0;
}
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
  white-space: nowrap;
}
.textlink:hover {
  color: #b34d12;
  border-color: var(--orange);
}
.audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.audience {
  padding: 42px;
  background: white;
  border: 1px solid var(--line);
  position: relative;
}
.audience .index {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 45px;
}
.audience h3 {
  font-size: 31px;
  margin-bottom: 20px;
}
.audience p {
  color: var(--muted);
  max-width: 430px;
}
.audience .textlink {
  margin-top: 18px;
}
.audience.alt {
  background: #e9eff4;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}
.split p {
  color: var(--muted);
}
.dark p {
  color: #b9cad8;
}
.statement {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.4;
  letter-spacing: -0.035em;
}
.services {
  border-top: 1px solid var(--line);
  margin-top: 35px;
}
.service {
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service > span {
  color: #788b9a;
  font-size: 13px;
}
.service p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}
.joblist {
  border-top: 1px solid var(--line);
}
.job {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.85fr 38px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 28px 8px;
  transition: background 0.2s;
}
.job:hover {
  background: #eaf0f4;
}
.job h3 {
  font-size: 21px;
}
.job small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.035em;
  color: var(--muted);
  margin: 6px 0 0;
}
.job .salary {
  font-weight: 550;
  font-size: 15px;
}
.job .place {
  font-size: 15px;
}
.circle {
  border: 1px solid #bdcbd6;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}
.job:hover .circle {
  background: var(--orange);
  border-color: var(--orange);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.insight-card {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
  background: white;
}
.insight-card:hover {
  transform: translateY(-5px);
}
.insight-art {
  height: 170px;
  background: #e8eef3;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  color: var(--navy);
  font-family: Manrope;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.insight-card:nth-child(3n + 2) .insight-art {
  background: var(--navy);
  color: white;
}
.insight-card:nth-child(3n + 3) .insight-art {
  background: #f7dfce;
}
.insight-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.meta {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 13px;
}
.insight-body h3 {
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 18px;
}
.insight-body p {
  font-size: 14px;
  color: var(--muted);
}
.insight-body .textlink {
  align-self: flex-start;
  margin-top: auto;
}
.cta {
  padding: 66px 0;
  background: var(--orange);
  color: var(--navy);
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta h2 {
  max-width: 730px;
}
.cta .btn {
  background: var(--navy);
  color: white;
}
.cta p {
  margin: 18px 0 0;
}
.footer {
  background: var(--deep);
  color: white;
  padding: 65px 0 25px;
}
.footgrid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: 35px;
}
.footgrid > div > p {
  color: #9db4c6;
  font-size: 14px;
  max-width: 290px;
  margin-top: 20px;
}
.footgrid h4 {
  font: 500 13px "DM Sans";
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  color: #8fa9bd;
}
.footgrid a:not(.brand) {
  display: block;
  font-size: 14px;
  margin: 10px 0;
}
.footgrid a:hover {
  color: var(--orange);
}
.footbase {
  border-top: 1px solid #ffffff20;
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #8fa9bd;
  font-size: 12px;
  gap: 25px;
}
.pagehero {
  background: var(--navy);
  color: white;
  padding: 67px 0 74px;
}
.pagehero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}
.pagehero .lead {
  max-width: 670px;
  font-size: 18px;
  color: #bccddb;
  margin-top: 25px;
  margin-bottom: 0;
}
.breadcrumb {
  color: #9cb3c6;
  font-size: 12px;
  margin-bottom: 35px;
}
.filters {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 30px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.field label {
  font-size: 14px;
  font-weight: 550;
}
.form-checkgroup {
  border: 1px solid #b9c8d3;
  padding: 18px;
  min-width: 0;
}
.form-checkgroup.full {
  grid-column: 1 / -1;
}
.form-checkgroup legend {
  padding: 0 6px;
  font-size: 14px;
  font-weight: 550;
}
.form-checkgroup label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 15px;
  cursor: pointer;
}
.form-checkgroup input {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--navy);
  flex: 0 0 auto;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #b9c8d3;
  background: white;
  color: var(--ink);
  border-radius: 0;
  min-width: 0;
}
textarea {
  min-height: 145px;
  resize: vertical;
}
.count {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.empty {
  padding: 55px;
  background: var(--paper);
  text-align: center;
}
.empty h3 {
  margin-bottom: 15px;
}
.notice {
  font-size: 13px;
  color: var(--muted);
  padding: 15px 18px;
  background: var(--paper);
  border-left: 2px solid var(--orange);
  margin: 25px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.contact-layout h2 {
  margin-bottom: 25px;
}
.contact-layout .phone {
  display: block;
  font-size: 30px;
  letter-spacing: -1px;
  margin: 10px 0;
}
.contact-info {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.contact-info p {
  color: var(--muted);
  font-size: 15px;
}
.formbox {
  background: var(--paper);
  padding: 40px;
}
.formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.full {
  grid-column: 1/-1;
}
.formbox h3 {
  margin-bottom: 26px;
}
.formbox .btn {
  margin-top: 24px;
}
.formbox .notice {
  padding-left: 0;
  border: 0;
  margin-bottom: 0;
}
.form-feedback {
  margin-top: 18px;
  font-size: 14px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 75px;
}
.prose {
  max-width: 780px;
}
.prose h2 {
  font-size: 29px;
  margin: 35px 0 18px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.prose h3 {
  font-size: 23px;
  margin: 28px 0 14px;
  line-height: 1.4;
}
.prose p,
.prose li {
  color: #475e70;
  line-height: 1.9;
}
.prose ul {
  padding-left: 22px;
}
.aside {
  background: var(--paper);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 30px;
}
.aside h3 {
  margin-bottom: 20px;
}
.aside p {
  font-size: 14px;
  color: var(--muted);
}
.aside .btn {
  width: 100%;
  gap: 12px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-bottom: 35px;
}
.facts span {
  font-size: 12px;
  color: var(--muted);
  display: block;
}
.facts strong {
  font-weight: 550;
}
.pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.pills button {
  border: 1px solid var(--line);
  background: white;
  padding: 10px 18px;
  font-size: 14px;
}
.pills button[aria-pressed="true"] {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.value-grid h3 {
  margin-bottom: 18px;
}
.value-grid p {
  color: var(--muted);
}
.stat {
  font-size: 65px;
  line-height: 1.1;
  color: var(--orange);
  letter-spacing: -4px;
}
.address {
  font-style: normal;
}
.article-source {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 30px;
}
.article-source a {
  text-decoration: underline;
}
.notfound {
  text-align: center;
  padding: 110px 25px;
}
.notfound h1 {
  margin-bottom: 25px;
}
@media (min-width: 1450px) {
  .hero-grid {
    padding-top: 85px;
    padding-bottom: 80px;
  }
  .hero-visual {
    min-height: 480px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
  .nav {
    gap: 17px;
  }
  .brandtext {
    font-size: 23px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .split {
    gap: 45px;
  }
  .navrow {
    gap: 15px;
  }
  .nav .btn {
    padding: 12px;
  }
  .contact-layout {
    gap: 45px;
  }
  .footgrid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footgrid > div:last-child {
    grid-column: 1/-1;
  }
  .hero-visual {
    min-height: 420px;
  }
}
@media (max-width: 850px) {
  .menu {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-top: 1px solid #ffffff30;
  }
  .nav.open {
    display: flex;
  }
  .navrow {
    min-height: 86px;
  }
  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 25px;
    padding-top: 48px;
    padding-bottom: 45px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero .intro {
    font-size: 16px;
  }
  .hero-visual {
    min-height: 380px;
  }
  .visual-caption {
    padding: 16px;
    font-size: 13px;
  }
  .hero .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .sectorband .wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 25px;
  }
  .section {
    padding: 65px 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .audience {
    padding: 30px;
  }
  .audience h3 {
    font-size: 26px;
  }
  .cards {
    gap: 15px;
  }
  .insight-body {
    padding: 20px;
  }
  .insight-body h3 {
    font-size: 19px;
  }
  .insight-art {
    font-size: 27px;
    padding: 20px;
  }
  .job {
    gap: 18px;
    grid-template-columns: 1.5fr 0.7fr 1fr 32px;
  }
  .job h3 {
    font-size: 19px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .aside {
    position: static;
  }
  .value-grid {
    gap: 25px;
  }
  .cta h2 {
    font-size: 34px;
  }
}
@media (max-width: 600px) {
  .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .topline .wrap {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
  .topline .wrap > span {
    max-width: 210px;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brandtext {
    font-size: 25px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 42px;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 10.8vw, 4rem);
  }
  .hero .actions {
    flex-direction: row;
    align-items: stretch;
  }
  .hero .btn {
    padding: 14px 17px;
    gap: 16px;
    font-size: 14px;
  }
  .hero-note {
    margin-top: 23px;
  }
  .hero-visual {
    min-height: 300px;
    max-height: 350px;
  }
  .hero-visual > img {
    object-position: center 48%;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
  }
  .sectorband .wrap {
    gap: 10px 20px;
    font-size: 11px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .sectorband .wrap > span:first-child {
    width: 100%;
  }
  .section {
    padding: 55px 0;
  }
  .audiences,
  .split,
  .cards,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .audience {
    padding: 29px;
  }
  .audience .index {
    margin-bottom: 25px;
  }
  .split {
    gap: 30px;
  }
  .service {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }
  .service p {
    grid-column: 2;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .job {
    grid-template-columns: 1fr 35px;
    gap: 7px 12px;
    padding: 22px 0;
  }
  .job > div:first-child {
    grid-column: 1;
  }
  .job .place,
  .job .salary {
    grid-column: 1;
    font-size: 14px;
  }
  .job .circle {
    grid-column: 2;
    grid-row: 1/4;
  }
  .job small {
    font-size: 11px;
  }
  .insight-art {
    height: 130px;
    font-size: 33px;
  }
  .insight-body {
    padding: 26px;
  }
  .insight-body h3 {
    font-size: 23px;
  }
  .cta .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footgrid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footgrid > div:first-child {
    grid-column: 1/-1;
  }
  .footbase {
    flex-direction: column;
    gap: 10px;
  }
  .pagehero {
    padding: 42px 0 48px;
  }
  .pagehero h1 {
    font-size: 42px;
  }
  .pagehero .lead {
    font-size: 16px;
  }
  .filters {
    flex-direction: column;
    align-items: stretch;
  }
  .formbox {
    padding: 25px;
  }
  .formgrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .facts {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .formgrid .full {
    grid-column: auto;
  }
  .prose h2 {
    font-size: 26px;
  }
  .contact-layout {
    gap: 35px;
  }
  .topline a {
    white-space: nowrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
.prose p {
  white-space: pre-line;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-feedback.success {
  padding: 18px;
  background: #e7f2ea;
  color: #245735;
  border-left: 3px solid #398651;
}
.form-feedback.error {
  padding: 18px;
  background: #fff0ed;
  color: #883528;
  border-left: 3px solid #b44835;
}
.formbox button:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.insight-art {
  overflow-wrap: anywhere;
}
