/* Generated from assets/scss/style.scss. */
:root {
  --color-primary: #175fc1;
  --color-primary-dark: #15395f;
  --color-bright: #315fe5;
  --color-purple: #4338ca;
  --color-secondary: #65b8dc;
  --color-background: #fff;
  --color-background-sub: #f2f8fb;
  --color-text: #263746;
  --color-text-light: #647789;
  --color-border: #d9e4eb;
  --color-warning: #b4232f;
  --font-sans: "Noto Sans JP", "Helvetica Neue", sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", serif;
  --font-display: "Josefin Sans", "Helvetica Neue", sans-serif;
  --gradient-brand: linear-gradient(135deg, #123b8f 0%, #2359d8 50%, #4338ca 100%);
  --shadow-card: 0 10px 30px rgba(21, 57, 95, .055);
  --radius: 8px;
  --container: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
}

p {
  letter-spacing: .03em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--color-primary-dark);
  transform: translateY(-150%);
}

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

.container {
  width: calc(100% - 56px);
  max-width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  max-width: 920px;
}

.section {
  padding: 136px 0;
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading__en {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
}

.section-heading--center {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  max-width: 650px;
  margin: 28px auto 0;
  color: var(--color-text-light);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading--split > p {
  margin-bottom: 5px;
  color: var(--color-text-light);
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 36px);
  }
  .section {
    padding: 88px 0;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .section-heading__en {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
    letter-spacing: .02em;
  }
  .section-heading h2 {
    font-size: 1.32rem;
  }
  .section-heading--split {
    display: block;
  }
  .section-heading--split > p {
    margin-top: 22px;
  }
  .only-desktop {
    display: none;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  width: 174px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand__logo--footer {
  width: 190px;
  max-height: none;
}

.brand__symbol {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

.brand__symbol span {
  width: 19px;
  height: 10px;
  border: solid var(--color-secondary);
  border-width: 0 0 2px;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  color: var(--color-primary-dark);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}

.brand__name span {
  color: var(--color-primary);
}

.brand__tagline {
  margin-top: 5px;
  color: var(--color-text-light);
  font-size: .51rem;
  letter-spacing: .13em;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 30px;
  border: 1px solid var(--color-primary);
  border-radius: 9999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: color .25s, background-color .25s, border-color .25s;
}

.button--primary {
  color: #fff;
  background: var(--color-primary);
}

.button--primary:hover {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
}

.button--secondary {
  color: var(--color-primary);
  border-color: #d9e8f8;
  background: #edf5fd;
}

.button--white {
  color: var(--color-primary);
  border-color: #fff;
  background: #fff;
}

.button--white:hover {
  color: #fff;
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
}

.button--outline {
  color: var(--color-primary);
  background: transparent;
}

.button--outline:hover {
  color: #fff;
  background: var(--color-primary);
}

.button--outline-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.button--outline-white:hover {
  color: var(--color-primary);
  border-color: #fff;
  background: #fff;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--arrow {
  transition: transform .25s;
}

.button:hover .icon--arrow {
  transform: translateX(3px);
}

.section-action {
  margin-top: 38px;
}

.section-action-wrap {
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.product-card__visual {
  position: relative;
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  place-items: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #eef5f9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-card__visual::before, .product-card__visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(23, 95, 193, 0.16);
  border-radius: 50%;
}

.product-card__visual::before {
  width: 180px;
  height: 180px;
}

.product-card__visual::after {
  width: 124px;
  height: 124px;
}

.product-card__visual span {
  z-index: 1;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: .05em;
}

.product-card__visual--a1 {
  background-image: url("../images/top/product_a1.jpg");
  background-position: 50% 50%;
}

.product-card__visual--a2 {
  background-image: url("../images/top/product_a2.jpg");
  background-position: 50% 50%;
}

.product-card__visual--a3 {
  background-image: url("../images/top/product_a3.jpg");
  background-position: 50% 50%;
}

.product-card__visual--human {
  filter: brightness(0.72) saturate(0.58) contrast(0.94);
  background-color: #cbd3da;
  background-image: linear-gradient(rgba(21, 57, 95, 0.08), rgba(21, 57, 95, 0.08)), url("../images/top/product_human01.jpg");
}

.product-card__visual[class*="product-card__visual--"]::before, .product-card__visual[class*="product-card__visual--"]::after, .product-card__visual[class*="product-card__visual--"] > span {
  display: none;
}

.product-card__visual--human span {
  color: #50677b;
}

.product-card__body {
  padding: 28px 24px 32px;
}

.product-card__category {
  margin-bottom: 7px;
  color: var(--color-primary);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.product-card h3 {
  margin-bottom: 14px;
  color: var(--color-primary-dark);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.product-card__body > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-light);
  font-size: .87rem;
  line-height: 1.9;
}

.product-card--restricted {
  border-color: #c7d3dc;
  background: #f7f9fb;
  box-shadow: none;
}

.product-card--restricted .product-card__category {
  color: #617386;
}

.product-card__meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
}

.status-label {
  padding: 3px 9px;
  border: 1px solid #8698a7;
  border-radius: 3px;
  color: #53697a;
  font-size: .63rem;
  font-weight: 600;
  line-height: 1.5;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.scene-card {
  background: transparent;
}

.scene-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  background: #dbeaf0;
}

.scene-media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform .5s ease;
}

.scene-media--care img {
  object-position: 50% 50%;
}

.scene-media--research img {
  object-position: 52% 50%;
}

.scene-card:hover img {
  transform: scale(1.015);
}

.monitor-screen, .research-document {
  position: absolute;
  pointer-events: none;
}

.monitor-screen {
  top: 31%;
  left: 56%;
  width: 17%;
  height: 17%;
}

.research-document {
  right: 15%;
  bottom: 10%;
  width: 20%;
  height: 16%;
}

.scene-card__body {
  padding: 25px 4px 0;
}

.scene-card__body > p:first-child {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .05em;
}

.scene-card h3 {
  margin-bottom: 12px;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.scene-card__body > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-light);
}

@media (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .product-grid, .scene-grid {
    grid-template-columns: 1fr;
  }
  .scene-grid {
    gap: 54px;
  }
  .scene-card__body {
    padding: 22px 2px 0;
  }
}

@media (max-width: 767px) {
  .brand__logo {
    width: 169px;
    max-height: 44px;
  }
  .brand__logo--footer {
    width: 180px;
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(217, 228, 235, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: space-between;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.global-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--color-text);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.global-nav a:hover {
  color: var(--color-primary);
}

.global-nav__contact {
  gap: 9px;
  padding: 9px 22px;
  border-radius: 9999px;
  color: #fff !important;
  background: #175fc1;
}

.global-nav__contact:hover {
  background: #124e9f;
}

.exploration-reset {
  min-height: 38px;
  padding: 7px 16px;
  border: 1px solid #175fc1;
  border-radius: 9999px;
  color: #175fc1;
  background: #fff;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .04em;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s, background-color .2s;
}

.exploration-reset:hover {
  color: #fff;
  background: #175fc1;
}

.exploration-reset--mobile {
  display: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  min-height: 800px;
  padding-top: 88px;
  overflow: hidden;
  background: linear-gradient(135deg, #123b8f 0%, #175fc1 45%, #4338ca 100%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(117, 184, 255, 0.17), transparent 66%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 72%;
  content: "";
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.035) 22px 23px);
  pointer-events: none;
}

.hero__visual {
  position: absolute;
  z-index: 1;
  top: 88px;
  right: 0;
  bottom: 0;
  left: 47%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  opacity: .86;
  background: url("../images/top/hero.jpg") 68% 50%/cover no-repeat;
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 712px;
  align-items: center;
}

.hero__content {
  width: 64%;
  padding: 100px 0 116px;
}

.hero__eyebrow {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.hero h1 {
  margin-bottom: 34px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(2.9rem, 4.9vw, 4.65rem);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: .05em;
}

.hero__title-line {
  white-space: nowrap;
}

.hero__lead {
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.hero__scroll span:last-child {
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.vision {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  background-image: linear-gradient(rgba(23, 95, 193, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 95, 193, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.vision::before, .vision::after {
  position: absolute;
  border: 1px solid rgba(23, 95, 193, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.vision::before {
  top: -230px;
  left: -170px;
  width: 560px;
  height: 560px;
  box-shadow: 0 0 100px rgba(23, 95, 193, 0.08);
}

.vision::after {
  right: -100px;
  bottom: -240px;
  width: 500px;
  height: 500px;
  border-color: rgba(67, 56, 202, 0.05);
  box-shadow: -90px -30px 0 40px rgba(23, 95, 193, 0.025);
}

.vision__inner {
  position: relative;
  z-index: 1;
}

.vision .section-heading {
  margin-bottom: 44px;
}

.vision .section-heading__en {
  font-size: clamp(2.65rem, 4.3vw, 3.8rem);
}

.vision .section-heading h2 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.vision__statement {
  margin-bottom: 32px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: .05em;
}

.vision__body {
  margin-bottom: 0;
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 2.35;
}

.about {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background: var(--gradient-brand);
}

.about::before {
  position: absolute;
  top: -260px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 100px rgba(134, 191, 255, 0.22);
}

.about::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 65%;
  content: "";
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 18px 19px);
  pointer-events: none;
}

.about > .container {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
}

.about .section-heading__en, .about .section-heading h2 {
  color: #fff;
}

.about .section-heading__en {
  opacity: .95;
}

.about__copy {
  padding-top: 50px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.about__copy p {
  margin-bottom: 24px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 54px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.metrics > div {
  padding: 38px 20px;
  text-align: center;
}

.metrics > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.metrics dt {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: .8rem;
}

.metrics dd {
  margin-bottom: 0;
  color: #fff;
}

.metrics strong {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .05em;
}

.metrics span {
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: .82rem;
}

.metrics__note {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: .68rem;
  text-align: right;
}

.products {
  background: #fff;
}

.technology {
  background: var(--color-background-sub);
}

.news {
  background: #fff;
}

.news__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}

.news__content {
  min-width: 0;
}

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

.news-list article {
  display: grid;
  grid-template-columns: 98px 82px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 25px 8px;
  border-bottom: 1px solid var(--color-border);
}

.news-list time {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
}

.news-list__category {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 11px;
  border-radius: 9999px;
  color: #175fc1;
  background: #eaf3fd;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.news-list p {
  margin-bottom: 0;
}

.icon--news-arrow {
  color: var(--color-primary);
}

.news__content > .section-action {
  margin-top: 34px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 26px;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, #123b8f 0%, #175fc1 50%, #4338ca 100%);
}

.site-footer::before {
  position: absolute;
  top: -260px;
  right: -150px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 100px rgba(132, 190, 255, 0.12);
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 80%;
  content: "";
  background: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255, 255, 255, 0.025) 24px 25px);
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.brand--footer .brand__symbol {
  border-color: var(--color-secondary);
}

.brand--footer .brand__name {
  color: #fff;
}

.brand--footer .brand__tagline {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__company {
  margin-bottom: 5px;
  color: #fff;
  font-weight: 600;
}

.site-footer__top p {
  font-size: .82rem;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  font-size: .82rem;
}

.site-footer__nav a:hover, .site-footer__bottom a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: .7rem;
}

@media (max-width: 900px) {
  .site-header__inner {
    width: calc(100% - 28px);
    max-width: none;
    margin-right: 0;
    margin-left: 28px;
  }
  .is-nav-open {
    overflow: hidden;
  }
  .nav-toggle {
    display: flex;
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    color: #fff;
    background: #175fc1;
    cursor: pointer;
  }
  .nav-toggle:hover {
    background: #175fc1;
  }
  .nav-toggle:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -6px;
  }
  .nav-toggle__lines, .nav-toggle__lines::before, .nav-toggle__lines::after {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 9999px;
    background-color: currentColor;
    content: "";
    transition: transform .28s ease-in-out, opacity .28s ease-in-out, background-color .28s ease-in-out;
  }
  .nav-toggle__lines {
    position: relative;
  }
  .nav-toggle__lines::before, .nav-toggle__lines::after {
    position: absolute;
    left: 0;
  }
  .nav-toggle__lines::before {
    top: -8px;
  }
  .nav-toggle__lines::after {
    top: 8px;
  }
  .nav-toggle[aria-expanded=true] .nav-toggle__lines {
    background-color: transparent;
  }
  .nav-toggle[aria-expanded=true] .nav-toggle__lines::before {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded=true] .nav-toggle__lines::after {
    transform: translateY(-8px) rotate(-45deg);
  }
  .global-nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    visibility: hidden;
    padding: 20px 24px 28px;
    border-top: 1px solid var(--color-border);
    background: #fff;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .global-nav ul {
    display: grid;
    gap: 3px;
  }
  .global-nav a {
    width: 100%;
    padding: 5px 10px;
  }
  .global-nav__contact {
    justify-content: center;
    margin-top: 8px;
  }
  .exploration-reset--desktop {
    display: none;
  }
  .exploration-reset--mobile {
    display: inline-flex;
    position: absolute;
    right: 104px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 6px 13px;
  }
  .about__grid {
    gap: 50px;
  }
  .news__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .news__grid > .section-heading {
    margin-bottom: 42px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }
  .site-header__inner {
    width: calc(100% - 18px);
    height: 72px;
    margin-left: 18px;
  }
  .nav-toggle {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }
  .exploration-reset--mobile {
    right: 84px;
  }
  .brand__symbol {
    width: 34px;
    height: 34px;
  }
  .brand__name {
    font-size: 1.2rem;
  }
  .global-nav {
    top: 72px;
  }
  .hero {
    min-height: auto;
    padding-top: 72px;
  }
  .hero::before {
    top: 330px;
    left: -260px;
    display: block;
    width: 520px;
    height: 520px;
  }
  .hero__visual {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 58vw;
    min-height: 270px;
    opacity: .88;
    background: url("../images/top/hero.jpg") 64% 50%/cover no-repeat;
  }
  .hero__inner {
    min-height: auto;
  }
  .hero__content {
    width: 100%;
    padding: 58px 0 84px;
  }
  .hero__eyebrow {
    margin-bottom: 22px;
  }
  .hero__inner {
    width: calc(100% - 24px);
  }
  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(1.6rem, 8vw, 2.55rem);
    line-height: 1.55;
    letter-spacing: .02em;
  }
  .hero__title-line {
    white-space: nowrap;
  }
  .hero__lead {
    margin-bottom: 36px;
    font-size: .92rem;
  }
  .hero__actions {
    width: 100%;
    max-width: 280px;
    flex-direction: column;
    gap: 12px;
  }
  .hero__actions .button {
    width: 100%;
    flex: none;
    padding-inline: 20px;
  }
  .hero__scroll {
    display: none;
  }
  .vision__body {
    text-align: left;
  }
  .vision__body br {
    display: none;
  }
  .about__grid, .news__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about__copy {
    padding-top: 0;
  }
  .about::before {
    top: -160px;
    right: -240px;
    width: 480px;
    height: 480px;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .metrics > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }
  .metrics > div {
    padding: 27px 15px;
  }
  .news-list article {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding: 22px 4px;
  }
  .news-list time {
    grid-column: 1;
    grid-row: 1;
  }
  .news-list__category {
    grid-column: 2;
    grid-row: 1;
  }
  .news-list p {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    padding-right: 8px;
    overflow-wrap: anywhere;
  }
  .icon--news-arrow {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .site-footer__bottom {
    gap: 20px;
  }
}

.debug-panel {
  position: fixed;
  z-index: 500;
  right: 14px;
  bottom: 14px;
  width: 190px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #eaf4ff;
  background: rgba(7, 17, 29, 0.94);
  box-shadow: 0 8px 28px rgba(7, 17, 29, 0.24);
  font-family: var(--font-sans);
}

.debug-panel__title {
  margin-bottom: 7px;
  color: #7cafff;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .06em;
}

.debug-panel__current {
  margin-bottom: 9px;
  font-size: .75rem;
  font-weight: 600;
}

.debug-panel__states {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.debug-panel button {
  min-height: 30px;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #dcecff;
  background: #102438;
  font: inherit;
  font-size: .64rem;
  cursor: pointer;
}

.debug-panel > button {
  width: 100%;
  margin-top: 4px;
}

.debug-panel button:hover, .debug-panel button.is-active {
  color: #fff;
  border-color: #4f8cff;
  background: #175fc1;
}

@media (max-width: 767px) {
  .debug-panel {
    right: 8px;
    bottom: 8px;
    width: 158px;
    padding: 10px;
  }
  .debug-panel button {
    min-height: 28px;
    font-size: .58rem;
  }
}

.research-page {
  --research-bg: #f3f6f9;
  --research-surface: #fff;
  --research-primary: #123b68;
  --research-accent: #175fc1;
  --research-text: #263746;
  --research-text-light: #6c7d89;
  --research-border: #d8e2e9;
  --research-restricted: #7a2632;
  --research-restricted-bg: #f6edef;
  color: var(--research-text);
  background: var(--research-bg);
  animation: research-page-in .3s ease both;
}

.research-container {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin-inline: auto;
}

.research-header {
  border-bottom: 1px solid var(--research-border);
  background: var(--research-surface);
}

.research-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.research-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.research-logo__image {
  display: block;
  width: 190px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.research-logo__symbol {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--research-accent);
  border-radius: 50%;
}

.research-logo__symbol span {
  width: 18px;
  height: 9px;
  border-bottom: 2px solid #65b8dc;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.research-logo__text {
  display: flex;
  flex-direction: column;
}

.research-logo__text strong {
  color: var(--research-primary);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -.02em;
}

.research-logo__text strong span {
  color: var(--research-accent);
}

.research-logo__text small {
  margin-top: 5px;
  color: var(--research-text-light);
  font-size: .5rem;
  letter-spacing: .14em;
}

.research-header__status {
  display: flex;
  gap: 28px;
  margin: 0;
}

.research-header__status div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.research-header__status dt {
  color: var(--research-text-light);
  font-size: .61rem;
  letter-spacing: .11em;
}

.research-header__status dd {
  margin: 0;
  color: var(--research-primary);
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .04em;
}

.research-access-bar {
  color: var(--research-primary);
  background: #e9f3fb;
}

.research-access-bar__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
}

.research-access-bar svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.research-access-bar strong {
  letter-spacing: .1em;
}

.research-access-bar span {
  color: #557189;
}

.research-hero {
  padding: 92px 0 72px;
  border-bottom: 1px solid var(--research-border);
  background-color: var(--research-surface);
  background-image: linear-gradient(rgba(18, 59, 104, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 59, 104, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.research-hero__en, .research-section-heading > p, .research-close > .research-container > p {
  margin-bottom: 10px;
  color: var(--research-accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: .06em;
}

.research-hero h1 {
  margin-bottom: 42px;
  color: var(--research-primary);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .06em;
}

.research-document-meta {
  display: grid;
  grid-template-columns: .9fr .75fr 1.6fr 1fr;
  margin: 0;
  border-top: 1px solid var(--research-border);
  border-bottom: 1px solid var(--research-border);
  background: rgba(255, 255, 255, 0.82);
}

.research-document-meta div {
  min-width: 0;
  padding: 19px 18px;
}

.research-document-meta div + div {
  border-left: 1px solid var(--research-border);
}

.research-document-meta dt {
  margin-bottom: 4px;
  color: var(--research-text-light);
  font-size: .62rem;
  letter-spacing: .09em;
}

.research-document-meta dd {
  margin: 0;
  color: var(--research-primary);
  font-size: .78rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.research-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--research-border);
}

.research-section:nth-of-type(odd) {
  background: var(--research-surface);
}

.research-section-heading {
  margin-bottom: 40px;
}

.research-section-heading > p {
  margin-bottom: 6px;
}

.research-section-heading h2 {
  margin: 0;
  color: var(--research-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: .05em;
}

.research-content-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 88px;
}

.research-content-grid .research-section-heading {
  margin-bottom: 0;
}

.research-overview__body, .research-record__body {
  max-width: 680px;
}

.research-overview__body p, .research-record__body p {
  margin-bottom: 24px;
}

.research-note {
  margin-top: 36px;
  padding: 18px 20px;
  border-left: 2px solid var(--research-accent);
  color: var(--research-text-light);
  background: #edf3f7;
  font-size: .78rem;
}

.research-comparison {
  background: #edf2f6;
}

.research-table-hint {
  display: none;
  margin-bottom: 10px;
  color: var(--research-text-light);
  font-size: .72rem;
}

.research-table-scroll {
  overflow-x: auto;
  outline-offset: 5px;
  scrollbar-color: #9eb3c2 #e2e9ee;
}

.research-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border: 1px solid var(--research-border);
  background: var(--research-surface);
  font-size: .82rem;
}

.research-table caption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.research-table th, .research-table td {
  padding: 19px 17px;
  border-bottom: 1px solid var(--research-border);
  text-align: left;
  vertical-align: middle;
}

.research-table thead th {
  color: #fff;
  background: var(--research-primary);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.research-table tbody th {
  color: var(--research-primary);
  font-weight: 600;
}

.research-table tbody tr:last-child th, .research-table tbody tr:last-child td {
  border-bottom: 0;
}

.research-table__restricted {
  background: var(--research-restricted-bg);
}

.research-table__restricted th {
  border-left: 4px solid var(--research-restricted);
}

.research-table__restricted th span {
  display: block;
}

.research-table__restricted th small {
  display: inline-block;
  margin-top: 5px;
  padding: 2px 7px;
  border: 1px solid var(--research-restricted);
  color: var(--research-restricted);
  font-size: .55rem;
  letter-spacing: .08em;
}

.research-table__restricted strong {
  color: var(--research-restricted);
}

.research-human-record {
  position: relative;
  overflow: hidden;
}

.research-human-record::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(18, 59, 104, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.research-human-record > .research-container {
  position: relative;
  z-index: 1;
}

.research-record__project-name {
  color: var(--research-restricted);
  font-weight: 700;
  letter-spacing: .07em;
}

.research-flow {
  background: #edf2f6;
}

.research-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.research-flow__list li {
  position: relative;
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  border: 1px solid var(--research-border);
  color: var(--research-primary);
  background: var(--research-surface);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
}

.research-flow__list li + li {
  border-left: 0;
}

.research-flow__list li + li::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -7px;
  width: 13px;
  height: 13px;
  border: solid var(--research-accent);
  border-width: 1px 1px 0 0;
  background: var(--research-surface);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.research-flow__list span {
  margin-bottom: 7px;
  color: var(--research-accent);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .08em;
}

.research-supervisor {
  background: var(--research-surface);
}

.research-supervisor__grid {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 80px;
  align-items: center;
}

.research-id-card {
  overflow: hidden;
  border: 1px solid #bdcbd5;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 59, 104, 0.08);
}

.research-id-card > header {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  color: #fff;
  background: var(--research-primary);
}

.research-id-card > header > span {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.research-id-card > header > span span {
  color: #6ec3e7;
}

.research-id-card > header small {
  font-size: .56rem;
  letter-spacing: .13em;
}

.research-id-card__body {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  padding: 25px;
}

.research-id-card__portrait {
  position: relative;
  grid-row: span 2;
  min-height: 138px;
  overflow: hidden;
  background: #e8eef2;
}

.research-id-card__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
  object-position: 43% 35%;
}

.research-id-card__identity p {
  margin-bottom: 1px;
  color: var(--research-text-light);
  font-family: var(--font-display);
  font-size: .83rem;
  letter-spacing: .06em;
}

.research-id-card__identity strong {
  color: var(--research-primary);
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.research-id-card dl {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  align-self: end;
  margin: 0;
}

.research-id-card dl div + div {
  padding-left: 15px;
  border-left: 1px solid var(--research-border);
}

.research-id-card dt {
  color: var(--research-text-light);
  font-size: .57rem;
  letter-spacing: .1em;
}

.research-id-card dd {
  margin: 4px 0 0;
  color: var(--research-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.research-id-card .research-id-card__number {
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: .11em;
  user-select: text;
}

.research-supervisor__en-name {
  margin-bottom: 3px;
  color: var(--research-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
}

.research-supervisor__details h3 {
  margin-bottom: 19px;
  color: var(--research-primary);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.research-supervisor__details > p:not(.research-supervisor__en-name) {
  margin-bottom: 26px;
}

.research-supervisor__details dl {
  margin: 0;
  border-top: 1px solid var(--research-border);
}

.research-supervisor__details dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--research-border);
}

.research-supervisor__details dt {
  color: var(--research-text-light);
  font-size: .75rem;
}

.research-supervisor__details dd {
  margin: 0;
  color: var(--research-primary);
  font-weight: 600;
}

.research-supervisor__details dd strong {
  color: var(--research-accent);
  font-size: 1.22rem;
  letter-spacing: .1em;
  user-select: text;
}

.research-viewing-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 42px 0 0;
  color: var(--research-text-light);
  font-size: .72rem;
}

.research-viewing-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.research-close {
  padding: 74px 0 86px;
  text-align: center;
}

.research-close > .research-container > p {
  margin-bottom: 17px;
  font-size: .88rem;
}

.research-close .button {
  min-width: 250px;
}

@keyframes research-page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .research-content-grid {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
  }
  .research-supervisor__grid {
    grid-template-columns: minmax(300px, 390px) 1fr;
    gap: 42px;
  }
  .research-document-meta {
    grid-template-columns: 1fr 1fr;
  }
  .research-document-meta div:nth-child(3) {
    border-left: 0;
  }
  .research-document-meta div:nth-child(n+3) {
    border-top: 1px solid var(--research-border);
  }
}

@media (max-width: 767px) {
  .research-container {
    width: calc(100% - 40px);
  }
  .research-header__inner {
    min-height: 68px;
    gap: 15px;
  }
  .research-logo__symbol {
    width: 31px;
    height: 31px;
  }
  .research-logo__image {
    width: 150px;
    max-height: 44px;
  }
  .research-logo__text strong {
    font-size: 1rem;
  }
  .research-logo__text small {
    font-size: .42rem;
  }
  .research-header__status {
    gap: 10px;
  }
  .research-header__status div {
    display: block;
  }
  .research-header__status dt {
    font-size: .48rem;
  }
  .research-header__status dd {
    font-size: .7rem;
  }
  .research-access-bar__inner {
    flex-wrap: wrap;
    gap: 2px 8px;
    padding: 8px 0;
  }
  .research-access-bar strong {
    font-size: .66rem;
  }
  .research-access-bar span {
    width: calc(100% - 25px);
    margin-left: 25px;
    font-size: .68rem;
  }
  .research-hero {
    padding: 65px 0 52px;
  }
  .research-hero__en {
    font-size: 1rem;
  }
  .research-hero h1 {
    margin-bottom: 32px;
    font-size: 1.85rem;
  }
  .research-document-meta {
    grid-template-columns: 1fr;
  }
  .research-document-meta div {
    padding: 14px 15px;
  }
  .research-document-meta div + div {
    border-top: 1px solid var(--research-border);
    border-left: 0;
  }
  .research-section {
    padding: 70px 0;
  }
  .research-content-grid {
    display: block;
  }
  .research-content-grid .research-section-heading {
    margin-bottom: 34px;
  }
  .research-overview__body p br, .research-record__body p br {
    display: none;
  }
  .research-table-hint {
    display: block;
  }
  .research-table-scroll {
    padding-bottom: 8px;
  }
  .research-flow__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .research-flow__list li {
    min-height: 78px;
  }
  .research-flow__list li + li {
    border-top: 0;
    border-left: 1px solid var(--research-border);
  }
  .research-flow__list li + li::before {
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
  .research-supervisor__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .research-id-card__body {
    grid-template-columns: 90px 1fr;
    gap: 17px;
    padding: 20px;
  }
  .research-id-card__portrait {
    min-height: 130px;
  }
  .research-id-card__portrait img {
    min-height: 130px;
    object-position: 45% 35%;
  }
  .research-id-card dl {
    grid-template-columns: 1.35fr .65fr;
  }
  .research-supervisor__details h3 {
    font-size: 1.7rem;
  }
  .research-close {
    padding: 58px 0 72px;
  }
  .research-close .button {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .research-page {
    animation: none;
  }
}

.human-project-page {
  --human-bg: #07111d;
  --human-bg-sub: #0d1c2d;
  --human-surface: #102438;
  --human-border: rgba(255,255,255,.12);
  --human-text: #eaf4ff;
  --human-text-light: rgba(234,244,255,.65);
  --human-blue: #4f8cff;
  --human-red: #b4232f;
  --human-green: #6acb98;
  color: var(--human-text);
  background: var(--human-bg);
}

.human-project-page p {
  letter-spacing: .03em;
}

.human-project-page [hidden] {
  display: none !important;
}

.human-container {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin-inline: auto;
}

.human-main {
  overflow: hidden;
}

.human-auth-is-visible {
  overflow: hidden;
}

.human-auth-screen {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--human-text);
  background: #050c14;
  opacity: 1;
  transition: opacity .3s ease;
}

.human-auth-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(79, 140, 255, 0.025) 4px 5px);
  pointer-events: none;
}

.human-auth-screen.is-leaving {
  opacity: 0;
}

.human-auth-screen__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 45px;
  border: 1px solid rgba(79, 140, 255, 0.35);
  background: #091522;
  box-shadow: 0 0 80px rgba(79, 140, 255, 0.1);
}

.human-auth-screen__success {
  margin-bottom: 30px;
  color: var(--human-green);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .08em;
}

.human-auth-screen dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 36px;
}

.human-auth-screen dl div {
  padding: 14px 0;
  border-top: 1px solid var(--human-border);
  border-bottom: 1px solid var(--human-border);
}

.human-auth-screen dl div + div {
  padding-left: 24px;
  border-left: 1px solid var(--human-border);
}

.human-auth-screen dt {
  color: var(--human-text-light);
  font-size: .65rem;
  letter-spacing: .1em;
}

.human-auth-screen dd {
  margin: 3px 0 0;
  color: var(--human-blue);
  font-family: ui-monospace, monospace;
  font-size: 1.15rem;
}

.human-auth-screen__panel > p:last-child {
  margin-bottom: 0;
  color: var(--human-text-light);
  font-family: var(--font-display);
  letter-spacing: .08em;
}

.human-auth-screen__panel > p:last-child strong {
  color: var(--human-text);
  font-weight: 400;
}

.human-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--human-border);
  background: radial-gradient(circle at 72% 42%, rgba(79, 140, 255, 0.18), transparent 28%), linear-gradient(135deg, #07111d, #0b1a2b 62%, #0c2035);
}

.human-hero::before, .human-hero::after {
  position: absolute;
  border: 1px solid rgba(79, 140, 255, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.human-hero::before {
  top: -220px;
  right: -70px;
  width: 620px;
  height: 620px;
  box-shadow: 0 0 120px rgba(79, 140, 255, 0.08);
}

.human-hero::after {
  right: 180px;
  bottom: -270px;
  width: 440px;
  height: 440px;
}

.human-hero > .human-container {
  position: relative;
  z-index: 1;
  padding: 110px 0 90px;
}

.human-system-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  color: var(--human-text-light);
  font-family: ui-monospace, monospace;
  font-size: .66rem;
  letter-spacing: .12em;
}

.human-system-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--human-green);
  box-shadow: 0 0 10px var(--human-green);
}

.human-hero__en {
  margin-bottom: 6px;
  color: var(--human-blue);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 9vw, 7.5rem);
  line-height: .95;
  letter-spacing: .01em;
}

.human-hero h1 {
  margin-bottom: 54px;
  color: var(--human-text);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 500;
  letter-spacing: .08em;
}

.human-project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 210px));
  margin: 0;
}

.human-project-meta div {
  padding: 17px 22px;
  border: 1px solid var(--human-border);
  background: rgba(16, 36, 56, 0.7);
}

.human-project-meta div + div {
  border-left: 0;
}

.human-project-meta dt, .human-zero__data dt, .human-president-card dt {
  color: var(--human-text-light);
  font-family: ui-monospace, monospace;
  font-size: .6rem;
  letter-spacing: .1em;
}

.human-project-meta dd, .human-zero__data dd, .human-president-card dd {
  margin: 4px 0 0;
  font-family: ui-monospace, monospace;
  letter-spacing: .06em;
}

.human-status-active {
  color: var(--human-green) !important;
}

.human-section {
  padding: 118px 0;
  border-bottom: 1px solid var(--human-border);
}

.human-section:nth-of-type(odd) {
  background: var(--human-bg-sub);
}

.human-section-heading {
  margin-bottom: 55px;
}

.human-section-heading > p {
  margin-bottom: 6px;
  color: var(--human-blue);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: .05em;
}

.human-section-heading h2 {
  margin: 0;
  color: var(--human-text);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  font-weight: 500;
  letter-spacing: .06em;
}

.human-content-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 92px;
}

.human-content-grid .human-section-heading {
  margin-bottom: 0;
}

.human-overview__body {
  max-width: 650px;
  color: var(--human-text-light);
  line-height: 2.05;
}

.human-overview__body > p {
  margin-bottom: 30px;
}

.human-overview__note {
  margin-top: 48px;
  padding: 28px 30px;
  border-left: 2px solid var(--human-blue);
  background: rgba(79, 140, 255, 0.06);
}

.human-overview__note p {
  margin-bottom: 14px;
}

.human-overview__note p:last-child {
  margin-bottom: 0;
}

.human-care-system {
  background: var(--human-bg-sub);
}

.human-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.human-care-grid article {
  min-height: 270px;
  padding: 31px 28px;
  border: 1px solid var(--human-border);
  background: linear-gradient(145deg, rgba(16, 36, 56, 0.95), rgba(10, 27, 44, 0.95));
}

.human-care-grid article > span {
  color: var(--human-blue);
  font-family: ui-monospace, monospace;
  font-size: .65rem;
  letter-spacing: .11em;
}

.human-care-grid h3 {
  margin: 46px 0 20px;
  color: var(--human-text);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.human-care-grid p {
  margin-bottom: 0;
  color: var(--human-text-light);
  font-size: .86rem;
  line-height: 1.95;
}

.human-care-system__summary {
  margin: 44px 0 0;
  padding: 24px 28px;
  border: 1px solid rgba(79, 140, 255, 0.28);
  color: var(--human-text-light);
  text-align: center;
}

.human-care-system__summary strong {
  color: var(--human-blue);
}

.human-records {
  background: var(--human-bg);
}

.human-table-hint {
  display: none;
  color: var(--human-text-light);
  font-size: .7rem;
}

.human-table-scroll {
  overflow-x: auto;
  outline-offset: 5px;
  scrollbar-color: #365575 #0b1826;
}

.human-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid var(--human-border);
  background: var(--human-surface);
  font-size: .82rem;
}

.human-table caption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.human-table th, .human-table td {
  padding: 19px 20px;
  border-bottom: 1px solid var(--human-border);
  text-align: left;
}

.human-table thead th {
  color: var(--human-text-light);
  background: #0a1827;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.human-table tbody th {
  color: var(--human-text);
  font-family: ui-monospace, monospace;
  font-weight: 500;
}

.human-table tbody tr:last-child > * {
  border-bottom: 0;
}

.human-record-status {
  display: inline-flex;
  min-width: 62px;
  justify-content: center;
  padding: 3px 9px;
  border: 1px solid currentColor;
  font-size: .63rem;
}

.human-record-status--stopped {
  color: #c97a83;
}

.human-record-status--adjusting {
  color: #d0ae68;
}

.human-record-status--active {
  color: var(--human-green);
}

.human-table__subject-01 {
  background: rgba(79, 140, 255, 0.055);
}

.human-table__subject-000 {
  background: rgba(106, 203, 152, 0.08);
}

.human-table__subject-000 th {
  border-left: 3px solid var(--human-green);
}

.human-table__subject-000 strong {
  color: var(--human-green);
}

.human-zero {
  background: linear-gradient(135deg, #0b1928, #102438);
}

.human-zero__grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 70px 100px;
}

.human-zero .human-section-heading {
  margin-bottom: 0;
}

.human-zero .human-section-heading > p {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.human-zero .human-section-heading h2 {
  color: var(--human-text-light);
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .12em;
}

.human-zero__body {
  color: var(--human-text-light);
  line-height: 2;
}

.human-zero__body p {
  margin-bottom: 25px;
}

.human-zero__data {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-top: 1px solid var(--human-border);
  border-bottom: 1px solid var(--human-border);
}

.human-zero__data div {
  padding: 22px 20px;
}

.human-zero__data div + div {
  border-left: 1px solid var(--human-border);
}

.human-zero__data dd {
  color: var(--human-text);
  font-size: 1.02rem;
}

.human-data-deceased {
  color: #c97a83 !important;
}

.human-president {
  background: var(--human-bg);
}

.human-president-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--human-border);
  background: var(--human-surface);
}

.human-president-card__portrait {
  position: relative;
  grid-row: span 2;
  min-height: 420px;
  overflow: hidden;
  border-right: 1px solid var(--human-border);
  background: #0a1724;
}

.human-president-card__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 42% 38%;
  filter: saturate(0.78) brightness(0.82);
}

