.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(125deg, #0a1227 0%, #13255b 42%, #2536d8 100%);
  color: var(--color-white);
}

.hero-home {
  min-height: auto;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + var(--space-5));
  padding-bottom: var(--space-6);
  display: block;
}

.hero-home .hero__inner {
  min-height: auto;
  padding-bottom: var(--space-4);
}

.hero-carousel {
  display: grid;
  gap: var(--space-4);
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.hero-home .hero-carousel {
  gap: var(--space-3);
}

.hero-carousel__viewport {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  contain: paint;
}

.hero-carousel__track {
  display: flex;
  min-width: 0;
  max-width: 100%;
  transition: transform 760ms ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.44fr);
  gap: 0;
  min-height: clamp(500px, 72vh, 660px);
}

@media (max-width: 1100px) {
  .hero-carousel__track {
    display: block;
    transform: none !important;
    transition: none !important;
  }

  .hero-slide {
    display: none;
  }

  .hero-slide.is-current {
    display: grid;
  }
}

.hero-slide__media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  background: #091224;
}

.hero-slide__image,
.hero-slide__image-overlay,
.hero-slide__image-meta,
.hero-slide__triangles {
  position: absolute;
}

.hero-slide__image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transform-origin: center center;
}

.hero-slide__image-overlay {
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(27, 76, 255, 0.72) 0%, rgba(27, 76, 255, 0.32) 22%, rgba(27, 76, 255, 0.08) 44%, transparent 68%),
    linear-gradient(44deg, rgba(34, 112, 255, 0.42) 0%, rgba(39, 205, 255, 0.2) 32%, rgba(39, 205, 255, 0.08) 56%, rgba(8, 17, 35, 0) 76%),
    linear-gradient(90deg, rgba(8, 17, 35, 0.52) 0%, rgba(8, 17, 35, 0.16) 34%, rgba(8, 17, 35, 0.03) 62%),
    linear-gradient(180deg, rgba(8, 17, 35, 0.06) 0%, rgba(8, 17, 35, 0.18) 100%);
}

.hero-slide__triangles {
  inset: 0;
  z-index: 1;
  pointer-events: none;
  --hero-primary-width: clamp(180px, 28vw, 360px);
  --hero-primary-height: clamp(160px, 40%, 280px);
  --hero-deco-min-bottom: clamp(18px, 5%, 36px);
  --hero-deco-max-bottom: clamp(38px, 14%, 104px);
}

.hero-slide__triangle,
.hero-slide__triangle-line,
.hero-slide__diamond,
.hero-slide__dot {
  position: absolute;
}

.hero-slide__triangle {
  left: 0;
  bottom: 0;
  opacity: 0.92;
}

.hero-slide__triangle--primary {
  width: var(--hero-primary-width);
  height: var(--hero-primary-height);
  background: linear-gradient(138deg, rgba(36, 82, 255, 0.98), rgba(43, 70, 233, 0.92));
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  transform-origin: left bottom;
  animation: heroGeoFloatA 7.4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero-slide__triangle--secondary {
  width: clamp(130px, 18vw, 240px);
  height: clamp(120px, 28%, 190px);
  left: calc((var(--hero-primary-width) * var(--edge-t, 0.38)) + var(--edge-offset-x, 0px));
  bottom: clamp(
    var(--hero-deco-min-bottom),
    calc((var(--hero-primary-height) * (1 - var(--edge-t, 0.38))) + (var(--edge-side, 1) * 26px) + var(--edge-offset-y, 0px)),
    var(--hero-deco-max-bottom)
  );
  background: linear-gradient(138deg, rgba(50, 201, 255, 0.52), rgba(48, 124, 255, 0.08));
  clip-path: polygon(0 100%, 40% 22%, 100% 100%);
  filter: blur(0.1px);
  animation: heroGeoFloatB 5.6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero-slide__triangle--tertiary {
  width: clamp(72px, 10vw, 132px);
  height: clamp(68px, 12vw, 122px);
  left: calc((var(--hero-primary-width) * var(--edge-t, 0.58)) + var(--edge-offset-x, 0px));
  bottom: clamp(
    calc(var(--hero-deco-min-bottom) + 8px),
    calc((var(--hero-primary-height) * (1 - var(--edge-t, 0.58))) + (var(--edge-side, 1) * 18px) + var(--edge-offset-y, 0px)),
    calc(var(--hero-deco-max-bottom) - 10px)
  );
  border: 1px solid rgba(96, 220, 255, 0.42);
  background: linear-gradient(138deg, rgba(56, 192, 255, 0.14), rgba(56, 192, 255, 0.02));
  clip-path: polygon(12% 100%, 50% 8%, 88% 100%);
  opacity: 0.84;
  animation: heroGeoFloatC 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero-slide__diamond {
  transform: rotate(45deg);
  animation: heroGeoDriftDiamond 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero-slide__diamond--a {
  left: calc((var(--hero-primary-width) * var(--edge-t, 0.46)) + var(--edge-offset-x, 0px));
  bottom: clamp(
    calc(var(--hero-deco-min-bottom) + 10px),
    calc((var(--hero-primary-height) * (1 - var(--edge-t, 0.46))) + (var(--edge-side, 1) * 12px) + var(--edge-offset-y, 0px)),
    calc(var(--hero-deco-max-bottom) - 18px)
  );
  width: clamp(34px, 4.8vw, 58px);
  height: clamp(34px, 4.8vw, 58px);
  background: linear-gradient(138deg, rgba(40, 231, 220, 0.9), rgba(82, 228, 255, 0.56));
  box-shadow: 0 0 18px rgba(37, 213, 255, 0.16);
}

.hero-slide__diamond--b {
  left: calc((var(--hero-primary-width) * var(--edge-t, 0.7)) + var(--edge-offset-x, 0px));
  bottom: clamp(
    calc(var(--hero-deco-min-bottom) + 6px),
    calc((var(--hero-primary-height) * (1 - var(--edge-t, 0.7))) + (var(--edge-side, 1) * 10px) + var(--edge-offset-y, 0px)),
    calc(var(--hero-deco-max-bottom) - 26px)
  );
  width: clamp(14px, 2vw, 24px);
  height: clamp(14px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.9);
  animation-duration: 4.2s;
}

.hero-slide__dot {
  border-radius: 50%;
  animation: heroDotDrift 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero-slide__dot--white {
  left: calc((var(--hero-primary-width) * var(--edge-t, 0.56)) + var(--edge-offset-x, 0px));
  bottom: clamp(
    calc(var(--hero-deco-min-bottom) + 4px),
    calc((var(--hero-primary-height) * (1 - var(--edge-t, 0.56))) + (var(--edge-side, 1) * 12px) + var(--edge-offset-y, 0px)),
    calc(var(--hero-deco-max-bottom) - 22px)
  );
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.18);
}

.hero-slide__dot--violet {
  left: calc((var(--hero-primary-width) * var(--edge-t, 0.74)) + var(--edge-offset-x, 0px));
  bottom: clamp(
    calc(var(--hero-deco-min-bottom) + 4px),
    calc((var(--hero-primary-height) * (1 - var(--edge-t, 0.74))) + (var(--edge-side, 1) * 14px) + var(--edge-offset-y, 0px)),
    calc(var(--hero-deco-max-bottom) - 14px)
  );
  width: 16px;
  height: 16px;
  background: rgba(176, 61, 255, 0.84);
  box-shadow: 0 0 18px rgba(176, 61, 255, 0.22);
  animation-duration: 3.2s;
}

.hero-slide__triangle-line {
  background: linear-gradient(90deg, rgba(87, 223, 255, 0), rgba(87, 223, 255, 0.68), rgba(87, 223, 255, 0));
  transform-origin: left center;
  animation: heroLineShift 5.1s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero-slide__triangle-line--one {
  left: calc((var(--hero-primary-width) * var(--edge-t, 0.42)) + var(--edge-offset-x, 0px));
  bottom: clamp(
    calc(var(--hero-deco-min-bottom) + 2px),
    calc((var(--hero-primary-height) * (1 - var(--edge-t, 0.42))) + (var(--edge-side, 1) * 8px) + var(--edge-offset-y, 0px)),
    calc(var(--hero-deco-max-bottom) - 24px)
  );
  width: clamp(140px, 20vw, 250px);
  height: 1px;
  transform: rotate(-28deg);
  opacity: 0.5;
}

.hero-slide__triangle-line--two {
  left: calc((var(--hero-primary-width) * var(--edge-t, 0.76)) + var(--edge-offset-x, 0px));
  bottom: clamp(
    calc(var(--hero-deco-min-bottom) + 6px),
    calc((var(--hero-primary-height) * (1 - var(--edge-t, 0.76))) + (var(--edge-side, 1) * 10px) + var(--edge-offset-y, 0px)),
    calc(var(--hero-deco-max-bottom) - 18px)
  );
  width: clamp(108px, 15vw, 180px);
  height: 1px;
  transform: rotate(-28deg);
  opacity: 0.34;
  animation-duration: 4.4s;
}

.hero-slide__image-meta {
  top: 1.4rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--space-3);
}

.hero-slide__sdg-logo {
  position: absolute;
  left: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
  width: clamp(78px, 9vw, 122px);
  height: auto;
  object-fit: contain;
  transform-origin: left bottom;
  filter: drop-shadow(0 12px 24px rgba(8, 17, 35, 0.28));
  animation: heroSdgPulse 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-slide__image-flag {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide__flag {
  display: block;
  width: auto;
  height: 24px;
  object-fit: contain;
}

.hero-slide__flag.is-square {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-slide__count {
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 17, 41, 0.32);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-slide__panel {
  min-width: 0;
  padding: var(--space-5);
  background: rgba(37, 54, 216, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  align-content: center;
  gap: var(--space-3);
}

.hero-slide__goal-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-slide__panel-title {
  margin-top: 0.2rem;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 0.96;
  max-width: 8ch;
}

.hero-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-carousel__controls,
.hero-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-width: 0;
  max-width: 100%;
}

.hero-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-width: 0;
}

.hero-carousel__dot,
.hero-carousel__button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.hero-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
}

.hero-carousel__dot.is-active {
  background: var(--color-teal);
  border-color: transparent;
}

.hero-carousel__button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.hero__title {
  font-size: var(--display-xl);
  max-width: 12ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.hero__panel-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__panel-title {
  margin-top: var(--space-3);
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
}

.hero__panel-text {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.84);
}

.sdg-post__hero {
  padding: calc(var(--header-height) + var(--space-3)) 0 var(--space-4);
  background: #fff;
}

.sdg-post__hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.382fr) minmax(0, 0.618fr);
  gap: 0;
  align-items: stretch;
  background: #2536d8;
  min-height: clamp(290px, 26vw, 360px);
  overflow: hidden;
  box-shadow: 0 26px 56px rgba(16, 26, 52, 0.08);
}

.sdg-post__goal {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.sdg-post__goal-logo {
  width: clamp(58px, 6vw, 78px);
  height: auto;
  object-fit: contain;
}

.sdg-post__goal-code {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.74rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sdg-post__title {
  margin: 0;
  font-size: clamp(1.92rem, 3.35vw, 3.3rem);
  line-height: 0.96;
  max-width: 9ch;
  color: var(--color-white);
}

.sdg-post__subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28rem;
}

.sdg-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.05rem;
}

.sdg-post__source {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.46rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.sdg-post__source-flag {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.sdg-post__source-flag.is-square {
  width: 20px;
  height: 20px;
}

.sdg-post__hero-copy .hero__actions {
  margin-top: 1.1rem;
}

.sdg-post__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.3rem, 2.3vw, 2.25rem) clamp(1.5rem, 2.5vw, 2.4rem) clamp(1.3rem, 2.3vw, 2.25rem) clamp(2rem, 3.6vw, 3rem);
}

.sdg-post__hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.sdg-post__hero-copy .button--ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--color-white);
  background: transparent;
}

.sdg-post__hero-copy .button {
  min-height: 2.8rem;
  padding-block: 0.6rem;
  padding-inline: 1.1rem;
}

.sdg-post__hero-media {
  position: relative;
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: #0a1227;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
  left: 0;
  width: 100%;
  transform: none;
}

.sdg-post__hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 84.8%, rgba(110, 214, 255, 0.3) 84.9%, rgba(255, 255, 255, 0.08) 85.9%, transparent 86.3%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0, transparent 12%);
  mix-blend-mode: screen;
}

.sdg-post__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(120deg, rgba(22, 32, 76, 0) 74%, rgba(34, 55, 180, 0.28) 85%, rgba(94, 214, 255, 0.18) 100%),
    linear-gradient(34deg, rgba(31, 48, 210, 0.28) 0%, rgba(39, 205, 255, 0.12) 36%, rgba(8, 17, 35, 0.04) 70%),
    linear-gradient(180deg, rgba(8, 17, 35, 0.03) 0%, rgba(8, 17, 35, 0.24) 100%);
  box-shadow: inset -1px 0 0 rgba(110, 214, 255, 0.2);
}

.sdg-post__hero-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  transform: scale(1.03);
  transform-origin: center center;
}

.sdg-post__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.46fr);
  gap: clamp(1.5rem, 3vw, 2.7rem);
  align-items: start;
  margin-top: 0.8rem;
}

.sdg-post__story .section-heading {
  margin-bottom: 1rem;
}

.sdg-post__lead {
  max-width: 54rem;
  margin-top: 0;
  color: rgba(23, 29, 37, 0.78);
}

.sdg-post__sections {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.sdg-post__section-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(26, 39, 58, 0.1);
}

.sdg-post__section-index {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #2336d5;
}

.sdg-post__section-row h3 {
  margin: 0;
  font-size: 1rem;
}

.sdg-post__section-row p {
  margin: 0.35rem 0 0;
  color: rgba(23, 29, 37, 0.74);
}

.sdg-post__aside {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  display: grid;
  gap: 1.2rem;
}

.sdg-post__impact,
.sdg-post__takeaways {
  padding: 1.15rem 1.2rem;
  background: linear-gradient(180deg, rgba(37, 54, 216, 0.06), rgba(37, 54, 216, 0.015));
  border: 1px solid rgba(26, 39, 58, 0.08);
}

.sdg-post__takeaways h3 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
}

.sdg-post__takeaways .plain-list {
  display: grid;
  gap: 0.7rem;
}

.sdg-post__takeaways li {
  color: rgba(23, 29, 37, 0.78);
}

.sdg-post__gallery-heading {
  margin-bottom: 1rem;
}

.sdg-post__gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.9fr;
  gap: 1rem;
}

.sdg-post__gallery-frame {
  position: relative;
  overflow: hidden;
  background: #0a1227;
  min-height: 230px;
}

.sdg-post__gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sdg-post__gallery-frame--top img {
  object-position: center top;
}

.sdg-post__gallery-frame--center img {
  object-position: center center;
}

.sdg-post__gallery-frame--bottom img {
  object-position: center bottom;
}

@keyframes heroGeoFloatA {
  0% {
    opacity: 0.28;
    transform: scale(0.84);
  }
  38% {
    opacity: 0.94;
    transform: scale(1);
  }
  100% {
    opacity: 0.72;
    transform: scale(1.16);
  }
}

@keyframes heroGeoFloatB {
  0% {
    opacity: 0.14;
    transform: translate3d(28px, 24px, 0) rotate(6deg) scale(0.8);
  }
  42% {
    opacity: 0.86;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1.02);
  }
  100% {
    opacity: 0.18;
    transform: translate3d(-34px, -42px, 0) rotate(-8deg) scale(1.18);
  }
}

@keyframes heroGeoFloatC {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 28px, 0) scale(0.74);
  }
  48% {
    opacity: 0.82;
    transform: translate3d(2px, -4px, 0) scale(1);
  }
  100% {
    opacity: 0.1;
    transform: translate3d(28px, -36px, 0) scale(1.28);
  }
}

@keyframes heroGeoDriftDiamond {
  0% {
    opacity: 0;
    transform: translate3d(-16px, 16px, 0) rotate(45deg) scale(0.52);
  }
  50% {
    opacity: 1;
    transform: translate3d(18px, -14px, 0) rotate(45deg) scale(1.24);
  }
  100% {
    opacity: 0.12;
    transform: translate3d(34px, -28px, 0) rotate(45deg) scale(0.7);
  }
}

