:root {
  --article-width: 750px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #031014;
  background: var(--cyan-soft);
  font-size: 13px;
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header.is-condensed {
  min-height: 64px;
  background: rgba(2, 7, 10, 0.97);
}

.header-nav a.is-current {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.article-page {
  min-height: 100vh;
  color: #101820;
  background: #f5f8f9;
}

.article-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #02070a;
}

.article-hero-glow {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 49%, rgba(37, 217, 231, 0.13), transparent 18%),
    radial-gradient(circle at 82% 49%, rgba(37, 217, 231, 0.045), transparent 42%);
}

.article-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: calc(var(--header-height) + 36px) 0 58px;
}

.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 650;
}

.article-breadcrumbs a {
  transition: color 160ms ease;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus-visible {
  color: var(--cyan-soft);
}

.article-hero-copy {
  max-width: 920px;
  margin-top: 34px;
  animation: article-copy-enter 720ms var(--ease-out) both;
}

.article-topic {
  margin: 0;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 920px;
  margin: 22px 0 0;
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.article-title-line {
  display: block;
  white-space: nowrap;
}

.article-subtitle {
  max-width: 920px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 480;
  line-height: 1.45;
  letter-spacing: -0.015em;
  text-wrap: balance;
  white-space: nowrap;
}

.article-subtitle--wrap {
  white-space: normal;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 590;
}

.article-meta a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease;
}

.article-meta a:hover,
.article-meta a:focus-visible {
  color: var(--cyan-soft);
}

.article-orbit {
  position: absolute;
  z-index: -1;
  top: 52%;
  right: clamp(-170px, -6vw, -76px);
  width: clamp(390px, 38vw, 550px);
  aspect-ratio: 1;
  opacity: 0.56;
  transform: translateY(-50%);
  pointer-events: none;
  animation: article-orbit-enter 1100ms var(--ease-out) both;
}

.article-orbit-ring {
  position: absolute;
  inset: 50%;
  display: block;
  border: 1px solid rgba(168, 245, 247, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.article-orbit-ring--outer {
  width: 100%;
  height: 100%;
}

.article-orbit-ring--middle {
  width: 69%;
  height: 69%;
  border-color: rgba(168, 245, 247, 0.24);
}

.article-orbit-ring--inner {
  width: 35%;
  height: 35%;
  border-color: rgba(168, 245, 247, 0.32);
}

.article-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c9fcff;
  box-shadow:
    0 0 22px rgba(37, 217, 231, 0.95),
    0 0 80px rgba(37, 217, 231, 0.36);
  transform: translate(-50%, -50%);
  animation: article-core-pulse 3.4s ease-in-out infinite;
}

.article-orbit-point {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(37, 217, 231, 0.82);
}

.article-orbit-point--one {
  top: 17%;
  left: 33%;
}

.article-orbit-point--two {
  right: 10%;
  bottom: 31%;
  width: 5px;
  height: 5px;
  opacity: 0.75;
}

.article-surface {
  padding: clamp(72px, 8vw, 112px) var(--page-gutter) clamp(100px, 10vw, 152px);
  background:
    linear-gradient(180deg, rgba(229, 240, 242, 0.72), transparent 260px),
    #f7fafb;
}

.article-content {
  width: min(var(--article-width), 100%);
  margin: 0 auto;
  color: #26333c;
  font-size: 1.0625rem;
  font-weight: 470;
  line-height: 1.68;
}

.article-content p {
  margin: 0;
}

.article-content p + p,
.article-content ul + p,
.article-content ol + p,
.article-content .article-table-wrap + p,
.article-content p + ul,
.article-content p + ol,
.article-content p + .article-table-wrap {
  margin-top: 30px;
}

.article-content strong {
  color: #101820;
  font-weight: 720;
}

.article-content h2 {
  margin: 64px 0 0;
  color: #101820;
  font-size: clamp(1.625rem, 2.2vw, 2rem);
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-wrap: balance;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.article-content h2 + p,
.article-content h2 + ul,
.article-content h2 + ol,
.article-content h2 + .article-table-wrap {
  margin-top: 22px;
}

.article-content h2 + .article-highlight {
  margin-top: 26px !important;
}

.article-content h3 {
  margin: 40px 0 0;
  color: #101820;
  font-size: clamp(1.1875rem, 1.6vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.article-content h3 + p,
.article-content h3 + ul,
.article-content h3 + ol {
  margin-top: 16px;
}

.article-lead {
  color: #12232c;
  font-size: clamp(1.3125rem, 1.65vw, 1.4375rem);
  font-weight: 540;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.article-highlight {
  margin-top: 44px !important;
  padding: 28px 30px;
  border: 1px solid rgba(8, 127, 146, 0.16);
  border-radius: 14px;
  background: rgba(225, 241, 243, 0.66);
  font-size: clamp(1.125rem, 1.4vw, 1.25rem);
  line-height: 1.52;
}

.article-highlight--accent {
  color: #ffffff;
  border-color: #0b313a;
  background: #0b313a;
}

.article-highlight--accent strong {
  color: #ffffff;
}

.article-highlight--numbers {
  border-color: rgba(37, 169, 185, 0.22);
  background: #edf6f7;
}

.article-content > p a,
.article-content > ul a,
.article-content > ol a,
.article-table-wrap a {
  color: #08788a;
  font-weight: 610;
  text-decoration-line: underline;
  text-decoration-color: rgba(8, 120, 138, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.article-content > p a:hover,
.article-content > p a:focus-visible,
.article-content > ul a:hover,
.article-content > ul a:focus-visible,
.article-content > ol a:hover,
.article-content > ol a:focus-visible,
.article-table-wrap a:hover,
.article-table-wrap a:focus-visible {
  color: #045663;
  text-decoration-color: currentColor;
}

.article-content code {
  padding: 0.12em 0.38em;
  border: 1px solid rgba(8, 120, 138, 0.14);
  border-radius: 5px;
  color: #17323a;
  background: rgba(222, 238, 240, 0.74);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 13px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.article-content ul li,
.article-content ol li {
  position: relative;
  padding-left: 30px;
}

.article-content ul li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a91a5;
  box-shadow: 0 0 0 5px rgba(10, 145, 165, 0.09);
}

.article-content ol {
  counter-reset: article-steps;
}

.article-content ol li {
  min-height: 28px;
  padding-left: 42px;
  counter-increment: article-steps;
}

.article-content ol li::before {
  content: counter(article-steps);
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #075f6d;
  background: rgba(10, 145, 165, 0.11);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

.article-table-wrap {
  width: 100%;
  margin-bottom: 0;
  overflow-x: auto;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(19, 56, 64, 0.06);
  -webkit-overflow-scrolling: touch;
}

.article-table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: #26333c;
  font-size: 0.9375rem;
  line-height: 1.52;
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 17px 18px;
  border-right: 1px solid rgba(16, 24, 32, 0.09);
  border-bottom: 1px solid rgba(16, 24, 32, 0.09);
  text-align: left;
  vertical-align: top;
}

.article-table-wrap th {
  color: #ffffff;
  background: #0b313a;
  font-size: 0.8125rem;
  font-weight: 720;
  line-height: 1.35;
}

.article-table-wrap tr:last-child td {
  border-bottom: 0;
}

.article-table-wrap th:last-child,
.article-table-wrap td:last-child {
  border-right: 0;
}

.report-download {
  position: relative;
  margin-top: 58px;
  padding: clamp(30px, 4vw, 44px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  background: #07131a;
}

.report-download::after {
  content: "PDF";
  position: absolute;
  right: -10px;
  bottom: -42px;
  color: rgba(168, 245, 247, 0.045);
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.report-download p {
  position: relative;
  z-index: 1;
}

.report-download .report-kicker {
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-download a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.7vw, 1.4375rem);
  font-weight: 680;
  line-height: 1.24;
  letter-spacing: -0.03em;
  text-decoration-line: underline;
  text-decoration-color: rgba(37, 217, 231, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease,
    transform 180ms var(--ease-out);
}

.report-download a::after {
  content: "↗";
  color: var(--cyan);
  font-size: 20px;
  text-decoration: none;
}

.report-download a:hover,
.report-download a:focus-visible {
  color: var(--cyan-soft);
  text-decoration-color: currentColor;
  transform: translateY(-2px);
}

.report-download p:last-child {
  max-width: 650px;
  margin-top: 24px;
  line-height: 1.58;
}

.article-related {
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(16, 24, 32, 0.12);
}

.article-related .article-related-kicker {
  color: #08788a;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-related h2 {
  margin-top: 12px;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
}

.article-related h2 + p {
  margin-top: 14px;
}

.article-related > a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #075f6d;
  font-size: 0.9375rem;
  font-weight: 720;
  text-decoration-line: underline;
  text-decoration-color: rgba(8, 120, 138, 0.34);
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    transform 180ms var(--ease-out);
}

.article-related > a:hover,
.article-related > a:focus-visible {
  color: #034a55;
  transform: translateX(3px);
}

.report-download strong {
  color: rgba(255, 255, 255, 0.92);
}

.article-return {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(16, 24, 32, 0.12);
}

.article-return a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #075f6d;
  font-size: 14px;
  font-weight: 720;
  transition:
    color 160ms ease,
    transform 180ms var(--ease-out);
}

.article-return a:hover,
.article-return a:focus-visible {
  color: #034a55;
  transform: translateX(-3px);
}

.cookie-settings-link {
  display: none;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease;
}

.has-js .cookie-settings-link {
  display: inline-block;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: var(--cyan);
}

.article-breadcrumbs a:focus-visible,
.article-meta a:focus-visible,
.report-download a:focus-visible,
.article-related > a:focus-visible,
.article-return a:focus-visible,
.brand:focus-visible,
.cookie-settings-link:focus-visible {
  outline: 3px solid rgba(37, 217, 231, 0.42);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .article-orbit {
    right: -220px;
    opacity: 0.42;
  }

  .article-hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --page-gutter: 18px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .header-nav a:not(.header-cta) {
    display: none;
  }

  .header-nav .header-cta {
    min-height: 38px;
    margin-left: 0;
    padding: 0 12px;
    font-size: 12px;
  }

  .article-hero {
    min-height: 0;
    align-items: flex-start;
  }

  .article-hero-inner {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 50px;
  }

  .article-hero-copy {
    margin-top: 30px;
  }

  .article-hero h1 {
    margin-top: 18px;
    font-size: clamp(2.125rem, 8.8vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .article-title-line {
    display: inline;
    white-space: normal;
  }

  .article-subtitle {
    max-width: 340px;
    margin-top: 18px;
    font-size: 1.0625rem;
    line-height: 1.48;
    white-space: normal;
  }

  .article-meta {
    margin-top: 24px;
  }

  .article-orbit {
    top: 66%;
    right: -220px;
    width: 410px;
    opacity: 0.22;
  }

  .article-orbit-core,
  .article-orbit-point {
    display: none;
  }

  .article-surface {
    padding-top: 62px;
    padding-bottom: 96px;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.68;
  }

  .article-content p + p,
  .article-content ul + p,
  .article-content ol + p,
  .article-content .article-table-wrap + p,
  .article-content p + ul,
  .article-content p + ol,
  .article-content p + .article-table-wrap {
    margin-top: 25px;
  }

  .article-content h2 {
    margin-top: 52px;
    font-size: 1.5rem;
    line-height: 1.24;
  }

  .article-content h2 + p,
  .article-content h2 + ul,
  .article-content h2 + ol,
  .article-content h2 + .article-table-wrap {
    margin-top: 19px;
  }

  .article-content h2 + .article-highlight {
    margin-top: 22px !important;
  }

  .article-content h3 {
    margin-top: 34px;
    font-size: 1.1875rem;
  }

  .article-content h3 + p,
  .article-content h3 + ul,
  .article-content h3 + ol {
    margin-top: 14px;
  }

  .article-lead {
    font-size: 1.3125rem;
    line-height: 1.5;
  }

  .article-highlight {
    margin-top: 34px !important;
    padding: 23px 21px;
    font-size: 1.125rem;
  }

  .article-content ul,
  .article-content ol {
    gap: 11px;
  }

  .article-table-wrap {
    width: calc(100% + 18px);
    border-radius: 12px 0 0 12px;
  }

  .article-table-wrap table {
    font-size: 0.875rem;
  }

  .article-table-wrap th,
  .article-table-wrap td {
    padding: 14px 15px;
  }

  .report-download {
    margin-top: 46px;
    padding: 28px 23px;
    border-radius: 14px;
  }

  .report-download::after {
    right: -20px;
    bottom: -18px;
    font-size: 94px;
  }

  .report-download a {
    font-size: 1.25rem;
  }

  .article-related {
    margin-top: 52px;
    padding-top: 26px;
  }
}

@media (max-width: 360px) {
  .brand-copy strong {
    font-size: 14px;
  }

  .header-nav .header-cta {
    padding: 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes article-copy-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes article-orbit-enter {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.92);
  }
}

@keyframes article-core-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.92);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.14);
  }
}