.human-president-card__portrait small {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding-top: 11px;
  border-top: 1px solid var(--human-border);
  color: var(--human-blue);
  font-family: ui-monospace, monospace;
  text-align: center;
  letter-spacing: .1em;
}

.human-president-card__profile {
  padding: 38px 42px 31px;
}

.human-president-card__profile > p:first-child {
  margin-bottom: 5px;
  color: var(--human-text-light);
  font-size: .78rem;
}

.human-president-card__profile h3 {
  margin-bottom: 5px;
  color: var(--human-text);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.human-president-card__name {
  margin-bottom: 28px;
  color: var(--human-blue);
  font-family: var(--font-display);
  letter-spacing: .08em;
}

.human-president-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--human-border);
  border-bottom: 1px solid var(--human-border);
}

.human-president-card dl div {
  padding: 14px 12px;
}

.human-president-card dl div + div {
  border-left: 1px solid var(--human-border);
}

.human-president-card__statement {
  padding: 30px 42px 36px;
  border-top: 1px solid var(--human-border);
  color: var(--human-text-light);
}

.human-president-card__statement p {
  margin-bottom: 18px;
  line-height: 2;
}

.human-president-card__statement p:last-child {
  margin-bottom: 0;
}

.human-message {
  position: relative;
  padding: 170px 0;
  text-align: center;
  background: #050d16;
}