@keyframes heroSdgPulse {
  0%,
  100% {
    opacity: 0.9;
    transform: translate3d(0, 0, 0) scale(0.94);
    filter: drop-shadow(0 10px 18px rgba(8, 17, 35, 0.2));
  }
  50% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.04);
    filter: drop-shadow(0 16px 28px rgba(8, 17, 35, 0.32));
  }
}

@keyframes heroDotDrift {
  0% {
    opacity: 0;
    transform: translate3d(-10px, 10px, 0) scale(0.36);
  }
  50% {
    opacity: 1;
    transform: translate3d(12px, -10px, 0) scale(1.34);
  }
  100% {
    opacity: 0.08;
    transform: translate3d(22px, -22px, 0) scale(0.44);
  }
}

@keyframes heroLineShift {
  0% {
    opacity: 0;
    transform: rotate(-28deg) translate3d(-20px, 14px, 0) scaleX(0.62);
  }
  45% {
    opacity: 0.58;
    transform: rotate(-28deg) translate3d(6px, -2px, 0) scaleX(1.08);
  }
  100% {
    opacity: 0.06;
    transform: rotate(-28deg) translate3d(30px, -18px, 0) scaleX(1.28);
  }
}

.hero__panel-text {
  margin-top: var(--space-3);
  color: rgba(255, 255, 255, 0.82);
}

.focus-pillars,
.track-strips,
.editorial-cards,
.chapter-grid,
.metric-ribbon,
.timeline-list,
.editorial-list,
.event-list,
.dashboard-kpis,
.resource-table,
.activity-log,
.pathway-route,
.track-essay {
  display: grid;
  gap: var(--space-4);
}

.focus-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  align-items: start;
  justify-items: start;
}

.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: var(--space-6);
  align-items: start;
}

.focus-copy {
  max-width: 40rem;
}

.focus-copy p {
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.85;
}

.focus-element,
.track-strip,
.chapter-card,
.timeline-entry,
.dashboard-kpi,
.dashboard-panel,
.resource-row,
.profile-card,
.activity-item {
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 22px;
}

.focus-element,
.chapter-card,
.dashboard-kpi,
.dashboard-panel,
.profile-card,
.activity-item {
  padding: var(--space-4);
}

.focus-element p,
.track-strip p,
.chapter-card p,
.timeline-entry p,
.editorial-card p,
.editorial-item p,
.event-item p,
.resource-row p {
  color: var(--color-text-muted);
}

.focus-element {
  display: grid;
  gap: 0.85rem;
  border: 0;
  background: transparent;
  padding: 0;
  width: min(100%, 10.25rem);
  overflow: visible;
  position: relative;
}

.focus-element__tile {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  border: 4px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)) padding-box,
    linear-gradient(135deg, #1fd0d0 0%, #2536d8 58%, #4a67ff 100%) border-box;
  box-shadow: 0 18px 40px rgba(16, 26, 52, 0.06);
  transition: background var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}

.focus-element__tile::after {
  content: none;
}

.focus-element__index {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  color: #3654df;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color var(--transition-base);
}

.focus-element__symbol {
  position: absolute;
  left: 0.9rem;
  top: 2.56rem;
  display: block;
  z-index: 4;
  overflow: visible;
  width: clamp(6.55rem, 8.6vw, 7.6rem);
}

.focus-element__symbol--hs {
  top: 2.36rem;
}

.focus-element__symbol--hg {
  top: 2.2rem;
}

.focus-element__symbol--hr {
  top: 2.42rem;
}

.focus-element__symbol-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.focus-element__symbol-text {
  font-family: "Roboto", "Noto Sans SC", sans-serif;
  font-size: 108px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.focus-element__symbol-text--hover {
  fill: #ffffff;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.focus-element__name {
  position: absolute;
  left: 0.9rem;
  bottom: 0.38rem;
  z-index: 2;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #8b93a3;
  transition: color var(--transition-base);
}

.focus-element__text {
  position: relative;
  z-index: 5;
  margin: 0;
  max-width: 10.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
  transition: color var(--transition-base);
}

.focus-element:hover .focus-element__tile,
.focus-element:focus-within .focus-element__tile {
  background:
    linear-gradient(135deg, #1fd0d0 0%, #2536d8 58%, #4a67ff 100%) padding-box,
    linear-gradient(135deg, #1fd0d0 0%, #2536d8 58%, #4a67ff 100%) border-box;
  box-shadow: none;
  transform: none;
}

.focus-element:hover .focus-element__index,
.focus-element:hover .focus-element__name,
.focus-element:focus-within .focus-element__index,
.focus-element:focus-within .focus-element__name {
  color: rgba(255, 255, 255, 0.96);
}

.focus-element:hover .focus-element__symbol-text--gradient,
.focus-element:focus-within .focus-element__symbol-text--gradient {
  opacity: 0;
}

.focus-element:hover .focus-element__symbol-text--hover,
.focus-element:focus-within .focus-element__symbol-text--hover {
  opacity: 1;
}

.track-strips,
.track-essay {
  grid-template-columns: 1fr;
}

.track-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4);
}

.track-strip__index {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}

.track-strip__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-2);
}

.chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: var(--meta);
  font-weight: 700;
}

.chip--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.spotlight-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
  gap: var(--space-5);
  align-items: start;
}

.spotlight-stage__intro {
  max-width: 20rem;
}

.spotlight-stage__summary {
  margin: 0;
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.8;
  color: var(--color-text);
}

.spotlight-stage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.spotlight-stage__detail {
  grid-column: 2 / 3;
}

.spotlight-card {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
  background: #0c1639;
  color: var(--color-white);
  isolation: isolate;
  cursor: pointer;
  appearance: none;
  border: 0;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.spotlight-card__media,
.spotlight-card__overlay,
.spotlight-card__content {
  position: absolute;
  inset: 0;
}

.spotlight-card__media {
  overflow: hidden;
}

.spotlight-card__media::before,
.spotlight-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  transition:
    opacity 320ms ease,
    transform 620ms ease;
}

.spotlight-card__media::before {
  background-image: var(--spotlight-image);
  background-size: cover;
  background-position: var(--spotlight-position, center);
  background-repeat: no-repeat;
  filter: saturate(0.96) contrast(1.02) brightness(1);
  transform: scale(1.02);
}

.spotlight-card__media::after {
  background:
    linear-gradient(135deg, rgba(6, 14, 52, 0.78) 0%, rgba(12, 30, 96, 0.6) 22%, rgba(24, 64, 168, 0.34) 54%, rgba(52, 128, 228, 0.14) 78%, rgba(126, 208, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(7, 12, 30, 0.12), rgba(7, 11, 25, 0.08));
}

.spotlight-card__overlay {
  background:
    linear-gradient(0deg, rgba(8, 13, 31, 0.36), rgba(8, 13, 31, 0.08) 56%, transparent),
    linear-gradient(135deg, rgba(8, 16, 48, 0.34) 0%, rgba(14, 24, 65, 0.14) 44%, transparent 74%);
  z-index: 2;
}

.spotlight-card__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.25rem 1.2rem;
  z-index: 4;
}

.spotlight-card__content h3 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.28rem, 1.55vw, 1.92rem);
  line-height: 1.14;
  font-weight: 800;
  color: var(--color-white);
}

.spotlight-card__icon {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  width: 5.5rem;
  height: 5.5rem;
  opacity: 0;
  transform: translate(10px, 10px) scale(0.92);
  transition:
    opacity 220ms ease,
    transform 420ms ease;
  z-index: 3;
}

.spotlight-card__icon svg {
  width: 100%;
  height: 100%;
}

.spotlight-card__icon svg * {
  fill: none;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spotlight-card.is-active {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.46),
    0 0 0 1px rgba(33, 41, 62, 0.12),
    0 16px 28px rgba(22, 28, 45, 0.12),
    0 6px 12px rgba(22, 28, 45, 0.08);
}

.spotlight-card.is-active .spotlight-card__media::after {
  background:
    linear-gradient(135deg, rgba(6, 14, 52, 0.58) 0%, rgba(12, 30, 96, 0.42) 22%, rgba(24, 64, 168, 0.22) 54%, rgba(52, 128, 228, 0.08) 78%, rgba(126, 208, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(7, 12, 30, 0.08), rgba(7, 11, 25, 0.04));
}

.spotlight-card.is-active .spotlight-card__overlay {
  background:
    linear-gradient(0deg, rgba(8, 13, 31, 0.22), rgba(8, 13, 31, 0.03) 55%, transparent),
    linear-gradient(135deg, rgba(14, 24, 65, 0.04), transparent 55%);
}

.spotlight-card:hover .spotlight-card__media::before,
.spotlight-card:focus-within .spotlight-card__media::before {
  transform: scale(1.08);
}

.spotlight-card:hover .spotlight-card__icon,
.spotlight-card:focus-within .spotlight-card__icon,
.spotlight-card.is-active .spotlight-card__icon {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.spotlight-card:hover .spotlight-card__icon--renewable,
.spotlight-card:focus-within .spotlight-card__icon--renewable,
.spotlight-card.is-active .spotlight-card__icon--renewable {
  animation: iconFloat 2.2s ease-in-out infinite;
}

.spotlight-card:hover .spotlight-card__icon--critical,
.spotlight-card:focus-within .spotlight-card__icon--critical,
.spotlight-card.is-active .spotlight-card__icon--critical {
  animation: iconRotate 3.2s ease-in-out infinite;
}

.spotlight-card:hover .spotlight-card__icon--circular,
.spotlight-card:focus-within .spotlight-card__icon--circular,
.spotlight-card.is-active .spotlight-card__icon--circular {
  animation: iconSpin 2.8s linear infinite;
}

.spotlight-card:hover .spotlight-card__icon--embodied,
.spotlight-card:focus-within .spotlight-card__icon--embodied,
.spotlight-card.is-active .spotlight-card__icon--embodied {
  animation: iconPulse 1.8s ease-in-out infinite;
}

.spotlight-card:hover .spotlight-card__icon--genai,
.spotlight-card:focus-within .spotlight-card__icon--genai,
.spotlight-card.is-active .spotlight-card__icon--genai {
  animation: iconSpark 1.9s ease-in-out infinite;
}

.spotlight-card:hover .spotlight-card__icon--lowalt,
.spotlight-card:focus-within .spotlight-card__icon--lowalt,
.spotlight-card.is-active .spotlight-card__icon--lowalt {
  animation: iconHover 1.6s ease-in-out infinite;
}

.spotlight-stage__detail-bar {
  display: grid;
  gap: 0.45rem;
  min-height: 5.25rem;
  padding: 1rem 1.2rem 1.1rem;
  background: linear-gradient(90deg, rgba(247, 249, 255, 0.98), rgba(237, 242, 255, 0.94));
  border: 1px solid rgba(37, 54, 216, 0.14);
}

.spotlight-stage__detail-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 54, 216, 0.76);
}

.spotlight-stage__detail-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(10, 14, 26, 0.82);
}

.library-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.page-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: var(--small);
  font-weight: 700;
}

.detail-list {
  margin-top: var(--space-4);
}

.history-founder {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.6rem);
}

.history-founder__header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
}

.history-founder__summary {
  max-width: 54rem;
  margin: 0;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.9;
  color: rgba(23, 29, 37, 0.82);
}

.history-founder__chart-shell {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-bottom: 0.35rem;
}

.history-founder__chart {
  width: 100%;
  min-width: 0;
}

.founder-gantt {
  position: relative;
  padding: clamp(1.5rem, 2.6vw, 2.4rem);
  background:
    linear-gradient(180deg, rgba(37, 54, 216, 0.03), rgba(37, 54, 216, 0)),
    linear-gradient(135deg, rgba(31, 208, 208, 0.05), rgba(37, 54, 216, 0.04));
  border: 1px solid rgba(26, 39, 58, 0.12);
  box-shadow: 0 18px 42px rgba(16, 26, 52, 0.06);
}

.founder-gantt__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.founder-gantt__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(23, 29, 37, 0.72);
}

.founder-gantt__legend-dot {
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
}

.founder-gantt__legend-dot--family {
  background: #c95a93;
}

.tech-transfer__heading {
  align-items: flex-start;
  margin-bottom: clamp(1.8rem, 3vw, 2.8rem);
}

.tech-transfer__heading h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.05rem;
  margin: 0;
}

