:root {
  --blue: #4169e1;
  --deep: #2747b5;
  --ink: #111827;
  --paper: #f8faff;
  --line: #d7dff5;
  --muted: #5b6478;
  --green: #5f9f86;
  --mint: #dff3e8;
  --pink: #e990b5;
  --pink-soft: #fde8f0;
  --sky: #64b9f2;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.9;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 300;
  letter-spacing: -0.025em;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: auto-phrase;
}
p,
li,
strong {
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
}
.nowrap {
  white-space: nowrap;
}
.en,
.brand {
  font-family: "Work Sans", sans-serif;
}
.shell {
  width: min(100%, 1360px);
  margin: auto;
  padding-inline: clamp(24px, 5vw, 72px);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.skip {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 10px;
  padding: 8px 14px;
  background: #fff;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
.entry {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 44%,
    #5a82f2 0%,
    #315fdb 12%,
    #193e9d 27%,
    #0a183d 54%,
    #01040a 84%
  );
  color: #fff;
  transition: opacity 0.6s;
}
.entry:before,
.entry:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.04);
}
.entry.show-logo:before {
  background: radial-gradient(
    circle,
    #fffffff5 0%,
    #c4d7ffc7 8%,
    #5b82f27a 23%,
    #4169e129 42%,
    transparent 67%
  );
  animation: tunnel-light 1.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.entry.show-logo:after {
  background: repeating-radial-gradient(
    circle,
    transparent 0 7%,
    #ffffff24 7.4% 7.8%,
    transparent 8.2% 14%
  );
  animation: tunnel-rings 1.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.entry.done {
  pointer-events: none;
  opacity: 0;
}
.entry button,
.entry-logo {
  position: relative;
  z-index: 2;
}
.entry button {
  display: grid;
  place-items: center;
  width: min(76vw, 430px);
  aspect-ratio: 1;
  border: 1px solid #ffffff36;
  border-radius: 50%;
  background: #ffffff08;
  color: #fff;
  cursor: pointer;
  box-shadow:
    inset 0 0 80px #4169e129,
    0 0 100px #4169e126;
}
.entry button span {
  letter-spacing: 0.2em;
}
.entry button small {
  color: #d8e2ff;
  letter-spacing: 0.16em;
}
.entry-logo {
  display: none;
  width: min(58vw, 440px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 1px #fffffff0) drop-shadow(0 0 9px #ffffff2e)
    drop-shadow(0 30px 80px #4169e166);
}
.entry.show-logo button {
  display: none;
}
.entry.show-logo .entry-logo {
  display: block;
  animation: logo-in 1.58s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes logo-in {
  0% {
    opacity: 0;
    filter: blur(22px);
    transform: scale(0.54);
  }
  58% {
    opacity: 1;
    filter: blur(2px);
    transform: scale(1.06);
  }
  82% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}
@keyframes tunnel-light {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.04);
  }
  38% {
    opacity: 0.42;
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(1.08);
  }
}
@keyframes tunnel-rings {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.05);
  }
  28% {
    opacity: 0.18;
  }
  78% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }
}
header {
  position: fixed;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding-inline: clamp(24px, 5vw, 72px);
  border-bottom: 1px solid #d7dff5b8;
  background: linear-gradient(90deg, #fffffff2, #f4f7ffe8);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.94;
}
nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 0.78rem;
}
nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.contact {
  margin-left: 28px;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
}
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 76px;
  background:
    radial-gradient(circle at 78% 46%, #6c8cf02e, transparent 28%),
    linear-gradient(135deg, #fff, #eef3ff);
}
.hero:before {
  position: absolute;
  inset: 76px 0 0;
  background-image:
    linear-gradient(#4169e10a 1px, transparent 1px),
    linear-gradient(90deg, #4169e10a 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 76px);
}
.hero-copy {
  width: min(60%, 780px);
  padding-block: 90px 130px;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-family: "Work Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}
.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 1.25;
}
.hero h1 em {
  color: var(--blue);
  font-style: normal;
}
.lead {
  max-width: 570px;
}
.actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  justify-content: space-between;
  min-width: 164px;
  padding: 13px 20px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
}
.btn.outline {
  background: #ffffffc7;
  color: var(--ink);
}
.hero-art {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: 5%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: 1px solid #4169e128;
  border-radius: 50%;
  box-shadow:
    inset 0 0 100px #4169e118,
    0 30px 100px #2747b526;
}
.orbit {
  position: absolute;
  inset: 14%;
  border: 1px dashed #4169e166;
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 30%;
  aspect-ratio: 1;
  border: 1px solid #4169e166;
  border-radius: 50%;
  background: #ffffffc9;
  color: var(--deep);
  letter-spacing: 0.12em;
  transform: translate(-50%, -50%);
}
.node {
  position: absolute;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 24px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
.n1 {
  top: 14%;
  left: 48%;
}
.n2 {
  right: 12%;
  top: 48%;
  animation-delay: -0.6s;
}
.n3 {
  bottom: 12%;
  left: 42%;
  animation-delay: -1.2s;
}
.n4 {
  left: 12%;
  top: 50%;
  animation-delay: -1.6s;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.65);
  }
}
.band {
  overflow: hidden;
  padding: 16px;
  background: linear-gradient(90deg, #17389e, #4169e1, #2747b5);
  color: #fff;
  white-space: nowrap;
}
.band div {
  width: max-content;
  letter-spacing: 0.16em;
  animation: marquee 24s linear infinite;
}
.band span {
  margin-inline: 30px;
  color: #c4d1ff;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
section.block {
  padding-block: clamp(88px, 9vw, 140px);
}
.philosophy {
  background:
    radial-gradient(circle at 82% 36%, #a9bfff2b, transparent 30%),
    linear-gradient(#f8faff, #f2f5ff);
}
.ph-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}
.story h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.45;
}
.story p:not(.eyebrow) {
  color: var(--muted);
}
.flow {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff, #edf2ff);
  box-shadow: 0 32px 90px #2747b51a;
}
.flow-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}
.stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.stages li {
  position: relative;
  padding: 20px 16px;
  border-right: 1px solid var(--line);
}
.stages li:last-child {
  border: 0;
}
.stages li:not(:last-child):after {
  position: absolute;
  top: 82px;
  right: -13px;
  display: grid;
  place-items: center;
  width: 26px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  content: "→";
}
.stages svg {
  width: 100%;
  height: 120px;
}
.stages circle {
  fill: var(--blue);
  transform-origin: center;
  animation: pulse 2.4s infinite;
}
.stages path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 260;
  animation: draw 4s ease-in-out infinite;
}
.stages h3 {
  margin: 5px 0;
  color: var(--deep);
  font-size: 1.4rem;
}
.stages p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.6;
}
@keyframes draw {
  0% {
    stroke-dashoffset: 260;
    opacity: 0.3;
  }
  45%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.mvv {
  padding-block: clamp(88px, 9vw, 140px);
  background:
    radial-gradient(circle at 10% 20%, #4169e166, transparent 28%),
    linear-gradient(135deg, #0d1428, #111827 55%, #17285f);
  color: #fff;
}
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mvv article {
  padding-right: clamp(30px, 6vw, 80px);
}
.mvv article + article {
  padding-right: 0;
  padding-left: clamp(30px, 6vw, 80px);
  border-left: 1px solid #a9bfff47;
}
.mvv h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.45;
}
.mvv p {
  color: #c5cdea;
}
.photo {
  padding-top: clamp(80px, 8vw, 130px);
  background: #fff;
}
.photo-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.photo-title p:last-child {
  max-width: 600px;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
}
.photo-frame {
  position: relative;
  height: min(62vw, 680px);
  min-height: 420px;
  overflow: hidden;
}
.photo-frame:after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, #071127b8);
  content: "";
}
.photo-frame span {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 26px;
  left: 30px;
  padding-top: 14px;
  border-top: 1px solid #ffffff70;
  color: #fff;
  letter-spacing: 0.14em;
}
.people {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 9vw, 140px);
  background:
    radial-gradient(circle at 86% 14%, #4169e129, transparent 26rem),
    linear-gradient(#fff, #f1f5ff 88%);
}
.people:before {
  position: absolute;
  top: 8%;
  left: -9rem;
  width: 24rem;
  aspect-ratio: 1;
  border: 1px solid #4169e11a;
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem #4169e108,
    0 0 0 11rem #4169e105;
  content: "";
}
.people-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: clamp(36px, 8vw, 120px);
  margin-bottom: clamp(48px, 6vw, 82px);
}
.people-head h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}
.people-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 76px;
  gap: clamp(12px, 1.4vw, 22px);
}
.person {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d7dff5e0;
  border-radius: clamp(14px, 1.5vw, 24px);
  background: #eaf0ff;
  box-shadow: 0 22px 70px #2747b51a;
}
.person:after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 #ffffffc7;
  content: "";
  pointer-events: none;
}
.person.wide {
  grid-column: span 6;
  grid-row: span 4;
}
.person.portrait {
  grid-column: span 3;
  grid-row: span 5;
}
.person.square {
  grid-column: span 3;
  grid-row: span 4;
}
.person.tall {
  grid-column: span 3;
  grid-row: span 6;
}
.person.landscape {
  grid-column: span 5;
  grid-row: span 4;
}
.person img {
  filter: saturate(0.7) contrast(1.03);
  transition:
    filter 0.45s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.person:hover img {
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.025);
}
.skeleton {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #edf2ff, #dce6ff 45%, #cbd9ff);
}
.skeleton:before,
.skeleton:after {
  position: absolute;
  border: 1px solid #4169e121;
  border-radius: 50%;
  content: "";
}
.skeleton:before {
  right: -14%;
  bottom: -28%;
  width: 78%;
  aspect-ratio: 1;
  box-shadow:
    0 0 0 2.2rem #4169e108,
    0 0 0 5rem #4169e105;
}
.skeleton:after {
  top: 12%;
  left: 12%;
  width: 16%;
  aspect-ratio: 1;
  background: #ffffff66;
}
.skeleton span {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, #ffffff8c 44%, transparent 66%);
  animation: person-shimmer 2.8s ease-in-out infinite;
  transform: translateX(-100%);
}
@keyframes person-shimmer {
  55%,
  100% {
    transform: translateX(100%);
  }
}
.service {
  background: radial-gradient(circle at 10% 60%, #a9bfff2b, transparent 25rem), #fff;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 58px;
}
.section-title h2 {
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}
.service-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #f7f9ff, #e9efff);
  box-shadow: 0 32px 80px #2747b520;
}
.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}
.service-copy .harunoa-logo {
  width: min(100%, 390px);
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  filter: none;
}
.service-copy h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
}
.service-copy > p {
  color: var(--muted);
}
.service-card img {
  filter: saturate(0.85);
}
.way {
  background: linear-gradient(#f8faff, #eef2ff);
}
.way-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.way-grid li {
  min-height: 240px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff70;
}
.way-grid b {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 300;
}
.way-grid h3 {
  margin-top: 28px;
  font-family: "Work Sans", sans-serif;
}
.way-grid p {
  color: var(--muted);
}
.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  background:
    radial-gradient(circle at 18% 18%, #8ea9ff85, transparent 30%),
    linear-gradient(125deg, #101d4b, #2747b5 42%, #4169e1 72%, #19378f);
  color: #fff;
}
.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-inner h2 {
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}
footer {
  padding-top: 70px;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 70px;
  padding-bottom: 60px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand {
  margin: 0;
  font-size: 2.7rem;
  letter-spacing: 0.12em;
}
.footer-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.copyright {
  padding: 25px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 1279px) {
  .hero-art {
    right: -10%;
    width: min(66vw, 820px);
  }
}
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .hero-copy {
    width: 72%;
  }
  .ph-grid,
  .service-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stages,
  .way-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stages li:nth-child(2n),
  .way-grid li:nth-child(2n) {
    border-right: 0;
  }
  .stages li:after {
    display: none;
  }
  .photo-title {
    align-items: start;
    flex-direction: column;
  }
  .service-card img {
    height: 460px;
  }
  .footer-nav {
    padding-block: 30px;
    border-block: 1px solid var(--line);
  }
  .people-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .people-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 68px;
  }
  .person.wide,
  .person.landscape {
    grid-column: span 5;
  }
  .person.portrait,
  .person.square,
  .person.tall {
    grid-column: span 3;
  }
}
@media (max-width: 767px) {
  header {
    grid-template-columns: 1fr auto;
  }
  .contact {
    margin-left: 0;
  }
  .hero {
    min-height: 850px;
  }
  .hero-copy {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 370px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }
  .hero-art {
    right: -38%;
    bottom: 4%;
    width: 138vw;
  }
  .actions {
    align-items: start;
    flex-direction: column;
  }
  .ph-grid {
    gap: 45px;
  }
  .flow {
    padding: 26px 18px;
  }
  .stages,
  .way-grid,
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .stages li,
  .way-grid li {
    border-right: 0;
  }
  .mvv article {
    padding: 0 0 50px;
  }
  .mvv article + article {
    padding: 50px 0 0;
    border-top: 1px solid #a9bfff47;
    border-left: 0;
  }
  .photo-frame {
    min-height: 400px;
  }
  .service-card img {
    height: 400px;
  }
  .contact-inner {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
    padding-inline: 14px;
  }
  .person.wide,
  .person.landscape {
    grid-column: span 2;
    height: clamp(210px, 58vw, 380px);
  }
  .person.portrait,
  .person.tall {
    grid-column: span 1;
    height: clamp(250px, 76vw, 430px);
  }
  .person.square {
    grid-column: span 1;
    height: clamp(175px, 46vw, 280px);
  }
}
@media (max-width: 479px) {
  .shell {
    padding-inline: 20px;
  }
  .people-head h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }
  .brand {
    font-size: 1.35rem;
  }
  .brand-logo {
    width: 30px;
    height: 30px;
  }
  .entry-logo {
    width: min(72vw, 340px);
  }
  .contact {
    padding: 9px 12px;
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.person {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.04em;
}
.hero:after {
  display: none;
}
.hero-copy {
  position: relative;
  z-index: 4;
  width: min(48%, 700px);
}
.members {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 9vw, 140px);
  background: #fff;
}
.members:before {
  position: absolute;
  top: 12%;
  right: -10rem;
  width: 28rem;
  aspect-ratio: 1;
  border: 1px solid #4169e11a;
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem #4169e108,
    0 0 0 11rem #4169e105;
  content: "";
}
.members-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 58px;
}
.members-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}
.members-head > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 38px);
}
.member {
  min-width: 0;
  border-top: 1px solid var(--line);
}
.member-photo {
  position: relative;
  height: clamp(360px, 39vw, 560px);
  margin: 0;
  overflow: hidden;
  background: #e7edff;
}
.member-photo:after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, #081436a3);
  content: "";
}
.member-photo img {
  height: 108%;
  filter: saturate(0.65) contrast(1.04);
  transform: translateY(-4%);
  transition:
    filter 0.5s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.member:hover .member-photo img {
  filter: saturate(0.92) contrast(1.04);
  transform: translateY(-4%) scale(1.035);
}
.member-photo span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  padding-top: 12px;
  border-top: 1px solid #ffffff75;
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}
.member-body {
  padding: 28px 4px 6px;
}
.member-body > p {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}
.member-body h3 {
  min-height: 2.9em;
  margin-bottom: 24px;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
}
@media (max-width: 1023px) {
  .members-head {
    align-items: start;
    flex-direction: column;
  }
  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .member:last-child {
    grid-column: 1/-1;
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .members-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .member:last-child {
    grid-column: auto;
    width: 100%;
  }
  .member-photo {
    height: min(128vw, 560px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-person {
    animation: none !important;
    transform: rotate(var(--r));
  }
  .member-photo img {
    transition: none;
  }
}
header > nav {
  gap: clamp(12px, 1.35vw, 24px);
  font-size: 0.7rem;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 1fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  min-height: 680px;
  gap: clamp(8px, 1vw, 14px);
  padding-inline: clamp(12px, 2vw, 28px);
}
.photo-slot {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d7dff5e0;
  border-radius: clamp(10px, 1.2vw, 18px);
}
.photo-slot:after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, #0814368f);
  content: "";
}
.photo-slot b {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  padding-top: 12px;
  border-top: 1px solid #ffffff70;
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.15em;
}
.photo-slot.slot1 {
  grid-row: 1/3;
}
.photo-slot.slot2 {
  grid-column: 2;
  grid-row: 1;
}
.photo-slot.slot3 {
  grid-column: 3;
  grid-row: 1/3;
}
.photo-slot.slot4 {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 1023px) {
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 300px);
    min-height: 0;
  }
  .photo-slot.slot1,
  .photo-slot.slot2,
  .photo-slot.slot3,
  .photo-slot.slot4 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 767px) {
  .photo-grid {
    grid-template-rows: repeat(2, clamp(220px, 58vw, 330px));
    padding-inline: 10px;
  }
}
@media (max-width: 479px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }
}
.people {
  background:
    radial-gradient(circle at 86% 14%, #4169e129, transparent 26rem),
    radial-gradient(circle, #4169e112 1px, transparent 1.5px) 0 0/30px 30px,
    linear-gradient(#fff, #f1f5ff 88%);
}
.people:after {
  position: absolute;
  inset: 24% -12% -18%;
  background: repeating-radial-gradient(
    ellipse at 50% 52%,
    transparent 0 66px,
    #4169e10d 67px 68px
  );
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.people-head {
  position: relative;
  z-index: 2;
}
.people-grid {
  position: relative;
  z-index: 2;
  display: block;
  height: clamp(620px, 61vw, 820px);
  perspective: 1200px;
}
.people-orbit {
  position: absolute;
  inset: 0 clamp(12px, 3vw, 50px);
  animation: people-vortex-spin 36s linear infinite paused;
  transform-origin: 50% 52%;
  will-change: transform;
}
.people-grid:hover .people-orbit {
  animation-play-state: running;
}
.people-orbit:before,
.people-orbit:after {
  position: absolute;
  top: 52%;
  left: 50%;
  border: 1px solid #4169e121;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.people-orbit:before {
  width: 54%;
  aspect-ratio: 1;
  box-shadow:
    0 0 0 5rem #4169e108,
    inset 0 0 70px #4169e10d;
}
.people-orbit:after {
  width: 28%;
  aspect-ratio: 1;
  border-style: dashed;
}
.person {
  position: absolute;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ffffffdb;
  border-radius: clamp(10px, 1.1vw, 18px);
  background: #eaf0ff;
  box-shadow: 0 22px 70px #2747b529;
  transform: translate(-50%, -50%) rotate(var(--photo-rotate));
}
.person:nth-child(1) {
  --photo-rotate: -5deg;
  z-index: 8;
  top: 7%;
  left: 48%;
  width: 27%;
  height: auto;
  aspect-ratio: 1.6;
}
.person:nth-child(2) {
  --photo-rotate: 34deg;
  z-index: 7;
  top: 19%;
  left: 76%;
  width: 21%;
  height: auto;
  aspect-ratio: 0.88;
}
.person:nth-child(3) {
  --photo-rotate: 82deg;
  z-index: 6;
  top: 48%;
  left: 88%;
  width: 19%;
  height: auto;
  aspect-ratio: 1.12;
}
.person:nth-child(4) {
  --photo-rotate: 136deg;
  z-index: 5;
  top: 75%;
  left: 74%;
  width: 21%;
  height: auto;
  aspect-ratio: 0.82;
}
.person:nth-child(5) {
  --photo-rotate: 182deg;
  z-index: 4;
  top: 88%;
  left: 49%;
  width: 24%;
  height: auto;
  aspect-ratio: 1.55;
}
.person:nth-child(6) {
  --photo-rotate: 225deg;
  z-index: 3;
  top: 72%;
  left: 23%;
  width: 18%;
  height: auto;
  aspect-ratio: 0.8;
}
.person:nth-child(7) {
  --photo-rotate: 274deg;
  z-index: 2;
  top: 41%;
  left: 13%;
  width: 22%;
  height: auto;
  aspect-ratio: 1.55;
}
.person:nth-child(8) {
  --photo-rotate: 326deg;
  z-index: 1;
  top: 22%;
  left: 30%;
  width: 16%;
  height: auto;
  aspect-ratio: 1;
}
.people-center {
  position: absolute;
  z-index: 12;
  top: 52%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(92px, 12vw, 154px);
  aspect-ratio: 1;
  border: 1px solid #4169e147;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #fff, #eff4fff0 56%, #c4d3ffb8);
  box-shadow:
    0 20px 70px #2747b52e,
    0 0 0 18px #ffffff61;
  color: var(--deep);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  transform: translate(-50%, -50%);
}
.people-center i {
  position: absolute;
  bottom: 28%;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px #4169e1b8;
}
.people-hint {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 8px;
  margin: 0;
  color: var(--deep);
  font-size: 0.58rem;
  letter-spacing: 0.17em;
}
@keyframes people-vortex-spin {
  to {
    transform: rotate(360deg);
  }
}
.service {
  background:
    radial-gradient(circle at 10% 60%, #a9bfff2b, transparent 25rem),
    radial-gradient(circle, #4169e10d 1px, transparent 1.5px) 0 0/34px 34px,
    #fff;
}
.way {
  background:
    repeating-linear-gradient(118deg, transparent 0 70px, #4169e109 71px 72px),
    linear-gradient(#f8faff, #eef2ff);
}
.members {
  background:
    radial-gradient(circle, #4169e10c 1px, transparent 1.5px) 0 0/32px 32px,
    #fff;
}
@media (max-width: 1023px) {
  .people-grid {
    height: 720px;
  }
  .people-orbit {
    inset-inline: -2%;
  }
  .people-hint {
    display: none;
  }
}
@media (max-width: 767px) {
  .people-grid {
    height: 670px;
    padding-inline: 14px;
  }
  .people-orbit {
    inset-inline: -8%;
  }
  .person.wide,
  .person.landscape,
  .person.portrait,
  .person.tall,
  .person.square {
    height: auto;
  }
}
@media (max-width: 479px) {
  .people-grid {
    height: 590px;
  }
  .people-orbit {
    inset-inline: -18%;
  }
  .people-center {
    width: 86px;
    font-size: 0.48rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .people-orbit {
    animation: none !important;
  }
}
body {
  background:
    radial-gradient(circle at 8% 26%, #dff3e894, transparent 22rem),
    radial-gradient(circle at 92% 64%, #fde8f085, transparent 24rem), var(--paper);
}
header {
  background: linear-gradient(90deg, #fffffff2, #f1fbf6e8 55%, #fff3f8e2);
}
.hero {
  background:
    radial-gradient(circle at 78% 46%, #6c8cf02b, transparent 28%),
    radial-gradient(circle at 10% 76%, #5f9f8624, transparent 27%),
    radial-gradient(circle at 42% 8%, #e990b521, transparent 24%),
    linear-gradient(135deg, #fff, #eef3ff);
}
.philosophy {
  background:
    radial-gradient(circle at 82% 36%, #a9bfff2b, transparent 30%),
    radial-gradient(circle at 8% 76%, #5f9f8621, transparent 25%),
    radial-gradient(circle at 92% 12%, #e990b51f, transparent 22%),
    linear-gradient(#f8faff, #f2f5ff);
}
.mvv {
  background:
    radial-gradient(circle at 10% 18%, #5f9f8652, transparent 29%),
    radial-gradient(circle at 88% 78%, #e990b53d, transparent 26%),
    radial-gradient(circle at 50% 42%, #4169e147, transparent 34%),
    linear-gradient(135deg, #0d1428, #111827 55%, #17285f);
}
.photo {
  background:
    radial-gradient(circle at 12% 20%, #dff3e8b8, transparent 24rem),
    radial-gradient(circle at 90% 38%, #fde8f0b3, transparent 25rem), #fff;
}
.photo-slot:nth-child(3n + 2) .skeleton,
.person:nth-child(3n + 2) .skeleton,
.member:nth-child(3n + 2) .skeleton {
  background: linear-gradient(145deg, #f2fbf6, var(--mint) 46%, #c8e8dc);
}
.photo-slot:nth-child(3n) .skeleton,
.person:nth-child(3n) .skeleton,
.member:nth-child(3n) .skeleton {
  background: linear-gradient(145deg, #fff5f9, var(--pink-soft) 46%, #f4cadb);
}
.people {
  background:
    radial-gradient(circle at 86% 14%, #e990b533, transparent 26rem),
    radial-gradient(circle at 10% 76%, #5f9f862e, transparent 25rem),
    radial-gradient(circle at 52% 48%, #4169e11a, transparent 31rem),
    radial-gradient(circle, #4169e112 1px, transparent 1.5px) 0 0/30px 30px,
    linear-gradient(#fff, #f1f5ff 88%);
}
.service {
  background:
    radial-gradient(circle at 12% 68%, #5f9f862b, transparent 24rem),
    radial-gradient(circle at 88% 20%, #e990b529, transparent 23rem),
    radial-gradient(circle, #4169e10d 1px, transparent 1.5px) 0 0/34px 34px,
    #fff;
}
.service-card {
  border-color: #cfe1d8e6;
  background:
    radial-gradient(circle at 18% 84%, #5f9f8621, transparent 30%),
    radial-gradient(circle at 82% 14%, #e990b524, transparent 28%),
    linear-gradient(145deg, #fbfdff, #f3fbf7 48%, #fff4f8);
}
.service-card img {
  filter: saturate(0.94) contrast(1.02);
}
.way {
  background:
    radial-gradient(circle at 12% 14%, #4169e129, transparent 24rem),
    radial-gradient(circle at 88% 84%, #2747b52e, transparent 26rem),
    repeating-linear-gradient(118deg, transparent 0 70px, #4169e10c 71px 72px),
    linear-gradient(135deg, #f8faff, #e8eeff 48%, #d2ddff);
}
.way-grid li {
  border-color: #4169e12b;
  background: linear-gradient(145deg, #ffffffe0, #e7eeffd1);
}
.way-grid li:nth-child(3n + 2) {
  background: linear-gradient(145deg, #f2f6ffe6, #d3dfffdb);
}
.way-grid li:nth-child(3n) {
  background: linear-gradient(145deg, #e6eeffe6, #becfffd6);
}
.way-grid li:nth-child(4),
.way-grid li:nth-child(7) {
  background: linear-gradient(145deg, #e1eafff0, #b7caffe6);
}
.members {
  background:
    radial-gradient(circle at 8% 80%, #dff3e8b3, transparent 22rem),
    radial-gradient(circle at 90% 14%, #fde8f0a8, transparent 22rem),
    radial-gradient(circle, #4169e10c 1px, transparent 1.5px) 0 0/32px 32px,
    #fff;
}
.contact-section {
  background:
    radial-gradient(circle at 18% 18%, #5f9f868c, transparent 31%),
    radial-gradient(circle at 86% 84%, #e990b56b, transparent 28%),
    linear-gradient(125deg, #101d4b, #2747b5 42%, #4169e1 72%, #19378f);
}
footer {
  background:
    radial-gradient(circle at 7% 88%, #dff3e870, transparent 19rem),
    radial-gradient(circle at 92% 12%, #fde8f066, transparent 18rem), #fff;
}
.line-contact {
  display: grid;
  align-items: center;
}
.line-contact--compact {
  grid-template-columns: 72px 1fr;
  gap: 16px;
  width: 100%;
  margin: 4px 0 26px;
  padding: 15px;
  border: 1px solid #4169e129;
  border-radius: 12px;
  background: #ffffffb8;
}
.line-contact--clickable {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.line-contact--clickable:hover {
  border-color: #4169e15c;
  box-shadow: 0 14px 36px #2747b51f;
  transform: translateY(-2px);
}
.line-contact--clickable:focus-visible {
  outline: 3px solid #4169e1;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .line-contact--clickable {
    transition: none;
  }
}
.line-contact--compact > div:last-child {
  display: grid;
  gap: 3px;
}
.line-contact--compact > div:last-child > span {
  color: var(--blue);
  font-family: "Work Sans", sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}
.line-contact--compact strong {
  font-size: 0.9rem;
}
.line-contact--compact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.6;
}
.line-contact__qr {
  display: block;
  width: 72px !important;
  height: 72px !important;
  flex: 0 0 auto;
  border: 6px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px #2747b529;
  object-fit: contain !important;
  filter: none !important;
}
