:root {
  --pc-ink: #f5f0f0;
  --pc-muted: rgba(226, 230, 233, 0.82);
  --pc-deep: #07141c;
  --pc-deeper: #030c12;
  --pc-navy: #061d35;
  --pc-blue: #143b86;
  --pc-blue-dark: #092253;
  --pc-sky: #6da3ff;
  --pc-light-blue: #5f8edb;
  --pc-panel: #0b2456;
  --pc-line: rgba(109, 163, 255, 0.74);
  --pc-max: 1300px;
  --pc-radius: 8px;
  --pc-font: "Merriweather", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pc-deep);
  color: var(--pc-ink);
  font-family: var(--pc-font);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.pc-site {
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(3, 16, 28, 0.9), rgba(7, 20, 28, 0.72) 18%, rgba(7, 20, 28, 0.98) 72%),
    var(--pc-deep);
}

.pc-shell {
  width: min(100% - 48px, var(--pc-max));
  margin-inline: auto;
}

.pc-floating-mark {
  position: fixed;
  top: 18vh;
  right: 0;
  z-index: 20;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 8px 0 0 8px;
  background: rgba(40, 40, 40, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, background-color 180ms ease;
}

.pc-floating-mark:hover,
.pc-floating-mark:focus-visible {
  background: rgba(18, 24, 32, 0.94);
  transform: translateX(-4px);
}

.pc-floating-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pc-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5, 12, 18, 0.9), rgba(5, 12, 18, 0.48) 48%, rgba(5, 12, 18, 0.62)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.pc-hero__content {
  max-width: 1100px;
  padding-block: clamp(96px, 14vw, 170px);
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  color: var(--pc-ink);
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  max-width: 1150px;
  margin-bottom: 42px;
font-size: clamp(2rem, 4vw, 3.8rem);
}

h2 {
  margin-bottom: 34px;
  font-size: clamp(1.9rem, 3.6vw, 3.3rem);
}

h3 {
  margin-bottom: 20px;
  color: var(--pc-ink);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 400;
  line-height: 1.18;
}

p,
li,
blockquote {
  color: var(--pc-muted);
font-size: clamp(0.95rem, 1.15vw, 1.18rem);
  line-height: 1.58;
}

p:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

