:root {
  --ink: #0c1028;
  --ink-soft: #202746;
  --paper: #f4f3f8;
  --paper-deep: #e7e6ef;
  --white: #ffffff;
  --muted: #666e84;
  --blue: #5c65bb;
  --blue-light: #c4c9ff;
  --accent: #f0a45d;
  --line: rgba(12, 16, 40, 0.16);
  --shell: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body,
button {
  font-family: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page-shell,
.header-shell,
.hero-content,
.hero-bottom {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color 260ms ease, border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(12, 16, 40, 0.9);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 50px;
  place-items: center;
}

.brand-mark img,
.footer-monogram img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: grid;
  line-height: 1.25;
}

.brand-name strong {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-name small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.global-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-navigation {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-action {
  display: inline-flex;
  min-height: 40px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.header-action span:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 400;
  transition: transform 200ms ease;
}

.header-action--visit {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(240, 164, 93, 0.2);
}

.header-action--visit:hover,
.header-action--visit:focus-visible {
  background: #f6b06b;
  box-shadow: 0 12px 30px rgba(240, 164, 93, 0.3);
  transform: translateY(-1px);
}

.header-action--contact {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(12, 16, 40, 0.18);
}

.header-action--contact:hover,
.header-action--contact:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.header-action:hover span:last-child,
.header-action:focus-visible span:last-child {
  transform: translate(2px, -2px);
}

.menu-toggle {
  display: none;
}

.hero {
  --hero-copy-opacity: 1;
  --hero-copy-shift: 0px;
  --hero-flow-shift: 0px;
  --hero-image-shift: 0px;
  position: relative;
  display: grid;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 28, 0.88) 0%, rgba(7, 8, 28, 0.64) 40%, rgba(7, 8, 28, 0.12) 76%),
    linear-gradient(0deg, rgba(7, 8, 28, 0.82) 0%, rgba(7, 8, 28, 0.08) 46%, rgba(7, 8, 28, 0.32) 100%);
  content: "";
  pointer-events: none;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  transform: translate3d(0, var(--hero-image-shift), 0);
  will-change: transform;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1100ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 7.2s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-slide.is-active img {
  transform: scale(1.05);
  animation: hero-image-enter 2.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide--members img {
  object-position: 50% 68%;
}

.hero-slide--experiment img {
  object-position: 50% 52%;
}

.hero-slide--award img {
  object-position: 50% 18%;
}

.hero-slide--lab img {
  object-position: 50% 50%;
}

.hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 25vw 25vw;
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.flow-field {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  mix-blend-mode: screen;
  transform: translate3d(0, var(--hero-flow-shift), 0);
  animation: hero-flow-enter 1.25s 0.95s ease both;
  pointer-events: none;
  will-change: transform;
}

.hero-reveal {
  position: absolute;
  z-index: 6;
  inset: 0;
  background: linear-gradient(135deg, #0c1028, #171b42 68%, #252b60);
  animation: hero-curtain 1.18s 0.16s cubic-bezier(0.76, 0, 0.24, 1) both;
  pointer-events: none;
}

.hero-reveal::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  box-shadow: 0 0 18px rgba(196, 201, 255, 0.58);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: end;
  padding-bottom: 138px;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-shift), 0);
  will-change: opacity, transform;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-copy-enter 0.86s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content > :nth-child(1) {
  animation-delay: 0.58s;
}

.hero-content > :nth-child(2) {
  animation-delay: 0.7s;
}

.hero-content > :nth-child(3) {
  animation-delay: 0.84s;
}

.hero-kicker {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 15px;
  color: var(--blue-light);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, "Noto Sans JP", sans-serif;
  font-size: clamp(4.2rem, 8.2vw, 8.4rem);
  font-weight: 680;
  letter-spacing: -0.075em;
  line-height: 0.94;
  white-space: nowrap;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.18);
}

.hero-identity {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-identity p {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, "Noto Sans JP", sans-serif;
  font-size: 0.84rem;
  font-weight: 580;
  letter-spacing: 0.08em;
}

.hero-identity p + p {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  font-family: inherit;
  font-size: 0.67rem;
  font-weight: 660;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-identity i {
  padding-inline: 5px;
  color: var(--blue-light);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  animation: hero-bottom-enter 0.8s 0.98s ease both;
}

@keyframes hero-curtain {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-101%);
  }
}

@keyframes hero-image-enter {
  0% {
    filter: saturate(0.72) contrast(1.05);
    transform: scale(1.13);
  }

  100% {
    filter: saturate(1) contrast(1);
    transform: scale(1.05);
  }
}

@keyframes hero-copy-enter {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-flow-enter {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.78;
  }
}

@keyframes hero-bottom-enter {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease;
  place-items: center;
}

.scroll-cue:hover span:last-child {
  color: var(--ink);
  background: var(--white);
}

.carousel-status,
.carousel-progress,
.carousel-actions,
.carousel-dots,
.carousel-controls {
  display: flex;
  align-items: center;
}

.carousel-status {
  gap: 38px;
}

.carousel-progress {
  gap: 11px;
  min-width: 300px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

.carousel-progress-line {
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.carousel-caption {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  letter-spacing: 0.04em;
}

.carousel-actions {
  gap: 22px;
}

.carousel-dots {
  gap: 8px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease;
}

.carousel-dot.is-active {
  width: 27px;
  background: var(--white);
}

.carousel-controls {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(10, 12, 34, 0.3);
  backdrop-filter: blur(12px);
}

.carousel-controls button {
  display: grid;
  width: 43px;
  height: 41px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.carousel-controls button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.news-section {
  position: relative;
  overflow: hidden;
  padding: 154px 0 148px;
  background: var(--paper);
}

.news-section::before {
  position: absolute;
  top: -110px;
  right: -70px;
  color: rgba(12, 16, 40, 0.027);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12rem, 28vw, 31rem);
  line-height: 1;
  content: "N";
  pointer-events: none;
}

.research-overview,
.staff-section,
.achievements-content {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.research-overview::before,
.staff-section::before,
.achievements-content::before {
  position: absolute;
  z-index: -1;
  top: -110px;
  right: -70px;
  color: rgba(12, 16, 40, 0.027);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12rem, 28vw, 31rem);
  line-height: 1;
  pointer-events: none;
}

.research-overview::before {
  content: "R";
}

.staff-section::before {
  content: "M";
}

.achievements-content::before {
  content: "A";
}

.research-overview > .page-shell,
.staff-section > .page-shell,
.achievements-content > .page-shell {
  position: relative;
  z-index: 1;
}

.news-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(70px, 9vw, 150px);
}

.news-heading {
  align-self: start;
}

.section-index {
  margin: 0 0 34px;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.news-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.1vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.news-heading h2 em {
  color: var(--blue);
  font-weight: 400;
}

.news-heading-ja {
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.news-schedule-cta {
  display: inline-flex;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 19px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(240, 164, 93, 0.2);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.news-schedule-cta span:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
  transition: transform 200ms ease;
}

.news-schedule-cta:hover,
.news-schedule-cta:focus-visible {
  background: #f6b06b;
  box-shadow: 0 14px 34px rgba(240, 164, 93, 0.3);
  transform: translateY(-2px);
}

.news-schedule-cta:hover span:last-child,
.news-schedule-cta:focus-visible span:last-child {
  transform: translate(2px, -2px);
}

.news-content {
  min-width: 0;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  position: relative;
  display: grid;
  min-height: 146px;
  grid-template-columns: 76px 92px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  isolation: isolate;
}

.news-item::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(255, 255, 255, 0.58);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-item > * {
  position: relative;
  z-index: 1;
}

.news-item:hover::before,
.news-item:focus-visible::before {
  transform: scaleY(1);
}

.news-item time {
  display: grid;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.news-item time span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.news-item time strong {
  margin-top: 7px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
}

.news-category {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid rgba(92, 101, 187, 0.4);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-item h3 {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  font-weight: 640;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.news-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
  place-items: center;
}

.news-item:hover .news-arrow,
.news-item:focus-visible .news-arrow {
  color: var(--blue);
  border-color: var(--blue);
  transform: translate(2px, -2px);
}

.news-more {
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.news-more span:last-child {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
}

.site-footer {
  padding: 74px 0 68px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: end;
  gap: 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-monogram {
  display: grid;
  width: 65px;
  height: 60px;
  margin: 0;
  place-items: center;
}

.footer-brand > p:last-child {
  display: grid;
  margin: 0;
  line-height: 1.35;
}

.footer-brand strong {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.footer-brand span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.site-footer address,
.footer-copy {
  margin: 0;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.85;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  text-align: right;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: clamp(4rem, 10vw, 6.5rem);
  }

  .carousel-status {
    gap: 22px;
  }

  .carousel-progress {
    min-width: 0;
  }

  .carousel-caption {
    display: none;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .news-heading h2 br {
    display: none;
  }

  .news-heading-ja {
    margin-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-copy {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .header-shell,
  .hero-content,
  .hero-bottom {
    width: min(calc(100% - 36px), var(--shell));
  }

  .header-shell {
    min-height: 78px;
  }

  .brand-mark {
    width: 48px;
    height: 44px;
  }

  .brand-name strong {
    font-size: 0.76rem;
  }

  .brand-name small {
    font-size: 0.61rem;
  }

  .global-nav {
    gap: 18px;
  }

  .global-nav a {
    font-size: 0.67rem;
  }

  .global-nav a:last-child {
    display: none;
  }

  .hero {
    height: 100svh;
    min-height: 700px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 8, 28, 0.92) 0%, rgba(7, 8, 28, 0.46) 62%, rgba(7, 8, 28, 0.3) 100%);
  }

  .hero-grid {
    background-size: 50vw 50vw;
    mask-image: linear-gradient(0deg, #000, transparent 82%);
  }

  .hero-content {
    align-self: end;
    padding: 0 0 154px;
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: 0.61rem;
  }

  .hero-kicker::before {
    width: 28px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11.6vw, 4.8rem);
    letter-spacing: -0.075em;
    line-height: 0.9;
  }

  .hero-identity {
    display: grid;
    margin-top: 20px;
    gap: 10px;
  }

  .hero-identity p + p {
    padding: 0;
    border: 0;
  }

  .hero-slide--members img {
    height: 110%;
    margin-top: -10%;
    object-position: 50% 64%;
  }

  .hero-slide--award img {
    object-position: 58% 40%;
  }

  .hero-bottom {
    bottom: 23px;
  }

  .scroll-cue {
    display: none;
  }

  .carousel-status {
    width: 100%;
    justify-content: space-between;
  }

  .carousel-progress {
    gap: 8px;
    font-size: 0.59rem;
  }

  .carousel-progress-line {
    width: 24px;
  }

  .carousel-dots {
    display: none;
  }

  .carousel-controls button {
    width: 39px;
    height: 39px;
  }

  .news-section {
    padding: 104px 0 100px;
    background: var(--paper);
  }

  .news-section::before {
    top: 14px;
    right: -32px;
    font-size: 15rem;
  }

  .research-overview::before,
  .staff-section::before,
  .achievements-content::before {
    top: 14px;
    right: -32px;
    font-size: 15rem;
  }

  .news-layout {
    gap: 62px;
  }

  .section-index {
    margin-bottom: 24px;
  }

  .news-heading h2 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .news-heading h2 br {
    display: initial;
  }

  .news-item {
    min-height: 164px;
    grid-template-columns: 70px minmax(0, 1fr) 32px;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    padding: 26px 0;
  }

  .news-item time {
    grid-row: 1 / 3;
  }

  .news-category {
    grid-column: 2;
    align-self: end;
  }

  .news-item h3 {
    grid-column: 2;
    align-self: start;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .news-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .news-more span:last-child {
    display: none;
  }

  .site-footer {
    padding: 58px 0 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-copy {
    grid-column: auto;
  }
}

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

  .hero-slide,
  .hero-slide img,
  .carousel-dot,
  .news-item::before {
    transition: none;
  }

  .hero-reveal {
    display: none;
  }

  .hero-content,
  .hero-content > *,
  .hero-bottom,
  .flow-field {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-slide img,
  .hero-slide.is-active img {
    transform: none;
    animation: none;
  }
}

/* Members page */

.global-nav a.is-current::after {
  transform: scaleX(1);
}

.members-page {
  background: var(--paper);
}

.members-hero {
  position: relative;
  display: grid;
  height: 88svh;
  min-height: 760px;
  max-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.members-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #0c1028 0%, rgba(12, 16, 40, 0.97) 32%, rgba(12, 16, 40, 0.74) 49%, rgba(12, 16, 40, 0.2) 78%),
    linear-gradient(0deg, rgba(12, 16, 40, 0.64), transparent 54%);
  content: "";
  pointer-events: none;
}

.members-hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  overflow: hidden;
}

.members-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  animation: members-photo-enter 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.members-hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 25vw 25vw;
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.members-hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-top: 84px;
}

.members-hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: members-copy-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.members-hero-content > :nth-child(1) {
  animation-delay: 0.22s;
}

.members-hero-content > :nth-child(2) {
  animation-delay: 0.34s;
}

.members-hero-content > :nth-child(3) {
  animation-delay: 0.46s;
}

.members-hero-content > :nth-child(4) {
  animation-delay: 0.58s;
}

.members-hero-content > :nth-child(5) {
  animation-delay: 0.7s;
}

.members-kicker {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 14px;
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.members-kicker::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.members-hero h1 {
  margin: 0;
  font-size: clamp(5rem, 9.2vw, 9.2rem);
  font-weight: 680;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.members-title-ja {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.11em;
}

.members-intro {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 2;
}

.members-counts {
  display: flex;
  margin: 38px 0 0;
  gap: 34px;
}

.members-counts div {
  display: flex;
  min-width: 116px;
  padding-top: 12px;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.members-counts dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.members-counts dd {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
}

@keyframes members-photo-enter {
  from {
    filter: saturate(0.74) contrast(1.04);
    transform: scale(1.1);
  }

  to {
    filter: saturate(1) contrast(1);
    transform: scale(1.02);
  }
}

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

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

.people-section {
  padding: 142px 0;
}

.people-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(40px, 7vw, 110px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.people-section-heading .section-index {
  margin: 9px 0 0;
}

.people-section-heading h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1;
}

.people-section-heading > div > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

.staff-profile {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
  padding-top: 78px;
  align-items: start;
}

.staff-intro {
  position: sticky;
  top: 136px;
}

.staff-portrait {
  position: relative;
  width: min(100%, 360px);
  margin: 0 0 40px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #efeff5;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(28, 31, 79, 0.12);
}

.staff-portrait::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 4px;
  background: var(--blue);
  content: "";
}

.staff-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.staff-role {
  display: inline-flex;
  margin: 0 0 26px;
  padding: 7px 12px;
  border: 1px solid rgba(92, 101, 187, 0.4);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.staff-intro h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.staff-name-en {
  margin: 14px 0 0;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.staff-affiliation {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.9;
}

.career-panel {
  min-width: 0;
}

.staff-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  margin-bottom: 54px;
  padding: 27px 0 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.staff-contact-label {
  margin: 0;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.staff-contact-address {
  display: flex;
  margin: 12px 0 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.83rem, 1.2vw, 0.96rem);
  font-weight: 620;
  letter-spacing: -0.02em;
}

.staff-contact-alpha {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 400;
}

.staff-contact-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.7;
}

.email-copy-button {
  position: relative;
  display: inline-flex;
  min-width: 132px;
  min-height: 43px;
  padding: 0 18px 0 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(12, 16, 40, 0.26);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.email-copy-button::before,
.email-copy-button::after {
  position: absolute;
  width: 9px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 1px;
  content: "";
}

.email-copy-button::before {
  left: 22px;
  top: 14px;
}

.email-copy-button::after {
  left: 19px;
  top: 17px;
  background: var(--paper);
}

.email-copy-button:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.email-copy-button:hover::after {
  background: var(--ink);
}

.email-copy-button.is-copied {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.email-copy-button.is-copied::after {
  background: var(--blue);
}

.career-label {
  margin: 0 0 21px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.career-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.career-list > div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.68fr) minmax(0, 1.32fr);
  gap: 36px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.career-list > div.is-current::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -22px;
  width: 3px;
  background: var(--blue);
  content: "";
}

.career-list dt,
.career-list dd {
  margin: 0;
}

.career-list dt {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.73rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.career-list dd {
  font-size: 0.9rem;
  font-weight: 590;
  letter-spacing: 0.025em;
}

.career-list > div.is-current dd {
  color: var(--blue);
  font-weight: 700;
}

.students-section {
  color: var(--white);
  background: #111632;
}

.people-section-heading--light {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.people-section-heading--light .section-index {
  color: var(--blue-light);
}

.people-section-heading--light > div > p {
  color: rgba(255, 255, 255, 0.45);
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.cohort-card {
  min-width: 0;
  min-height: 390px;
  padding: 34px 32px 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.cohort-card header {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.cohort-card header > div {
  text-align: left;
}

.cohort-card header > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.59rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cohort-card h3 {
  margin: 8px 0 0;
  font-size: 1.25rem;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.member-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.member-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.member-list li span {
  display: inline-grid;
  width: 34px;
  height: 23px;
  align-self: center;
  color: var(--blue-light);
  border: 1px solid rgba(196, 201, 255, 0.28);
  border-radius: 999px;
  font-size: 0.59rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  place-items: center;
}

.member-list li strong {
  font-size: 0.94rem;
  font-weight: 570;
  letter-spacing: 0.08em;
}

.members-as-of {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-align: right;
}

.alumni-section {
  background: var(--paper);
}

.alumni-record {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.62fr) minmax(0, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.alumni-record > * {
  min-width: 0;
  margin: 0;
  padding: 38px 34px;
}

.alumni-record > * + * {
  border-left: 1px solid var(--line);
}

.alumni-year {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.alumni-year p,
.alumni-program p {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alumni-year strong {
  margin-top: 16px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.alumni-year time {
  margin-top: 22px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.alumni-program {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alumni-program h3 {
  margin: 12px 0 0;
  font-size: 1.45rem;
  font-weight: 630;
  letter-spacing: 0.07em;
}

.alumni-member-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
}

.alumni-member-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.alumni-member-list li:last-child {
  border-bottom: 0;
}

.alumni-member-list strong {
  font-size: 0.98rem;
  font-weight: 590;
  letter-spacing: 0.08em;
}

.members-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1040px) {
  .members-hero-photo {
    width: 100%;
  }

  .members-hero::after {
    background:
      linear-gradient(90deg, rgba(12, 16, 40, 0.94), rgba(12, 16, 40, 0.58) 68%, rgba(12, 16, 40, 0.22)),
      linear-gradient(0deg, rgba(12, 16, 40, 0.76), transparent 58%);
  }

  .staff-profile {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .staff-intro {
    position: static;
  }

  .staff-portrait {
    width: min(100%, 330px);
  }

  .cohort-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .members-hero {
    height: auto;
    min-height: 780px;
    max-height: none;
  }

  .members-hero::after {
    background:
      linear-gradient(0deg, rgba(12, 16, 40, 0.96) 0%, rgba(12, 16, 40, 0.7) 54%, rgba(12, 16, 40, 0.26) 100%);
  }

  .members-hero-photo img {
    object-position: 50% 46%;
  }

  .members-hero-grid {
    background-size: 50vw 50vw;
    mask-image: linear-gradient(0deg, #000, transparent 78%);
  }

  .members-hero-content {
    align-self: end;
    padding: 150px 0 76px;
  }

  .members-hero h1 {
    font-size: clamp(4.4rem, 22vw, 6.6rem);
  }

  .members-intro {
    max-width: 390px;
  }

  .members-counts {
    gap: 18px;
  }

  .members-counts div {
    min-width: 104px;
  }

  .people-section {
    padding: 98px 0;
  }

  .people-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 34px;
  }

  .people-section-heading .section-index {
    margin: 0;
  }

  .staff-profile {
    gap: 56px;
    padding-top: 56px;
  }

  .staff-contact {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .email-copy-button {
    justify-self: start;
  }

  .staff-portrait {
    width: min(82vw, 300px);
    margin-bottom: 34px;
  }

  .career-list > div {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px 0;
  }

  .career-list > div.is-current::before {
    left: -12px;
  }

  .student-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .alumni-record {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .alumni-record > * {
    padding: 30px 24px;
  }

  .alumni-record > * + * {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .alumni-program {
    min-height: 130px;
  }

  .cohort-card {
    padding: 30px 24px 34px;
  }

  .member-list {
    margin-top: 34px;
  }

  .members-as-of {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .members-hero-photo img,
  .members-hero-content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Achievements page */

.achievements-page {
  background: var(--paper);
}

.achievements-hero {
  position: relative;
  display: grid;
  min-height: 820px;
  height: 92svh;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.achievements-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #0c1028 0%, rgba(12, 16, 40, 0.97) 32%, rgba(12, 16, 40, 0.74) 49%, rgba(12, 16, 40, 0.2) 78%),
    linear-gradient(0deg, rgba(12, 16, 40, 0.64), transparent 54%);
  content: "";
  pointer-events: none;
}

.achievements-hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  overflow: hidden;
}

.achievements-hero-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 1.35s ease,
    transform 6.4s cubic-bezier(0.2, 0.68, 0.28, 1);
}

.achievements-hero-photo img.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.achievement-hero-slide--grant {
  object-position: 50% 48%;
}

.achievement-hero-slide--meeting {
  object-position: 50% 48%;
}

.achievement-hero-slide--certificates {
  object-position: 50% 50%;
}

.achievements-hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.76) 58%, transparent);
}

.achievements-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(196, 201, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.achievements-orbit::before {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--blue-light);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(196, 201, 255, 0.78);
  content: "";
}

.achievements-orbit--one {
  top: 20%;
  right: 7%;
  width: 28vw;
  height: 28vw;
  min-width: 330px;
  min-height: 330px;
}

.achievements-orbit--one::before {
  top: 8%;
  left: 27%;
}

.achievements-orbit--two {
  top: 38%;
  right: 20%;
  width: 14vw;
  height: 14vw;
  min-width: 170px;
  min-height: 170px;
}

.achievements-orbit--two::before {
  right: 2%;
  bottom: 27%;
  width: 5px;
  height: 5px;
}

.achievements-hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-top: 96px;
}

.achievements-hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: members-copy-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.achievements-hero-content > :nth-child(1) {
  animation-delay: 0.18s;
}

.achievements-hero-content > :nth-child(2) {
  animation-delay: 0.3s;
}

.achievements-hero-content > :nth-child(3) {
  animation-delay: 0.42s;
}

.achievements-hero-content > :nth-child(4) {
  animation-delay: 0.54s;
}

.achievements-hero-content > :nth-child(5) {
  animation-delay: 0.66s;
}

.achievements-kicker {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 14px;
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 730;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.achievements-kicker::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.achievements-hero h1 {
  margin: 0;
  font-size: clamp(5.4rem, 10.4vw, 9.4rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.achievements-title-ja {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 620;
  letter-spacing: 0.17em;
}

.achievement-metrics {
  display: grid;
  width: min(100%, 960px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.achievement-metrics a {
  display: grid;
  min-height: 118px;
  grid-template-columns: 1fr auto;
  padding: 18px 20px;
  align-content: space-between;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background-color 200ms ease;
}

.achievement-metrics a:hover,
.achievement-metrics a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.achievement-metrics a > span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.achievement-metrics strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 0.9;
}

.achievement-metrics small {
  align-self: end;
  color: var(--blue-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.63rem;
  font-style: italic;
}

.slot-counter {
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}

.slot-counter__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.slot-counter__number {
  position: relative;
  display: inline-flex;
  height: 1em;
  overflow: hidden;
  align-items: flex-start;
  line-height: 1;
}

.slot-counter__number::before,
.slot-counter__number::after {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 0.17em;
  content: "";
  pointer-events: none;
}

.slot-counter__number::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(10, 20, 38, 0.28), transparent);
}

.slot-counter__number::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 20, 38, 0.28), transparent);
}

.slot-counter__digit {
  display: block;
  width: 0.68em;
  height: 1em;
  overflow: hidden;
}

.slot-counter__strip {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  will-change: transform;
}

.slot-counter__strip > span {
  display: block;
  flex: 0 0 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
}

.slot-counter.is-rolling .slot-counter__strip {
  transform: translateY(var(--slot-stop));
  transition: transform var(--slot-duration) cubic-bezier(0.1, 0.72, 0.14, 1)
    var(--slot-delay);
}

.slot-counter.is-settled .slot-counter__strip {
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .slot-counter.is-rolling .slot-counter__strip {
    transition: none;
  }
}

.achievements-content {
  padding: 142px 0 160px;
  background: var(--paper);
}

.achievement-record-heading {
  display: flex;
  padding-bottom: 58px;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  border-bottom: 1px solid var(--line);
}

.achievement-record-heading .section-index {
  margin: 0 0 18px;
}

.achievement-record-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1;
}

.achievement-record-heading > div:first-child > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.achievement-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.achievement-actions button {
  min-width: 108px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(12, 16, 40, 0.24);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.achievement-actions button:hover:not(:disabled) {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.achievement-actions button:disabled {
  cursor: default;
  opacity: 0.34;
}

.achievement-groups {
  border-bottom: 1px solid var(--line);
}

.achievement-group {
  scroll-margin-top: 110px;
  border-top: 1px solid var(--line);
}

.achievement-group:first-child {
  border-top: 0;
}

.achievement-group > summary {
  display: grid;
  min-height: 154px;
  grid-template-columns: 76px minmax(0, 1fr) 132px 42px;
  gap: 28px;
  padding: 32px 28px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  transition: color 230ms ease, background-color 230ms ease;
}

.achievement-group > summary::-webkit-details-marker {
  display: none;
}

.achievement-group > summary:hover {
  background: rgba(255, 255, 255, 0.48);
}

.achievement-group[open] > summary {
  color: var(--white);
  background: #111632;
}

.achievement-group-number {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.achievement-group[open] .achievement-group-number {
  color: var(--blue-light);
}

.achievement-group-heading {
  display: grid;
  gap: 8px;
}

.achievement-group-heading small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.achievement-group[open] .achievement-group-heading small {
  color: rgba(255, 255, 255, 0.46);
}

.achievement-group-heading strong {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 620;
  letter-spacing: -0.025em;
}

.achievement-group-count {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 9px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.achievement-group-count small {
  color: var(--muted);
  font-size: 0.61rem;
  font-style: italic;
}

.achievement-group[open] .achievement-group-count {
  color: var(--blue-light);
}

.achievement-group[open] .achievement-group-count small {
  color: rgba(255, 255, 255, 0.42);
}

.achievement-group-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.achievement-group-toggle::before,
.achievement-group-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.achievement-group-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.achievement-group[open] .achievement-group-toggle {
  border-color: rgba(255, 255, 255, 0.28);
}

.achievement-group[open] .achievement-group-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.achievement-panel {
  padding: 76px clamp(28px, 7vw, 104px) 96px;
  background: rgba(255, 255, 255, 0.46);
  animation: achievement-panel-enter 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes achievement-panel-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.achievement-panel-lead {
  display: grid;
  max-width: 760px;
  margin-bottom: 58px;
  gap: 10px;
}

.achievement-panel-lead--split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 48px;
}

.achievement-panel-lead p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.8;
}

.achievement-panel-lead > p:first-child,
.achievement-panel-lead--split > div > p:first-child {
  color: var(--blue);
  font-size: 0.61rem;
  font-weight: 730;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.achievement-panel-lead--split > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.achievement-panel-lead h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 630;
  letter-spacing: -0.04em;
}

.record-external-link {
  display: grid;
  min-height: 92px;
  padding: 20px 22px;
  align-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 620;
  transition: background-color 180ms ease, transform 180ms ease;
}

.record-external-link:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.record-external-link span {
  color: var(--blue-light);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.achievement-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  counter-reset: achievement-entry;
  list-style: none;
}

.achievement-list li {
  position: relative;
  display: block;
  padding: 24px 0 24px 74px;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.9;
  overflow-wrap: break-word;
  counter-increment: achievement-entry;
}

.achievement-list li::before {
  position: absolute;
  top: 26px;
  left: 0;
  width: 44px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.69rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.9;
  content: counter(achievement-entry, decimal-leading-zero);
}

.achievement-list li em {
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.achievement-list li > strong,
.achievement-list li em + strong {
  font-variant-numeric: tabular-nums;
}

.achievement-list a {
  display: inline;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 680;
  text-underline-offset: 3px;
}

.achievement-list a:hover {
  text-decoration-thickness: 2px;
}

.entry-status {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  color: var(--blue);
  border: 1px solid rgba(92, 101, 187, 0.34);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-record {
  margin-top: 64px;
}

.award-record:first-of-type {
  margin-top: 0;
}

.award-record > header {
  display: flex;
  padding: 0 0 25px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.award-record > header p {
  margin: 0;
  color: var(--blue);
  font-size: 0.59rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.award-record > header h4 {
  margin: 8px 0 0;
  font-size: 1.8rem;
  font-weight: 620;
}

.award-record > header > strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 0.86;
}

.achievements-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1040px) {
  .achievements-hero-photo {
    width: 100%;
  }

  .achievements-hero::after {
    background:
      linear-gradient(90deg, rgba(12, 16, 40, 0.94), rgba(12, 16, 40, 0.58) 68%, rgba(12, 16, 40, 0.22)),
      linear-gradient(0deg, rgba(12, 16, 40, 0.76), transparent 58%);
  }

  .achievement-metrics {
    width: 100%;
  }

  .achievement-group > summary {
    grid-template-columns: 58px minmax(0, 1fr) 116px 38px;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .global-nav {
    gap: 14px;
  }

  .global-nav a:first-child,
  .global-nav a:last-child {
    display: none;
  }

  .global-nav a {
    font-size: 0.62rem;
  }

  .achievements-hero {
    height: auto;
    min-height: 850px;
    max-height: none;
  }

  .achievements-hero::after {
    background:
      linear-gradient(0deg, rgba(12, 16, 40, 0.97) 0%, rgba(12, 16, 40, 0.78) 58%, rgba(12, 16, 40, 0.3) 100%);
  }

  .achievement-hero-slide--grant {
    object-position: 54% 50%;
  }

  .achievement-hero-slide--meeting {
    object-position: 50% 45%;
  }

  .achievement-hero-slide--certificates {
    object-position: 50% 50%;
  }

  .achievements-hero-grid {
    background-size: 25vw 25vw;
    mask-image: linear-gradient(0deg, #000, transparent 84%);
  }

  .achievements-orbit--one {
    top: 18%;
    right: -48%;
    min-width: 360px;
    min-height: 360px;
  }

  .achievements-orbit--two {
    top: 28%;
    right: -6%;
    min-width: 150px;
    min-height: 150px;
  }

  .achievements-hero-content {
    padding: 156px 0 82px;
  }

  .achievements-hero h1 {
    font-size: clamp(2.7rem, 11.6vw, 5.4rem);
    letter-spacing: -0.07em;
  }

  .achievements-title-ja {
    margin-top: 22px;
  }

  .achievement-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
  }

  .achievement-metrics a {
    min-height: 102px;
    padding: 15px 16px;
  }

  .achievement-metrics strong {
    font-size: 2.1rem;
  }

  .achievements-content {
    padding: 98px 0 112px;
  }

  .achievement-record-heading {
    display: grid;
    padding-bottom: 42px;
    gap: 32px;
  }

  .achievement-actions {
    width: 100%;
  }

  .achievement-actions button {
    flex: 1;
  }

  .achievement-group {
    scroll-margin-top: 88px;
  }

  .achievement-group > summary {
    min-height: 126px;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 15px;
    padding: 24px 5px;
  }

  .achievement-group-number {
    font-size: 0.72rem;
  }

  .achievement-group-heading {
    gap: 6px;
  }

  .achievement-group-heading strong {
    font-size: 1.32rem;
  }

  .achievement-group-count {
    display: none;
  }

  .achievement-group-toggle {
    width: 34px;
    height: 34px;
  }

  .achievement-panel {
    padding: 50px 20px 68px;
  }

  .achievement-panel-lead,
  .achievement-panel-lead--split {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
    gap: 28px;
  }

  .record-external-link {
    min-height: 84px;
  }

  .achievement-list li {
    padding: 21px 0 21px 46px;
    font-size: 0.76rem;
    line-height: 1.85;
  }

  .achievement-list li::before {
    top: 23px;
    width: 28px;
  }

  .award-record {
    margin-top: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .achievements-hero-content > *,
  .achievement-panel {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .achievements-hero-photo img {
    transform: none;
    transition: none;
  }
}

/* Research page */

.research-page {
  background: var(--paper);
}

.research-hero {
  position: relative;
  display: grid;
  height: 90svh;
  min-height: 790px;
  max-height: 960px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(92, 101, 187, 0.3), transparent 31%),
    linear-gradient(135deg, #0c1028 0%, #171b3e 58%, #0c1028 100%);
  isolation: isolate;
}

.research-hero::after {
  position: absolute;
  z-index: 1;
  right: -14vw;
  bottom: -34vw;
  width: 74vw;
  height: 74vw;
  border: 1px solid rgba(196, 201, 255, 0.15);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.research-flow-field {
  opacity: 0.54;
}

.research-hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.68) 62%, transparent);
  pointer-events: none;
}

.research-hero-sphere {
  position: absolute;
  z-index: 1;
  top: 19%;
  right: 10%;
  width: clamp(230px, 27vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(196, 201, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 15%),
    radial-gradient(circle at 50% 50%, rgba(92, 101, 187, 0.18), transparent 64%);
  box-shadow: inset 0 0 90px rgba(196, 201, 255, 0.06), 0 0 100px rgba(92, 101, 187, 0.12);
  pointer-events: none;
}

.research-hero-sphere::before,
.research-hero-sphere::after {
  position: absolute;
  border: 1px solid rgba(196, 201, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.research-hero-sphere::before {
  inset: 17%;
}

.research-hero-sphere::after {
  inset: 34%;
  background: rgba(196, 201, 255, 0.06);
}

@property --orbit-progress {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.research-hero-visual {
  --orbit-radius: 210px;
  --orbit-axis: 20deg;
  --orbit-z-center: -120px;
  position: absolute;
  z-index: 2;
  top: 9%;
  right: 2.5%;
  width: clamp(520px, 48vw, 760px);
  height: clamp(530px, 51vw, 780px);
  opacity: 1;
  perspective: 1200px;
  transform: none;
  transform-style: preserve-3d;
  transform-origin: 70% 50%;
  pointer-events: none;
}

.research-hero-visual::before {
  position: absolute;
  inset: 14% 8% 13% 6%;
  background: radial-gradient(circle, rgba(196, 201, 255, 0.21), transparent 68%);
  filter: blur(28px);
  content: "";
}

.research-hero-card {
  position: absolute;
  overflow: hidden;
  opacity: 1;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(196, 201, 255, 0.34);
  box-shadow:
    0 30px 80px rgba(2, 5, 20, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.research-hero-card::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(125deg, rgba(12, 16, 40, 0.1), transparent 48%, rgba(12, 16, 40, 0.24));
  content: "";
}

.research-hero-card > img,
.research-hero-property-pair img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  filter: saturate(0.82) brightness(0.9) contrast(1.02);
}

.research-hero-card--reaction {
  top: 1%;
  right: 1%;
  width: 64%;
  aspect-ratio: 1333 / 850;
  transform: none;
}

.research-hero-card--flow {
  top: 36%;
  left: 0;
  width: 72%;
  aspect-ratio: 1884 / 836;
  transform: none;
}

.research-hero-card--property {
  right: 3%;
  bottom: 4%;
  width: 57%;
  aspect-ratio: 2.08 / 1;
  transform: none;
}

.research-hero-property-pair {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
}

.research-hero-property-pair img + img {
  border-left: 1px solid rgba(28, 31, 79, 0.12);
}

@supports (width: calc(sin(0deg) * 1px)) {
  @media (min-width: 721px) {
    .research-hero-card {
      --orbit-angle: calc(var(--orbit-progress) + var(--orbit-phase));
      --orbit-sin: sin(var(--orbit-angle));
      --orbit-cos: cos(var(--orbit-angle));
      top: 50%;
      right: auto;
      bottom: auto;
      left: 50%;
      opacity: clamp(0.04, calc(0.49 + 0.45 * var(--orbit-sin)), 0.94);
      filter:
        brightness(clamp(0.52, calc(0.76 + 0.24 * var(--orbit-sin)), 1))
        saturate(clamp(0.66, calc(0.82 + 0.16 * var(--orbit-sin)), 0.98));
      transform: translate(-50%, -50%) translate3d(
        calc(0px - var(--orbit-radius) * var(--orbit-cos) * sin(var(--orbit-axis))),
        calc(0px - var(--orbit-radius) * var(--orbit-cos) * cos(var(--orbit-axis))),
        calc(var(--orbit-z-center) + var(--orbit-radius) * var(--orbit-sin))
      );
      will-change: transform, opacity, filter;
      animation: research-hero-card-orbit 18s linear infinite;
    }

    .research-hero-card--reaction {
      --orbit-phase: 90deg;
      width: 66%;
    }

    .research-hero-card--flow {
      --orbit-phase: -30deg;
      width: 74%;
    }

    .research-hero-card--property {
      --orbit-phase: 210deg;
      width: 64%;
    }
  }
}

@keyframes research-hero-card-orbit {
  to {
    --orbit-progress: 360deg;
  }
}

.research-hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-top: 92px;
}

.research-hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: members-copy-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.research-hero-content > :nth-child(1) {
  animation-delay: 0.16s;
}

.research-hero-content > :nth-child(2) {
  animation-delay: 0.28s;
}

.research-hero-content > :nth-child(3) {
  animation-delay: 0.4s;
}

.research-hero-content > :nth-child(4) {
  animation-delay: 0.52s;
}

.research-hero-content > :nth-child(5) {
  animation-delay: 0.64s;
}

.research-kicker {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 14px;
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 730;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.research-kicker::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.research-hero h1 {
  margin: 0;
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.research-title-ja {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 630;
  letter-spacing: 0.18em;
}

.research-hero-copy {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 2;
}

.research-axis-nav {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(100%, 900px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  background: rgba(12, 16, 40, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.research-axis-nav a {
  display: grid;
  min-height: 116px;
  padding: 17px 20px;
  align-content: space-between;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.research-axis-nav a:hover,
.research-axis-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.research-axis-nav span {
  color: var(--blue-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
}

.research-axis-nav strong {
  font-size: 0.92rem;
  font-weight: 620;
  letter-spacing: 0.07em;
}

.research-axis-nav small {
  color: rgba(255, 255, 255, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  font-style: italic;
}

.research-overview {
  padding: 148px 0 156px;
}

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

.research-overview-grid .section-index {
  margin: 0 0 28px;
}

.research-overview-grid h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1.06;
}

.research-overview-grid > div > p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 2.1;
}

.research-overview-grid .research-overview-lead {
  margin-top: 48px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 540;
  line-height: 2;
}

.research-theme {
  scroll-margin-top: 92px;
  padding: 150px 0;
  border-top: 1px solid var(--line);
}

.research-theme--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 76%, rgba(92, 101, 187, 0.18), transparent 30%),
    #111632;
  border-top: 0;
}

.research-theme-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(64px, 8vw, 132px);
  align-items: center;
}

.research-theme-grid--reverse {
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
}

.research-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(28, 31, 79, 0.16);
}

.research-figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 16, 40, 0.48), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 25% 25%, 25% 25%;
  content: "";
  pointer-events: none;
}

.research-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.research-figure:hover img {
  transform: scale(1.035);
}

.research-figure figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.6rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.research-figure figcaption span {
  color: var(--blue-light);
  font-size: 0.78rem;
  font-style: normal;
}

.research-figure--dark {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.research-figure--graphical-abstract {
  isolation: isolate;
  aspect-ratio: auto;
  padding: clamp(10px, 1.2vw, 16px) clamp(10px, 1.2vw, 16px) 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 201, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(92, 101, 187, 0.2), rgba(8, 14, 34, 0.96) 58%);
  border-color: rgba(196, 201, 255, 0.28);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(196, 201, 255, 0.06),
    0 0 48px rgba(92, 101, 187, 0.13);
}

.research-figure--graphical-abstract::after {
  z-index: 2;
  background: linear-gradient(
    112deg,
    transparent 22%,
    rgba(196, 201, 255, 0.03) 38%,
    rgba(255, 255, 255, 0.1) 48%,
    rgba(196, 201, 255, 0.03) 58%,
    transparent 74%
  );
  background-position: 160% 0;
  background-size: 240% 100%;
  animation: research-abstract-sheen 9s ease-in-out infinite;
}

.research-figure--graphical-abstract img {
  position: relative;
  z-index: 1;
  height: auto;
  aspect-ratio: 1884 / 836;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(28, 31, 79, 0.08);
  box-shadow: 0 18px 48px rgba(4, 8, 24, 0.2);
  transform: none;
}

.research-figure--graphical-abstract:hover img {
  transform: none;
}

.research-figure--graphical-abstract figcaption {
  right: clamp(14px, 1.7vw, 22px);
  bottom: 17px;
  left: clamp(14px, 1.7vw, 22px);
}

.research-figure--reaction-abstract {
  background:
    radial-gradient(circle at 10% 0%, rgba(92, 101, 187, 0.16), transparent 35%),
    linear-gradient(145deg, #f8f8fd, #e9ecf8);
  border-color: rgba(28, 31, 79, 0.16);
  box-shadow:
    0 30px 90px rgba(28, 31, 79, 0.17),
    0 0 0 1px rgba(92, 101, 187, 0.05);
}

.research-figure--reaction-abstract img {
  aspect-ratio: 1333 / 850;
  box-shadow: 0 18px 48px rgba(28, 31, 79, 0.16);
}

.research-figure--reaction-abstract figcaption {
  color: rgba(28, 31, 79, 0.58);
}

.research-figure--reaction-abstract figcaption span {
  color: var(--blue);
}

@keyframes research-abstract-sheen {
  0%, 62% {
    background-position: 160% 0;
  }

  82%, 100% {
    background-position: -70% 0;
  }
}

.research-theme-grid--property {
  grid-template-columns: minmax(620px, 1.22fr) minmax(340px, 0.78fr);
  gap: clamp(48px, 6vw, 92px);
}

.research-comparison {
  position: relative;
  margin: 0;
  padding: clamp(14px, 1.4vw, 20px) clamp(14px, 1.4vw, 20px) 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(92, 101, 187, 0.13), transparent 34%),
    linear-gradient(145deg, #f8f8fd, #eef0fa);
  border: 1px solid rgba(28, 31, 79, 0.14);
  box-shadow: 0 30px 90px rgba(28, 31, 79, 0.15);
}

.research-comparison::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-light), transparent);
  content: "";
}

.research-comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.research-comparison-panel {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28, 31, 79, 0.11);
  box-shadow: 0 16px 38px rgba(28, 31, 79, 0.09);
}

.research-comparison-panel--pinn {
  border-color: rgba(92, 101, 187, 0.48);
  box-shadow:
    0 18px 44px rgba(28, 31, 79, 0.13),
    0 0 0 2px rgba(92, 101, 187, 0.07);
}

.research-comparison-header {
  display: flex;
  min-height: 58px;
  padding: 11px 13px 10px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid rgba(28, 31, 79, 0.09);
}

.research-comparison-header strong {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.045em;
}

.research-comparison-header span {
  color: var(--slate);
  font-size: 0.55rem;
  font-weight: 680;
  letter-spacing: 0.08em;
}

.research-comparison-panel--pinn .research-comparison-header {
  background: linear-gradient(90deg, rgba(92, 101, 187, 0.08), rgba(92, 101, 187, 0.01));
}

.research-comparison-panel--pinn .research-comparison-header span {
  color: var(--blue);
}

.research-comparison-image {
  display: grid;
  aspect-ratio: 673 / 603;
  place-items: center;
  background: #fff;
}

.research-comparison-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.research-comparison-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 500;
}

.research-comparison figcaption {
  position: absolute;
  right: clamp(14px, 1.7vw, 22px);
  bottom: 17px;
  left: clamp(14px, 1.7vw, 22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(28, 31, 79, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.6rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.research-comparison figcaption span {
  color: var(--blue);
  font-size: 0.78rem;
  font-style: normal;
}

@media (max-width: 720px) {
  .research-comparison {
    padding: 11px 11px 47px;
  }

  .research-comparison-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .research-comparison-arrow {
    width: 100%;
    height: 22px;
    transform: rotate(90deg);
  }

  .research-comparison-header {
    min-height: 52px;
  }

  .research-comparison figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 0.51rem;
  }
}

.research-theme-label {
  margin: 0 0 25px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 740;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.research-theme--dark .research-theme-label {
  color: var(--blue-light);
}

.research-theme-content h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.4vw, 4.5rem);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 1.17;
}

.research-theme-lead {
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 560;
  line-height: 1.9;
}

.research-theme--dark .research-theme-lead {
  color: rgba(255, 255, 255, 0.82);
}

.research-theme-body {
  margin-top: 34px;
}

.research-theme-body p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 2;
}

.research-theme--dark .research-theme-body p {
  color: rgba(255, 255, 255, 0.58);
}

.research-keywords {
  display: flex;
  margin: 35px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.research-keywords li {
  padding: 6px 11px;
  color: var(--blue);
  border: 1px solid rgba(92, 101, 187, 0.34);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 690;
  letter-spacing: 0.06em;
}

.research-theme--dark .research-keywords li {
  color: var(--blue-light);
  border-color: rgba(196, 201, 255, 0.25);
}

.research-statement {
  margin: 42px 0 0;
  padding: 20px 0 0 22px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  font-size: 0.82rem;
  font-weight: 580;
  line-height: 1.8;
}

.research-statement span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-theme--dark .research-statement {
  color: rgba(255, 255, 255, 0.8);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.research-theme--dark .research-statement span {
  color: rgba(255, 255, 255, 0.4);
}

.research-loop {
  padding: 148px 0 156px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--ink);
  background-size: 25vw 100%;
}

.research-loop-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.research-loop-heading .section-index {
  margin: 0 0 28px;
  color: var(--blue-light);
}

.research-loop-heading h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1.06;
}

.research-loop-heading > p:last-child {
  max-width: 760px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 2;
}

.research-loop-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 76px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.research-loop-steps li {
  display: grid;
  min-height: 180px;
  padding: 23px 24px;
  align-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.research-loop-steps span {
  color: var(--blue-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
}

.research-loop-steps strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 400;
}

.research-loop-steps small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.research-achievements-link {
  display: grid;
  width: min(100%, 540px);
  min-height: 102px;
  grid-template-columns: 1fr auto;
  margin: 58px 0 0 auto;
  padding: 21px 25px;
  align-content: center;
  gap: 7px 20px;
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 620;
  transition: background-color 180ms ease, transform 180ms ease;
}

.research-achievements-link:hover {
  background: #6b74c8;
  transform: translateY(-2px);
}

.research-achievements-link span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-achievements-link strong {
  grid-row: 2;
  grid-column: 2;
  font-size: 1rem;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.research-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .global-nav {
    gap: 22px;
  }

  .global-nav a {
    font-size: 0.69rem;
  }

  .research-hero-visual {
    --orbit-radius: 168px;
    --orbit-z-center: -92px;
    right: -3%;
    opacity: 1;
    perspective: 1000px;
  }

  .research-theme-grid,
  .research-theme-grid--reverse {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .research-theme-grid--reverse .research-figure {
    order: -1;
  }

  .research-theme-content {
    max-width: 760px;
  }

  .research-loop-heading {
    grid-template-columns: 1fr;
  }

  .research-loop-heading > p:last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .brand-name {
    display: none;
  }

  .global-nav {
    gap: 11px;
  }

  .global-nav a {
    font-size: 0.59rem;
  }

  .research-hero {
    height: auto;
    min-height: 910px;
    max-height: none;
  }

  .research-hero-grid {
    background-size: 25vw 25vw;
    mask-image: linear-gradient(0deg, #000, transparent 86%);
  }

  .research-hero-sphere {
    top: 22%;
    right: -45%;
    width: 360px;
  }

  .research-hero-visual {
    top: 23%;
    right: -45%;
    width: 690px;
    height: 610px;
    opacity: 0.43;
    perspective: none;
    transform: none;
  }

  .research-hero-card {
    opacity: 1;
    filter: none;
    will-change: auto;
    animation: none;
  }

  .research-hero-card--reaction {
    top: 1%;
    right: 1%;
    bottom: auto;
    left: auto;
    width: 64%;
    transform: none;
  }

  .research-hero-card--flow {
    top: 36%;
    right: auto;
    bottom: auto;
    left: 0;
    width: 72%;
    transform: none;
  }

  .research-hero-card--property {
    top: auto;
    right: 3%;
    bottom: 4%;
    left: auto;
    width: 57%;
    transform: none;
  }

  .research-hero-content {
    padding: 150px 0 76px;
  }

  .research-hero h1 {
    font-size: clamp(3.8rem, 18vw, 6.4rem);
  }

  .research-title-ja {
    margin-top: 22px;
  }

  .research-axis-nav {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .research-axis-nav a {
    min-height: 79px;
    grid-template-columns: 31px 1fr auto;
    padding: 14px 16px;
    align-items: center;
  }

  .research-overview {
    padding: 98px 0 106px;
  }

  .research-overview-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .research-overview-grid .section-index {
    margin: 0 0 24px;
  }

  .research-overview-grid .research-overview-lead {
    margin-top: 38px;
  }

  .research-theme {
    scroll-margin-top: 78px;
    padding: 96px 0 104px;
  }

  .research-theme-grid,
  .research-theme-grid--reverse {
    gap: 52px;
  }

  .research-figure figcaption {
    right: 15px;
    bottom: 12px;
    left: 15px;
    font-size: 0.52rem;
  }

  .research-theme-content h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.6rem);
  }

  .research-theme-lead {
    margin-top: 28px;
  }

  .research-loop {
    padding: 98px 0 108px;
    background-size: 50vw 100%;
  }

  .research-loop-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .research-loop-heading > p:last-child {
    grid-column: auto;
  }

  .research-loop-steps {
    grid-template-columns: 1fr 1fr;
    margin-top: 52px;
  }

  .research-loop-steps li {
    min-height: 145px;
    padding: 19px 18px;
  }

  .research-achievements-link {
    margin-top: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .research-hero-content > *,
  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .research-hero-card {
    opacity: 1;
    filter: none;
    animation: none;
  }

  .research-hero-visual {
    perspective: none;
    transform: none;
  }

  .research-hero-card--reaction {
    top: 1%;
    right: 1%;
    bottom: auto;
    left: auto;
    width: 64%;
    transform: none;
  }

  .research-hero-card--flow {
    top: 36%;
    right: auto;
    bottom: auto;
    left: 0;
    width: 72%;
    transform: none;
  }

  .research-hero-card--property {
    top: auto;
    right: 3%;
    bottom: 4%;
    left: auto;
    width: 57%;
    transform: none;
  }

  .research-figure img {
    transform: none;
    transition: none;
  }

  .research-figure--graphical-abstract::after {
    animation: none;
  }
}

/* News article */

.news-article-page {
  background: var(--paper);
}

.news-article-hero {
  --hero-flow-shift: 0px;
  position: relative;
  display: grid;
  height: 82svh;
  min-height: 720px;
  max-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 28%, rgba(92, 101, 187, 0.34), transparent 30%),
    linear-gradient(135deg, #0c1028 0%, #151a3d 58%, #0c1028 100%);
  isolation: isolate;
}

.news-article-hero--graphic::after {
  position: absolute;
  z-index: 1;
  right: -22vw;
  bottom: -46vw;
  width: 88vw;
  height: 88vw;
  border: 1px solid rgba(196, 201, 255, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(92, 101, 187, 0.05);
  content: "";
  pointer-events: none;
}

.news-article-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.news-article-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-hero--image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 40, 0.96), rgba(12, 16, 40, 0.62) 62%, rgba(12, 16, 40, 0.2)),
    linear-gradient(0deg, rgba(12, 16, 40, 0.74), transparent 58%);
  content: "";
  pointer-events: none;
}

.news-article-hero--image .news-article-flow,
.news-article-hero--image .news-article-grid,
.news-article-hero--image .news-article-light {
  display: none;
}

.news-article-hero--figure .news-article-hero-media {
  inset: 14% 4% 10% 51%;
  padding: clamp(18px, 2.2vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(4, 8, 28, 0.38);
}

.news-article-hero--figure .news-article-hero-media img {
  object-fit: contain;
}

.news-article-hero--figure::after {
  background: linear-gradient(90deg, rgba(12, 16, 40, 0.98) 0%, rgba(12, 16, 40, 0.9) 43%, rgba(12, 16, 40, 0.1) 72%);
}

.news-article-hero--figure h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.news-article-hero--award .news-article-hero-media img {
  object-position: center 42%;
}

.news-article-hero--seminar .news-article-hero-media img {
  object-position: center 43%;
}

.news-article-flow {
  opacity: 0.58;
}

.news-article-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.72) 58%, transparent);
  pointer-events: none;
}

.news-article-light {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.news-article-light span {
  position: absolute;
  right: -12vw;
  display: block;
  width: 68vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 201, 255, 0.65), transparent 88%);
  box-shadow: 0 0 18px rgba(196, 201, 255, 0.36);
  transform: rotate(-18deg);
  transform-origin: right center;
  animation: news-light-drift 8s ease-in-out infinite alternate;
}

.news-article-light span:nth-child(1) {
  top: 24%;
}

.news-article-light span:nth-child(2) {
  top: 49%;
  right: -2vw;
  width: 50vw;
  opacity: 0.62;
  animation-delay: -2.8s;
}

.news-article-light span:nth-child(3) {
  top: 68%;
  right: 9vw;
  width: 34vw;
  opacity: 0.42;
  animation-delay: -5.1s;
}

@keyframes news-light-drift {
  0% {
    translate: 0 -8px;
  }

  100% {
    translate: -22px 12px;
  }
}

.news-article-hero-content {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 140px 0 112px;
}

.news-article-hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: members-copy-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.news-article-hero-content > :nth-child(1) {
  animation-delay: 0.2s;
}

.news-article-hero-content > :nth-child(2) {
  animation-delay: 0.32s;
}

.news-article-hero-content > :nth-child(3) {
  animation-delay: 0.44s;
}

.news-article-hero-content > :nth-child(4) {
  animation-delay: 0.56s;
}

.news-article-kicker {
  display: flex;
  margin: 0 0 26px;
  align-items: center;
  gap: 14px;
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-article-kicker::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.news-article-date {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.news-article-date span {
  padding: 3px 9px;
  color: var(--blue-light);
  border: 1px solid rgba(196, 201, 255, 0.32);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.58rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

.news-article-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(3.6rem, 8.2vw, 7.6rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.news-article-title-en {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.news-article-content {
  padding: 132px 0 148px;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(12, 16, 40, 0.045) 50%, transparent calc(50% + 0.5px)),
    var(--paper);
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(70px, 10vw, 164px);
}

.news-article-aside {
  align-self: start;
  border-top: 1px solid var(--line);
}

.news-article-aside > p {
  margin: 0;
  padding: 20px 0;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.news-article-aside dl {
  margin: 0;
}

.news-article-aside dl div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.news-article-aside dt {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-article-aside dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
}

.news-article-copy {
  width: min(100%, 820px);
}

.news-article-copy > p {
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  letter-spacing: 0.025em;
  line-height: 2.15;
}

.news-article-copy .news-article-lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.65;
}

.news-article-details {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.news-article-details h2 {
  margin: 0;
  padding: 20px 0;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-article-details dl {
  margin: 0;
}

.news-article-details dl > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1.66fr);
  padding: 22px 0;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.news-article-details dt {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.news-article-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.85;
}

.news-article-details a {
  color: var(--blue);
  text-underline-offset: 0.2em;
}

.news-article-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 62px;
  gap: 10px;
}

.news-article-links a {
  display: flex;
  min-height: 78px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}

.news-article-links a:hover,
.news-article-links a:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

.news-article-back {
  display: inline-flex;
  margin-top: 72px;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.news-article-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .news-article-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .news-article-aside {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .news-article-aside > p {
    border-right: 1px solid var(--line);
  }

  .news-article-aside dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-article-aside dl div {
    padding: 18px 22px;
  }
}

@media (max-width: 720px) {
  .news-article-hero {
    height: auto;
    min-height: 700px;
    max-height: none;
  }

  .news-article-hero--graphic::after {
    right: -75vw;
    bottom: -36vw;
    width: 150vw;
    height: 150vw;
  }

  .news-article-hero--figure .news-article-hero-media {
    inset: 88px 18px auto;
    height: 42%;
    padding: 14px;
    border-radius: 14px;
  }

  .news-article-hero--figure::after {
    background: linear-gradient(0deg, rgba(12, 16, 40, 0.99) 0%, rgba(12, 16, 40, 0.94) 45%, rgba(12, 16, 40, 0.12) 84%);
  }

  .news-article-hero--figure h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.7rem);
  }

  .news-article-hero--seminar .news-article-hero-media img {
    object-position: center 40%;
  }

  .news-article-grid {
    background-size: 25vw 25vw;
    mask-image: linear-gradient(0deg, #000, transparent 86%);
  }

  .news-article-light span {
    right: -42vw;
    width: 120vw;
  }

  .news-article-hero-content {
    padding: 170px 0 82px;
  }

  .news-article-hero h1 {
    font-size: clamp(2.55rem, 13.5vw, 4.5rem);
    letter-spacing: -0.055em;
    line-height: 1.08;
  }

  .news-article-content {
    padding: 94px 0 108px;
  }

  .news-article-layout {
    gap: 58px;
  }

  .news-article-aside {
    grid-template-columns: 1fr;
  }

  .news-article-aside > p {
    border-right: 0;
  }

  .news-article-aside dl div {
    padding-inline: 0;
  }

  .news-article-copy > p {
    font-size: 0.91rem;
  }

  .news-article-details dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-article-links {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .news-article-back {
    margin-top: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-article-light span,
  .news-article-hero-content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .news-article-links a {
    transition: none;
  }
}

/* Conference schedule */

.news-item[hidden],
.conference-event[hidden],
.conference-timeline-event[hidden],
.conference-empty[hidden] {
  display: none !important;
}

.conference-schedule-page {
  background: var(--paper);
}

.conference-schedule-hero h1 {
  max-width: 1160px;
  font-size: clamp(3.3rem, 7.5vw, 7rem);
}

.conference-schedule-content {
  padding: 132px 0 148px;
  background: var(--paper);
}

.conference-event {
  margin-top: 0;
}

.conference-event-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 38px;
  align-items: end;
  gap: 42px;
  border-bottom: 1px solid var(--line);
}

.conference-event-status {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conference-event-status span {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(240, 164, 93, 0.54);
}

.conference-event-header h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 4.7rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.conference-official-link {
  display: inline-flex;
  min-width: 180px;
  min-height: 50px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.conference-official-link:hover,
.conference-official-link:focus-visible {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.conference-event-overview {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.9fr;
  margin: 0;
  color: var(--white);
  background: var(--ink);
}

.conference-event-overview > div {
  min-height: 118px;
  padding: 25px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.conference-event-overview > div:last-child {
  border-right: 0;
}

.conference-event-overview dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.57rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conference-event-overview dd {
  margin: 9px 0 0;
  font-size: 0.88rem;
  font-weight: 580;
  letter-spacing: 0.035em;
}

.conference-event-overview dd strong {
  margin-right: 7px;
  color: var(--blue-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.conference-days {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
  gap: 18px;
}

.conference-day {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.conference-day > header {
  display: flex;
  min-height: 96px;
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--blue);
}

.conference-day > header > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.6rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conference-day > header h3 {
  display: flex;
  margin: 0;
  align-items: baseline;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.conference-day > header h3 span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-style: italic;
}

.conference-presentation {
  position: relative;
  padding: 30px 28px 32px;
  border-bottom: 1px solid var(--line);
}

.conference-presentation:last-child {
  border-bottom: 0;
}

.presentation-schedule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.presentation-schedule time {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-variant-numeric: tabular-nums;
}

.presentation-schedule a,
.presentation-session a {
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.presentation-schedule a:hover,
.presentation-session a:hover {
  color: var(--blue);
}

.presentation-session {
  margin: 18px 0 0;
}

.conference-presentation h4 {
  margin: 11px 0 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 630;
  letter-spacing: 0.015em;
  line-height: 1.7;
}

.presentation-authors {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.8;
}

.presentation-authors strong {
  color: var(--blue);
  font-weight: 680;
}

.presentation-keywords {
  display: flex;
  margin: 22px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.presentation-keywords li {
  padding: 4px 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.55rem;
  font-style: italic;
}

.conference-timeline {
  position: relative;
  display: grid;
  gap: 64px;
}

.conference-timeline::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 176px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(54, 86, 177, 0.1), rgba(54, 86, 177, 0.72) 12%, rgba(54, 86, 177, 0.28) 88%, rgba(54, 86, 177, 0.06));
}

.conference-timeline-event {
  position: relative;
  display: grid;
  grid-template-columns: 152px 50px minmax(0, 1fr);
  align-items: start;
}

.conference-timeline-date {
  display: flex;
  padding: 9px 24px 0 0;
  align-items: flex-end;
  flex-direction: column;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.conference-timeline-date span {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.15em;
}

.conference-timeline-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.7vw, 1.52rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.conference-timeline-date i {
  width: 20px;
  height: 14px;
  margin: 1px 14px;
  border-left: 1px solid rgba(54, 86, 177, 0.34);
}

.conference-timeline-marker {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin: 18px auto 0;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(54, 86, 177, 0.48), 0 0 22px rgba(54, 86, 177, 0.25);
}

.conference-timeline-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 16, 40, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 70px rgba(12, 16, 40, 0.065);
}

.conference-timeline-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), rgba(54, 86, 177, 0.16) 72%, transparent);
}

.conference-timeline-card > header {
  padding: 34px 38px 31px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 18%, rgba(115, 144, 231, 0.32), transparent 34%),
    linear-gradient(135deg, #111832, #273d78);
}

.conference-timeline-card > header p {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.56rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.conference-timeline-card > header h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 590;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.conference-timeline-card > header h2 a {
  color: inherit;
  text-decoration: none;
}

.conference-timeline-card > header h2 span {
  display: inline-block;
  margin-left: 9px;
  color: var(--blue-light);
  font-size: 0.65em;
  transition: transform 200ms ease;
}

.conference-timeline-card > header h2 a:hover span,
.conference-timeline-card > header h2 a:focus-visible span {
  transform: translate(3px, -3px);
}

.conference-summary {
  margin: 0;
}

.conference-summary > div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  border-top: 1px solid rgba(12, 16, 40, 0.1);
}

.conference-summary > div:first-child {
  border-top: 0;
}

.conference-summary dt,
.conference-summary dd {
  margin: 0;
  padding: 22px 30px;
}

.conference-summary dt {
  color: var(--blue);
  border-right: 1px solid rgba(12, 16, 40, 0.1);
  font-size: 0.63rem;
  font-weight: 720;
  letter-spacing: 0.11em;
}

.conference-summary dd {
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 560;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.conference-summary-talks dt,
.conference-summary-talks dd {
  padding-top: 27px;
  padding-bottom: 27px;
}

.conference-summary-talks dd {
  display: grid;
  gap: 0;
}

.conference-talk {
  padding: 22px 0;
  border-top: 1px solid rgba(12, 16, 40, 0.1);
}

.conference-talk:first-child {
  padding-top: 0;
  border-top: 0;
}

.conference-talk:last-child {
  padding-bottom: 0;
}

.conference-talk h3 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(0.98rem, 1.55vw, 1.22rem);
  font-weight: 620;
  letter-spacing: 0.005em;
  line-height: 1.65;
}

.conference-talk p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 470;
  line-height: 1.75;
}

.conference-talk p span {
  margin-right: 12px;
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .conference-timeline {
    gap: 50px;
  }

  .conference-timeline::before {
    left: 120px;
  }

  .conference-timeline-event {
    grid-template-columns: 102px 38px minmax(0, 1fr);
  }

  .conference-timeline-date {
    padding-right: 15px;
  }

  .conference-timeline-date strong {
    font-size: 1.08rem;
  }

  .conference-timeline-card > header {
    padding: 29px 28px 27px;
  }

  .conference-summary > div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .conference-summary dt,
  .conference-summary dd {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (max-width: 620px) {
  .conference-timeline {
    gap: 44px;
  }

  .conference-timeline::before {
    left: 13px;
  }

  .conference-timeline-event {
    grid-template-columns: 27px minmax(0, 1fr);
  }

  .conference-timeline-date {
    grid-column: 2;
    margin-bottom: 13px;
    padding: 0;
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .conference-timeline-date span {
    margin: 0 3px 0 0;
  }

  .conference-timeline-date strong {
    font-size: 1.02rem;
  }

  .conference-timeline-date i {
    width: 12px;
    height: 1px;
    margin: 0;
    border: 0;
    background: rgba(54, 86, 177, 0.34);
  }

  .conference-timeline-marker {
    grid-row: 1 / span 2;
    grid-column: 1;
    margin-top: 4px;
  }

  .conference-timeline-card {
    grid-column: 2;
  }

  .conference-timeline-card > header {
    padding: 26px 22px 24px;
  }

  .conference-timeline-card > header h2 {
    font-size: clamp(1.27rem, 6.3vw, 1.75rem);
  }

  .conference-summary > div {
    grid-template-columns: 1fr;
  }

  .conference-summary dt,
  .conference-summary dd {
    padding-right: 20px;
    padding-left: 20px;
  }

  .conference-summary dt {
    padding-bottom: 6px;
    border-right: 0;
  }

  .conference-summary dd {
    padding-top: 6px;
  }

  .conference-summary-talks dt {
    padding-bottom: 3px;
  }

  .conference-summary-talks dd {
    padding-top: 10px;
    padding-bottom: 22px;
  }
}

.conference-empty {
  padding: 110px 0 24px;
  text-align: center;
}

.conference-empty > p {
  margin: 0;
  color: var(--blue);
  font-size: 0.61rem;
  font-weight: 740;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.conference-empty h2 {
  margin: 22px 0 0;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  font-weight: 600;
}

.conference-empty a {
  display: inline-flex;
  margin-top: 38px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 680;
  text-decoration: none;
}

.conference-schedule-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1000px) {
  .conference-event-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .conference-official-link {
    width: fit-content;
  }

  .conference-days {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .conference-schedule-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .conference-schedule-content {
    padding: 94px 0 108px;
  }

  .conference-event {
    margin-top: 0;
  }

  .conference-event-header {
    gap: 30px;
    padding-bottom: 30px;
  }

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

  .conference-event-overview > div,
  .conference-event-overview > div:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .conference-event-overview > div:last-child {
    border-bottom: 0;
  }

  .conference-days {
    margin-top: 38px;
  }

  .conference-day > header {
    min-height: 86px;
    padding-inline: 20px;
  }

  .conference-presentation {
    padding: 26px 20px 28px;
  }

  .presentation-schedule {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .conference-official-link,
  .news-schedule-cta,
  .news-schedule-cta span:last-child {
    transition: none;
  }
}

/* Shared responsive navigation */

@media (max-width: 1240px) {
  .header-shell {
    gap: 26px;
  }

  .header-navigation {
    gap: 18px;
  }

  .global-nav {
    gap: 22px;
  }

  .global-nav a {
    font-size: 0.69rem;
  }

  .header-action--contact {
    display: none;
  }
}

@media (max-width: 980px) and (min-width: 721px) {
  .brand-name small {
    display: none;
  }

  .global-nav a:last-child {
    display: none;
  }

  .header-action {
    padding-inline: 12px;
  }
}

@media (max-width: 720px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header.is-menu-open {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background: rgba(12, 16, 40, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-shell {
    min-height: 78px;
    gap: 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-width: 70px;
    min-height: 42px;
    margin-left: auto;
    padding: 0 12px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(12, 16, 40, 0.18);
    font-size: 0.59rem;
    font-weight: 720;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle-icon {
    position: relative;
    display: block;
    width: 15px;
    height: 10px;
  }

  .menu-toggle-icon i {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    height: 1px;
    background: currentColor;
    transition: top 220ms ease, transform 220ms ease;
  }

  .menu-toggle-icon i:first-child {
    top: 2px;
  }

  .menu-toggle-icon i:last-child {
    top: 8px;
  }

  .site-header.is-menu-open .menu-toggle-icon i:first-child {
    top: 5px;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle-icon i:last-child {
    top: 5px;
    transform: rotate(-45deg);
  }

  .header-navigation {
    position: fixed;
    z-index: 1;
    top: 78px;
    right: 0;
    bottom: auto;
    left: 0;
    display: grid;
    height: calc(100dvh - 78px);
    margin: 0;
    padding: 24px 18px 30px;
    align-content: start;
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: 28px;
    background: rgba(12, 16, 40, 0.97);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .header-navigation {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .header-navigation .global-nav {
    display: grid;
    width: 100%;
    gap: 0;
  }

  .header-navigation .global-nav a,
  .header-navigation .global-nav a:first-child,
  .header-navigation .global-nav a:last-child {
    display: flex;
    min-height: 58px;
    padding: 0 4px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.84rem;
    letter-spacing: 0.08em;
  }

  .header-navigation .global-nav a::after {
    bottom: 0;
  }

  .header-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .header-action,
  .header-action--contact {
    display: inline-flex;
    min-height: 52px;
    padding-inline: 18px;
    justify-content: space-between;
    font-size: 0.71rem;
  }

  .hero {
    height: clamp(600px, 78svh, 720px);
    min-height: 0;
  }

  .hero-content {
    padding-bottom: 128px;
  }

  .members-hero {
    height: clamp(680px, 82svh, 740px);
    min-height: 0;
    max-height: 740px;
  }

  .members-hero-content {
    padding: 118px 0 58px;
  }

  .achievements-hero {
    height: clamp(700px, 86svh, 780px);
    min-height: 0;
    max-height: 780px;
  }

  .achievements-hero-content {
    padding: 118px 0 56px;
  }

  .research-hero {
    height: clamp(760px, 92svh, 840px);
    min-height: 0;
    max-height: 840px;
  }

  .research-hero-content {
    padding: 118px 0 54px;
  }

  .news-article-hero {
    height: clamp(500px, 68svh, 580px);
    min-height: 0;
    max-height: 580px;
  }

  .news-article-hero--image {
    height: clamp(520px, 72svh, 620px);
    max-height: 620px;
  }

  .news-article-hero-content {
    padding: 118px 0 58px;
  }
}

@media (max-width: 380px) {
  .brand-name small {
    display: none;
  }

  .brand-name strong {
    font-size: 0.71rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-navigation,
  .header-action,
  .header-action span:last-child,
  .menu-toggle-icon i {
    transition: none;
  }
}
