:root {
  color-scheme: light;
  --cream: rgba(255, 252, 248, 1);
  --purple: rgba(152, 79, 145, 1);
  --ink: #221a1f;
  --panel: rgba(255, 252, 248, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: rgba(255, 252, 248, 1);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  font-family:
    "Open Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--cream);
  background: rgba(255, 252, 248, 1);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.is-menu-open {
  overflow: hidden;
}

#app {
  min-height: 100vh;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__video,
.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__video {
  z-index: 0;
  object-fit: cover;
  object-position: center center;
}

.hero__image {
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1);
  transition: opacity 500ms ease;
}

.hero__video.is-ready + .hero__image {
  opacity: 0;
}

.hero__shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.42) 100%),
    rgba(0, 0, 0, 0.18);
  opacity: 0.5;
}

.site-header {
  position: fixed;
  z-index: 9999;
  top: clamp(28px, 4.44svh, 40px);
  left: 50%;
  display: flex;
  width: min(100%, 1440px);
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 56px;
  transform: translateX(-50%);
}

.logo {
  display: flex;
  width: 44px;
  height: 67px;
  align-items: center;
  justify-content: center;
  margin-top: -4px;
  padding: 4px;
  border-radius: 4px;
  background: rgba(255, 252, 248, 1);
  transition: padding 180ms ease;
}

.logo img {
  width: 36px;
  height: 59px;
  transition:
    width 180ms ease,
    height 180ms ease;
}

.logo:hover {
  padding: 0;
}

.logo:hover img {
  width: 44px;
  height: 67px;
}

.nav-panel {
  display: flex;
  width: 529px;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 4px;
  border-radius: 8px;
  background: rgba(34, 26, 31, 0.62);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-panel__link,
.nav-panel__join,
.nav-panel__donate,
.hero__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
}