.pc-hero p {
  margin-bottom: 30px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.pc-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid var(--pc-sky);
  border-radius: 6px;
  background: var(--pc-sky);
  color: #05070a;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.pc-button:hover,
.pc-button:focus-visible {
  transform: translateY(-2px);
  background: #89b7ff;
}

.pc-button--ghost {
  background: transparent;
  color: var(--pc-sky);
}

.pc-button--ghost:hover,
.pc-button--ghost:focus-visible {
  background: rgba(109, 163, 255, 0.12);
  color: var(--pc-ink);
}

.pc-section {
  position: relative;
  padding-block: clamp(72px, 9vw, 144px);
}

.pc-section--dark {
  background:
    linear-gradient(90deg, rgba(0, 35, 83, 0.52), rgba(7, 20, 28, 0) 26%),
    var(--pc-deep);
}

.pc-section--blue {
  background: linear-gradient(90deg, #123f8c, #142f72 55%, #122e68);
}

.pc-section--blue-dark {
  background: var(--pc-blue-dark);
}

.pc-section--light {
  background: var(--pc-light-blue);
  color: #05070a;
}

.pc-section--light h2,
.pc-section--light h3,
.pc-section--light p,
.pc-section--light li {
  color: #05070a;
}

.pc-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.pc-split--text-left {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.pc-copy {
  max-width: 820px;
}

.pc-copy--wide {
  max-width: 1200px;
}

.pc-lede {
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
}

.pc-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--pc-radius);
  background: rgba(255, 255, 255, 0.04);
}

.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-media--portrait {
  aspect-ratio: 0.72;
}

.pc-media--landscape {
  aspect-ratio: 1.28;
}

.pc-list {
  display: grid;
  gap: 14px;
  padding-left: 1.4em;
  margin: 0 0 30px;
}

.pc-list strong {
  color: var(--pc-ink);
}

.pc-callout,
.pc-panel,
.pc-outline-card {
  border-radius: var(--pc-radius);
  background: var(--pc-panel);
}

.pc-callout {
  margin-top: 36px;
  padding: 26px 32px;
}

.pc-callout h3,
.pc-callout p {
  margin-bottom: 0;
}

.pc-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.pc-panel {
  min-height: 260px;
  padding: 26px 24px;
  border: 1px solid rgba(109, 163, 255, 0.34);
}

.pc-panel p,
.pc-outline-card p,
.pc-icon-card p,
.pc-expect-grid p,
.pc-faq-grid p,
.pc-role-list p {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.pc-section-heading {
  max-width: 1200px;
  margin-bottom: clamp(44px, 6vw, 74px);
}

.pc-section-heading--dark {
  color: #05070a;
}

.pc-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.pc-icon-card img {
  width: 176px;
  height: 176px;
  margin-bottom: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.pc-section--image,
.pc-section--vision {
  min-height: 720px;
  background-image:
    linear-gradient(90deg, rgba(7, 20, 28, 0.92), rgba(7, 20, 28, 0.74)),
    var(--section-image);
  background-size: cover;
  background-position: center;
}

.pc-section--image blockquote,
.pc-section-heading blockquote {
  position: relative;
  margin: 10px 0 28px;
  padding: 32px 40px;
  border: 2px solid rgba(96, 157, 255, 0.8);
  border-radius: var(--pc-radius);
  color: var(--pc-ink);
}

.pc-section-heading blockquote {
  border-width: 0 0 0 4px;
  border-radius: 0;
  padding: 0 0 0 28px;
}

.pc-vision-map {
  position: relative;
  display: grid;
  max-width: 940px;
  min-height: 420px;
  margin: 0 auto 36px;
  align-items: center;
}

.pc-vision-map::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--pc-line);
}

.pc-vision-step {
  position: relative;
  width: min(430px, 45%);
}

.pc-vision-step::before {
  content: "";
  position: absolute;
  top: 22px;
  width: 88px;
  height: 3px;
  background: var(--pc-line);
}

.pc-vision-step::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pc-sky);
}

.pc-vision-step--left {
  justify-self: start;
  text-align: right;
}

.pc-vision-step--left::before {
  right: -126px;
}

.pc-vision-step--left::after {
  right: -145px;
}

.pc-vision-step--right {
  justify-self: end;
  text-align: left;
}

.pc-vision-step--right::before {
  left: -126px;
}

.pc-vision-step--right::after {
  left: -145px;
}

.pc-closing {
  max-width: 1200px;
}

.pc-label {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 10px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #05070a;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pc-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 132px;
  max-width: 1200px;
  margin: 0 auto;
}

.pc-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 3px;
  background: rgba(9, 31, 76, 0.48);
}

.pc-timeline-item {
  position: relative;
  min-height: 160px;
}

.pc-timeline-item:nth-child(odd) {
  text-align: right;
}

.pc-timeline-item:nth-child(even) {
  transform: translateY(86px);
}

.pc-timeline-number {
  position: absolute;
  top: 6px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 8px;
  background: #0a2a6c;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.pc-timeline-item:nth-child(odd) .pc-timeline-number {
  right: -94px;
}

.pc-timeline-item:nth-child(even) .pc-timeline-number {
  left: -94px;
}

.pc-timeline-note {
  margin-top: 120px;
  font-weight: 700;
}

.pc-two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  margin-top: 50px;
}

.pc-banner {
  height: clamp(220px, 28vw, 370px);
  margin: 0;
  overflow: hidden;
}

.pc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.pc-participation {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-top: 56px;
  padding-top: 68px;
  text-align: center;
}

.pc-participation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(9, 31, 76, 0.44);
}

.pc-participation article {
  position: relative;
}

.pc-participation span {
  position: absolute;
  top: -79px;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pc-sky);
  transform: translateX(-50%);
}

.pc-participation span::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 9px;
  width: 3px;
  height: 48px;
  background: rgba(9, 31, 76, 0.44);
}

.pc-expect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 28px;
  margin-top: 44px;
}

.pc-expect-grid article {
  border-top: 3px solid var(--pc-sky);
  padding-top: 18px;
}

.pc-expect-grid article:last-child {
  grid-column: 1 / -1;
}

.pc-expect-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--pc-muted);
  font-size: 1.2rem;
}

