:root {
  --ink: #091525;
  --navy: #07111f;
  --blue: #1665d8;
  --cyan: #50d8f5;
  --muted: #5b6c7f;
  --light: #eef4f8;
  --line: #d8e3eb;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font:
    400 16px/1.72 "DM Sans",
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: #fff;
}
.skip-link:focus {
  left: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(9, 21, 37, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 56px));
  min-height: 88px;
  margin: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font:
    700 1.08rem/1.05 "Space Grotesk",
    Arial,
    sans-serif;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(8, 45, 105, 0.18));
}
.brand small {
  display: block;
  margin-top: 5px;
  color: #718094;
  font:
    500 0.64rem "DM Sans",
    Arial,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-header nav a:hover,
.site-header nav .active {
  color: var(--blue);
}
.site-header .nav-button {
  padding: 12px 17px;
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
}
a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 19px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow:before {
  width: 27px;
  height: 2px;
  background: currentColor;
  content: "";
}
.article-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.article-hero:before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
}
.article-hero__glow {
  position: absolute;
  top: -360px;
  right: -140px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(80, 216, 245, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 95px rgba(80, 216, 245, 0.025),
    0 0 0 190px rgba(80, 216, 245, 0.014);
}
.article-hero__inner {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 56px));
  margin: auto;
  padding: 80px 0 105px;
}
.back-link {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 65px;
  color: #9fb0c2;
  font-size: 0.84rem;
  font-weight: 700;
}
.back-link:hover {
  color: var(--cyan);
}
.article-hero .eyebrow {
  color: var(--cyan);
}
.article-hero h1 {
  max-width: 950px;
  margin: 0;
  font:
    600 clamp(3.7rem, 7vw, 7rem)/0.95 "Space Grotesk",
    Arial,
    sans-serif;
  letter-spacing: -0.067em;
}
.article-standfirst {
  max-width: 770px;
  margin: 31px 0 34px;
  color: #bdcada;
  font-size: 1.25rem;
}
.article-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: #8fa2b7;
  font-size: 0.78rem;
  font-weight: 600;
}
.article-meta span + span {
  position: relative;
  padding-left: 20px;
}
.article-meta span + span:before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}
.article-image {
  width: min(var(--max), calc(100% - 56px));
  margin: -42px auto 0;
  border: 10px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 75px rgba(15, 40, 68, 0.15);
}
.article-image img {
  display: block;
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}
.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 90px;
  width: min(1070px, calc(100% - 56px));
  margin: 0 auto;
  padding: 105px 0 120px;
}
.article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}
.article-aside > p {
  margin: 0 0 15px;
  font:
    700 0.75rem "Space Grotesk",
    Arial,
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-aside ol {
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
  counter-reset: item;
  border-top: 1px solid var(--line);
}
.article-aside li {
  counter-increment: item;
  border-bottom: 1px solid var(--line);
}
.article-aside li a {
  display: block;
  padding: 12px 0;
  color: #627386;
  font-size: 0.79rem;
}
.article-aside li a:before {
  content: counter(item, decimal-leading-zero) "  ";
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 700;
}
.share-note {
  padding: 22px;
  border-radius: 12px;
  background: var(--light);
}
.share-note strong {
  font-family: "Space Grotesk", Arial, sans-serif;
}
.share-note p {
  margin: 7px 0;
  color: var(--muted);
  font-size: 0.81rem;
}
.share-note a {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
}
.article-body {
  min-width: 0;
}
.article-body .lead {
  margin: 0 0 55px;
  color: #25394e;
  font:
    500 1.45rem/1.55 "Space Grotesk",
    Arial,
    sans-serif;
}
.article-body section {
  margin-bottom: 64px;
}
.article-body h2 {
  margin: 0 0 24px;
  font:
    600 clamp(2rem, 3.5vw, 3.1rem)/1.08 "Space Grotesk",
    Arial,
    sans-serif;
  letter-spacing: -0.045em;
}
.article-body h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
}
.article-body p {
  margin: 0 0 20px;
  color: #405267;
}
.article-body a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body ul {
  margin: 4px 0 23px;
  padding-left: 23px;
  color: #405267;
}
.article-body li {
  margin: 8px 0;
  padding-left: 5px;
}
.article-body blockquote {
  margin: 38px 0;
  padding: 32px 35px;
  border-left: 4px solid var(--cyan);
  background: var(--light);
}
.article-body blockquote p {
  margin: 0;
  color: #20364d;
  font:
    500 1.25rem/1.55 "Space Grotesk",
    Arial,
    sans-serif;
}
.article-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 35px 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.article-points article {
  padding: 24px;
  background: #fff;
}
.article-points span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
}
.article-points h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
}
.article-points p {
  margin: 0;
  font-size: 0.82rem;
}
.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-footer > div span {
  display: block;
  color: #78889a;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.article-footer > div strong {
  font-family: "Space Grotesk", Arial, sans-serif;
}
.article-footer > div p {
  margin: 4px 0 0;
  font-size: 0.82rem;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 14px 19px;
  border-radius: 9px;
  color: #fff !important;
  background: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none !important;
}
.related-services {
  padding: 105px 28px;
  background: var(--light);
}
.related-services__inner {
  width: min(var(--max), 100%);
  margin: auto;
}
.related-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 45px;
}
.related-heading h2 {
  max-width: 720px;
  margin: 0;
  font:
    600 clamp(2.5rem, 4vw, 4.2rem)/1.03 "Space Grotesk",
    Arial,
    sans-serif;
  letter-spacing: -0.055em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-grid > a {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.related-grid > a:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(22, 49, 79, 0.09);
}
.related-grid span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
}
.related-grid h3 {
  margin: 30px 0 10px;
  font:
    600 1.24rem "Space Grotesk",
    Arial,
    sans-serif;
}
.related-grid p {
  min-height: 50px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 0.88rem;
}
.related-grid strong {
  color: var(--blue);
  font-size: 0.79rem;
}
.site-footer {
  padding: 35px 28px;
  color: #fff;
  background: #050c16;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  width: min(var(--max), 100%);
  margin: auto;
}
.brand--footer img {
  width: 56px;
  height: 56px;
}
.site-footer p {
  color: #8999aa;
  font-size: 0.84rem;
}
.footer-links {
  display: flex;
  gap: 22px;
  color: #a6b2bf;
  font-size: 0.84rem;
}
@media (max-width: 960px) {
  .site-header nav a:not(.nav-button) {
    display: none;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .article-aside {
    position: static;
  }
  .article-aside ol {
    columns: 2;
  }
  .share-note {
    max-width: 400px;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-grid > a:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 650px) {
  .site-header__inner {
    width: calc(100% - 40px);
    min-height: 76px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  .brand > span {
    font-size: 0.98rem;
  }
  .site-header .nav-button {
    padding: 10px 12px;
    font-size: 0.78rem;
  }
  .article-hero__inner {
    width: calc(100% - 40px);
    padding: 58px 0 78px;
  }
  .back-link {
    margin-bottom: 45px;
  }
  .article-hero h1 {
    font-size: 3.35rem;
  }
  .article-standfirst {
    font-size: 1.08rem;
  }
  .article-meta {
    gap: 12px;
    flex-direction: column;
  }
  .article-meta span + span {
    padding-left: 0;
  }
  .article-meta span + span:before {
    display: none;
  }
  .article-image {
    width: calc(100% - 28px);
    margin-top: -30px;
    border-width: 6px;
  }
  .article-layout {
    width: calc(100% - 40px);
    padding: 70px 0 85px;
  }
  .article-aside ol {
    columns: 1;
  }
  .article-body .lead {
    font-size: 1.23rem;
  }
  .article-body blockquote {
    padding: 25px;
  }
  .article-points {
    grid-template-columns: 1fr;
  }
  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .button {
    width: 100%;
    justify-content: center;
  }
  .related-services {
    padding: 75px 20px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-grid > a:last-child {
    grid-column: auto;
  }
  .related-grid p {
    min-height: auto;
  }
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .related-grid > a {
    transition: none;
  }
}