.nav-panel__link {
  width: 177px;
  height: 48px;
  gap: 8px;
  padding: 0;
  border: 0;
  appearance: none;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.nav-panel__link::after {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 26V24H22.59L6 7.41L7.41 6L24 22.59V10H26V26H10Z' fill='%23FFFCF8'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  content: "";
  opacity: 0;
  transform: translate(-4px, 1px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-panel__link:hover::after {
  opacity: 1;
  transform: translate(0, 1px);
}

.nav-panel__join {
  width: 177px;
  height: 48px;
  color: var(--cream);
  background: transparent;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-panel__donate {
  width: 193px;
  height: 48px;
  color: var(--cream);
  background: var(--purple);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-panel__join:hover {
  color: var(--cream);
  background: rgba(152, 79, 145, 0.88);
}

.nav-panel__donate:hover {
  color: var(--purple);
  background: rgba(255, 252, 248, 1);
  box-shadow: inset 0 0 0 1px var(--purple);
}

.nav-panel--research {
  width: 333px;
}

.nav-panel--research .nav-panel__link {
  width: 156px;
}

.nav-panel__contact {
  display: flex;
  width: 169px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-panel__contact:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  box-shadow: inset 0 0 0 1px rgba(152, 79, 145, 1);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 0;
  color: #43203e;
  background: linear-gradient(126.47deg, rgba(255, 252, 248, 1) 36.66%, #984f91 128.05%);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(-100%);
  -webkit-overflow-scrolling: touch;
}

.site-menu[hidden] {
  display: none;
}

.site-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

.site-menu.is-closing {
  opacity: 0.96;
  transform: translateY(-100%);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.64, 0, 0.78, 0);
}

.site-menu__panel {
  position: relative;
  width: min(100%, 1440px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 66px 54px 72px;
}

.site-menu__top {
  display: flex;
  min-height: 44px;
  justify-content: flex-end;
  gap: 174px;
}

.site-menu__language {
  position: relative;
  display: inline-flex;
  min-width: 134px;
  height: 34px;
  border-radius: 6px;
  background: rgba(194, 159, 207, 0.72);
}

.site-menu__language::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #43203e;
  border-bottom: 1px solid #43203e;
  content: "";
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.site-menu__language select {
  width: 100%;
  height: 100%;
  padding: 0 32px 0 16px;
  border: 0;
  border-radius: 6px;
  appearance: none;
  color: #43203e;
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-menu__language:hover select {
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.site-menu__language:hover::after {
  border-color: var(--cream);
}

.site-menu__close {
  position: fixed;
  top: clamp(24px, 4vw, 54px);
  right: max(24px, calc((100vw - 1440px) / 2 + 54px));
  z-index: 10002;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-menu__close::before,
.site-menu__close::after {
  position: absolute;
  top: 21px;
  left: 4px;
  width: 38px;
  height: 3px;
  background: #43203e;
  content: "";
  transform: rotate(45deg);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.site-menu__close::after {
  transform: rotate(-45deg);
}

.site-menu__close:hover::before {
  transform: rotate(45deg) scaleX(0.86);
}

.site-menu__close:hover::after {
  transform: rotate(-45deg) scaleX(0.86);
}

.site-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 112px;
}

.site-menu__column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-menu__column a,
.site-menu__dropdown-toggle {
  position: relative;
  display: flex;
  min-height: 78px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(194, 159, 207, 0.7);
  appearance: none;
  color: inherit;
  background: transparent;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    padding 180ms ease;
}

.site-menu__column a::after,
.site-menu__dropdown-toggle::after {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 26V24H22.59L6 7.41L7.41 6L24 22.59V10H26V26H10Z' fill='%23462143'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  content: "";
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-menu__column a:hover,
.site-menu__dropdown-toggle:hover,
.site-menu__dropdown.is-open .site-menu__dropdown-toggle {
  color: rgba(152, 79, 145, 1);
  padding-left: 16px;
}

.site-menu__column a:hover::after,
.site-menu__dropdown-toggle:hover::after,
.site-menu__dropdown.is-open .site-menu__dropdown-toggle::after {
  opacity: 1;
  transform: rotate(180deg);
}

.site-menu__column--primary a::after,
.site-menu__dropdown-toggle::after,
.site-menu__column a[href*="#projects"]::after,
.site-menu__column a[href*="#blog"]::after,
.site-menu__column a[href*="#transparency"]::after,
.site-menu__column a[href*="#documents"]::after {
  opacity: 1;
}

.site-menu__dropdown {
  position: relative;
  z-index: 3;
  overflow: hidden;
  transition: padding-bottom 320ms ease;
}

.site-menu__column--primary {
  position: relative;
}

.site-menu__dropdown-panel {
  display: grid;
  max-height: 0;
  padding-top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateY(-4px);
  transition:
    max-height 320ms ease,
    padding-top 320ms ease,
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu__dropdown.is-open .site-menu__dropdown-panel {
  max-height: 58px;
  padding-top: 14px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-menu__dropdown-panel a {
  min-height: 38px;
  justify-content: flex-end;
  padding: 0 0 0 16px;
  border-bottom: 0;
  font-family: "Open Sans", Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.site-menu__dropdown-panel a::after {
  content: none;
}

.site-menu__dropdown-panel a:hover {
  color: rgba(152, 79, 145, 1);
  padding-left: 16px;
}

.site-menu__contacts {
  margin-top: 126px;
}

.site-menu__contacts h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 118px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.site-menu__contact-links {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.3;
}

.site-menu__contact-links a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-menu__contact-links a:hover {
  color: rgba(152, 79, 145, 1);
  transform: translateY(-2px);
}

.site-menu__social {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.site-menu__social a {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-menu__social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-menu__social a:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}

.research-page .site-menu__language {
  display: none;
}

.research-page .site-menu__top {
  justify-content: flex-end;
  gap: 0;
}

.research-page .site-menu__social img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(22%) saturate(1295%) hue-rotate(262deg) brightness(92%) contrast(90%);
}

.research-page .documents-footer__social img {
  filter: brightness(0) invert(1);
}

.research-page .site-menu__social a:hover,
.research-page .documents-footer__social a:hover {
  opacity: 1;
}

.site-menu--research .site-menu__panel {
  padding-top: 66px;
  padding-bottom: 48px;
}

.site-menu--research .site-menu__top {
  gap: 174px;
}

.research-menu__grid {
  gap: 40px;
  margin-top: 108px;
}

.research-menu__column a {
  min-height: 70px;
  font-size: 30px;
}

.research-menu__column a::after {
  content: none;
}

.research-menu__column a:hover {
  padding-left: 14px;
}

.site-menu--research .site-menu__contacts {
  margin-top: 88px;
}

.site-menu--research .site-menu__contacts h2 {
  font-size: clamp(92px, 8.2vw, 118px);
}

.research-page section[id] {
  scroll-margin-top: 96px;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100%, 1440px);
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  padding: clamp(96px, 11svh, 120px) 56px clamp(58px, 7svh, 78px);
}

.hero__kicker {
  width: min(918px, calc(100% - 112px));
  max-width: 100%;
  margin: 0 0 2px;
  text-align: right;
  font-size: clamp(14px, min(1.12vw, 1.78svh), 16px);
  line-height: 1.3;
}

.hero__title {
  width: min(1210px, 100%);
  max-width: 1210px;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(82px, min(8vw, 12.8svh), 114px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-align: right;
}

.hero__title span,
.hero__title em {
  display: block;
  white-space: nowrap;
}

.hero__title em {
  padding-right: 0;
  text-align: right;
  font-style: italic;
}

.hero__text {
  display: flex;
  width: min(605px, 100%);
  flex-direction: column;
  align-items: flex-start;
  margin: clamp(18px, 2.9svh, 26px) 50px 0 0;
  padding-right: 0;
}

.hero__text p {
  margin: 0;
  font-size: clamp(16px, 2.22svh, 20px);
  line-height: 1.3;
  text-align: left;
}

.hero__button {
  width: 203px;
  height: 48px;
  margin: clamp(38px, 7.1svh, 64px) 0 0;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  border: 1px solid rgba(152, 79, 145, 1);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.hero__button:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  border-color: var(--cream);
}

.how-page {
  color: #462143;
  background: rgba(255, 252, 248, 1);
}

.how-hero {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  background: rgba(255, 252, 248, 1);
  color: #462143;
}

.how-hero__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 182px 116px 120px;
  text-align: center;
}

.how-hero h1 {
  max-width: 1248px;
  margin: 0 auto;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 8.2vw, 118px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: 0;
}

.how-hero h1 em {
  display: block;
  font-style: italic;
}

.how-hero p {
  max-width: 680px;
  margin: 42px auto 0;
  color: rgba(34, 26, 31, 0.68);
  font-size: 20px;
  line-height: 1.3;
}

.how-principles {
  display: grid;
  min-height: 866px;
  place-items: center;
  background: rgba(255, 252, 248, 1);
  color: #462143;
}

.how-principles__inner {
  display: flex;
  width: min(100%, 1440px);
  flex-direction: column;
  align-items: center;
  gap: 116px;
  margin: 0 auto;
  padding: 96px 116px 112px;
}

.how-principles__statement {
  max-width: 828px;
  margin: 0;
  text-align: center;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.how-principles__statement em {
  font-style: italic;
}

.how-participation .how-principles__statement span {
  color: rgba(152, 79, 145, 1);
}

.reveal-on-view {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-view.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-index-reveals .index-reveal-target {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-index-reveals .index-section-reveal.is-visible .index-reveal-target {
  opacity: 1;
  transform: translateY(0);
}

.js-index-reveals .index-section-reveal.is-visible .index-reveal-target:nth-child(2) {
  transition-delay: 90ms;
}

.js-index-reveals .index-section-reveal.is-visible .index-reveal-target:nth-child(3) {
  transition-delay: 160ms;
}

.js-index-reveals .join-grid .join-card,
.js-index-reveals .updates__grid > *,
.js-index-reveals .faq-item,
.js-index-reveals .project-row {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-index-reveals .index-section-reveal.is-visible .join-grid .join-card,
.js-index-reveals .index-section-reveal.is-visible .updates__grid > *,
.js-index-reveals .index-section-reveal.is-visible .faq-item,
.js-index-reveals .index-section-reveal.is-visible .project-row {
  opacity: 1;
  transform: translateY(0);
}

.js-index-reveals .index-section-reveal.is-visible .join-grid .join-card:nth-child(2),
.js-index-reveals .index-section-reveal.is-visible .updates__grid > *:nth-child(2),
.js-index-reveals .index-section-reveal.is-visible .faq-item:nth-child(2) {
  transition-delay: 80ms;
}

.js-index-reveals .index-section-reveal.is-visible .join-grid .join-card:nth-child(3),
.js-index-reveals .index-section-reveal.is-visible .updates__grid > *:nth-child(3),
.js-index-reveals .index-section-reveal.is-visible .faq-item:nth-child(3) {
  transition-delay: 150ms;
}

.js-index-reveals .index-section-reveal.is-visible .join-grid .join-card:nth-child(4),
.js-index-reveals .index-section-reveal.is-visible .faq-item:nth-child(4) {
  transition-delay: 220ms;
}

.js-index-reveals .index-section-reveal.is-visible .join-grid .join-card:nth-child(5),
.js-index-reveals .index-section-reveal.is-visible .faq-item:nth-child(5) {
  transition-delay: 290ms;
}

.js-index-reveals .index-section-reveal.is-visible .join-grid .join-card:nth-child(6),
.js-index-reveals .index-section-reveal.is-visible .faq-item:nth-child(6) {
  transition-delay: 360ms;
}

.how-film {
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.how-film__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 252, 248, 1);
  touch-action: pan-y;
}

.how-film__track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.how-film__slide {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 100%;
  height: min(920px, 100vh);
  height: min(920px, 100svh);
  overflow: hidden;
}

.how-film__slide--cover {
  color: var(--cream);
}

.how-film__bg,
.how-film__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.how-film__bg {
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.how-film__shade {
  z-index: 1;
  background: rgba(0, 0, 0, 0.36);
}

.how-film__cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 1440px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  padding: 96px 116px 118px;
}

.how-film__slide--right .how-film__cover-content {
  align-items: flex-end;
}

.how-film h2 {
  max-width: 640px;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.how-film h2 em {
  display: block;
  font-style: italic;
}

.how-film__glass {
  width: min(650px, 100%);
  margin-top: 36px;
  padding: 30px 32px 32px;
  border: 1px solid rgba(255, 252, 248, 0.12);
  border-radius: 12px;
  background: rgba(34, 26, 31, 0.46);
  backdrop-filter: blur(16px);
}

.how-film__glass p,
.how-film__text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.how-film__glass p + p,
.how-film__text p + p {
  margin-top: 16px;
}

.how-film__button {
  display: inline-flex;
  width: 190px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  border-radius: 6px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.how-film__button:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  transform: translateY(-2px);
}

.how-film__slide--split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: rgba(255, 252, 248, 1);
}

.how-film__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 64px;
}

.how-film__slide--split:not(.how-film__slide--reverse) .how-film__text {
  padding-left: max(54px, calc((100vw - 1440px) / 2 + 54px));
}

.how-film__slide--reverse .how-film__text {
  padding-right: max(54px, calc((100vw - 1440px) / 2 + 54px));
}

.how-film__text h2 {
  max-width: 580px;
  color: var(--ink);
}

.how-film__text p {
  max-width: 600px;
  margin-top: 32px;
  color: rgba(34, 26, 31, 0.68);
}

.how-film__media {
  min-height: 100%;
  overflow: hidden;
}

.how-film__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.how-film__dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 38px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
}

.how-film__dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.86);
  cursor: pointer;
  pointer-events: auto;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.how-film__viewport[data-active-slide="1"] .how-film__dots button,
.how-film__viewport[data-active-slide="2"] .how-film__dots button {
  background: rgba(34, 26, 31, 0.14);
}

.how-film__viewport .how-film__dots button.is-active {
  background: rgba(152, 79, 145, 1);
  transform: scale(1.05);
}

.how-outcome {
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.how-outcome__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 126px 108px 120px;
}

.how-outcome__heading {
  text-align: center;
}

.how-outcome__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.how-outcome__heading p {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.how-outcome__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 96px;
}

.how-outcome__card,
.how-outcome__media {
  min-height: 522px;
  border-radius: 20px;
  overflow: hidden;
}

.how-outcome__card {
  padding: 53px 48px 46px;
  background: #efefef;
}

.how-outcome__card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.how-outcome__card h3 em {
  font-style: italic;
}

.how-outcome__card ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 37px 0 0;
  padding: 0;
  list-style: none;
}

.how-outcome__card li {
  position: relative;
  padding-left: 18px;
  font-size: 24px;
  line-height: 1.28;
}

.how-outcome__card li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(152, 79, 145, 1);
  content: "";
}

.how-outcome__media {
  background: #ddd;
}

.how-outcome__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.how-final-cta {
  display: grid;
  min-height: 675px;
  place-items: center;
  background: rgba(255, 252, 248, 1);
  color: #462143;
}

.how-final-cta__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 118px 24px 120px;
  text-align: center;
}

.how-final-cta h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.how-final-cta p {
  max-width: 420px;
  margin: 43px auto 0;
  font-size: 20px;
  line-height: 1.3;
}

.how-final-cta__button {
  display: inline-flex;
  width: 192px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 96px;
  border-radius: 6px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.how-final-cta__button:hover {
  color: rgba(152, 79, 145, 1);
  background: #efefef;
  transform: translateY(-2px);
}

.volunteer-hero {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 172px 56px 96px;
  background: rgba(255, 252, 248, 1);
  color: var(--purple);
}

.volunteer-hero__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
  text-align: center;
}

.volunteer-hero h1 {
  max-width: 1210px;
  margin: 0 auto;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(86px, 7.25vw, 112px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.volunteer-hero h1 em {
  font-style: italic;
}

.volunteer-hero p {
  max-width: 590px;
  margin: 41px auto 0;
  color: rgba(34, 26, 31, 0.68);
  font-size: 21px;
  line-height: 1.24;
}

.volunteer-hero__button {
  display: inline-flex;
  width: 190px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 65px;
  border-radius: 6px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.volunteer-hero__button:hover {
  color: rgba(152, 79, 145, 1);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(152, 79, 145, 1);
  transform: translateY(-2px);
}

.membership-hero {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 172px 56px 76px;
  background: rgba(255, 252, 248, 1);
  color: var(--purple);
}

.membership-hero__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
  text-align: center;
}

.membership-hero h1 {
  max-width: 1158px;
  margin: 0 auto;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(86px, 7.25vw, 112px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.membership-hero h1 em {
  font-style: italic;
}

.membership-hero p {
  max-width: 590px;
  margin: 43px auto 0;
  color: rgba(34, 26, 31, 0.68);
  font-size: 21px;
  line-height: 1.24;
}

.membership-hero__button {
  display: inline-flex;
  width: 190px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 66px;
  border-radius: 6px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.membership-hero__button:hover {
  color: rgba(152, 79, 145, 1);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(152, 79, 145, 1);
  transform: translateY(-2px);
}

.research-hero {
  display: grid;
  place-items: center;
  padding: 227px 56px 120px;
  background: rgba(255, 252, 248, 1);
  color: #43203e;
}

.research-hero__inner {
  display: flex;
  width: min(100%, 1248px);
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  text-align: center;
}

.research-hero__title {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 8.33vw, 120px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.research-hero__title span {
  display: block;
  white-space: nowrap;
}

.research-hero__title em {
  font-style: italic;
}

.research-hero p {
  width: min(100%, 652px);
  max-width: none;
  margin: 0 auto;
  color: #5a5a5a;
  font-size: 20px;
  line-height: 1.3;
}

.research-hero p br {
  display: block;
}

.research-value {
  padding: 120px 96px;
  background: #5c2c58;
  color: var(--cream);
}

.research-value__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-value h2 {
  max-width: none;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-value h2 em {
  font-style: italic;
}

.research-value__body {
  display: grid;
  grid-template-columns: minmax(0, 509fr) minmax(0, 719fr);
  gap: 20px;
  align-items: start;
  margin-top: 56px;
}

.research-value__media,
.research-value__card {
  height: 462px;
  overflow: hidden;
}

.research-value__media {
  border-radius: 24px;
}

.research-value__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

.research-value__card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 252, 248, 1);
}

.research-value__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.research-value__card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.research-value__card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-value__card ul {
  margin: 0;
  padding-left: 30px;
  font-size: 20px;
  line-height: 1.3;
}

.research-value__card li {
  margin: 0;
}

.research-value__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: auto;
}

.research-value__button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.research-value__button--secondary {
  color: #462143;
  background: transparent;
  box-shadow: inset 0 0 0 1px #462143;
}

.research-value__button--primary {
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.research-value__button:hover {
  transform: translateY(-2px);
}

.research-value__button--secondary:hover {
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.research-value__button--primary:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  box-shadow: inset 0 0 0 1px rgba(152, 79, 145, 1);
}

.research-audit {
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: 120px max(56px, calc((100vw - 920px) / 2));
  background: rgba(255, 252, 248, 1);
  color: #462143;
}

.research-audit__inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.research-audit p {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.research-audit em {
  font-style: italic;
}

.research-parameters {
  padding: 120px 96px;
  background: rgba(255, 252, 248, 1);
  color: #462143;
}

.research-parameters__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-parameters h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-parameters__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 96px;
}

.research-parameter-card {
  display: flex;
  min-height: 198px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;
  color: var(--ink);
  background: #efe2ec;
}

.research-parameter-card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.research-parameter-card p {
  max-width: 100%;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-distortion {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: rgba(240, 240, 240, 0.4);
  color: var(--ink);
  isolation: isolate;
}

.research-distortion::before,
.research-distortion::after {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 80px;
  background: rgba(152, 79, 145, 0.22);
  filter: blur(56px);
  content: "";
  pointer-events: none;
}

.research-distortion::before {
  top: 20px;
  left: 50%;
  transform: translateX(-24%);
}

.research-distortion::after {
  bottom: -42px;
  left: 0;
  transform: translateX(-20%);
}

.research-distortion__inner {
  width: 100%;
  margin: 0 auto;
}

.research-distortion__heading {
  width: min(100%, 878px);
  margin: 0 auto;
  text-align: center;
}

.research-distortion__heading h2 {
  margin: 0;
  color: #462143;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-distortion__heading p {
  max-width: 878px;
  margin: 16px auto 0;
  font-size: 24px;
  line-height: 1.3;
}

.research-distortion__content {
  display: grid;
  grid-template-columns: 505px 505px;
  justify-content: center;
  gap: 129px;
  padding: 0 96px;
  margin-top: 96px;
}

.research-distortion__left,
.research-distortion__right {
  width: 505px;
  font-size: 20px;
  line-height: 1.3;
}

.research-distortion__left p,
.research-distortion__right p {
  margin: 0;
}

.research-distortion__left p + p,
.research-distortion__right p + p {
  margin-top: 32px;
}

.research-distortion__lead {
  min-height: 264px;
}

.research-distortion__lead::first-letter {
  float: left;
  margin: 0 24px 0 0;
  padding: 0;
  color: #000;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 200px;
  line-height: 0.9;
}

.research-importance {
  padding: 120px 96px;
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.research-importance__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-importance__heading {
  margin: 0;
  text-align: left;
}

.research-importance__heading h2 {
  margin: 0;
  color: #462143;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-importance__heading h2 em {
  color: rgba(152, 79, 145, 1);
  font-style: italic;
}

.research-importance__heading p {
  margin: 16px 0 0;
  color: #5a5a5a;
  font-size: 24px;
  line-height: 1.3;
}

.research-importance__body {
  display: grid;
  grid-template-columns: minmax(0, 538px) minmax(0, 614px);
  gap: 96px;
  align-items: center;
  margin-top: 96px;
}

.research-importance__media {
  height: 732px;
  overflow: hidden;
  border-radius: 24px;
}

.research-importance__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 37% center;
}

.research-importance__text {
  display: flex;
  min-height: 732px;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
  line-height: 1.3;
}

.research-importance__text p {
  margin: 0;
}

.research-importance__emphasis {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.research-importance__emphasis p {
  font-weight: 600;
}

.research-importance__emphasis ul {
  margin: 0;
  padding-left: 29px;
  font-size: inherit;
  line-height: inherit;
}

.research-importance__emphasis li {
  margin: 0;
}

.research-basis {
  position: relative;
  overflow: hidden;
  padding: 120px 96px;
  background: rgba(240, 240, 240, 0.5);
  color: var(--ink);
  isolation: isolate;
}

.research-basis::before,
.research-basis::after {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 80px;
  background: rgba(152, 79, 145, 0.2);
  filter: blur(58px);
  content: "";
  pointer-events: none;
}

.research-basis::before {
  top: 22px;
  left: 40px;
}

.research-basis::after {
  right: 48px;
  bottom: 48px;
}

.research-basis__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-basis h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-basis__columns {
  display: grid;
  grid-template-columns: minmax(0, 592px) minmax(0, 592px);
  gap: 64px;
  margin-top: 64px;
  font-size: 20px;
  line-height: 1.3;
}

.research-basis__columns p {
  margin: 0;
}

.research-basis__columns p + p {
  margin-top: 26px;
}

.research-basis__columns a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.research-check {
  padding: 120px 96px;
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.research-check__inner {
  display: grid;
  width: min(100%, 1248px);
  grid-template-columns: minmax(0, 571px) minmax(0, 613px);
  gap: 64px;
  margin: 0 auto;
}

.research-check__intro h2 {
  max-width: 571px;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-check__intro h2 em {
  font-style: italic;
}

.research-check__intro h2 span {
  display: block;
}

.research-check__intro p {
  max-width: 571px;
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.research-check__intro p br {
  display: block;
}

.research-check__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.research-check__media {
  width: 100%;
  height: 344px;
  overflow: hidden;
  border-radius: 24px;
}

.research-check__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.research-check__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-check__copy p {
  margin: 0;
}

.research-check__copy p + p {
  margin-top: 8px;
}

.research-summary {
  display: flex;
  min-height: 712px;
  align-items: center;
  justify-content: center;
  padding: 120px 96px;
  background: #5c2c58;
  color: var(--cream);
}

.research-summary__inner {
  display: flex;
  width: min(100%, 825px);
  flex-direction: column;
  align-items: center;
  gap: 64px;
  margin: 0 auto;
  text-align: center;
}

.research-summary__statement {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.research-summary__statement p {
  margin: 0;
}

.research-summary__statement em {
  display: block;
  margin-bottom: 16px;
  font-size: 40px;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.research-summary__note {
  width: min(100%, 614px);
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.3;
}

.research-representation {
  padding: 120px 96px;
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.research-representation__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-representation__intro,
.research-representation__note,
.research-representation__layer {
  background: #f3f3f3;
}

.research-representation__intro {
  min-height: 372px;
  padding: 40px;
  border-radius: 24px;
}

.research-representation__intro h2 {
  margin: 0 0 24px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-representation__intro p {
  max-width: 728px;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-representation__grid {
  display: grid;
  grid-template-columns: minmax(0, 689px) minmax(0, 535px);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.research-representation__layers {
  height: 798px;
  padding: 40px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 12%, rgba(255, 252, 248, 0.62), transparent 34%),
    linear-gradient(180deg, #ecd6e9 0%, #e7cae4 100%);
}

.research-representation__layers h3 {
  margin: 0 0 32px;
  color: #462143;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.research-representation__layer {
  height: 180.67px;
  min-height: 0;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 252, 248, 1);
}

.research-representation__layer + .research-representation__layer {
  margin-top: 20px;
}

.research-representation__layer h4 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.research-representation__layer p {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-representation__side {
  display: grid;
  height: 798px;
  grid-template-rows: 288px 486px;
  gap: 24px;
}

.research-representation__note {
  height: 288px;
  padding: 40px;
  border-radius: 24px;
  background: #f0f0f0;
}

.research-representation__note p {
  width: 100%;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-representation__media {
  height: 486px;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
}

.research-representation__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.research-areas {
  padding: 120px 96px;
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.research-areas__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-areas h2 {
  margin: 0;
  padding: 0 56px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.research-areas__stage {
  display: grid;
  grid-template-columns: minmax(0, 614px) minmax(0, 614px);
  gap: 20px;
  align-items: stretch;
  margin-top: 96px;
}

.research-areas__card,
.research-areas__media {
  height: 712px;
  overflow: hidden;
  border-radius: 24px;
}

.research-areas__card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 48px;
  background: #f0f0f0;
}

.research-areas__card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.research-areas__copy {
  display: flex;
  max-width: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.3;
}

.research-areas__copy p {
  margin: 0;
}

.research-areas__copy ul {
  margin: 0;
  padding-left: 30px;
  font-size: 20px;
  line-height: 1.3;
}

.research-areas__copy li {
  margin: 0;
  padding-left: 0;
}

.research-areas__controls {
  display: flex;
  gap: 24px;
  margin-top: auto;
}

.research-areas__controls button {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(34, 26, 31, 0.7);
  border-radius: 50%;
  color: #5a5a5a;
  background: transparent;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.3;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.research-areas__controls button.is-active,
.research-areas__controls button:hover {
  color: #221a1f;
  background: rgba(255, 252, 248, 1);
  border-color: #221a1f;
}

.research-areas__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition:
    opacity 180ms ease,
    transform 260ms ease;
}

.research-areas__card h3,
.research-areas__copy {
  transition: opacity 180ms ease;
}

.research-areas__stage.is-changing .research-areas__card h3,
.research-areas__stage.is-changing .research-areas__copy,
.research-areas__stage.is-changing .research-areas__media img {
  opacity: 0;
}

.research-areas__stage.is-changing .research-areas__media img {
  transform: scale(1.02);
}

.research-age-analysis {
  position: relative;
  overflow: hidden;
  padding: 120px 96px;
  background: rgba(240, 240, 240, 0.5);
  color: var(--ink);
  isolation: isolate;
}

.research-age-analysis::before,
.research-age-analysis::after {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 80px;
  background: rgba(152, 79, 145, 0.2);
  filter: blur(56px);
  content: "";
  pointer-events: none;
}

.research-age-analysis::before {
  top: 28px;
  left: 50%;
  transform: translateX(-10%);
}

.research-age-analysis::after {
  bottom: -90px;
  left: 275px;
}

.research-age-analysis__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-age-analysis h2 {
  max-width: 1136px;
  margin: 0 auto;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.research-age-analysis__columns {
  display: grid;
  grid-template-columns: minmax(0, 614px) minmax(0, 614px);
  gap: 20px;
  margin-top: 96px;
  font-size: 20px;
  line-height: 1.3;
}

.research-age-analysis__columns > div {
  min-height: 546px;
  padding: 40px;
  border-radius: 24px;
}

.research-age-analysis__columns p {
  margin: 0;
}

.research-age-analysis__columns p + p {
  margin-top: 8px;
}

.research-age-analysis__columns strong {
  font-weight: 600;
}

.research-age-analysis__columns ul {
  margin: 0;
  padding-left: 30px;
  font-size: 20px;
  line-height: 1.3;
}

.research-age-analysis__columns li {
  margin: 0;
  padding-left: 0;
}

.infrastructure {
  min-height: 100vh;
  min-height: 100svh;
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.infrastructure__sticky {
  position: relative;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow: visible;
}

.infrastructure__inner {
  --orbit-size: clamp(420px, min(48vw, calc(100svh - 310px)), 690px);
  --orbit-dot: clamp(24px, calc(var(--orbit-size) * 0.046), 32px);
  --orbit-top-gap: clamp(74px, calc(var(--orbit-size) * 0.16), 112px);
  --orbit-bottom-gap: clamp(42px, calc(var(--orbit-size) * 0.08), 58px);
  width: min(100%, 1440px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(78px, 10svh, 124px) 56px 24px;
}

.infrastructure__heading {
  text-align: center;
}

.infrastructure__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.infrastructure__heading em {
  color: var(--purple);
  font-style: italic;
}

.infrastructure__heading p {
  margin: 8px 0 0;
  color: #5a5a5a;
  font-size: 20px;
  line-height: 1.3;
}

.orbit {
  --orbit-angle: 270deg;
  position: relative;
  width: min(calc(var(--orbit-size) + clamp(300px, 32vw, 450px)), 100%);
  height: calc(var(--orbit-top-gap) + var(--orbit-size) + var(--orbit-bottom-gap));
  margin: clamp(24px, 3svh, 44px) auto 0;
}

.orbit__visual {
  position: absolute;
  top: var(--orbit-top-gap);
  left: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  transform: translateX(-50%);
}

.orbit__rings {
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
}

.orbit__rings::before,
.orbit__rings::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(var(--orbit-angle));
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orbit__rings::before {
  inset: -10px;
  background: conic-gradient(
    from -22deg,
    transparent 0deg,
    rgba(152, 79, 145, 0.08) 4deg,
    rgba(152, 79, 145, 0.24) 18deg,
    rgba(152, 79, 145, 0.08) 34deg,
    transparent 46deg 360deg
  );
  filter: blur(3px);
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 18px),
    #000 calc(100% - 17px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 18px),
    #000 calc(100% - 17px)
  );
}

.orbit__rings::after {
  inset: -3px;
  background: conic-gradient(
    from -16deg,
    transparent 0deg,
    rgba(152, 79, 145, 0.22) 3deg,
    rgba(152, 79, 145, 0.78) 17deg,
    rgba(152, 79, 145, 0.2) 31deg,
    transparent 40deg 360deg
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 5px),
    #000 calc(100% - 4px),
    #000 calc(100% - 1px),
    transparent 100%
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 5px),
    #000 calc(100% - 4px),
    #000 calc(100% - 1px),
    transparent 100%
  );
}

.orbit__media {
  position: absolute;
  inset: calc(var(--orbit-size) * 0.058);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #d8d2c9;
}

.orbit__media::after {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  width: min(548px, calc(100% - 104px));
  color: var(--cream);
  content: attr(data-preview-text);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.99);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orbit__media img,
.orbit__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orbit__media img {
  object-fit: cover;
  transition:
    opacity 260ms ease,
    transform 700ms ease;
}

.orbit__media.is-previewing img {
  transform: scale(1.018);
}

.orbit__overlay {
  background: rgba(0, 0, 0, 0.42);
  transition: background 260ms ease;
}

.orbit__media p {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: min(548px, calc(100% - 104px));
  margin: 0;
  color: var(--cream);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.3;
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orbit__media.is-previewing .orbit__overlay {
  background:
    linear-gradient(135deg, rgba(115, 53, 110, 0.22), rgba(0, 0, 0, 0.08)),
    rgba(0, 0, 0, 0.48);
}

.orbit__media.is-previewing p {
  opacity: 0;
  transform: translateY(-10px) scale(0.99);
}

.orbit__media.is-previewing::after {
  opacity: 0.88;
  transform: translateY(0) scale(1);
}

.orbit__media.is-switching {
  animation: orbitMediaSettle 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orbit__media.is-switching img {
  animation: orbitImageSettle 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orbit-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: clamp(14px, calc(var(--orbit-size) * 0.046), 32px);
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: clamp(18px, calc(var(--orbit-size) * 0.035), 24px);
  line-height: 1.3;
  cursor: pointer;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.orbit-point::before {
  display: block;
  width: var(--orbit-dot);
  height: var(--orbit-dot);
  flex: 0 0 var(--orbit-dot);
  aspect-ratio: 1;
  box-sizing: border-box;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 252, 248, 1);
  content: "";
  transform: scale(0.6875);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.orbit-point span {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.orbit-point.is-dot-hover,
.orbit-point:focus-visible,
.orbit-point.is-demo-highlight,
.orbit-point.is-guiding-pulse {
  color: #55264f;
}

.orbit-point.is-dot-hover::before,
.orbit-point:focus-visible::before,
.orbit-point.is-demo-highlight::before {
  border-color: var(--purple);
  background: var(--purple);
  transform: scale(1.08);
}

.orbit-point.is-dot-hover span,
.orbit-point:focus-visible span {
  transform: translateY(-2px);
}

.orbit-point:focus-visible {
  outline: 0;
}

.orbit-point:focus-visible span {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.orbit-point.is-active {
  color: #55264f;
}

.orbit-point.is-active::before {
  border-color: var(--purple);
  background: var(--purple);
  box-shadow: 0 0 0 0 rgba(115, 53, 110, 0.34);
  transform: scale(1);
  animation: orbitActivePulse 2.8s ease-out infinite;
}

.orbit-point.is-demo-highlight::before {
  box-shadow: 0 0 0 14px rgba(115, 53, 110, 0);
  animation: orbitDemoPulse 980ms ease-out;
}

.orbit-point.is-guiding-pulse::before {
  border-color: var(--purple);
  background: rgba(255, 252, 248, 1);
  box-shadow:
    0 0 0 7px rgba(255, 252, 248, 0.96),
    0 0 0 9px rgba(115, 53, 110, 0.24),
    0 0 22px 9px rgba(115, 53, 110, 0.16);
  transform: scale(1);
  animation: orbitGuidePulse 1.6s ease-out;
}

.orbit-point.is-active.is-dot-hover::before,
.orbit-point.is-active:focus-visible::before {
  transform: scale(1.12);
}

.orbit-point--top {
  top: 0;
  left: 50%;
  height: calc(var(--orbit-top-gap) + var(--orbit-dot) / 2);
  flex-direction: column-reverse;
  justify-content: flex-start;
  width: min(420px, 100%);
  text-align: center;
  transform: translateX(-50%);
}

.orbit-point--right {
  top: calc(var(--orbit-top-gap) + var(--orbit-size) / 2 - var(--orbit-dot) / 2);
  left: calc(50% + var(--orbit-size) / 2 - var(--orbit-dot) / 2);
  flex-direction: row;
  width: clamp(260px, 24vw, 360px);
  white-space: nowrap;
}

.orbit-point--bottom {
  top: calc(var(--orbit-top-gap) + var(--orbit-size) - var(--orbit-dot) / 2);
  left: 50%;
  height: calc(var(--orbit-bottom-gap) + var(--orbit-dot) / 2);
  flex-direction: column;
  justify-content: flex-start;
  width: clamp(320px, 34vw, 460px);
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.orbit-point--left {
  top: calc(var(--orbit-top-gap) + var(--orbit-size) / 2 - var(--orbit-dot) / 2);
  right: calc(50% + var(--orbit-size) / 2 - var(--orbit-dot) / 2);
  flex-direction: row-reverse;
  width: clamp(260px, 24vw, 360px);
  white-space: nowrap;
}

@keyframes orbitActivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(115, 53, 110, 0.34);
  }

  70%,
  100% {
    box-shadow: 0 0 0 16px rgba(115, 53, 110, 0);
  }
}

@keyframes orbitMediaSettle {
  0% {
    transform: scale(0.985);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes orbitImageSettle {
  0% {
    opacity: 0.82;
    transform: scale(1.018);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orbitDemoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(115, 53, 110, 0.3);
  }

  100% {
    box-shadow: 0 0 0 22px rgba(115, 53, 110, 0);
  }
}

@keyframes orbitGuidePulse {
  0% {
    box-shadow:
      0 0 0 4px rgba(255, 252, 248, 0.96),
      0 0 0 5px rgba(115, 53, 110, 0.34),
      0 0 10px 3px rgba(115, 53, 110, 0.2);
  }

  100% {
    box-shadow:
      0 0 0 7px rgba(255, 252, 248, 0.96),
      0 0 0 18px rgba(115, 53, 110, 0),
      0 0 28px 12px rgba(115, 53, 110, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-index-reveals .index-reveal-target,
  .js-index-reveals .join-grid .join-card,
  .js-index-reveals .updates__grid > *,
  .js-index-reveals .faq-item,
  .js-index-reveals .project-row {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .orbit__media,
  .orbit__media img,
  .orbit__media p,
  .orbit__media::after,
  .orbit__rings::before,
  .orbit__rings::after,
  .orbit-point,
  .orbit-point::before,
  .orbit-point span {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .orbit-point.is-active::before,
  .orbit-point.is-demo-highlight::before,
  .orbit-point.is-guiding-pulse::before {
    animation: none !important;
    box-shadow: none;
  }
}

.mobile-cards {
  display: none;
}

.system {
  --system-progress: 0;
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.system__inner {
  display: grid;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 128px 56px 90px;
  grid-template-columns: 536px 1fr;
  column-gap: 141px;
}

.system__intro {
  position: sticky;
  top: 128px;
  align-self: start;
}

.system__intro h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.system__intro em {
  color: var(--purple);
  font-style: italic;
}

.system__intro p {
  margin: 16px 0 0;
  color: #5a5a5a;
  font-size: 24px;
  line-height: 1.3;
}

.system__body {
  min-width: 0;
  padding-top: 92px;
}

.system__goal {
  max-width: 648px;
  margin: 0 0 96px;
  color: #5a5a5a;
  font-size: 20px;
  line-height: 1.3;
}

.system__steps-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 16px minmax(0, 648px);
  column-gap: 96px;
}

.system__progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: transparent;
}

.system__progress span {
  display: block;
  width: 100%;
  height: max(228px, calc(var(--system-progress) * 100%));
  border-radius: 999px;
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple) 55%, rgba(115, 53, 110, 0) 100%);
  transition: height 80ms linear;
}

.system__steps {
  display: flex;
  flex-direction: column;
  grid-column: 2;
  gap: 56px;
}

.system-step h3 {
  margin: 0 0 24px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.system-step p {
  margin: 0;
  color: #5a5a5a;
  font-size: 20px;
  line-height: 1.3;
}

.system-step__condition {
  margin-top: 8px !important;
  color: var(--ink) !important;
}

.system-step a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.system--volunteers .system__inner {
  padding-bottom: 118px;
}

.system--research-gap {
  background: rgba(255, 252, 248, 1);
}

.system--research-gap .system__inner {
  display: block;
  width: min(100%, 1440px);
  padding: 120px 96px;
  box-sizing: border-box;
}

.system--research-gap .system__intro {
  position: static;
  max-width: 1248px;
  margin: 0 auto;
  text-align: center;
}

.system--research-gap .system__intro h2 {
  color: var(--ink);
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.system--research-gap .system__intro p {
  max-width: 1248px;
  margin: 16px auto 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.3;
}

.system--research-gap .system__body {
  width: min(100%, 725px);
  margin: 96px auto 0;
  padding-top: 0;
}

.system--research-gap .system__steps-wrap {
  grid-template-columns: 16px minmax(0, 612px);
  column-gap: 97px;
}

.system--research-gap .system__progress span {
  height: calc(var(--system-progress) * 100%);
  background: linear-gradient(180deg, #5c2c58 0%, rgba(92, 44, 88, 0.22) 62%, rgba(92, 44, 88, 0.08) 100%);
}

.system--research-gap .system__steps {
  gap: 64px;
}

.system--research-gap .system-step h3 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.system--research-gap .system-step:nth-child(n + 2) h3 {
  font-weight: 500;
}

.system--research-gap .system-step p {
  color: #5a5a5a;
  font-size: 20px;
  line-height: 1.3;
}

.research-gap-break {
  display: block;
}

.research-bridge {
  display: flex;
  min-height: 628px;
  align-items: center;
  justify-content: center;
  padding: 120px 307px;
  background: #5c2c58;
  color: var(--cream);
}

.research-bridge__inner {
  width: min(100%, 826px);
  margin: 0 auto;
  font-family: Lora, Georgia, "Times New Roman", serif;
  text-align: center;
}

.research-bridge h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-bridge p {
  margin: 72px 0 0;
  font-size: 50px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.research-bridge em {
  font-style: italic;
}

.research-structure {
  min-height: 1151px;
  padding: 120px 96px;
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.research-structure__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-structure__intro {
  max-width: 1248px;
  margin: 0;
}

.research-structure__intro h2 {
  margin: 0 0 24px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-structure__intro p {
  width: min(100%, 720px);
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-structure__intro p + p {
  margin-top: 0;
}

.research-structure__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 400px));
  gap: 24px;
  margin-top: 96px;
}

.research-structure-card {
  display: flex;
  height: 601px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 16px;
  background: #f0f0f0;
}

.research-structure-card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.research-structure-card p {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-structure-card img {
  width: 100%;
  height: 237px;
  margin-top: 0;
  border-radius: 16px;
  object-fit: cover;
  object-position: center center;
}

.research-components {
  overflow: hidden;
  min-height: 929px;
  padding: 120px 96px;
  background: #5c2c58;
  color: var(--cream);
}

.research-components__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-components h2 {
  width: 100%;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-components__stage {
  position: relative;
  width: 100%;
  margin: 96px auto 0;
  padding-top: 88px;
}

.research-components__controls {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  gap: 8px;
}

.research-components__control {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 252, 248, 0.86);
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.research-components__control:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  transform: translateY(-2px);
}

.research-components__carousel {
  display: grid;
  grid-auto-columns: 613px;
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  width: calc(100vw - max(96px, calc((100vw - 1248px) / 2)));
  max-width: none;
  padding: 0 613px 0 0;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.research-components__carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.research-components__carousel::-webkit-scrollbar {
  display: none;
}

.research-components .research-component-card {
  display: flex;
  width: 613px;
  min-width: 0;
  height: 445px;
  flex-direction: column;
  gap: 0;
  padding: 40px;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: #efe2ec;
  box-shadow: none;
  backdrop-filter: none;
  scroll-snap-align: start;
}

.research-components .research-component-card h3 {
  margin: 0 0 24px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.research-components .research-component-card p,
.research-components .research-component-card p:not(.volunteer-track-card__time) {
  align-self: auto;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-components .research-component-card p + p {
  margin-top: 8px;
}

.research-components .research-component-card p:last-child {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.research-components .research-component-card strong {
  font-weight: 600;
}

.research-prepared {
  min-height: 1557px;
  padding: 120px 96px;
  color: var(--ink);
  background: rgba(255, 252, 248, 1);
}

.research-prepared__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-prepared__heading {
  width: min(100%, 531px);
  margin: 0 auto;
  text-align: center;
}

.research-prepared__heading h2 {
  width: 709px;
  max-width: calc(100vw - 192px);
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.research-prepared__heading p {
  width: 531px;
  max-width: 100%;
  margin: 16px auto 0;
  font-size: 24px;
  line-height: 1.3;
}

.research-prepared__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 96px;
}

.research-prepared__media,
.research-prepared__card {
  overflow: hidden;
  border-radius: 24px;
}

.research-prepared__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-prepared__media--top {
  grid-column: 1 / span 5;
  height: 322px;
}

.research-prepared__media--top img {
  object-position: center center;
}

.research-prepared__card {
  background: #f2f2f2;
}

.research-prepared__card--intro {
  grid-column: 6 / span 7;
  height: 322px;
  padding: 40px;
}

.research-prepared__card--list {
  grid-column: 1 / span 8;
  height: 537px;
  padding: 40px;
}

.research-prepared__media--side {
  grid-column: 9 / span 4;
  height: auto;
  min-height: 537px;
  align-self: stretch;
}

.research-prepared__media--side img {
  object-position: center center;
}

.research-prepared__media--bottom {
  grid-column: 1 / span 5;
  height: 184px;
}

.research-prepared__media--bottom img {
  object-position: center 58%;
}

.research-prepared__card--closing {
  grid-column: 6 / span 7;
  height: 184px;
  padding: 40px;
}

.research-prepared__card h3 {
  margin: 0 0 34px;
  font-family: "Open Sans", Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.research-prepared__card p,
.research-prepared__card li {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-prepared__card p + p {
  margin-top: 14px;
}

.research-prepared__card ul {
  margin: 0;
  padding-left: 34px;
}

.research-prepared__card--list li {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.research-prepared__card strong {
  font-weight: 600;
}

.research-results {
  height: 920px;
  overflow: hidden;
  padding: 120px 96px 0;
  color: var(--cream);
  background: #5c2c58;
}

.research-results__inner {
  display: grid;
  grid-template-columns: minmax(0, 571px) minmax(0, 596px);
  grid-template-rows: auto 1fr;
  column-gap: 81px;
  row-gap: 64px;
  width: min(100%, 1248px);
  height: 800px;
  margin: 0 auto;
}

.research-results__copy {
  display: contents;
}

.research-results__copy h2 {
  grid-column: 1 / -1;
  width: 571px;
  max-width: 100%;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-results__text {
  grid-column: 1;
  grid-row: 2;
  max-width: 571px;
  margin-top: 0;
}

.research-results__text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-results__text p + p {
  margin-top: 26px;
}

.research-results__panel {
  display: flex;
  grid-column: 2;
  grid-row: 2;
  width: 596px;
  max-width: 100%;
  min-width: 0;
  flex-direction: column;
  align-self: stretch;
  padding: 0;
}

.research-results__panel h3 {
  margin: 0 0 64px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.research-results__cards {
  display: flex;
  width: 596px;
  max-width: 100%;
  height: 416px;
  max-height: 416px;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding-right: 0;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.research-results__cards:focus {
  outline: none;
}

.research-results__cards::-webkit-scrollbar {
  display: none;
}

.research-result-card {
  flex: 0 0 auto;
  width: 596px;
  max-width: 100%;
  height: 184px;
  padding: 24px;
  border-radius: 16px;
  color: var(--ink);
  background: #efe2ec;
}

.research-result-card h4 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.research-result-card p {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-matters {
  padding: 120px 96px;
  color: var(--ink);
  background: rgba(255, 252, 248, 1);
}

.research-matters__inner {
  display: flex;
  width: min(100%, 1248px);
  margin: 0 auto;
  flex-direction: column;
  gap: 64px;
}

.research-matter-card {
  display: grid;
  width: 100%;
  min-height: 604px;
  grid-template-columns: minmax(0, 707px) 509px;
  gap: 32px;
  overflow: hidden;
  border-radius: 24px;
  background: #f0f0f0;
}

.research-matter-card__copy {
  padding: 40px 0 40px 40px;
}

.research-matter-card h2 {
  display: grid;
  grid-template-columns: 57px minmax(0, 586px);
  column-gap: 24px;
  align-items: start;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.research-matter-card h2 span {
  display: inline-block;
  min-width: 0;
  font-style: italic;
  font-size: 50px;
  line-height: 1.2;
}

.research-matter-card__body {
  max-width: 586px;
  margin: 32px 0 0 81px;
}

.research-matter-card__body p,
.research-matter-card__body li {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-matter-card__body p + p {
  margin-top: 16px;
}

.research-matter-card__body ul {
  margin: 18px 0;
  padding-left: 26px;
}

.research-matter-card__lead {
  margin-top: 24px !important;
  font-size: 24px !important;
  font-weight: 600;
  line-height: 1.3 !important;
}

.research-matter-card__media {
  width: 509px;
  min-height: 604px;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

.research-matter-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-matter-card:nth-child(1) .research-matter-card__media img {
  object-position: center center;
}

.research-matter-card:nth-child(2) .research-matter-card__media img {
  object-position: center center;
}

.research-matter-card:nth-child(3) .research-matter-card__media img {
  object-position: center center;
}

.research-matter-card:nth-child(4) .research-matter-card__media img {
  object-position: center center;
}

.research-verification {
  display: flex;
  min-height: 696px;
  align-items: center;
  padding: 96px 307px 120px;
  color: var(--cream);
  background: #5c2c58;
}

.research-verification__inner {
  width: min(100%, 826px);
  margin: 0 auto;
  text-align: center;
}

.research-verification p {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.research-verification em {
  font-style: italic;
}

.research-evidence {
  padding: 124px 56px 120px;
  color: #462143;
  background: rgba(255, 252, 248, 1);
}

.research-evidence__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-evidence h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 3.75vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.research-evidence__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 94px;
}

.research-evidence__media,
.research-evidence__card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.research-evidence__media--top {
  grid-column: 1 / span 5;
}

.research-evidence__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-evidence__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #efefef;
}

.research-evidence__card--intro {
  grid-column: 6 / span 7;
  padding: 40px 40px 38px;
}

.research-evidence__card--index {
  grid-column: 1 / span 7;
  padding: 40px 40px 36px;
}

.research-evidence__card h3 {
  margin: 0 0 22px;
  color: #050505;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.research-evidence__card p {
  margin: 0;
  color: #050505;
  font-size: 20px;
  line-height: 1.3;
}

.research-evidence__card--intro p {
  color: #462143;
}

.research-evidence__card p + p {
  margin-top: 17px;
}

.research-evidence__media--bottom {
  grid-column: 8 / span 5;
}

.research-conducting {
  padding: 124px 56px 120px;
  color: #050505;
  background: rgba(255, 252, 248, 1);
}

.research-conducting__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-conducting h2 {
  margin: 0 auto;
  color: #050505;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 4.7vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.research-conducting__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 96px;
}

.research-conducting__info,
.research-conducting__founder {
  min-width: 0;
}

.research-conducting__media {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.research-conducting__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-conducting__media--wide {
  aspect-ratio: 1.72;
}

.research-conducting__media--portrait {
  aspect-ratio: 0.98;
}

.research-conducting__copy {
  margin-top: 34px;
}

.research-conducting__copy h3 {
  margin: 0;
  max-width: 610px;
  color: #050505;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}

.research-conducting__copy p {
  max-width: 610px;
  margin: 14px 0 0;
  color: #050505;
  font-size: 20px;
  line-height: 1.3;
}

.research-conducting__founder-text {
  margin-top: 34px;
}

.research-conducting__founder-text h3 {
  margin: 0;
  color: #050505;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.14;
}

.research-conducting__founder-text p {
  margin: 18px 0 0;
  color: #050505;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.15;
}

.research-conducting__founder-text span {
  display: block;
  margin-top: 14px;
  color: #050505;
  font-size: 16px;
  line-height: 1.25;
}

.research-materials-note {
  display: flex;
  min-height: 448px;
  align-items: center;
  padding: 96px 56px;
  color: rgba(255, 252, 248, 1);
  background: #5f2d59;
}

.research-materials-note__inner {
  width: min(100%, 850px);
  margin: 0 auto;
  text-align: center;
}

.research-materials-note p {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 3.45vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.research-support {
  padding: 101px 56px 80px;
  color: var(--ink);
  background: rgba(255, 252, 248, 1);
}

.research-support__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-support__intro {
  max-width: 880px;
}

.research-support__intro h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 3.75vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.research-support__intro p {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.24;
}

.research-support__intro p + p {
  margin-top: 8px;
}

.research-support__grid {
  display: grid;
  max-width: 1038px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin: 96px auto 0;
}

.research-support-card {
  grid-column: span 2;
  min-height: 422px;
  padding: 28px 24px 26px;
  border-radius: 24px;
  background: #eadde8;
}

.research-support-card--wide {
  grid-column: span 3;
  min-height: 264px;
}

.research-support-card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
  color: #4a2249;
}

.research-support-card p {
  margin: 43px 0 0;
  color: rgba(90, 90, 90, 1);
  font-size: 20px;
  line-height: 1.3;
}

.research-support-card--wide p {
  margin-top: 42px;
}

.research-donor-note {
  position: relative;
  display: flex;
  min-height: 676px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 56px;
  background:
    repeating-linear-gradient(60deg, rgba(139, 71, 133, 0.14) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 20% 100%, rgba(139, 71, 133, 0.88) 0%, rgba(139, 71, 133, 0.46) 30%, rgba(255, 252, 248, 0) 56%),
    radial-gradient(circle at 58% 104%, rgba(139, 71, 133, 0.22) 0%, rgba(255, 252, 248, 0) 52%),
    rgba(255, 252, 248, 1);
}

.research-donor-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95, 45, 89, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 45, 89, 0.05) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.5;
  pointer-events: none;
}

.research-donor-note__card {
  position: relative;
  z-index: 1;
  width: min(100%, 1032px);
  min-height: 436px;
  padding: 42px 64px 40px;
  border-radius: 22px;
  color: #4a2249;
  background: rgba(255, 252, 248, 1);
  text-align: center;
}

.research-donor-note__card h2 {
  max-width: 860px;
  margin: 0 auto;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 3.75vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.research-donor-note__card p {
  max-width: 900px;
  margin: 45px auto 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-donor-note__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 98px;
}

.research-donor-note__button {
  display: inline-flex;
  width: 298px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid rgba(152, 79, 145, 1);
  border-radius: 7px;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.research-donor-note__button--ghost {
  color: rgba(152, 79, 145, 1);
  background: transparent;
}

.research-donor-note__button--solid {
  border-color: rgba(152, 79, 145, 1);
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.research-donor-note__button:hover {
  transform: translateY(-2px);
}

.research-donor-note__button--ghost:hover {
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.research-donor-note__button--solid:hover {
  background: rgba(152, 79, 145, 1);
}

.research-why-now {
  position: relative;
  overflow: hidden;
  padding: 124px 56px 64px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 71, 133, 0.18) 0%, rgba(255, 252, 248, 0) 38%),
    radial-gradient(circle at 35% 47%, rgba(139, 71, 133, 0.16) 0%, rgba(255, 252, 248, 0) 34%),
    radial-gradient(circle at 67% 50%, rgba(139, 71, 133, 0.14) 0%, rgba(255, 252, 248, 0) 34%),
    rgba(255, 252, 248, 1);
}

.research-why-now__inner {
  width: min(100%, 1248px);
  margin: 0 auto;
}

.research-why-now__header {
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
}

.research-why-now__header h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 3.75vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.research-why-now__header p {
  margin: 22px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.research-why-now__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  margin-top: 116px;
}

.research-why-now__left,
.research-why-now__right {
  min-width: 0;
}

.research-why-now p {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-why-now__lead {
  font-size: 24px !important;
}

.research-why-now p + p {
  margin-top: 34px;
}

.research-why-now__drop::first-letter {
  float: left;
  margin: -22px 24px 0 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 190px;
  line-height: 0.82;
}

.research-why-now a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.research-why-now__closing {
  width: min(100%, 452px);
  margin: 100px auto 0;
}

.research-why-now__closing p + p {
  margin-top: 28px;
}

@media (min-width: 1248px) {
  .research-value,
  .research-audit,
  .research-parameters,
  .research-distortion,
  .research-importance,
  .research-basis,
  .research-check,
  .research-summary,
  .research-representation,
  .research-areas,
  .research-age-analysis,
  .research-bridge,
  .research-structure,
  .research-prepared,
  .research-results,
  .research-matters,
  .research-verification,
  .research-evidence,
  .research-conducting,
  .research-materials-note,
  .research-support,
  .research-donor-note,
  .research-why-now,
  .research-page .faq {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .research-components {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .system--research-gap .system__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.join-section {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.join-section__bg,
.join-section__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.join-section__bg {
  z-index: -2;
  object-fit: cover;
  object-position: center center;
}

.join-section__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.24) 38%, rgba(0, 0, 0, 0.46) 100%),
    rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}

.join-section__content {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 148px 56px 0;
}

.join-section__intro {
  max-width: 765px;
}

.join-section__intro h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.join-section__intro em {
  font-style: italic;
}

.join-section__intro p {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.join-section__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 92px 42px 0 0;
}

.join-section__control {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 252, 248, 0.9);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 252, 248, 0.04);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.join-section__control:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  transform: translateY(-2px);
}

.join-section__control svg {
  display: block;
  width: 40px;
  height: 40px;
}

.join-carousel {
  display: flex;
  width: 100%;
  min-height: 494px;
  align-items: flex-start;
  gap: 24px;
  margin-top: 20px;
  padding: 28px max(56px, calc(50vw - 173px)) 146px
    max(56px, calc((100vw - 1440px) / 2 + 548px));
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.join-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.join-carousel::-webkit-scrollbar {
  display: none;
}

.join-card {
  display: flex;
  width: 346px;
  min-width: 346px;
  height: 418px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 252, 248, 0.18);
  border-radius: 16px;
  color: var(--cream);
  background: rgba(20, 16, 18, 0.42);
  box-shadow: inset 0 0 80px rgba(255, 252, 248, 0.05);
  backdrop-filter: blur(16px);
  scroll-snap-align: center;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    height 220ms ease,
    transform 220ms ease;
}

.join-card.is-active {
  height: 456px;
  background: rgba(255, 252, 248, 0.24);
  border-color: rgba(255, 252, 248, 0.28);
  transform: translateY(-19px);
}

.join-card:hover {
  background: rgba(115, 53, 110, 0.48);
  border-color: rgba(255, 252, 248, 0.22);
}

.join-card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.join-card__button {
  display: flex;
  height: 51px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  border: 1px solid var(--cream);
  border-radius: 6px;
  color: var(--cream);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.join-card.is-active .join-card__button,
.join-card:hover .join-card__button {
  background: rgba(255, 252, 248, 1);
  color: rgba(152, 79, 145, 1);
}

.join-card.is-active .join-card__button {
  border-color: rgba(152, 79, 145, 1);
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.join-card:not(.is-active):hover .join-card__button:not(:hover) {
  color: var(--cream);
  background: transparent;
}

.join-card__button:hover {
  border-color: rgba(152, 79, 145, 1);
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.join-card.is-active .join-card__button:hover {
  border-color: var(--cream);
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
}

.join-card__button::after {
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  transform: translate(-4px, 1px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  content: "в†—";
}

.join-card:hover .join-card__button::after {
  opacity: 1;
  transform: translate(0, 1px);
}

.join-card p {
  margin: 40px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.join-section--grid {
  min-height: 1096px;
}

.join-section--grid .join-section__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.46) 100%),
    rgba(0, 0, 0, 0.18);
}

.join-section--grid .join-section__content {
  padding: 67px 56px 0;
}

.join-section--grid .join-section__intro {
  max-width: 770px;
  margin-left: 181px;
}

.join-grid {
  display: grid;
  width: min(100%, 1086px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 96px auto 0;
  padding-bottom: 96px;
}

.join-section--grid .join-card {
  width: auto;
  min-width: 0;
  height: 480px;
  padding: 24px;
  border: 0;
  color: var(--ink);
  background: rgba(255, 252, 248, 1);
  box-shadow: none;
  backdrop-filter: none;
  scroll-snap-align: none;
  transform: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.join-section--grid .join-card h3,
.join-section--grid .join-card__button,
.join-section--grid .join-card p {
  flex: 0 0 auto;
}

.join-section--grid .join-card:hover {
  background: rgba(255, 252, 248, 1);
  box-shadow: 0 18px 48px rgba(34, 26, 31, 0.18);
  transform: translateY(-3px);
}

.join-section--grid .join-card h3 {
  color: #462143;
}

.join-section--grid .join-card__button {
  display: flex;
  width: 100%;
  height: 51px;
  min-height: 51px;
  max-height: 51px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 0;
  border-color: rgba(152, 79, 145, 1);
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  line-height: 1;
  box-sizing: border-box;
  flex: 0 0 51px;
}

.join-section--grid .join-card:hover .join-card__button,
.join-section--grid .join-card:not(.is-active):hover .join-card__button:not(:hover) {
  display: flex;
  width: 100%;
  height: 51px;
  min-height: 51px;
  max-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-color: rgba(152, 79, 145, 1);
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.join-section--grid .join-card .join-card__button:hover,
.join-section--grid .join-card:hover .join-card__button:hover {
  display: flex;
  width: 100%;
  height: 51px;
  min-height: 51px;
  max-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-color: rgba(152, 79, 145, 1);
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
}

.join-section--grid .join-card__button::after {
  display: none;
}

.join-section--grid .join-card p {
  margin-top: 41px;
  color: #5f5f5f;
}

.join-section--compact {
  min-height: 920px;
}

.join-section--compact .join-section__content {
  padding-top: 168px;
}

.join-section--compact .join-section__controls {
  margin-top: 28px;
}

.join-section--compact .join-carousel {
  margin-top: 0;
}

.life-cycle {
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.life-cycle__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 118px 52px 122px;
}

.life-cycle__heading {
  text-align: center;
}

.life-cycle__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.life-cycle__heading h2 em {
  color: rgba(152, 79, 145, 1);
  font-style: italic;
}

.life-cycle__heading p {
  margin: 17px 0 0;
  color: #55264f;
  font-size: 20px;
  line-height: 1.3;
}

.life-cycle__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 96px;
}

.life-cycle__card,
.life-cycle__media {
  height: 548px;
  border-radius: 22px;
}

.life-cycle__card {
  display: flex;
  flex-direction: column;
  padding: 46px 40px 39px;
  background: #efefef;
}

.life-cycle__card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
}

.life-cycle__card h3 span,
.life-cycle__card h3 em {
  display: block;
}

.life-cycle__card h3 em {
  font-style: italic;
}

.life-cycle__card p {
  max-width: 580px;
  margin: 32px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.life-cycle__controls {
  display: flex;
  gap: 23px;
  margin-top: auto;
}

.life-cycle__control {
  width: 65px;
  height: 65px;
  padding: 0;
  border: 1px solid rgba(34, 26, 31, 0.82);
  border-radius: 50%;
  color: rgba(34, 26, 31, 0.68);
  background: transparent;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.life-cycle__control:hover,
.life-cycle__control.is-active {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(255, 252, 248, 1);
}

.life-cycle__control:hover {
  transform: translateY(-2px);
}

.life-cycle__media {
  overflow: hidden;
  background: #ddd;
}

.life-cycle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition:
    opacity 180ms ease,
    transform 360ms ease;
}

.life-cycle__stage.is-changing .life-cycle__media img {
  opacity: 0.72;
  transform: scale(1.015);
}

.life-cycle--volunteers .life-cycle__inner {
  padding-top: 27px;
}

.life-cycle--volunteers .life-cycle__heading h2 {
  font-size: 50px;
  line-height: 1.12;
}

.life-cycle--volunteers .life-cycle__heading p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.life-cycle--volunteers .life-cycle__card h3 span,
.life-cycle--volunteers .life-cycle__card h3 em {
  display: inline;
}

.life-cycle--membership .life-cycle__inner {
  padding-top: 127px;
}

.life-cycle--membership .life-cycle__heading p {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.life-cycle--membership .life-cycle__card h3 span,
.life-cycle--membership .life-cycle__card h3 em {
  display: inline;
}

.volunteer-tracks {
  position: relative;
  min-height: 950px;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.volunteer-tracks__bg,
.volunteer-tracks__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.volunteer-tracks__bg {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.volunteer-tracks__shade {
  z-index: -1;
  background: rgba(34, 26, 31, 0.52);
}

.volunteer-tracks__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 123px 56px 0;
}

.volunteer-tracks__heading {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}

.volunteer-tracks__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.volunteer-tracks__heading p {
  max-width: 660px;
  margin: 32px auto 0;
  font-size: 24px;
  line-height: 1.25;
}

.volunteer-tracks__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 96px;
  padding-right: 24px;
}

.volunteer-tracks__control {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 252, 248, 0.9);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 252, 248, 0.04);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.volunteer-tracks__control:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  transform: translateY(-2px);
}

.volunteer-tracks__control svg {
  width: 40px;
  height: 40px;
}

.volunteer-tracks__carousel {
  --tracks-side-offset: max(80px, calc((100vw - 1440px) / 2 + 80px));
  display: flex;
  gap: 24px;
  margin-top: 22px;
  padding: 0 var(--tracks-side-offset) 118px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-left: var(--tracks-side-offset);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.volunteer-tracks__carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.volunteer-tracks__carousel::-webkit-scrollbar {
  display: none;
}

.volunteer-track-card {
  display: grid;
  width: 540px;
  min-width: 540px;
  height: 335px;
  grid-template-rows: auto auto auto 1fr;
  padding: 24px;
  border: 1px solid rgba(255, 252, 248, 0.12);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(42, 30, 23, 0.62);
  box-shadow: inset 0 0 80px rgba(255, 252, 248, 0.04);
  backdrop-filter: blur(18px);
  scroll-snap-align: start;
}

.volunteer-track-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.volunteer-track-card__tags span {
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 252, 248, 1);
  font-size: 14px;
  line-height: 1;
}

.volunteer-track-card h3 {
  margin: 27px 0 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.volunteer-track-card__time {
  margin: 2px 0 0;
  font-size: 16px;
  line-height: 1.25;
}

.volunteer-track-card p:not(.volunteer-track-card__time) {
  align-self: end;
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
}

.volunteer-tasks {
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.volunteer-tasks__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 122px 56px 122px;
}

.volunteer-tasks__heading {
  max-width: 825px;
  margin: 0 auto;
  text-align: center;
}

.volunteer-tasks__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.volunteer-tasks__heading p {
  max-width: 820px;
  margin: 20px auto 0;
  font-size: 21px;
  line-height: 1.25;
}

.volunteer-tasks__grid {
  display: grid;
  width: min(100%, 825px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 95px auto 0;
}

.volunteer-task-card {
  min-height: 290px;
  padding: 25px;
  border-radius: 12px;
  background: #efefef;
}

.volunteer-task-card__time {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  color: rgba(34, 26, 31, 0.82);
  background: rgba(210, 181, 222, 0.9);
  font-size: 14px;
  line-height: 1;
}

.volunteer-task-card h3 {
  max-width: 310px;
  margin: 22px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.volunteer-task-card p {
  margin: 25px 0 0;
  font-size: 20px;
  line-height: 1.28;
}

.volunteer-task-card p + p {
  margin-top: 18px;
}

.volunteer-benefits {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.volunteer-benefits__bg,
.volunteer-benefits__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.volunteer-benefits__bg {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.volunteer-benefits__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.36) 100%),
    rgba(34, 26, 31, 0.38);
}

.volunteer-benefits__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 132px 96px 122px;
}

.volunteer-benefits h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.volunteer-benefits h2 em {
  font-style: italic;
}

.volunteer-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 104px;
}

.volunteer-benefit-card {
  min-height: 218px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 252, 248, 0.12);
  border-radius: 10px;
  background: rgba(34, 26, 31, 0.48);
  box-shadow: inset 0 0 86px rgba(255, 252, 248, 0.06);
  backdrop-filter: blur(18px);
}

.volunteer-benefit-card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.volunteer-benefit-card p {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.28;
}

.volunteer-rules {
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.volunteer-rules__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 50px 96px 72px;
}

.volunteer-rules__heading {
  text-align: center;
}

.volunteer-rules__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.volunteer-rules__heading p {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.volunteer-rules__cards {
  display: grid;
  gap: 24px;
  margin-top: 96px;
}

.volunteer-rule-card {
  position: relative;
  min-height: 228px;
  overflow: hidden;
  border-radius: 10px;
  color: var(--cream);
  background-image:
    linear-gradient(90deg, rgba(34, 26, 31, 0.52), rgba(34, 26, 31, 0.14)),
    url("./assets/collbaba.png");
  background-repeat: no-repeat;
  background-size: 100% 1088px;
}

.volunteer-rule-card::after {
  position: absolute;
  inset: 0;
  background: rgba(34, 26, 31, 0.16);
  content: "";
}

.volunteer-rule-card > div {
  position: relative;
  z-index: 1;
  width: min(500px, 44%);
  margin-left: auto;
  padding: 38px 70px 34px 0;
}

.volunteer-rule-card--one {
  background-position: center 0;
}

.volunteer-rule-card--two {
  background-position: center -252px;
}

.volunteer-rule-card--three {
  background-position: center -504px;
}

.volunteer-rule-card--four {
  min-height: 272px;
  background-position: center -756px;
}

.volunteer-rule-card h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.volunteer-rule-card p {
  margin: 14px 0 0;
  font-size: 20px;
  line-height: 1.28;
}

.membership-packages {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.membership-packages__bg,
.membership-packages__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.membership-packages__bg {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.membership-packages__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.5) 100%),
    rgba(34, 26, 31, 0.34);
}

.membership-packages__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 123px 96px 120px;
}

.membership-packages__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.membership-packages__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.membership-packages__heading p {
  max-width: 690px;
  margin: 20px auto 0;
  font-size: 21px;
  line-height: 1.24;
}

.membership-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 128px;
}

.membership-package-card {
  display: flex;
  min-height: 768px;
  flex-direction: column;
  padding: 26px 24px 23px;
  border: 1px solid rgba(255, 252, 248, 0.14);
  border-radius: 12px;
  background: rgba(34, 26, 31, 0.46);
  box-shadow: inset 0 0 90px rgba(255, 252, 248, 0.08);
  backdrop-filter: blur(18px);
}

.membership-package-card h3 {
  min-height: 78px;
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.membership-package-card__lead {
  min-height: 78px;
  margin: 29px 0 0;
  font-size: 20px;
  line-height: 1.28;
}

.membership-package-card__button {
  display: inline-flex;
  width: 100%;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  border: 1px solid rgba(255, 252, 248, 0.92);
  border-radius: 6px;
  color: var(--cream);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.membership-package-card__button:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  transform: translateY(-2px);
}

.membership-package-card--featured .membership-package-card__button {
  border-color: rgba(152, 79, 145, 1);
  background: rgba(152, 79, 145, 1);
}

.membership-package-card h4 {
  margin: 35px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.membership-package-card ul {
  margin: 22px 0 0;
  padding-left: 30px;
  font-size: 20px;
  line-height: 1.25;
}

.membership-package-card__note {
  margin: auto 0 0;
  font-size: 16px;
  line-height: 1.3;
}

.membership-final-cta {
  display: grid;
  min-height: 554px;
  place-items: center;
  background: rgba(255, 252, 248, 1);
  color: var(--purple);
}

.membership-final-cta__inner {
  width: min(100%, 1034px);
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}

.membership-final-cta h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.membership-final-cta h2 em {
  font-style: italic;
}

.membership-final-cta p {
  margin: 47px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.membership-final-cta__button {
  display: inline-flex;
  width: 192px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  border-radius: 6px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.membership-final-cta__button:hover {
  color: rgba(152, 79, 145, 1);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(152, 79, 145, 1);
  transform: translateY(-2px);
}

.membership-support {
  position: relative;
  min-height: 950px;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.membership-support__bg,
.membership-support__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.membership-support__bg {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.membership-support__shade {
  z-index: -1;
  background: rgba(34, 26, 31, 0.48);
}

.membership-support__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 123px 96px 0;
}

.membership-support__heading {
  max-width: 930px;
}

.membership-support__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.membership-support__heading p {
  margin: 38px 0 0;
  font-size: 24px;
  line-height: 1.25;
}

.membership-support__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 124px;
}

.membership-support__bar h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.membership-support__controls {
  display: flex;
  gap: 12px;
}

.membership-support__control {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 252, 248, 0.9);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 252, 248, 0.04);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.membership-support__control:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  transform: translateY(-2px);
}

.membership-support__control svg {
  width: 40px;
  height: 40px;
}

.membership-support__carousel {
  --tracks-side-offset: max(96px, calc((100vw - 1440px) / 2 + 96px));
  display: flex;
  gap: 24px;
  margin-top: 22px;
  padding: 0 var(--tracks-side-offset) 118px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-left: var(--tracks-side-offset);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.membership-support__carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.membership-support__carousel::-webkit-scrollbar {
  display: none;
}

.membership-support-card {
  width: 510px;
  min-width: 510px;
  height: 185px;
  grid-template-rows: auto 1fr;
  padding: 24px;
  border-radius: 8px;
  background: rgba(42, 30, 23, 0.62);
}

.membership-support-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
}

.membership-support-card p:not(.volunteer-track-card__time) {
  align-self: end;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.membership-compare {
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.membership-compare__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 122px 56px;
}

.membership-compare__heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.membership-compare__heading h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.membership-compare__heading p {
  margin: 16px auto 0;
  color: var(--plum);
  font-size: 21px;
  line-height: 1.2;
}

.membership-compare__table-wrap {
  width: min(100%, 1040px);
  margin: 90px auto 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.membership-compare__table {
  width: 1040px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 20px;
  line-height: 1.15;
}

.membership-compare__table th,
.membership-compare__table td {
  height: 51px;
  padding: 8px 8px;
  border: 2px solid var(--ink);
  text-align: center;
  vertical-align: middle;
}

.membership-compare__table thead th {
  font-size: 25px;
  font-weight: 600;
}

.membership-compare__table tbody th {
  font-size: 25px;
  font-weight: 400;
}

.membership-compare__table th:first-child,
.membership-compare__table td:first-child {
  width: 405px;
}

.membership-compare__table th:nth-child(2),
.membership-compare__table td:nth-child(2),
.membership-compare__table th:nth-child(3),
.membership-compare__table td:nth-child(3) {
  width: 218px;
}

.membership-compare__table th:nth-child(4),
.membership-compare__table td:nth-child(4) {
  width: 197px;
}

.research-cta {
  position: relative;
  display: grid;
  width: 100%;
  height: clamp(540px, 46.5vw, 670px);
  max-height: 670px;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.research-cta__bg,
.research-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.research-cta__bg {
  z-index: -2;
  object-fit: cover;
  object-position: center 47%;
}

.research-cta__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.04) 46%, rgba(0, 0, 0, 0.22) 100%),
    rgba(0, 0, 0, 0.18);
  opacity: 0.5;
}

.research-cta__panel {
  width: min(765px, calc(100% - 48px));
  min-height: 422px;
  padding: 44px 70px 40px;
  border: 1px solid rgba(255, 252, 248, 0.16);
  border-radius: 16px;
  text-align: center;
  background: rgba(34, 26, 31, 0.5);
  box-shadow: inset 0 0 90px rgba(255, 252, 248, 0.05);
  backdrop-filter: blur(17px);
}

.research-cta__panel h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.research-cta__panel em {
  font-style: italic;
}

.research-cta__panel p {
  max-width: 648px;
  margin: 34px auto 0;
  font-size: 20px;
  line-height: 1.3;
}

.research-cta__button {
  display: inline-flex;
  width: 203px;
  height: 49px;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  border: 1px solid rgba(255, 252, 248, 0.18);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  box-shadow: inset 0 0 18px rgba(255, 252, 248, 0.08);
  backdrop-filter: blur(14px);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.research-cta__button:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  transform: translateY(-2px);
}

.active-projects {
  background: rgba(255, 252, 248, 1);
  color: #050505;
}

.active-projects__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 125px 66px 150px 52px;
}

.active-projects__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 86px;
}

.active-projects__header h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.active-projects__all {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.active-projects__all:hover {
  transform: translateX(6px);
}

.active-projects__all svg {
  display: block;
  width: 40px;
  height: 40px;
}

.active-projects__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 430px 313px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 0;
  border-bottom: 0;
}

.project-row::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 454px;
  height: 1px;
  background: rgba(34, 26, 31, 0.82);
  content: "";
}

.project-row__image {
  display: block;
  height: 236px;
  overflow: hidden;
  border-radius: 12px;
  background: #ddd;
}

.project-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.project-row h3 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.project-row__content {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-end;
}

.project-row__content p {
  width: 100%;
  margin: 0;
  font-size: 20px;
  line-height: 1.29;
}

.project-row__button {
  display: inline-flex;
  width: 200px;
  height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 16px;
  border: 1px solid #050505;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.project-row__button::after {
  content: "\2197";
  font-size: 20px;
  opacity: 0;
  transform: translate(-4px, 1px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.project-row:hover .project-row__image img {
  transform: scale(1.035);
}

.project-row:hover .project-row__button,
.project-row__button:hover {
  background: #050505;
  color: var(--cream);
  transform: translateY(-2px);
}

.project-row:hover .project-row__button::after,
.project-row__button:hover::after {
  opacity: 1;
  transform: translate(0, 1px);
}

.global-network {
  position: relative;
  overflow: hidden;
  background: #f8f7f5;
  color: var(--ink);
  isolation: isolate;
}

.global-network__mist {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.global-network__mist span {
  position: absolute;
  width: 360px;
  height: 260px;
  background: rgba(137, 91, 149, 0.22);
  filter: blur(24px);
  opacity: 0.78;
  animation: networkMist 16s ease-in-out infinite alternate;
}

.global-network__mist span:nth-child(1) {
  top: 0;
  left: -42px;
  width: 430px;
  height: 250px;
}

.global-network__mist span:nth-child(2) {
  top: -20px;
  right: 344px;
  width: 340px;
  height: 330px;
  animation-delay: -4s;
}

.global-network__mist span:nth-child(3) {
  right: -14px;
  bottom: 190px;
  width: 372px;
  height: 270px;
  animation-delay: -8s;
}

.global-network__mist span:nth-child(4) {
  bottom: -28px;
  left: 390px;
  width: 435px;
  height: 220px;
  animation-delay: -12s;
}

@keyframes networkMist {
  0% {
    transform: translate3d(-28px, -16px, 0) scale(1);
  }

  50% {
    transform: translate3d(32px, 22px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(-14px, 36px, 0) scale(1.04);
  }
}

.global-network__inner {
  width: min(100%, 1440px);
  min-height: 811px;
  margin: 0 auto;
  padding: 118px 54px 88px;
}

.global-network h2 {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.global-network__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 128px;
  margin-top: 151px;
}

.global-network__left,
.global-network__right {
  font-size: 20px;
  line-height: 1.3;
}

.global-network__left p,
.global-network__right p {
  margin: 0;
}

.global-network__lead {
  display: grid;
  grid-template-columns: 206px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.global-network__lead span {
  margin-top: -40px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 196px;
  font-weight: 400;
  line-height: 0.9;
}

.global-network__left > p {
  max-width: 600px;
  margin-top: 2px;
}

.global-network__right {
  display: flex;
  flex-direction: column;
  gap: 31px;
  padding-top: 5px;
}

.updates {
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.updates__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 145px 54px 153px;
}

.updates__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.updates__header h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.updates__all {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.updates__all:hover {
  transform: translateX(6px);
}

.updates__all svg {
  display: block;
  width: 40px;
  height: 40px;
}

.updates__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.update-card {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  border-radius: 14px;
  background: #efefef;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.update-card:hover {
  background: #e9e7e7;
  box-shadow: 0 18px 42px rgba(34, 26, 31, 0.08);
  transform: translateY(-4px);
}

.update-card--note {
  padding: 16px;
}

.update-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.update-card__tag,
.update-card__media span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 4px;
  color: var(--ink);
  background: rgba(194, 159, 207, 0.62);
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
}

.update-card__tag {
  padding: 0 9px;
}

.update-card h3 {
  margin: 19px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.update-card p {
  margin: 25px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.update-card p + p {
  margin-top: 26px;
}

.update-card--article {
  padding: 16px;
}

.update-card__media {
  position: relative;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  height: 235px;
  padding: 8px;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd;
}

.update-card__media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transition:
    filter 220ms ease,
    transform 320ms ease;
}

.update-card:hover .update-card__media img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.update-card__media span {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 9px;
  background: rgba(255, 252, 248, 0.7);
  backdrop-filter: blur(10px);
}

.update-card--article h3 {
  margin-top: 18px;
}

.update-card--article p {
  margin-top: 8px;
}

.update-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
}

.update-card__views {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.update-card__views svg {
  display: block;
  width: 18px;
  height: 18px;
}

.rules-hero {
  position: relative;
  display: grid;
  min-height: 930px;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.rules-hero__bg,
.rules-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rules-hero__bg {
  z-index: -2;
  object-fit: cover;
  object-position: center 42%;
}

.rules-hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.34) 100%),
    rgba(0, 0, 0, 0.22);
}

.rules-hero__content {
  width: min(100%, 1120px);
  padding: 0 24px;
  text-align: center;
}

.rules-hero__content h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 94px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.rules-hero__content h2 span,
.rules-hero__content h2 em {
  display: block;
}

.rules-hero__content h2 em {
  font-style: italic;
}

.rules-hero__content p {
  max-width: 700px;
  margin: 53px auto 0;
  font-size: 20px;
  line-height: 1.25;
}

.rules-hero__button {
  display: inline-flex;
  width: 203px;
  height: 49px;
  align-items: center;
  justify-content: center;
  margin-top: 95px;
  border: 1px solid rgba(152, 79, 145, 1);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.rules-hero__button:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.faq {
  background: rgba(255, 252, 248, 1);
  color: var(--ink);
}

.faq__inner {
  display: grid;
  width: min(100%, 1440px);
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 34px;
  margin: 0 auto;
  padding: 72px 56px 75px;
}

.faq h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.faq__list {
  padding-top: 184px;
}

.faq-item {
  border-bottom: 1px solid rgba(34, 26, 31, 0.72);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 3px 23px 7px;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-item.is-animating {
  overflow: hidden;
}

.faq-item summary span {
  flex: 1 1 auto;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  align-self: center;
  font-family: "Open Sans", Inter, sans-serif;
  font-size: 33px;
  font-weight: 300;
  line-height: 1;
  content: "+";
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 720px;
  margin: 0 0 29px 50px;
  font-size: 20px;
  line-height: 1.3;
}

.site-footer {
  background: #5f2d59;
  color: rgba(255, 252, 248, 0.86);
}

.site-footer__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 140px 55px 40px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.site-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav a,
.site-footer__bottom a {
  display: inline-flex;
  width: fit-content;
  transition:
    transform 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.site-footer__nav a:hover,
.site-footer__bottom a:hover {
  color: var(--cream);
  opacity: 1;
  transform: translateX(3px);
}

.site-footer__social {
  align-items: flex-end;
  text-align: right;
}

.site-footer__logo {
  display: block;
  margin-top: 80px;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  font-size: 14px;
  line-height: 1.3;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  gap: 41px;
}

.documents-page {
  color: var(--ink);
  background: rgba(255, 252, 248, 1);
}

.documents-header {
  position: fixed;
  z-index: 100;
  top: clamp(32px, 7svh, 72px);
  left: 50%;
  display: flex;
  width: min(100%, 1440px);
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transform: translateX(-50%);
  pointer-events: none;
}

.documents-header__logo,
.documents-header__contact {
  pointer-events: auto;
}

.documents-header__logo {
  display: flex;
  width: 44px;
  height: 67px;
  align-items: center;
  justify-content: center;
  margin-top: -4px;
  padding: 4px;
  border-radius: 4px;
  background: rgba(255, 252, 248, 1);
  transition: padding 180ms ease;
}

.documents-header__logo img {
  width: 36px;
  height: 59px;
  transition:
    width 180ms ease,
    height 180ms ease;
}

.documents-header__logo:hover {
  padding: 0;
}

.documents-header__logo:hover img {
  width: 44px;
  height: 67px;
}

.documents-header__contact {
  display: inline-flex;
  width: 174px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  outline: 0;
  background: #9d559c;
  color: var(--cream);
  font-size: 18px;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.documents-header__contact:hover {
  background: #68296a;
  color: var(--cream);
}

.documents-main {
  background: rgba(255, 252, 248, 1);
}

.documents-hero,
.documents-section {
  background: rgba(255, 252, 248, 1);
}

.documents-hero__inner,
.documents-section__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-right: 56px;
  padding-left: 56px;
}

.documents-hero__inner {
  min-height: 640px;
  padding-top: 220px;
  padding-bottom: 82px;
}

.documents-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--purple);
  font-size: 16px;
  line-height: 1.3;
}

.documents-breadcrumb a {
  display: inline-flex;
  color: #462143;
  transition: transform 160ms ease;
}

.documents-breadcrumb a:hover {
  transform: translateX(-4px);
}

.documents-breadcrumb strong {
  color: rgba(34, 26, 31, 0.72);
  font-weight: 400;
}

.documents-hero__copy {
  margin-top: 0;
  text-align: center;
}

.documents-hero h1 {
  margin: 0;
  color: #462143;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(86px, 8.8vw, 130px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.documents-hero h1 span {
  display: block;
}

.documents-hero p {
  max-width: 680px;
  margin: 24px auto 0;
  color: #050505;
  font-size: 20px;
  line-height: 1.55;
}

.documents-hero__subtitle {
  margin-top: 12px;
  color: #462143;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.12;
}

.documents-section__inner {
  padding-top: 68px;
  padding-bottom: 68px;
}

.documents-section--first .documents-section__inner {
  padding-top: 0;
}

.documents-section h2 {
  margin: 0;
  color: #050505;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.7vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.documents-list {
  margin-top: 60px;
}

.documents-row {
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) 192px;
  align-items: center;
  gap: 32px;
  padding: 4px 22px;
  border-bottom: 1px solid rgba(34, 26, 31, 0.32);
}

.documents-row:first-child {
  border-top: 0;
}

.documents-row__title {
  color: #050505;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.35vw, 32px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

a.documents-row__title {
  width: fit-content;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

a.documents-row__title:hover {
  color: var(--purple);
  transform: translateX(4px);
}

.documents-row__download {
  display: inline-flex;
  width: 190px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(152, 79, 145, 1);
  border-radius: 7px;
  color: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.documents-row__download:hover {
  background: rgba(152, 79, 145, 1);
  color: var(--cream);
  transform: translateY(-1px);
}

.documents-footer {
  background: #5f2d59;
  color: rgba(255, 252, 248, 0.9);
}

.documents-footer__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 96px 56px 28px;
}

.documents-footer__contact {
  display: grid;
  min-height: 268px;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 48px;
  align-items: start;
}

.documents-footer h2 {
  margin: 0;
  color: var(--cream);
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}

.documents-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.25;
}

.documents-footer a {
  transition:
    color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.documents-footer a:hover {
  color: var(--cream);
  opacity: 1;
}

.documents-footer__links a:hover {
  transform: translateY(-2px);
}

.documents-footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  font-size: 0;
}

.documents-footer__social a {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.documents-footer__social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.documents-footer__social a:hover img {
  opacity: 0.82;
  transform: translateY(-2px);
}

.documents-footer__logo {
  display: block;
  margin-top: 72px;
}

.documents-footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.documents-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.3;
}

.documents-footer__bottom p {
  margin: 0;
}

.documents-footer__bottom nav {
  display: flex;
  gap: 41px;
}

.instagram-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.instagram-modal[hidden] {
  display: none;
}

.instagram-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.is-instagram-modal-open {
  overflow: hidden;
}

.instagram-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(126.47deg, rgba(255, 252, 248, 0.48) 10%, rgba(152, 79, 145, 0.22) 120%),
    rgba(34, 26, 31, 0.28);
  backdrop-filter: blur(3px);
}

.instagram-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 596px);
  padding: 42px 40px 40px;
  border: 1px solid rgba(70, 33, 67, 0.18);
  border-radius: 24px;
  color: #462143;
  background: rgba(240, 240, 240, 0.94);
  box-shadow: 0 24px 64px rgba(34, 26, 31, 0.22);
}

.instagram-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease;
}

.instagram-modal__close:hover {
  transform: rotate(90deg);
}

.instagram-modal__close::before,
.instagram-modal__close::after {
  position: absolute;
  top: 16px;
  left: 9px;
  width: 16px;
  height: 2px;
  background: #462143;
  content: "";
}

.instagram-modal__close::before {
  transform: rotate(45deg);
}

.instagram-modal__close::after {
  transform: rotate(-45deg);
}

.instagram-modal h2 {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}

.instagram-modal p {
  max-width: 360px;
  margin: 12px 0 0;
  color: rgba(90, 90, 90, 1);
  font-size: 20px;
  line-height: 1.3;
}

.instagram-modal__links {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(70, 33, 67, 0.16);
}

.instagram-modal__links a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(70, 33, 67, 0.16);
  border-radius: 0;
  color: #462143;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.instagram-modal__links a::after {
  display: inline-flex;
  min-width: 88px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(70, 33, 67, 0.72);
  border-radius: 8px;
  color: #462143;
  content: "Open";
  font: 400 18px/1 "Open Sans", Inter, sans-serif;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.instagram-modal__links a:hover {
  border-color: rgba(152, 79, 145, 0.5);
  color: rgba(152, 79, 145, 1);
}

.instagram-modal__links a:hover::after {
  border-color: rgba(152, 79, 145, 1);
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
}

.document-main {
  background: rgba(255, 252, 248, 1);
}

.document-article {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 168px 96px 120px;
  background: rgba(255, 252, 248, 1);
}

.document-article .documents-breadcrumb {
  margin-top: 0;
}

.document-letterhead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 80px;
  align-items: center;
  margin-top: 78px;
}

.document-letterhead__brand {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #462143;
}

.document-letterhead__brand img {
  width: 86px;
  height: auto;
  flex: 0 0 auto;
}

.document-letterhead__brand p {
  margin: 0;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.document-letterhead__details {
  margin: 0;
  color: #050505;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: normal;
  line-height: 1.25;
}

.document-article h1 {
  margin: 98px 0 0;
  color: #462143;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.8vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.document-effective-date {
  margin: 66px 0 0;
  color: #050505;
  font-size: 25px;
  line-height: 1.28;
}

.document-section {
  margin-top: 32px;
}

.document-section h2 {
  margin: 0 0 18px;
  color: #050505;
  font-family: Lora, Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.document-section p,
.document-section li {
  color: #050505;
  font-size: 21px;
  line-height: 1.28;
}

.document-section p {
  margin: 0;
}

.document-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-section li::before {
  content: "\2022";
  margin-right: 6px;
}

.document-download {
  display: flex;
  justify-content: flex-end;
  margin-top: 112px;
}

.document-download__button {
  display: inline-flex;
  width: 288px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(152, 79, 145, 1);
  border-radius: 7px;
  color: var(--cream);
  background: rgba(152, 79, 145, 1);
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.document-download__button:hover {
  color: rgba(152, 79, 145, 1);
  background: rgba(255, 252, 248, 1);
  transform: translateY(-2px);
}

.document-table-wrap {
  position: relative;
  width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.document-table-wrap::after {
  position: sticky;
  right: 0;
  display: none;
  width: 40px;
  min-width: 40px;
  height: 1px;
  margin-left: -40px;
  content: "";
  pointer-events: none;
}

.document-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  color: #050505;
  font-size: 18px;
  line-height: 1.28;
}

.document-table th,
.document-table td {
  width: 25%;
  padding: 18px 14px;
  border: 1px solid rgba(5, 5, 5, 0.65);
  vertical-align: top;
}

.document-table th {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .global-network__mist {
    animation: none;
  }

  .site-menu {
    transition: none;
  }
}

@media (min-width: 1248px) and (max-height: 840px) {
  .site-menu__panel {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .site-menu__grid {
    margin-top: 62px;
  }

  .site-menu__column a,
  .site-menu__dropdown-toggle {
    min-height: 62px;
    font-size: 30px;
  }

  .site-menu__dropdown-panel a {
    font-size: 20px;
  }

  .site-menu__contacts {
    margin-top: 74px;
  }

  .site-menu__contacts h2 {
    font-size: 88px;
  }

  .site-menu__contact-links {
    margin-top: 18px;
  }
}

@media (max-width: 1247px) {
  .site-menu {
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-menu[hidden] {
    display: none;
  }

  .site-menu__panel {
    min-height: 100svh;
    padding: 28px 24px 56px;
  }

  .site-menu__top {
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .site-menu__language {
    min-width: 128px;
    height: 34px;
    font-size: 14px;
  }

  .site-menu__language select {
    padding-left: 14px;
  }

  .site-menu__close {
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
  }

  .site-menu__close::before,
  .site-menu__close::after {
    top: 19px;
    left: 5px;
    width: 32px;
    height: 2px;
  }

  .site-menu__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 72px;
  }

  .site-menu__column {
    gap: 0;
  }

  .site-menu__column a,
  .site-menu__dropdown-toggle {
    min-height: 62px;
    font-size: 30px;
  }

  .site-menu__column a::after,
  .site-menu__dropdown-toggle::after {
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
  }

  .site-menu__dropdown-panel a {
    min-height: 30px;
    font-size: 16px;
  }

  .site-menu__contacts {
    margin-top: 72px;
  }

  .site-menu__contacts h2 {
    font-size: 64px;
  }

  .site-menu__contact-links {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    font-size: 18px;
  }

  .site-menu__social {
    gap: 18px;
    margin-top: 28px;
  }

  .site-menu--research .site-menu__panel {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .site-menu--research .site-menu__grid {
    gap: 0;
    margin-top: 68px;
  }

  .research-menu__column a {
    min-height: 58px;
    font-size: clamp(26px, 7vw, 32px);
  }

  .research-menu__column + .research-menu__column {
    margin-top: 0;
  }

  .research-menu__column a:hover {
    padding-left: 0;
  }

  .site-menu--research .site-menu__contacts {
    margin-top: 70px;
  }

  .site-menu--research .site-menu__contacts h2 {
    font-size: clamp(58px, 16vw, 76px);
  }

  .hero__video,
  .hero__image {
    object-position: 46% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.07) 35%, rgba(0, 0, 0, 0.42) 100%),
      rgba(0, 0, 0, 0.15);
  }

  .site-header {
    top: 24px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 24px;
    transform: none;
  }

  .logo {
    width: 44px;
    height: 67px;
  }

  .nav-panel {
    width: clamp(210px, calc(100vw - 120px), 252px);
    height: 52px;
    gap: 0;
    padding: 3px;
    box-shadow: none;
  }

  .nav-panel__link,
  .nav-panel__join,
  .nav-panel__donate,
  .nav-panel__contact {
    height: 46px;
    font-size: 14px;
    white-space: nowrap;
  }

  .nav-panel__link {
    width: 30%;
  }

  .nav-panel__join {
    width: 31%;
  }

  .nav-panel__donate {
    width: 39%;
  }

  .nav-panel--research {
    width: clamp(210px, calc(100vw - 120px), 252px);
  }

  .nav-panel--research .nav-panel__link {
    width: 43%;
  }

  .nav-panel__contact {
    width: 57%;
  }

  .hero__content {
    display: block;
    width: 100%;
    min-height: 0;
    padding: clamp(276px, 33.5vh, 290px) 24px 66px;
    padding: clamp(276px, 33.5svh, 290px) 24px 66px;
  }

  .hero__kicker {
    width: 100%;
    max-width: 100%;
    margin: 0 0 4px;
    font-size: 12.5px;
    line-height: 1.25;
    text-align: left;
  }

  .hero__title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: clamp(52px, 14.2vw, 57px);
    line-height: 1.01;
    text-align: left;
  }

  .hero__title span,
  .hero__title em {
    white-space: normal;
  }

  .hero__title em {
    padding-right: 0;
    text-align: left;
  }

  .hero__text {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 58px;
    margin-left: 0;
    padding-right: 0;
  }

  .hero__text p {
    width: 100%;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
  }

  .hero__button {
    width: 100%;
    max-width: 100%;
    height: 48px;
    margin-top: 88px;
  }

  .how-hero {
    min-height: 100svh;
    place-items: center;
  }

  .how-hero__inner {
    padding: 118px 24px 72px;
  }

  .how-hero h1 {
    max-width: 368px;
    font-size: clamp(54px, 15.4vw, 62px);
    line-height: 0.96;
  }

  .how-hero p {
    max-width: 342px;
    margin-top: 46px;
    font-size: 16px;
    line-height: 1.3;
  }

  .how-principles {
    min-height: 100svh;
  }

  .how-principles__inner {
    gap: 94px;
    padding: 98px 24px 96px;
  }

  .how-principles__statement {
    max-width: 360px;
    font-size: 40px;
    line-height: 1.18;
  }

  .how-film__slide {
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .how-film__track {
    display: block;
    transform: none !important;
  }

  .how-film__viewport {
    overflow: visible;
    touch-action: auto;
  }

  .how-film__cover-content {
    justify-content: center;
    min-height: 846px;
    padding: 88px 24px 96px;
  }

  .how-film__slide--right .how-film__cover-content {
    align-items: flex-start;
  }

  .how-film h2 {
    max-width: 342px;
    font-size: 40px;
    line-height: 1.18;
  }

  .how-film__glass {
    width: 100%;
    margin-top: 34px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(34, 26, 31, 0.56);
  }

  .how-film__glass p,
  .how-film__text p {
    font-size: 16px;
    line-height: 1.3;
  }

  .how-film__button {
    width: 100%;
    height: 48px;
    margin-top: 22px;
  }

  .how-film__slide--split,
  .how-film__slide--reverse {
    display: flex;
    flex-direction: column;
  }

  .how-film__slide--reverse {
    flex-direction: column-reverse;
  }

  .how-film__text,
  .how-film__slide--split:not(.how-film__slide--reverse) .how-film__text,
  .how-film__slide--reverse .how-film__text {
    min-height: 698px;
    justify-content: center;
    padding: 82px 24px 88px;
  }

  .how-film__text h2 {
    max-width: 342px;
  }

  .how-film__text p {
    max-width: 342px;
    margin-top: 24px;
  }

  .how-film__media {
    min-height: 0;
    height: 520px;
  }

  .how-film__slide--reverse .how-film__media {
    display: none;
  }

  .how-film__dots {
    display: none;
  }

  .how-outcome__inner {
    padding: 96px 24px 104px;
  }

  .how-outcome__heading h2 {
    font-size: 40px;
    line-height: 1.16;
  }

  .how-outcome__heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.28;
  }

  .how-outcome__body {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    margin-top: 39px;
  }

  .how-outcome__card,
  .how-outcome__media {
    min-height: 0;
    border-radius: 16px;
  }

  .how-outcome__media {
    height: 337px;
  }

  .how-outcome__card {
    padding: 24px;
  }

  .how-outcome__card h3 {
    font-size: 30px;
    line-height: 1.22;
  }

  .how-outcome__card ul {
    gap: 14px;
    margin-top: 24px;
  }

  .how-outcome__card li {
    padding-left: 17px;
    font-size: 17px;
    line-height: 1.22;
  }

  .how-outcome__card li::before {
    top: 0.48em;
    width: 8px;
    height: 8px;
  }

  .how-final-cta {
    min-height: 664px;
  }

  .how-final-cta__inner {
    padding: 96px 24px 96px;
  }

  .how-final-cta h2 {
    font-size: 40px;
    line-height: 1.16;
  }

  .how-final-cta p {
    max-width: 340px;
    margin-top: 32px;
    font-size: 16px;
  }

  .how-final-cta__button {
    width: 100%;
    height: 48px;
    margin-top: 66px;
  }

  .volunteer-hero {
    min-height: 100svh;
    place-items: start center;
    padding: 214px 24px 36px;
  }

  .volunteer-hero__inner {
    display: flex;
    min-height: calc(100svh - 250px);
    flex-direction: column;
    align-items: center;
  }

  .volunteer-hero h1 {
    max-width: 344px;
    font-size: clamp(54px, 15vw, 60px);
    line-height: 1.02;
  }

  .volunteer-hero p {
    max-width: 342px;
    margin-top: 39px;
    font-size: 16px;
    line-height: 1.32;
  }

  .volunteer-hero__button {
    width: 100%;
    height: 48px;
    margin-top: auto;
  }

  .membership-hero {
    min-height: 100svh;
    place-items: start center;
    padding: 218px 24px 36px;
  }

  .membership-hero__inner {
    display: flex;
    min-height: calc(100svh - 254px);
    flex-direction: column;
    align-items: center;
  }

  .membership-hero h1 {
    max-width: 342px;
    font-size: clamp(54px, 14.8vw, 60px);
    line-height: 1.02;
  }

  .membership-hero p {
    max-width: 342px;
    margin-top: 39px;
    font-size: 16px;
    line-height: 1.32;
  }

  .membership-hero__button {
    width: 100%;
    height: 48px;
    margin-top: auto;
  }

  .research-hero {
    min-height: 100svh;
    place-items: start center;
    padding: 218px 24px 64px;
  }

  .research-page {
    width: 100%;
    overflow-x: hidden;
  }

  .research-page section {
    max-width: 100%;
    overflow-x: clip;
  }

  .research-value__inner,
  .research-distortion__inner,
  .research-representation__inner,
  .research-areas__inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .research-hero__inner {
    display: flex;
    min-height: calc(100svh - 282px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 39px;
  }

  .research-hero__title {
    max-width: 342px;
    font-size: clamp(42px, 12.2vw, 50px);
    line-height: 1.03;
  }

  .research-hero__title span {
    white-space: normal;
  }

  .research-hero p {
    width: min(100%, 342px);
    margin-top: 0;
    font-size: 16px;
    line-height: 1.32;
  }

  .research-hero p br {
    display: none;
  }

  .research-value {
    padding: 82px 24px 88px;
  }

  .research-value h2 {
    font-size: clamp(38px, 10.8vw, 44px);
    line-height: 1.15;
  }

  .research-value__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 48px;
  }

  .research-value__media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 342 / 280;
    border-radius: 25px;
  }

  .research-value__card {
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 30px 24px 26px;
    border-radius: 25px;
  }

  .research-value__card h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .research-value__text {
    gap: 16px;
  }

  .research-value__card p {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-value__card ul {
    padding-left: 24px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-value__actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .research-value__button {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .research-audit {
    min-height: 520px;
    padding: 82px 24px;
  }

  .research-audit__inner {
    width: 100%;
  }

  .research-audit p {
    font-size: clamp(34px, 9.6vw, 40px);
    line-height: 1.15;
  }

  .research-parameters {
    padding: 82px 24px 88px;
  }

  .research-parameters h2 {
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.1;
  }

  .research-parameters__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .research-parameter-card {
    min-height: 0;
    padding: 25px 24px 26px;
    border-radius: 16px;
  }

  .research-parameter-card h3 {
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.12;
  }

  .research-parameter-card p {
    max-width: 100%;
    margin-top: 0;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-distortion {
    padding: 82px 24px 88px;
  }

  .research-distortion::before {
    top: 40px;
    left: 42%;
    width: 300px;
    height: 300px;
    filter: blur(48px);
  }

  .research-distortion::after {
    bottom: 120px;
    width: 300px;
    height: 300px;
    filter: blur(48px);
  }

  .research-distortion__heading {
    width: 100%;
  }

  .research-distortion__heading h2 {
    font-size: clamp(38px, 10.8vw, 44px);
    line-height: 1.1;
  }

  .research-distortion__heading p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.35;
  }

  .research-distortion__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0;
    margin-top: 64px;
  }

  .research-distortion__left,
  .research-distortion__right {
    width: 100%;
    min-width: 0;
    font-size: 17px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .research-distortion__lead {
    min-height: 0;
  }

  .research-distortion__lead::first-letter {
    padding-right: 14px;
    font-size: 128px;
    line-height: 0.78;
  }

  .research-distortion__left p + p,
  .research-distortion__right p + p {
    margin-top: 24px;
  }

  .research-importance {
    padding: 82px 24px 88px;
  }

  .research-importance__heading h2 {
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.1;
  }

  .research-importance__heading p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .research-importance__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 52px;
  }

  .research-importance__media {
    width: 100%;
    height: auto;
    aspect-ratio: 342 / 430;
    border-radius: 24px;
  }

  .research-importance__media img {
    object-position: 42% center;
  }

  .research-importance__text {
    min-height: 0;
    gap: 16px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-importance__emphasis ul {
    padding-left: 24px;
  }

  .research-basis {
    padding: 82px 24px 88px;
  }

  .research-basis::before {
    top: 12px;
    left: -120px;
    width: 320px;
    height: 320px;
    filter: blur(50px);
  }

  .research-basis::after {
    right: -120px;
    bottom: 40px;
    width: 320px;
    height: 320px;
    filter: blur(50px);
  }

  .research-basis h2 {
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.1;
  }

  .research-basis__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 52px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-basis__columns p + p {
    margin-top: 18px;
  }

  .research-check {
    padding: 82px 24px 88px;
  }

  .research-check__inner {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 52px;
  }

  .research-check__intro h2 {
    max-width: 100%;
    font-size: clamp(42px, 11.4vw, 48px);
    line-height: 1.08;
  }

  .research-check__intro p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .research-check__intro p br {
    display: none;
  }

  .research-check__media {
    height: auto;
    aspect-ratio: 342 / 230;
    border-radius: 24px;
  }

  .research-check__copy {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-check__copy p + p {
    margin-top: 16px;
  }

  .research-summary {
    min-height: 620px;
    padding: 82px 24px 88px;
  }

  .research-summary__inner {
    width: 100%;
    gap: 54px;
  }

  .research-summary__statement {
    gap: 22px;
    font-size: clamp(28px, 7.8vw, 34px);
    line-height: 1.22;
  }

  .research-summary__statement em {
    margin-bottom: 10px;
    font-size: clamp(34px, 9.5vw, 40px);
  }

  .research-summary__note {
    font-size: 18px;
    line-height: 1.35;
  }

  .research-representation {
    overflow-x: visible;
    padding: 82px 16px 88px;
  }

  .research-representation__inner,
  .research-representation__grid,
  .research-representation__grid > *,
  .research-representation__side,
  .research-representation__note,
  .research-representation__media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .research-representation__intro {
    min-height: 0;
    padding: 30px 24px 32px;
    border-radius: 18px;
  }

  .research-representation__intro h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 10.8vw, 44px);
    line-height: 1.1;
  }

  .research-representation__intro p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-representation__grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 18px;
    margin-top: 18px;
  }

  .research-representation__layers {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-width: 0;
    padding: 30px 24px 24px;
    border-radius: 18px;
    overflow: hidden;
  }

  .research-representation__layers h3 {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .research-representation__layer {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    min-width: 0;
    padding: 24px 20px 24px;
    border-radius: 13px;
  }

  .research-representation__layer + .research-representation__layer {
    margin-top: 16px;
  }

  .research-representation__layer h4 {
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .research-representation__layer p {
    font-size: 17px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .research-representation__side {
    display: flex;
    height: auto;
    flex-direction: column;
    gap: 18px;
  }

  .research-representation__note {
    height: auto;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .research-representation__note p {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-representation__media {
    min-height: 0;
    aspect-ratio: 342 / 300;
    border-radius: 18px;
  }

  .research-areas {
    padding: 82px 24px 88px;
  }

  .research-areas h2 {
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.1;
  }

  .research-areas__stage {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 52px;
  }

  .research-areas__card,
  .research-areas__media {
    height: auto;
    min-height: 0;
    border-radius: 18px;
  }

  .research-areas__card {
    gap: 32px;
    padding: 32px 24px 28px;
  }

  .research-areas__card h3 {
    font-size: clamp(34px, 9vw, 40px);
  }

  .research-areas__copy {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-areas__copy ul {
    padding-left: 24px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-areas__controls {
    gap: 16px;
  }

  .research-areas__controls button {
    width: 56px;
    height: 56px;
    font-size: 30px;
  }

  .research-areas__media {
    aspect-ratio: 342 / 360;
  }

  .research-age-analysis {
    padding: 82px 24px 88px;
  }

  .research-age-analysis::before {
    top: 24px;
    left: 36%;
    width: 320px;
    height: 320px;
    filter: blur(50px);
  }

  .research-age-analysis::after {
    bottom: 80px;
    left: -120px;
    width: 320px;
    height: 320px;
    filter: blur(50px);
  }

  .research-age-analysis h2 {
    max-width: 342px;
    font-size: clamp(38px, 10.6vw, 44px);
    line-height: 1.1;
  }

  .research-age-analysis__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 58px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-age-analysis__columns p + p {
    margin-top: 16px;
  }

  .research-age-analysis__columns ul {
    padding-left: 24px;
  }

  .infrastructure {
    height: auto;
  }

  .infrastructure__sticky {
    position: relative;
    min-height: 0;
    overflow: visible;
  }

  .infrastructure__inner {
    width: 100%;
    min-height: 0;
    padding: 93px 24px 96px;
  }

  .infrastructure__heading h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .infrastructure__heading p {
    margin-top: 8px;
    font-size: 16px;
  }

  .orbit {
    display: none;
  }

  .mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 57px;
  }

  .mobile-card {
    position: relative;
    min-height: 169px;
    overflow: hidden;
    border-radius: 12px;
    padding: 24px 16px 22px;
    color: var(--cream);
    isolation: isolate;
  }

  .mobile-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    content: "";
  }

  .mobile-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-card:nth-child(1) img {
    object-position: center 18%;
  }

  .mobile-card:nth-child(2) img {
    object-position: center 40%;
  }

  .mobile-card:nth-child(3) img {
    object-position: center 62%;
  }

  .mobile-card:nth-child(4) img {
    object-position: center 52%;
  }

  .mobile-card h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
  }

  .mobile-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
  }

  .system__inner {
    display: block;
    width: 100%;
    padding: 93px 24px 88px;
  }

  .system__intro {
    position: static;
    text-align: center;
  }

  .system__intro h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 40px;
    line-height: 1.2;
  }

  .system__intro h2 em {
    display: block;
  }

  .system__intro p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.3;
  }

  .system__body {
    padding-top: 35px;
  }

  .system__goal {
    max-width: none;
    margin: 0 0 56px;
    font-size: 14px;
    line-height: 1.3;
  }

  .system__steps-wrap {
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 24px;
  }

  .system__progress {
    width: 14px;
  }

  .system__progress span {
    height: max(178px, calc(var(--system-progress) * 100%));
  }

  .system__steps {
    gap: 36px;
  }

  .system-step h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.3;
  }

  .system-step p {
    font-size: 16px;
    line-height: 1.25;
  }

  .system--research-gap .system__inner {
    padding: 82px 24px 88px;
  }

  .system--research-gap .system__intro h2 {
    max-width: 342px;
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.1;
  }

  .system--research-gap .system__intro p {
    max-width: 342px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .system--research-gap .system__body {
    width: 100%;
    margin-top: 58px;
  }

  .system--research-gap .system__steps-wrap {
    grid-template-columns: 14px minmax(0, 1fr);
    column-gap: 24px;
  }

  .system--research-gap .system__progress span {
    height: calc(var(--system-progress) * 100%);
  }

  .system--research-gap .system__steps {
    gap: 48px;
  }

  .system--research-gap .system-step h3 {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.22;
  }

  .system--research-gap .system-step p {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-gap-break {
    display: none;
  }

  .research-bridge {
    min-height: 620px;
    padding: 82px 24px 88px;
  }

  .research-bridge__inner {
    width: 100%;
  }

  .research-bridge h2 {
    max-width: 342px;
    font-size: clamp(38px, 10.6vw, 44px);
    line-height: 1.1;
  }

  .research-bridge p {
    margin-top: 48px;
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.22;
  }

  .research-structure {
    min-height: 0;
    padding: 82px 24px 88px;
  }

  .research-structure__intro {
    max-width: 100%;
  }

  .research-structure__intro h2 {
    margin-bottom: 22px;
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.1;
  }

  .research-structure__intro p {
    width: 100%;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-structure__intro p + p {
    margin-top: 12px;
  }

  .research-structure__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 52px;
  }

  .research-structure-card {
    height: auto;
    min-height: 0;
    padding: 26px 24px 24px;
    border-radius: 24px;
  }

  .research-structure-card h3 {
    min-height: 0;
    font-size: clamp(30px, 8.4vw, 36px);
  }

  .research-structure-card p {
    height: auto;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-structure-card img {
    height: auto;
    aspect-ratio: 294 / 185;
    margin-top: 30px;
  }

  .research-components {
    padding: 82px 0 88px;
  }

  .research-components h2 {
    width: calc(100% - 48px);
    margin: 0 auto;
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.1;
  }

  .research-components__stage {
    width: calc(100% - 48px);
    margin: 52px auto 0;
    padding-top: 62px;
  }

  .research-components__controls {
    top: 0;
    right: 0;
    gap: 8px;
  }

  .research-components__control {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .research-components__carousel {
    grid-auto-columns: calc(100vw - 48px);
    gap: 16px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding-right: 24px;
  }

  .research-components .research-component-card {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 32px 24px 34px;
    border-radius: 18px;
  }

  .research-components .research-component-card h3 {
    margin-bottom: 24px;
    font-size: clamp(32px, 8.8vw, 38px);
  }

  .research-components .research-component-card p,
  .research-components .research-component-card p:not(.volunteer-track-card__time) {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-components .research-component-card p + p {
    margin-top: 16px;
  }

  .research-prepared {
    min-height: 0;
    padding: 82px 24px 88px;
  }

  .research-prepared__heading {
    width: 100%;
  }

  .research-prepared__heading h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(40px, 10.7vw, 46px);
    line-height: 1.1;
    white-space: normal;
  }

  .research-prepared__heading p {
    width: 100%;
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.3;
  }

  .research-prepared__grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 52px;
  }

  .research-prepared__media,
  .research-prepared__card {
    width: 100%;
    border-radius: 18px;
  }

  .research-prepared__media--top,
  .research-prepared__media--side,
  .research-prepared__media--bottom {
    height: auto;
  }

  .research-prepared__media--top {
    aspect-ratio: 327 / 220;
  }

  .research-prepared__media--side {
    aspect-ratio: 327 / 360;
  }

  .research-prepared__media--bottom {
    aspect-ratio: 327 / 170;
  }

  .research-prepared__card--intro,
  .research-prepared__card--list,
  .research-prepared__card--closing {
    height: auto;
    min-height: 0;
    padding: 28px 24px 30px;
  }

  .research-prepared__card h3 {
    margin-bottom: 24px;
    font-size: 21px;
    line-height: 1.25;
  }

  .research-prepared__card p,
  .research-prepared__card li {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-prepared__card p + p {
    margin-top: 14px;
  }

  .research-prepared__card ul {
    padding-left: 20px;
  }

  .research-prepared__card--list li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
  }

  .research-results {
    height: auto;
    overflow: visible;
    padding: 82px 24px 88px;
  }

  .research-results__inner {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 0;
    flex-direction: column;
    gap: 54px;
  }

  .research-results__copy {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 0;
    padding-top: 0;
  }

  .research-results__copy h2 {
    width: 100%;
    max-width: none;
    font-size: clamp(38px, 10.2vw, 46px);
    line-height: 1.14;
  }

  .research-results__text {
    max-width: none;
    margin-top: 40px;
  }

  .research-results__text p {
    font-size: 18px;
    line-height: 1.35;
  }

  .research-results__text p + p {
    margin-top: 20px;
  }

  .research-results__panel {
    width: 100%;
    padding: 0;
    align-self: stretch;
  }

  .research-results__panel h3 {
    margin-bottom: 28px;
    font-size: clamp(34px, 9vw, 40px);
  }

  .research-results__cards {
    width: 100%;
    height: auto;
    max-height: none;
    gap: 16px;
    overflow: visible;
  }

  .research-result-card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 26px 24px 28px;
    border-radius: 24px;
  }

  .research-result-card h4 {
    font-size: clamp(28px, 7.6vw, 34px);
  }

  .research-result-card p {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-matters {
    padding: 82px 24px 88px;
  }

  .research-matters__inner {
    gap: 24px;
  }

  .research-matter-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border-radius: 18px;
  }

  .research-matter-card__copy {
    padding: 32px 24px 0;
  }

  .research-matter-card h2 {
    display: block;
    font-size: 26px;
    line-height: 1.15;
  }

  .research-matter-card h2 span {
    min-width: 0;
    margin-right: 12px;
    font-size: inherit;
    line-height: inherit;
  }

  .research-matter-card__body {
    max-width: none;
    margin: 28px 0 0;
  }

  .research-matter-card__body p,
  .research-matter-card__body li {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-matter-card__body p + p {
    margin-top: 15px;
  }

  .research-matter-card__body ul {
    margin: 15px 0;
    padding-left: 20px;
  }

  .research-matter-card__lead {
    margin-top: 24px !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .research-matter-card__media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 327 / 310;
    border-radius: 0 0 18px 18px;
  }

  .research-verification {
    min-height: 0;
    padding: 96px 24px;
  }

  .research-verification__inner {
    width: 100%;
  }

  .research-verification p {
    font-size: clamp(36px, 9.7vw, 44px);
    line-height: 1.14;
  }

  .research-evidence {
    padding: 82px 24px 88px;
  }

  .research-evidence h2 {
    font-size: clamp(40px, 10.7vw, 48px);
    line-height: 1.08;
  }

  .research-evidence__grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 42px;
  }

  .research-evidence__media {
    min-height: 0;
    aspect-ratio: 1.08;
    border-radius: 24px;
  }

  .research-evidence__media--bottom {
    aspect-ratio: 1.3;
    min-height: 0;
  }

  .research-evidence__card {
    min-height: 0;
    border-radius: 24px;
    padding: 28px 24px 30px;
  }

  .research-evidence__card h3 {
    margin-bottom: 18px;
    font-size: clamp(30px, 8vw, 36px);
  }

  .research-evidence__card p {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-evidence__card p + p {
    margin-top: 14px;
  }

  .research-conducting {
    padding: 82px 24px 88px;
  }

  .research-conducting h2 {
    max-width: none;
    font-size: clamp(40px, 10.7vw, 50px);
    line-height: 1.08;
    text-align: left;
  }

  .research-conducting__grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin-top: 44px;
  }

  .research-conducting__media {
    border-radius: 24px;
  }

  .research-conducting__media--wide {
    aspect-ratio: 1.35;
  }

  .research-conducting__media--portrait {
    aspect-ratio: 1;
  }

  .research-conducting__copy {
    margin-top: 26px;
  }

  .research-conducting__copy h3 {
    max-width: none;
    font-size: 21px;
    line-height: 1.3;
  }

  .research-conducting__copy p {
    max-width: none;
    margin-top: 13px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-conducting__founder-text {
    margin-top: 24px;
  }

  .research-conducting__founder-text h3 {
    font-size: 34px;
  }

  .research-conducting__founder-text p {
    margin-top: 14px;
    font-size: 24px;
  }

  .research-conducting__founder-text span {
    margin-top: 10px;
    font-size: 14px;
  }

  .research-materials-note {
    min-height: 360px;
    padding: 72px 24px;
  }

  .research-materials-note__inner {
    width: 100%;
  }

  .research-materials-note p {
    font-size: clamp(32px, 8.7vw, 42px);
    line-height: 1.18;
  }

  .research-support {
    padding: 82px 24px 88px;
  }

  .research-support__intro {
    max-width: none;
  }

  .research-support__intro h2 {
    font-size: clamp(40px, 10.7vw, 46px);
    line-height: 1.1;
  }

  .research-support__intro p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-support__intro p + p {
    margin-top: 12px;
  }

  .research-support__grid {
    display: flex;
    max-width: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 52px;
  }

  .research-support-card,
  .research-support-card--wide {
    min-height: 0;
    padding: 28px 24px 30px;
    border-radius: 24px;
  }

  .research-support-card h3 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.14;
  }

  .research-support-card p,
  .research-support-card--wide p {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-donor-note {
    min-height: 0;
    padding: 84px 24px;
  }

  .research-donor-note__card {
    width: 100%;
    min-height: 0;
    padding: 34px 24px 36px;
    border-radius: 18px;
  }

  .research-donor-note__card h2 {
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.12;
  }

  .research-donor-note__card p {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.35;
  }

  .research-donor-note__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 42px;
  }

  .research-donor-note__button {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .research-why-now {
    padding: 82px 24px 88px;
  }

  .research-why-now__header {
    width: 100%;
  }

  .research-why-now__header h2 {
    font-size: clamp(40px, 10.7vw, 46px);
    line-height: 1.1;
  }

  .research-why-now__header p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.35;
  }

  .research-why-now__lead {
    font-size: 18px !important;
  }

  .research-why-now__columns {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 58px;
  }

  .research-why-now p {
    font-size: 17px;
    line-height: 1.35;
  }

  .research-why-now p + p {
    margin-top: 22px;
  }

  .research-why-now__drop::first-letter {
    margin: -10px 14px 0 0;
    font-size: 96px;
    line-height: 0.84;
  }

  .research-why-now__closing {
    width: 100%;
    margin-top: 54px;
  }

  .research-why-now__closing p + p {
    margin-top: 22px;
  }

  .join-section {
    min-height: 0;
  }

  .join-section__bg {
    object-position: 48% top;
  }

  .join-section__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.16) 40%, rgba(0, 0, 0, 0.34) 100%),
      rgba(0, 0, 0, 0.18);
  }

  .join-section__content {
    width: 100%;
    padding: 96px 24px 0;
  }

  .join-section__intro {
    max-width: 100%;
  }

  .join-section__intro h2 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1.15;
  }

  .join-section__intro p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.3;
  }

  .join-section__controls {
    display: none;
  }

  .join-carousel {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 24px;
    margin-top: 53px;
    padding: 0 24px 96px;
    overflow: visible;
    scroll-snap-type: none;
    cursor: auto;
    user-select: auto;
    touch-action: auto;
  }

  .join-card {
    width: 100%;
    min-width: 0;
    min-height: 253px;
    height: auto;
    padding: 16px 16px 15px;
    border-radius: 12px;
    background: rgba(255, 252, 248, 0.24);
  }

  .join-card.is-active {
    height: auto;
    transform: none;
  }

  .join-card h3 {
    font-size: 26px;
  }

  .join-card__button {
    height: 51px;
    margin-top: 31px;
    background: rgba(255, 252, 248, 1);
    color: rgba(152, 79, 145, 1);
    font-size: 18px;
  }

  .join-card__button::after {
    content: none;
  }

  .join-card p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.3;
  }

  .join-section--grid {
    min-height: 0;
  }

  .join-section--grid .join-section__content {
    padding: 82px 24px 0;
  }

  .join-section--grid .join-section__intro {
    max-width: 342px;
    margin: 0 auto;
  }

  .join-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    margin-top: 64px;
    padding: 0 24px 96px;
  }

  .join-section--grid .join-card {
    min-height: 300px;
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 252, 248, 1);
  }

  .join-section--grid .join-card h3 {
    font-size: 28px;
    line-height: 1.16;
  }

  .join-section--grid .join-card__button {
    display: flex;
    width: 100%;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    padding: 0;
    color: var(--cream);
    background: rgba(152, 79, 145, 1);
    line-height: 1;
    flex-basis: 48px;
  }

  .join-section--grid .join-card:hover .join-card__button,
  .join-section--grid .join-card:not(.is-active):hover .join-card__button:not(:hover) {
    display: flex;
    width: 100%;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-color: rgba(152, 79, 145, 1);
    color: var(--cream);
    background: rgba(152, 79, 145, 1);
  }

  .join-section--grid .join-card .join-card__button:hover,
  .join-section--grid .join-card:hover .join-card__button:hover {
    display: flex;
    width: 100%;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-color: rgba(152, 79, 145, 1);
    color: rgba(152, 79, 145, 1);
    background: rgba(255, 252, 248, 1);
  }

  .join-section--grid .join-card p {
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.28;
  }

  .join-section--compact {
    min-height: 0;
  }

  .join-section--compact .join-section__content {
    display: none;
  }

  .join-section--compact .join-carousel {
    margin-top: 0;
    padding-top: 96px;
  }

  .life-cycle__inner {
    padding: 78px 24px 88px;
  }

  .life-cycle__heading h2 {
    max-width: 360px;
    margin: 0 auto;
    font-size: 38px;
    line-height: 1.12;
  }

  .life-cycle__heading p {
    max-width: 320px;
    margin: 14px auto 0;
    font-size: 16px;
  }

  .life-cycle__stage {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 42px;
  }

  .life-cycle__card,
  .life-cycle__media {
    height: auto;
    min-height: 0;
    border-radius: 22px;
  }

  .life-cycle__media {
    aspect-ratio: 1.08;
  }

  .life-cycle__media img {
    min-height: 0;
  }

  .life-cycle__card {
    position: relative;
    min-height: 338px;
    padding: 23px 24px 24px;
    background: #efefef;
  }

  .life-cycle__card h3 {
    font-size: 31px;
    line-height: 1.18;
  }

  .life-cycle__card p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.3;
  }

  .life-cycle__controls {
    display: flex;
    gap: 18px;
    margin-top: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .life-cycle__control {
    width: 55px;
    height: 55px;
    border-color: rgba(34, 26, 31, 0.82);
    border-radius: 50%;
    background: transparent;
    color: rgba(34, 26, 31, 0.68);
    font-size: 30px;
  }

  .life-cycle__control.is-active,
  .life-cycle__control:hover {
    border-color: var(--ink);
    background: rgba(255, 252, 248, 1);
    color: var(--ink);
    transform: none;
  }

  .life-cycle--volunteers .life-cycle__inner {
    padding-top: 70px;
  }

  .life-cycle--volunteers .life-cycle__heading h2 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1.2;
  }

  .life-cycle--volunteers .life-cycle__heading p {
    max-width: 342px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.3;
  }

  .life-cycle--volunteers .life-cycle__stage {
    margin-top: 40px;
  }

  .life-cycle--membership .life-cycle__inner {
    padding-top: 78px;
  }

  .life-cycle--membership .life-cycle__heading p {
    max-width: 342px;
  }

  .volunteer-tracks {
    min-height: 1058px;
  }

  .volunteer-tracks__bg {
    object-position: center;
  }

  .volunteer-tracks__shade {
    background: rgba(34, 26, 31, 0.46);
  }

  .volunteer-tracks__inner {
    padding: 98px 24px 0;
  }

  .volunteer-tracks__heading {
    width: min(100%, 342px);
  }

  .volunteer-tracks__heading h2 {
    font-size: 40px;
    line-height: 1.18;
  }

  .volunteer-tracks__heading p {
    margin-top: 33px;
    font-size: 20px;
    line-height: 1.25;
  }

  .volunteer-tracks__controls {
    justify-content: flex-end;
    gap: 10px;
    margin-top: 64px;
    padding-right: 0;
  }

  .volunteer-tracks__control {
    width: 64px;
    height: 64px;
  }

  .volunteer-tracks__carousel {
    --tracks-side-offset: 24px;
    gap: 24px;
    margin-top: 24px;
    padding: 0 var(--tracks-side-offset) 96px;
  }

  .volunteer-track-card {
    width: min(320px, calc(100vw - 67px));
    min-width: min(320px, calc(100vw - 67px));
    height: 398px;
    padding: 22px;
    border-radius: 12px;
  }

  .volunteer-track-card h3 {
    margin-top: 25px;
    font-size: 28px;
    line-height: 1.12;
  }

  .volunteer-track-card__time {
    font-size: 16px;
  }

  .volunteer-track-card p:not(.volunteer-track-card__time) {
    font-size: 16px;
    line-height: 1.28;
  }

  .volunteer-tasks__inner {
    padding: 79px 24px 96px;
  }

  .volunteer-tasks__heading {
    max-width: 342px;
  }

  .volunteer-tasks__heading h2 {
    font-size: 40px;
    line-height: 1.18;
  }

  .volunteer-tasks__heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.3;
  }

  .volunteer-tasks__grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 65px;
  }

  .volunteer-task-card {
    min-height: 295px;
    padding: 24px;
  }

  .volunteer-task-card h3 {
    margin-top: 25px;
    font-size: 24px;
  }

  .volunteer-task-card p {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.28;
  }

  .volunteer-benefits__bg {
    object-position: 48% center;
  }

  .volunteer-benefits__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.42) 100%),
      rgba(34, 26, 31, 0.28);
  }

  .volunteer-benefits__inner {
    padding: 96px 24px 96px;
  }

  .volunteer-benefits h2 {
    max-width: 340px;
    font-size: 40px;
    line-height: 1.22;
  }

  .volunteer-benefits h2 em {
    display: block;
  }

  .volunteer-benefits__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 66px;
  }

  .volunteer-benefit-card {
    min-height: 260px;
    padding: 24px;
    border-radius: 12px;
  }

  .volunteer-benefit-card h3 {
    font-size: 28px;
    line-height: 1.15;
  }

  .volunteer-benefit-card p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.28;
  }

  .volunteer-rules__inner {
    padding: 76px 24px 78px;
  }

  .volunteer-rules__heading h2 {
    font-size: 40px;
    line-height: 1.18;
  }

  .volunteer-rules__heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.3;
  }

  .volunteer-rules__cards {
    gap: 24px;
    margin-top: 64px;
  }

  .volunteer-rule-card,
  .volunteer-rule-card--four {
    min-height: 200px;
    border-radius: 10px;
    background-size: 100% 896px;
  }

  .volunteer-rule-card--one {
    background-position: center 0;
  }

  .volunteer-rule-card--two {
    background-position: center -224px;
  }

  .volunteer-rule-card--three {
    background-position: center -448px;
  }

  .volunteer-rule-card--four {
    background-position: center -672px;
  }

  .volunteer-rule-card > div {
    width: 100%;
    margin: 0;
    padding: 38px 24px 32px;
  }

  .volunteer-rule-card h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .volunteer-rule-card p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.28;
  }

  .membership-packages__bg {
    object-position: 44% center;
  }

  .membership-packages__inner {
    padding: 122px 24px 96px;
  }

  .membership-packages__heading {
    max-width: 342px;
  }

  .membership-packages__heading h2 {
    font-size: 40px;
    line-height: 1.18;
  }

  .membership-packages__heading p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.3;
  }

  .membership-packages__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 98px;
  }

  .membership-package-card {
    min-height: 0;
    padding: 24px;
    border-radius: 12px;
  }

  .membership-package-card h3 {
    min-height: 0;
    font-size: 28px;
    line-height: 1.16;
  }

  .membership-package-card__lead {
    min-height: 0;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.28;
  }

  .membership-package-card__button {
    min-height: 48px;
    margin-top: 76px;
  }

  .membership-package-card h4 {
    margin-top: 36px;
    font-size: 22px;
  }

  .membership-package-card ul {
    padding-left: 24px;
    font-size: 18px;
  }

  .membership-package-card__note {
    margin-top: 24px;
    font-size: 16px;
  }

  .membership-final-cta {
    min-height: 430px;
  }

  .membership-final-cta__inner {
    padding: 82px 24px;
  }

  .membership-final-cta h2 {
    max-width: 342px;
    margin: 0 auto;
    font-size: 40px;
    line-height: 1.18;
  }

  .membership-final-cta p {
    margin-top: 32px;
    font-size: 16px;
  }

  .membership-final-cta__button {
    width: 100%;
    height: 48px;
    margin-top: 56px;
  }

  .membership-support {
    min-height: 930px;
  }

  .membership-support__bg {
    object-position: center;
  }

  .membership-support__shade {
    background: rgba(34, 26, 31, 0.5);
  }

  .membership-support__inner {
    padding: 96px 24px 0;
  }

  .membership-support__heading {
    max-width: 342px;
  }

  .membership-support__heading h2 {
    font-size: 40px;
    line-height: 1.18;
  }

  .membership-support__heading p {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.25;
  }

  .membership-support__bar {
    align-items: flex-end;
    gap: 16px;
    margin-top: 86px;
  }

  .membership-support__bar h3 {
    max-width: 210px;
    font-size: 34px;
    line-height: 1.12;
  }

  .membership-support__controls {
    gap: 10px;
    flex-shrink: 0;
  }

  .membership-support__control {
    width: 64px;
    height: 64px;
  }

  .membership-support__carousel {
    --tracks-side-offset: 24px;
    gap: 24px;
    margin-top: 24px;
    padding: 0 var(--tracks-side-offset) 96px;
  }

  .membership-support-card {
    width: min(320px, calc(100vw - 67px));
    min-width: min(320px, calc(100vw - 67px));
    height: 230px;
    padding: 22px;
    border-radius: 12px;
  }

  .membership-support-card h3 {
    font-size: 28px;
    line-height: 1.12;
  }

  .membership-support-card p:not(.volunteer-track-card__time) {
    font-size: 16px;
    line-height: 1.28;
  }

  .membership-compare__inner {
    padding: 78px 0 96px;
  }

  .membership-compare__heading {
    max-width: 342px;
    padding: 0 24px;
  }

  .membership-compare__heading h2 {
    font-size: 40px;
    line-height: 1.18;
  }

  .membership-compare__heading p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.25;
  }

  .membership-compare__table-wrap {
    position: relative;
    width: 100%;
    margin-top: 64px;
    padding: 0 24px 10px;
  }

  .membership-compare__table-wrap::after {
    content: attr(data-scroll-hint) " ->";
    position: sticky;
    right: 18px;
    bottom: 12px;
    z-index: 3;
    display: inline-flex;
    float: right;
    height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--cream);
    background: rgba(78, 37, 72, 0.88);
    font-size: 13px;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 8px 22px rgba(34, 26, 31, 0.18);
  }

  .membership-compare__table {
    width: 980px;
    font-size: 18px;
  }

  .membership-compare__table th,
  .membership-compare__table td {
    height: 50px;
    padding: 8px 10px;
    border-width: 2px;
  }

  .membership-compare__table thead th,
  .membership-compare__table tbody th {
    font-size: 22px;
  }

  .membership-compare__table th:first-child,
  .membership-compare__table td:first-child {
    width: 360px;
  }

  .membership-compare__table th:nth-child(2),
  .membership-compare__table td:nth-child(2),
  .membership-compare__table th:nth-child(3),
  .membership-compare__table td:nth-child(3) {
    width: 210px;
  }

  .membership-compare__table th:nth-child(4),
  .membership-compare__table td:nth-child(4) {
    width: 200px;
  }

  .research-cta {
    height: min(720px, 128vw);
    min-height: 560px;
    place-items: center;
    padding: 16px 24px;
  }

  .research-cta__bg {
    object-position: 42% center;
  }

  .research-cta__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.42) 100%),
      rgba(0, 0, 0, 0.12);
  }

  .research-cta__panel {
    width: 100%;
    min-height: 0;
    padding: 28px 18px 18px;
    border-radius: 24px;
  }

  .research-cta__panel h2 {
    font-size: 36px;
    line-height: 1.14;
  }

  .research-cta__panel p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.3;
  }

  .research-cta__button {
    width: 100%;
    height: 51px;
    margin-top: 30px;
    font-size: 18px;
  }

  .active-projects__inner {
    padding: 78px 24px 88px;
  }

  .active-projects__header {
    margin-bottom: 84px;
  }

  .active-projects__header h2 {
    font-size: 40px;
    line-height: 1.15;
  }

  .active-projects__all {
    width: 44px;
    height: 44px;
    font-size: 38px;
  }

  .active-projects__list {
    gap: 80px;
  }

  .project-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 24px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .project-row::after {
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(34, 26, 31, 0.82);
  }

  .project-row__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.53;
    border-radius: 12px;
  }

  .project-row h3 {
    padding: 23px 0 0;
    font-size: 26px;
  }

  .project-row__content {
    min-height: 0;
    align-items: stretch;
    padding: 17px 0 0;
  }

  .project-row__content p {
    font-size: 16px;
    line-height: 1.3;
  }

  .project-row__button {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
    background: transparent;
  }

  .project-row__button::after {
    content: none;
  }

  .project-row:hover .project-row__button,
  .project-row__button:hover {
    transform: none;
  }

  .global-network__mist {
    inset: 0;
  }

  .global-network__mist span {
    width: 210px;
    height: 190px;
    filter: blur(42px);
    opacity: 0.72;
  }

  .global-network__mist span:nth-child(1) {
    top: 20px;
    left: -72px;
    width: 245px;
    height: 210px;
  }

  .global-network__mist span:nth-child(2) {
    top: 170px;
    right: -84px;
    width: 230px;
    height: 250px;
  }

  .global-network__mist span:nth-child(3) {
    right: 110px;
    bottom: 260px;
    width: 220px;
    height: 190px;
  }

  .global-network__mist span:nth-child(4) {
    bottom: -20px;
    left: -42px;
    width: 255px;
    height: 205px;
  }

  .global-network__inner {
    min-height: 0;
    padding: 96px 24px 88px;
  }

  .global-network h2 {
    max-width: 342px;
    font-size: 38px;
    line-height: 1.13;
  }

  .global-network__body {
    display: flex;
    flex-direction: column;
    gap: 31px;
    margin-top: 56px;
  }

  .global-network__left,
  .global-network__right {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1.28;
    backdrop-filter: none;
  }

  .global-network__lead {
    display: block;
  }

  .global-network__lead span {
    float: left;
    margin: -17px 14px 0 -2px;
    font-size: 106px;
    line-height: 0.82;
  }

  .global-network__left > p {
    max-width: none;
    margin-top: 19px;
  }

  .global-network__right {
    gap: 22px;
  }

  .updates__inner {
    padding: 98px 24px 88px;
  }

  .updates__header {
    margin-bottom: 59px;
  }

  .updates__header h2 {
    max-width: 232px;
    font-size: 40px;
    line-height: 1.15;
  }

  .updates__all {
    width: 44px;
    height: 44px;
    font-size: 38px;
  }

  .updates__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .update-card {
    min-height: 0;
    border-radius: 14px;
  }

  .update-card--note {
    min-height: 380px;
  }

  .update-card:hover {
    transform: none;
  }

  .update-card--note {
    padding: 24px;
  }

  .update-card--article {
    padding: 24px 24px 28px;
  }

  .update-card__tag,
  .update-card__media span {
    min-height: 26px;
    font-size: 14px;
  }

  .update-card h3 {
    margin-top: 18px;
    font-size: 24px;
    line-height: 1.25;
  }

  .update-card p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.3;
  }

  .update-card p + p {
    margin-top: 18px;
  }

  .update-card__media {
    height: auto;
    aspect-ratio: 2.15;
    border-radius: 8px;
  }

  .update-card__media span:nth-of-type(n + 3) {
    display: none;
  }

  .update-card--article p {
    margin-top: 10px;
  }

  .update-card__meta {
    padding-top: 46px;
  }

  .rules-hero {
    min-height: 670px;
    place-items: center;
    padding: 38px 24px;
  }

  .rules-hero__bg {
    object-position: 48% center;
  }

  .rules-hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0.48) 100%),
      rgba(0, 0, 0, 0.18);
  }

  .rules-hero__content {
    width: 100%;
    padding: 0;
  }

  .rules-hero__content h2 {
    font-size: 54px;
    line-height: 1.02;
  }

  .rules-hero__content p {
    max-width: 355px;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.3;
  }

  .rules-hero__button {
    width: 100%;
    height: 51px;
    margin-top: 36px;
    font-size: 18px;
  }

  .faq__inner {
    display: block;
    padding: 109px 24px 88px;
  }

  .faq h2 {
    font-size: 40px;
    line-height: 1.15;
  }

  .faq__list {
    padding-top: 55px;
  }

  .faq-item summary {
    gap: 18px;
    padding: 22px 0;
    font-size: 21px;
    line-height: 1.25;
  }

  .faq-item summary::after {
    font-size: 28px;
  }

  .faq-item p {
    max-width: none;
    margin: 0 0 28px;
    padding-right: 34px;
    font-size: 16px;
    line-height: 1.3;
  }

  .site-footer__inner {
    padding: 76px 24px 46px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row dense;
    gap: 32px 42px;
  }

  .site-footer__nav ul {
    gap: 12px;
  }

  .site-footer__nav ul:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .site-footer__nav ul:nth-child(2) {
    grid-column: 1;
    grid-row: 3;
  }

  .site-footer__nav ul:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer__nav ul:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer__nav ul:nth-child(5) {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .site-footer__social {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__logo {
    margin-top: 99px;
  }

  .site-footer__logo img {
    height: auto;
  }

  .site-footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 17px;
    margin-top: 58px;
    font-size: 13px;
    text-align: center;
  }

  .site-footer__bottom nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 18px;
  }

  .site-footer__bottom a:hover {
    transform: none;
  }
}

@media (min-width: 901px) and (max-width: 1247px) {
  .site-header {
    top: 32px;
    padding: 0 40px;
  }

  .nav-panel {
    width: 529px;
  }

  .nav-panel__link {
    width: 177px;
  }

  .nav-panel__join {
    width: 177px;
  }

  .nav-panel__donate {
    width: 193px;
  }

  .hero__content {
    padding: 230px 40px 86px;
  }

  .hero__kicker {
    width: min(720px, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 15px;
  }

  .hero__title {
    max-width: 900px;
    margin: 10px auto 0;
    text-align: center;
    font-size: clamp(72px, 8.4vw, 94px);
    line-height: 0.98;
  }

  .hero__title em {
    text-align: center;
  }

  .hero__text {
    width: min(560px, 100%);
    margin: 38px auto 0;
    text-align: center;
  }

  .hero__text p {
    width: auto;
    font-size: 18px;
  }

  .hero__button {
    width: 260px;
    margin: 62px auto 0;
  }

  .research-hero {
    min-height: 0;
    padding: 219px 40px 120px;
  }

  .research-hero__inner {
    display: block;
    min-height: 0;
    width: min(100%, 1000px);
  }

  .research-hero__title {
    max-width: none;
    font-size: clamp(68px, 8vw, 96px);
    line-height: 1;
  }

  .research-hero p {
    width: min(100%, 584px);
    margin-top: 40px;
    font-size: 20px;
    line-height: 1.23;
  }

  .research-distortion__content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    padding: 0 40px;
  }

  .research-distortion__left,
  .research-distortion__right {
    width: auto;
  }

  .research-importance {
    padding: 120px 40px;
  }

  .research-importance__body {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
    gap: 48px;
  }

  .research-importance__media,
  .research-importance__text {
    min-height: 0;
    height: auto;
  }

  .research-importance__media {
    align-self: stretch;
  }

  .research-basis {
    padding: 120px 40px;
  }

  .research-basis__columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .research-check {
    padding: 120px 40px;
  }

  .research-check__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 48px;
  }

  .research-representation {
    padding: 120px 40px;
  }

  .research-representation__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  }

  .research-areas {
    padding: 120px 40px;
  }

  .research-areas__stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .research-age-analysis {
    padding: 120px 40px;
  }

  .research-age-analysis h2 {
    max-width: 980px;
    font-size: clamp(44px, 4.8vw, 50px);
  }

  .research-age-analysis__columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .infrastructure__inner {
    padding: 136px 40px 110px;
  }

  .infrastructure__heading h2 {
    max-width: 880px;
    font-size: 46px;
  }

  .mobile-cards {
    max-width: 780px;
    margin: 58px auto 0;
  }

  .mobile-card {
    min-height: 220px;
    padding: 28px 24px;
  }

  .mobile-card h3 {
    font-size: 22px;
  }

  .mobile-card p {
    max-width: 620px;
    font-size: 16px;
  }

  .system__inner,
  .life-cycle__inner,
  .active-projects__inner,
  .updates__inner,
  .faq__inner {
    padding-right: 40px;
    padding-left: 40px;
  }

  .system__intro h2,
  .join-section__intro h2,
  .life-cycle__heading h2,
  .updates__header h2,
  .faq h2 {
    max-width: 760px;
    font-size: 46px;
  }

  .system__goal,
  .system__steps-wrap,
  .join-section__intro,
  .life-cycle__stage,
  .active-projects__list,
  .updates__grid,
  .faq__list {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
  }

  .join-section__content {
    padding: 112px 40px 0;
  }

  .join-carousel {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .join-card {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .life-cycle__media {
    aspect-ratio: 1.55;
  }

  .research-cta {
    min-height: 620px;
    height: 720px;
  }

  .research-cta__panel {
    width: min(720px, 100%);
  }

  .active-projects__list {
    gap: 28px;
  }

  .project-row__image {
    aspect-ratio: 1.9;
  }

  .global-network__inner {
    padding: 100px 40px 110px;
  }

  .global-network h2 {
    max-width: 680px;
    font-size: 46px;
  }

  .global-network__body {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
  }

  .update-card {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .rules-hero {
    min-height: 760px;
  }

  .rules-hero__content h2 {
    font-size: clamp(64px, 7.5vw, 84px);
  }

  .site-footer__inner {
    padding-right: 40px;
    padding-left: 40px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__social {
    align-items: flex-start;
    text-align: left;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .research-hero {
    min-height: 0;
    padding: 211px 40px 120px;
  }

  .research-hero__inner {
    display: block;
    min-height: 0;
    width: min(100%, 688px);
  }

  .research-hero__title {
    max-width: none;
    font-size: clamp(50px, 7.4vw, 58px);
    line-height: 1;
  }

  .research-hero p {
    width: min(100%, 520px);
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.25;
  }
}

@media (max-width: 1247px) {
  .documents-header {
    top: 24px;
    padding: 0 24px;
  }

  .documents-header__logo {
    width: 44px;
    height: 67px;
  }

  .documents-header__logo img {
    width: 36px;
    height: 59px;
  }

  .documents-header__contact {
    width: 136px;
    height: 44px;
    font-size: 16px;
  }

  .documents-hero__inner,
  .documents-section__inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .documents-hero__inner {
    min-height: 560px;
    padding-top: 142px;
    padding-bottom: 64px;
  }

  .documents-breadcrumb {
    gap: 10px;
    font-size: 14px;
  }

  .documents-breadcrumb svg {
    width: 28px;
    height: 28px;
  }

  .documents-hero__copy {
    margin-top: 0;
    text-align: left;
  }

  .documents-hero h1 {
    max-width: 610px;
    font-size: clamp(52px, 14.8vw, 82px);
    line-height: 1.02;
  }

  .documents-hero__subtitle {
    margin-top: 16px;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.12;
  }

  .documents-hero p {
    max-width: 520px;
    margin: 26px 0 0;
    font-size: 17px;
    line-height: 1.45;
  }

  .documents-section__inner {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .documents-section h2 {
    font-size: clamp(40px, 10.4vw, 58px);
    line-height: 1.08;
  }

  .documents-list {
    margin-top: 42px;
  }

  .documents-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 0 22px;
  }

  .documents-row__title {
    font-size: clamp(26px, 7.4vw, 36px);
    line-height: 1.16;
  }

  a.documents-row__title {
    width: 100%;
  }

  a.documents-row__title:hover {
    transform: none;
  }

  .documents-row__download {
    width: 100%;
    min-height: 48px;
    justify-self: stretch;
    font-size: 17px;
  }

  .document-article {
    padding: 132px 24px 80px;
  }

  .document-article .documents-breadcrumb {
    flex-wrap: wrap;
    line-height: 1.35;
  }

  .document-letterhead {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 58px;
  }

  .document-letterhead__brand {
    gap: 18px;
  }

  .document-letterhead__brand img {
    width: 72px;
  }

  .document-letterhead__brand p {
    font-size: clamp(20px, 5.8vw, 25px);
  }

  .document-letterhead__details {
    font-size: 17px;
  }

  .document-article h1 {
    margin-top: 68px;
    font-size: clamp(44px, 12vw, 58px);
  }

  .document-effective-date {
    margin-top: 44px;
    font-size: 21px;
  }

  .document-section {
    margin-top: 30px;
  }

  .document-section h2 {
    font-size: clamp(30px, 8.6vw, 38px);
  }

  .document-section p,
  .document-section li {
    font-size: 18px;
    line-height: 1.34;
  }

  .document-table-wrap {
    margin-right: -24px;
    padding-right: 24px;
  }

  .document-table-wrap::after {
    top: 0;
    display: block;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 252, 248, 0), rgba(70, 33, 67, 0.22));
  }

  .document-table {
    min-width: 780px;
    font-size: 15px;
    line-height: 1.28;
  }

  .document-table th,
  .document-table td {
    padding: 13px 10px;
  }

  .document-download {
    margin-top: 72px;
  }

  .document-download__button {
    width: 100%;
    min-height: 48px;
    font-size: 17px;
  }

  .documents-footer__inner {
    padding: 72px 24px 42px;
  }

  .documents-footer__contact {
    display: block;
    min-height: 0;
  }

  .documents-footer h2 {
    font-size: 42px;
  }

  .documents-footer__links {
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
    font-size: 20px;
  }

  .documents-footer__social {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-top: 38px;
    padding: 0;
  }

  .documents-footer__logo {
    margin-top: 84px;
  }

  .documents-footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 18px;
    margin-top: 44px;
    font-size: 13px;
    text-align: center;
  }

  .documents-footer__bottom nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .instagram-modal {
    padding: 18px;
  }

  .instagram-modal__panel {
    padding: 34px 24px 28px;
    border-radius: 18px;
  }

  .instagram-modal h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .instagram-modal p {
    font-size: 20px;
    line-height: 1.3;
  }

  .instagram-modal__links a {
    min-height: 64px;
    gap: 14px;
    font-size: 24px;
    line-height: 1.2;
  }

  .instagram-modal__links a::after {
    min-width: 72px;
    height: 38px;
    font-size: 16px;
  }

  .research-page main h2,
  .research-page .documents-footer h2,
  .research-page .instagram-modal h2 {
    font-size: 40px !important;
    line-height: 1.2 !important;
  }

  .research-page main p,
  .research-page main li,
  .research-page main summary,
  .research-page .documents-footer__links,
  .research-page .documents-footer__bottom,
  .research-page .instagram-modal p,
  .research-page .instagram-modal__links a {
    font-size: 16px !important;
    line-height: 1.3 !important;
  }

  .research-page .research-audit p,
  .research-page .research-verification p,
  .research-page .research-materials-note p {
    font-size: 40px !important;
    line-height: 1.2 !important;
  }

  .research-page main h1 {
    font-size: 60px !important;
    line-height: 1 !important;
  }

  .research-page main h3,
  .research-page .instagram-modal__links a {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .research-page .instagram-modal p {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 370px) {
  .site-header {
    padding: 0 18px;
  }

  .hero__title {
    font-size: 52px;
  }

  .nav-panel {
    width: clamp(204px, calc(100vw - 108px), 222px);
  }

  .nav-panel__link,
  .nav-panel__join,
  .nav-panel__donate {
    font-size: 13px;
  }

  .nav-panel__link {
    width: 30%;
  }

  .nav-panel__join {
    width: 31%;
  }

  .nav-panel__donate {
    width: 39%;
  }
}