.pc-ethics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pc-outline-card {
  position: relative;
  min-height: 178px;
  padding: 28px 34px;
  border: 2px solid rgba(96, 157, 255, 0.72);
  background: rgba(7, 20, 45, 0.58);
}

.pc-outline-card::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -2px;
  width: 10px;
  border-radius: 8px 0 0 8px;
  background: var(--pc-sky);
}

.pc-role-list {
  position: relative;
  display: grid;
  gap: 34px;
  margin: 42px 0;
  padding-left: 96px;
}

.pc-role-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 3px;
  background: var(--pc-line);
}

.pc-role-list article {
  position: relative;
}

.pc-role-list article::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -78px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pc-sky);
}

.pc-role-list article::after {
  content: "";
  position: absolute;
  top: 19px;
  left: -58px;
  width: 48px;
  height: 3px;
  background: var(--pc-line);
}

.pc-section--faq h2 {
  margin-bottom: 70px;
}

.pc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 68px;
}

.pc-faq-grid article {
  border-bottom: 2px solid rgba(226, 230, 233, 0.42);
  padding-bottom: 34px;
}

.pc-footer {
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #02080d;
}

.pc-footer .pc-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.pc-footer p,
.pc-footer a {
  margin: 0;
  color: var(--pc-muted);
  font-size: 0.95rem;
}

.pc-reveal {
  opacity: 1;
  transform: translateY(0);
}

.pc-js .pc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.pc-js .pc-reveal.is-visible,
.pc-revealed .pc-reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .pc-card-row,
  .pc-icon-grid,
  .pc-participation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-split,
  .pc-split--text-left,
  .pc-two-column-copy {
    grid-template-columns: 1fr;
  }

  .pc-split--text-left .pc-media {
    order: -1;
  }

  .pc-copy {
    max-width: none;
  }

  .pc-media--portrait,
  .pc-media--landscape {
    aspect-ratio: 1.2;
  }
}

@media (max-width: 820px) {
  .pc-shell {
    width: min(100% - 32px, var(--pc-max));
  }

  .pc-floating-mark {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
    border-radius: 8px;
  }

  .pc-floating-mark img {
    width: 38px;
    height: 38px;
  }

  .pc-hero {
    min-height: 680px;
    align-items: end;
    background-position: center;
  }

  .pc-hero__content {
    padding-block: 96px 72px;
  }

  .pc-button {
    width: 100%;
  }

  .pc-icon-grid,
  .pc-card-row,
  .pc-participation,
  .pc-expect-grid,
  .pc-ethics-grid,
  .pc-faq-grid {
    grid-template-columns: 1fr;
  }

  .pc-icon-card img {
    width: 148px;
    height: 148px;
  }

  .pc-vision-map {
    gap: 28px;
    min-height: auto;
    margin-left: 20px;
  }

  .pc-vision-map::before {
    left: 0;
  }

  .pc-vision-step,
  .pc-vision-step--left,
  .pc-vision-step--right {
    width: auto;
    justify-self: stretch;
    padding-left: 54px;
    text-align: left;
  }

  .pc-vision-step::before {
    left: 0;
    width: 38px;
  }

  .pc-vision-step::after {
    left: -9px;
  }

  .pc-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-left: 18px;
    padding-left: 42px;
  }

  .pc-timeline::before {
    left: 0;
  }

  .pc-timeline-item,
  .pc-timeline-item:nth-child(odd),
  .pc-timeline-item:nth-child(even) {
    min-height: unset;
    text-align: left;
    transform: none;
  }

  .pc-timeline-item:nth-child(odd) .pc-timeline-number,
  .pc-timeline-item:nth-child(even) .pc-timeline-number {
    left: -70px;
    right: auto;
  }

  .pc-timeline-note {
    margin-top: 54px;
  }

  .pc-participation {
    gap: 30px;
    padding-top: 0;
    text-align: left;
  }

  .pc-participation::before,
  .pc-participation span {
    display: none;
  }

  .pc-role-list {
    padding-left: 62px;
  }

  .pc-role-list::before {
    left: 12px;
  }

  .pc-role-list article::before {
    left: -59px;
  }

  .pc-role-list article::after {
    left: -39px;
    width: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