.tech-transfer__heading h2 span {
  color: #173bd6;
  font-size: clamp(1.25rem, 2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: 0;
}

.tech-transfer__heading p {
  margin: 0.8rem 0 0;
  color: rgba(35, 45, 70, 0.68);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
}

.tech-transfer {
  display: grid;
  gap: clamp(1.35rem, 2.4vw, 2rem);
}

.tech-transfer-card,
.tech-transfer-logic {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 43, 86, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 16%, rgba(37, 54, 216, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 20px 58px rgba(20, 30, 68, 0.08);
}

.tech-transfer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: clamp(1.5rem, 3vw, 3.2rem);
  padding: clamp(1.7rem, 3vw, 2.25rem);
}

.tech-transfer-card__body {
  position: relative;
  z-index: 2;
}

.tech-transfer-card__year {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  margin-bottom: 1.25rem;
  padding: 0 1.35rem;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #2536d8 0%, #7a2deb 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(37, 54, 216, 0.22);
}

.tech-transfer-card h3,
.tech-transfer-logic h3 {
  margin: 0;
  color: #101829;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.tech-transfer-card__en {
  margin: 0.8rem 0 1.35rem;
  color: rgba(29, 42, 93, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.5;
}

.tech-transfer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.7rem;
}

.tech-transfer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(37, 54, 216, 0.28);
  border-radius: 0.4rem;
  color: #173bd6;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.tech-transfer-card__summary {
  max-width: 39rem;
  margin: 0;
  color: rgba(23, 29, 37, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.9;
}

.tech-transfer-map,
.tech-transfer-instrument {
  position: relative;
  min-height: 17rem;
  align-self: stretch;
}

.tech-transfer-map__world {
  position: absolute;
  inset: 0.5rem 0 0;
  opacity: 0.65;
  background:
    radial-gradient(ellipse at 30% 52%, rgba(149, 168, 201, 0.34) 0 10%, transparent 10.4%),
    radial-gradient(ellipse at 43% 39%, rgba(149, 168, 201, 0.24) 0 8%, transparent 8.4%),
    radial-gradient(ellipse at 56% 48%, rgba(149, 168, 201, 0.26) 0 13%, transparent 13.4%),
    radial-gradient(ellipse at 68% 58%, rgba(149, 168, 201, 0.22) 0 9%, transparent 9.4%),
    radial-gradient(ellipse at 78% 68%, rgba(149, 168, 201, 0.2) 0 7%, transparent 7.4%);
  filter: blur(0.2px);
}

.tech-transfer-map__region,
.tech-transfer-map__flag {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.tech-transfer-map__region--france {
  left: 18%;
  top: 39%;
  width: 4.4rem;
  height: 4rem;
  clip-path: polygon(20% 9%, 70% 0, 95% 34%, 82% 78%, 43% 100%, 8% 76%, 0 30%);
  background: #143cc9;
  box-shadow: 0 14px 26px rgba(20, 60, 201, 0.22);
}

.tech-transfer-map__region--china {
  right: 10%;
  bottom: 21%;
  width: 7.4rem;
  height: 5.2rem;
  clip-path: polygon(8% 41%, 20% 17%, 39% 21%, 54% 5%, 66% 21%, 86% 16%, 100% 36%, 89% 57%, 93% 78%, 69% 89%, 46% 100%, 29% 85%, 11% 78%, 0 58%);
  background: linear-gradient(135deg, #e92c2c, #ff453d);
  box-shadow: 0 16px 30px rgba(233, 44, 44, 0.22);
}

.tech-transfer-map__flag {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 10px 26px rgba(20, 30, 68, 0.18);
}

.tech-transfer-map__flag--france {
  top: 15%;
  left: 54%;
  background: linear-gradient(90deg, #2547cf 0 33%, #fff 33% 66%, #e53b3b 66%);
}

.tech-transfer-map__flag--china {
  right: 23%;
  bottom: 3%;
  background:
    radial-gradient(circle at 34% 34%, #ffd356 0 7%, transparent 8%),
    radial-gradient(circle at 52% 23%, #ffd356 0 3%, transparent 4%),
    radial-gradient(circle at 58% 36%, #ffd356 0 3%, transparent 4%),
    #e82d2d;
}

.tech-transfer-map__routes {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  pointer-events: none;
}

.tech-transfer-map__routes path {
  stroke: #5a34e6;
  stroke-width: 2;
  stroke-dasharray: 8 6;
}

.tech-transfer-instrument {
  min-height: 16.5rem;
}

.tech-transfer-instrument__source,
.tech-transfer-instrument__lens,
.tech-transfer-instrument__detector,
.tech-transfer-instrument__sample {
  position: absolute;
  z-index: 2;
}

.tech-transfer-instrument__source {
  left: 10%;
  top: 12%;
  width: 9rem;
  height: 8.4rem;
  border: 1px solid rgba(37, 54, 216, 0.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.56), rgba(37,54,216,0.08)),
    repeating-linear-gradient(90deg, rgba(30,48,120,0.09) 0 0.65rem, transparent 0.65rem 1.3rem);
  transform: perspective(20rem) rotateY(-20deg) rotateX(8deg);
  box-shadow: 0 18px 40px rgba(23, 40, 90, 0.14);
}

.tech-transfer-instrument__source::after {
  content: "";
  position: absolute;
  inset: 2.4rem 2rem;
  border-radius: 999px;
  background: radial-gradient(circle, #a91bec, #2536d8 62%, rgba(37,54,216,0.15));
}

.tech-transfer-instrument__lens {
  top: 39%;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 2px solid rgba(15, 139, 171, 0.68);
  background: rgba(255, 255, 255, 0.66);
}

.tech-transfer-instrument__lens--a { left: 52%; }
.tech-transfer-instrument__lens--b { left: 64%; }

.tech-transfer-instrument__beam {
  position: absolute;
  left: 23%;
  right: 16%;
  top: 47%;
  height: 0.18rem;
  z-index: 3;
  background: linear-gradient(90deg, transparent, #a91bec 22%, #ff31d2 63%, transparent);
  box-shadow: 0 0 18px rgba(169, 27, 236, 0.5);
  transform: rotate(-11deg);
}

.tech-transfer-instrument__detector {
  right: 5%;
  top: 18%;
  width: 4.6rem;
  height: 4.6rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(80, 104, 166, 0.65), transparent 26%),
    linear-gradient(135deg, #0e172d, #28334b);
  box-shadow: 0 18px 36px rgba(14, 23, 45, 0.22);
  transform: rotate(-7deg);
}

.tech-transfer-instrument__sample {
  right: 15%;
  bottom: 16%;
  display: flex;
  gap: 0.3rem;
  align-items: flex-end;
}

.tech-transfer-instrument__sample span {
  display: block;
  width: 1.25rem;
  height: 5.5rem;
  border: 1px solid rgba(20, 30, 68, 0.18);
  background: #d8dde8;
  box-shadow: 0 10px 22px rgba(20, 30, 68, 0.12);
}

.tech-transfer-instrument__sample span:nth-child(2) { background: #f6a63d; height: 6.1rem; }
.tech-transfer-instrument__sample span:nth-child(3) { background: #2d9fba; height: 6.5rem; }
.tech-transfer-instrument__sample span:nth-child(4) { background: #384968; height: 7rem; }

.tech-transfer-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: clamp(0.8rem, 1.8vw, 1.8rem);
  margin-top: 0.6rem;
  padding-top: clamp(1.4rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(24, 43, 86, 0.14);
}

.tech-transfer-flow__item,
.tech-transfer-logic__steps div {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.tech-transfer-flow__item strong,
.tech-transfer-logic__steps strong {
  color: #101829;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.3;
}

.tech-transfer-flow__item small,
.tech-transfer-logic__steps small {
  max-width: 12rem;
  color: rgba(35, 45, 70, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.tech-transfer-flow__arrow,
.tech-transfer-logic__steps > span {
  align-self: center;
  color: #173bd6;
  font-size: 1.55rem;
  font-weight: 900;
}

.tech-transfer-flow__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  color: #173bd6;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

.tech-transfer-flow__icon::before,
.tech-transfer-flow__icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.tech-transfer-flow__icon--institution::before {
  width: 2.25rem;
  height: 1.5rem;
  border: 0.32rem solid currentColor;
  border-top: 0;
  bottom: 0.8rem;
}

.tech-transfer-flow__icon--institution::after {
  width: 2.4rem;
  height: 1.3rem;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  top: 0.7rem;
}

.tech-transfer-flow__icon--water::before {
  width: 2rem;
  height: 1.3rem;
  border: 0.2rem solid currentColor;
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
  bottom: 0.95rem;
}

.tech-transfer-flow__icon--water::after {
  width: 1.9rem;
  height: 1.1rem;
  border-top: 0.24rem solid currentColor;
  border-radius: 50%;
  top: 1rem;
}

.tech-transfer-flow__icon--people::before {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: currentColor;
  top: 0.78rem;
  box-shadow: -0.85rem 0.75rem 0 -0.1rem currentColor, 0.85rem 0.75rem 0 -0.1rem currentColor;
}

.tech-transfer-flow__icon--people::after {
  width: 2.4rem;
  height: 1.15rem;
  border: 0.28rem solid currentColor;
  border-bottom: 0;
  border-radius: 1.3rem 1.3rem 0 0;
  bottom: 0.72rem;
}

.tech-transfer-flow__icon--growth::before {
  width: 2.1rem;
  height: 2rem;
  border-left: 0.35rem solid currentColor;
  border-bottom: 0.35rem solid currentColor;
  left: 0.85rem;
  bottom: 0.85rem;
}

.tech-transfer-flow__icon--growth::after {
  width: 1.65rem;
  height: 1.65rem;
  border-top: 0.32rem solid currentColor;
  border-right: 0.32rem solid currentColor;
  right: 0.85rem;
  top: 0.8rem;
  transform: rotate(0deg);
}

.tech-transfer-flow__icon--monitor::before {
  width: 2.1rem;
  height: 1.45rem;
  border: 0.22rem solid currentColor;
  top: 1rem;
}

.tech-transfer-flow__icon--monitor::after {
  width: 1.4rem;
  height: 0.24rem;
  background: currentColor;
  bottom: 0.82rem;
}

.tech-transfer-flow__icon--gear::before {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 0.42rem solid currentColor;
}

.tech-transfer-flow__icon--flask {
  color: #7a2deb;
}

.tech-transfer-flow__icon--flask::before {
  width: 1.8rem;
  height: 2.25rem;
  border: 0.25rem solid currentColor;
  border-top: 0;
  border-radius: 0 0 1.1rem 1.1rem;
  bottom: 0.72rem;
  clip-path: polygon(28% 0, 72% 0, 72% 34%, 100% 100%, 0 100%, 28% 34%);
}

.tech-transfer-flow__icon--flask::after {
  width: 1rem;
  height: 0.25rem;
  background: currentColor;
  top: 0.72rem;
}

.tech-transfer-flow__icon--teal {
  color: #0f8b9d;
}

.tech-transfer-logic {
  padding: clamp(1.25rem, 2.6vw, 1.9rem);
}

.tech-transfer-logic h3 {
  margin-bottom: 1.25rem;
  color: #173bd6;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.tech-transfer-logic__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
  align-items: center;
}

.tech-transfer-logic__steps div {
  justify-items: start;
  text-align: left;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
}

.tech-transfer-logic__steps .tech-transfer-flow__icon {
  grid-row: span 2;
  width: 3rem;
  height: 3rem;
}

.tech-transfer-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(19, 47, 165, 0.98), rgba(37, 54, 216, 0.95)),
    #2536d8;
  color: #fff;
  box-shadow: 0 22px 60px rgba(37, 54, 216, 0.22);
}

.tech-transfer-quote p {
  position: relative;
  margin: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.8;
}

.tech-transfer-quote p + p {
  padding-left: clamp(1.2rem, 3vw, 2.2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.honors-wall {
  display: grid;
  gap: clamp(1.4rem, 2.6vw, 2rem);
}

.honors-wall__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(24, 43, 86, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 56px rgba(20, 30, 68, 0.08);
}

.honors-stat {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 8.25rem;
  padding: 1.25rem 1rem;
  text-align: center;
}

.honors-stat + .honors-stat {
  border-left: 1px solid rgba(24, 43, 86, 0.1);
}

.honors-stat strong {
  margin-top: 0.45rem;
  color: #2536d8;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  line-height: 1;
}

.honors-stat span:not(.honors-icon) {
  margin-top: 0.55rem;
  color: #172033;
  font-size: 0.82rem;
  font-weight: 800;
}

.honors-stat small {
  margin-top: 0.18rem;
  color: rgba(35, 45, 70, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
}

.honors-icon {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: #2536d8;
}

.honors-icon::before,
.honors-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.honors-icon--trophy::before {
  inset: 0.22rem 0.35rem 0.75rem;
  border: 0.16rem solid currentColor;
  border-radius: 0.18rem 0.18rem 0.45rem 0.45rem;
}

.honors-icon--trophy::after {
  left: 0.78rem;
  bottom: 0.08rem;
  width: 0.46rem;
  height: 0.8rem;
  border-bottom: 0.16rem solid currentColor;
  border-left: 0.16rem solid currentColor;
  border-right: 0.16rem solid currentColor;
}

.honors-icon--medal::before {
  left: 0.45rem;
  top: 0.1rem;
  width: 1.1rem;
  height: 1.1rem;
  border: 0.16rem solid currentColor;
  border-radius: 999px;
}

.honors-icon--medal::after {
  left: 0.52rem;
  bottom: 0.05rem;
  width: 0.95rem;
  height: 0.9rem;
  border-left: 0.16rem solid currentColor;
  border-right: 0.16rem solid currentColor;
  transform: skewX(-12deg);
}

.honors-icon--people::before {
  top: 0.35rem;
  left: 0.75rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: -0.68rem 0.5rem 0 -0.08rem currentColor, 0.68rem 0.5rem 0 -0.08rem currentColor;
}

.honors-icon--people::after {
  left: 0.23rem;
  bottom: 0.28rem;
  width: 1.55rem;
  height: 0.85rem;
  border: 0.16rem solid currentColor;
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
}

.honors-icon--certificate::before {
  inset: 0.12rem 0.45rem 0.2rem;
  border: 0.16rem solid currentColor;
  border-radius: 0.12rem;
}

.honors-icon--certificate::after {
  right: 0.25rem;
  bottom: 0.08rem;
  width: 0.66rem;
  height: 0.66rem;
  border: 0.14rem solid currentColor;
  border-radius: 999px;
  background: #fff;
}

.honors-wall__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
}

.honors-wall__head h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0;
  color: #101829;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.honors-wall__head h3 span {
  color: #173bd6;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.honors-wall__filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.honors-wall__filters button {
  min-height: 2rem;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(35, 45, 70, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.honors-wall__filters button.is-active {
  background: #2536d8;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 54, 216, 0.22);
}

.honors-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  min-height: 2.4rem;
  padding-inline: 1.2rem 2.4rem;
}

.honors-timeline::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 2.4rem;
  top: 1.55rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 54, 216, 0.12), rgba(37, 54, 216, 0.55), rgba(37, 54, 216, 0.12));
}

.honors-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  color: #2536d8;
  font-size: 0.72rem;
  font-weight: 800;
}

.honors-timeline span::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #2536d8;
  box-shadow: 0 0 0 0.18rem #fff;
}

.honors-timeline i {
  position: absolute;
  right: 0.7rem;
  top: 1.08rem;
  width: 1.3rem;
  height: 1.3rem;
  border-top: 1.5px solid rgba(37, 54, 216, 0.35);
  border-right: 1.5px solid rgba(37, 54, 216, 0.35);
  transform: rotate(45deg);
}

.honors-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
}

.honor-card {
  overflow: hidden;
  border: 1px solid rgba(24, 43, 86, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(20, 30, 68, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.honor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 54, 216, 0.32);
  box-shadow: 0 20px 52px rgba(37, 54, 216, 0.13);
}

.honor-card__certificate {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 10.4rem;
  padding: 1.1rem;
  border-bottom: 1px solid rgba(24, 43, 86, 0.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(237, 242, 255, 0.8)),
    repeating-linear-gradient(0deg, transparent 0 0.72rem, rgba(37, 54, 216, 0.035) 0.72rem 0.76rem);
}

.honor-card__certificate::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(37, 54, 216, 0.16);
}

.honor-card__certificate strong {
  position: relative;
  z-index: 1;
  max-width: 8.5rem;
  color: rgba(20, 30, 68, 0.68);
  font-size: 0.74rem;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.honor-card__certificate small {
  position: relative;
  z-index: 1;
  max-width: 8rem;
  margin-top: 0.65rem;
  color: rgba(35, 45, 70, 0.46);
  font-size: 0.58rem;
  line-height: 1.35;
  text-align: center;
}

.honor-card__certificate--award {
  background:
    radial-gradient(circle at 75% 18%, rgba(218, 165, 32, 0.25), transparent 4rem),
    linear-gradient(135deg, #fffdf5, #f5ead2);
}

.honor-card__certificate--appreciation,
.honor-card__certificate--training {
  background:
    radial-gradient(circle at 50% 18%, rgba(37, 54, 216, 0.12), transparent 4.5rem),
    linear-gradient(135deg, #fff, #f3f5fb);
}

.honor-card__certificate--professional {
  background:
    radial-gradient(circle at 76% 22%, rgba(218, 165, 32, 0.2), transparent 4rem),
    linear-gradient(135deg, #fffaf0, #f5f0e6);
}

.honor-card__seal {
  position: absolute;
  right: 1.15rem;
  bottom: 1rem;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  border: 0.18rem solid rgba(218, 165, 32, 0.64);
  background: rgba(255, 255, 255, 0.72);
}

.honor-card__body {
  padding: 1rem;
}

.honor-card time {
  display: block;
  color: #2536d8;
  font-size: 0.72rem;
  font-weight: 900;
}

.honor-card h4 {
  min-height: 2.85rem;
  margin: 0.45rem 0 0;
  color: #101829;
  font-size: 0.9rem;
  line-height: 1.35;
}

.honor-card p {
  min-height: 2.5rem;
  margin: 0.45rem 0 0.8rem;
  color: rgba(35, 45, 70, 0.68);
  font-size: 0.76rem;
  line-height: 1.55;
}

.honor-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.honor-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(37, 54, 216, 0.08);
  color: #2536d8;
  font-size: 0.68rem;
  font-weight: 800;
}

.honors-wall__actions {
  display: flex;
  justify-content: center;
}

.honors-wall__actions .button {
  min-width: 11rem;
  justify-content: center;
}

.founder-gantt__legend-dot--study {
  background: #ffb300;
}

.founder-gantt__legend-dot--intlorg {
  background: #18a6a6;
}

.founder-gantt__legend-dot--career {
  background: #1c68e6;
}

.founder-gantt__legend-dot--milestone {
  background: linear-gradient(180deg, #505766, #2b3240);
}

.founder-gantt__age-axis {
  position: relative;
  height: 4rem;
}

.founder-gantt__axis-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 2.2rem;
  height: 2px;
  background: rgba(38, 47, 64, 0.28);
}

.founder-gantt__age-tick {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.founder-gantt__age-tick span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(23, 29, 37, 0.88);
}

.founder-gantt__age-tick::after {
  content: "";
  position: absolute;
  top: 2.62rem;
  left: 50%;
  width: 1px;
  height: 16px;
  background: rgba(26, 39, 58, 0.18);
  transform: translateX(-50%);
}

.founder-gantt__age-unit {
  position: absolute;
  top: 0.05rem;
  right: -2rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(23, 29, 37, 0.78);
}

.founder-gantt__body {
  position: relative;
  margin-top: 0.25rem;
  padding: 0.3rem 0 1.8rem;
}

.founder-gantt__grid {
  position: absolute;
  inset: 0 0 2rem;
  pointer-events: none;
}

.founder-gantt__grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px dashed rgba(26, 39, 58, 0.16);
  transform: translateX(-50%);
}

.founder-gantt__rows {
  display: grid;
  gap: 0.34rem;
}

.founder-gantt__row {
  position: relative;
  min-height: 2.5rem;
}

.founder-gantt__row-track {
  position: relative;
  min-height: 2.5rem;
}

.founder-gantt__bar-wrap {
  position: absolute;
  top: 0.62rem;
  min-width: 4.4rem;
}

.founder-gantt__bar {
  position: relative;
  width: 100%;
  min-height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 12px 24px rgba(16, 26, 52, 0.08);
}

.founder-gantt__bar--family {
  background: linear-gradient(135deg, #cb6a9b 0%, #c84f91 100%);
}

.founder-gantt__bar--study {
  background: linear-gradient(135deg, #ffc53a 0%, #ffab00 100%);
}

.founder-gantt__bar--intlorg {
  background: linear-gradient(135deg, #27c1bf 0%, #1587a7 100%);
}

.founder-gantt__bar--career {
  background: linear-gradient(135deg, #2e86ff 0%, #1a5be0 100%);
}

.founder-gantt__side {
  position: absolute;
  top: calc(0.62rem + 0.6rem);
  transform: translateY(-50%);
  max-width: min(25rem, 23vw);
}

.founder-gantt__side--left {
  text-align: right;
}

.founder-gantt__side--right {
  text-align: left;
}

.founder-gantt__side--text {
  display: inline-flex;
  align-items: center;
  min-height: 1.2rem;
}

.founder-gantt__side--logo {
  display: inline-flex;
  align-items: center;
  min-height: 1.2rem;
}

.founder-gantt__logos {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  flex-wrap: nowrap;
}

.founder-gantt__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  min-height: 1.2rem;
}

.founder-gantt__logo img {
  display: block;
  max-width: 5rem;
  max-height: 1.2rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.founder-gantt__title {
  display: inline-flex;
  align-items: center;
  min-height: 1.2rem;
}

.founder-gantt__title--single {
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.founder-gantt__milestones {
  position: relative;
  margin-top: 0.8rem;
  padding-top: 1.8rem;
  min-height: 11rem;
  border-top: 1px solid rgba(26, 39, 58, 0.18);
}

.founder-gantt__milestone-axis {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(26, 39, 58, 0.18);
}

.founder-gantt__year-tick {
  position: absolute;
  top: 7.4rem;
  transform: translateX(-50%);
}

.founder-gantt__year-tick span {
  display: inline-flex;
  justify-content: center;
  min-width: 2.6rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(23, 29, 37, 0.9);
}

.founder-gantt__milestone {
  position: absolute;
  top: 1rem;
  width: min(10.5rem, 13.5vw);
  transform: translateX(-50%);
  display: grid;
  gap: 0.22rem;
}

.founder-gantt__milestone i {
  display: block;
  width: 0.42rem;
  height: 1.7rem;
  background: rgba(38, 47, 64, 0.76);
}

.founder-gantt__milestone strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text);
}

.founder-gantt__milestone h3 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.38;
  color: rgba(23, 29, 37, 0.88);
}

.founder-gantt__milestone p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(23, 29, 37, 0.64);
}

.founder-gantt__milestone--reverse {
  transform: translateX(-100%);
}

.founder-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 4vw, 4.75rem);
  align-items: stretch;
}

.founder-stage__copy {
  display: grid;
  align-content: start;
  gap: 1.25rem;
  padding-top: 0.2rem;
}

.founder-stage__copy > p {
  max-width: 36rem;
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.88;
  color: rgba(23, 29, 37, 0.82);
}

.detail-list--founder {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}

.detail-list--founder li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(23, 29, 37, 0.82);
  font-size: 1rem;
  line-height: 1.82;
}

.detail-list--founder li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  background: linear-gradient(135deg, #2be5d1 0%, #46a2ff 100%);
  transform: rotate(45deg);
}

.founder-stage__visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 2rem;
  border: 1px solid rgba(37, 54, 216, 0.18);
  box-shadow: 0 26px 60px rgba(16, 26, 52, 0.08);
}

.founder-stage__visual-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 24%, rgba(31, 208, 208, 0.36), transparent 20%),
    radial-gradient(circle at 75% 20%, rgba(108, 142, 255, 0.16), transparent 24%),
    linear-gradient(150deg, rgba(9, 14, 38, 0.98), rgba(37, 54, 216, 0.88));
}

.founder-stage__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
}

.founder-stage__route {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
}

.founder-stage__portrait-wrap {
  position: absolute;
  right: -1rem;
  bottom: 0;
  width: min(50%, 360px);
  height: 94%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.founder-stage__portrait {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(6, 10, 32, 0.3));
}

.founder-stage__stats {
  position: relative;
  z-index: 1;
  width: min(66%, 430px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.founder-stage__stats .profile-item {
  min-height: 108px;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, 0.94);
}

.founder-stage__stats .profile-item small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.founder-stage__stats .profile-item strong {
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.34;
  color: rgba(255, 255, 255, 0.96);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.team-shell {
  display: grid;
  gap: var(--space-6);
}

.team-intro {
  display: grid;
  gap: var(--space-4);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(26, 39, 58, 0.16);
}

.team-founder {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 0;
  border: 1px solid rgba(37, 54, 216, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.92));
  overflow: hidden;
  min-height: 420px;
}

.team-founder__portrait {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 22%, rgba(31, 208, 208, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(9, 14, 38, 0.98), rgba(37, 54, 216, 0.9));
}

.team-founder__portrait img {
  position: absolute;
  right: -0.8rem;
  bottom: 0;
  width: 82%;
  max-width: 360px;
  display: block;
}

.team-founder__body {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 1.8rem 1.9rem 1.9rem;
}

.team-founder__name,
.team-founder__title,
.team-founder__specialty,
.team-founder__summary {
  margin: 0;
}

.team-founder__name {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.team-founder__title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(23, 29, 37, 0.88);
}

.team-founder__specialty {
  color: rgba(37, 54, 216, 0.82);
  font-size: 0.96rem;
}

.team-founder__summary {
  color: rgba(23, 29, 37, 0.76);
  font-size: 1rem;
  line-height: 1.78;
}

.team-founder__list {
  margin-top: 0.55rem;
}

.team-intro--history {
  gap: 1.35rem;
}

.team-intro--history .section-heading {
  margin-bottom: 2.25rem;
}

.team-founder--feature {
  grid-template-columns: minmax(21rem, 0.92fr) minmax(0, 1.25fr);
  min-height: 21rem;
  overflow: visible;
  border-color: rgba(37, 54, 216, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(16, 24, 54, 0.12);
}

.team-founder--feature .team-founder__portrait {
  overflow: visible;
  min-height: 21rem;
  border-radius: 8px 0 0 8px;
  background:
    radial-gradient(circle at 51% 73%, rgba(255, 255, 255, 0.3), transparent 0 1px, transparent 13%),
    radial-gradient(circle at 58% 72%, rgba(51, 151, 255, 0.92), transparent 0 2px, transparent 18%),
    radial-gradient(circle at 20% 26%, rgba(31, 208, 208, 0.25), transparent 24%),
    linear-gradient(135deg, rgba(7, 13, 44, 0.99), rgba(21, 47, 173, 0.98) 58%, rgba(37, 77, 255, 0.92));
}

.team-founder__portrait-copy {
  position: absolute;
  left: 2.4rem;
  top: 4.6rem;
  z-index: 3;
  color: #ffffff;
}

.team-founder__portrait-copy p,
.team-founder__portrait-copy strong,
.team-founder__portrait-copy span {
  display: block;
  margin: 0;
}

.team-founder__portrait-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-founder__portrait-copy i {
  display: block;
  width: 1.8rem;
  height: 2px;
  margin: 0.62rem 0 1.2rem;
  background: rgba(103, 230, 255, 0.86);
}

.team-founder__portrait-copy strong {
  font-size: clamp(2rem, 3.1vw, 3.05rem);
  line-height: 1;
  font-weight: 900;
}

.team-founder__portrait-copy span {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 700;
}

.team-founder__watermark {
  position: absolute;
  left: 1.7rem;
  bottom: 1.2rem;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 1;
}

.team-founder--feature .team-founder__portrait img {
  right: -0.35rem;
  bottom: 0;
  z-index: 4;
  width: min(71%, 24rem);
  max-width: none;
  filter: drop-shadow(0 24px 34px rgba(4, 9, 31, 0.32));
}

.team-founder--feature .team-founder__body {
  align-content: center;
  gap: 1.35rem;
  padding: 2.3rem 2.8rem;
  border-radius: 0 8px 8px 0;
  background:
    radial-gradient(circle at 96% 0%, rgba(37, 54, 216, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.95));
}

.team-founder__capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.team-founder__capabilities span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  color: rgba(37, 54, 216, 0.92);
  background: rgba(37, 54, 216, 0.065);
  font-size: 0.78rem;
  font-weight: 850;
}

.team-founder__capabilities .team-org-icon {
  width: 1rem;
  height: 1rem;
}

.team-founder--feature .team-founder__summary {
  max-width: 42rem;
  color: rgba(23, 29, 37, 0.78);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.95;
}

.team-founder__role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.82rem;
  margin-top: 0.25rem;
}

.team-founder__role-grid article {
  display: grid;
  place-items: center;
  gap: 0.42rem;
  min-height: 7.2rem;
  padding: 0.85rem 0.65rem;
  border: 1px solid rgba(37, 54, 216, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-founder__role-grid article:hover {
  border-color: rgba(37, 54, 216, 0.36);
  box-shadow: 0 16px 32px rgba(37, 54, 216, 0.1);
  transform: translateY(-1px);
}

.team-founder__role-grid .team-org-icon {
  width: 2.05rem;
  height: 2.05rem;
  color: rgba(37, 54, 216, 0.92);
}

.team-founder__role-grid strong,
.team-founder__role-grid span {
  display: block;
}

.team-founder__role-grid strong {
  color: rgba(17, 24, 39, 0.9);
  font-size: 0.72rem;
  line-height: 1.25;
}

.team-founder__role-grid span {
  color: rgba(75, 86, 106, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
}

.team-section-summary {
  max-width: 62rem;
  margin: -0.7rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(23, 29, 37, 0.76);
}

.team-stage {
  display: grid;
  gap: var(--space-5);
}

.team-stage + .team-stage {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(26, 39, 58, 0.16);
}

.team-tabs {
  --team-tab-line-end: 0px;
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  align-items: flex-end;
  padding-bottom: 0.12rem;
  position: relative;
  scrollbar-width: thin;
}

.team-tabs::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--team-tab-line-end);
  height: 3px;
  background: var(--color-accent);
  transition: width var(--transition-medium);
}

.team-tab {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  min-height: 2.8rem;
  padding: 0 0 0.18rem;
  border: 0;
  background: transparent;
  color: rgba(101, 112, 124, 0.9);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: left;
}

.team-tab.is-active {
  color: var(--color-accent);
}

.team-tab__index {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(37, 54, 216, 0.52);
  padding-top: 0.06rem;
}

.team-tab__text {
  display: flex;
  align-items: start;
}

.team-tab__label {
  line-height: 1.08;
}

.team-tab__dot {
  color: rgba(37, 54, 216, 0.76);
}

.team-tab__sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(37, 54, 216, 0.72);
  line-height: 1.08;
}

.team-panel {
  display: grid;
  gap: var(--space-5);
  padding-top: 0.35rem;
}

.team-group-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: 0;
  padding-top: 0.55rem;
}

.team-group-meta h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.35;
  max-width: 46rem;
}

.team-group-meta__summary {
  margin: 0.42rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(23, 29, 37, 0.7);
}

.team-group-meta__count {
  margin: 0.08rem 0 0;
  color: rgba(101, 112, 124, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.team-grid--compact {
  grid-template-columns: minmax(0, 420px);
}

.team-card {
  position: relative;
  min-height: 100%;
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(37, 54, 216, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 255, 0.94));
  box-shadow: 0 14px 28px rgba(16, 26, 52, 0.04);
}

.team-card--chief::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(31, 208, 208, 0.95), rgba(86, 139, 255, 0.95), rgba(37, 54, 216, 0.95));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.team-card--lead {
  grid-column: span 2;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 0;
  overflow: hidden;
  min-height: 400px;
  padding: 0;
}

.team-card__avatar {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  background:
    radial-gradient(circle at 24% 24%, rgba(31, 208, 208, 0.35), transparent 28%),
    linear-gradient(135deg, rgba(9, 14, 38, 0.96), rgba(37, 54, 216, 0.9));
}

.team-card__avatar--portrait {
  min-height: 100%;
}

.team-card__avatar--portrait img {
  position: absolute;
  right: -0.9rem;
  bottom: 0;
  width: 84%;
  max-width: 320px;
  display: block;
}

.team-card__avatar--glyph {
  display: grid;
  place-items: center;
}

.team-card__avatar--glyph span {
  font-size: clamp(1.72rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.team-card__avatar--tone-1 {
  background: linear-gradient(135deg, rgba(11, 19, 47, 0.98), rgba(37, 54, 216, 0.96));
}

.team-card__avatar--tone-2 {
  background: linear-gradient(135deg, rgba(15, 28, 64, 0.98), rgba(31, 208, 208, 0.74));
}

.team-card__avatar--tone-3 {
  background: linear-gradient(135deg, rgba(26, 36, 88, 0.98), rgba(140, 32, 232, 0.8));
}

.team-card__avatar--tone-4 {
  background: linear-gradient(135deg, rgba(17, 26, 68, 0.98), rgba(67, 118, 255, 0.84));
}

.team-card__avatar--tone-5 {
  background: linear-gradient(135deg, rgba(10, 17, 42, 0.98), rgba(67, 186, 255, 0.72));
}

.team-card__avatar--tone-6 {
  background: linear-gradient(135deg, rgba(18, 29, 72, 0.98), rgba(86, 139, 255, 0.86));
}

.team-card__body {
  display: grid;
  gap: 0.38rem;
}

.team-card__role {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(37, 54, 216, 0.74);
}

.team-card h4 {
  margin: 0;
  font-size: clamp(1.02rem, 1.32vw, 1.24rem);
  line-height: 1.16;
}

.team-card__title,
.team-card__specialty,
.team-card__duty {
  margin: 0;
}

.team-card__title {
  font-size: 0.88rem;
  color: rgba(23, 29, 37, 0.86);
  font-weight: 700;
}

.team-card__specialty {
  font-size: 0.82rem;
  color: rgba(37, 54, 216, 0.8);
}

.team-card__duty {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(23, 29, 37, 0.74);
}

.team-org-section {
  display: grid;
  gap: var(--space-5);
}

.team-org-board {
  --team-org-blue: #3145f4;
  --team-org-green: #229954;
  --team-org-purple: #6446f0;
  --team-org-red: #df3e46;
  --team-org-teal: #25a6a6;
  --team-org-amber: #df8a22;
  --team-org-slate: #6d83ad;
  --team-org-brown: #9a765d;
  display: grid;
  gap: 1.35rem;
  padding: 1.25rem;
  border: 1px solid rgba(37, 54, 216, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 9% 6%, rgba(87, 72, 255, 0.08), transparent 0 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
  box-shadow: 0 22px 54px rgba(22, 31, 72, 0.07);
}

.team-org-icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-org-civilizations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.team-org-civilization {
  --civilization-accent: var(--team-org-blue);
  min-width: 0;
  min-height: 5.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  position: relative;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(101, 112, 124, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(43, 53, 74, 0.86);
  text-align: left;
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.035);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-org-civilization:hover {
  border-color: color-mix(in srgb, var(--civilization-accent) 38%, #ffffff);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--civilization-accent) 10%, transparent);
  transform: translateY(-1px);
}

.team-org-civilization__logo {
  width: 3.45rem;
  height: 3.45rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.team-org-civilization__logo img {
  width: 3rem;
  height: 3rem;
  display: block;
  object-fit: contain;
}

.team-org-civilization__copy {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.team-org-civilization__copy strong,
.team-org-civilization__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-org-civilization__copy strong {
  color: currentColor;
  font-size: 1rem;
  line-height: 1.1;
}

.team-org-civilization__copy small {
  color: rgba(91, 101, 119, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.team-org-civilization__check {
  position: absolute;
  top: 0.66rem;
  right: 0.66rem;
  width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--civilization-accent);
  font-size: 0.76rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 180ms ease, transform 180ms ease;
}

.team-org-civilization.is-active {
  color: rgba(20, 27, 43, 0.94);
  border-color: var(--civilization-accent);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--civilization-accent) 18%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--civilization-accent) 7%, #ffffff), rgba(255, 255, 255, 0.96));
}

.team-org-civilization.is-active .team-org-civilization__logo {
  background: transparent;
}

.team-org-civilization.is-active .team-org-civilization__copy small {
  color: color-mix(in srgb, var(--civilization-accent) 72%, #323b52);
}

.team-org-civilization.is-active .team-org-civilization__check {
  opacity: 1;
  transform: scale(1);
}

.team-org-panel {
  display: grid;
  gap: 1.35rem;
}

.team-org-panel[hidden] {
  display: none;
}

.team-org-architecture-summary {
  --summary-accent: var(--team-org-blue);
  display: grid;
  grid-template-columns: 9rem minmax(12rem, 0.38fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 7.55rem;
  margin: -0.1rem 0 0.05rem;
  overflow: hidden;
  border: 1px solid rgba(101, 112, 124, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}

.team-org-architecture-summary__visual,
.team-org-architecture-summary__meta,
.team-org-architecture-summary__body {
  padding: 1rem;
}

.team-org-architecture-summary__visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--summary-accent) 18%, transparent), transparent 0 62%),
    linear-gradient(180deg, color-mix(in srgb, var(--summary-accent) 7%, #ffffff), rgba(255, 255, 255, 0.92));
}

.team-org-architecture-summary__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8));
}

.team-org-architecture-summary__visual img {
  position: relative;
  z-index: 1;
  width: 5.1rem;
  height: 5.1rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px color-mix(in srgb, var(--summary-accent) 22%, transparent));
}

.team-org-architecture-summary__meta {
  display: grid;
  align-content: center;
  gap: 0.38rem;
  border-right: 1px solid rgba(101, 112, 124, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.team-org-architecture-summary__meta strong {
  color: rgba(17, 24, 39, 0.96);
  font-size: 1.08rem;
  line-height: 1.15;
}

.team-org-architecture-summary__meta small {
  color: rgba(75, 86, 106, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.team-org-architecture-summary__meta span {
  width: max-content;
  max-width: 100%;
  margin-top: 0.16rem;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  color: color-mix(in srgb, var(--summary-accent) 82%, #101827);
  background: color-mix(in srgb, var(--summary-accent) 9%, #ffffff);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.team-org-architecture-summary__body {
  display: grid;
  align-content: center;
}

.team-org-architecture-summary__body p {
  margin: 0;
  color: rgba(35, 45, 66, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.78;
  text-wrap: pretty;
}

.team-org-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05rem;
}

.team-org-metric {
  min-height: 5.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.08rem;
  border: 1px solid rgba(101, 112, 124, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-org-metric__icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--team-org-blue);
  background: rgba(49, 69, 244, 0.12);
}

.team-org-metric__icon .team-org-icon {
  width: 1.6rem;
  height: 1.6rem;
  stroke-width: 2.4;
}

.team-org-metric p {
  margin: 0 0 0.26rem;
  color: rgba(76, 86, 104, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.team-org-metric strong {
  display: block;
  color: rgba(13, 18, 31, 0.96);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1;
}

.team-org-tone--green .team-org-metric__icon,
.team-org-tone--blue .team-org-metric__icon {
  color: #2269e8;
  background: rgba(34, 105, 232, 0.12);
}

.team-org-tone--violet .team-org-metric__icon {
  color: #7a4df3;
  background: rgba(122, 77, 243, 0.12);
}

.team-org-tone--orange .team-org-metric__icon {
  color: var(--team-org-amber);
  background: rgba(223, 138, 34, 0.13);
}

.team-org-provinces {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.95fr) auto minmax(0, 1.7fr);
  align-items: stretch;
  gap: 1rem;
}

.team-org-province,
.team-org-arch-stage,
.team-org-ministry {
  position: relative;
  min-width: 0;
  border: 1.5px solid rgba(49, 69, 244, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(16, 24, 54, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-org-province {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 17.25rem;
  padding: 0.95rem;
}

.team-org-architecture {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.team-org-arch-stage {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.85rem;
  min-height: 25rem;
  padding: 0.95rem;
}

.team-org-arch-stage__posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 0.85rem;
  min-height: 0;
}

.team-org-arch-stage__posts .team-org-post--wide {
  grid-column: 1 / -1;
}

.team-org-rome {
  display: grid;
  gap: 1.1rem;
}

.team-org-rome-primary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) auto minmax(0, 1.05fr) auto minmax(0, 0.95fr);
  align-items: stretch;
  gap: 0.95rem;
}

.team-org-rome-block {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 0.95rem;
  border: 1.5px solid rgba(49, 69, 244, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(16, 24, 54, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-org-rome-block:hover,
.team-org-rome-reserve:hover {
  border-color: color-mix(in srgb, var(--team-org-blue) 72%, #ffffff);
  box-shadow: 0 18px 42px rgba(49, 69, 244, 0.13), 0 0 0 3px color-mix(in srgb, var(--team-org-blue) 14%, transparent);
  transform: translateY(-1px);
}

.team-org-rome-consuls,
.team-org-rome-senate,
.team-org-rome-reserve__grid {
  display: grid;
  gap: 0.85rem;
}

.team-org-rome-consuls {
  grid-template-columns: 1fr;
}

.team-org-rome-senate {
  grid-template-columns: 1fr;
}

.team-org-rome-flow {
  align-self: center;
  color: rgba(52, 64, 110, 0.7);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
}

.team-org-rome-flow--senate {
  color: var(--team-org-amber);
}

.team-org-rome-veto {
  border-color: rgba(223, 62, 70, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 246, 0.82));
}

.team-org-rome-veto-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  align-self: end;
  margin-top: 0.85rem;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(223, 62, 70, 0.16);
  border-radius: 8px;
  color: var(--team-org-red);
  background: rgba(223, 62, 70, 0.07);
}

.team-org-rome-veto-alert > span {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(223, 62, 70, 0.1);
}

.team-org-rome-veto-alert .team-org-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.team-org-rome-veto-alert strong,
.team-org-rome-veto-alert small {
  display: block;
}

.team-org-rome-veto-alert strong {
  font-size: 0.8rem;
  line-height: 1.35;
}

.team-org-rome-veto-alert small {
  margin-top: 0.12rem;
  color: rgba(112, 35, 39, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
}

.team-org-rome-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: rgba(76, 86, 104, 0.84);
  font-size: 0.92rem;
  font-weight: 900;
}

.team-org-rome-divider span {
  border-top: 1px dashed rgba(101, 112, 124, 0.22);
}

.team-org-rome-reserve {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.team-org-rome-reserve__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-org-greece {
  display: grid;
  gap: 0.8rem;
}

.team-org-greece-layer,
.team-org-greece-supervision,
.team-org-greece-sidecar {
  min-width: 0;
  border: 1.5px solid rgba(21, 156, 130, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 255, 252, 0.84)),
    radial-gradient(circle at 10% 0%, rgba(21, 156, 130, 0.08), transparent 34%);
  box-shadow: 0 16px 36px rgba(15, 90, 77, 0.05);
}

.team-org-greece-layer {
  padding: 0.95rem;
}

.team-org-greece-layer__header {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  margin-bottom: 0.85rem;
}

.team-org-greece-layer__header > span {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: var(--team-org-green);
  font-size: 0.88rem;
  font-weight: 900;
}

.team-org-greece-layer__header h3 {
  display: flex;
  align-items: baseline;
  gap: 0.42rem;
  margin: 0;
  color: var(--team-org-green);
  font-size: 1rem;
  line-height: 1.2;
}

.team-org-greece-layer__header small {
  color: rgba(20, 83, 73, 0.76);
  font-size: 0.82rem;
}

.team-org-greece-citizens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.team-org-greece-board {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.25rem;
  margin-top: 0.82rem;
  border: 1px solid rgba(21, 156, 130, 0.18);
  border-radius: 6px;
  color: var(--team-org-green);
  background: rgba(21, 156, 130, 0.055);
  font-size: 0.84rem;
  font-weight: 850;
}

.team-org-greece-board .team-org-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.team-org-greece-flow {
  position: relative;
  height: 1.15rem;
}

.team-org-greece-flow::before,
.team-org-greece-flow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.team-org-greece-flow::before {
  top: -0.14rem;
  width: 1.5px;
  height: 1.1rem;
  background: rgba(21, 156, 130, 0.72);
}

.team-org-greece-flow::after {
  bottom: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid rgba(21, 156, 130, 0.72);
  border-bottom: 1.5px solid rgba(21, 156, 130, 0.72);
  transform: translateX(-50%) rotate(45deg);
}

.team-org-greece-deliberation {
  display: grid;
  grid-template-columns: 1fr 1.85fr 1fr 1fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.team-org-greece-process {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.62rem;
  align-content: center;
  min-height: 6.4rem;
  padding: 0.82rem;
  border: 1px solid rgba(21, 156, 130, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-org-greece-process:hover {
  border-color: rgba(21, 156, 130, 0.62);
  box-shadow: 0 16px 34px rgba(21, 156, 130, 0.11);
  transform: translateY(-1px);
}

.team-org-greece-process > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  color: var(--team-org-green);
  background: rgba(21, 156, 130, 0.08);
}

.team-org-greece-process strong {
  color: rgba(20, 83, 73, 0.96);
  font-size: 0.9rem;
  line-height: 1.35;
}

.team-org-greece-process p {
  margin: 0;
  color: rgba(45, 58, 77, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.58;
}

.team-org-greece-chair {
  min-width: 0;
}

.team-org-greece-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0.85rem;
  border-top: 1px solid rgba(21, 156, 130, 0.12);
}

.team-org-greece-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.5rem;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.62rem 0.8rem;
}

.team-org-greece-stat + .team-org-greece-stat {
  border-left: 1px solid rgba(21, 156, 130, 0.12);
}

.team-org-greece-stat > span {
  grid-row: span 2;
  color: var(--team-org-green);
}

.team-org-greece-stat small {
  color: rgba(75, 86, 106, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
}

.team-org-greece-stat strong {
  color: rgba(17, 24, 39, 0.92);
  font-size: 0.98rem;
  line-height: 1.2;
}

.team-org-greece-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(17rem, 0.82fr);
  gap: 1rem;
  align-items: stretch;
}

.team-org-greece-supervision,
.team-org-greece-sidecar {
  padding: 0.95rem;
}

.team-org-greece-supervision {
  border-color: rgba(49, 105, 244, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.84)),
    radial-gradient(circle at 10% 0%, rgba(49, 105, 244, 0.07), transparent 34%);
}

.team-org-greece-supervision .team-org-greece-layer__header > span {
  background: var(--team-org-blue);
}

.team-org-greece-supervision .team-org-greece-layer__header h3 {
  color: var(--team-org-blue);
}

.team-org-greece-supervision__posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.team-org-greece-sidecar {
  position: relative;
  border-style: dashed;
  border-color: rgba(101, 112, 124, 0.28);
  background: rgba(255, 255, 255, 0.76);
}

.team-org-greece-sidecar::before {
  content: "↔";
  position: absolute;
  left: -1.25rem;
  top: 50%;
  color: rgba(101, 112, 124, 0.45);
  font-weight: 900;
  transform: translateY(-50%);
}

.team-org-greece-sidecar__badge {
  display: block;
  width: max-content;
  margin: -0.25rem auto 0.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  color: rgba(75, 86, 106, 0.72);
  background: rgba(101, 112, 124, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
}

.team-org-greece .team-org-post:hover {
  border-color: rgba(21, 156, 130, 0.72);
  box-shadow: 0 18px 42px rgba(21, 156, 130, 0.12), 0 0 0 3px rgba(21, 156, 130, 0.08);
}

.team-org-greece .team-org-post__title strong,
.team-org-greece .team-org-power b {
  color: var(--team-org-green);
}

.team-org-egypt {
  position: relative;
  display: grid;
  gap: 0.58rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(223, 138, 34, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.8)),
    radial-gradient(circle at 50% 14%, rgba(255, 187, 84, 0.2), transparent 36%);
}

.team-org-egypt__pyramid {
  position: absolute;
  inset: 0.65rem 5.5rem 0.55rem 8.8rem;
  z-index: 0;
  pointer-events: none;
  opacity: 0.78;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(174, 112, 40, 0.12) 0 1px,
      transparent 1px 2.05rem
    ),
    linear-gradient(116deg, transparent 0 23%, rgba(247, 190, 103, 0.14) 23.3% 49.8%, transparent 50%),
    linear-gradient(64deg, transparent 0 23%, rgba(247, 190, 103, 0.14) 23.3% 49.8%, transparent 50%),
    linear-gradient(180deg, rgba(247, 190, 103, 0.28), rgba(247, 190, 103, 0.08));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.team-org-egypt-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 8.8rem minmax(0, 1fr);
  gap: 0.92rem;
  align-items: center;
  min-height: 7.1rem;
}

.team-org-egypt-row + .team-org-egypt-row {
  border-top: 1px solid rgba(223, 138, 34, 0.1);
  padding-top: 0.58rem;
}

.team-org-egypt-row__label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.32rem 0.55rem;
  min-height: 5.8rem;
  color: var(--team-org-amber);
  font-weight: 900;
}

.team-org-egypt-row__label > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
}

.team-org-egypt-row__label .team-org-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.team-org-egypt-row__label strong,
.team-org-egypt-row__label small {
  display: block;
  line-height: 1.35;
}

.team-org-egypt-row__label small {
  color: rgba(112, 70, 26, 0.88);
  font-size: 0.86rem;
}

.team-org-egypt-posts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--egypt-count, 1), minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.team-org-egypt-posts[data-count="1"] { --egypt-count: 1; max-width: 17.5rem; margin-inline: auto; }
.team-org-egypt-posts[data-count="2"] { --egypt-count: 2; max-width: 35.5rem; margin-inline: auto; }
.team-org-egypt-posts[data-count="3"] { --egypt-count: 3; }
.team-org-egypt-posts[data-count="4"] { --egypt-count: 4; }

.team-org-egypt-row:not(:first-child) .team-org-egypt-posts::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -0.58rem;
  height: 0.58rem;
  border-top: 1.5px solid rgba(223, 138, 34, 0.72);
  border-left: 1.5px solid rgba(223, 138, 34, 0.72);
  border-right: 1.5px solid rgba(223, 138, 34, 0.72);
  border-radius: 6px 6px 0 0;
}

.team-org-egypt-row:not(:first-child) .team-org-post::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.58rem;
  width: 0;
  height: 0.58rem;
  border-left: 1.5px solid rgba(223, 138, 34, 0.72);
  transform: translateX(-50%);
}

.team-org-egypt .team-org-post {
  border-color: rgba(223, 138, 34, 0.28);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 30px rgba(105, 58, 12, 0.055);
}

.team-org-egypt .team-org-post:hover {
  border-color: rgba(223, 138, 34, 0.78);
  box-shadow: 0 18px 42px rgba(223, 138, 34, 0.16), 0 0 0 3px rgba(223, 138, 34, 0.1);
}

.team-org-egypt .team-org-post__title strong,
.team-org-egypt .team-org-power b {
  color: var(--team-org-amber);
}

.team-org-province__header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.team-org-province__header > span {
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--team-org-blue);
  font-size: 1rem;
  font-weight: 900;
}

.team-org-province__header h3 {
  margin: 0;
  color: var(--team-org-blue);
  font-size: 1rem;
  line-height: 1.1;
}

.team-org-province__header small {
  margin-left: 0.42rem;
  color: rgba(91, 101, 119, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.team-org-province__posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 0.85rem;
  min-height: 0;
}

.team-org-tone--purple .team-org-province__posts {
  grid-template-rows: minmax(0, 0.86fr) minmax(0, 1fr);
}

.team-org-province:not(.team-org-tone--purple) .team-org-province__posts {
  grid-template-columns: 1fr;
}

.team-org-post {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.7rem;
  min-width: 0;
  min-height: 0;
  padding: 0.82rem 0.78rem;
  border: 1px solid rgba(49, 69, 244, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-org-post__jurisdiction-node {
  position: absolute;
  left: 50%;
  bottom: -1.12rem;
  z-index: 2;
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid rgba(100, 70, 240, 0.74);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(100, 70, 240, 0.08);
  transform: translateX(-50%);
}

.team-org-metric:hover,
.team-org-province:hover,
.team-org-arch-stage:hover,
.team-org-ministry:hover,
.team-org-post:hover {
  border-color: rgba(49, 69, 244, 0.72);
  border-color: color-mix(in srgb, var(--team-org-blue) 72%, #ffffff);
  box-shadow: 0 18px 42px rgba(49, 69, 244, 0.13), 0 0 0 3px rgba(49, 69, 244, 0.12);
  box-shadow: 0 18px 42px rgba(49, 69, 244, 0.13), 0 0 0 3px color-mix(in srgb, var(--team-org-blue) 14%, transparent);
  transform: translateY(-1px);
}

.team-org-post--wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.team-org-post__header,
.team-org-ministry__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(5.35rem, 0.72fr);
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.team-org-ministry__header {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.52rem;
}

.team-org-ministry__header .team-org-agent {
  width: min(8.2rem, 100%);
  justify-self: start;
}

.team-org-post__title {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
}

.team-org-post__header strong,
.team-org-ministry__header strong {
  min-width: 0;
  overflow: hidden;
  color: var(--team-org-blue);
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-org-post__avatar,
.team-org-ministry__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--team-org-blue);
}

.team-org-post__avatar .team-org-icon,
.team-org-ministry__icon .team-org-icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.4;
}

.team-org-agent {
  display: block;
  min-width: 0;
}

.team-org-agent select {
  width: 100%;
  min-width: 0;
  height: 2rem;
  padding: 0 1.8rem 0 0.66rem;
  border: 1px solid rgba(101, 112, 124, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(18, 24, 38, 0.88);
  font: inherit;
  font-size: 0.74rem;
  cursor: pointer;
}

.team-org-agent select:focus-visible {
  box-shadow: 0 0 0 3px rgba(49, 69, 244, 0.16);
  border-color: var(--team-org-blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--team-org-blue) 16%, transparent);
  outline: 0;
}

.team-org-duty-tags {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.36rem;
  min-height: 0;
}

.team-org-duty-tags span {
  max-width: 100%;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(84, 94, 113, 0.18);
  border-radius: 999px;
  color: rgba(50, 58, 72, 0.84);
  background: rgba(245, 247, 251, 0.9);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.team-org-duty-tags span:hover {
  border-color: color-mix(in srgb, var(--team-org-blue) 20%, transparent);
  color: color-mix(in srgb, var(--team-org-blue) 78%, #172033);
  background: color-mix(in srgb, var(--team-org-blue) 8%, #ffffff);
  transform: translateY(-1px);
}

.team-org-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
  margin-top: auto;
}

.team-org-flow-arrow {
  align-self: center;
  color: rgba(52, 64, 110, 0.7);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
}

.team-org-jurisdiction {
  position: relative;
  min-height: 5.7rem;
  margin: -0.12rem 0 -0.36rem;
  color: var(--team-org-purple);
}

.team-org-jurisdiction__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.team-org-jurisdiction__route,
.team-org-jurisdiction__bus,
.team-org-jurisdiction__drop {
  fill: none;
  stroke: rgba(100, 70, 240, 0.72);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.team-org-jurisdiction__route {
  stroke-width: 2.2;
}

.team-org-jurisdiction__label {
  position: absolute;
  top: 2.18rem;
  z-index: 1;
  padding: 0.18rem 0.58rem;
  border: 1px solid rgba(100, 70, 240, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.team-org-jurisdiction__label--left {
  left: 25%;
}

.team-org-jurisdiction__label--right {
  left: 75%;
}

.team-org-ministry-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
}

.team-org-ministry-group {
  position: relative;
  display: grid;
  min-width: 0;
}

.team-org-ministries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.team-org-ministry {
  display: grid;
  gap: 0.72rem;
  min-height: 11.6rem;
  padding: 0.9rem;
}

.team-org-status {
  width: max-content;
  color: rgba(101, 112, 124, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
}

.team-org-status--active {
  color: var(--team-org-green);
}

.team-org-status--running {
  color: var(--team-org-blue);
}

.team-org-status--idle {
  color: rgba(101, 112, 124, 0.9);
}

.team-org-power {
  min-width: 0;
  color: rgba(82, 93, 116, 0.86);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.team-org-power b {
  color: color-mix(in srgb, var(--team-org-blue) 82%, #111827);
  font-size: 0.9rem;
}

.team-org-tone--green {
  --team-org-blue: var(--team-org-green);
  border-color: rgba(34, 153, 84, 0.34);
}

.team-org-tone--purple {
  --team-org-blue: var(--team-org-purple);
  border-color: rgba(100, 70, 240, 0.34);
}

.team-org-tone--teal {
  --team-org-blue: var(--team-org-teal);
  border-color: rgba(37, 166, 166, 0.28);
}

.team-org-tone--red {
  --team-org-blue: var(--team-org-red);
  border-color: rgba(223, 62, 70, 0.28);
}

.team-org-tone--slate {
  --team-org-blue: var(--team-org-slate);
  border-color: rgba(109, 131, 173, 0.28);
}

.team-org-tone--violet {
  --team-org-blue: #8b6bdc;
  border-color: rgba(139, 107, 220, 0.28);
}

.team-org-tone--amber {
  --team-org-blue: var(--team-org-amber);
  border-color: rgba(223, 138, 34, 0.3);
}

.team-org-tone--brown {
  --team-org-blue: var(--team-org-brown);
  border-color: rgba(154, 118, 93, 0.3);
}

.team-org-metric.team-org-tone--green,
.team-org-metric.team-org-tone--blue,
.team-org-metric.team-org-tone--violet,
.team-org-metric.team-org-tone--orange {
  border-color: rgba(101, 112, 124, 0.14);
}

.team-org-metric:hover {
  border-color: color-mix(in srgb, var(--team-org-blue) 72%, #ffffff);
  box-shadow: 0 18px 42px rgba(49, 69, 244, 0.13), 0 0 0 3px color-mix(in srgb, var(--team-org-blue) 14%, transparent);
  transform: translateY(-1px);
}

.is-filter-active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: transparent;
}

.heritage-card,
.heritage-abstract {
  background:
    radial-gradient(circle at 24% 24%, rgba(31, 208, 208, 0.44), transparent 24%),
    linear-gradient(135deg, rgba(9, 14, 38, 0.98), rgba(37, 54, 216, 0.88));
}

.heritage-tech-band {
  border-color: rgba(255, 255, 255, 0.1);
}

.heritage-tech-band__visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(31, 208, 208, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(9, 14, 38, 0.96), rgba(37, 54, 216, 0.94));
}

.pathway-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

.pathway-copy {
  max-width: 48rem;
}

.pathway-copy p {
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.8;
}

.pathway-route {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.pathway-metro {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.pathway-metro__track {
  --pathway-top-offset: 2.2rem;
  --pathway-axis: 5rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--pathway-count, 9), minmax(5.9rem, 1fr));
  gap: 0;
  min-height: 10.4rem;
  min-width: max(58rem, calc(var(--pathway-count, 9) * 5.9rem));
  padding: var(--pathway-top-offset) 0.4rem 0;
}

@media (max-width: 1024px) and (min-width: 721px) {
  .pathway-metro__track {
    grid-template-columns: repeat(var(--pathway-count, 9), minmax(5.25rem, 1fr));
    min-width: max(50rem, calc(var(--pathway-count, 9) * 5.25rem));
    min-height: 9.4rem;
    --pathway-top-offset: 2rem;
    --pathway-axis: 4.45rem;
  }

  .globe-stage {
    transform: none;
  }
}

.pathway-metro__track::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  top: calc(var(--pathway-top-offset) + var(--pathway-axis) - 2px);
  height: 4px;
  background: rgba(177, 185, 198, 0.86);
}

.pathway-metro__track::after {
  content: "";
  position: absolute;
  top: calc(var(--pathway-top-offset) + var(--pathway-axis) - 2px);
  left: calc(
    0.25rem + ((100% - 0.5rem) / var(--pathway-count, 9)) * (var(--pathway-active-start, -1) + 0.5)
  );
  width: calc(
    ((100% - 0.5rem) / var(--pathway-count, 9)) * (var(--pathway-active-end, -1) - var(--pathway-active-start, -1) + 0.5)
  );
  height: 4px;
  background: rgba(37, 54, 216, 0.94);
  z-index: 1;
}

.pathway-station {
  position: relative;
  min-height: 7.1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(125, 133, 147, 0.96);
  cursor: pointer;
  appearance: none;
  text-align: left;
  touch-action: manipulation;
}

.pathway-station__dot {
  position: absolute;
  left: 50%;
  top: var(--pathway-axis);
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #a9b2bf;
  z-index: 2;
}

.pathway-station__greeting {
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-18%) rotate(-44deg);
  transform-origin: left bottom;
  white-space: nowrap;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

.pathway-station__city {
  position: absolute;
  left: 50%;
  top: 1.42rem;
  transform: translateX(-18%) rotate(-44deg);
  transform-origin: left bottom;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.pathway-station__code {
  position: absolute;
  left: 50%;
  top: 6.15rem;
  transform: translateX(-50%);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pathway-station.is-active {
  color: var(--color-accent);
}

.pathway-station.is-active .pathway-station__dot {
  background: var(--color-accent);
  box-shadow: 0 0 0 8px rgba(37, 54, 216, 0.08);
}

.pathway-station.is-active .pathway-station__code {
  color: var(--color-accent);
}

.pathway-station.is-selected {
  color: #ea8b43;
}

.pathway-station.is-selected .pathway-station__dot {
  background: #ea8b43;
  box-shadow: 0 0 0 8px rgba(234, 139, 67, 0.14);
  animation: pathway-signal-pulse 760ms ease-out;
}

.pathway-station.is-selected .pathway-station__code {
  color: #ea8b43;
}

.pathway-note {
  position: relative;
  margin-top: 1.8rem;
  min-height: 3.2rem;
}

.pathway-note[hidden] {
  display: none;
}

.pathway-note.is-visible .pathway-note__flag {
  animation: pathway-note-flag-in 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pathway-note.is-visible .pathway-note__text {
  animation: pathway-note-text-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pathway-note__body {
  position: relative;
  width: 100%;
  min-height: 3.2rem;
  padding: 0.2rem 0 0;
}

.pathway-note__flag {
  position: absolute;
  left: var(--pathway-selected-x, 0px);
  top: 50%;
  display: block;
  width: 1.85rem;
  height: 1.32rem;
  object-fit: cover;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 10px rgba(14, 20, 31, 0.12);
}

.pathway-note__flag.is-square {
  width: 1.32rem;
  height: 1.32rem;
}

.pathway-note__text {
  margin: 0;
  position: absolute;
  left: calc(var(--pathway-selected-x, 0px) + 1.35rem);
  top: 50%;
  width: min(30rem, calc(100vw - 8rem));
  transform: translateY(-50%);
  color: rgba(50, 57, 69, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

.pathway-note.is-reverse .pathway-note__text {
  left: auto;
  right: calc(
    100% - var(--pathway-selected-x, 0px) + 1.35rem
  );
  text-align: right;
}

@keyframes pathway-signal-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 139, 67, 0.28);
    transform: translate(-50%, -50%) scale(0.96);
  }
  45% {
    box-shadow: 0 0 0 12px rgba(234, 139, 67, 0.1);
    transform: translate(-50%, -50%) scale(1.06);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(234, 139, 67, 0.14);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pathway-note-flag-in {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes pathway-note-text-in {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% + 10px));
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.collaboration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: var(--space-6);
  align-items: start;
}

.collaboration-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  border: 1px solid rgba(37, 54, 216, 0.25);
  border-radius: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  aspect-ratio: 1 / 1;
}

.collaboration-cell {
  min-height: 0;
  padding: 1.1rem;
  border-right: 1px solid rgba(37, 54, 216, 0.18);
  border-bottom: 1px solid rgba(37, 54, 216, 0.18);
  display: grid;
  align-content: center;
  gap: 0.3rem;
}

.collaboration-cell--offset {
  padding-left: 1.55rem;
}

.collaboration-cell .metric-number {
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.collaboration-cell h3 {
  font-size: clamp(1rem, 1.4vw, 1.45rem);
}

.collaboration-cell p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.collaboration-cell:nth-child(3n) {
  border-right: 0;
}

.collaboration-cell:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.collaboration-cell--logo {
  place-items: center;
  text-align: center;
}

.collaboration-logo-stack {
  position: relative;
  width: 100%;
  min-height: 4rem;
  display: grid;
  place-items: center;
}

.collaboration-logo-image {
  max-width: min(82%, 150px);
  max-height: 56px;
  width: auto;
  height: auto;
  opacity: 0;
  transition: opacity 700ms ease;
  object-fit: contain;
}

.collaboration-logo-image.is-logo-square {
  max-width: min(92%, 176px);
  max-height: 76px;
}

.collaboration-logo-image.is-logo-portrait {
  max-width: min(84%, 158px);
  max-height: 78px;
}

.collaboration-logo-image.is-logo-wide {
  max-width: min(84%, 156px);
  max-height: 58px;
}

.collaboration-logo-image.is-logo-ultra-wide {
  max-width: min(90%, 170px);
  max-height: 52px;
}

.collaboration-logo-image.is-visible {
  opacity: 1;
}

.collaboration-globe {
  display: grid;
  gap: var(--space-5);
  justify-items: center;
}

.collaboration-copy {
  width: 100%;
}

.collaboration-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  justify-self: center;
  width: min(100%, 28rem);
  margin-top: calc(var(--space-2) * -0.25);
}

.collaboration-city-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(37, 54, 216, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  gap: 0.45rem;
  cursor: pointer;
  appearance: none;
  border-radius: 0;
  transition:
    opacity 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.collaboration-city-chip.is-active {
  border-color: rgba(37, 54, 216, 0.44);
  background: rgba(255, 255, 255, 0.98);
}

.collaboration-city-chip.is-inactive {
  opacity: 0.42;
}

.collaboration-city-chip__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
}

.collaboration-city-chip--study {
  color: #f0a96b;
}

.collaboration-city-chip--work {
  color: #c6a4ff;
}

.collaboration-city-chip--travel {
  color: #76c9ff;
}

.collaboration-city-chip--collab {
  color: #7edba0;
}

.globe-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  width: 100%;
  justify-self: center;
  transform: translate(1.5cm, -1.35rem);
}

.globe-stage__halo,
.globe-stage__canvas {
  position: absolute;
  border-radius: 50%;
}

.globe-stage__halo {
  width: 88%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(37, 54, 216, 0.02), transparent 60%);
  filter: blur(10px);
}

.globe-stage__canvas {
  width: min(86%, 470px);
  aspect-ratio: 1;
  box-shadow:
    0 8px 20px rgba(22, 39, 182, 0.04);
  background: transparent;
  filter: saturate(1.12) contrast(1.01);
}

.editorial-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-list--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-item,
.editorial-card {
  display: grid;
  gap: var(--space-3);
}

.editorial-item__media,
.editorial-card__media,
.event-item__media {
  min-height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 208, 208, 0.35), transparent 45%),
    linear-gradient(135deg, rgba(37, 54, 216, 0.95), rgba(16, 26, 52, 0.92));
}

.editorial-card {
  border: 1px solid var(--color-line);
  padding: var(--space-4);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.event-list {
  grid-template-columns: 1fr;
}

.event-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) 1fr;
  gap: 0;
  border: 1px solid rgba(37, 54, 216, 0.25);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}

.event-item__content {
  padding: var(--space-4);
  display: grid;
  gap: var(--space-2);
  align-content: center;
}

.event-item__date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.8rem;
  background: var(--color-purple);
  color: var(--color-white);
  font-size: var(--meta);
  font-weight: 700;
  border-radius: 999px;
}

.home-news {
  display: grid;
  gap: var(--space-4);
}

.home-news__featured,
.home-news__grid {
  display: grid;
}

.home-news__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.home-news-item {
  display: grid;
  grid-template-columns: 55px minmax(180px, 0.46fr) 1fr;
  gap: 0;
  border: 1px solid rgba(37, 54, 216, 0.72);
  background: #fff;
}

.home-news-item__media {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(31, 208, 208, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(37, 96, 255, 0.96), rgba(24, 32, 88, 0.96));
}

.home-news-item__badge {
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  gap: 0.45rem;
  padding: 0.8rem 0.15rem 0.45rem;
  background: var(--color-purple);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.home-news-item__badge-date {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.08rem;
}

.home-news-item__badge-date span:first-child {
  font-size: 1.55rem;
  line-height: 1;
}

.home-news-item__badge-date span:nth-child(2),
.home-news-item__badge-date span:nth-child(3) {
  font-size: 0.76rem;
  line-height: 1.05;
}

.home-news-item__badge-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 0.15rem;
}

.home-news-item__flag {
  display: block;
  width: 28px;
  height: 19px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.16);
}

.home-news-item__flag.is-square {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.home-news-item__content {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem 1.2rem;
}

.home-news-item__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-news-item__type {
  color: var(--color-accent);
  font-weight: 800;
}

.home-news-item__category {
  color: rgba(125, 132, 146, 0.92);
}

.home-news-item h3 {
  margin: 0;
  color: rgba(17, 21, 30, 0.98);
  font-size: clamp(1.18rem, 1.48vw, 1.95rem);
  line-height: 1.26;
}

.home-news-item p {
  margin: 0;
  color: rgba(80, 88, 103, 0.92);
  line-height: 1.68;
}

.home-news-item--featured .home-news-item__media {
  min-height: 292px;
}

.home-news-item--featured .home-news-item__content {
  padding-top: 1.2rem;
  padding-bottom: 1.35rem;
}

.metric-ribbon {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--color-accent);
}

.timeline-entry {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
}

.timeline-entry__year {
  color: var(--color-accent);
  font-size: var(--meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-essay-card {
  padding: var(--space-5);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(180px, 0.45fr);
  gap: var(--space-5);
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
}

.track-map__diagram {
  min-height: 420px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 35%, rgba(31, 208, 208, 0.22), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(140, 32, 232, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(16, 26, 52, 0.96), rgba(37, 54, 216, 0.92));
  position: relative;
  overflow: hidden;
}

.track-map__diagram::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.track-map-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: var(--small);
  backdrop-filter: blur(10px);
}

.access-copy {
  display: grid;
  gap: var(--space-4);
}

.access-note {
  padding: var(--space-4);
  background: rgba(37, 54, 216, 0.06);
  border: 1px solid rgba(37, 54, 216, 0.12);
  border-radius: 22px;
}

.access-panel {
  padding: clamp(1.6rem, 3vw, 3rem);
  background: linear-gradient(160deg, rgba(17, 27, 58, 0.98), rgba(37, 54, 216, 0.94));
  border-radius: 28px;
  color: var(--color-white);
}

.signin-form {
  display: grid;
  gap: var(--space-4);
}

.signin-form label {
  display: grid;
  gap: 0.6rem;
}

.signin-form input {
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
}

.form-hint {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--small);
}

.form-status {
  min-height: 1.5em;
  color: var(--color-teal);
  font-weight: 600;
}

.dashboard-top {
  padding-top: calc(var(--header-height) + var(--space-6));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
}

.dashboard-top__intro {
  max-width: 44rem;
}

.dashboard-top__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.dashboard-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-kpi__label {
  color: var(--color-text-muted);
  font-size: var(--meta);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-kpi__value {
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
}

.panel-heading {
  margin-bottom: var(--space-4);
}

.dashboard-panel {
  padding: var(--space-4);
}

.resource-table {
  grid-template-columns: 1fr;
}

.resource-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
}

.resource-row__meta {
  display: grid;
  gap: 0.3rem;
}

.publications-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.news-shell {
  display: grid;
  gap: var(--space-5);
}

.news-head {
  display: grid;
  gap: var(--space-3);
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.news-tab {
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(37, 54, 216, 0.22);
  background: #fff;
  color: rgba(22, 28, 41, 0.9);
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.news-tab:hover,
.news-tab:focus-visible {
  border-color: rgba(37, 54, 216, 0.54);
  color: var(--color-accent);
}

.news-tab.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.news-count {
  margin: 0;
  color: rgba(35, 41, 54, 0.94);
}

.news-list {
  display: grid;
  gap: var(--space-3);
}

.news-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px;
  background: #fff;
  border: 1px solid rgba(37, 54, 216, 0.74);
}

.news-row__main {
  padding: 1.15rem 1.2rem 1.05rem;
}

.news-row__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  color: rgba(101, 108, 122, 0.94);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-row__category {
  color: var(--color-accent);
  font-weight: 700;
}

.news-row h3 {
  margin: 0 0 0.72rem;
  color: rgba(16, 21, 29, 0.98);
  font-size: clamp(1.12rem, 1.4vw, 1.42rem);
  line-height: 1.4;
}

.news-row__summary {
  margin: 0;
  color: rgba(53, 60, 72, 0.9);
  line-height: 1.68;
}

.news-row__actions {
  display: grid;
  border-left: 1px solid rgba(37, 54, 216, 0.74);
}

.news-row__read {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(20, 24, 34, 0.98);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.news-row__read::after {
  content: "";
  position: absolute;
  bottom: 1.28rem;
  width: 66px;
  height: 2px;
  background: currentColor;
}

.news-empty {
  margin: 0;
  padding: 1.2rem 0;
  color: rgba(96, 103, 118, 0.92);
}

.search-shell {
  display: grid;
  gap: var(--space-5);
}

.search-head {
  display: grid;
  gap: var(--space-3);
}

.search-shell__input {
  max-width: 58rem;
}

.search-list {
  display: grid;
  gap: var(--space-3);
}

.search-row {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.2rem 1.05rem;
  background: #fff;
  border: 1px solid rgba(37, 54, 216, 0.18);
}

.search-row__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.search-row h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.38vw, 1.34rem);
  line-height: 1.4;
}

.search-row h3 a {
  color: rgba(16, 21, 29, 0.98);
  text-decoration: none;
}

.search-row h3 a:hover {
  color: var(--color-accent);
}

.search-row p {
  margin: 0;
  color: rgba(53, 60, 72, 0.9);
  line-height: 1.68;
}

.publications-main {
  display: grid;
  gap: 1.5rem;
}

.publications-toolbar {
  display: grid;
  gap: 0.55rem;
}

.publications-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: rgba(25, 31, 44, 0.96);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}

.publications-search input::placeholder {
  color: rgba(99, 106, 120, 0.66);
  font-size: 0.84rem;
}

.publications-search__icon {
  color: rgba(52, 59, 73, 0.9);
  font-size: 1.05rem;
  line-height: 1;
  align-self: center;
}

.publications-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  min-height: 2.35rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.publications-search:focus-within {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.publications-search--sidebar {
  margin-bottom: 1.2rem;
}

.publications-search--sidebar input,
.publications-search--sidebar .publications-search__icon {
  color: rgba(255, 255, 255, 0.96);
}

.publications-search--sidebar input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.publications-toolbar__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.25rem;
}

.publications-result-count {
  margin: 0;
  color: rgba(35, 41, 54, 0.94);
  font-size: 0.96rem;
  font-weight: 500;
}

.publications-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.publications-sort span {
  color: rgba(22, 28, 41, 0.9);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.publications-sort select {
  min-width: 168px;
  min-height: 2.65rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(26, 39, 58, 0.16);
  background: #f2f4f7;
  color: rgba(23, 29, 42, 0.96);
  font-size: 0.94rem;
  font-weight: 500;
}

.publications-list {
  display: grid;
  gap: 1rem;
}

.publication-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  background: #fff;
  border: 1px solid rgba(37, 54, 216, 0.34);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.publication-row:hover {
  border-color: rgba(37, 54, 216, 0.56);
  box-shadow: 0 12px 28px rgba(16, 26, 52, 0.08);
  transform: translateY(-1px);
}

.publication-row__main {
  padding: 1.05rem 1.1rem 0.96rem;
}

.publication-row--compact .publication-row__main {
  padding-top: 0.95rem;
  padding-bottom: 0.9rem;
}

.publication-row__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.68rem;
  color: rgba(101, 108, 122, 0.94);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.publication-row__type {
  color: var(--color-accent);
  font-weight: 700;
}

.publication-row h3 {
  margin: 0 0 0.56rem;
  color: rgba(16, 21, 29, 0.98);
  font-size: clamp(1.08rem, 1.28vw, 1.32rem);
  line-height: 1.34;
  word-break: break-word;
}

.publication-row__authors {
  margin: 0 0 0.34rem;
  color: rgba(34, 41, 55, 0.95);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.46;
  word-break: break-word;
}

.publication-row__policy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin: 0 0 0.5rem;
}

.publication-row__summary {
  margin: 0;
  color: rgba(53, 60, 72, 0.9);
  line-height: 1.6;
  font-size: 0.92rem;
}

.publication-row__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.68rem;
  border-radius: 0;
  background: rgba(26, 39, 58, 0.08);
  border: 1px solid rgba(26, 39, 58, 0.09);
  color: rgba(37, 54, 216, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.publication-row__summary--venue {
  margin-bottom: 0.36rem;
  color: rgba(96, 103, 118, 0.96);
  font-size: 0.88rem;
}

.publication-row__actions {
  display: grid;
  grid-template-rows: 1fr auto;
  border-left: 1px solid rgba(37, 54, 216, 0.3);
}

.publication-row__read,
.publication-row__pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 700;
}

.publication-row__read {
  position: relative;
  color: rgba(20, 24, 34, 0.98);
}

.publication-row__read::after {
  content: "";
  position: absolute;
  bottom: 1.12rem;
  width: 46px;
  height: 2px;
  background: currentColor;
}

.publication-row__pdf {
  min-height: 2.2rem;
  background: var(--color-accent);
  color: #fff;
}

.publications-filter {
  position: sticky;
  top: 5.75rem;
  padding: 1.45rem 1.25rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
}

.publications-filter__group + .publications-filter__group {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.publications-filter h2 {
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: 1.28rem;
}

.publications-filter__head h3 {
  margin: 0 0 0.82rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.publications-filter__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.publications-type-list {
  display: grid;
  gap: 0.75rem;
}

.publications-type-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.96);
  cursor: pointer;
}

.publications-type-row::before {
  content: "▸";
  position: absolute;
  left: -0.82rem;
  top: 50%;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.publications-type-row input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.publications-type-row__label {
  min-width: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.publications-type-row__count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.publications-type-row:hover .publications-type-row__label,
.publications-type-row input:focus-visible ~ .publications-type-row__label,
.publications-type-row input:checked ~ .publications-type-row__label {
  color: #fff;
}

.publications-type-row input:checked ~ .publications-type-row__count {
  color: #fff;
  font-weight: 700;
}

.publications-type-row input:checked ~ .publications-type-row__label,
.publications-type-row input:checked ~ .publications-type-row__count {
  opacity: 1;
}

.publications-type-row input:checked ~ .publications-type-row__label,
.publications-type-row input:checked ~ .publications-type-row__count,
.publications-type-row:has(input:checked)::before {
  opacity: 1;
}

.publications-check {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.publications-check input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.publications-check__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  background: rgba(240, 243, 247, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  line-height: 1.4;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.publications-check:hover .publications-check__tag,
.publications-check input:focus-visible + .publications-check__tag {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(248, 250, 252, 0.24);
  transform: translateY(-1px);
}

.publications-check input:checked + .publications-check__tag {
  background: #fff;
  border-color: #fff;
  color: var(--color-accent);
}

body[data-page="publications"] .page-hero {
  padding-bottom: 2.3rem;
}

body[data-page="publications"] .page-hero__split {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: 2.1rem;
}

body[data-page="publications"] .page-hero h1 {
  font-size: clamp(1.84rem, 3.1vw, 2.72rem);
  line-height: 1.06;
}

body[data-page="publications"] .page-hero__lede {
  max-width: 20rem;
  font-size: 0.94rem;
  line-height: 1.64;
}

.profile-summary,
.activity-log {
  display: grid;
  gap: var(--space-3);
}

.profile-item {
  display: grid;
  gap: 0.2rem;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-line);
}

.profile-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .founder-stage {
    grid-template-columns: 1fr;
  }

  .founder-stage__visual {
    min-height: 560px;
  }

  .founder-stage__stats {
    width: min(72%, 430px);
  }
}

@media (max-width: 720px) {
  .founder-stage__visual {
    min-height: 520px;
    padding: 1.25rem;
  }

  .founder-stage__route {
    top: 1rem;
    right: 1rem;
    font-size: 0.72rem;
  }

  .founder-stage__portrait-wrap {
    width: 48%;
    right: -0.4rem;
    height: 88%;
  }

  .founder-stage__stats {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .founder-stage__stats .profile-item {
    min-height: 92px;
    padding: 0.85rem;
  }
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: var(--space-3);
  text-align: center;
}

.page-hero--about {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + var(--space-6));
  padding-bottom: var(--space-6);
  background: linear-gradient(135deg, rgba(10, 18, 39, 0.98), rgba(25, 43, 104, 0.94));
  color: var(--color-white);
}

.page-hero--about__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero--about__orb {
  position: absolute;
  width: 44vw;
  height: 44vw;
  max-width: 520px;
  max-height: 520px;
  right: 6%;
  top: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(31, 208, 208, 0.55), rgba(37, 54, 216, 0.1) 55%, transparent 70%);
  filter: blur(14px);
  animation: driftA 16s ease-in-out infinite;
}

.page-hero--about__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.45;
}

.page-hero--about .container {
  position: relative;
  z-index: 1;
}

.page-hero--about .page-hero__lede,
.page-hero--about .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero--hedge {
  background:
    linear-gradient(135deg, rgba(9, 16, 34, 0.98), rgba(20, 37, 92, 0.94)),
    linear-gradient(90deg, transparent, rgba(31, 208, 208, 0.08));
}

.page-hero--hedge__orb {
  right: auto;
  left: 10%;
  top: 16%;
  width: 34vw;
  height: 34vw;
  max-width: 440px;
  max-height: 440px;
  background: radial-gradient(circle at 50% 50%, rgba(38, 88, 255, 0.34), rgba(31, 208, 208, 0.12) 48%, transparent 72%);
  filter: blur(20px);
}

.page-hero--hedge__beam {
  position: absolute;
  inset: auto -8% 12% 38%;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(96, 132, 255, 0.55), rgba(255, 255, 255, 0));
  transform: rotate(-12deg);
  box-shadow: 0 0 22px rgba(96, 132, 255, 0.28);
}

.page-hero--horizon {
  background:
    radial-gradient(circle at 78% 28%, rgba(31, 208, 208, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(8, 15, 34, 0.98), rgba(31, 49, 116, 0.94));
}

.page-hero--horizon__orb {
  right: 4%;
  top: 10%;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle at 50% 50%, rgba(31, 208, 208, 0.32), rgba(37, 54, 216, 0.08) 52%, transparent 72%);
  filter: blur(18px);
}

.page-hero--horizon__arc {
  position: absolute;
  width: 54vw;
  height: 54vw;
  max-width: 700px;
  max-height: 700px;
  right: -10%;
  top: 18%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
  opacity: 0.65;
}

@keyframes driftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 18px, 0);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -14px, 0) scale(1.05);
  }
}

@keyframes pulseField {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate3d(8px, -10px, 0);
    opacity: 1;
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(0, -4px) scale(1.04);
  }
}

@keyframes iconRotate {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0, -2px) rotate(8deg);
  }
}

@keyframes iconSpin {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.86;
  }
  50% {
    transform: translate(0, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes iconSpark {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.78;
  }
  50% {
    transform: translate(-1px, -3px) scale(1.06);
    opacity: 1;
  }
}

@keyframes iconHover {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
}

@keyframes globeSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFade {
  0%,
  16%,
  100% {
    opacity: 0;
  }
  4%,
  11% {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  body[data-page="publications"] .page-hero__split {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .history-founder__header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .history-founder__chart {
    min-width: 960px;
    width: auto;
  }

  .founder-gantt {
    padding: 1.35rem;
  }

  .founder-gantt__entry {
    max-width: 18rem;
  }

  .hero__inner,
  .focus-grid,
  .spotlight-stage,
  .editorial-list,
  .editorial-list--wide,
  .metric-ribbon,
  .dashboard-kpis,
  .track-essay-card,
  .collaboration-layout,
  .publications-shell {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .sdg-post__hero-grid,
  .sdg-post__body,
  .sdg-post__gallery {
    grid-template-columns: 1fr;
  }

  .sdg-post__aside {
    position: static;
  }

  .sdg-post__hero-grid {
    min-height: auto;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .pathway-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-slide__panel {
    min-height: 280px;
  }

  .spotlight-stage__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publications-filter {
    position: static;
  }

  .team-founder,
  .team-group-meta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .team-founder--feature {
    grid-template-columns: 1fr;
  }

  .team-founder--feature .team-founder__portrait {
    min-height: 22rem;
    border-radius: 8px 8px 0 0;
  }

  .team-founder--feature .team-founder__body {
    border-radius: 0 0 8px 8px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card--lead {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .history-founder__chart-shell {
    overflow-x: auto;
  }

  .history-founder__chart {
    min-width: 860px;
    width: auto;
  }

  .founder-gantt__legend {
    gap: 0.7rem 1rem;
  }

  .founder-gantt__age-axis {
    height: 4rem;
  }

  .founder-gantt__age-tick span {
    font-size: 1rem;
  }

  .founder-gantt__entry strong {
    font-size: 0.94rem;
  }

  .founder-gantt__entry span,
  .founder-gantt__milestone p,
  .founder-gantt__milestone h3 {
    font-size: 0.84rem;
  }

  .founder-gantt__milestones {
    min-height: 11.5rem;
  }

  .publications-toolbar {
    gap: 0.75rem;
  }

  .publications-sort {
    width: 100%;
    justify-content: space-between;
  }

  .publications-sort select {
    flex: 1;
    min-width: 0;
  }

  .publications-search {
    min-height: 2.9rem;
    padding: 0 0.8rem;
  }

  .publications-search input {
    font-size: 0.95rem;
  }

  .hero__inner,
  .dashboard-top,
  .track-strip,
  .event-item,
  .timeline-entry,
  .resource-row,
  .publication-row,
  .news-row {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + var(--space-4));
  }

  .hero-slide__panel {
    padding: var(--space-4);
  }

  .hero-slide__sdg-logo {
    left: 0.95rem;
    bottom: 0.95rem;
    width: 74px;
  }

  .sdg-post__hero {
    padding-top: calc(var(--header-height) + var(--space-3));
  }

  .sdg-post__hero-media {
    min-height: 320px;
    height: 320px;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  }

  .sdg-post__goal {
    gap: 0.7rem;
  }

  .sdg-post__goal-logo {
    width: 56px;
  }

  .sdg-post__title {
    max-width: none;
  }

  .sdg-post__hero-copy {
    padding: 1.3rem;
  }

  .focus-pillars {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .focus-grid {
    gap: var(--space-4);
  }

  .spotlight-stage__grid {
    grid-template-columns: 1fr;
  }

  .publication-row__actions {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    border-left: 0;
    border-top: 1px solid rgba(37, 54, 216, 0.74);
  }

  .publication-row__read {
    min-height: 4rem;
  }

  .publication-row__pdf {
    min-width: 96px;
    min-height: 4rem;
    padding: 0 1rem;
  }

  .news-row__actions {
    min-height: 4rem;
    border-left: 0;
    border-top: 1px solid rgba(37, 54, 216, 0.74);
  }

  .home-news__grid {
    grid-template-columns: 1fr;
  }

  .home-news-item {
    grid-template-columns: 66px 1fr;
  }

  .home-news-item__media,
  .home-news-item--featured .home-news-item__media {
    min-height: 200px;
    grid-column: 2;
  }

  .home-news-item__content {
    grid-column: 2;
  }

  .home-news-item__badge {
    grid-row: 1 / span 2;
    grid-column: 1;
    padding-inline: 0.2rem;
  }

  .spotlight-card {
    min-height: 10rem;
  }

  .spotlight-card__content {
    padding: 1rem;
  }

  .spotlight-card__content h3 {
    font-size: 1.2rem;
  }

  .focus-element {
    width: 100%;
  }

  .focus-element__tile {
    aspect-ratio: auto;
    min-height: 11.5rem;
  }

  .hero-slide {
    width: 100%;
    min-height: auto;
  }

  .hero-slide__media {
    min-height: 420px;
  }

  .hero-slide__image-meta {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .hero-slide__image-flag {
    right: 1rem;
    bottom: 1rem;
  }

  .hero-slide__triangle--secondary {
    width: clamp(94px, 28vw, 156px);
    height: clamp(86px, 24vw, 132px);
  }

  .hero-slide__triangle--secondary,
  .hero-slide__triangle--tertiary,
  .hero-slide__diamond--a,
  .hero-slide__diamond--b,
  .hero-slide__dot--white,
  .hero-slide__dot--violet,
  .hero-slide__triangle-line--one,
  .hero-slide__triangle-line--two {
    --edge-offset-x: calc(var(--edge-offset-x, 0px) * 0.68);
    --edge-offset-y: calc(var(--edge-offset-y, 0px) * 0.68);
  }

  .hero-slide__triangles {
    --hero-primary-width: clamp(132px, 42vw, 210px);
    --hero-primary-height: clamp(118px, 32vw, 180px);
    --hero-deco-min-bottom: clamp(10px, 3%, 22px);
    --hero-deco-max-bottom: clamp(24px, 11%, 72px);
  }

  .hero-slide__triangle--primary {
    width: var(--hero-primary-width);
    height: var(--hero-primary-height);
  }

  .hero-slide__panel-title {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .pathway-metro__track {
    grid-template-columns: repeat(var(--pathway-count, 9), minmax(5.15rem, 1fr));
    min-width: max(48rem, calc(var(--pathway-count, 9) * 5.15rem));
    min-height: 9rem;
    --pathway-top-offset: 1.9rem;
    --pathway-axis: 4.2rem;
    padding-top: var(--pathway-top-offset);
  }

  .pathway-metro {
    cursor: grab;
  }

  .pathway-metro__track::before {
    top: calc(var(--pathway-top-offset) + var(--pathway-axis) - 2px);
  }

  .pathway-metro__track::after {
    top: calc(var(--pathway-top-offset) + var(--pathway-axis) - 2px);
  }

  .pathway-station__dot {
    top: var(--pathway-axis);
    width: 0.95rem;
    height: 0.95rem;
  }

  .pathway-station__greeting {
    font-size: 0.86rem;
    top: 1rem;
    transform: translateX(-18%) rotate(-44deg);
  }

  .pathway-station__city {
    top: 1.2rem;
    font-size: 0.74rem;
    transform: translateX(-18%) rotate(-44deg);
  }

  .pathway-note {
    margin-top: 1.35rem;
    min-height: 2.9rem;
  }

  .pathway-note__body {
    min-height: 2.9rem;
  }

  .pathway-note__flag {
    width: 1.55rem;
    height: 1.12rem;
  }

  .pathway-note__flag.is-square {
    width: 1.12rem;
    height: 1.12rem;
  }

  .pathway-note__text {
    left: calc(var(--pathway-selected-x, 0px) + 1.15rem);
    width: min(18rem, calc(100vw - 6rem));
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .pathway-note.is-reverse .pathway-note__text {
    right: calc(
      100% - var(--pathway-selected-x, 0px) + 1.15rem
    );
  }

  .pathway-station__code {
    top: 5.15rem;
    font-size: 0.98rem;
  }

  .collaboration-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    aspect-ratio: 1 / 1;
  }

  .collaboration-cell {
    padding: 0.7rem;
    gap: 0.18rem;
  }

  .collaboration-cell--offset {
    padding-left: 0.95rem;
  }

  .collaboration-cell:nth-child(3n) {
    border-right: 0;
  }

  .collaboration-cell:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .collaboration-cell .metric-number {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .collaboration-cell h3 {
    font-size: clamp(0.78rem, 3.3vw, 1rem);
  }

  .collaboration-cell p {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .collaboration-logo-stack {
    min-height: 3rem;
  }

  .collaboration-logo-image {
    max-width: min(84%, 110px);
    max-height: 38px;
  }

  .collaboration-logo-image.is-logo-square,
  .collaboration-logo-image.is-logo-portrait {
    max-width: min(88%, 116px);
    max-height: 50px;
  }

  .collaboration-logo-image.is-logo-wide,
  .collaboration-logo-image.is-logo-ultra-wide {
    max-width: min(86%, 118px);
    max-height: 40px;
  }

  .globe-stage {
    min-height: 360px;
  }

  .team-tabs {
    gap: 0.8rem;
  }

  .team-tab {
    gap: 0.55rem;
    padding: 0 0 0.2rem;
    font-size: 0.92rem;
    min-height: 2.75rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-founder {
    min-height: 0;
  }

  .team-founder__portrait {
    min-height: 300px;
  }

  .team-founder__portrait img {
    right: -0.3rem;
    width: 62%;
  }

  .team-founder--feature .team-founder__portrait {
    min-height: 19rem;
  }

  .team-founder--feature .team-founder__portrait img {
    right: 0.15rem;
    width: min(66%, 18rem);
    transform: translateY(-0.55rem);
  }

  .team-founder__portrait-copy {
    left: 1.3rem;
    top: 2.7rem;
  }

  .team-founder__portrait-copy strong {
    font-size: 2.25rem;
  }

  .team-founder--feature .team-founder__body {
    padding: 1.15rem;
  }

  .team-founder__capabilities {
    gap: 0.45rem;
  }

  .team-founder__role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-founder__body {
    padding: 1.15rem;
  }

  .team-card,
  .team-card--lead {
    grid-column: auto;
  }

  .team-card--lead {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .team-card__avatar--portrait {
    min-height: 260px;
  }

  .team-card__avatar--portrait img {
    right: -0.3rem;
    width: 68%;
  }

  .team-card--lead .team-card__body {
    padding: 1.15rem;
  }
}

@media (max-width: 1180px) {
  .team-org-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-org-provinces {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .team-org-architecture {
    grid-template-columns: 1fr;
  }

  .team-org-rome-primary {
    grid-template-columns: 1fr;
  }

  .team-org-rome-flow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .team-org-flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .team-org-ministries {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-org-ministry-groups {
    grid-template-columns: 1fr;
  }

  .team-org-jurisdiction {
    display: none;
  }
}

@media (max-width: 720px) {
  .team-org-board {
    gap: 0.95rem;
    padding: 0.75rem;
    border-radius: 8px;
  }

  .team-org-civilizations {
    display: flex;
    gap: 0.72rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: thin;
  }

  .team-org-civilization {
    flex: 0 0 13.2rem;
    min-height: 5rem;
    padding: 0.82rem 0.88rem;
    font-size: 0.92rem;
  }

  .team-org-civilization__logo {
    width: 3rem;
    height: 3rem;
  }

  .team-org-civilization__logo img {
    width: 2.55rem;
    height: 2.55rem;
  }

  .team-org-metrics,
  .team-org-ministries,
  .team-org-ministry-groups {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .team-org-metric {
    min-height: 4.7rem;
    padding: 0.78rem 0.85rem;
  }

  .team-org-architecture-summary {
    grid-template-columns: 1fr;
  }

  .team-org-architecture-summary__meta {
    border-right: 0;
    border-bottom: 1px solid rgba(101, 112, 124, 0.12);
  }

  .team-org-architecture-summary__visual {
    min-height: 6.2rem;
    border-bottom: 1px solid rgba(101, 112, 124, 0.12);
  }

  .team-org-architecture-summary__visual img {
    width: 4.7rem;
    height: 4.7rem;
  }

  .team-org-metric__icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .team-org-province {
    min-height: 0;
    padding: 0.72rem;
  }

  .team-org-arch-stage {
    min-height: 0;
    padding: 0.72rem;
  }

  .team-org-province__header {
    align-items: flex-start;
  }

  .team-org-province__header h3 {
    display: block;
    font-size: 0.98rem;
  }

  .team-org-province__header small {
    margin-left: 0.34rem;
    font-size: 0.8rem;
  }

  .team-org-province__posts,
  .team-org-province:not(.team-org-tone--purple) .team-org-province__posts,
  .team-org-arch-stage__posts {
    grid-template-columns: 1fr;
  }

  .team-org-post--wide {
    grid-column: auto;
  }

  .team-org-post,
  .team-org-ministry,
  .team-org-rome-block {
    padding: 0.68rem;
  }

  .team-org-rome-consuls,
  .team-org-rome-reserve__grid {
    grid-template-columns: 1fr;
  }

  .team-org-greece-layer,
  .team-org-greece-supervision,
  .team-org-greece-sidecar {
    padding: 0.72rem;
  }

  .team-org-greece-citizens,
  .team-org-greece-deliberation,
  .team-org-greece-stats,
  .team-org-greece-bottom,
  .team-org-greece-supervision__posts {
    grid-template-columns: 1fr;
  }

  .team-org-greece-stat + .team-org-greece-stat {
    border-left: 0;
    border-top: 1px solid rgba(21, 156, 130, 0.12);
  }

  .team-org-greece-sidecar::before {
    display: none;
  }

  .team-org-egypt {
    padding: 0.75rem;
  }

  .team-org-egypt__pyramid {
    inset: 0.75rem 0.75rem 0.75rem;
    opacity: 0.28;
  }

  .team-org-egypt-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    min-height: 0;
  }

  .team-org-egypt-row__label {
    min-height: 0;
    grid-template-columns: auto auto 1fr;
    gap: 0.35rem;
  }

  .team-org-egypt-row__label > span {
    grid-row: auto;
    width: 1.8rem;
    height: 1.8rem;
  }

  .team-org-egypt-row__label .team-org-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .team-org-egypt-posts,
  .team-org-egypt-posts[data-count] {
    grid-template-columns: 1fr;
    max-width: none;
    margin-inline: 0;
  }

  .team-org-egypt-row:not(:first-child) .team-org-egypt-posts::before,
  .team-org-egypt-row:not(:first-child) .team-org-post::before {
    display: none;
  }

  .team-org-agent {
    grid-template-columns: 1fr;
    gap: 0.28rem;
  }

  .team-org-agent select {
    height: 2.15rem;
  }

  .team-org-flow-arrow {
    font-size: 1.8rem;
  }
}

@media (max-width: 900px) {
  .honors-wall__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .honors-stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(24, 43, 86, 0.1);
  }

  .honors-stat:nth-child(4) {
    border-top: 1px solid rgba(24, 43, 86, 0.1);
  }

  .honors-wall__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .honors-wall__filters {
    justify-content: flex-start;
  }

  .honors-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 0.8rem;
  }

  .honors-timeline::before,
  .honors-timeline i {
    display: none;
  }

  .honors-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-transfer-card {
    grid-template-columns: 1fr;
  }

  .tech-transfer-map,
  .tech-transfer-instrument {
    min-height: 14rem;
  }

  .tech-transfer-flow,
  .tech-transfer-logic__steps {
    grid-template-columns: 1fr;
  }

  .tech-transfer-flow__arrow,
  .tech-transfer-logic__steps > span {
    justify-self: center;
    transform: rotate(90deg);
  }

  .tech-transfer-logic__steps div {
    justify-items: center;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tech-transfer-quote {
    grid-template-columns: 1fr;
  }

  .tech-transfer-quote p + p {
    padding-left: 0;
    padding-top: 1rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }
}

@media (max-width: 640px) {
  .honors-wall__stats,
  .honors-cards {
    grid-template-columns: 1fr;
  }

  .honors-stat + .honors-stat,
  .honors-stat:nth-child(3),
  .honors-stat:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(24, 43, 86, 0.1);
  }

  .honors-stat {
    min-height: 7rem;
  }

  .honors-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 0;
  }

  .honor-card__certificate {
    min-height: 9rem;
  }

  .tech-transfer__heading h2 {
    gap: 0.55rem;
  }

  .tech-transfer-card,
  .tech-transfer-logic,
  .tech-transfer-quote {
    border-radius: 16px;
  }

  .tech-transfer-card {
    padding: 1.2rem;
  }

  .tech-transfer-card__year {
    min-height: 2rem;
    padding-inline: 1rem;
    font-size: 0.95rem;
  }

  .tech-transfer-tags {
    gap: 0.45rem;
  }

  .tech-transfer-map,
  .tech-transfer-instrument {
    min-height: 12rem;
  }

  .tech-transfer-map__region--france {
    left: 12%;
    width: 3.5rem;
    height: 3.2rem;
  }

  .tech-transfer-map__region--china {
    right: 4%;
    width: 5.6rem;
    height: 4rem;
  }

  .tech-transfer-map__flag {
    width: 2.2rem;
    height: 2.2rem;
  }

  .tech-transfer-instrument__source {
    left: 3%;
    width: 6.6rem;
    height: 6.2rem;
  }

  .tech-transfer-instrument__detector {
    right: 2%;
    width: 3.6rem;
    height: 3.6rem;
  }

  .tech-transfer-instrument__sample {
    right: 12%;
    bottom: 9%;
  }

  .tech-transfer-instrument__sample span {
    width: 0.9rem;
    height: 4.4rem;
  }

  .tech-transfer-flow__icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
