:root {
  color-scheme: dark;
  --white: #fff7f7;
  --red-a: #ff224a;
  --red-b: #ff6a2a;
  --red-c: #a6001e;
  --red-d: #ffb0a2;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  -ms-overflow-style: none;
  background: #050505;
  color: var(--white);
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  position: relative;
}

.scroll-stage {
  position: relative;
  min-height: var(--stage-scroll-height, 1200vh);
  perspective: 1400px;
}

.stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.stage__layer {
  position: absolute;
  inset: 0;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(2rem, 6vw, 7rem);
  pointer-events: none;
}

.stage__video {
  --stage-opacity: 1;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.stage__video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.72));
}

.stage__video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.04);
}

.stage-depth {
  --stage-y: 0px;
  --stage-x: 0px;
  --stage-scale: 1;
  --stage-rotate: 0deg;
  --stage-blur: 0px;
  --stage-opacity: 0;
  opacity: var(--stage-opacity);
  filter: blur(var(--stage-blur));
  transform: translate3d(var(--stage-x), var(--stage-y), 0) rotate(var(--stage-rotate)) scale(var(--stage-scale));
  transform-origin: center;
  will-change: transform, filter, opacity;
}

.stage__layer--hero {
  z-index: 2;
  text-align: center;
}

.stage__layer--presentation {
  z-index: 3;
  display: block;
  padding: 0;
}

.stage__layer--values {
  z-index: 4;
  display: block;
  padding: 0;
}

.stage__layer--common {
  z-index: 5;
  display: block;
  padding: 0;
}

.stage__layer--support {
  z-index: 6;
  display: block;
  padding: 0;
}

.stage__layer--functioning {
  z-index: 7;
  display: block;
  padding: 0;
}

.stage__layer--members {
  z-index: 8;
  display: block;
  padding: 0;
}

.stage__layer--join {
  z-index: 9;
  display: block;
  padding: 0;
}

.stage__layer--closing {
  z-index: 10;
  display: block;
  padding: 0;
}

.hero {
  position: relative;
  width: min(100%, 90rem);
}

.hero__title-shell,
.hero__subtitle-shell,
.hero__scroll-hint,
.language-switcher {
  --stage-opacity: 1;
}

.language-switcher {
  position: absolute;
  top: clamp(1.1rem, 3vw, 2.2rem);
  right: clamp(1.1rem, 3vw, 2.4rem);
  z-index: 3;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  color: rgba(255, 247, 247, 0.62);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: auto;
}

.language-switcher button {
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: rgba(255, 247, 247, 0.48);
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  color: var(--white);
  text-shadow: 0 0 18px rgba(255, 34, 74, 0.32);
}

.language-switcher button:focus-visible {
  outline: 1px solid rgba(255, 247, 247, 0.72);
  outline-offset: 0.28rem;
}

.stage-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: grid;
  width: clamp(2.4rem, 4vw, 3.4rem);
  align-content: center;
  justify-items: center;
  gap: 0.55rem;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 160ms ease;
}

.stage-nav:hover,
.stage-nav:focus-within {
  opacity: 1;
}

.stage-nav::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: min(20rem, 44vh);
  content: "";
  background: rgba(255, 247, 247, 0.28);
  transform: translate(-50%, -50%);
}