.human-message::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(79, 140, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 120px rgba(79, 140, 255, 0.06);
  transform: translate(-50%, -50%);
}

.human-message > .human-container {
  position: relative;
  z-index: 1;
}

.human-message h2 {
  margin-bottom: 56px;
  color: var(--human-text);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .09em;
}

.human-message p {
  margin-bottom: 80px;
  color: var(--human-blue);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .08em;
}

.human-message small {
  color: rgba(234, 244, 255, 0.4);
  font-family: ui-monospace, monospace;
  letter-spacing: .08em;
}

.human-close {
  padding: 80px 0 95px;
  border-top: 1px solid var(--human-border);
  text-align: center;
  background: var(--human-bg-sub);
}

.human-close p {
  margin-bottom: 17px;
  color: var(--human-text-light);
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .09em;
}

.human-close .button {
  min-width: 260px;
}

@media (max-width: 900px) {
  .human-content-grid {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
  }
  .human-care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .human-care-grid article:last-child {
    grid-column: 1 / -1;
  }
  .human-president-card {
    grid-template-columns: 190px 1fr;
  }
  .human-president-card__profile {
    padding: 32px 30px 26px;
  }
  .human-president-card dl {
    grid-template-columns: 1fr;
  }
  .human-president-card dl div + div {
    border-top: 1px solid var(--human-border);
    border-left: 0;
  }
  .human-president-card__statement {
    padding: 26px 30px 32px;
  }
}