.stage-nav button {
  position: relative;
  z-index: 1;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.stage-nav button::before {
  width: 0.38rem;
  height: 0.38rem;
  content: "";
  border-radius: 999px;
  background: rgba(255, 247, 247, 0.46);
  transition: background 140ms ease, transform 140ms ease;
}

.stage-nav button:hover::before,
.stage-nav button:focus-visible::before,
.stage-nav button.is-active::before {
  background: var(--white);
  transform: scale(1.55);
}

.stage-nav button:focus-visible {
  outline: 1px solid rgba(255, 247, 247, 0.62);
  outline-offset: 0.14rem;
}

.stage-nav span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero__title {
  max-width: 12ch;
  margin: 0 auto;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  color: transparent;
  font-size: clamp(4rem, 13vw, 12.5rem);
  font-weight: 800;
  letter-spacing: -0.095em;
  line-height: 0.82;
  text-wrap: balance;
  text-shadow: 0 0 38px rgba(255, 34, 74, 0.18);
  animation: red-flow 5600ms ease-in-out 800ms infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__subtitle {
  margin-top: clamp(1.35rem, 3vw, 2.4rem);
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(0.95rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.hero__desktop-note {
  display: none;
}

.hero__scroll-hint {
  position: absolute;
  top: calc(100% + clamp(2.2rem, 5vh, 3.8rem));
  right: 0;
  left: 0;
  display: grid;
  width: max-content;
  margin: 0 auto;
  place-items: center;
  gap: 0.62rem;
  color: rgba(255, 247, 247, 0.76);
  translate: 0 0;
  animation: scroll-hint-float 1800ms ease-in-out infinite alternate;
}

.hero__scroll-text {
  margin: 0;
  font-size: clamp(0.64rem, 0.9vw, 0.78rem);
  font-weight: 300;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: lowercase;
}

.hero__scroll-arrow {
  width: 0.78rem;
  height: 0.78rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  rotate: 45deg;
}

.presentation__heading {
  position: absolute;
  top: clamp(1.35rem, 3.8vh, 2.5rem);
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 2.5rem);
  padding-block: 0.15em;
  overflow: visible;
  text-align: center;
  transform: translate3d(calc(-50% + var(--stage-x)), var(--stage-y), 0) scale(var(--stage-scale));
  transform-origin: top center;
}

.presentation__heading.is-compact {
  text-align: center;
}

.presentation__title {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.75rem, 7.1vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.presentation__heading.is-compact .presentation__title {
  white-space: nowrap;
}

.presentation__title span {
  display: block;
  color: transparent;
  background: linear-gradient(110deg, #fff7f7 0%, #ff6a7d 34%, #ff1f48 70%, #9e001b 100%);
  background-size: 180% 180%;
  animation: red-flow 6200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.presentation__heading.is-compact .presentation__title span {
  display: inline;
}

.presentation__point {
  --line-scale: 0;
  position: absolute;
  width: min(33rem, 42vw);
  padding-left: clamp(1.4rem, 3vw, 2.25rem);
  color: rgba(255, 247, 247, 0.74);
  font-size: clamp(0.95rem, 1.35vw, 1.13rem);
  font-weight: 500;
  line-height: 1.72;
}

.presentation__point--mission {
  top: 20vh;
  left: 50%;
  transform-origin: center right;
}

.presentation__point--human {
  top: 40vh;
  right: 50%;
  padding-right: clamp(1.4rem, 3vw, 2.25rem);
  padding-left: 0;
  text-align: right;
  transform-origin: center left;
}

.presentation__point--open {
  top: 60vh;
  left: 50%;
  transform-origin: center right;
}

.presentation__point--values {
  --keyword-opacity: 1;
  --values-copy-opacity: 1;
  top: 78vh;
  right: 50%;
  padding-right: clamp(1.4rem, 3vw, 2.25rem);
  padding-left: 0;
  text-align: right;
  transform-origin: center left;
}

.presentation__point::before {
  position: absolute;
  top: 0.35rem;
  bottom: 0.45rem;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(to bottom, rgba(255, 34, 74, 0), rgba(255, 34, 74, 0.95), rgba(255, 176, 162, 0));
  transform: scaleY(var(--line-scale));
  transform-origin: top;
}

.presentation__point--human::before {
  right: 0;
  left: auto;
}

.presentation__point--values::before {
  right: 0;
  left: auto;
}

.presentation__point p,
.presentation__point {
  margin: 0;
}

.presentation__point p + p {
  margin-top: 1rem;
}

.presentation__label {
  color: rgba(255, 106, 125, 0.86);
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.presentation__lead {
  color: var(--white);
  font-size: clamp(1.12rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.presentation__signature {
  margin-top: 1.1rem;
  color: rgba(255, 247, 247, 0.56);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-transform: uppercase;
}

.keyword-highlight {
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  display: inline-block;
  font-weight: 800;
  opacity: var(--keyword-opacity, 1);
  filter: blur(var(--stage-blur));
  transform: translate3d(var(--stage-x), var(--stage-y), 0) rotate(var(--stage-rotate)) scale(var(--stage-scale));
  transform-origin: center;
  white-space: nowrap;
  will-change: transform, filter, opacity;
  animation: red-flow 4200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.keyword-highlight.is-detached {
  position: fixed;
  top: var(--fixed-top);
  left: var(--fixed-left);
  z-index: 9;
  font-size: var(--keyword-font-size);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
  padding: 0.08em 0.12em 0.1em;
  overflow: visible;
  pointer-events: none;
  text-shadow: 0 0 38px rgba(255, 34, 74, 0.2);
  transform: translate3d(calc(-50% + var(--stage-x)), calc(-50% + var(--stage-y)), 0) rotate(var(--stage-rotate)) scale(var(--stage-scale));
}

.presentation__point--values .presentation__label,
.presentation__point--values .presentation__lead,
.values-copy__text {
  opacity: var(--values-copy-opacity);
}

.values__explain {
  position: absolute;
  right: 1.25rem;
  left: 1.25rem;
  top: calc(50% + clamp(10rem, 24vh, 16rem));
  margin: 0 auto;
  max-width: 58rem;
  color: var(--white);
  font-size: clamp(1.15rem, 2.3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

.values__order,
.values__explain--cause,
.values__explain--consequence,
.values__explain--no-interest,
.values__highlight-line,
.values__explain--pleasure,
.values__explain--no-pleasure,
.values__explain--bad-learning,
.values__explain--never-improve {
  top: calc(50% + clamp(11rem, 26vh, 17rem));
}

.values__highlight-line {
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  animation: red-flow 4200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.common__heading,
.common__kicker,
.common__title,
.common__copy,
.common__final {
  position: absolute;
  right: clamp(1.25rem, 6vw, 7rem);
  left: clamp(1.25rem, 6vw, 7rem);
  margin: 0 auto;
  text-align: center;
}

.common__heading {
  top: clamp(1.35rem, 3.8vh, 2.5rem);
  color: transparent;
  background: linear-gradient(110deg, #fff7f7 0%, #ff6a7d 34%, #ff1f48 70%, #9e001b 100%);
  background-size: 180% 180%;
  font-size: clamp(2.75rem, 7.1vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
  transform-origin: top center;
  animation: red-flow 6200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.common__kicker {
  top: clamp(5rem, 16vh, 8rem);
  color: rgba(255, 106, 125, 0.82);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.common__title {
  top: clamp(8rem, 24vh, 13rem);
  max-width: min(22ch, calc(100vw - 2.5rem));
  color: var(--white);
  font-size: clamp(3rem, 6.4vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.066em;
  line-height: 0.96;
  overflow: visible;
  text-wrap: balance;
}

.common__title-top {
  display: block;
}

.common__title-line {
  display: block;
  margin-inline: -0.12em;
  padding: 0.05em 0.16em 0.09em;
  color: transparent;
  background: linear-gradient(110deg, #fff7f7 0%, #ff6a7d 34%, #ff1f48 70%, #9e001b 100%);
  background-size: 180% 180%;
  animation: red-flow 6200ms ease-in-out infinite alternate;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
}

html[lang="en"] .common__title {
  max-width: min(30ch, calc(100vw - 2.5rem));
}

html[lang="en"] .common__title-line {
  white-space: normal;
}

.common__ensemble {
  --stage-opacity: 1;
  display: inline-block;
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  font-weight: 800;
  line-height: 1.08;
  padding: 0.02em 0.18em 0.06em 0.02em;
  overflow: visible;
  transform-origin: center;
  white-space: nowrap;
  animation: red-flow 4200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.common__ensemble.is-detached {
  position: absolute;
  top: var(--fixed-top);
  left: var(--fixed-left);
  z-index: 1;
  font-size: var(--ensemble-font-size);
  letter-spacing: -0.045em;
  line-height: 1.08;
  padding: 0.08em 0.22em 0.12em 0.12em;
  overflow: visible;
  pointer-events: none;
  text-shadow: 0 0 48px rgba(255, 34, 74, 0.22);
  transform: translate3d(calc(-50% + var(--stage-x)), calc(-50% + var(--stage-y)), 0) rotate(var(--stage-rotate)) scale(var(--stage-scale));
}

.common__copy {
  top: calc(50% + clamp(4.5rem, 13vh, 8rem));
  max-width: 54rem;
  color: rgba(255, 247, 247, 0.76);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  font-weight: 500;
  line-height: 1.75;
  text-wrap: balance;
}

.common__final {
  bottom: clamp(2.2rem, 7vh, 4.5rem);
  max-width: 48rem;
  color: var(--white);
  font-size: clamp(1.45rem, 3.4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
  text-wrap: balance;
}

.support__text {
  position: absolute;
  z-index: 3;
  width: min(20rem, 24vw);
  margin: 0;
  color: rgba(255, 247, 247, 0.86);
  font-size: clamp(0.82rem, 1.05vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 0 24px rgba(255, 34, 74, 0.2);
  text-wrap: balance;
  translate: -50% 0;
  animation: support-float-a 5200ms ease-in-out infinite alternate;
  will-change: translate;
}

.support__text--1 {
  top: 18vh;
  left: 12%;
}

.support__text--2 {
  top: 28vh;
  left: 31%;
  animation-name: support-float-b;
}

.support__text--3 {
  top: 16vh;
  left: 54%;
  animation-name: support-float-c;
}

.support__text--4 {
  top: 27vh;
  left: 78%;
  animation-name: support-float-b;
}

.support__text--5 {
  top: 43vh;
  left: 17%;
  animation-name: support-float-c;
}

.support__text--6 {
  top: 54vh;
  left: 42%;
  animation-name: support-float-a;
}

.support__text--7 {
  top: 42vh;
  left: 66%;
  animation-name: support-float-b;
}

.support__text--8 {
  top: 48vh;
  left: 88%;
  animation-name: support-float-c;
}

.support__text--9 {
  top: 66vh;
  left: 10%;
  animation-name: support-float-b;
}

.support__text--10 {
  top: 73vh;
  left: 29%;
  animation-name: support-float-a;
}

.support__text--11 {
  top: 68vh;
  left: 53%;
  animation-name: support-float-c;
}

.support__text--12 {
  top: 72vh;
  left: 76%;
  animation-name: support-float-a;
}

.support__text--13 {
  top: 83vh;
  left: 41%;
  animation-name: support-float-b;
}

.support__text--14 {
  top: 84vh;
  left: 64%;
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  font-weight: 800;
  animation: support-float-c 5200ms ease-in-out infinite alternate, red-flow 4200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.support__ensemble-word {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  margin: 0;
  padding: 0.08em 0.22em 0.12em 0.12em;
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  font-size: clamp(4.8rem, 10.5vw, 10.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-shadow: 0 0 48px rgba(255, 34, 74, 0.22);
  transform: translate3d(calc(-50% + var(--stage-x)), calc(-50% + var(--stage-y)), 0) rotate(var(--stage-rotate)) scale(var(--stage-scale));
  white-space: nowrap;
  animation: red-flow 4200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.functioning__heading,
.functioning__intro,
.functioning__copy {
  position: absolute;
  right: clamp(1.25rem, 6vw, 7rem);
  left: clamp(1.25rem, 6vw, 7rem);
  margin: 0 auto;
  text-align: center;
}

.functioning__heading {
  top: clamp(1.35rem, 3.8vh, 2.5rem);
  color: transparent;
  background: linear-gradient(110deg, #fff7f7 0%, #ff6a7d 34%, #ff1f48 70%, #9e001b 100%);
  background-size: 180% 180%;
  font-size: clamp(2.75rem, 7.1vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  animation: red-flow 6200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.functioning__intro {
  top: clamp(6rem, 16vh, 9rem);
  max-width: 48rem;
  color: rgba(255, 247, 247, 0.78);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.55;
  text-wrap: balance;
}

.functioning__evolution {
  position: absolute;
  inset: 0;
}

.functioning__flower {
  position: absolute;
  top: 32vh;
  left: 50%;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  width: min(13rem, 18vw);
  color: var(--white);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translate3d(calc(-50% + var(--stage-x)), var(--stage-y), 0) rotate(var(--stage-rotate)) scale(var(--stage-scale));
}

.functioning__flower img {
  width: min(8rem, 11vw);
  height: min(8rem, 11vw);
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(255, 34, 74, 0.16));
}

.functioning__path {
  --path-scale: 0;
  --path-opacity: 0;
  position: absolute;
  top: calc(32vh + min(4rem, 5.5vw));
  left: 50%;
  width: min(22rem, 28vw);
  height: 2px;
  opacity: var(--path-opacity);
  background: linear-gradient(90deg, rgba(255, 34, 74, 0), rgba(255, 34, 74, 0.95), rgba(255, 176, 162, 0));
  transform: translateX(-50%) scaleX(var(--path-scale));
  transform-origin: left;
}

.functioning__path::after {
  position: absolute;
  top: 50%;
  right: -0.2rem;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-top: 2px solid rgba(255, 176, 162, 0.9);
  border-right: 2px solid rgba(255, 176, 162, 0.9);
  transform: translateY(-50%) rotate(45deg);
}

.functioning__copy {
  top: 58vh;
  max-width: 44rem;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.22;
  text-wrap: balance;
}

.functioning__selection {
  position: absolute;
  inset: 0;
}

.selection__kicker,
.selection__title,
.selection__final {
  position: absolute;
  right: 1.25rem;
  left: 1.25rem;
  margin: 0 auto;
  text-align: center;
}

.selection__kicker {
  top: clamp(6rem, 17vh, 9rem);
  color: rgba(255, 106, 125, 0.82);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.selection__title {
  top: clamp(8.6rem, 24vh, 13rem);
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.selection__step {
  position: absolute;
  top: 54vh;
  width: min(25rem, 28vw);
  min-height: 13rem;
  margin: 0;
  padding: 0;
}

.selection__step--proposal {
  left: clamp(1.25rem, 6vw, 7rem);
}

.selection__step--review {
  left: 50%;
  transform: translateX(-50%);
}

.selection__step--vote {
  right: clamp(1.25rem, 6vw, 7rem);
}

.selection__step span {
  display: block;
  color: rgba(255, 106, 125, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.selection__step h4 {
  margin: 0.75rem 0 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.selection__step p {
  margin: 0.8rem 0 0;
  color: rgba(255, 247, 247, 0.72);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
}

.selection__final {
  bottom: clamp(2rem, 7vh, 4rem);
  max-width: 52rem;
  color: transparent;
  background: linear-gradient(115deg, #fff7f7, var(--red-d), var(--red-a), #fff7f7);
  background-size: 220% 220%;
  font-size: clamp(1.35rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
  animation: red-flow 5200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.members__heading,
.members__intro {
  position: absolute;
  right: clamp(1.25rem, 6vw, 7rem);
  left: clamp(1.25rem, 6vw, 7rem);
  margin: 0 auto;
  text-align: center;
}

.members__heading {
  top: clamp(1.35rem, 3.8vh, 2.5rem);
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 180% 180%;
  font-size: clamp(2.75rem, 7.1vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  animation: red-flow 6200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.members__intro {
  top: clamp(6rem, 16vh, 9rem);
  max-width: 52rem;
  color: rgba(255, 247, 247, 0.78);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.55;
  text-wrap: balance;
}

.members__group {
  position: absolute;
  right: clamp(1.25rem, 5vw, 6rem);
  left: clamp(1.25rem, 5vw, 6rem);
}

.members__group--bureau {
  top: 29vh;
}

.members__group--members {
  top: 58vh;
}

.members__label {
  margin: 0 0 clamp(0.9rem, 1.5vw, 1.25rem);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.members__label--bureau {
  color: rgba(120, 203, 255, 0.86);
}

.members__label--members {
  color: rgba(91, 255, 167, 0.86);
}

.members__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.85rem, 1.4vw, 1.2rem);
  justify-content: center;
}

.member-card {
  display: grid;
  width: min(11rem, 16vw);
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
}

.member-card__avatar {
  width: clamp(4.2rem, 7vw, 6.4rem);
  height: clamp(4.2rem, 7vw, 6.4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 247, 247, 0.12);
  border-radius: 999px;
  background: rgba(255, 247, 247, 0.06);
  box-shadow: 0 0 34px rgba(255, 34, 74, 0.08);
}

.member-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card__name {
  margin: 0;
  color: transparent;
  background-size: 220% 220%;
  font-size: clamp(0.95rem, 1.3vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  animation: red-flow 5200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.member-card--bureau .member-card__name {
  background-image: linear-gradient(115deg, #093a9d, #2ea7ff, #b9ecff, #246bff, #071d68);
}

.member-card--member .member-card__name {
  background-image: linear-gradient(115deg, #005c30, #1ce07d, #c3ffd8, #36b86f, #003d22);
}

.member-card__role {
  margin: -0.35rem 0 0;
  color: rgba(255, 247, 247, 0.58);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 700;
}

.join__heading,
.join__contact,
.closing__title,
.closing__copy,
.closing__footer {
  position: absolute;
  right: clamp(1.25rem, 6vw, 7rem);
  left: clamp(1.25rem, 6vw, 7rem);
  margin: 0 auto;
  text-align: center;
}

.join__heading,
.closing__title {
  top: clamp(1.35rem, 3.8vh, 2.5rem);
  padding-block: 0.08em;
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  font-size: clamp(3.2rem, 9vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 1.05;
  animation: red-flow 6200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.join__split {
  position: absolute;
  top: 31vh;
  right: clamp(1.25rem, 7vw, 8rem);
  left: clamp(1.25rem, 7vw, 8rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
}

.join__panel {
  min-height: 21rem;
  padding-top: clamp(1.1rem, 2vw, 1.7rem);
  border-top: 1px solid rgba(255, 247, 247, 0.22);
}

.join__label {
  margin: 0;
  color: rgba(255, 106, 125, 0.86);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.join__panel h3 {
  margin: 1.2rem 0 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.join__panel p:last-child {
  margin: 1.4rem 0 0;
  color: rgba(255, 247, 247, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 500;
  line-height: 1.65;
}

.join__contact {
  bottom: clamp(2rem, 7vh, 4.5rem);
  color: var(--white);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.join__contact span {
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
}

.closing__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.closing__video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.82));
}

.closing__video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.04);
}

.closing__title {
  top: 28vh;
}

.closing__copy {
  top: 55vh;
  max-width: 48rem;
  color: rgba(255, 247, 247, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.35;
  text-wrap: balance;
}

.closing__footer {
  bottom: clamp(1rem, 3vh, 2rem);
  display: grid;
  gap: 0.65rem;
  color: rgba(255, 247, 247, 0.58);
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  font-weight: 600;
  pointer-events: auto;
}

.closing__footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  justify-content: center;
}

.closing__footer a {
  color: rgba(255, 247, 247, 0.74);
  text-decoration: none;
}

.closing__footer p {
  margin: 0;
}

.legal-html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 34, 74, 0.7) #050505;
}

.legal-html::-webkit-scrollbar,
.legal-html body::-webkit-scrollbar {
  display: block;
  width: 0.65rem;
}

.legal-html::-webkit-scrollbar-track,
.legal-html body::-webkit-scrollbar-track {
  background: #050505;
}

.legal-html::-webkit-scrollbar-thumb,
.legal-html body::-webkit-scrollbar-thumb {
  border: 2px solid #050505;
  border-radius: 999px;
  background: rgba(255, 34, 74, 0.7);
}

.legal-page {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 34, 74, 0.18), transparent 34rem),
    radial-gradient(circle at 84% 18%, rgba(255, 106, 42, 0.12), transparent 28rem),
    #050505;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.6rem) clamp(1.25rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 247, 247, 0.08);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(16px);
}

.legal-brand,
.legal-nav a {
  color: var(--white);
  text-decoration: none;
}

.legal-brand {
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  animation: red-flow 5600ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.3rem;
  justify-content: flex-end;
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 700;
}

.legal-nav a {
  color: rgba(255, 247, 247, 0.62);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible,
.legal-nav a[aria-current="page"] {
  color: var(--white);
  text-shadow: 0 0 18px rgba(255, 34, 74, 0.28);
}

.legal-main {
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 9vw, 7rem);
}

.legal-document {
  color: rgba(255, 247, 247, 0.78);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 500;
  line-height: 1.78;
}

.legal-kicker {
  margin: 0 0 1rem;
  color: rgba(255, 106, 125, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.legal-document h1 {
  max-width: min(100%, 18ch);
  margin: 0 -0.08em;
  padding: 0.08em 0.1em 0.14em;
  overflow: visible;
  color: transparent;
  background: linear-gradient(115deg, var(--red-c), var(--red-a), var(--red-d), var(--red-b), var(--red-c));
  background-size: 220% 220%;
  font-size: clamp(3rem, 8vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1.08;
  text-wrap: balance;
  animation: red-flow 6200ms ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
}

.legal-updated {
  margin: 1.1rem 0 clamp(2.5rem, 6vw, 4rem);
  color: rgba(255, 247, 247, 0.48);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-document section {
  padding-block: clamp(1.5rem, 4vw, 2.35rem);
  border-top: 1px solid rgba(255, 247, 247, 0.1);
}

.legal-document h2 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.legal-document p,
.legal-document ul {
  margin: 0.8rem 0 0;
}

.legal-document strong,
.legal-document span,
.legal-document code {
  color: var(--white);
}

.legal-document code {
  padding: 0.12rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(255, 247, 247, 0.08);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.legal-document ul {
  padding-left: 1.2rem;
}

.legal-document li + li {
  margin-top: 0.35rem;
}

@keyframes scroll-hint-float {
  from {
    translate: 0 -4px;
  }

  to {
    translate: 0 9px;
  }
}

@keyframes support-float-a {
  from {
    translate: calc(-50% - 10px) -8px;
  }

  to {
    translate: calc(-50% + 12px) 9px;
  }
}

@keyframes support-float-b {
  from {
    translate: calc(-50% + 8px) 10px;
  }

  to {
    translate: calc(-50% - 12px) -7px;
  }
}

@keyframes support-float-c {
  from {
    translate: calc(-50% - 6px) 12px;
  }

  to {
    translate: calc(-50% + 9px) -10px;
  }
}

@keyframes red-flow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@media (max-width: 680px) {
  .scroll-stage {
    min-height: var(--stage-scroll-height, 1200vh);
  }

  .stage__layer {
    padding-inline: 1.25rem;
  }

  .hero__title {
    max-width: 9ch;
    letter-spacing: -0.082em;
  }

  .hero__subtitle {
    letter-spacing: 0.015em;
  }

  .language-switcher {
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.45rem 0.5rem;
    font-size: 0.68rem;
  }

  .stage-nav {
    right: 0.45rem;
    gap: 0.28rem;
  }

  .stage-nav button {
    width: 1.1rem;
    height: 1.1rem;
  }

  .stage-nav button::before {
    width: 0.35rem;
    height: 0.35rem;
  }

  .stage-nav button:hover::before,
  .stage-nav button:focus-visible::before,
  .stage-nav button.is-active::before {
    width: 0.58rem;
    height: 0.58rem;
  }

  .stage-nav span {
    display: none;
  }

  .hero__scroll-hint {
    margin-top: 2rem;
  }

  .hero__scroll-text {
    font-size: 0.62rem;
    letter-spacing: 0.26em;
  }

  .presentation__title {
    max-width: 9.5ch;
    letter-spacing: -0.052em;
    line-height: 1;
  }

  .presentation__heading.is-compact .presentation__title {
    max-width: none;
    white-space: nowrap;
  }

  .presentation__point {
    width: calc(100vw - 2.5rem);
    padding-left: 1.15rem;
    line-height: 1.62;
  }

  .presentation__point--mission,
  .presentation__point--human,
  .presentation__point--open,
  .presentation__point--values {
    right: auto;
    left: 1.25rem;
    padding-right: 0;
    padding-left: 1.15rem;
    text-align: left;
    transform-origin: center left;
  }

  .presentation__point--human::before {
    right: auto;
    left: 0;
  }

  .presentation__point--values::before {
    right: auto;
    left: 0;
  }

  .presentation__point--mission {
    top: 20vh;
  }

  .presentation__point--human {
    top: 40vh;
  }

  .presentation__point--open {
    top: 60vh;
  }

  .presentation__point--values {
    top: 78vh;
  }

  .common__heading {
    max-width: none;
    letter-spacing: -0.052em;
    line-height: 1;
    white-space: nowrap;
  }

  .common__title {
    max-width: calc(100vw - 2.5rem);
    font-size: clamp(2.15rem, 9.3vw, 4.1rem);
    letter-spacing: -0.058em;
  }

  .common__title-line {
    margin-inline: -0.08em;
    padding-inline: 0.1em;
  }

  .common__copy {
    top: calc(50% + 4.5rem);
    line-height: 1.6;
  }

  .common__ensemble.is-detached {
    letter-spacing: -0.052em;
  }

  .support__text {
    width: min(17rem, 44vw);
    font-size: clamp(0.78rem, 3vw, 0.96rem);
    line-height: 1.32;
  }

  .support__text--1,
  .support__text--2,
  .support__text--3,
  .support__text--4,
  .support__text--5,
  .support__text--6,
  .support__text--7,
  .support__text--8,
  .support__text--9,
  .support__text--10,
  .support__text--11,
  .support__text--12,
  .support__text--13,
  .support__text--14 {
    text-align: center;
  }

  .support__text--1 {
    top: 13vh;
    left: 24%;
  }

  .support__text--2 {
    top: 18vh;
    left: 70%;
  }

  .support__text--3 {
    top: 27vh;
    left: 43%;
  }

  .support__text--4 {
    top: 35vh;
    left: 76%;
  }

  .support__text--5 {
    top: 45vh;
    left: 25%;
  }

  .support__text--6 {
    top: 53vh;
    left: 63%;
  }

  .support__text--7 {
    top: 62vh;
    left: 31%;
  }

  .support__text--8 {
    top: 68vh;
    left: 75%;
  }

  .support__text--9 {
    top: 76vh;
    left: 22%;
  }

  .support__text--10 {
    top: 83vh;
    left: 58%;
  }

  .support__text--11 {
    top: 22vh;
    left: 14%;
  }

  .support__text--12 {
    top: 39vh;
    left: 50%;
  }

  .support__text--13 {
    top: 71vh;
    left: 48%;
  }

  .support__text--14 {
    top: 88vh;
    left: 50%;
    width: calc(100vw - 2.5rem);
  }

  .support__ensemble-word {
    font-size: clamp(3.4rem, 17vw, 6rem);
    letter-spacing: -0.052em;
  }

  .functioning__heading {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 4.25rem);
    letter-spacing: -0.052em;
    line-height: 1;
    white-space: nowrap;
  }

  .functioning__intro {
    top: 12vh;
    max-width: calc(100vw - 2.5rem);
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
  }

  .functioning__flower {
    top: 27vh;
    width: 8.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .functioning__flower img {
    width: 5.2rem;
    height: 5.2rem;
  }

  .functioning__path {
    top: calc(27vh + 2.6rem);
    left: 50%;
    width: 26vw;
  }

  .functioning__copy {
    top: 43vh;
    max-width: calc(100vw - 2.5rem);
    font-size: clamp(1rem, 4.4vw, 1.3rem);
  }

  .selection__kicker {
    top: 12vh;
  }

  .selection__title {
    top: 17vh;
    max-width: 10ch;
    font-size: clamp(2.35rem, 10vw, 4.3rem);
    letter-spacing: -0.06em;
  }

  .selection__step {
    width: calc(100vw - 2.5rem);
    min-height: 0;
    padding: 0;
  }

  .selection__step--proposal,
  .selection__step--review,
  .selection__step--vote {
    right: auto;
    left: 1.25rem;
    transform: none;
  }

  .selection__step--proposal {
    top: 40vh;
  }

  .selection__step--review {
    top: 55vh;
  }

  .selection__step--vote {
    top: 70vh;
  }

  .selection__step h4 {
    font-size: 1.25rem;
  }

  .selection__step p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .selection__final {
    bottom: 4vh;
    max-width: calc(100vw - 2.5rem);
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }

  .members__heading {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 4.25rem);
    letter-spacing: -0.052em;
    line-height: 1;
    white-space: nowrap;
  }

  .members__intro {
    top: 12vh;
    max-width: calc(100vw - 2.5rem);
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
  }

  .members__group {
    right: 1rem;
    left: 1rem;
  }

  .members__group--bureau {
    top: 28vh;
  }

  .members__group--members {
    top: 55vh;
  }

  .members__grid {
    gap: 0.75rem;
  }

  .member-card {
    width: 5.8rem;
    gap: 0.5rem;
  }

  .member-card__avatar {
    width: 3.6rem;
    height: 3.6rem;
  }

  .member-card__name {
    font-size: 0.82rem;
  }

  .member-card__role {
    font-size: 0.64rem;
  }

  .join__heading {
    top: 9vh;
    font-size: clamp(3rem, 17vw, 5.6rem);
  }

  .join__split {
    top: 25vh;
    right: 1.25rem;
    left: 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .join__panel {
    min-height: 0;
    padding-top: 0.9rem;
  }

  .join__panel h3 {
    margin-top: 0.7rem;
    font-size: clamp(1.75rem, 8vw, 2.8rem);
  }

  .join__panel p:last-child {
    margin-top: 0.8rem;
    font-size: clamp(0.9rem, 3.4vw, 1rem);
    line-height: 1.48;
  }

  .join__contact {
    bottom: 5vh;
    font-size: clamp(1rem, 4.8vw, 1.45rem);
  }

  .closing__title {
    top: 25vh;
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .closing__copy {
    top: 49vh;
    right: 1.25rem;
    left: 1.25rem;
    font-size: clamp(1rem, 4.6vw, 1.35rem);
  }

  .closing__footer {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.68rem;
  }

}

@media (max-width: 680px) and (prefers-reduced-motion: no-preference) {
  .stage {
    background:
      radial-gradient(circle at 50% 12%, rgba(166, 0, 30, 0.24), transparent 18rem),
      #050505;
  }

  .stage__video,
  .closing__video,
  .stage-nav {
    display: none;
  }

  .scroll-stage {
    perspective: 900px;
  }

  .stage__layer {
    padding-inline: 1rem;
  }

  .stage-depth,
  .keyword-highlight {
    filter: none;
    will-change: transform, opacity;
  }

  .support__text {
    animation: none;
  }

  .language-switcher {
    z-index: 25;
  }

  .hero__title {
    font-size: clamp(3.35rem, 16vw, 5.9rem);
  }

  .hero__subtitle {
    max-width: min(24rem, calc(100vw - 2rem));
    margin-inline: auto;
    font-size: clamp(0.95rem, 4vw, 1.18rem);
  }

  .presentation__heading {
    top: clamp(1rem, 3vh, 1.5rem);
  }

  .presentation__point {
    width: min(27rem, calc(100vw - 2rem));
    font-size: clamp(0.82rem, 3.4vw, 0.98rem);
    line-height: 1.5;
  }

  .presentation__point--mission {
    top: 18vh;
  }

  .presentation__point--human {
    top: 38vh;
  }

  .presentation__point--open {
    top: 58vh;
  }

  .presentation__point--values {
    top: 76vh;
  }

  .presentation__lead {
    font-size: clamp(1rem, 4.8vw, 1.32rem);
  }

  .values__explain {
    top: calc(50% + clamp(7.4rem, 22vh, 10rem));
    right: 1rem;
    left: 1rem;
    max-width: calc(100vw - 2rem);
    font-size: clamp(1rem, 5vw, 1.38rem);
    line-height: 1.18;
  }

  .common__heading,
  .functioning__heading,
  .members__heading {
    top: clamp(1rem, 3vh, 1.5rem);
    font-size: clamp(2.1rem, 10vw, 4rem);
  }

  .common__title {
    top: clamp(7.2rem, 22vh, 10rem);
    font-size: clamp(2.15rem, 10vw, 4.15rem);
  }

  .common__copy {
    top: calc(50% + 3.2rem);
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    line-height: 1.5;
  }

  .common__final {
    font-size: clamp(1.25rem, 5vw, 1.8rem);
  }

  .support__ensemble-word {
    font-size: clamp(3.1rem, 16vw, 5.6rem);
  }

  .support__text {
    width: min(15rem, 42vw);
    font-size: clamp(0.7rem, 2.8vw, 0.9rem);
    line-height: 1.28;
  }

  .functioning__intro,
  .members__intro {
    top: clamp(5rem, 13vh, 7rem);
    max-width: calc(100vw - 2rem);
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    line-height: 1.45;
  }

  .functioning__flower {
    top: 26vh;
    width: 7.6rem;
  }

  .functioning__flower img {
    width: 4.65rem;
    height: 4.65rem;
  }

  .functioning__path {
    top: calc(26vh + 2.3rem);
    width: 24vw;
  }

  .functioning__copy {
    top: 43vh;
    max-width: calc(100vw - 2rem);
    font-size: clamp(0.95rem, 4vw, 1.18rem);
    line-height: 1.24;
  }

  .selection__title {
    font-size: clamp(2.1rem, 10vw, 3.7rem);
  }

  .selection__step {
    width: calc(100vw - 2rem);
  }

  .selection__step p {
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    line-height: 1.35;
  }

  .selection__final {
    font-size: clamp(1.2rem, 5.4vw, 1.85rem);
  }

  .members__group {
    right: 0.8rem;
    left: 0.8rem;
  }

  .members__grid {
    gap: 0.55rem;
  }

  .member-card {
    width: 5.35rem;
  }

  .member-card__avatar {
    width: 3.25rem;
    height: 3.25rem;
  }

  .member-card__name {
    font-size: 0.76rem;
  }

  .member-card__role {
    font-size: 0.6rem;
  }

  .join__heading {
    top: 8vh;
    font-size: clamp(2.9rem, 15vw, 5.2rem);
  }

  .join__split {
    top: 24vh;
    right: 1rem;
    left: 1rem;
    gap: 1rem;
  }

  .join__panel h3 {
    font-size: clamp(1.65rem, 7.5vw, 2.55rem);
  }

  .join__panel p:last-child {
    font-size: clamp(0.82rem, 3.2vw, 0.95rem);
    line-height: 1.42;
  }

  .join__contact {
    font-size: clamp(1rem, 4.3vw, 1.32rem);
  }

  .closing__title {
    top: 28vh;
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

  .closing__copy {
    top: 50vh;
    right: 1rem;
    left: 1rem;
  }
}

@media (max-width: 680px) and (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(166, 0, 30, 0.22), transparent 22rem),
      #050505;
  }

  .scroll-stage {
    min-height: auto;
    perspective: none;
  }

  .stage {
    position: relative;
    top: auto;
    min-height: auto;
    overflow: visible;
    isolation: auto;
  }

  .stage__video,
  .closing__video,
  .stage-nav,
  .hero__scroll-hint,
  .functioning__path {
    display: none !important;
  }

  .stage__layer {
    position: relative;
    inset: auto;
    display: block;
    min-height: auto;
    padding: clamp(3.5rem, 13vw, 5rem) 1.25rem;
    pointer-events: auto;
  }

  .stage__layer + .stage__layer {
    border-top: 1px solid rgba(255, 247, 247, 0.08);
  }

  .stage__layer--hero {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 6rem 1.25rem 4rem;
    background: radial-gradient(circle at 50% 38%, rgba(255, 34, 74, 0.16), transparent 18rem);
    text-align: center;
  }

  .stage-depth,
  .keyword-highlight,
  .common__ensemble {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    will-change: auto;
  }

  .keyword-highlight.is-detached,
  .common__ensemble.is-detached {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    font-size: inherit;
    transform: none;
  }

  .language-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .hero {
    width: 100%;
  }

  .hero__title {
    max-width: 9ch;
    font-size: clamp(3.2rem, 17vw, 5.6rem);
    letter-spacing: -0.08em;
  }

  .hero__subtitle {
    max-width: 24rem;
    margin: 1.25rem auto 0;
    font-size: clamp(1rem, 4.2vw, 1.22rem);
    letter-spacing: 0.01em;
  }

  .presentation__heading,
  .presentation__point,
  .values__explain,
  .common__heading,
  .common__kicker,
  .common__title,
  .common__copy,
  .common__final,
  .support__ensemble-word,
  .support__text,
  .functioning__heading,
  .functioning__intro,
  .functioning__evolution,
  .functioning__flower,
  .functioning__copy,
  .functioning__selection,
  .selection__kicker,
  .selection__title,
  .selection__step,
  .selection__final,
  .members__heading,
  .members__intro,
  .members__group,
  .join__heading,
  .join__split,
  .join__contact,
  .closing__title,
  .closing__copy,
  .closing__footer {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    max-width: none;
    margin: 0;
    transform: none;
  }

  .presentation__heading,
  .common__heading,
  .functioning__heading,
  .members__heading,
  .join__heading,
  .closing__title {
    margin-bottom: 1.8rem;
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-align: left;
    white-space: normal;
  }

  .presentation__title {
    max-width: none;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }

  .presentation__heading.is-compact .presentation__title,
  .presentation__title span {
    display: block;
    white-space: normal;
  }

  .presentation__point {
    --line-scale: 1;
    padding: 0.95rem 0 0.95rem 1rem;
    border-left: 1px solid rgba(255, 34, 74, 0.64);
    color: rgba(255, 247, 247, 0.74);
    font-size: 0.96rem;
    line-height: 1.62;
    text-align: left;
  }

  .presentation__point::before {
    display: none;
  }

  .presentation__point + .presentation__point,
  .values__explain + .values__explain,
  .functioning__copy + .functioning__copy {
    margin-top: 1rem;
  }

  .presentation__lead {
    font-size: clamp(1.1rem, 5.2vw, 1.45rem);
  }

  .stage__layer--values,
  .stage__layer--support {
    display: grid;
    gap: 0.8rem;
  }

  .values__explain {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 247, 247, 0.08);
    border-radius: 1rem;
    background: rgba(255, 247, 247, 0.035);
    font-size: clamp(1rem, 4.8vw, 1.35rem);
    line-height: 1.25;
    text-align: left;
  }

  .common__kicker,
  .selection__kicker,
  .members__label,
  .join__label {
    color: rgba(255, 106, 125, 0.84);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-align: left;
  }

  .common__title {
    max-width: 12ch;
    margin-top: 0.75rem;
    font-size: clamp(2.5rem, 13vw, 4.4rem);
    line-height: 0.94;
    text-align: left;
  }

  .common__title-line {
    white-space: normal;
  }

  .common__copy,
  .common__final,
  .functioning__intro,
  .members__intro,
  .closing__copy {
    margin-top: 1.25rem;
    color: rgba(255, 247, 247, 0.76);
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    line-height: 1.55;
    text-align: left;
  }

  .common__final {
    color: var(--white);
    font-weight: 800;
  }

  .support__ensemble-word {
    margin-bottom: 0.6rem;
    font-size: clamp(3rem, 17vw, 5rem);
    line-height: 1;
    text-align: left;
  }

  .support__text {
    width: auto;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(255, 247, 247, 0.08);
    border-radius: 0.9rem;
    background: rgba(255, 247, 247, 0.035);
    color: rgba(255, 247, 247, 0.82);
    font-size: 0.92rem;
    line-height: 1.42;
    text-align: left;
    translate: none;
  }

  .functioning__evolution {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1.6rem 0;
  }

  .functioning__flower {
    display: grid;
    justify-items: center;
    gap: 0.6rem;
    padding: 1rem 0.7rem;
    border: 1px solid rgba(255, 247, 247, 0.08);
    border-radius: 1rem;
    background: rgba(255, 247, 247, 0.035);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .functioning__flower img {
    width: 3.8rem;
    height: 3.8rem;
  }

  .functioning__copy {
    padding: 0.95rem 0 0.95rem 1rem;
    border-left: 1px solid rgba(255, 34, 74, 0.5);
    color: rgba(255, 247, 247, 0.82);
    font-size: clamp(1rem, 4.8vw, 1.25rem);
    line-height: 1.34;
    text-align: left;
  }

  .functioning__selection {
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 247, 247, 0.08);
  }

  .selection__title {
    max-width: 11ch;
    margin: 0.7rem 0 1.5rem;
    font-size: clamp(2.35rem, 12vw, 4rem);
    line-height: 0.94;
    text-align: left;
  }

  .selection__step {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 247, 247, 0.08);
    text-align: left;
  }

  .selection__step--proposal,
  .selection__step--review,
  .selection__step--vote {
    transform: none;
  }

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

  .selection__final {
    margin-top: 1.2rem;
    font-size: clamp(1.35rem, 6vw, 2rem);
    line-height: 1.05;
    text-align: left;
  }

  .members__group {
    margin-top: 2rem;
  }

  .members__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(6.8rem, 1fr));
    gap: 1rem;
  }

  .member-card {
    width: auto;
  }

  .member-card__avatar {
    width: 4.1rem;
    height: 4.1rem;
  }

  .join__split {
    display: grid;
    gap: 1.3rem;
  }

  .join__panel {
    min-height: 0;
    padding-top: 1rem;
  }

  .join__panel h3 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .join__panel p:last-child {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .join__contact {
    margin-top: 1.8rem;
    font-size: clamp(1.15rem, 5vw, 1.55rem);
    line-height: 1.22;
    text-align: left;
  }

  .stage__layer--closing {
    background: radial-gradient(circle at 50% 0%, rgba(255, 34, 74, 0.13), transparent 16rem);
  }

  .closing__footer {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
    color: rgba(255, 247, 247, 0.6);
    font-size: 0.78rem;
    text-align: left;
  }

  .closing__footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .scroll-stage {
    min-height: auto;
  }

  .stage {
    position: static;
    overflow: visible;
  }

  .stage__layer {
    position: static;
  }

  .stage-nav {
    display: none;
  }

  .stage-depth {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .presentation__point,
  .presentation__signature {
    --line-scale: 1;
  }
}

@media (max-width: 680px) {
  html,
  body {
    min-height: 100svh;
    overflow: hidden;
    scroll-behavior: auto;
  }

  body {
    background:
      radial-gradient(circle at 50% 34%, rgba(255, 34, 74, 0.18), transparent 18rem),
      #050505;
  }

  .scroll-stage {
    height: 100svh;
    min-height: 100svh !important;
    perspective: none;
  }

  .stage {
    position: relative;
    top: auto;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 38%, rgba(255, 34, 74, 0.18), transparent min(20rem, 75vw)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.2), #050505 82%);
    isolation: isolate;
  }

  .stage__video,
  .closing__video,
  .stage-nav,
  .hero__scroll-hint,
  .stage__layer:not(.stage__layer--hero) {
    display: none !important;
  }

  .stage__layer {
    position: absolute;
    inset: 0;
    min-height: 100svh;
    padding: clamp(4.75rem, 16vw, 6rem) 1.25rem clamp(2.5rem, 11vw, 4rem);
    pointer-events: none;
  }

  .stage__layer--hero {
    display: grid !important;
    height: 100svh;
    min-height: 100svh;
    place-items: center;
    text-align: center;
  }

  .stage-depth {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    will-change: auto;
  }

  .language-switcher {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 3;
    pointer-events: auto;
  }

  .hero {
    display: grid;
    width: min(100%, 24rem);
    justify-items: center;
  }

  .hero__title {
    max-width: 9ch;
    font-size: clamp(3.15rem, 16vw, 5.75rem);
    letter-spacing: -0.08em;
  }

  .hero__subtitle {
    max-width: 22rem;
    margin: 1.2rem auto 0;
    font-size: clamp(0.96rem, 4vw, 1.2rem);
    letter-spacing: 0.01em;
  }

  .hero__desktop-note {
    display: block;
    max-width: 19rem;
    margin: clamp(1.8rem, 7vh, 2.8rem) auto 0;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 247, 247, 0.1);
    border-radius: 1.1rem;
    background: rgba(255, 247, 247, 0.045);
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.18);
    color: rgba(255, 247, 247, 0.82);
    font-size: clamp(0.86rem, 3.7vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.45;
  }
}