@media (max-width: 767px) {
  .human-container {
    width: calc(100% - 40px);
  }
  .human-auth-screen__panel {
    padding: 30px 24px;
  }
  .human-auth-screen__success {
    font-size: 1.15rem;
  }
  .human-hero {
    min-height: 620px;
  }
  .human-hero > .human-container {
    padding: 90px 0 75px;
  }
  .human-system-label {
    margin-bottom: 40px;
    font-size: .58rem;
  }
  .human-hero__en {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }
  .human-hero h1 {
    margin-bottom: 42px;
    font-size: 1.35rem;
  }
  .human-project-meta {
    grid-template-columns: 1fr;
  }
  .human-project-meta div + div {
    border-top: 0;
    border-left: 1px solid var(--human-border);
  }
  .human-section {
    padding: 82px 0;
  }
  .human-content-grid {
    display: block;
  }
  .human-content-grid .human-section-heading {
    margin-bottom: 38px;
  }
  .human-overview__body > p br, .human-overview__note br, .human-care-grid p br, .human-care-system__summary br, .human-zero__body br, .human-president-card__statement br {
    display: none;
  }
  .human-overview__note {
    padding: 23px 21px;
  }
  .human-care-grid {
    grid-template-columns: 1fr;
  }
  .human-care-grid article:last-child {
    grid-column: auto;
  }
  .human-care-grid article {
    min-height: auto;
  }
  .human-care-grid h3 {
    margin-top: 35px;
  }
  .human-table-hint {
    display: block;
  }
  .human-table-scroll {
    padding-bottom: 8px;
  }
  .human-zero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .human-zero__data {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .human-zero__data div + div {
    border-top: 1px solid var(--human-border);
    border-left: 0;
  }
  .human-president-card {
    grid-template-columns: 1fr;
  }
  .human-president-card__portrait {
    grid-row: auto;
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--human-border);
  }
  .human-president-card__portrait img {
    min-height: 300px;
    object-position: 50% 38%;
  }
  .human-president-card__profile {
    padding: 28px 22px 24px;
  }
  .human-president-card__profile h3 {
    font-size: 1.4rem;
  }
  .human-president-card__statement {
    padding: 24px 22px 28px;
  }
  .human-message {
    padding: 120px 0;
  }
  .human-message::before {
    width: 420px;
    height: 420px;
  }
  .human-message h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
    letter-spacing: .06em;
  }
  .human-message p {
    margin-bottom: 65px;
  }
  .human-close {
    padding: 65px 0 78px;
  }
  .human-close .button {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .human-auth-screen {
    transition: none;
  }
}
/* Phase B-2: Human-01 interaction and State1 reveal */
.product-card[data-product="human-01"] { min-height: 44px; cursor: pointer; transition: border-color .25s, box-shadow .25s, transform .25s; }
.product-card[data-product="human-01"]:hover,
.product-card[data-product="human-01"]:focus-visible { border-color: rgba(23,95,193,.55); box-shadow: 0 8px 24px rgba(21,57,95,.1); transform: translateY(-2px); outline: none; }
.scene-media--care img { position: absolute; inset: 0; object-position: 50% 50%; }
.scene-media__state-image { opacity: 1; transition: opacity .3s ease, transform .5s ease; }
.scene-media__state-image--confidential { opacity: 0; }
.technology-monitor-anomaly { position: absolute; z-index: 2; top: 24%; left: 42%; width: 34%; min-width: 44px; height: 48%; min-height: 44px; padding: 0; border: 0; border-radius: 2px; background: transparent; opacity: 0; pointer-events: none; cursor: pointer; }
.technology-monitor-anomaly:focus-visible { outline: 3px solid rgba(255,255,255,.95); outline-offset: 2px; }
.scene-media--research img { position: absolute; inset: 0; object-position: 52% 50%; }
.scene-media__project-image { opacity: 1; transition: opacity .3s ease, transform .5s ease; }
.scene-media__project-image--revealed { opacity: 0; }
.technology-document-anomaly { position: absolute; z-index: 2; top: 39%; left: 44%; width: 24%; min-width: 44px; height: 34%; min-height: 44px; padding: 0; border: 0; background: transparent; opacity: 0; visibility: hidden; pointer-events: none; cursor: pointer; }
.technology-document-anomaly:focus-visible { outline: 3px solid rgba(255,255,255,.95); outline-offset: 2px; }
.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 1000; inset: 0; display: grid; padding: 24px; place-items: center; opacity: 0; transition: opacity .2s ease; }
.modal.is-open { opacity: 1; }
.modal__overlay { position: absolute; inset: 0; background: rgba(6,21,40,.55); }
.modal__dialog { position: relative; width: min(100%, 480px); max-height: calc(100dvh - 48px); overflow-y: auto; padding: 42px 40px 36px; border: 1px solid #cbdbea; border-top: 4px solid var(--color-primary); border-radius: 8px; background: #fff; box-shadow: 0 18px 60px rgba(7,29,57,.2); outline: none; transform: translateY(8px); transition: transform .2s ease; }
.modal.is-open .modal__dialog { transform: translateY(0); }
.modal__icon { width: 38px; height: 38px; margin-bottom: 20px; border: 1px solid var(--color-primary); border-radius: 50%; background: radial-gradient(circle at center, rgba(23,95,193,.14) 0 35%, transparent 36%); }
.modal__title { margin-bottom: 16px; color: var(--color-primary-dark); font-family: var(--font-serif); font-size: 1.55rem; letter-spacing: .05em; }
.modal__eyebrow { margin-bottom: 8px; color: #a51f2c; font-family: var(--font-display); font-size: .78rem; letter-spacing: .1em; }
.modal__body { color: var(--color-text); line-height: 1.9; }
.modal__body p { margin: 0; }
.modal__actions { margin-top: 28px; text-align: right; }
.modal__actions .button { min-width: 128px; min-height: 48px; }
.modal--warning .modal__dialog,
.modal--security .modal__dialog { border-color: rgba(165,31,44,.42); border-top-color: #a51f2c; }
.modal--warning .modal__icon,
.modal--security .modal__icon { position: relative; border-color: #a51f2c; background: rgba(165,31,44,.07); }
.modal--warning .modal__icon::after,
.modal--security .modal__icon::after { position: absolute; inset: 0; display: grid; color: #a51f2c; content: "!"; font-size: 1.35rem; font-weight: 700; place-items: center; }
.modal--security .modal__dialog { background-image: linear-gradient(rgba(23,95,193,.025) 1px, transparent 1px); background-size: 100% 5px; }
.is-modal-open { overflow: hidden; }
.state-1 .scene-media__state-image--normal,
.state-2 .scene-media__state-image--normal,
.state-3 .scene-media__state-image--normal,
.state-4 .scene-media__state-image--normal { opacity: 0; }
.state-1 .scene-media__state-image--confidential,
.state-2 .scene-media__state-image--confidential,
.state-3 .scene-media__state-image--confidential,
.state-4 .scene-media__state-image--confidential { opacity: 1; }
.state-1 .technology-monitor-anomaly,
.state-2 .technology-monitor-anomaly,
.state-3 .technology-monitor-anomaly,
.state-4 .technology-monitor-anomaly { opacity: 1; pointer-events: auto; }
.state-2 .technology-document-anomaly,
.state-3 .technology-document-anomaly,
.state-4 .technology-document-anomaly { opacity: 1; visibility: visible; pointer-events: auto; }
.state-2 .scene-media__project-image--normal,
.state-3 .scene-media__project-image--normal,
.state-4 .scene-media__project-image--normal { opacity: 0; }
.state-2 .scene-media__project-image--revealed,
.state-3 .scene-media__project-image--revealed,
.state-4 .scene-media__project-image--revealed { opacity: 1; }
.state-1 .product-card[data-product="human-01"],
.state-2 .product-card[data-product="human-01"],
.state-3 .product-card[data-product="human-01"],
.state-4 .product-card[data-product="human-01"] { cursor: default; }
.state-1 .product-card[data-product="human-01"]:hover,
.state-2 .product-card[data-product="human-01"]:hover,
.state-3 .product-card[data-product="human-01"]:hover,
.state-4 .product-card[data-product="human-01"]:hover { border-color: #c7d3dc; box-shadow: none; transform: none; }
.vision__statement.is-state-revealed { animation: vision-state-reveal .7s ease both; }
.product-card.is-warning-flicker .product-card__visual--human { animation: human-warning-flicker .32s ease; }
.site-transition { position: fixed; z-index: 950; inset: 0; visibility: hidden; pointer-events: none; background: rgba(5,20,42,.18); opacity: 0; }
.is-state-transitioning .site-transition { visibility: visible; animation: state-transition-flash .45s ease both; }
@keyframes human-warning-flicker { 0%, 100% { opacity: 1; } 35% { opacity: .58; } 65% { opacity: .84; } }
@keyframes vision-state-reveal { 0%, 18% { opacity: .25; transform: translateX(-2px); } 35% { opacity: .9; transform: translateX(1px); } 52% { opacity: .55; } 100% { opacity: 1; transform: none; } }
@keyframes state-transition-flash { 0% { opacity: 0; } 35% { opacity: 1; } 100% { opacity: 0; } }
@media (max-width: 767px) {
  .modal { padding: 16px; }
  .modal__dialog { max-height: calc(100dvh - 32px); padding: 34px 24px 28px; }
  .modal__title { font-size: 1.32rem; }
}
@media (prefers-reduced-motion: reduce) {
  .product-card.is-warning-flicker .product-card__visual--human,
  .vision__statement.is-state-revealed,
  .is-state-transitioning .site-transition { animation: none; }
  .modal, .modal__dialog { transition: none; }
}
/* Shared site mutation sequence */
.site-mutation { position: fixed; z-index: 2000; inset: 0; visibility: hidden; overflow: hidden; color: #eaf6ff; background: rgba(3,10,20,.92); opacity: 0; pointer-events: none; }
.site-mutation.is-active { visibility: visible; animation: mutation-overlay 1.75s linear both; }
.site-mutation__noise, .site-mutation__scanlines { position: absolute; inset: -8%; opacity: 0; pointer-events: none; }
.site-mutation__noise { background-image: repeating-radial-gradient(circle at 30% 40%, rgba(225,244,255,.15) 0 1px, transparent 1px 4px), repeating-linear-gradient(93deg, rgba(71,145,220,.09) 0 1px, transparent 1px 7px); background-size: 9px 7px, 13px 100%; mix-blend-mode: screen; }
.site-mutation.is-active .site-mutation__noise { animation: mutation-noise .72s steps(3, end) .18s both; }
.site-mutation__scanlines { inset: 0; background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(167,211,255,.11) 3px 4px); }
.site-mutation.is-active .site-mutation__scanlines { animation: mutation-scanlines 1.3s linear .12s both; }
.site-mutation__message { position: absolute; top: 50%; left: 50%; display: flex; width: min(90%, 560px); flex-direction: column; align-items: center; gap: 12px; text-align: center; opacity: 0; transform: translate(-50%, -50%); }
.site-mutation__message::before { width: 52px; height: 1px; margin-bottom: 4px; background: #a52332; content: ""; }
.site-mutation__message strong { font-family: var(--font-serif); font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 500; letter-spacing: .08em; text-shadow: 2px 0 rgba(71,145,220,.42); }
.site-mutation__message span { color: #9bc9ef; font-family: var(--font-display); font-size: .72rem; letter-spacing: .16em; }
.site-mutation.is-active .site-mutation__message { animation: mutation-message .82s ease .58s both; }
.site-mutation.is-ending { background-color: #020812; }
.is-site-mutating { overflow: hidden; }
.is-site-mutating > :not(.site-mutation) { animation: mutation-page-shift .78s steps(2, end) .16s both; }
@keyframes mutation-overlay { 0% { opacity: 0; } 7% { opacity: .3; } 12% { opacity: .08; } 18%, 78% { opacity: 1; } 100% { opacity: 1; background-color: #020812; } }
@keyframes mutation-noise { 0% { opacity: 0; transform: translateX(0); } 18% { opacity: .7; transform: translateX(-7px); } 42% { opacity: .35; transform: translateX(9px); } 68% { opacity: .58; transform: translateX(-3px); } 100% { opacity: 0; transform: none; } }
@keyframes mutation-scanlines { 0% { opacity: 0; transform: translateY(-5px); } 22%, 72% { opacity: .55; } 100% { opacity: .12; transform: translateY(5px); } }
@keyframes mutation-message { 0% { opacity: 0; transform: translate(calc(-50% - 5px), -50%); } 18% { opacity: .4; transform: translate(calc(-50% + 3px), -50%); } 35%, 100% { opacity: 1; transform: translate(-50%, -50%); } }
@keyframes mutation-page-shift { 0%, 100% { filter: none; transform: none; } 16% { filter: grayscale(.8) contrast(1.08); transform: translateX(-4px); } 38% { filter: grayscale(.45); transform: translateX(5px); } 65% { filter: grayscale(.7); transform: translateX(-2px); } }
@media (prefers-reduced-motion: reduce) {
  .site-mutation.is-active { animation: mutation-overlay-reduced .65s ease both; }
  .site-mutation.is-active .site-mutation__noise,
  .site-mutation.is-active .site-mutation__scanlines,
  .is-site-mutating > :not(.site-mutation) { animation: none; }
  .site-mutation.is-active .site-mutation__message { animation: mutation-message-reduced .25s ease .1s both; }
}
@keyframes mutation-overlay-reduced { from { opacity: 0; } to { opacity: 1; } }
@keyframes mutation-message-reduced { from { opacity: 0; } to { opacity: 1; } }
.employee-auth { display: grid; gap: 12px; margin-top: 24px; }
.employee-auth label { color: var(--color-primary-dark); font-size: .78rem; font-weight: 600; letter-spacing: .05em; }
.employee-auth input { width: 100%; min-height: 52px; padding: 12px 15px; border: 1px solid #b9cbdd; border-radius: 4px; color: var(--color-text); background: #fff; font: inherit; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.employee-auth input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(23,95,193,.13); outline: none; }
.employee-auth input[aria-invalid="true"] { border-color: #a52332; }
.employee-auth__error { padding: 10px 12px; border-left: 3px solid #a52332; color: #8f1d29; background: rgba(165,35,50,.06); font-size: .78rem; line-height: 1.7; }
.employee-auth .button { width: 100%; min-height: 50px; margin-top: 4px; }
.site-mutation--archive .site-mutation__noise { filter: contrast(.7); opacity: .45; }
.is-archive-mutating > :not(.site-mutation) { animation-name: mutation-page-shift-archive; }
@keyframes mutation-page-shift-archive { 0%, 100% { filter: none; transform: none; } 28% { filter: grayscale(.35); transform: translateX(-2px); } 60% { filter: grayscale(.5); transform: translateX(2px); } }
.share-panel { position: fixed; z-index: 300; right: 24px; bottom: 24px; width: min(360px, calc(100vw - 48px)); padding: 28px; border: 1px solid rgba(101,184,220,.45); border-radius: 8px; color: #eaf6ff; background: linear-gradient(145deg, rgba(9,31,59,.97), rgba(18,59,143,.97)); box-shadow: 0 16px 48px rgba(5,20,42,.24); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); transition: opacity .3s ease, visibility .3s ease, transform .3s ease; }
.share-panel__eyebrow { margin-bottom: 8px; color: #8fc8f4; font-family: var(--font-display); font-size: .68rem; letter-spacing: .12em; }
.share-panel h2 { margin-bottom: 10px; color: #fff; font-family: var(--font-serif); font-size: 1.45rem; letter-spacing: .05em; }
.share-panel > p:not(.share-panel__eyebrow) { margin-bottom: 20px; color: rgba(234,246,255,.78); font-size: .85rem; }
.share-panel .button { width: 100%; min-height: 50px; border-color: #fff; color: var(--color-primary); background: #fff; }
.share-panel .button:hover { color: #fff; border-color: #65b8dc; background: #175fc1; }
.share-panel small { display: block; margin-top: 10px; color: rgba(234,246,255,.62); font-size: .66rem; text-align: center; }
.state-4 .status-label { max-width: 100%; padding-inline: 7px; color: #dff2ff; border-color: rgba(101,184,220,.7); background: #15395f; font-size: clamp(.48rem, .72vw, .59rem); line-height: 1.35; text-align: center; }
.state-4 .share-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
@media (max-width: 767px) {
  .share-panel { right: 12px; bottom: 12px; width: calc(100vw - 24px); padding: 20px; }
  .share-panel h2 { font-size: 1.25rem; }
}
.human-report { padding: 64px 0 0; border-top: 1px solid var(--human-border); background: var(--human-bg-sub); }
.human-report__panel { display: grid; grid-template-columns: 110px minmax(0, 1fr) auto; align-items: center; gap: 28px; padding: 26px 30px; border: 1px solid var(--human-border); background: rgba(16,36,56,.7); }
.human-report__label { margin: 0; color: var(--human-blue); font-family: var(--font-display); font-size: .78rem; letter-spacing: .16em; }
.human-report__content h2 { margin-bottom: 6px; color: var(--human-text); font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; letter-spacing: .05em; }
.human-report__content p { margin: 0; color: var(--human-text-light); font-size: .78rem; }
.human-report__button { min-height: 48px; padding: 11px 24px; color: #dcecff; border-color: rgba(79,140,255,.7); background: rgba(79,140,255,.1); }
.human-report__button:hover { color: #fff; border-color: var(--human-blue); background: rgba(79,140,255,.28); }
@media (max-width: 767px) {
  .human-report { padding-top: 44px; }
  .human-report__panel { grid-template-columns: 1fr; gap: 16px; padding: 22px 20px; text-align: left; }
  .human-report__button { width: 100%; }
}
